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
pub mod debug;
#[macro_use]
mod query_id;
#[macro_use]
mod clause_macro;
pub mod bind_collector;
mod delete_statement;
#[doc(hidden)]
pub mod functions;
#[doc(hidden)]
pub mod nodes;
mod distinct_clause;
mod group_by_clause;
mod limit_clause;
mod offset_clause;
mod order_clause;
mod returning_clause;
mod select_statement;
pub mod where_clause;
pub mod insert_statement;
pub mod update_statement;
pub use self::bind_collector::BindCollector;
pub use self::query_id::QueryId;
#[doc(hidden)]
pub use self::select_statement::{SelectStatement, BoxedSelectStatement};
#[doc(inline)]
pub use self::update_statement::{
AsChangeset,
Changeset,
IncompleteUpdateStatement,
IntoUpdateTarget,
UpdateStatement,
UpdateTarget,
};
#[doc(inline)]
pub use self::insert_statement::IncompleteInsertStatement;
use std::error::Error;
use backend::Backend;
use result::QueryResult;
#[doc(hidden)]
pub type Binds = Vec<Option<Vec<u8>>>;
pub type BuildQueryResult = Result<(), Box<Error+Send+Sync>>;
pub trait QueryBuilder<DB: Backend> {
fn push_sql(&mut self, sql: &str);
fn push_identifier(&mut self, identifier: &str) -> BuildQueryResult;
fn push_bind_param(&mut self);
fn finish(self) -> String;
}
pub trait Query {
type SqlType;
}
impl<'a, T: Query> Query for &'a T {
type SqlType = T::SqlType;
}
pub trait QueryFragment<DB: Backend> {
fn to_sql(&self, out: &mut DB::QueryBuilder) -> BuildQueryResult;
fn collect_binds(&self, out: &mut DB::BindCollector) -> QueryResult<()>;
fn is_safe_to_cache_prepared(&self) -> bool;
}
impl<T: ?Sized, DB> QueryFragment<DB> for Box<T> where
DB: Backend,
T: QueryFragment<DB>,
{
fn to_sql(&self, out: &mut DB::QueryBuilder) -> BuildQueryResult {
QueryFragment::to_sql(&**self, out)
}
fn collect_binds(&self, out: &mut DB::BindCollector) -> QueryResult<()> {
QueryFragment::collect_binds(&**self, out)
}
fn is_safe_to_cache_prepared(&self) -> bool {
QueryFragment::is_safe_to_cache_prepared(&**self)
}
}
impl<'a, T: ?Sized, DB> QueryFragment<DB> for &'a T where
DB: Backend,
T: QueryFragment<DB>,
{
fn to_sql(&self, out: &mut DB::QueryBuilder) -> BuildQueryResult {
QueryFragment::to_sql(&**self, out)
}
fn collect_binds(&self, out: &mut DB::BindCollector) -> QueryResult<()> {
QueryFragment::collect_binds(&**self, out)
}
fn is_safe_to_cache_prepared(&self) -> bool {
QueryFragment::is_safe_to_cache_prepared(&**self)
}
}
impl<DB: Backend> QueryFragment<DB> for () {
fn to_sql(&self, _out: &mut DB::QueryBuilder) -> BuildQueryResult {
Ok(())
}
fn collect_binds(&self, _out: &mut DB::BindCollector) -> QueryResult<()> {
Ok(())
}
fn is_safe_to_cache_prepared(&self) -> bool {
true
}
}
pub trait AsQuery {
type SqlType;
type Query: Query<SqlType=Self::SqlType>;
fn as_query(self) -> Self::Query;
}
impl<T: Query> AsQuery for T {
type SqlType = <Self as Query>::SqlType;
type Query = Self;
fn as_query(self) -> Self::Query {
self
}
}