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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
#[cfg(feature = "sqlite")]
use crate::structure::UpdateVars;
use crate::{
  behavior::{push_unique, Concat, TransactionQuery, WithQuery},
  fmt,
  structure::{LogicalOperator, Update, UpdateClause},
};

impl WithQuery for Update {}

impl TransactionQuery for Update {}

impl Update {
  /// Gets the current state of the [Update] and returns it as string
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .update("users")
  ///   .set("login = 'foo'")
  ///   .as_string();
  ///
  /// # let expected = "UPDATE users SET login = 'foo'";
  /// # assert_eq!(update_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  ///  UPDATE users SET login = 'foo'
  /// ```
  pub fn as_string(&self) -> String {
    let fmts = fmt::one_line();
    self.concat(&fmts)
  }

  /// Prints the current state of the [Update] to the standard output in a more ease to read version.
  /// This method is useful to debug complex queries or just print the generated SQL while you type
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let update = sql::Update::new()
  ///   .update("users")
  ///   .set("login = 'foo'")
  ///   .set("name = 'Foo'")
  ///   .debug();
  ///
  /// # let expected = "UPDATE users SET login = 'foo', name = 'Foo'";
  /// # assert_eq!(update.as_string(), expected);
  /// ```
  ///
  /// Prints to the standard output
  ///
  /// ```sql
  /// -- ------------------------------------------------------------------------------
  /// UPDATE users
  /// SET login = 'foo', name = 'Foo'
  /// -- ------------------------------------------------------------------------------
  /// ```
  pub fn debug(self) -> Self {
    let fmts = fmt::multiline();
    println!("{}", fmt::format(self.concat(&fmts), &fmts));
    self
  }

  /// Creates instance of the Update command
  pub fn new() -> Self {
    Self::default()
  }

  /// Prints the current state of the [Update] to the standard output similar to debug method,
  /// the difference is that this method prints in one line.
  pub fn print(self) -> Self {
    let fmts = fmt::one_line();
    println!("{}", fmt::format(self.concat(&fmts), &fmts));
    self
  }

  /// Adds at the beginning a raw SQL query.
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let raw_query = "update users";
  ///
  /// let update_query = sql::Update::new()
  ///   .raw(raw_query)
  ///   .set("login = 'foo'")
  ///   .as_string();
  ///
  /// # let expected = "update users SET login = 'foo'";
  /// # assert_eq!(update_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// update users
  /// SET login = 'foo'
  /// ```
  pub fn raw(mut self, raw_sql: &str) -> Self {
    push_unique(&mut self._raw, raw_sql.trim().to_string());
    self
  }

  /// Adds a raw SQL query after a specified clause.
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let raw = "set name = 'Foo'";
  ///
  /// let update_query = sql::Update::new()
  ///   .update("users")
  ///   .raw_after(sql::UpdateClause::Update, raw)
  ///   .as_string();
  ///
  /// # let expected = "UPDATE users set name = 'Foo'";
  /// # assert_eq!(update_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// UPDATE users
  /// set name = 'Foo'
  /// ```
  pub fn raw_after(mut self, clause: UpdateClause, raw_sql: &str) -> Self {
    self._raw_after.push((clause, raw_sql.trim().to_string()));
    self
  }

  /// Adds a raw SQL query before a specified clause.
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let raw = "update users";
  ///
  /// let update_query = sql::Update::new()
  ///   .raw_before(sql::UpdateClause::Set, raw)
  ///   .set("name = 'Bar'")
  ///   .as_string();
  ///
  /// # let expected = "update users SET name = 'Bar'";
  /// # assert_eq!(update_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// update users
  /// SET name = 'Bar'
  /// ```
  pub fn raw_before(mut self, clause: UpdateClause, raw_sql: &str) -> Self {
    self._raw_before.push((clause, raw_sql.trim().to_string()));
    self
  }

  /// The `set` clause
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .set("name = 'Bar'")
  ///   .as_string();
  ///
  /// # let expected = "SET name = 'Bar'";
  /// # assert_eq!(update_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// SET name = 'Bar'
  /// ```
  pub fn set(mut self, value: &str) -> Self {
    push_unique(&mut self._set, value.trim().to_string());
    self
  }

  /// The `update` clause, this method overrides the previous value
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .update("orders")
  ///   .as_string();
  ///
  /// # let expected = "UPDATE orders";
  /// # assert_eq!(update_query, expected);
  /// ```
  #[cfg(not(feature = "sqlite"))]
  pub fn update(mut self, table_name: &str) -> Self {
    self._update = table_name.trim().to_string();
    self
  }

