forked from JSQLParser/JSqlParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJoin.java
More file actions
480 lines (403 loc) · 10.8 KB
/
Join.java
File metadata and controls
480 lines (403 loc) · 10.8 KB
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
/*-
* #%L
* JSQLParser library
* %%
* Copyright (C) 2004 - 2019 JSQLParser
* %%
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
* #L%
*/
package net.sf.jsqlparser.statement.select;
import net.sf.jsqlparser.expression.Expression;
import net.sf.jsqlparser.parser.ASTNodeAccessImpl;
import net.sf.jsqlparser.schema.Column;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Optional;
@SuppressWarnings({"PMD.CyclomaticComplexity"})
public class Join extends ASTNodeAccessImpl {
private final LinkedList<Expression> onExpressions = new LinkedList<>();
private final LinkedList<Column> usingColumns = new LinkedList<>();
private boolean outer = false;
private boolean right = false;
private boolean left = false;
private boolean natural = false;
private boolean global = false;
private boolean full = false;
private boolean inner = false;
private boolean simple = false;
private boolean cross = false;
private boolean semi = false;
private boolean straight = false;
private boolean apply = false;
private boolean fetch = false;
private FromItem fromItem;
private KSQLJoinWindow joinWindow;
private JoinHint joinHint = null;
public boolean isSimple() {
return simple;
}
public void setSimple(boolean b) {
simple = b;
}
public Join withSimple(boolean b) {
this.setSimple(b);
return this;
}
/**
* A JOIN means INNER when the INNER keyword is set or when no other qualifier has been set.
*
* @return Tells, if a JOIN means a qualified INNER JOIN.
*/
public boolean isInnerJoin() {
return inner
|| !(
/* Qualified Joins */
left || right || full || outer
/* Cross Join */
|| cross
/* Natural Join */
|| natural);
}
/**
* @return Tells, if the INNER keyword has been set.
*/
public boolean isInner() {
return inner;
}
/**
* Sets the INNER keyword and switches off any contradicting qualifiers automatically.
*/
public void setInner(boolean b) {
if (b) {
left = false;
right = false;
outer = false;
cross = false;
natural = false;
}
inner = b;
}
public Join withInner(boolean b) {
this.setInner(b);
return this;
}
public boolean isStraight() {
return straight;
}
public void setStraight(boolean b) {
straight = b;
}
public Join withStraight(boolean b) {
this.setStraight(b);
return this;
}
/**
* Whether is a "OUTER" join
*
* @return true if is a "OUTER" join
*/
public boolean isOuter() {
return outer;
}
/**
* Sets the OUTER keyword and switches off any contradicting qualifiers automatically.
*/
public void setOuter(boolean b) {
if (b) {
inner = false;
}
outer = b;
}
public Join withOuter(boolean b) {
this.setOuter(b);
return this;
}
public boolean isApply() {
return apply;
}
public void setApply(boolean apply) {
this.apply = apply;
}
public Join withApply(boolean apply) {
this.setApply(apply);
return this;
}
/**
* Whether is a "FETCH" join (JPQL/HQL)
*
* @return true if is a "FETCH" join
*/
public boolean isFetch() {
return fetch;
}
public void setFetch(boolean b) {
fetch = b;
}
public Join withFetch(boolean b) {
this.setFetch(b);
return this;
}
/**
* Whether is a "SEMI" join
*
* @return true if is a "SEMI" join
*/
public boolean isSemi() {
return semi;
}
public void setSemi(boolean b) {
semi = b;
}
public Join withSemi(boolean b) {
this.setSemi(b);
return this;
}
/**
* Whether is a "LEFT" join
*
* @return true if is a "LEFT" join
*/
public boolean isLeft() {
return left;
}
/**
* Sets the LEFT keyword and switches off any contradicting qualifiers automatically.
*/
public void setLeft(boolean b) {
if (b) {
inner = false;
right = false;
}
left = b;
}
public Join withLeft(boolean b) {
this.setLeft(b);
return this;
}
/**
* Whether is a "RIGHT" join
*
* @return true if is a "RIGHT" join
*/
public boolean isRight() {
return right;
}
/**
* Sets the RIGHT keyword and switches off any contradicting qualifiers automatically.
*/
public void setRight(boolean b) {
if (b) {
inner = false;
left = false;
}
right = b;
}
public Join withRight(boolean b) {
this.setRight(b);
return this;
}
/**
* Whether is a "NATURAL" join
*
* @return true if is a "NATURAL" join
*/
public boolean isNatural() {
return natural;
}
public void setNatural(boolean b) {
natural = b;
}
public boolean isGlobal() {
return global;
}
public void setGlobal(boolean b) {
global = b;
}
public Join withNatural(boolean b) {
this.setNatural(b);
return this;
}
/**
* Whether is a "FULL" join
*
* @return true if is a "FULL" join
*/
public boolean isFull() {
return full;
}
public void setFull(boolean b) {
full = b;
}
public Join withFull(boolean b) {
this.setFull(b);
return this;
}
public boolean isCross() {
return cross;
}
public void setCross(boolean cross) {
this.cross = cross;
}
public Join withCross(boolean cross) {
this.setCross(cross);
return this;
}
/**
* Returns the right item of the join
*/
@Deprecated
public FromItem getRightItem() {
return fromItem;
}
@Deprecated
public void setRightItem(FromItem item) {
fromItem = item;
}
@Deprecated
public Join withRightItem(FromItem item) {
this.setFromItem(item);
return this;
}
public FromItem getFromItem() {
return fromItem;
}
public Join setFromItem(FromItem fromItem) {
this.fromItem = fromItem;
return this;
}
/**
* Returns the "ON" expression (if any)
*/
@Deprecated
public Expression getOnExpression() {
return onExpressions.get(0);
}
@Deprecated
public void setOnExpression(Expression expression) {
onExpressions.add(0, expression);
}
public Collection<Expression> getOnExpressions() {
return onExpressions;
}
public Join setOnExpressions(Collection<Expression> expressions) {
onExpressions.clear();
onExpressions.addAll(expressions);
return this;
}
@Deprecated
public Join withOnExpression(Expression expression) {
this.setOnExpression(expression);
return this;
}
public Join addOnExpression(Expression expression) {
onExpressions.add(expression);
return this;
}
/**
* Returns the "USING" list of {@link net.sf.jsqlparser.schema.Column}s (if any)
*/
public List<Column> getUsingColumns() {
return usingColumns;
}
public void setUsingColumns(List<Column> list) {
usingColumns.clear();
usingColumns.addAll(list);
}
public Join withUsingColumns(List<Column> list) {
this.setUsingColumns(list);
return this;
}
public boolean isWindowJoin() {
return joinWindow != null;
}
/**
* Return the "WITHIN" join window (if any)
*
* @return
*/
public KSQLJoinWindow getJoinWindow() {
return joinWindow;
}
public void setJoinWindow(KSQLJoinWindow joinWindow) {
this.joinWindow = joinWindow;
}
public Join withJoinWindow(KSQLJoinWindow joinWindow) {
this.setJoinWindow(joinWindow);
return this;
}
public JoinHint getJoinHint() {
return joinHint;
}
public Join setJoinHint(JoinHint joinHint) {
this.joinHint = joinHint;
return this;
}
@Override
@SuppressWarnings({"PMD.CyclomaticComplexity", "PMD.NPathComplexity"})
public String toString() {
StringBuilder builder = new StringBuilder();
if (isGlobal()) {
builder.append("GLOBAL ");
}
if (isSimple() && isOuter()) {
builder.append("OUTER ").append(fromItem);
} else if (isSimple()) {
builder.append(fromItem);
} else {
if (isNatural()) {
builder.append("NATURAL ");
}
if (isRight()) {
builder.append("RIGHT ");
} else if (isFull()) {
builder.append("FULL ");
} else if (isLeft()) {
builder.append("LEFT ");
} else if (isCross()) {
builder.append("CROSS ");
}
if (isOuter()) {
builder.append("OUTER ");
} else if (isInner()) {
builder.append("INNER ");
} else if (isSemi()) {
builder.append("SEMI ");
}
if (isStraight()) {
builder.append("STRAIGHT_JOIN ");
} else if (isApply()) {
builder.append("APPLY ");
} else {
if (joinHint != null) {
builder.append(joinHint).append(" ");
}
builder.append("JOIN ");
if (fetch) {
builder.append("FETCH ");
}
}
builder.append(fromItem).append((joinWindow != null) ? " WITHIN " + joinWindow : "");
}
for (Expression onExpression : onExpressions) {
builder.append(" ON ").append(onExpression);
}
if (!usingColumns.isEmpty()) {
builder.append(PlainSelect.getFormattedList(usingColumns, "USING", true, true));
}
return builder.toString();
}
public Join addUsingColumns(Column... usingColumns) {
List<Column> collection = Optional.ofNullable(getUsingColumns()).orElseGet(ArrayList::new);
Collections.addAll(collection, usingColumns);
return this.withUsingColumns(collection);
}
public Join addUsingColumns(Collection<? extends Column> usingColumns) {
List<Column> collection = Optional.ofNullable(getUsingColumns()).orElseGet(ArrayList::new);
collection.addAll(usingColumns);
return this.withUsingColumns(collection);
}
}