-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelectionOperator.java
808 lines (709 loc) · 31.6 KB
/
SelectionOperator.java
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
import net.sf.jsqlparser.eval.Eval;
import net.sf.jsqlparser.expression.*;
import net.sf.jsqlparser.expression.operators.arithmetic.*;
import net.sf.jsqlparser.expression.operators.conditional.AndExpression;
import net.sf.jsqlparser.expression.operators.conditional.OrExpression;
import net.sf.jsqlparser.expression.operators.relational.*;
import net.sf.jsqlparser.schema.Column;
import net.sf.jsqlparser.schema.Table;
import net.sf.jsqlparser.statement.create.table.ColumnDefinition;
import net.sf.jsqlparser.statement.create.table.CreateTable;
import net.sf.jsqlparser.statement.select.PlainSelect;
import net.sf.jsqlparser.statement.select.SelectBody;
import net.sf.jsqlparser.statement.select.SubSelect;
import java.sql.SQLException;
import java.util.*;
/**
* Created by Karan on 6/26/2017.
*/
public class SelectionOperator implements Operator, ExpressionVisitor {
HashMap<String, HashMap<String, ColumnIdType>> databaseMap = new HashMap<>();
HashMap<String, Operator> operatorMap;
Column[] schema;
Expression condition;
PrimitiveValue[] tuple;
PrimitiveValue[] finalTuple;
HashMap<String, String> aliasHashMap;
ArrayList<PrimitiveValue[]> smallJoin;
ArrayList<PrimitiveValue[]> bigJoin;
Column[] currentSchema;
ArrayList<String> joinedTablesList;
HashMap<String, CreateTable> createTableMap;
HashMap<String, Integer> currentSchemaIndex;
Boolean leftTupleNull;
public SelectionOperator(HashMap<String, HashMap<String, ColumnIdType>> databaseMap,
HashMap<String, Operator> operatorMap, Column[] schema,
Expression condition, HashMap<String, String> aliasHashMap,
HashMap<String, CreateTable> createTableMap) {
this.databaseMap = databaseMap;
this.operatorMap = operatorMap;
this.schema = schema;
this.condition = condition;
this.aliasHashMap = aliasHashMap;
this.bigJoin = new ArrayList<>();
this.createTableMap = createTableMap;
}
public PrimitiveValue[] readOneTuple() {
tuple = null;
leftTupleNull = false;
joinedTablesList = new ArrayList<>();
smallJoin = new ArrayList<>();
if(operatorMap.keySet().size() == 1) {
Operator input = null;
for (String key : operatorMap.keySet()) {
input = operatorMap.get(key);
}
do {
tuple = input.readOneTuple();
if(tuple == null) {
return null;
}
final PrimitiveValue[] tupleCopy = tuple;
Evaluator eval = new Evaluator(tupleCopy,schema,aliasHashMap);
try {
PrimitiveValue result = eval.eval(condition);
BooleanValue boolResult = (BooleanValue)result;
if(!boolResult.getValue()) {
tuple = null;
}
} catch (SQLException e) {
e.printStackTrace();
}
} while (tuple == null);
return tuple;
} else {
while (bigJoin.isEmpty()) {
ArrayList<Expression> expressionArrayList = generateOrderedExpressionList(condition);
for(Expression exp : expressionArrayList) {
exp.accept(this);
}
// condition.accept(this);
if (bigJoin.isEmpty() && leftTupleNull) {
return null;
}
joinedTablesList = new ArrayList<>();
}
tuple = bigJoin.get(0);
bigJoin.remove(0);
assert tuple.length==schema.length : "Tuple length does not match schema length";
currentSchemaIndex = new HashMap<>();
for(int i = 0; i < currentSchema.length; i++) {
currentSchemaIndex.put(currentSchema[i].getWholeColumnName().toLowerCase(), i);
}
finalTuple = new PrimitiveValue[tuple.length];
for(int i = 0; i < tuple.length; i++) {
Column col = schema[i];
int index = currentSchemaIndex.get(col.getWholeColumnName().toLowerCase());
finalTuple[i] = tuple[index];
}
return finalTuple;
}
}
ArrayList<Expression> generateExpressionList(Expression e) {
ArrayList<Expression> expressionArrayList = new ArrayList<>();
if(e instanceof AndExpression) {
expressionArrayList = generateExpressionList(((AndExpression) e).getLeftExpression());
expressionArrayList.addAll(generateExpressionList(((AndExpression) e).getRightExpression()));
return expressionArrayList;
} else {
expressionArrayList.add(e);
return expressionArrayList;
}
}
ArrayList<Expression> generateOrderedExpressionList(Expression e) {
ArrayList<Expression> expressionArrayList = generateExpressionList(e);
ArrayList<Expression> expressionArrayListCopy = new ArrayList<>(expressionArrayList);
ArrayList<Expression> sortedExpList = new ArrayList<>();
HashSet<String> tableHashSet = new HashSet<>();
int joinCount = 0;
for (Expression exp : expressionArrayList) {
if(exp instanceof EqualsTo) {
if(((EqualsTo) exp).getLeftExpression() instanceof Column
&& ((EqualsTo) exp).getRightExpression() instanceof Column) {
joinCount++;
}
}
}
while (!expressionArrayList.isEmpty()) {
if(joinCount != 0) {
Iterator<Expression> iterator = expressionArrayList.iterator();
while (iterator.hasNext()){
Expression exp = iterator.next();
if(exp instanceof EqualsTo) {
Expression leftExpr = ((EqualsTo) exp).getLeftExpression();
Expression rightExpr = ((EqualsTo) exp).getRightExpression();
if (sortedExpList.isEmpty()) {
if (leftExpr instanceof Column && rightExpr instanceof Column) {
sortedExpList.add(exp);
tableHashSet.add(((Column) leftExpr).getTable().getWholeTableName().toLowerCase());
tableHashSet.add(((Column) rightExpr).getTable().getWholeTableName().toLowerCase());
joinCount--;
iterator.remove();
}
} else {
if (leftExpr instanceof Column && rightExpr instanceof Column) {
String leftTable = ((Column) leftExpr).getTable().getWholeTableName().toLowerCase();
String rightTable = ((Column) rightExpr).getTable().getWholeTableName().toLowerCase();
if(tableHashSet.contains(leftTable)
|| tableHashSet.contains(rightTable)) {
sortedExpList.add(exp);
tableHashSet.add(((Column) leftExpr).getTable().getWholeTableName().toLowerCase());
tableHashSet.add(((Column) rightExpr).getTable().getWholeTableName().toLowerCase());
joinCount--;
iterator.remove();
}
}
}
}
}
} else {
Iterator<Expression> iterator = expressionArrayList.iterator();
while (iterator.hasNext()){
Expression exp = iterator.next();
sortedExpList.add(exp);
iterator.remove();
}
}
}
return sortedExpList;
}
public void reset()
{
for (String key : operatorMap.keySet()) {
Operator input = operatorMap.get(key);
input.reset();
}
}
public void visit(NullValue nullValue) {
System.out.println("InsideNullValueExpression");
}
public void visit(Function function) {
System.out.println("InsideFunctionExpression");
}
public void visit(InverseExpression inverseExpression) {
System.out.println("InsideInverseExpression");
}
public void visit(JdbcParameter jdbcParameter) {
System.out.println("InsideJdbcParameterExpression");
}
public void visit(DoubleValue doubleValue) {
System.out.println("InsideDoubleValueExpression");
}
public void visit(LongValue longValue) {
System.out.println("InsideLongValueExpression");
}
public void visit(DateValue dateValue) {
System.out.println("InsideDateValueExpression");
}
public void visit(TimeValue timeValue) {
System.out.println("InsideTimeValueExpression");
}
public void visit(TimestampValue timestampValue) {
System.out.println("InsideTimeStampValueExpression");
}
public void visit(BooleanValue booleanValue) {
System.out.println("InsideBooleanValueExpression");
}
public void visit(StringValue stringValue) {
System.out.println("InsideStringValueExpression");
}
public void visit(Addition addition) {
System.out.println("InsideAdditionExpression");
}
public void visit(Division division) {
System.out.println("InsideDivisionExpression");
}
public void visit(Multiplication multiplication) {
System.out.println("InsideMultiplicationExpression");
}
public void visit(Subtraction subtraction) {
System.out.println("InsideSubtractionExpression");
}
public void visit(AndExpression andExpression) {
//System.out.println("InsideANDExpression");
Expression leftExpression = andExpression.getLeftExpression();
//System.out.println("VisitingLeftANDExpression");
leftExpression.accept(this);
Expression rightExpression = andExpression.getRightExpression();
//System.out.println("VisitingRightANDExpression");
rightExpression.accept(this);
}
public void visit(OrExpression orExpression) {
/*
System.out.println("InsideORExpression");
Expression leftExpression = orExpression.getLeftExpression();
System.out.println("VisitingLeftANDExpression");
Expression rightExpression = orExpression.getRightExpression();
System.out.println("VisitingRightANDExpression");
*/
smallJoin = bigJoin;
bigJoin = new ArrayList<>();
for (int i = 0; i < smallJoin.size(); i++) {
Evaluator evaluator = new Evaluator(smallJoin.get(i), currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(orExpression);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
bigJoin.add(smallJoin.get(i));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
public void visit(Between between) {
System.out.println("InsideBetweenExpression");
}
public void visit(EqualsTo equalsTo) {
Expression leftExpression = equalsTo.getLeftExpression();
Expression rightExpression = equalsTo.getRightExpression();
if(leftExpression instanceof Column && rightExpression instanceof Column) {
Column col1 = (Column)leftExpression;
Column col2 = (Column)rightExpression;
String tableName1 = col1.getTable().getWholeTableName().toLowerCase();
String tableName2 = col2.getTable().getWholeTableName().toLowerCase();
tableName1 = aliasHashMap.get(tableName1);
tableName2 = aliasHashMap.get(tableName2);
Operator oper1 = operatorMap.get(tableName1);
Operator oper2 = operatorMap.get(tableName2);
PrimitiveValue[] leftTuple;
PrimitiveValue[] rightTuple;
PrimitiveValue[] jointTuple;
ArrayList<PrimitiveValue[]> tempResult = new ArrayList<>();
if(joinedTablesList.isEmpty()) {
do {
leftTuple = oper1.readOneTuple();
if(leftTuple == null) {
break;
}
CreateTable ct1 = createTableMap.get(tableName1);
CreateTable ct2 = createTableMap.get(tableName2);
List cols1 = ct1.getColumnDefinitions();
List cols2 = ct2.getColumnDefinitions();
currentSchema = new Column[cols1.size() + cols2.size()];
for(int i = 0; i < cols1.size(); i++) {
ColumnDefinition col = (ColumnDefinition)cols1.get(i);
currentSchema[i] = new Column(new Table(null, tableName1),
col.getColumnName().toLowerCase());
}
for(int i = cols1.size(); i < cols1.size() + cols2.size(); i++) {
ColumnDefinition col = (ColumnDefinition)cols2.get(i - cols1.size());
currentSchema[i] = new Column(new Table(null, tableName2),
col.getColumnName().toLowerCase());
}
while ((rightTuple = oper2.readOneTuple()) != null) {
jointTuple = new PrimitiveValue[leftTuple.length + rightTuple.length];
for (int i = 0; i < leftTuple.length; i++) {
jointTuple[i] = leftTuple[i];
}
for(int i = leftTuple.length; i < leftTuple.length + rightTuple.length; i++) {
jointTuple[i] = rightTuple[i - leftTuple.length];
}
Evaluator evaluator = new Evaluator(jointTuple, currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(equalsTo);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
tempResult.add(jointTuple);
}
} catch (SQLException e) {
e.printStackTrace();
}
}
if(rightTuple == null) {
oper2.reset();
}
} while (tempResult.isEmpty());
if(leftTuple == null) {
leftTupleNull = true;
oper1.reset();
}
bigJoin = tempResult;
joinedTablesList.add(tableName1);
joinedTablesList.add(tableName2);
} else {
smallJoin = bigJoin;
String newTableName = null;
Operator newOperator = null;
if(joinedTablesList.contains(tableName1) && joinedTablesList.contains(tableName2)) {
for (int i = 0; i < smallJoin.size(); i++) {
Evaluator evaluator = new Evaluator(smallJoin.get(i), currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(equalsTo);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
tempResult.add(smallJoin.get(i));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
bigJoin = tempResult;
return;
} else if(joinedTablesList.contains(tableName1)) {
newTableName = tableName2;
newOperator = oper2;
} else if(joinedTablesList.contains(tableName2)) {
newTableName = tableName1;
newOperator = oper1;
} else {
newTableName = null;
newOperator = null;
System.out.println("PANIC: I DON'T KNOW HOW TO HANDLE THIS");
System.exit(1);
}
int i = 0;
Column[] lastJoinSchema = new Column[currentSchema.length];
for(int j = 0; j < currentSchema.length; j++) {
lastJoinSchema[j] = currentSchema[j];
}
while (i < smallJoin.size()){
leftTuple = smallJoin.get(i);
CreateTable ct2 = createTableMap.get(newTableName);
List cols2 = ct2.getColumnDefinitions();
currentSchema = new Column[lastJoinSchema.length + cols2.size()];
for(int j = 0; j < lastJoinSchema.length; j++) {
currentSchema[j] = lastJoinSchema[j];
}
for(int j = lastJoinSchema.length; j < lastJoinSchema.length + cols2.size(); j++) {
ColumnDefinition col = (ColumnDefinition)cols2.get(j - lastJoinSchema.length);
currentSchema[j] = new Column(new Table(null, newTableName),
col.getColumnName().toLowerCase());
}
while ((rightTuple = newOperator.readOneTuple()) != null) {
jointTuple = new PrimitiveValue[leftTuple.length + rightTuple.length];
for (int j = 0; j < leftTuple.length; j++) {
jointTuple[j] = leftTuple[j];
}
for(int j = leftTuple.length; j < leftTuple.length + rightTuple.length; j++) {
jointTuple[j] = rightTuple[j - leftTuple.length];
}
Evaluator evaluator = new Evaluator(jointTuple, currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(equalsTo);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
tempResult.add(jointTuple);
}
} catch (SQLException e) {
e.printStackTrace();
}
}
if(rightTuple == null) {
newOperator.reset();
}
i++;
}
bigJoin = tempResult;
joinedTablesList.add(newTableName);
}
} else {
Column col1;
if(leftExpression instanceof Column) {
col1 = (Column)leftExpression;
} else {
col1 = (Column)rightExpression;
}
String tableName = null;
tableName = col1.getTable().getWholeTableName().toLowerCase();
tableName = aliasHashMap.get(tableName);
/*
if(tableName == null) {
for(int i = 0; i < currentSchema.length; i++) {
if(col1.getColumnName().toLowerCase().equals(currentSchema[i].getColumnName().toLowerCase())) {
tableName = currentSchema[i].getTable().getWholeTableName().toLowerCase();
break;
}
}
}
*/
smallJoin = bigJoin;
bigJoin = new ArrayList<>();
if(joinedTablesList.contains(tableName)) {
for (int i = 0; i < smallJoin.size(); i++) {
Evaluator evaluator = new Evaluator(smallJoin.get(i), currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(equalsTo);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
bigJoin.add(smallJoin.get(i));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
} else {
System.out.println("PANIC Equal To Expression: Table not found in JoinedTableList");
}
}
}
public void visit(GreaterThan greaterThan) {
Expression leftExpression = greaterThan.getLeftExpression();
Expression rightExpression = greaterThan.getLeftExpression();
Column col1;
if(leftExpression instanceof Column) {
col1 = (Column)leftExpression;
} else {
col1 = (Column)rightExpression;
}
String tableName = col1.getTable().getWholeTableName().toLowerCase();
tableName = aliasHashMap.get(tableName);
smallJoin = bigJoin;
bigJoin = new ArrayList<>();
if(joinedTablesList.contains(tableName)) {
for (int i = 0; i < smallJoin.size(); i++) {
Evaluator evaluator = new Evaluator(smallJoin.get(i), currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(greaterThan);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
bigJoin.add(smallJoin.get(i));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
} else {
System.out.println("PANIC GreaterThan Expression: Table not found in JoinedTableList");
}
}
public void visit(GreaterThanEquals greaterThanEquals) {
Expression leftExpression = greaterThanEquals.getLeftExpression();
Expression rightExpression = greaterThanEquals.getLeftExpression();
Column col1;
if(leftExpression instanceof Column) {
col1 = (Column)leftExpression;
} else {
col1 = (Column)rightExpression;
}
String tableName = col1.getTable().getWholeTableName().toLowerCase();
tableName = aliasHashMap.get(tableName);
smallJoin = bigJoin;
bigJoin = new ArrayList<>();
if(joinedTablesList.contains(tableName)) {
for (int i = 0; i < smallJoin.size(); i++) {
Evaluator evaluator = new Evaluator(smallJoin.get(i), currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(greaterThanEquals);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
bigJoin.add(smallJoin.get(i));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
} else {
System.out.println("PANIC GreaterThanEquals Expression: Table not found in JoinedTableList");
}
}
public void visit(InExpression inExpression)
{
smallJoin = bigJoin;
bigJoin = new ArrayList<>();
Expression leftExpression = inExpression.getLeftExpression();
ItemsList itemsList = inExpression.getItemsList();
ArrayList<PrimitiveValue[]> tuplesList = new ArrayList<>();
Column[] schema = null;
if(itemsList instanceof ExpressionList) {
System.out.println("PANIC: I CAN'T HANDLE EXPRESSIONS IN IN CLAUSE");
System.exit(1);
} else if (itemsList instanceof SubSelect) {
SelectBody selectBody = ((SubSelect) itemsList).getSelectBody();
if(selectBody instanceof PlainSelect){
String alias = "IN";
PlainSelect plainSelect = (PlainSelect) selectBody;
SubselectEvaluator subselect = new SubselectEvaluator(
plainSelect, createTableMap, alias
);
subselect.execute();
schema = subselect.schema;
PrimitiveValue tuple[] = new PrimitiveValue[schema.length];
while ((tuple = subselect.readOneTuple()) != null) {
tuplesList.add(tuple);
}
subselect.reset();
}
}
Column col = (Column)leftExpression;
String colName = col.getWholeColumnName().toLowerCase();
int myIndex = 0;
int index = 0;
for (int i = 0; i < currentSchema.length; i++) {
if(colName.equals(currentSchema[i].getWholeColumnName().toLowerCase())) {
myIndex = i;
break;
}
}
for (int i = 0; i < schema.length; i++) {
if(colName.equals(schema[i].getWholeColumnName().toLowerCase())) {
index = i;
break;
}
}
for (int i = 0; i < smallJoin.size(); i++) {
PrimitiveValue[] temp = smallJoin.get(i);
String searchString = temp[myIndex].toString();
for (int j = 0; j < tuplesList.size(); j++) {
if(searchString.equals(tuplesList.get(j)[index].toString())) {
bigJoin.add(temp);
break;
}
}
}
}
public void visit(IsNullExpression isNullExpression) {
System.out.println("InsideIsNullExpression");
}
public void visit(LikeExpression likeExpression) {
Expression leftExpression = likeExpression.getLeftExpression();
Column col1 = (Column)leftExpression;
String tableName = col1.getTable().getWholeTableName().toLowerCase();
tableName = aliasHashMap.get(tableName);
smallJoin = bigJoin;
bigJoin = new ArrayList<>();
if(joinedTablesList.contains(tableName)) {
for (int i = 0; i < smallJoin.size(); i++) {
Evaluator evaluator = new Evaluator(smallJoin.get(i), currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(likeExpression);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
bigJoin.add(smallJoin.get(i));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
} else {
System.out.println("PANIC Like Expression: Table not found in JoinedTableList");
}
}
public void visit(MinorThan minorThan) {
Expression leftExpression = minorThan.getLeftExpression();
Expression rightExpression = minorThan.getLeftExpression();
Column col1;
if(leftExpression instanceof Column) {
col1 = (Column)leftExpression;
} else {
col1 = (Column)rightExpression;
}
String tableName = col1.getTable().getWholeTableName().toLowerCase();
tableName = aliasHashMap.get(tableName);
smallJoin = bigJoin;
bigJoin = new ArrayList<>();
if(joinedTablesList.contains(tableName)) {
for (int i = 0; i < smallJoin.size(); i++) {
Evaluator evaluator = new Evaluator(smallJoin.get(i), currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(minorThan);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
bigJoin.add(smallJoin.get(i));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
} else {
System.out.println("PANIC MinorThan Expression: Table not found in JoinedTableList");
}
}
public void visit(MinorThanEquals minorThanEquals)
{
Expression leftExpression = minorThanEquals.getLeftExpression();
Expression rightExpression = minorThanEquals.getLeftExpression();
Column col1;
if(leftExpression instanceof Column) {
col1 = (Column)leftExpression;
} else {
col1 = (Column)rightExpression;
}
String tableName = col1.getTable().getWholeTableName().toLowerCase();
tableName = aliasHashMap.get(tableName);
smallJoin = bigJoin;
bigJoin = new ArrayList<>();
if(joinedTablesList.contains(tableName)) {
for (int i = 0; i < smallJoin.size(); i++) {
Evaluator evaluator = new Evaluator(smallJoin.get(i), currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(minorThanEquals);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
bigJoin.add(smallJoin.get(i));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
} else {
System.out.println("PANIC MinorThanEquals Expression: Table not found in JoinedTableList");
}
}
public void visit(NotEqualsTo notEqualsTo) {
Expression leftExpression = notEqualsTo.getLeftExpression();
Expression rightExpression = notEqualsTo.getLeftExpression();
Column col1;
if(leftExpression instanceof Column) {
col1 = (Column)leftExpression;
} else {
col1 = (Column)rightExpression;
}
String tableName = col1.getTable().getWholeTableName().toLowerCase();
tableName = aliasHashMap.get(tableName);
smallJoin = bigJoin;
bigJoin = new ArrayList<>();
if(joinedTablesList.contains(tableName)) {
for (int i = 0; i < smallJoin.size(); i++) {
Evaluator evaluator = new Evaluator(smallJoin.get(i), currentSchema, aliasHashMap);
try {
PrimitiveValue result = evaluator.eval(notEqualsTo);
BooleanValue boolResult = (BooleanValue)result;
if(boolResult.getValue()) {
bigJoin.add(smallJoin.get(i));
}
} catch (SQLException e) {
e.printStackTrace();
}
}
} else {
System.out.println("PANIC NotEqualsTo Expression: Table not found in JoinedTableList");
}
}
public void visit(Column tableColumn) {
System.out.println("InsideTableColumnExpression");
}
public void visit(SubSelect subSelect) {
System.out.println("InsideSubSelectExpression");
}
public void visit(CaseExpression caseExpression) {
System.out.println("InsideCaseExpression");
}
public void visit(WhenClause whenClause) {
System.out.println("InsideWhenClauseExpression");
}
public void visit(ExistsExpression existsExpression) {
System.out.println("InsideExistsExpression");
}
public void visit(AllComparisonExpression allComparisonExpression) {
System.out.println("InsideAllComparisonExpression");
}
public void visit(AnyComparisonExpression anyComparisonExpression) {
System.out.println("InsideAnyComparisonExpression");
}
public void visit(Concat concat) {
System.out.println("InsideConcatExpression");
}
public void visit(Matches matches) {
System.out.println("InsideMatchesExpression");
}
public void visit(BitwiseAnd bitwiseAnd) {
System.out.println("InsideBitwiseAndExpression");
}
public void visit(BitwiseOr bitwiseOr) {
System.out.println("InsideBitwiseORExpression");
}
public void visit(BitwiseXor bitwiseXor) {
System.out.println("InsideBitwiseXORExpression");
}
}