  /// This method is un alias of `where_clause`. The `where_and` will concatenate mulltiples calls using the `and` operator.
  /// The intention is to enable more idiomatic concatenation of conditions.
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .where_clause("login = $1")
  ///   .where_and("product_id = $2")
  ///   .where_and("created_at >= current_date")
  ///   .as_string();
  ///
  /// # let expected = "WHERE login = $1 AND product_id = $2 AND created_at >= current_date";
  /// # assert_eq!(update_query, expected);
  /// ```
  ///
  /// Outputs
  ///
  /// ```sql
  /// WHERE
  ///   login = $1
  ///   AND product_id = $2
  ///   AND created_at >= current_date
  /// ```
  pub fn where_and(self, condition: &str) -> Self {
    self.where_clause(condition)
  }

  /// The `where` clause, this method will concatenate mulltiples calls using the `and` operator.
  /// If you intended to use the `or` operator you should use the [where_or](Update::where_or) method
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .where_clause("login = $1")
  ///   .where_clause("status = 'deactivated'")
  ///   .as_string();
  ///
  /// # let expected = "WHERE login = $1 AND status = 'deactivated'";
  /// # assert_eq!(update_query, expected);
  /// ```
  ///
  /// Outputs
  ///
  /// ```sql
  /// WHERE
  ///   login = $1
  ///   AND status = 'deactivated'
  /// ```
  pub fn where_clause(mut self, condition: &str) -> Self {
    push_unique(&mut self._where, (LogicalOperator::And, condition.trim().to_string()));
    self
  }

  /// The `where` clause that concatenate multiples calls using the OR operator.
  /// If you intended to use the `and` operator you should use the [where_clause](Update::where_clause) method
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .where_clause("login = 'foo'")
  ///   .where_or("login = 'bar'")
  ///   .as_string();
  ///
  /// # let expected = "WHERE login = 'foo' OR login = 'bar'";
  /// # assert_eq!(update_query, expected);
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// WHERE
  ///   login = 'foo'
  ///   OR login = 'bar'
  /// ```
  pub fn where_or(mut self, condition: &str) -> Self {
    push_unique(&mut self._where, (LogicalOperator::Or, condition.trim().to_string()));
    self
  }
}

#[cfg(any(doc, feature = "postgresql", feature = "sqlite"))]
impl Update {
  /// The `from` clause, this method can be used enabling one of the feature flags `postgresql` or `sqlite`
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(any(feature = "postgresql", feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let update = sql::Update::new()
  ///   .update("users")
  ///   .set("users.status = 'active'")
  ///   .from("users_bk")
  ///   .where_clause("users_bk.status = 'active'")
  ///   .debug();
  ///
  /// # let expected = "\
  /// #   UPDATE users \
  /// #   SET users.status = 'active' \
  /// #   FROM users_bk \
  /// #   WHERE users_bk.status = 'active'\
  /// # ";
  /// # assert_eq!(update.as_string(), expected);
  /// # }
  /// ```
  ///
  /// Prints to the standard output
  ///
  /// ```sql
  /// -- ------------------------------------------------------------------------------
  /// UPDATE users
  /// SET users.status = 'active'
  /// FROM users_bk
  /// WHERE users_bk.status = 'active'
  /// -- ------------------------------------------------------------------------------
  /// ```
  pub fn from(mut self, tables: &str) -> Self {
    push_unique(&mut self._from, tables.trim().to_string());
    self
  }

  /// The `returning` clause, this method can be used enabling one of the feature flags `postgresql` or `sqlite`
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(any(feature = "postgresql", feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .returning("name, login")
  ///   .as_string();
  ///
  /// # let expected = "RETURNING name, login";
  /// # assert_eq!(update_query, expected);
  /// # }
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// RETURNING name, login
  /// ```
  pub fn returning(mut self, output_name: &str) -> Self {
    push_unique(&mut self._returning, output_name.trim().to_string());
    self
  }

  /// The `with` clause, this method can be used enabling one of the feature flags `postgresql` or `sqlite`
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(any(feature = "postgresql", feature = "sqlite"))]
  /// # {
  /// # use sql_query_builder as sql;
  /// let user = sql::Insert::new()
  ///   .insert_into("users(login, name)")
  ///   .values("('foo', 'Foo')")
  ///   .returning("group_id");
  ///
  /// let update = sql::Update::new()
  ///   .with("user", user)
  ///   .update("user_group")
  ///   .set("count = count + 1")
  ///   .where_clause("id = (select group_id from user)")
  ///   .debug();
  ///
  /// # let expected = "\
  /// #   WITH \
  /// #   user AS (\
  /// #     INSERT INTO users(login, name) \
  /// #     VALUES ('foo', 'Foo') \
  /// #     RETURNING group_id\
  /// #   ) \
  /// #   UPDATE user_group \
  /// #   SET count = count + 1 \
  /// #   WHERE id = (select group_id from user)\
  /// # ";
  /// # assert_eq!(update.as_string(), expected);
  /// # }
  /// ```
  ///
  /// Prints to the standard output
  ///
  /// ```sql
  /// -- ------------------------------------------------------------------------------
  /// WITH
  /// user AS (
  ///   INSERT INTO users(login, name)
  ///   VALUES ('foo', 'Foo')
  ///   RETURNING group_id
  /// )
  /// UPDATE user_group
  /// SET count = count + 1
  /// WHERE id = (select group_id from user)
  /// -- ------------------------------------------------------------------------------
  /// ```
  pub fn with(mut self, name: &str, query: impl WithQuery + 'static) -> Self {
    self._with.push((name.trim().to_string(), std::sync::Arc::new(query)));
    self
  }
}

#[cfg(any(doc, feature = "sqlite"))]
impl Update {
  /// The `cross join` clause, this method can be used enabling the feature flag `sqlite`
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(feature = "sqlite")]
  /// # {
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .cross_join("orders")
  ///   .as_string();
  ///
  /// # let expected = "CROSS JOIN orders";
  /// # assert_eq!(update_query, expected);
  /// # }
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// CROSS JOIN orders
  /// ```
  pub fn cross_join(mut self, table: &str) -> Self {
    let table = table.trim();
    let table = format!("CROSS JOIN {table}");
    push_unique(&mut self._join, table);
    self
  }

  /// The `inner join` clause, this method can be used enabling the feature flag `sqlite`
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(feature = "sqlite")]
  /// # {
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .inner_join("orders on orders.owner_login = users.login")
  ///   .as_string();
  ///
  /// # let expected = "INNER JOIN orders on orders.owner_login = users.login";
  /// # assert_eq!(update_query, expected);
  /// # }
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// INNER JOIN orders on orders.owner_login = users.login
  /// ```
  pub fn inner_join(mut self, table: &str) -> Self {
    let table = table.trim();
    let table = format!("INNER JOIN {table}");
    push_unique(&mut self._join, table);
    self
  }

  /// The `left join` clause, this method can be used enabling the feature flag `sqlite`
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(feature = "sqlite")]
  /// # {
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .left_join("orders on orders.owner_login = users.login")
  ///   .as_string();
  ///
  /// # let expected = "LEFT JOIN orders on orders.owner_login = users.login";
  /// # assert_eq!(update_query, expected);
  /// # }
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// LEFT JOIN orders on orders.owner_login = users.login
  /// ```
  pub fn left_join(mut self, table: &str) -> Self {
    let table = table.trim();
    let table = format!("LEFT JOIN {table}");
    push_unique(&mut self._join, table);
    self
  }

