1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
use super::Error;
use super::super::parse::token::Lit;
use super::super::parse::ast::CompType;

use byteorder::{BigEndian, WriteBytesExt, ReadBytesExt};

use std::ffi::CString;
use std::str;
use std::io::Write;
use std::io::Read;
/// General enums in SQL
#[derive(Debug, Clone, Copy, RustcDecodable, RustcEncodable, PartialEq)]
pub enum SqlType {
    Int,
    Bool,
    Char(u8),
}


/// Defines the size of Sql data types
/// and returns them
impl SqlType {
    pub fn size(&self) -> u32 {
        match self {
            &SqlType::Int => 4 as u32,
            &SqlType::Bool => 1 as u32,
            &SqlType::Char(len) => (len) as u32,
        }
    }

    /// Decodes the data in buf according to SqlType into a Lit enum.
    pub fn decode_from<R: Read>(&self, mut buf: &mut R) -> Result<Lit, Error> {
        match self {
            &SqlType::Int => {
                let i = try!(buf.read_i32::<BigEndian>());
                Ok(Lit::Int(i as i64))
            },
            &SqlType::Bool => {
                let b = try!(buf.read_u8());
                Ok(Lit::Bool(b))
            },
            &SqlType::Char(_) => {
                let mut s = String::new();
                try!(buf.read_to_string(&mut s));
                Ok(Lit::String(s))
            },
        }
    }


    /// Writes data to buf
    /// Returns the bytes written.
    /// Returns Error::InvalidType if type of Lit does not match expected
    /// type.
    /// Returns byteorder::Error, if data could not be written to buf.
    /// Lit: contains data to write to buf
    /// buf: target of write operation.
    pub fn encode_into<W: Write>(&self, mut buf: &mut W, data: &Lit)
    -> Result<u32, Error>
    {
        match self {
            &SqlType::Int => {
                match data {
                    &Lit::Int(a) => {
                        if a > i32::max_value() as i64 {
                            Err(Error::InvalidType)
                        }
                        else {
                            try!(buf.write_i32::<BigEndian>(a as i32));
                            Ok(self.size())
                        }
                    },
                    _=> {
                        Err(Error::InvalidType)
                    }
                }
            },
            &SqlType::Bool => {
                match data {
                    &Lit::Bool(a) => {
                        try!(buf.write_u8(a as u8));
                        Ok(self.size())
                    }
                    _=> {
                        Err(Error::InvalidType)
                    }
                }
            },
            &SqlType::Char(len) => {
                match data {
                    &Lit::String(ref a) => {
                        let str_as_bytes = Self::to_nul_terminated_bytes(&a, len as u32);
                        try!(buf.write_all(&str_as_bytes));
                        Ok(self.size())
                    }
                    _=> {
                        Err(Error::InvalidType)
                    }
                }
            },
        }
    }

