-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyntacticParser.cpp
189 lines (165 loc) · 5.3 KB
/
syntacticParser.cpp
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
#include "global.h"
bool syntacticParse()
{
logger.log("syntacticParse");
string possibleQueryType = tokenizedQuery[0];
if (tokenizedQuery.size() < 2)
{
cout << "SYNTAX ERROR" << endl;
return false;
}
if (possibleQueryType == "CLEAR")
return syntacticParseCLEAR();
else if (possibleQueryType == "INDEX")
return syntacticParseINDEX();
else if (possibleQueryType == "LIST")
return syntacticParseLIST();
//Self Implemented : BEGIN
else if (possibleQueryType == "LOAD" and tokenizedQuery[1]=="MATRIX")
{ possibleQueryType = "LOAD_MATRIX";
return syntacticParseLOAD_MATRIX();
}
else if (possibleQueryType == "PRINT" and tokenizedQuery[1]=="MATRIX")
{
possibleQueryType = "PRINT_MATRIX";
return syntacticParsePRINT_MATRIX();
}
else if (possibleQueryType == "CROSS_TRANSPOSE"){
if (tokenizedQuery.size() < 3)
{
cout << "SYNTAX ERROR" << endl;
return false;
}
return syntacticParseCROSS_TRANSPOSE();
}
else if (possibleQueryType == "EXPORT" and tokenizedQuery[1]=="MATRIX")
{
possibleQueryType = "EXPORT_MATRIX";
return syntacticParseEXPORT_MATRIX();
}
//Self Implemented : END
else if (possibleQueryType == "LOAD")
return syntacticParseLOAD();
else if (possibleQueryType == "PRINT")
return syntacticParsePRINT();
else if (possibleQueryType == "RENAME")
return syntacticParseRENAME();
else if(possibleQueryType == "EXPORT")
return syntacticParseEXPORT();
else if(possibleQueryType == "SOURCE")
return syntacticParseSOURCE();
else
{
string resultantRelationName = possibleQueryType;
if (tokenizedQuery[1] != "<-" || tokenizedQuery.size() < 3)
{
cout << "SYNTAX ERROR" << endl;
return false;
}
possibleQueryType = tokenizedQuery[2];
if (possibleQueryType == "PROJECT")
return syntacticParsePROJECTION();
else if (possibleQueryType == "SELECT")
return syntacticParseSELECTION();
else if(possibleQueryType=="GROUP" and tokenizedQuery.size()==9 and tokenizedQuery[3]=="BY"){
possibleQueryType = "GROUP_BY";
return syntacticParseGROUP_BY();
}
else if (possibleQueryType == "JOIN")
return syntacticParseJOIN();
else if (possibleQueryType == "CROSS")
return syntacticParseCROSS();
else if (possibleQueryType == "DISTINCT")
return syntacticParseDISTINCT();
else if (possibleQueryType == "SORT")
return syntacticParseSORT();
else
{
cout << "SYNTAX ERROR" << endl;
return false;
}
}
return false;
}
ParsedQuery::ParsedQuery()
{
}
void ParsedQuery::clear()
{
logger.log("ParseQuery::clear");
this->queryType = UNDETERMINED;
this->aggregateType = NO_AGGREGATE;
this->group_byResultRelationName="";
this->group_byRelationName="";
this->group_byAttributeName="";
this->group_byAggregateColumnName="";
this->clearRelationName = "";
this->crossResultRelationName = "";
this->crossFirstRelationName = "";
this->crossSecondRelationName = "";
//Self Implementd : Begin
this->cross_transFirstRelationName = "";
this->cross_transSecondRelationName = "";
//Self Implemented : End
this->distinctResultRelationName = "";
this->distinctRelationName = "";
this->exportRelationName = "";
this->indexingStrategy = NOTHING;
this->indexColumnName = "";
this->indexRelationName = "";
this->joinBinaryOperator = NO_BINOP_CLAUSE;
this->joinType = SIMPLE;
this->NO_BUFFER = 0;
this->joinResultRelationName = "";
this->joinFirstRelationName = "";
this->joinSecondRelationName = "";
this->joinFirstColumnName = "";
this->joinSecondColumnName = "";
this->loadRelationName = "";
this->printRelationName = "";
this->projectionResultRelationName = "";
this->projectionColumnList.clear();
this->projectionRelationName = "";
this->renameFromColumnName = "";
this->renameToColumnName = "";
this->renameRelationName = "";
this->selectType = NO_SELECT_CLAUSE;
this->selectionBinaryOperator = NO_BINOP_CLAUSE;
this->selectionResultRelationName = "";
this->selectionRelationName = "";
this->selectionFirstColumnName = "";
this->selectionSecondColumnName = "";
this->selectionIntLiteral = 0;
this->sortingStrategy = NO_SORT_CLAUSE;
this->sortResultRelationName = "";
this->sortColumnName = "";
this->sortRelationName = "";
this->sourceFileName = "";
}
/**
* @brief Checks to see if source file exists. Called when LOAD command is
* invoked.
*
* @param tableName
* @return true
* @return false
*/
bool isFileExists(string tableName)
{
string fileName = "../data/" + tableName + ".csv";
struct stat buffer;
return (stat(fileName.c_str(), &buffer) == 0);
}
/**
* @brief Checks to see if source file exists. Called when SOURCE command is
* invoked.
*
* @param tableName
* @return true
* @return false
*/
bool isQueryFile(string fileName){
fileName = "../data/" + fileName + ".ra";
struct stat buffer;
return (stat(fileName.c_str(), &buffer) == 0);
}