  /// The `right join` clause, this method can be used enabling the feature flag `sqlite`
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(feature = "sqlite")]
  /// # {
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .right_join("orders on orders.owner_login = users.login")
  ///   .as_string();
  ///
  /// # let expected = "RIGHT JOIN orders on orders.owner_login = users.login";
  /// # assert_eq!(update_query, expected);
  /// # }
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// RIGHT JOIN orders on orders.owner_login = users.login
  /// ```
  pub fn right_join(mut self, table: &str) -> Self {
    let table = table.trim();
    let table = format!("RIGHT JOIN {table}");
    push_unique(&mut self._join, table);
    self
  }

  /// The `update` clause, this method overrides the previous value
  ///
  /// # Example
  ///
  /// ```
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .update("orders")
  ///   .as_string();
  ///
  /// # let expected = "UPDATE orders";
  /// # assert_eq!(update_query, expected);
  /// ```
  pub fn update(mut self, table_name: &str) -> Self {
    self._update = (UpdateVars::Update, table_name.trim().to_string());
    self
  }

  /// The `update or <keyword>` clause, this method overrides the previous value and can be used enabling the feature flag `sqlite`
  ///
  /// # Example
  ///
  /// ```
  /// # #[cfg(feature = "sqlite")]
  /// # {
  /// # use sql_query_builder as sql;
  /// let update_query = sql::Update::new()
  ///   .update_or("ABORT orders")
  ///   .as_string();
  ///
  /// # let expected = "UPDATE OR ABORT orders";
  /// # assert_eq!(update_query, expected);
  /// # }
  /// ```
  ///
  /// Output
  ///
  /// ```sql
  /// UPDATE OR ABORT orders
  /// ```
  pub fn update_or(mut self, expression: &str) -> Self {
    self._update = (UpdateVars::UpdateOr, expression.trim().to_string());
    self
  }
}

impl std::fmt::Display for Update {
  fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
    write!(f, "{}", self.as_string())
  }
}

impl std::fmt::Debug for Update {
  fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
    let fmts = fmt::multiline();
    write!(f, "{}", fmt::format(self.concat(&fmts), &fmts))
  }
}