-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectionOperator.java
52 lines (48 loc) · 1.87 KB
/
ProjectionOperator.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
import net.sf.jsqlparser.expression.PrimitiveValue;
import net.sf.jsqlparser.schema.Column;
import net.sf.jsqlparser.statement.select.SelectItem;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
/**
* Created by Karan on 6/28/2017.
*/
public class ProjectionOperator{
ArrayList<PrimitiveValue[]> outputList = new ArrayList<>();
ArrayList<PrimitiveValue[]> tupleList;
List<SelectItem> selectItemList;
Column[] schema;
HashMap<String, String> aliasHashMap;
Column[] newSchema;
public ProjectionOperator(ArrayList tupleList, List<SelectItem> selectItemList,
Column[] schema, HashMap<String, String> aliasHashMap) {
this.tupleList = tupleList;
this.selectItemList = selectItemList;
this.schema = schema;
this.aliasHashMap = aliasHashMap;
}
public ArrayList<PrimitiveValue[]> getProjectedOutput() {
for(int j = 0; j < tupleList.size(); j++){
PrimitiveValue[] inputTuple = tupleList.get(j);
if (inputTuple == null) {
continue;
}
ProjectionVisitor projectionVisitor = new ProjectionVisitor(schema, aliasHashMap);
for(SelectItem selectItem : selectItemList) {
selectItem.accept(projectionVisitor);
}
PrimitiveValue[] tuple = new PrimitiveValue[projectionVisitor.columnIndexes.size()];
if(j == 0) {
newSchema = new Column[tuple.length];
for (int i = 0; i < tuple.length; i++) {
newSchema[i] = schema[projectionVisitor.columnIndexes.get(i)];
}
}
for (int i = 0; i < tuple.length; i++) {
tuple[i] = inputTuple[projectionVisitor.columnIndexes.get(i)];
}
outputList.add(tuple);
}
return outputList;
}
}