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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
/// A module to create SQL-based queries programmatically.
pub mod query_builder {
    use std::collections::HashMap;

    /// `DELETE`
    pub struct Delete<'a> {
        table: &'a str,
        conditions: Option<Vec<&'a str>>,
    }

    /// `INSERT`
    pub struct Insert<'a> {
        table: &'a str,
        values: HashMap<&'a str, &'a str>,
    }

    /// `SELECT`
    pub struct Select<'a> {
        table: &'a str,
        aliases: Option<HashMap<&'a str, &'a str>>,
        fields: Option<Vec<&'a str>>,
        order: Option<Vec<(&'a str, Order)>>,
        conditions: Option<Vec<&'a str>>,
        limit: usize,
        offset: usize,
    }

    /// `UPDATE`
    pub struct Update<'a> {
        table: &'a str,
        values: HashMap<&'a str, &'a str>,
        conditions: Option<Vec<&'a str>>,
    }

    /// The direction of an `ORDER` clause's expression
    pub enum Order { Asc, Desc }

    /// Combine a vector of `String`s, with the `sep` `str` between each value
    fn join(v: &Vec<&str>, sep: &str) -> String {
        let mut s = String::new();
        let last_i = v.len() - 1;
        for (i, val) in v.iter().enumerate() {
            s += val;
            if i != last_i {
                s += sep;
            }
        }
        s
    }

    impl<'a> Delete<'a> {
        /// Construct a new `DELETE` query builder
        pub fn new(table: &'a str) -> Self {
            let query_builder = Delete {
                table: table,
                conditions: None,
            };

            query_builder
        }

        /// Filter result set based on conditions (`WHERE` clause)
        pub fn filter(&mut self, expr: &'a str) -> &mut Self {
            if self.conditions.is_none() {
                self.conditions = Some(Vec::new());
            }

            match self.conditions {
                Some(ref mut current_conditions) => {
                    current_conditions.push(expr);
                },
                None => unreachable!(),
            }

            self
        }


        /// Generate SQL query (`String`) from subsequent method calls
        pub fn build(&self) -> String {
            let mut query = String::from("DELETE FROM ");
            query += self.table;

            if let Some(ref conditions) = self.conditions {
                query += " WHERE ";
                query += join(conditions, " AND ").as_str();
            }

            query += ";";
            query
        }
    }

    impl<'a> Insert<'a> {
        /// Construct a new `INSERT` query builder
        pub fn new(table: &'a str) -> Self {
            let query_builder = Insert {
                table: table,
                values: HashMap::new(),
            };

            query_builder
        }

        /// Set a field value
        pub fn set(&mut self, field: &'a str, value: &'a str) -> &mut Self {
            let _ = self.values.insert(field, value);
            self
        }

        /// Generate SQL query (`String`) from subsequent method calls
        pub fn build(&self) -> String {
            let mut query = String::from("INSERT INTO ");
            query += self.table;

            let mut columns: Vec<&str> = Vec::new();
            let mut values: Vec<&str> = Vec::new();

            for (field, value) in self.values.iter() {
                columns.push(field);
                values.push(value);
            }

            query += " (";
            query += join(&columns, ", ").as_str();
            query += ") VALUES (";
            query += join(&values, ", ").as_str();
            query += ");";
            query
        }
    }

    impl<'a> Select<'a> {
        /// Construct a new `SELECT` query builder
        pub fn new(table: &'a str) -> Self {
            let query_builder = Select {
                table: table,
                aliases: None,
                fields: None,
                order: None,
                conditions: None,
                limit: 0usize,
                offset: 0usize,
            };

            query_builder
        }

        /// Set a table alias (`AS`)
        pub fn alias(&mut self, table: &'a str, alias: &'a str) -> &mut Self {
            if self.aliases.is_none() {
                self.aliases = Some(HashMap::new());
            }

            match self.aliases {
                Some(ref mut aliases) => {
                    aliases.insert(table, alias);
                },
                None => unreachable!(),
            }

            self
        }

        /// Specify desired table fields in result set
        pub fn fields(&mut self, fields: &[&'a str]) -> &mut Self {
            if self.fields.is_none() {
                self.fields = Some(Vec::new());
            }

            match self.fields {
                Some(ref mut current_fields) => {
                    for field in fields {
                        current_fields.push(field);
                    }
                },
                None => unreachable!(),
            }

            self 
        }

        /// Filter result set based on conditions (`WHERE` clause)
        pub fn filter(&mut self, expr: &'a str) -> &mut Self {
            if self.conditions.is_none() {
                self.conditions = Some(Vec::new());
            }

            match self.conditions {
                Some(ref mut current_conditions) => {
                    current_conditions.push(expr);
                },
                None => unreachable!(),
            }

            self
        }

        /// Order result set based on the value of an expression (`ORDER BY` clause)
        pub fn order_by(&mut self, expr: &'a str, direction: Order) -> &mut Self {
            if self.order.is_none() {
                self.order = Some(Vec::new());
            }

            match self.order {
                Some(ref mut current_order) => {
                    let order = (expr, direction);
                    current_order.push(order);
                },
                None => unreachable!(),
            }

            self 
        }

        #[allow(unused_variables)]
        pub fn inner_join(&mut self, table: &str, on_left: &str, on_right: &str) -> &mut Self {
            self
        }

        #[allow(unused_variables)]
        pub fn left_join(&mut self, table: &str, on_left: &str, on_right: &str) -> &mut Self {
            self
        }

        /// Limit number of rows in result set (`LIMIT`)
        pub fn limit(&mut self, limit: usize) -> &mut Self {
            self.limit = limit;
            self
        }

        /// Offset number of rows in result set (`OFFSET`)
        pub fn offset(&mut self, offset: usize) -> &mut Self {
            self.offset = offset;
            self
        }

        /// Generate SQL query (`String`) from subsequent method calls
        pub fn build(&self) -> String {
            let mut query = String::from("SELECT ");

            match self.fields {
                Some(ref fields) => {
                    query += join(fields, ", ").as_str();
                },
                None => query += "*",
            }

            query += " FROM ";
            query += self.table;

            if let Some(ref aliases) = self.aliases {
                if let Some(ref alias) = aliases.get(self.table) {
                    query += " AS ";
                    query += *alias;
                }
            }

            if let Some(ref conditions) = self.conditions {
                query += " WHERE ";
                query += join(conditions, " AND ").as_str();
            }

            if let Some(ref order) = self.order {
                query += " ORDER BY ";
                for item in order.iter() {
                    let (ref expr, ref dir) = *item;
                    query += expr;
                    match *dir {
                        Order::Asc => query += " ASC",
                        Order::Desc => query += " DESC",
                    }
                }
            }

            if self.limit != 0 {
                query += " LIMIT ";
                query += self.limit.to_string().as_str();
            }

            if self.offset != 0 {
                query += ", ";
                query += self.offset.to_string().as_str();
            }

            query += ";";
            query
        }
    }

    impl<'a> Update<'a> {
        /// Construct a new `UPDATE` query builder
        pub fn new(table: &'a str) -> Self {
            let query_builder = Update {
                table: table,
                values: HashMap::new(),
                conditions: None,
            };

            query_builder
        }

        /// Set a field value
        pub fn set(&mut self, field: &'a str, value: &'a str) -> &mut Self {
            let _ = self.values.insert(field, value);
            self
        }

        /// Filter result set based on conditions (`WHERE` clause)
        pub fn filter(&mut self, expr: &'a str) -> &mut Self {
            if self.conditions.is_none() {
                self.conditions = Some(Vec::new());
            }

            match self.conditions {
                Some(ref mut current_conditions) => {
                    current_conditions.push(expr);
                },
                None => unreachable!(),
            }

            self
        }

        /// Generate SQL query (`String`) from subsequent method calls
        pub fn build(&self) -> String {
            let mut query = String::from("UPDATE ");
            query += self.table;

            let assignments: Vec<String>;
            assignments = self.values.iter().map(|(&field, &value)| {
                let mut assignment = String::from(field);
                assignment += " = ";
                assignment += value;
                assignment
            }).collect();

            query += " SET ";
            query += assignments.join(" AND ").as_str();

            if let Some(ref conditions) = self.conditions {
                query += " WHERE ";
                query += join(conditions, " AND ").as_str();
            }

            query += ";";
            query
        }
    }

    /// Helper function to construct new `DELETE` query builder
    pub fn delete(table: &str) -> Delete {
        Delete::new(table)
    }

    /// Helper function to construct new `INSERT` query builder
    pub fn insert(table: &str) -> Insert {
        Insert::new(table)
    }

    /// Helper function to construct new `SELECT` query builder
    pub fn select(table: &str) -> Select {
        Select::new(table)
    }

    /// Helper function to construct new `UPDATE` query builder
    pub fn update(table: &str) -> Update {
        Update::new(table)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_delete_query() {
        let query = query_builder::delete("users")
            .build();
        assert_eq!("DELETE FROM users;", query);
    }

    #[test]
    fn test_delete_query_with_conditions() {
        let query = query_builder::delete("users")
            .filter("name = $1")
            .filter("karma <= $2")
            .build();
        assert_eq!("DELETE FROM users WHERE name = $1 AND karma <= $2;", query);
    }

    #[test]
    fn test_insert_query() {
        let query = query_builder::insert("users")
            .set("name", "$1")
            .set("karma", "$2")
            .build();
        let possibility1 = "INSERT INTO users (name, karma) VALUES ($1, $2);" == query;
        let possibility2 = "INSERT INTO users (karma, name) VALUES ($2, $1);" == query;
        assert!(possibility1 || possibility2);
    }

    #[test]
    fn test_select_query() {
        let query = query_builder::select("users")
            .build();
        assert_eq!("SELECT * FROM users;", query);
    }

    #[test]
    fn test_select_query_with_fields() {
        let query = query_builder::select("users")
            .fields(&["id", "name"])
            .build();
        assert_eq!("SELECT id, name FROM users;", query);
    }

    #[test]
    fn test_select_query_with_alias() {
        let query = query_builder::select("users")
            .alias("users", "u")
            .fields(&["id", "name"])
            .build();
        assert_eq!("SELECT id, name FROM users AS u;", query);
    }
 
    #[test]
    fn test_select_query_with_limit() {
        let query = query_builder::select("users")
            .fields(&["id", "name"])
            .limit(15)
            .build();
        assert_eq!("SELECT id, name FROM users LIMIT 15;", query);
    }
 
    #[test]
    fn test_select_query_with_offset() {
        let query = query_builder::select("users")
            .fields(&["id", "name"])
            .limit(15)
            .offset(30)
            .build();
        assert_eq!("SELECT id, name FROM users LIMIT 15, 30;", query);
    }
 
    #[test]
    fn test_select_query_with_conditions() {
        let query = query_builder::select("users")
            .fields(&["id", "name"])
            .filter("id = $1")
            .filter("name = $2")
            .build();
        assert_eq!("SELECT id, name FROM users WHERE id = $1 AND name = $2;", query);
    }
 
    #[test]
    fn test_select_query_with_order() {
        let query = query_builder::select("users")
            .fields(&["id", "name"])
            .filter("name = $1")
            .order_by("id", query_builder::Order::Asc)
            .build();
        assert_eq!("SELECT id, name FROM users WHERE name = $1 ORDER BY id ASC;", query);
    }

    #[test]
    fn test_update_query() {
        let query = query_builder::update("users")
            .set("karma", "0")
            .set("last_login", "1970-01-01")
            .build();
        let possibility1 = "UPDATE users SET karma = 0 AND last_login = 1970-01-01;" == query;
        let possibility2 = "UPDATE users SET last_login = 1970-01-01 AND karma = 0;" == query;
        assert!(possibility1 || possibility2);
    }

    #[test]
    fn test_update_query_with_conditions() {
        let query = query_builder::update("users")
            .set("karma", "0")
            .filter("name = $1")
            .filter("last_login < $2")
            .build();
        assert_eq!("UPDATE users SET karma = 0 WHERE name = $1 AND last_login < $2;", query);
    }
}