-
Notifications
You must be signed in to change notification settings - Fork 397
Expand file tree
/
Copy pathDatabendConstant.java
More file actions
493 lines (398 loc) · 13.9 KB
/
DatabendConstant.java
File metadata and controls
493 lines (398 loc) · 13.9 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
481
482
483
484
485
486
487
488
489
490
491
492
493
package sqlancer.databend.ast;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import sqlancer.databend.DatabendSchema.DatabendDataType;
public abstract class DatabendConstant implements DatabendExpression {
private DatabendConstant() {
}
public boolean isNull() {
return false;
}
public boolean isInt() {
return false;
}
public boolean isBoolean() {
return false;
}
public boolean isString() {
return false;
}
public boolean isFloat() {
return false;
}
public abstract DatabendConstant cast(DatabendDataType dataType);
public boolean asBoolean() {
throw new UnsupportedOperationException(this.toString());
}
public long asInt() {
throw new UnsupportedOperationException(this.toString());
}
public String asString() {
throw new UnsupportedOperationException(this.toString());
}
public double asFloat() {
throw new UnsupportedOperationException(this.toString());
}
protected Timestamp truncateTimestamp(long val) {
// Databend supports `date` and `timestamp` type where the year cannot exceed `9999`,
// the value is truncated to ensure generate legitimate `date` and `timestamp` value.
long t = val % 253380000000000L;
return new Timestamp(t);
}
public abstract DatabendConstant isEquals(DatabendConstant rightVal);
public abstract DatabendConstant isLessThan(DatabendConstant rightVal);
// public abstract String getTextRepresentation();
public static class DatabendNullConstant extends DatabendConstant {
@Override
public String toString() {
return "NULL";
}
@Override
public boolean isNull() {
return true;
}
@Override
public DatabendConstant cast(DatabendDataType dataType) {
return DatabendConstant.createNullConstant();
}
@Override
public DatabendConstant isEquals(DatabendConstant rightVal) {
return DatabendConstant.createNullConstant();
}
@Override
public DatabendConstant isLessThan(DatabendConstant rightVal) {
return DatabendConstant.createNullConstant();
}
@Override
public DatabendDataType getExpectedType() {
return DatabendDataType.NULL;
}
// @Override
// public DatabendConstant getExpectedValue() {
// return super.getExpectedValue();
// }
}
public static class DatabendIntConstant extends DatabendConstant {
private final long value;
public DatabendIntConstant(long value) {
this.value = value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public long getValue() {
return value;
}
@Override
public boolean isInt() {
return true;
}
@Override
public DatabendConstant cast(DatabendDataType dataType) {
switch (dataType) {
case BOOLEAN:
return new DatabendBooleanConstant(value != 0);
case INT:
return this;
case VARCHAR:
return new DatabendStringConstant(String.valueOf(value));
case DATE:
return new DatabendDateConstant(value);
case TIMESTAMP:
return new DatabendTimestampConstant(value);
default:
return null;
}
}
@Override
public long asInt() {
return value;
}
@Override
public DatabendConstant isEquals(DatabendConstant rightVal) {
if (rightVal.isNull()) {
return DatabendConstant.createNullConstant();
} else if (rightVal.isInt()) {
return DatabendConstant.createBooleanConstant(value == rightVal.asInt());
} else {
throw new AssertionError(rightVal);
}
}
@Override
public DatabendConstant isLessThan(DatabendConstant rightVal) {
if (rightVal.isNull()) {
return DatabendConstant.createNullConstant();
} else if (rightVal.isInt()) {
return DatabendConstant.createBooleanConstant(value < rightVal.asInt());
} else if (rightVal.isFloat()) {
return DatabendConstant.createBooleanConstant(value < rightVal.asFloat());
} else {
throw new AssertionError(rightVal);
}
}
@Override
public DatabendDataType getExpectedType() {
return DatabendDataType.INT;
}
}
public static class DatabendFloatConstant extends DatabendConstant {
private final double value;
public DatabendFloatConstant(double value) {
this.value = value;
}
public double getValue() {
return value;
}
@Override
public boolean isFloat() {
return true;
}
@Override
public String toString() {
if (value == Double.POSITIVE_INFINITY) {
return "3.40282347e+38";
} else if (value == Double.NEGATIVE_INFINITY) {
return "-3.40282347e+38";
}
return String.valueOf(value);
}
@Override
public DatabendConstant cast(DatabendDataType dataType) {
switch (dataType) {
case FLOAT:
return this;
case INT:
return DatabendConstant.createIntConstant((long) value);
case BOOLEAN:
return DatabendConstant.createBooleanConstant(value != 0);
case VARCHAR:
return DatabendConstant.createStringConstant(String.valueOf(value));
default:
return null;
}
}
@Override
public double asFloat() {
return value;
}
@Override
public DatabendConstant isEquals(DatabendConstant rightVal) {
return null;
}
@Override
public DatabendConstant isLessThan(DatabendConstant rightVal) {
if (rightVal.isNull()) {
return DatabendConstant.createNullConstant();
} else if (rightVal.isInt()) {
return DatabendConstant.createBooleanConstant(value < rightVal.asInt());
} else if (rightVal.isFloat()) {
return DatabendConstant.createBooleanConstant(value < rightVal.asFloat());
} else {
throw new AssertionError(rightVal);
}
}
}
public static class DatabendStringConstant extends DatabendConstant {
private final String value;
public DatabendStringConstant(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return "'" + value.replace("'", "''") + "'";
}
@Override
public String asString() {
return value;
}
@Override
public boolean isString() {
return true;
}
@Override
public DatabendConstant cast(DatabendDataType dataType) {
switch (dataType) {
case VARCHAR:
return this;
case INT:
try {
return new DatabendIntConstant(Long.parseLong(value));
} catch (NumberFormatException e) {
return new DatabendIntConstant(-1);
}
case BOOLEAN:
if ("false".contentEquals(value.toLowerCase())) {
return new DatabendBooleanConstant(false);
} else if ("true".contentEquals(value.toLowerCase())) {
return new DatabendBooleanConstant(true);
} else {
throw new AssertionError(String.format("string: %s, cannot be forced to boolean", value));
}
case FLOAT:
try {
return new DatabendFloatConstant(Double.parseDouble(value));
} catch (NumberFormatException e) {
return new DatabendFloatConstant(-1);
}
default:
return null;
}
}
@Override
public DatabendConstant isEquals(DatabendConstant rightVal) {
if (rightVal.isNull()) {
return DatabendConstant.createNullConstant();
} else if (rightVal.isString()) {
return DatabendConstant.createBooleanConstant(value.contentEquals(rightVal.asString()));
} else {
// TODO 可以比较 date和timestamp类型,待添加
throw new AssertionError(rightVal);
}
}
@Override
public DatabendConstant isLessThan(DatabendConstant rightVal) {
if (rightVal.isNull()) {
return DatabendConstant.createNullConstant();
} else if (rightVal.isString()) {
return DatabendConstant.createBooleanConstant(value.compareTo(rightVal.asString()) < 0);
} else {
throw new AssertionError(rightVal);
}
}
}
public static class DatabendDateConstant extends DatabendConstant {
public String textRepr;
public DatabendDateConstant(long val) {
Timestamp timestamp = truncateTimestamp(val);
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
textRepr = dateFormat.format(timestamp);
}
public String getValue() {
return textRepr;
}
@Override
public String toString() {
return String.format("DATE '%s'", textRepr);
}
@Override
public DatabendConstant cast(DatabendDataType dataType) {
return null;
}
@Override
public DatabendConstant isEquals(DatabendConstant rightVal) {
return null;
}
@Override
public DatabendConstant isLessThan(DatabendConstant rightVal) {
return null;
}
}
public static class DatabendTimestampConstant extends DatabendConstant {
public String textRepr;
public DatabendTimestampConstant(long val) {
Timestamp timestamp = truncateTimestamp(val);
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
textRepr = dateFormat.format(timestamp);
}
public String getValue() {
return textRepr;
}
@Override
public String toString() {
return String.format("TIMESTAMP '%s'", textRepr);
}
@Override
public DatabendConstant cast(DatabendDataType dataType) {
return null;
}
@Override
public DatabendConstant isEquals(DatabendConstant rightVal) {
return null;
}
@Override
public DatabendConstant isLessThan(DatabendConstant rightVal) {
return null;
}
}
public static class DatabendBooleanConstant extends DatabendConstant {
private final boolean value;
public DatabendBooleanConstant(boolean value) {
this.value = value;
}
public boolean getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@Override
public boolean asBoolean() {
return value;
}
@Override
public boolean isBoolean() {
return true;
}
@Override
public DatabendConstant cast(DatabendDataType dataType) {
switch (dataType) {
case BOOLEAN:
return this;
case INT:
return new DatabendIntConstant(value ? 1 : 0);
case FLOAT:
return new DatabendFloatConstant(value ? 1 : 0);
case VARCHAR:
return new DatabendStringConstant(value ? "1" : "0");
default:
return null;
}
}
@Override
public DatabendConstant isEquals(DatabendConstant rightVal) {
if (rightVal.isNull()) {
return DatabendConstant.createNullConstant();
} else if (rightVal.isBoolean()) {
return DatabendConstant.createBooleanConstant(value == rightVal.asBoolean());
} else {
throw new AssertionError(rightVal);
}
}
@Override
public DatabendConstant isLessThan(DatabendConstant rightVal) {
if (rightVal.isNull()) {
return DatabendConstant.createNullConstant();
} else if (rightVal.isBoolean()) {
return DatabendConstant.createBooleanConstant((value ? 1 : 0) < (rightVal.asBoolean() ? 1 : 0));
} else {
throw new AssertionError(rightVal);
}
}
}
public static DatabendConstant createStringConstant(String text) {
return new DatabendStringConstant(text);
}
public static DatabendConstant createFloatConstant(double val) {
return new DatabendFloatConstant(val);
}
public static DatabendConstant createIntConstant(long val) {
return new DatabendIntConstant(val);
}
public static DatabendConstant createNullConstant() {
return new DatabendNullConstant();
}
public static DatabendConstant createBooleanConstant(boolean val) {
return new DatabendBooleanConstant(val);
}
public static DatabendConstant createDateConstant(long integer) {
return new DatabendDateConstant(integer);
}
public static DatabendConstant createTimestampConstant(long integer) {
return new DatabendTimestampConstant(integer);
}
}