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
use super::*;
use backend::Backend;
use dsl::Or;
use expression::operators::And;
use expression::*;
use expression_methods::*;
use result::QueryResult;
use sql_types::Bool;
pub trait WhereAnd<Predicate> {
type Output;
fn and(self, predicate: Predicate) -> Self::Output;
}
pub trait WhereOr<Predicate> {
type Output;
fn or(self, predicate: Predicate) -> Self::Output;
}
#[derive(Debug, Clone, Copy, QueryId)]
pub struct NoWhereClause;
impl<DB: Backend> QueryFragment<DB> for NoWhereClause {
fn walk_ast(&self, _: AstPass<DB>) -> QueryResult<()> {
Ok(())
}
}
impl<Predicate> WhereAnd<Predicate> for NoWhereClause
where
Predicate: Expression<SqlType = Bool>,
{
type Output = WhereClause<Predicate>;
fn and(self, predicate: Predicate) -> Self::Output {
WhereClause(predicate)
}
}
impl<Predicate> WhereOr<Predicate> for NoWhereClause
where
Predicate: Expression<SqlType = Bool>,
{
type Output = WhereClause<Predicate>;
fn or(self, predicate: Predicate) -> Self::Output {
WhereClause(predicate)
}
}
impl<DB> Into<BoxedWhereClause<'static, DB>> for NoWhereClause {
fn into(self) -> BoxedWhereClause<'static, DB> {
BoxedWhereClause::None
}
}
#[derive(Debug, Clone, Copy, QueryId)]
pub struct WhereClause<Expr>(Expr);
impl<DB, Expr> QueryFragment<DB> for WhereClause<Expr>
where
DB: Backend,
Expr: QueryFragment<DB>,
{
fn walk_ast(&self, mut out: AstPass<DB>) -> QueryResult<()> {
out.push_sql(" WHERE ");
self.0.walk_ast(out.reborrow())?;
Ok(())
}
}
impl<Expr, Predicate> WhereAnd<Predicate> for WhereClause<Expr>
where
Expr: Expression<SqlType = Bool>,
Predicate: Expression<SqlType = Bool>,
{
type Output = WhereClause<And<Expr, Predicate>>;
fn and(self, predicate: Predicate) -> Self::Output {
WhereClause(self.0.and(predicate))
}
}
impl<Expr, Predicate> WhereOr<Predicate> for WhereClause<Expr>
where
Expr: Expression<SqlType = Bool>,
Predicate: Expression<SqlType = Bool>,
{
type Output = WhereClause<Or<Expr, Predicate>>;
fn or(self, predicate: Predicate) -> Self::Output {
WhereClause(self.0.or(predicate))
}
}
impl<'a, DB, Predicate> Into<BoxedWhereClause<'a, DB>> for WhereClause<Predicate>
where
DB: Backend,
Predicate: QueryFragment<DB> + 'a,
{
fn into(self) -> BoxedWhereClause<'a, DB> {
BoxedWhereClause::Where(Box::new(self.0))
}
}
pub trait ValidWhereClause<QS> {}
impl<QS> ValidWhereClause<QS> for NoWhereClause {}
impl<QS, Expr> ValidWhereClause<QS> for WhereClause<Expr> where Expr: AppearsOnTable<QS> {}
#[allow(missing_debug_implementations)]
pub enum BoxedWhereClause<'a, DB> {
Where(Box<dyn QueryFragment<DB> + 'a>),
None,
}
impl<'a, DB> QueryFragment<DB> for BoxedWhereClause<'a, DB>
where
DB: Backend,
{
fn walk_ast(&self, mut out: AstPass<DB>) -> QueryResult<()> {
match *self {
BoxedWhereClause::Where(ref where_clause) => {
out.push_sql(" WHERE ");
where_clause.walk_ast(out)
}
BoxedWhereClause::None => Ok(()),
}
}
}
impl<'a, DB> QueryId for BoxedWhereClause<'a, DB> {
type QueryId = ();
const HAS_STATIC_QUERY_ID: bool = false;
}
impl<'a, DB, Predicate> WhereAnd<Predicate> for BoxedWhereClause<'a, DB>
where
DB: Backend + 'a,
Predicate: QueryFragment<DB> + 'a,
{
type Output = Self;
fn and(self, predicate: Predicate) -> Self::Output {
use self::BoxedWhereClause::Where;
match self {
Where(where_clause) => Where(Box::new(And::new(where_clause, predicate))),
BoxedWhereClause::None => Where(Box::new(predicate)),
}
}
}
impl<'a, DB, Predicate> WhereOr<Predicate> for BoxedWhereClause<'a, DB>
where
DB: Backend + 'a,
Predicate: QueryFragment<DB> + 'a,
{
type Output = Self;
fn or(self, predicate: Predicate) -> Self::Output {
use self::BoxedWhereClause::Where;
use expression::grouped::Grouped;
use expression::operators::Or;
match self {
Where(where_clause) => Where(Box::new(Grouped(Or::new(where_clause, predicate)))),
BoxedWhereClause::None => Where(Box::new(predicate)),
}
}
}