-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathWith.java
More file actions
366 lines (293 loc) · 9.45 KB
/
Copy pathWith.java
File metadata and controls
366 lines (293 loc) · 9.45 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
package jaskell.sql;
import jaskell.script.Directive;
import jaskell.script.Parameter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
public class With extends Query implements ThenSelect {
Name _name;
List<Name> _fields = new ArrayList<>();
With(){
}
With(String name){
_name = new Name(name);
}
With(Name name){
_name = name;
}
With(String name, String fs){
_name = new Name(name);
_fields.addAll(Arrays.stream(fs.split(",")).map(Name::new).collect(Collectors.toList()));
}
With(Name name, String... fs){
_name = name;
_fields.addAll(Arrays.stream(fs).map(Name::new).collect(Collectors.toList()));
}
With(Name name, Name... fs){
_name = name;
_fields.addAll(Arrays.asList(fs));
}
public Name name(){
return _name;
}
public With name(String name){
_name = new Name(name);
return this;
}
public With name(Name name){
_name = name;
return this;
}
public As as(Query query){
As re = new As(query);
re._prefix = this;
return re;
}
Recursive recursive(){
Recursive re = new Recursive();
re._prefix = this;
return re;
}
@Override
public String script() {
if(_fields.isEmpty()) {
return String.format("WITH %s", _name.script());
}else{
return String.format("WITH %s(%s)", _name.script(),
_fields.stream().map(Directive::script).collect(Collectors.joining(", ")));
}
}
@Override
public List<Parameter<?>> parameters() {
return new ArrayList<>();
}
public static class Recursive extends With {
With _prefix;
Recursive(){
}
Recursive(String name, String fs){
super(name, fs);
}
Recursive(Name name, String... fs){
super(name, fs);
}
Recursive(Name name, Name... fs){
super(name, fs);
}
@Override
public String script() {
if(_fields.isEmpty()) {
return String.format("WITH RECURSIVE %s", _name.script());
}else{
return String.format("WITH RECURSIVE %s(%s)", _name.script(),
_fields.stream().map(Directive::script).collect(Collectors.joining(", ")));
}
}
}
public static class As implements Directive {
Directive _prefix;
Query _query;
As(Query query){
_query = query;
}
@Override
public String script() {
return String.format("%s AS (%s)", _prefix.script(), _query.script());
}
@Override
public List<Parameter<?>> parameters() {
List<Parameter<?>> re = _prefix.parameters();
re.addAll(_query.parameters());
return re;
}
public CommonTableExpression cte(String name){
CommonTableExpression re = new CommonTableExpression(name);
re._prefix = this;
return re;
}
public CommonTableExpression cte(Name name){
CommonTableExpression re = new CommonTableExpression(name);
re._prefix = this;
return re;
}
public CommonTableExpression cte(String name, String fs){
CommonTableExpression re = new CommonTableExpression(name, fs);
re._prefix = this;
return re;
}
public CommonTableExpression cte(Name name, String fs){
CommonTableExpression re = new CommonTableExpression(name, fs);
re._prefix = this;
return re;
}
public CommonTableExpression cte(String name, String ... fs){
CommonTableExpression re = new CommonTableExpression(name, fs);
re._prefix = this;
return re;
}
public CommonTableExpression cte(Name name, String ... fs){
CommonTableExpression re = new CommonTableExpression(name, fs);
re._prefix = this;
return re;
}
public CommonTableExpression cte(String name, Name ... fs){
CommonTableExpression re = new CommonTableExpression(name, fs);
re._prefix = this;
return re;
}
public CommonTableExpression cte(Name name, Name ... fs){
CommonTableExpression re = new CommonTableExpression(name, fs);
re._prefix = this;
return re;
}
public CommonTableQuery query(Query query){
CommonTableQuery re = new CommonTableQuery();
re._prefix = this;
re._query = query;
return re;
}
public Select select(String names){
Select re = new Select(names);
re._prefix = this;
return re;
}
public Select select(String... names){
Select re = new Select(names);
re._prefix = this;
return re;
}
public Select select(Directive... names){
Select re = new Select(names);
re._prefix = this;
return re;
}
public Insert insert() {
Insert re = new Insert();
re._prefix = this;
return re;
}
public Update update(String name) {
Update re = new Update(name);
re._prefix = this;
return re;
}
public Update update(Name name) {
Update re = new Update(name);
re._prefix = this;
return re;
}
public Delete delete() {
Delete re = new Delete();
re._prefix = this;
return re;
}
}
public static class Insert extends jaskell.sql.Insert {
Directive _prefix;
@Override
public String script() {
return String.format("%s %s", _prefix.script(), super.script());
}
@Override
public List<Parameter<?>> parameters() {
List<Parameter<?>> re = _prefix.parameters();
re.addAll(super.parameters());
return re;
}
}
public static class Delete extends jaskell.sql.Delete {
Directive _prefix;
@Override
public String script() {
return String.format("%s %s", _prefix.script(), super.script());
}
@Override
public List<Parameter<?>> parameters() {
List<Parameter<?>> re = _prefix.parameters();
re.addAll(super.parameters());
return re;
}
}
public static class Update extends jaskell.sql.Update {
Directive _prefix;
Update(String name) {
super(name);
}
Update(Name name) {
super(name);
}
@Override
public String script() {
return String.format("%s %s", _prefix.script(), super.script());
}
@Override
public List<Parameter<?>> parameters() {
List<Parameter<?>> re = _prefix.parameters();
re.addAll(super.parameters());
return re;
}
}
public static class CommonTableExpression implements Directive {
Directive _prefix;
Name _name;
List<Name> _fields = new ArrayList<>();
public As as(Query query){
As re = new As(query);
re._prefix = this;
return re;
}
CommonTableExpression(String name){
this._name = new Name(name);
}
CommonTableExpression(Name name){
this._name = name;
}
CommonTableExpression(String name, String fs){
this._name = new Name(name);
this._fields.addAll(Arrays.stream(fs.split(",")).map(Name::new).collect(Collectors.toList()));
}
CommonTableExpression(String name, String... fs){
this._name = new Name(name);
this._fields.addAll(Arrays.stream(fs).map(Name::new).collect(Collectors.toList()));
}
CommonTableExpression(String name, Name... fs){
this._name = new Name(name);
this._fields.addAll(Arrays.asList(fs));
}
CommonTableExpression(Name name, String fs){
this._name = name;
this._fields.addAll(Arrays.stream(fs.split(",")).map(Name::new).collect(Collectors.toList()));
}
CommonTableExpression(Name name, String... fs){
this._name = name;
this._fields.addAll(Arrays.stream(fs).map(Name::new).collect(Collectors.toList()));
}
CommonTableExpression(Name name, Name... fs){
this._name = name;
this._fields.addAll(Arrays.asList(fs));
}
@Override
public String script() {
return String.format("%s, %s", _prefix.script(), _name.script());
}
@Override
public List<Parameter<?>> parameters() {
return _prefix.parameters();
}
}
public static class CommonTableQuery extends Query {
Directive _prefix;
Query _query;
@Override
public String script() {
return String.format("%s %s", _prefix.script(), _query.script());
}
@Override
public List<Parameter<?>> parameters() {
List<Parameter<?>> re = _prefix.parameters();
re.addAll(_query.parameters());
return re;
}
}
}