-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser.cpp
More file actions
executable file
·226 lines (170 loc) · 5.37 KB
/
Copy pathparser.cpp
File metadata and controls
executable file
·226 lines (170 loc) · 5.37 KB
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
#include "parser.h"
void Parser::Parse(){
/*
* MAIN PARSE LOOP
*/
printf("Beginning parse\n");
SymbolTable * symbols = new SymbolTable();
std::string last_identifier;
var_type last_type;
while(1){
int tok_type = lex->GetTok();
if(tok_type==tok_eof){
break;
}else if(tok_type==tok_identifier){
printf("SETTING LAST ID: %s\n", lex->stringVal.c_str());
last_identifier = lex->stringVal;
//execute function
}else if(tok_type==tok_paren){
//set variable
}else if(tok_type==tok_binop){
if(lex->stringVal == "="){
plsVariable * RHE = evaluate_expression(symbols);
symbols->set(last_identifier.c_str(), RHE);
}
printf("BINOP\n");
}
}
}
plsVariable * Parser::evaluate_expression(SymbolTable *symbols){
printf("EVALUATE EXPRESSION\n");
bool parseParen = false;
if(lex->tokType == tok_paren){
parseParen = true;
}
int tok_type = lex->GetTok();
ExpressionTree tree;
while(1){
if(tok_type == tok_eol || tok_type == tok_eof){
if(parseParen){
std::string error = "Unexpected end of line";
error += std::to_string(lex->lineNumber);
throw std::logic_error(error.c_str());
}
break;
}
plsVariable * var = nullptr;
node_type ntype = node_num;
if(tok_type == tok_paren){
if(lex->stringVal == ")"){
if(!parseParen){
throw std::logic_error("Unexpected token )");
}else{
break;
}
}else{ // Token is (
var = this->evaluate_expression(symbols);
ntype = node_num;
}
}else if(tok_type==tok_num){
var = new plsNum(lex->numVal);
ntype = node_num;
}
else if(tok_type==tok_identifier){
std::string varName = lex->stringVal;
var = symbols->get(lex->stringVal);
ntype = node_num;
}
else if(tok_type==tok_binop){
var = new plsString(lex->stringVal);
ntype = node_binop;
}
tree.AddNode(new ExpressionNode(var, ntype));
tok_type = lex->GetTok();
}
return tree.Solve();
}
ExpressionTree::ExpressionTree(){};
ExpressionTree::~ExpressionTree(){
delete this->root;
};
void ExpressionTree::AddNode(ExpressionNode *newNode){
printf("ADDING NODE: %s\n", newNode->value->c_str());
if(root == nullptr){
printf("\tNo root, taking root: %s\n", newNode->value->c_str());
root = newNode;
return;
}
ExpressionNode * treeNode = root;
while(1){
printf("\tComparing: %s\n", treeNode->value->c_str());
if(newNode->getWeight() <= treeNode->getWeight()){
printf("\tTaking root\n");
newNode->parent = treeNode->parent;
if(newNode->parent != nullptr){
newNode->parent->rightChild = newNode;
}else{
this->root = newNode;
}
treeNode->parent = newNode;
newNode->leftChild = treeNode;
break;
}else{
if(treeNode->rightChild == nullptr){
printf("\tTaking right child\n");
newNode->parent = treeNode;
treeNode->rightChild = newNode;
break;
}else{
treeNode = treeNode->rightChild;
continue;
}
}
break;
}
}
plsVariable * ExpressionTree::Solve(){
return this->root->CalculateValue();
}
plsVariable * ExpressionNode::CalculateValue(){
if(type == node_num){
plsNum *n = new plsNum(value->num_val());
return n;
}else if(type == node_binop){
if(leftChild == nullptr || rightChild == nullptr){
throw std::logic_error("NULL LHE OR RHE");
}
plsVariable * LHE = leftChild->CalculateValue();
plsVariable * RHE = rightChild->CalculateValue();
plsVariable * ret = nullptr;
if(strcmp(this->value->c_str(), "+") == 0){
ret = *LHE + RHE;
}else if(strcmp(this->value->c_str(), "-") == 0){
ret = *LHE - RHE;
}else if(strcmp(this->value->c_str(), "/") == 0){
ret = *LHE / RHE;
}else if(strcmp(this->value->c_str(), "*") == 0){
ret = *LHE * RHE;
}
return ret;
}
}
int ExpressionNode::getWeight(){
std::map<char, int> binop_priority;
binop_priority['+'] = 20;
binop_priority['-'] = 20;
binop_priority['*'] = 40;
binop_priority['/'] = 40;
binop_priority['#'] = 1000;
int weight = 0;
if(type == node_num){
weight = binop_priority['#'];
}else if(type=node_binop){
weight = binop_priority[*value->c_str()];
}
return weight;
}
ExpressionNode::ExpressionNode(plsVariable* var, node_type type){
this->type = type;
this->value = var;
}
ExpressionNode::~ExpressionNode(){
if(this->rightChild != nullptr){
delete this->rightChild;
}
if(this->leftChild != nullptr){
delete this->leftChild;
}
delete this->value;
return;
}