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
use super::{Column, Comparable, ConditionTree, DefaultValue, ExpressionKind, IndexDefinition, Join, JoinData};
use crate::{
ast::{Expression, Row, Select, Values},
error::{Error, ErrorKind},
};
use std::borrow::Cow;
/// An object that can be aliased.
pub trait Aliasable<'a> {
type Target;
/// Alias table for usage elsewhere in the query.
fn alias<T>(self, alias: T) -> Self::Target
where
T: Into<Cow<'a, str>>;
}
#[derive(Clone, Debug, PartialEq)]
/// Either an identifier or a nested query.
pub enum TableType<'a> {
Table(Cow<'a, str>),
JoinedTable(Box<(Cow<'a, str>, Vec<Join<'a>>)>),
Query(Box<Select<'a>>),
Values(Values<'a>),
}
/// A table definition
#[derive(Clone, Debug)]
pub struct Table<'a> {
pub typ: TableType<'a>,
pub alias: Option<Cow<'a, str>>,
pub database: Option<Cow<'a, str>>,
pub(crate) index_definitions: Vec<IndexDefinition<'a>>,
}
impl<'a> PartialEq for Table<'a> {
fn eq(&self, other: &Table) -> bool {
self.typ == other.typ && self.database == other.database
}
}
impl<'a> Table<'a> {
/// Define in which database the table is located
pub fn database<T>(mut self, database: T) -> Self
where
T: Into<Cow<'a, str>>,
{
self.database = Some(database.into());
self
}
/// A qualified asterisk to this table
pub fn asterisk(self) -> Expression<'a> {
Expression { kind: ExpressionKind::Asterisk(Some(Box::new(self))), alias: None }
}
/// Add unique index definition.
pub fn add_unique_index(mut self, i: impl Into<IndexDefinition<'a>>) -> Self {
let definition = i.into();
self.index_definitions.push(definition.set_table(self.clone()));
self
}
/// Conditions for Microsoft T-SQL MERGE using the table metadata.
///
/// - Find the unique indices from the table that matches the inserted columns
/// - Create a join from the virtual table with the uniques
/// - Combine joins with `OR`
/// - If the the index is a compound with other columns, combine them with `AND`
/// - If the column is not provided and index exists, try inserting a default value.
/// - Otherwise the function will return an error.
pub(crate) fn join_conditions(&self, inserted_columns: &[Column<'a>]) -> crate::Result<ConditionTree<'a>> {
let mut result = ConditionTree::NegativeCondition;
let join_cond = |column: &Column<'a>| {
let cond = if !inserted_columns.contains(column) {
match column.default.clone() {
Some(DefaultValue::Provided(val)) => Some(column.clone().equals(val).into()),
Some(DefaultValue::Generated) => None,
None => {
let kind =
ErrorKind::conversion("A unique column missing from insert and table has no default.");
return Err(Error::builder(kind).build());
}
}
} else {
let dual_col = column.clone().table("dual");
Some(dual_col.equals(column.clone()).into())
};
Ok::<Option<ConditionTree>, Error>(cond)
};
for index in self.index_definitions.iter() {
match index {
IndexDefinition::Single(column) => {
if let Some(right_cond) = join_cond(column)? {
match result {
ConditionTree::NegativeCondition => result = right_cond,
left_cond => result = left_cond.or(right_cond),
}
}
}
IndexDefinition::Compound(cols) => {
let mut sub_result = ConditionTree::NoCondition;
for right in cols.iter() {
let right_cond = join_cond(right)?.unwrap_or(ConditionTree::NegativeCondition);
match sub_result {
ConditionTree::NoCondition => sub_result = right_cond,
left_cond => sub_result = left_cond.and(right_cond),
}
}
match result {
ConditionTree::NegativeCondition => result = sub_result,
left_cond => result = left_cond.or(sub_result),
}
}
}
}
Ok(result)
}
/// Adds a `LEFT JOIN` clause to the query, specifically for that table.
/// Useful to positionally add a JOIN clause in case you are selecting from multiple tables.
///
/// ```rust
/// # use sqlint::{ast::*, visitor::{Visitor, Sqlite}};
/// # fn main() -> Result<(), sqlint::error::Error> {
/// let join = "posts".alias("p").on(("p", "visible").equals(true));
/// let joined_table = Table::from("users").left_join(join);
/// let query = Select::from_table(joined_table).and_from("comments");
/// let (sql, params) = Sqlite::build(query)?;
///
/// assert_eq!(
/// "SELECT `users`.*, `comments`.* FROM \
/// `users` LEFT JOIN `posts` AS `p` ON `p`.`visible` = ?, \
/// `comments`",
/// sql
/// );
///
/// assert_eq!(
/// vec![
/// Value::from(true),
/// ],
/// params
/// );
/// # Ok(())
/// # }
/// ```
pub fn left_join<J>(mut self, join: J) -> Self
where
J: Into<JoinData<'a>>,
{
match self.typ {
TableType::Table(table_name) => {
self.typ = TableType::JoinedTable(Box::new((table_name, vec![Join::Left(join.into())])))
}
TableType::JoinedTable(ref mut jt) => jt.1.push(Join::Left(join.into())),
TableType::Query(_) => {
panic!("You cannot left_join on a table of type Query")
}
TableType::Values(_) => {
panic!("You cannot left_join on a table of type Values")
}
}
self
}
/// Adds an `INNER JOIN` clause to the query, specifically for that table.
/// Useful to positionally add a JOIN clause in case you are selecting from multiple tables.
///
/// ```rust
/// # use sqlint::{ast::*, visitor::{Visitor, Sqlite}};
/// # fn main() -> Result<(), sqlint::error::Error> {
/// let join = "posts".alias("p").on(("p", "visible").equals(true));
/// let joined_table = Table::from("users").inner_join(join);
/// let query = Select::from_table(joined_table).and_from("comments");
/// let (sql, params) = Sqlite::build(query)?;
///
/// assert_eq!(
/// "SELECT `users`.*, `comments`.* FROM \
/// `users` INNER JOIN `posts` AS `p` ON `p`.`visible` = ?, \
/// `comments`",
/// sql
/// );
///
/// assert_eq!(
/// vec![
/// Value::from(true),
/// ],
/// params
/// );
/// # Ok(())
/// # }
/// ```
pub fn inner_join<J>(mut self, join: J) -> Self
where
J: Into<JoinData<'a>>,
{
match self.typ {
TableType::Table(table_name) => {
self.typ = TableType::JoinedTable(Box::new((table_name, vec![Join::Inner(join.into())])))
}
TableType::JoinedTable(ref mut jt) => jt.1.push(Join::Inner(join.into())),
TableType::Query(_) => {
panic!("You cannot inner_join on a table of type Query")
}
TableType::Values(_) => {
panic!("You cannot inner_join on a table of type Values")
}
}
self
}
/// Adds a `RIGHT JOIN` clause to the query, specifically for that table.
/// Useful to positionally add a JOIN clause in case you are selecting from multiple tables.
///
/// ```rust
/// # use sqlint::{ast::*, visitor::{Visitor, Sqlite}};
/// # fn main() -> Result<(), sqlint::error::Error> {
/// let join = "posts".alias("p").on(("p", "visible").equals(true));
/// let joined_table = Table::from("users").right_join(join);
/// let query = Select::from_table(joined_table).and_from("comments");
/// let (sql, params) = Sqlite::build(query)?;
///
/// assert_eq!(
/// "SELECT `users`.*, `comments`.* FROM \
/// `users` RIGHT JOIN `posts` AS `p` ON `p`.`visible` = ?, \
/// `comments`",
/// sql
/// );
///
/// assert_eq!(
/// vec![
/// Value::from(true),
/// ],
/// params
/// );
/// # Ok(())
/// # }
/// ```
pub fn right_join<J>(mut self, join: J) -> Self
where
J: Into<JoinData<'a>>,
{
match self.typ {
TableType::Table(table_name) => {
self.typ = TableType::JoinedTable(Box::new((table_name, vec![Join::Right(join.into())])))
}
TableType::JoinedTable(ref mut jt) => jt.1.push(Join::Right(join.into())),
TableType::Query(_) => {
panic!("You cannot right_join on a table of type Query")
}
TableType::Values(_) => {
panic!("You cannot right_join on a table of type Values")
}
}
self
}
/// Adds a `FULL JOIN` clause to the query, specifically for that table.
/// Useful to positionally add a JOIN clause in case you are selecting from multiple tables.
///
/// ```rust
/// # use sqlint::{ast::*, visitor::{Visitor, Sqlite}};
/// # fn main() -> Result<(), sqlint::error::Error> {
/// let join = "posts".alias("p").on(("p", "visible").equals(true));
/// let joined_table = Table::from("users").full_join(join);
/// let query = Select::from_table(joined_table).and_from("comments");
/// let (sql, params) = Sqlite::build(query)?;
///
/// assert_eq!(
/// "SELECT `users`.*, `comments`.* FROM \
/// `users` FULL JOIN `posts` AS `p` ON `p`.`visible` = ?, \
/// `comments`",
/// sql
/// );
///
/// assert_eq!(
/// vec![
/// Value::from(true),
/// ],
/// params
/// );
/// # Ok(())
/// # }
/// ```
pub fn full_join<J>(mut self, join: J) -> Self
where
J: Into<JoinData<'a>>,
{
match self.typ {
TableType::Table(table_name) => {
self.typ = TableType::JoinedTable(Box::new((table_name, vec![Join::Full(join.into())])))
}
TableType::JoinedTable(ref mut jt) => jt.1.push(Join::Full(join.into())),
TableType::Query(_) => {
panic!("You cannot full_join on a table of type Query")
}
TableType::Values(_) => {
panic!("You cannot full_join on a table of type Values")
}
}
self
}
}
impl<'a> From<&'a str> for Table<'a> {
fn from(s: &'a str) -> Table<'a> {
Table { typ: TableType::Table(s.into()), alias: None, database: None, index_definitions: Vec::new() }
}
}
impl<'a> From<&'a String> for Table<'a> {
fn from(s: &'a String) -> Table<'a> {
Table { typ: TableType::Table(s.into()), alias: None, database: None, index_definitions: Vec::new() }
}
}
impl<'a> From<(&'a str, &'a str)> for Table<'a> {
fn from(s: (&'a str, &'a str)) -> Table<'a> {
let table: Table<'a> = s.1.into();
table.database(s.0)
}
}
impl<'a> From<(&'a str, &'a String)> for Table<'a> {
fn from(s: (&'a str, &'a String)) -> Table<'a> {
let table: Table<'a> = s.1.into();
table.database(s.0)
}
}
impl<'a> From<(&'a String, &'a str)> for Table<'a> {
fn from(s: (&'a String, &'a str)) -> Table<'a> {
let table: Table<'a> = s.1.into();
table.database(s.0)
}
}
impl<'a> From<(&'a String, &'a String)> for Table<'a> {
fn from(s: (&'a String, &'a String)) -> Table<'a> {
let table: Table<'a> = s.1.into();
table.database(s.0)
}
}
impl<'a> From<String> for Table<'a> {
fn from(s: String) -> Self {
Table { typ: TableType::Table(s.into()), alias: None, database: None, index_definitions: Vec::new() }
}
}
impl<'a> From<Vec<Row<'a>>> for Table<'a> {
fn from(values: Vec<Row<'a>>) -> Self {
Table::from(Values::from(values.into_iter()))
}
}
impl<'a> From<Values<'a>> for Table<'a> {
fn from(values: Values<'a>) -> Self {
Self { typ: TableType::Values(values), alias: None, database: None, index_definitions: Vec::new() }
}
}
impl<'a> From<(String, String)> for Table<'a> {
fn from(s: (String, String)) -> Table<'a> {
let table: Table<'a> = s.1.into();
table.database(s.0)
}
}
impl<'a> From<Select<'a>> for Table<'a> {
fn from(select: Select<'a>) -> Self {
Table { typ: TableType::Query(Box::new(select)), alias: None, database: None, index_definitions: Vec::new() }
}
}
impl<'a> Aliasable<'a> for Table<'a> {
type Target = Table<'a>;
fn alias<T>(mut self, alias: T) -> Self::Target
where
T: Into<Cow<'a, str>>,
{
self.alias = Some(alias.into());
self
}
}
aliasable!(String, (String, String));
aliasable!(&'a str, (&'a str, &'a str));