    /// Convert s to a vector with l bytes.
    /// If length of s is > l, the returning vector will only contain the first
    /// l bytes.
    /// Otherwise the returned vector will be filled with \0
    /// until it contains l bytes.
    fn to_nul_terminated_bytes(s : &str, l: u32) -> Vec<u8> {
        let mut v = s.to_string().into_bytes();

        v.truncate((l - 1) as usize);

        while v.len() < l as usize {
            v.push(0x00);
        }
        v
    }
    /// compare function that lets you logical compare slices of u8
    /// returns a boolean on success and Error on fail
    /// uses other compare fn for the actual compare
    pub fn cmp(&self, val: &[u8], val2: &[u8], comp: CompType)
    -> Result<bool, Error>
    {
        info!("checking Compare type: {:?}", comp);
        match self {
            &SqlType::Int => {
                match comp {
                    CompType::Equ => {
                        self.equal_for_int_with_value(val, val2)
                    },
                    CompType::NEqu => {
                        self.equal_for_int_with_value(val, val2).map(|x| !x)
                    },
                    CompType::GThan => {
                        self.greater_than_for_int_with_value(val, val2)
                    },
                    CompType::SThan => {
                        self.lesser_than_for_int_with_value(val, val2)
                    },
                    CompType::GEThan => {
                        self.lesser_than_for_int_with_value(val, val2).map(|x| !x)
                    },
                    CompType::SEThan => {
                        self.greater_than_for_int_with_value(val, val2).map(|x| !x)
                    },
                }
            },

            &SqlType::Bool => {
                match comp {
                    CompType::Equ => {
                        self.compare_as_bool(val, val2)
                    },
                    CompType::NEqu => {
                        self.compare_byte_for_equal(val, val2).map(|x| !x)
                    },
                    _ => {
                        Err(Error::NoOperationPossible)
                    }
                }
            },

            &SqlType::Char(_) => {
                match comp {
                    CompType::Equ => {
                        self.compare_byte_for_equal(val, val2)
                    },
                    CompType::NEqu => {
                        self.compare_byte_for_equal(val, val2).map(|x| !x)
                    },
                    CompType::GThan => {
                        self.compare_byte_greater_than(val, val2)
                    },
                    CompType::SThan => {
                        self.compare_byte_lesser_than(val, val2)
                    },
                    CompType::GEThan => {
                        self.compare_byte_lesser_than(val, val2).map(|x| !x)
                    },
                    CompType::SEThan => {
                        self.compare_byte_greater_than(val, val2).map(|x| !x)
                    },
                }
            },
        }
    }
    /// fn compares slices of u8 byte for byte and returns if both values are equal
    /// returns boolean on success and Error when given values do not have the same size
    fn compare_byte_for_equal(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        if val != val2 {
            return Ok(false)
        }
        Ok(true)
    }
    /// fn compares slices of u8 byte for byte and returns
    /// if first given value is greater than the second one
    /// returns boolean on success and Error when given values do not have the same size
    fn compare_byte_greater_than(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        info!("start comparing each byte");
        if val.len() != val2.len() {
            return Err(Error::WrongLength)
        }
        for i in 0 .. val.len() {
            if val[i] > val2[i] {
                return Ok(true)
            }
        }
        Ok(false)
    }

    /// fn compares slices of u8 byte for byte and returns
    /// if first given value is lesser than the second one
    /// returns boolean on success and Error when given values do not have the same size
    fn compare_byte_lesser_than(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        info!("start comparing each byte");
        if val.len() != val2.len() {
            return Err(Error::WrongLength)
        }
        for i in 0 .. val.len() {
            if val[i] < val2[i] {
                return Ok(true)
            }
        }
        Ok(false)
    }

    /// fn compares slices of u8 as booleans and returns
    /// if both both booleans are true
    /// returns boolean on success and Error when given values do not have the same size
    fn compare_as_bool(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        info!("start comparing bool");
        Ok(val == val2)
    }
    /// converts value to i32 and compares if equal (needs 4 bytes)
    /// returns boolean if successful returns Error if not
    fn equal_for_int_with_value(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        info!("start converting to i32");
        let int1: i32 = try!(i32::from_sql(val));
        let int2: i32 = try!(i32::from_sql(val2));
        info!("start comparing i32");
        Ok(int1 == int2)
    }

    /// converts value to i32 and compares if first value is greater (needs 4 bytes)
    /// returns boolean if successful returns Error if not
    fn greater_than_for_int_with_value(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        info!("start converting to i32");
        let int1: i32 = try!(i32::from_sql(val));
        let int2: i32 = try!(i32::from_sql(val2));
        info!("start comparing i32");
        Ok(int1 > int2)
    }

