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
use super::{AppearsInFromClause, Plus, QuerySource};
use crate::backend::Backend;
use crate::backend::DieselReserveSpecialization;
use crate::expression::grouped::Grouped;
use crate::expression::nullable::Nullable;
use crate::expression::SelectableExpression;
use crate::prelude::*;
use crate::query_builder::*;
use crate::query_dsl::InternalJoinDsl;
use crate::result::QueryResult;
use crate::sql_types::BoolOrNullableBool;
use crate::util::TupleAppend;
pub struct Join<Left: QuerySource, Right: QuerySource, Kind> {
left: FromClause<Left>,
right: FromClause<Right>,
kind: Kind,
}
impl<Left, Right, Kind> Clone for Join<Left, Right, Kind>
where
Left: QuerySource,
FromClause<Left>: Clone,
Right: QuerySource,
FromClause<Right>: Clone,
Kind: Clone,
{
fn clone(&self) -> Self {
Self {
left: self.left.clone(),
right: self.right.clone(),
kind: self.kind.clone(),
}
}
}
impl<Left, Right, Kind> Copy for Join<Left, Right, Kind>
where
Left: QuerySource,
FromClause<Left>: Copy,
Right: QuerySource,
FromClause<Right>: Copy,
Kind: Copy,
{
}
impl<Left, Right, Kind> std::fmt::Debug for Join<Left, Right, Kind>
where
Left: QuerySource,
FromClause<Left>: std::fmt::Debug,
Right: QuerySource,
FromClause<Right>: std::fmt::Debug,
Kind: std::fmt::Debug,
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("Join")
.field("left", &self.left)
.field("right", &self.right)
.field("kind", &self.kind)
.finish()
}
}
impl<Left, Right, Kind> QueryId for Join<Left, Right, Kind>
where
Left: QueryId + QuerySource + 'static,
Right: QueryId + QuerySource + 'static,
Kind: QueryId,
{
type QueryId = Join<Left, Right, Kind::QueryId>;
const HAS_STATIC_QUERY_ID: bool =
Left::HAS_STATIC_QUERY_ID && Right::HAS_STATIC_QUERY_ID && Kind::HAS_STATIC_QUERY_ID;
}
#[derive(Debug, Clone, Copy, QueryId)]
#[doc(hidden)]
pub struct JoinOn<Join, On> {
join: Join,
on: On,
}
impl<Left, Right, Kind> Join<Left, Right, Kind>
where
Left: QuerySource,
Right: QuerySource,
{
pub(crate) fn new(left: Left, right: Right, kind: Kind) -> Self {
Join {
left: FromClause::new(left),
right: FromClause::new(right),
kind,
}
}
pub(crate) fn on<On>(self, on: On) -> JoinOn<Self, On> {
JoinOn { join: self, on: on }
}
}
impl<Left, Right> QuerySource for Join<Left, Right, Inner>
where
Left: QuerySource + AppendSelection<Right::DefaultSelection>,
Right: QuerySource,
Left::Output: AppearsOnTable<Self>,
Self: Clone,
{
type FromClause = Self;
type DefaultSelection = self::private::SkipSelectableExpressionBoundCheckWrapper<Left::Output>;
fn from_clause(&self) -> Self::FromClause {
self.clone()
}
fn default_selection(&self) -> Self::DefaultSelection {
self::private::SkipSelectableExpressionBoundCheckWrapper(
self.left
.source
.append_selection(self.right.source.default_selection()),
)
}
}
impl<Left, Right> QuerySource for Join<Left, Right, LeftOuter>
where
Left: QuerySource + AppendSelection<Nullable<Right::DefaultSelection>>,
Right: QuerySource,
Left::Output: AppearsOnTable<Self>,
Self: Clone,
{
type FromClause = Self;
type DefaultSelection = self::private::SkipSelectableExpressionBoundCheckWrapper<Left::Output>;
fn from_clause(&self) -> Self::FromClause {
self.clone()
}
fn default_selection(&self) -> Self::DefaultSelection {
self::private::SkipSelectableExpressionBoundCheckWrapper(
self.left
.source
.append_selection(self.right.source.default_selection().nullable()),
)
}
}
#[derive(Debug, Clone, Copy)]
pub struct OnKeyword;
impl<DB: Backend> nodes::MiddleFragment<DB> for OnKeyword {
fn push_sql(&self, mut pass: AstPass<'_, '_, DB>) {
pass.push_sql(" ON ");
}
}
impl<Join, On> QuerySource for JoinOn<Join, On>
where
Join: QuerySource,
On: AppearsOnTable<Join::FromClause> + Clone,
On::SqlType: BoolOrNullableBool,
Join::DefaultSelection: SelectableExpression<Self>,
{
type FromClause = Grouped<nodes::InfixNode<Join::FromClause, On, OnKeyword>>;
type DefaultSelection = Join::DefaultSelection;
fn from_clause(&self) -> Self::FromClause {
Grouped(nodes::InfixNode::new(
self.join.from_clause(),
self.on.clone(),
OnKeyword,
))
}
fn default_selection(&self) -> Self::DefaultSelection {
self.join.default_selection()
}
}
impl<Left, Right, Kind, DB> QueryFragment<DB> for Join<Left, Right, Kind>
where
DB: Backend + DieselReserveSpecialization,
Left: QuerySource,
Left::FromClause: QueryFragment<DB>,
Right: QuerySource,
Right::FromClause: QueryFragment<DB>,
Kind: QueryFragment<DB>,
{
fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, DB>) -> QueryResult<()> {
self.left.from_clause.walk_ast(out.reborrow())?;
self.kind.walk_ast(out.reborrow())?;
out.push_sql(" JOIN ");
self.right.from_clause.walk_ast(out.reborrow())?;
Ok(())
}
}
pub trait JoinTo<T> {
#[doc(hidden)]
type FromClause;
#[doc(hidden)]
type OnClause;
#[doc(hidden)]
fn join_target(rhs: T) -> (Self::FromClause, Self::OnClause);
}
#[doc(hidden)]
pub trait AppendSelection<Selection> {
type Output;
fn append_selection(&self, selection: Selection) -> Self::Output;
}
impl<T: Table, Selection> AppendSelection<Selection> for T {
type Output = (T::AllColumns, Selection);
fn append_selection(&self, selection: Selection) -> Self::Output {
(T::all_columns(), selection)
}
}
impl<Left, Mid, Selection, Kind> AppendSelection<Selection> for Join<Left, Mid, Kind>
where
Left: QuerySource,
Mid: QuerySource,
Self: QuerySource,
<Self as QuerySource>::DefaultSelection: TupleAppend<Selection>,
{
type Output = <<Self as QuerySource>::DefaultSelection as TupleAppend<Selection>>::Output;
fn append_selection(&self, selection: Selection) -> Self::Output {
self.default_selection().tuple_append(selection)
}
}
impl<Join, On, Selection> AppendSelection<Selection> for JoinOn<Join, On>
where
Join: AppendSelection<Selection>,
{
type Output = Join::Output;
fn append_selection(&self, selection: Selection) -> Self::Output {
self.join.append_selection(selection)
}
}
#[doc(hidden)]
#[derive(Debug, Clone, Copy, Default, QueryId)]
pub struct Inner;
impl<DB> QueryFragment<DB> for Inner
where
DB: Backend + DieselReserveSpecialization,
{
fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, DB>) -> QueryResult<()> {
out.push_sql(" INNER");
Ok(())
}
}
#[doc(hidden)]
#[derive(Debug, Clone, Copy, Default, QueryId)]
pub struct LeftOuter;
impl<DB> QueryFragment<DB> for LeftOuter
where
DB: Backend + DieselReserveSpecialization,
{
fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, DB>) -> QueryResult<()> {
out.push_sql(" LEFT OUTER");
Ok(())
}
}
impl<Left, Mid, Right, Kind> JoinTo<Right> for Join<Left, Mid, Kind>
where
Left: JoinTo<Right> + QuerySource,
Mid: QuerySource,
{
type FromClause = <Left as JoinTo<Right>>::FromClause;
type OnClause = Left::OnClause;
fn join_target(rhs: Right) -> (Self::FromClause, Self::OnClause) {
Left::join_target(rhs)
}
}
impl<Join, On, Right> JoinTo<Right> for JoinOn<Join, On>
where
Join: JoinTo<Right>,
{
type FromClause = Join::FromClause;
type OnClause = Join::OnClause;
fn join_target(rhs: Right) -> (Self::FromClause, Self::OnClause) {
Join::join_target(rhs)
}
}
impl<T, Left, Right, Kind> AppearsInFromClause<T> for Join<Left, Right, Kind>
where
Left: AppearsInFromClause<T> + QuerySource,
Right: AppearsInFromClause<T> + QuerySource,
Left::Count: Plus<Right::Count>,
{
type Count = <Left::Count as Plus<Right::Count>>::Output;
}
impl<T, Join, On> AppearsInFromClause<T> for JoinOn<Join, On>
where
Join: AppearsInFromClause<T>,
{
type Count = Join::Count;
}
#[doc(hidden)]
#[derive(Debug, Clone, Copy)]
pub struct OnClauseWrapper<Source, On> {
pub(crate) source: Source,
pub(crate) on: On,
}
impl<Source, On> OnClauseWrapper<Source, On> {
pub fn new(source: Source, on: On) -> Self {
OnClauseWrapper { source, on }
}
}
impl<Lhs, Rhs, On> JoinTo<OnClauseWrapper<Rhs, On>> for Lhs
where
Lhs: Table,
{
type FromClause = Rhs;
type OnClause = On;
fn join_target(rhs: OnClauseWrapper<Rhs, On>) -> (Self::FromClause, Self::OnClause) {
(rhs.source, rhs.on)
}
}
impl<Lhs, Rhs, On> JoinTo<Rhs> for OnClauseWrapper<Lhs, On>
where
Lhs: JoinTo<Rhs>,
{
type FromClause = <Lhs as JoinTo<Rhs>>::FromClause;
type OnClause = <Lhs as JoinTo<Rhs>>::OnClause;
fn join_target(rhs: Rhs) -> (Self::FromClause, Self::OnClause) {
<Lhs as JoinTo<Rhs>>::join_target(rhs)
}
}
impl<Rhs, Kind, On1, On2, Lhs> InternalJoinDsl<Rhs, Kind, On1> for OnClauseWrapper<Lhs, On2>
where
Lhs: InternalJoinDsl<Rhs, Kind, On1>,
{
type Output = OnClauseWrapper<<Lhs as InternalJoinDsl<Rhs, Kind, On1>>::Output, On2>;
fn join(self, rhs: Rhs, kind: Kind, on: On1) -> Self::Output {
OnClauseWrapper {
source: self.source.join(rhs, kind, on),
on: self.on,
}
}
}
impl<Qs, On> QueryDsl for OnClauseWrapper<Qs, On> {}
#[doc(hidden)]
pub trait ToInnerJoin {
type InnerJoin;
}
impl<Left, Right, Kind> ToInnerJoin for Join<Left, Right, Kind>
where
Left: ToInnerJoin + QuerySource,
Left::InnerJoin: QuerySource,
Right: ToInnerJoin + QuerySource,
Right::InnerJoin: QuerySource,
{
type InnerJoin = Join<Left::InnerJoin, Right::InnerJoin, Inner>;
}
impl<Join, On> ToInnerJoin for JoinOn<Join, On>
where
Join: ToInnerJoin,
{
type InnerJoin = JoinOn<Join::InnerJoin, On>;
}
impl<From> ToInnerJoin for SelectStatement<FromClause<From>>
where
From: ToInnerJoin + QuerySource,
From::InnerJoin: QuerySource,
{
type InnerJoin = SelectStatement<FromClause<From::InnerJoin>>;
}
impl<T: Table> ToInnerJoin for T {
type InnerJoin = T;
}
mod private {
use crate::backend::Backend;
use crate::expression::{Expression, ValidGrouping};
use crate::query_builder::{AstPass, QueryFragment, SelectClauseExpression};
use crate::{AppearsOnTable, QueryResult, SelectableExpression};
#[derive(Debug, crate::query_builder::QueryId, Copy, Clone)]
pub struct SkipSelectableExpressionBoundCheckWrapper<T>(pub(super) T);
impl<DB, T> QueryFragment<DB> for SkipSelectableExpressionBoundCheckWrapper<T>
where
T: QueryFragment<DB>,
DB: Backend,
{
fn walk_ast<'b>(&'b self, pass: AstPass<'_, 'b, DB>) -> QueryResult<()> {
self.0.walk_ast(pass)
}
}
impl<T> ValidGrouping<()> for SkipSelectableExpressionBoundCheckWrapper<T> {
type IsAggregate = crate::expression::is_aggregate::No;
}
impl<QS, T> SelectClauseExpression<QS> for SkipSelectableExpressionBoundCheckWrapper<T>
where
T: SelectClauseExpression<QS>,
{
type Selection = T::Selection;
type SelectClauseSqlType = T::SelectClauseSqlType;
}
impl<QS, T> SelectableExpression<QS> for SkipSelectableExpressionBoundCheckWrapper<T> where
Self: AppearsOnTable<QS>
{
}
impl<QS, T> AppearsOnTable<QS> for SkipSelectableExpressionBoundCheckWrapper<T> where
Self: Expression
{
}
impl<T> Expression for SkipSelectableExpressionBoundCheckWrapper<T>
where
T: Expression,
{
type SqlType = T::SqlType;
}
impl<T, Selection> crate::util::TupleAppend<Selection>
for SkipSelectableExpressionBoundCheckWrapper<T>
where
T: crate::util::TupleAppend<Selection>,
{
type Output = T::Output;
fn tuple_append(self, right: Selection) -> Self::Output {
self.0.tuple_append(right)
}
}
}