-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheval.cpp
329 lines (283 loc) · 10.1 KB
/
eval.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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
/* ollieberzs 2018
** eval.cpp
** evaluate AST to value
*/
#include <iostream>
#include "eval.hpp"
#include "parse.hpp"
#include "value.hpp"
#include "oca.hpp"
#include "error.hpp"
OCA_BEGIN
Evaluator::Evaluator(State* state) : state(state), current(nullptr) {}
ValuePtr Evaluator::eval(ExprPtr expr, Scope& scope) {
if (expr == nullptr)
return Nil::in(&scope);
else if (expr->type == Expression::SET)
return set(expr, scope);
else if (expr->type == Expression::CALL)
return call(expr, scope);
else if (expr->type == Expression::IF)
return cond(expr, scope);
else if (expr->type == Expression::ACCESS)
return access(expr, scope);
else if (expr->type == Expression::OPER)
return oper(expr, scope);
else if (expr->type == Expression::FILE)
return file(expr, scope);
else
return value(expr, scope);
}
// ----------------------------
ValuePtr Evaluator::set(ExprPtr expr, Scope& scope) {
auto tracker = current;
current = expr;
bool pub = expr->val == "pub";
bool any = expr->left == nullptr;
std::vector<ExprPtr> lefts;
if (!any) {
ExprPtr it = expr->left;
while (it->type == Expression::CALLS) {
lefts.push_back(it->left);
it = it->right;
}
lefts.push_back(it);
}
ValuePtr rightVal = eval(expr->right, scope);
if (any) {
scope.add(rightVal->scope);
} else {
uint counter = ARRAY_BEGIN_INDEX;
for (auto& leftExpr : lefts) {
std::string name = leftExpr->val;
ValuePtr leftVal = Nil::in(&scope);
if (leftExpr->type == Expression::ACCESS) {
leftVal = eval(leftExpr, scope);
if (leftVal->isNil())
throw Error(NEW_TABLE_KEY);
name = leftVal->scope.parent->get(leftVal);
}
if (lefts.size() == 1)
leftVal->scope.parent->set(name, rightVal, pub);
else {
ValuePtr rightValPart = rightVal->scope.get(std::to_string(counter), false);
++counter;
if (rightValPart->isNil())
throw Error(CANNOT_SPLIT);
leftVal->scope.parent->set(name, rightValPart, pub);
}
}
}
current = tracker;
return rightVal;
}
ValuePtr Evaluator::call(ExprPtr expr, Scope& scope) {
auto tracker = current;
current = expr;
ValuePtr val = state->global.get(expr->val, true);
Scope* searchScope = &scope;
while (val->isNil()) {
val = searchScope->get(expr->val, true);
if (!searchScope->parent && val->isNil())
throw Error(UNDEFINED);
searchScope = searchScope->parent;
}
ValuePtr arg = eval(expr->right, scope);
ValuePtr block = eval(expr->left, scope);
Value& vref = *val;
ValuePtr result = val;
if (TYPE_EQ(vref, Func))
result = static_cast<Func&>(vref)(Table::from(scope), arg, block);
if (TYPE_EQ(vref, Block))
result = static_cast<Block&>(vref)(Table::from(scope), arg, block);
current = tracker;
return result;
}
ValuePtr Evaluator::oper(ExprPtr expr, Scope& scope) {
auto tracker = current;
current = expr;
std::map<std::string, std::string> operFuncs = {
{"+", "__add"}, {"-", "__sub"}, {"*", "__mul"}, {"/", "__div"}, {"%", "__mod"},
{"^", "__pow"}, {"==", "__eq"}, {"!=", "__neq"}, {">", "__gr"}, {"<", "__ls"},
{">=", "__geq"}, {"<=", "__leq"}, {"..", "__ran"}, {"and", "__and"}, {"or", "__or"},
{"xor", "__xor"}, {"lsh", "__lsh"}, {"rsh", "__rsh"}};
ValuePtr left = eval(expr->left, scope);
ValuePtr right = eval(expr->right, scope);
ValuePtr func = left->scope.get(operFuncs[expr->val], false);
if (func->isNil())
throw Error(UNDEFINED_OPERATOR);
Value& funcref = *func;
ValuePtr result = func;
if (TYPE_EQ(funcref, Func))
result = static_cast<Func&>(funcref)(left, right, Nil::in(&scope));
if (TYPE_EQ(funcref, Block))
result = static_cast<Block&>(funcref)(left, right, Nil::in(&scope));
current = tracker;
return result;
}
ValuePtr Evaluator::cond(ExprPtr expr, Scope& scope) {
auto tracker = current;
current = expr;
ValuePtr conditional = eval(expr->left, scope);
Value& cref = *conditional;
if (!(TYPE_EQ(cref, Bool)))
throw Error(IF_BOOL);
bool trueness = static_cast<Bool&>(cref).val;
current = tracker;
ValuePtr branch = Nil::in(&scope);
if (trueness)
branch = eval(expr->right->left, scope);
else if (expr->right->right)
branch = eval(expr->right->right, scope);
if (branch->isNil())
return branch;
auto temp = Scope(&scope);
ValuePtr result = Nil::in(&temp);
ExprPtr it = static_cast<Block&>(*branch).val;
while (it && it->left) {
if (it->left->type == Expression::RETURN) {
returning = true;
result = eval(it->left->right, temp);
break;
}
if (it->left->type == Expression::BREAK)
break;
result = eval(it->left, temp);
it = it->right;
}
return result;
}
ValuePtr Evaluator::access(ExprPtr expr, Scope& scope) {
auto tracker = current;
current = expr->right;
ValuePtr left = eval(expr->left, scope);
bool super = expr->left->val == "super";
ValuePtr right = left->scope.get(expr->right->val, super);
if (right->isNil())
throw Error(UNDEFINED_IN_TABLE);
ValuePtr arg = eval(expr->right->right, scope);
ValuePtr block = eval(expr->right->left, scope);
Value& val = *right;
ValuePtr result = right;
if (TYPE_EQ(val, Func))
result = static_cast<Func&>(val)(left, arg, block);
if (TYPE_EQ(val, Block))
result = static_cast<Block&>(val)(left, arg, block);
current = tracker;
return result;
}
ValuePtr Evaluator::file(ExprPtr expr, Scope& scope) {
auto oldPath = state->eh.path;
auto oldSource = state->eh.source;
auto oldTokens = state->eh.tokens;
auto oldScope = state->scope;
std::string folder = "";
if (state->eh.path) {
uint slash = state->eh.path->find_last_of("/");
folder = state->eh.path->substr(0, slash + 1);
}
state->scope = Scope(nullptr);
state->runFile(folder + expr->val + ".oca");
auto val = Table::from(state->scope);
state->eh.path = oldPath;
state->eh.source = oldSource;
state->eh.tokens = oldTokens;
state->scope = oldScope;
return val;
}
ValuePtr Evaluator::value(ExprPtr expr, Scope& scope) {
auto tracker = current;
current = expr;
ValuePtr result = Nil::in(&scope);
if (expr->type == Expression::TABL) {
if (expr->right == nullptr && expr->val == "")
return eval(expr->left, scope);
result = std::make_shared<Table>(&scope);
uint counter = ARRAY_BEGIN_INDEX;
while (expr && expr->left) {
std::string nam = "";
bool pub = (expr->val.find("pub ") != std::string::npos);
bool any = (expr->val.find("*") != std::string::npos);
if (!any) {
if (expr->val == "") {
pub = true;
nam = std::to_string(counter);
++counter;
++static_cast<Table&>(*result).count;
}
if (pub && expr->val != "")
nam = expr->val.substr(4);
if (nam == "")
nam = expr->val;
++static_cast<Table&>(*result).size;
result->scope.set(nam, eval(expr->left, scope), pub);
} else {
result->scope.add(eval(expr->left, scope)->scope);
}
expr = expr->right;
}
} else if (expr->type == Expression::EMPTY_TABL) {
result = std::make_shared<Table>(&scope);
} else if (
expr->type == Expression::BLOCK || expr->type == Expression::MAIN ||
expr->type == Expression::ELSE) {
result = std::make_shared<Block>(expr, &scope, this);
} else if (expr->type == Expression::STR) {
result = std::make_shared<String>(expr->val, &scope);
} else if (expr->type == Expression::FSTR) {
result = fstring(expr, scope);
} else if (expr->type == Expression::INT) {
result = std::make_shared<Integer>(std::stoll(expr->val), &scope);
} else if (expr->type == Expression::REAL) {
result = std::make_shared<Real>(std::stod(expr->val), &scope);
} else if (expr->type == Expression::BOOL) {
result = std::make_shared<Bool>(expr->val == "true", &scope);
}
current = tracker;
return result;
}
ValuePtr Evaluator::fstring(ExprPtr expr, Scope& scope) {
std::string string = expr->val;
std::string formatted = "";
bool escape = false;
bool inner = false;
std::string innerStr = "";
for (char c : string) {
if (escape) {
switch (c) {
case 'a': formatted += '\a'; break;
case 'b': formatted += '\b'; break;
case 'f': formatted += '\f'; break;
case 'n': formatted += '\n'; break;
case 'r': formatted += '\r'; break;
case 't': formatted += '\t'; break;
case 'v': formatted += '\v'; break;
case '{': formatted += '{'; break;
case '\\': formatted += '\\'; break;
}
escape = false;
} else if (inner) {
if (c == '}') {
auto oldSource = state->eh.source;
auto oldTokens = state->eh.tokens;
auto oldScope = state->scope;
state->scope = scope;
formatted += state->runString(innerStr)->tos();
state->eh.source = oldSource;
state->eh.tokens = oldTokens;
state->scope = oldScope;
inner = false;
innerStr = "";
} else
innerStr += c;
} else {
switch (c) {
case '\\': escape = true; break;
case '{': inner = true; break;
default: formatted += c; break;
}
}
}
return std::make_shared<String>(formatted, &scope);
}
OCA_END