    /// converts value to i32 and compares if first value is lesser (needs 4 bytes)
    /// returns boolean if successful returns Error if not
    fn lesser_than_for_int_with_value(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        info!("start converting to i32");
        let int1: i32 = try!(i32::from_sql(val));
        let int2: i32 = try!(i32::from_sql(val2));
        info!("start comparing i32");
        Ok(int1 < int2)
    }
    /// converts each character into value and uses the average of both val
    /// to determin equal or not
    /// returns boolean if successfull returns Error if not
    fn _equal_for_str_with_value(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        let mut value: u64 = 0;
        let mut value2: u64 = 0;
        info!("starting to calculate value of strings");
        for i in 0 .. val.len() {
            value += val[i] as u64;
        }
        value /= val.len() as u64;
        for i in 0 .. val2.len() {
            value2 += val2[i] as u64;
        }
        value2 /= val2.len() as u64;

        info!("starting to compare the value");
        Ok(value2 == value)
    }
    /// converts each character into value and uses the average of both val
    /// to determin if val is greater than val2
    /// returns boolean if successfull returns Error if not
    fn _greater_than_for_str_with_value(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        let mut value: u64 = 0;
        let mut value2: u64 = 0;
        info!("starting to calculate value of strings");
        for i in 0 .. val.len() {
            value += val[i] as u64;
        }
        value /= val.len() as u64;
        for i in 0 .. val2.len() {
            value2 += val2[i] as u64;
        }
        value2 /= val2.len() as u64;
        info!("starting to compare the value");
        Ok(value > value2)
    }
    /// converts each character into value and uses the average of both val
    /// to determin if val is lesser than val2
    /// returns boolean if successfull returns Error if not
    fn _lesser_than_for_str_with_value(&self, val: &[u8], val2: &[u8])
    -> Result<bool, Error>
    {
        let mut value: u64 = 0;
        let mut value2: u64 = 0;
        info!("starting to calculate value of strings");
        for i in 0 .. val.len() {
            value += val[i] as u64;
        }
        value /= val.len() as u64;
        for i in 0 .. val2.len() {
            value2 += val2[i] as u64;
        }
        value2 /= val2.len() as u64;
        info!("starting to compare the value");
        Ok(value < value2)
    }
}

//---------------------------------------------------------------
// Column
//---------------------------------------------------------------

/// A table column. Has a name, a type, ...
#[derive(Debug,RustcDecodable, RustcEncodable,Clone)]
pub struct Column {
    pub name: String, // name of column
    pub sql_type: SqlType, // name of the data type that is contained in this column
    pub is_primary_key: bool, // defines if column is PK
    pub allow_null: bool, // defines if cloumn allows null
    pub description: String //Displays text describing this column.
}


impl Column {
    /// Creates a new column object
    /// Returns with Column
    pub fn new(
        name: &str,
        sql_type: SqlType,
        allow_null: bool,
        description: &str,
        is_primary_key: bool
        ) -> Column {

        Column {
            name: name.to_string(),
            sql_type: sql_type.clone(),
            allow_null: allow_null,
            description: description.to_string(),
            is_primary_key: is_primary_key
        }
    }

    pub fn get_sql_type(&self) -> &SqlType {
        &self.sql_type
    }

    pub fn get_column_name(&self) -> &str {
        &self.name
    }

    pub fn get_size(&self) -> u32 {
        self.sql_type.size() as u32
    }
}

//---------------------------------------------------------------
// FromSql
//---------------------------------------------------------------

pub trait FromSql {
    fn from_sql(data: &[u8]) -> Result<Self, Error>;
}

impl FromSql for i32 {
    fn from_sql(mut data: &[u8]) -> Result<Self, Error> {
        let i = try!(data.read_i32::<BigEndian>());
        Ok(i)
    }
}

impl FromSql for u16 {
    fn from_sql(mut data: &[u8]) -> Result<Self, Error> {
        let u = try!(data.read_u16::<BigEndian>());
        Ok(u)
    }
}

impl FromSql for u8 {
    fn from_sql(mut data: &[u8]) -> Result<Self, Error> {
        let u = try!(data.read_u8());
        Ok(u)
    }
}

impl FromSql for String {
    fn from_sql(data: &[u8]) -> Result<Self, Error> {
        let cstr = try!(CString::new(data));

        let s = try!(str::from_utf8(cstr.to_bytes())).to_string();
        Ok(s)
    }
}

impl FromSql for bool {
    fn from_sql(mut data: &[u8]) -> Result<Self, Error> {
        Ok(try!(data.read_u8()) != 0)
    }
}