-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHavingOperator.java
222 lines (202 loc) · 8.52 KB
/
HavingOperator.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
import net.sf.jsqlparser.expression.Expression;
import net.sf.jsqlparser.expression.Function;
import net.sf.jsqlparser.expression.LongValue;
import net.sf.jsqlparser.expression.PrimitiveValue;
import net.sf.jsqlparser.expression.operators.relational.*;
import net.sf.jsqlparser.schema.Column;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Set;
/**
* Created by Mugdha on 7/2/2017.
*/
public class HavingOperator {
HashMap<PrimitiveValue,ArrayList<PrimitiveValue[]>> groupByMap;
HashMap<String,String> aliasHashMap;
ArrayList<PrimitiveValue[]> havingOutput;
Column[] schema;
Expression condition;
public HavingOperator(Expression condition, HashMap groupByMap, HashMap aliasHashMap, Column[] schema){
this.condition = condition;
this.groupByMap = groupByMap;
this.aliasHashMap = aliasHashMap;
this.schema = schema;
havingOutput = new ArrayList<>();
}
public void filterGroupedEle(){
String functionName = "";
String operation = "";
String tableName;
long constantValue = 0;
long aggResult = 0;
int columnIndex = 0;
Set keySet = groupByMap.keySet();
Iterator itr = keySet.iterator();
ArrayList<PrimitiveValue> keyToRemove = new ArrayList();
Boolean allColumns = false;
Expression leftExpression = null;
Expression rightExpression = null;
Expression columnExpression;
if(condition instanceof GreaterThan) {
leftExpression = ((GreaterThan) condition).getLeftExpression();
rightExpression = ((GreaterThan) condition).getRightExpression();
operation = "GreaterThan";
}
else if (condition instanceof GreaterThanEquals){
leftExpression = ((GreaterThanEquals) condition).getLeftExpression();
rightExpression = ((GreaterThanEquals) condition).getRightExpression();
operation = "GreaterThanEquals";
}
else if (condition instanceof MinorThan){
leftExpression = ((MinorThan) condition).getLeftExpression();
rightExpression = ((MinorThan) condition).getRightExpression();
operation = "MinorThan";
}
else if (condition instanceof MinorThanEquals){
leftExpression = ((MinorThanEquals) condition).getLeftExpression();
rightExpression = ((MinorThanEquals) condition).getRightExpression();
operation = "MinorThanEquals";
}
else if (condition instanceof EqualsTo){
leftExpression = ((EqualsTo) condition).getLeftExpression();
rightExpression = ((EqualsTo) condition).getRightExpression();
operation = "EqualsTo";
}
else if(condition instanceof Function){
leftExpression = condition;
}
else {
System.out.println("ERROR in HavingOperator: expression type not handled");
}
if(leftExpression instanceof Function){
functionName = ((Function) leftExpression).getName();
allColumns = ((Function) leftExpression).isAllColumns();
if(!allColumns){
columnExpression = ((Function) leftExpression).getParameters().getExpressions().get(0);
if(columnExpression instanceof Column){
Column column = (Column)columnExpression;
if(column.getTable().getName().toLowerCase() != null) {
if(aliasHashMap.containsKey(column.getTable().getName().toLowerCase())) {
tableName = aliasHashMap.get(column.getTable().getName().toLowerCase());
for(int i = 0; i < schema.length; i++) {
if(schema[i].getTable().getName().toLowerCase().equals(tableName)) {
if(schema[i].getColumnName().toLowerCase().equals(column.getColumnName().toLowerCase())) {
columnIndex = i;
break;
}
}
}
} else {
System.out.println("ERROR in HavingOperator: alias not present in aliasHashMap");
}
}
else {
for(int i = 0; i < schema.length; i++) {
if(schema[i].getColumnName().toLowerCase().equals(column.getColumnName().toLowerCase())) {
columnIndex = i;
break;
}
}
}
}
}
}
if(rightExpression instanceof LongValue){
constantValue = ((LongValue) rightExpression).getValue();
}
else{
// CHECK FOR 11th QUERY
System.out.println("Right expression not a constant");
}
while(itr.hasNext()){
PrimitiveValue key = (PrimitiveValue) itr.next();
ArrayList arraylist = groupByMap.get(key);
if(!allColumns){
long count = 0, sum = 0, min = Long.MAX_VALUE, max = Long.MIN_VALUE;
for(int i = 0; i < arraylist.size(); i++){
PrimitiveValue[] primitiveValues = (PrimitiveValue[]) arraylist.get(i);
try{
sum = sum + primitiveValues[columnIndex].toLong();
if(primitiveValues[columnIndex].toLong() < min){
min = primitiveValues[columnIndex].toLong();
}
if(primitiveValues[columnIndex].toLong() > max){
max = primitiveValues[columnIndex].toLong();
}
}
catch (PrimitiveValue.InvalidPrimitive e){
e.printStackTrace();
}
count = count + 1;
}
if(functionName.toLowerCase().equals("count")){
aggResult = count;
}
else if(functionName.toLowerCase().equals("avg")){
aggResult = sum/arraylist.size();
}
else if(functionName.toLowerCase().equals("sum")){
aggResult = sum;
}
else if(functionName.toLowerCase().equals("max")){
aggResult = max;
}
else if(functionName.toLowerCase().equals("min")){
aggResult = min;
}
}
else{
//System.out.println("allColumns are present only count is supported");
aggResult = arraylist.size();
}
switch (operation){
case "GreaterThan":
if(aggResult <= constantValue){
keyToRemove.add(key);
}
break;
case "GreaterThanEquals":
if(aggResult < constantValue){
keyToRemove.add(key);
}
break;
case "MinorThan":
if(aggResult >= constantValue){
keyToRemove.add(key);
}
break;
case "MinorThanEquals":
if(aggResult > constantValue){
keyToRemove.add(key);
}
break;
case "EqualsTo":
if(aggResult != constantValue){
keyToRemove.add(key);
}
break;
default:
System.out.println("ERROR in HavingOperatior: Switch case expression not supported");
}
}
for(int i = 0; i < keyToRemove.size(); i++){
PrimitiveValue key = keyToRemove.get(i);
groupByMap.remove(key);
}
}
public ArrayList getHavingOutput(){
Set keySet = groupByMap.keySet();
Iterator itr = keySet.iterator();
while (itr.hasNext()) {
PrimitiveValue key = (PrimitiveValue) itr.next();
ArrayList arraylist = groupByMap.get(key);
PrimitiveValue[] tuple = (PrimitiveValue[]) arraylist.get(0);
havingOutput.add(tuple);
}
return havingOutput;
}
public HashMap getMap(){
return groupByMap;
}
}