-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrderComparator.java
103 lines (95 loc) · 3.77 KB
/
OrderComparator.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
import net.sf.jsqlparser.expression.*;
import net.sf.jsqlparser.expression.operators.relational.GreaterThan;
import net.sf.jsqlparser.expression.operators.relational.MinorThan;
import net.sf.jsqlparser.schema.Column;
import java.sql.SQLException;
import java.util.Comparator;
import java.util.HashMap;
/**
* Created by Mugdha on 7/2/2017.
*/
public class OrderComparator implements Comparator<PrimitiveValue[]> {
HashMap<String, String> aliasHashMap = new HashMap<>();
PrimitiveValue[] tuple;
Integer columnIndex;
Column[] schema;
Boolean isAsc;
public OrderComparator(
HashMap<String, String> aliasHashMap,
PrimitiveValue[] tuple,
Integer columnIndex,
Column[] schema,
Boolean isAsc
){
this.aliasHashMap = aliasHashMap;
this.tuple = tuple;
this.columnIndex = columnIndex;
this.schema = schema;
this.isAsc = isAsc;
}
@Override
public int compare(PrimitiveValue[] pv1, PrimitiveValue[] pv2) {
Evaluator eval = new Evaluator(tuple,schema,aliasHashMap);
if(isAsc){
GreaterThan cmp = new GreaterThan();
if(pv1[columnIndex] instanceof DateValue){
cmp.setRightExpression(new DateValue(pv1[columnIndex].toString()));
cmp.setLeftExpression(new DateValue(pv2[columnIndex].toString()));
}
else if(pv1[columnIndex] instanceof LongValue){
cmp.setRightExpression(new LongValue(pv1[columnIndex].toString()));
cmp.setLeftExpression(new LongValue(pv2[columnIndex].toString()));
}
else if(pv1[columnIndex] instanceof DoubleValue){
cmp.setRightExpression(new DoubleValue(pv1[columnIndex].toString()));
cmp.setLeftExpression(new DoubleValue(pv2[columnIndex].toString()));
}
else if(pv1[columnIndex] instanceof StringValue){
cmp.setRightExpression(new StringValue(pv1[columnIndex].toString()));
cmp.setLeftExpression(new StringValue(pv2[columnIndex].toString()));
}
try{
PrimitiveValue result = eval.eval(cmp);
if(!result.toBool()){
return 1;
} else {
return -1;
}
}
catch (SQLException e){
e.printStackTrace();
}
}
else{
MinorThan cmp = new MinorThan();
if(pv1[columnIndex] instanceof DateValue){
cmp.setRightExpression(new DateValue(pv1[columnIndex].toString()));
cmp.setLeftExpression(new DateValue(pv2[columnIndex].toString()));
}
else if(pv1[columnIndex] instanceof LongValue){
cmp.setRightExpression(new LongValue(pv1[columnIndex].toString()));
cmp.setLeftExpression(new LongValue(pv2[columnIndex].toString()));
}
else if(pv1[columnIndex] instanceof DoubleValue){
cmp.setRightExpression(new DoubleValue(pv1[columnIndex].toString()));
cmp.setLeftExpression(new DoubleValue(pv2[columnIndex].toString()));
}
else if(pv1[columnIndex] instanceof StringValue){
cmp.setRightExpression(new StringValue(pv1[columnIndex].toString()));
cmp.setLeftExpression(new StringValue(pv2[columnIndex].toString()));
}
try{
PrimitiveValue result = eval.eval(cmp);
if(!result.toBool()){
return 1;
} else {
return -1;
}
}
catch (SQLException e){
e.printStackTrace();
}
}
return -1;
}
}