-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.cpp
583 lines (481 loc) · 15 KB
/
parse.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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
/* ollieberzs 2018
** parse.cpp
** parsing oca tokens into AST
*/
#include <iostream>
#include <fstream>
#include <cmath>
#include "oca.hpp"
OCA_BEGIN
Expression::Expression(Expression::Type type, const std::string& val, uint index)
: type(type), val(val), left(nullptr), right(nullptr), index(index) {}
void Expression::print(uint indent, char mod) {
std::vector<std::string> typestrings = {
"set", "call", "access", "if", "else", "next", "main", "branches",
"part oper", "oper", "return", "break", "file", "str", "fstr", "int",
"real", "bool", "block", "tabl", "empty tabl", "name", "calls"};
for (uint i = 0; i < indent; i++)
std::cout << " ";
std::cout << mod << "<" << typestrings[type] << ">" << val << "\n";
if (left)
left->print(indent + 1, 'L');
if (right)
right->print(indent + 1, 'R');
}
// ----------------------------
std::vector<ExprPtr> Parser::makeAST(const std::vector<Token>& tokens) {
index = 0;
indent = 0;
this->tokens = &tokens;
while (checkIndent(Indent::SAME))
;
std::vector<ExprPtr> ast;
while (index < tokens.size() - 1) {
if (expr()) {
ast.push_back(cache.back());
cache.pop_back();
} else
throw Error(NOT_AN_EXPRESSION);
if (get().type == Token::LAST)
break;
if (checkIndent(Indent::MORE))
throw Error(UNEXPECTED_INDENT);
if (!checkIndent(Indent::SAME) && !checkIndent(Indent::LESS))
throw Error(NO_NEWLINE);
}
return ast;
}
// ----------------------------
const Token& Parser::get() {
if (index < tokens->size() - 1)
return tokens->at(index);
else
return tokens->back();
}
ExprPtr Parser::uncache() {
ExprPtr result = cache.back();
cache.pop_back();
return result;
}
// ----------------------------
bool Parser::expr() {
if (set() || call() || value() || block() || cond() || keyword() || file())
return true;
return false;
}
bool Parser::set() {
uint orig = index;
bool pub = checkLit("pub");
bool any = false;
if (checkLit("*"))
any = true;
else if (!call()) {
index = orig;
return false;
}
if (!checkLit("=")) {
if (!any)
uncache();
index = orig;
return false;
}
if (!call() && !value() && !block() && !file() && !cond())
throw Error(NOTHING_TO_SET);
// assemble assignment
ExprPtr expr = std::make_shared<Expression>(Expression::SET, pub ? "pub" : "", orig);
expr->right = uncache();
if (!any)
expr->left = uncache();
cache.push_back(expr);
return true;
}
bool Parser::call(bool inDot) {
uint orig = index;
if (!name())
return false;
bool hasArg = value() || call() || file();
bool hasYield = block();
ExprPtr yield = (hasYield) ? uncache() : nullptr;
ExprPtr arg = (hasArg) ? uncache() : nullptr;
ExprPtr c = std::make_shared<Expression>(Expression::CALL, uncache()->val, orig);
c->left = yield;
c->right = arg;
cache.push_back(c);
if (!inDot)
access();
if (cache.size() == 1 && checkLit(",")) {
uint origc = index;
if (!call())
throw Error(NO_NAME);
ExprPtr calls = std::make_shared<Expression>(Expression::CALLS, "", origc);
calls->right = uncache();
calls->left = uncache();
cache.push_back(calls);
}
if (!inDot)
oper();
return true;
}
bool Parser::access() {
uint orig = index;
if (!checkLit("."))
return false;
// pass true, so the next call doesn't parse access
if (!call(true) && !integer())
throw Error(NO_ACCESS_KEY);
// assemble access
ExprPtr a = std::make_shared<Expression>(Expression::ACCESS, "", orig);
a->right = uncache();
a->left = uncache();
cache.push_back(a);
access();
return true;
}
bool Parser::cond() {
uint startIndent = indent;
uint orig = index;
if (!checkLit("if"))
return false;
if (!set() && !call() && !value())
throw Error(NO_CONDITIONAL);
if (!checkLit("then"))
throw Error(NO_THEN);
uint origt = index;
uint cached = cache.size();
if (checkIndent(Indent::MORE)) {
while (expr()) {
if (!checkIndent(Indent::SAME))
break;
}
} else if (!expr())
throw Error(NOT_AN_EXPRESSION);
uint elseCached = cache.size();
bool hasElse = false;
uint orige = index;
bool preelseIndent = checkIndent(Indent::SAME);
if (checkLit("else")) {
hasElse = true;
if (checkIndent(Indent::MORE)) {
while (expr()) {
if (!checkIndent(Indent::SAME))
break;
}
} else if (!expr())
throw Error(NOT_AN_EXPRESSION);
} else if (preelseIndent)
--index;
indent = startIndent;
// assemble conditional
ExprPtr els = std::make_shared<Expression>(Expression::ELSE, "", orige);
ExprPtr curr = els;
for (uint i = elseCached; i < cache.size(); ++i) {
curr->left = cache[i];
if (i < cache.size() - 1) {
curr->right = std::make_shared<Expression>(Expression::NEXT, "", orig);
curr = curr->right;
}
}
cache.resize(elseCached);
ExprPtr mn = std::make_shared<Expression>(Expression::MAIN, "", origt);
curr = mn;
for (uint i = cached; i < cache.size(); ++i) {
curr->left = cache[i];
if (i < cache.size() - 1) {
curr->right = std::make_shared<Expression>(Expression::NEXT, "", orig);
curr = curr->right;
}
}
cache.resize(cached);
ExprPtr ifer = std::make_shared<Expression>(Expression::IF, "", orig);
ifer->left = uncache(); // condition
ExprPtr branches = std::make_shared<Expression>(Expression::BRANCHES, "", orig);
branches->left = mn;
if (hasElse)
branches->right = els;
ifer->right = branches;
cache.push_back(ifer);
return true;
}
bool Parser::oper() {
uint cached = cache.size();
if (get().type != Token::OPERATOR)
return false;
bool first = (cached < 2) || (cache[cached - 2]->type != Expression::PART_OPER);
cache.push_back(std::make_shared<Expression>(Expression::PART_OPER, get().val, index));
++index;
if (!value() && !call())
throw Error(NO_RIGHT_VALUE);
oper();
if (!first)
return true;
// assemble operator
for (int p = 3; p >= 0; p--) {
for (auto it = cache.begin() + cached - 1; it != cache.end(); it++) {
if ((*it)->type != Expression::PART_OPER)
continue;
uint origp = (*it)->index;
// set priority
int priority = 1;
char op = (*it)->val[0];
if (op == '=' || op == '<' || op == '>')
priority = 0;
else if (op == '*' || op == '/' || op == '%')
priority = 2;
else if (op == '^')
priority = 3;
if (priority != p)
continue;
ExprPtr o = std::make_shared<Expression>(Expression::OPER, (*it)->val, origp);
o->left = *(it - 1);
o->right = *(it + 1);
cache.erase(it - 1, it + 2);
cache.insert(it - 1, o);
it--;
}
}
return true;
}
bool Parser::keyword() {
if (get().val == "return") {
ExprPtr r = std::make_shared<Expression>(Expression::RETURN, "", index);
++index;
if (expr())
r->right = uncache();
cache.push_back(r);
return true;
} else if (get().val == "break") {
cache.push_back(std::make_shared<Expression>(Expression::BREAK, "", index));
++index;
return true;
}
return false;
}
bool Parser::file() {
if (get().type != Token::FILEPATH)
return false;
cache.push_back(std::make_shared<Expression>(Expression::FILE, get().val.substr(1), index));
++index;
return true;
}
bool Parser::name() {
if (get().type != Token::NAME)
return false;
cache.push_back(std::make_shared<Expression>(Expression::NAME, get().val, index));
++index;
return true;
}
bool Parser::value() {
uint cached = cache.size();
if (string() || fstring() || integer() || real() || boolean()) {
access();
oper();
return true;
} else if (checkLit("(")) {
checkIndent(Indent::MORE);
bool empty = false;
while (true) {
uint origt = index;
std::string nam = "";
bool pub = checkLit("pub");
bool any = checkLit("*");
if (any || name()) {
if (checkLit(":")) {
if (!any)
nam = (pub ? "pub " : "") + uncache()->val;
else
nam = (pub ? "pub " : "") + std::string("*");
} else {
cache.pop_back();
--index;
if (pub)
--index;
}
}
if (!expr()) {
if (cache.size() != cached)
throw Error(NOTHING_TO_SET);
cache.push_back(std::make_shared<Expression>(Expression::EMPTY_TABL, "", origt));
empty = true;
break;
}
ExprPtr tabl = std::make_shared<Expression>(Expression::TABL, nam, origt);
tabl->left = uncache();
cache.push_back(tabl);
if (!checkLit(","))
break;
if (checkIndent(Indent::MORE))
throw Error(UNEXPECTED_INDENT);
checkIndent(Indent::SAME);
}
checkIndent(Indent::LESS);
if (!checkLit(")"))
throw Error(NO_CLOSING_BRACE);
if (!empty) {
// assemble table
ExprPtr tabl = cache[cached];
for (uint i = cached; i < cache.size() - 1; ++i)
cache[i]->right = cache[i + 1];
cache.resize(cached);
cache.push_back(tabl);
}
access();
oper();
return true;
}
return false;
}
bool Parser::string() {
if (get().type != Token::STRING)
return false;
std::string s = get().val.substr(1, get().val.size() - 2);
cache.push_back(std::make_shared<Expression>(Expression::STR, s, index));
++index;
return true;
}
bool Parser::fstring() {
if (get().type != Token::FSTRING)
return false;
std::string s = get().val.substr(1, get().val.size() - 2);
cache.push_back(std::make_shared<Expression>(Expression::FSTR, s, index));
++index;
return true;
}
bool Parser::integer() {
if (get().type == Token::BINNUM) {
oca_int num = 0;
std::string bin = get().val;
for (uint i = bin.size() - 1; i > 1; --i) {
if (bin[i] == '1')
num += std::pow(2, bin.size() - i - 1);
}
cache.push_back(std::make_shared<Expression>(Expression::INT, std::to_string(num), index));
++index;
return true;
}
if (get().type == Token::HEXNUM) {
oca_int num = std::stoll(get().val, 0, 16);
cache.push_back(std::make_shared<Expression>(Expression::INT, std::to_string(num), index));
++index;
return true;
}
bool minus = false;
if (get().val == "-") {
const Token& prev = (index == 0) ? tokens->back() : tokens->at(index - 1);
if (prev.type == Token::INDENT || prev.val == "(" || prev.val == ":" || prev.val == "=") {
++index;
minus = true;
}
}
if (get().type != Token::INTEGER) {
if (minus)
--index;
return false;
}
std::string val = minus ? "-" + get().val : get().val;
cache.push_back(std::make_shared<Expression>(Expression::INT, val, index));
++index;
return true;
}
bool Parser::real() {
bool minus = false;
if (get().val == "-") {
const Token& prev = (index == 0) ? tokens->back() : tokens->at(index - 1);
if (prev.type == Token::INDENT || prev.val == "(" || prev.val == ":" || prev.val == "=") {
++index;
minus = true;
}
}
if (get().type == Token::SCIENTNUM) {
auto e = get().val.find("e");
if (e == std::string::npos)
e = get().val.find("E");
oca_real base = std::stod(get().val.substr(0, e));
oca_real power = std::stod(get().val.substr(e + 1, get().val.size() - 1));
std::string num = std::to_string(base * std::pow(10, power));
std::string val = minus ? "-" + num : num;
cache.push_back(std::make_shared<Expression>(Expression::REAL, val, index));
++index;
return true;
}
if (get().type != Token::REAL) {
if (minus)
--index;
return false;
}
std::string val = minus ? "-" + get().val : get().val;
cache.push_back(std::make_shared<Expression>(Expression::REAL, val, index));
++index;
return true;
}
bool Parser::boolean() {
if (get().type != Token::BOOLEAN)
return false;
cache.push_back(std::make_shared<Expression>(Expression::BOOL, get().val, index));
++index;
return true;
}
bool Parser::block() {
uint startIndent = indent;
uint orig = index;
if (!checkLit("do"))
return false;
std::string params = "";
if (checkLit("with")) {
while (name()) {
params += uncache()->val + " ";
if (!checkLit(","))
break;
}
params.pop_back();
if (params == "")
throw Error(NO_PARAMETER);
}
if (checkIndent(Indent::SAME))
throw Error(NO_INDENT);
uint cached = cache.size();
if (checkIndent(Indent::MORE)) {
while (expr())
if (!checkIndent(Indent::SAME))
break;
} else if (!expr())
throw Error(NOT_AN_EXPRESSION);
indent = startIndent;
// assemble block
ExprPtr bl = std::make_shared<Expression>(Expression::BLOCK, params, orig);
ExprPtr curr = bl;
for (uint i = cached; i < cache.size(); ++i) {
curr->left = cache[i];
if (i < cache.size() - 1) {
curr->right = std::make_shared<Expression>(Expression::NEXT, "", orig);
curr = curr->right;
}
}
cache.resize(cached);
cache.push_back(bl);
return true;
}
// ----------------------------
bool Parser::checkLit(const std::string& t) {
if (get().val != t)
return false;
++index;
return true;
}
bool Parser::checkIndent(Indent ind) {
uint size = get().val.size() - 1;
if (get().type != Token::INDENT)
return false;
if (ind == Indent::LESS)
if (size >= indent)
return false;
if (ind == Indent::SAME)
if (size > indent || size < indent)
return false;
if (ind == Indent::MORE)
if (size <= indent)
return false;
indent = size;
++index;
return true;
}
OCA_END