-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathParser.cpp
525 lines (453 loc) · 16.4 KB
/
Parser.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
#include "Parser.h"
#include "AST/DeclarationConst.h"
#include "AST/PrimaryExpressionVar.h"
#include "AST/CommandIf.h"
#include "AST/CommandAssign.h"
#include "AST/CommandLet.h"
#define ANSI_COLOR_CYAN "\x1b[36m"
#define ANSI_COLOR_RESET "\x1b[0m"
//
// Created by cybex on 2019/05/03.
//
Parser::Parser(std::string sentence) {
currentToken = nullptr;
curTokenPos = -1;
this->sentence = std::move(sentence);
}
/**
* Builds the AST defined by Production Rules and performs syntax checks while building the tree
*/
int Parser::compile() {
Scanner *s = new Scanner(std::move(sentence));
if (_VERBOSITY > 2) {
fprintf(stdout, ANSI_COLOR_CYAN "Building Token List...\n" ANSI_COLOR_RESET);
} else if (_VERBOSITY <= 2) {
fprintf(stdout, ANSI_COLOR_CYAN "Building Token List..." ANSI_COLOR_RESET);
}
int success = s->buildTokenList();
if (success == 1) {
// Error message handle in buildTokenList
return success;
}
if (_VERBOSITY < 2) {
fprintf(stdout, ANSI_COLOR_GREEN "Success\n" ANSI_COLOR_RESET);
} else if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "Token List Built\n" ANSI_COLOR_RESET);
}
tokenList = s->getTokenList();
// Build AST
if (_VERBOSITY > 2) {
fprintf(stdout, ANSI_COLOR_CYAN "Building AST...\n" ANSI_COLOR_RESET);
} else if (_VERBOSITY <= 2) {
fprintf(stdout, ANSI_COLOR_CYAN "Building AST..." ANSI_COLOR_RESET);
}
buildAST();
if (_VERBOSITY < 2) {
fprintf(stdout, ANSI_COLOR_GREEN "Success\n" ANSI_COLOR_RESET);
} else if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "AST Built\n" ANSI_COLOR_RESET);
}
// Cleanup
delete s;
return success;
}
///**
// * Performs the contextual analysis ensuring correct variable scopes are used.
// */
//int Parser::checkContext() {
// // use vtables with variable definitions. Each level have a variable referend with value true if initialized. Use variables at different levels.
// // Save depth where variable is declared. Check if current depth is less that variable -> variable out of scope.
// // Check variable name declared 2 times, show error.
// // Assign incompatibile types, show appropriate error.
// // check same variables names between datatypes
//
// return 0;
//}
void Parser::nextToken(TokenType type) {
// Debug output
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "\tParsing [%s] \'%s\'\n" ANSI_COLOR_RESET, currentToken->tokenDesc().data(),
currentToken->getValue().data());
}
if (currentToken->matchesType(type)) {
loadNextToken();
} else {
fprintf(stdout, ANSI_COLOR_RED "\nFATAL: Compilation Error: Expected \'%s\' but found \'%s\' \n" ANSI_COLOR_RESET,
Token::tokenDesc(type).data(), Token::tokenDesc(currentToken->getType()).data());
exit(1);
}
}
Token *Parser::getNextToken(TokenType type) {
nextToken(type);
return currentToken;
}
void Parser::loadNextToken() {
curTokenPos++;
currentToken = (curTokenPos < tokenList.size())
? &tokenList.at(curTokenPos)
: nullptr;
}
void Parser::buildAST() {
// Prep next token
loadNextToken();
program = new Program(parseCommand());
}
Command *Parser::parseCommand() {
switch (currentToken->getType()) {
case LetToken: {
// Debug output
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "\tParsing [%s] \'%s\'\n" ANSI_COLOR_RESET,
currentToken->tokenDesc().data(), currentToken->getValue().data());
}
/*
* We are expecting 4 tokens
* 1. LetToken
* 2. Declaration
* 3. InToken
* 4. Command
*/
loadNextToken();
Declaration *declaration = parseDeclaration();
nextToken(TokenType::InToken);
Command *command = parseCommand();
closeScope(declaration->describe());
// Build Let Command
return new CommandLet(declaration, command);
}
case IfToken: {
// Debug output
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "\tParsing [%s] \'%s\'\n" ANSI_COLOR_RESET,
currentToken->tokenDesc().data(), currentToken->getValue().data());
}
/*
* We are expecting 6 tokens minimum
* 1. IfToken
* 2. Expression
* 3. ThenToken
* 4. Command
* 5. ElseToken
* 6 Command
*/
loadNextToken();
PrimaryExpression *condition = parsePrimaryExpression();
nextToken(TokenType::ThenToken);
Command *trueCommand = parseCommand();
nextToken(TokenType::ElseToken);
Command *falseCommand = parseCommand();
// Build If Command
return new CommandIf(condition, trueCommand, falseCommand);
}
case IdentifierToken: {
/*
* We are expecting 3 tokens.
* 1. VarName
* 2. AssignVarToken
* 3. Expression
* 3. Expression
*/
VarName *varName = parseVarName();
nextToken(TokenType::AssignVarToken);
Expression *expression = parseExpression();
// Check if variable defined
int c = var_table.count(varName->describe());
if (c == 0) {
fprintf(stdout, ANSI_COLOR_RED "\nFATAL: Undeclared variable: %s in:\n%s\n" ANSI_COLOR_RESET,
varName->describe().data(), expression->describe().data());
exit(1);
}
// Check is defined
auto mapIterator = var_table.find(varName->describe());
if (!mapIterator->second.defined) {
fprintf(stdout, ANSI_COLOR_RED "Undefined variable: %s in:\n%s\n" ANSI_COLOR_RESET,
varName->describe().data(), mapIterator->second.type->describe().data());
exit(1);
}
// Get pointer to variable
vardef_t *var = &mapIterator->second;
// Check data type match
if (var->type->describe() != expression->getType()) {
fprintf(stderr,
ANSI_COLOR_RED "\nFATAL: Incompatible types: \nVariable \'%s\' [Type \'%s\']\nExpression: \'%s\' [Type \'%s\']\n" ANSI_COLOR_RESET,
var->name->describe().data(), var->type->describe().data(), expression->describe().data(), expression->getType().data());
exit(1);
}
// Check if const
if (var->isConst) {
fprintf(stdout,
ANSI_COLOR_RED "\nFATAL: \'%s\' is a constant. You cannot alter it once declared.\n" ANSI_COLOR_RESET,
varName->describe().data());
exit(1);
}
// Build variable assignment
return new CommandAssign(varName, expression);
}
default: {
fprintf(stdout, ANSI_COLOR_RED "Invalid %s \'%s\' \n" ANSI_COLOR_RESET,
Token::tokenDesc(currentToken->getType()).data(), currentToken->getValue().data());
exit(1);
}
}
}
Expression *Parser::parseExpression() {
// parse primary expression
PrimaryExpression *p1 = parsePrimaryExpression();
std::string p1Type = p1->getType();
if (p1Type.length() == 0) {
fprintf(stderr, ANSI_COLOR_RED "\nFATAL: Unknown type for variable: \'%s\' [Type \'%s\']\n" ANSI_COLOR_RESET,
p1->describe().data(), p1Type.data());
exit(1);
}
// Check if variable/expression defined in vartable, then change data type appropriately
if (p1Type == "STRING" || p1Type == "CHAR") {
if (checkVarExists(p1->describe())) {
p1Type = var_table.find(p1->describe())->second.type->describe();
}
}
p1Type = Scanner::toUpper(p1Type);
// parse operator
Operate *o1 = parseOperator();
// parse primary expression
PrimaryExpression *p2 = parsePrimaryExpression();
std::string p2Type = p2->getType();
if (p2Type.length() == 0) {
fprintf(stderr, ANSI_COLOR_RED "\nFATAL: Unknown type for variable: \'%s\' [Type \'%s\']\n" ANSI_COLOR_RESET,
p2->describe().data(), p2Type.data());
exit(1);
}
// Check if variable/expression defined in vartable, then change data type appropriately
if (p2Type == "STRING" || p2Type == "CHAR") {
if (checkVarExists(p2->describe())) {
p2Type = var_table.find(p2->describe())->second.type->describe();
}
}
p2Type = Scanner::toUpper(p2Type);
// Check + is used with strings or chars
if (p2Type == p1Type && (p1Type == "STRING" || p1Type == "CHAR") && o1->describe() != "+") {
fprintf(stderr,
ANSI_COLOR_RED "\nFATAL: Invalid Operator \'%s\' for Strings \'%s\' and \'%s\'\n" ANSI_COLOR_RESET,
o1->describe().data(), p1->describe().data(), p2->describe().data());
exit(1);
}
// Check incompatible types
if (p1Type != p2Type) {
fprintf(stderr,
ANSI_COLOR_RED "\nFATAL: Incompatible types: \nP1: %s [Type \'%s\']\nP2: %s [Type \'%s\']\n" ANSI_COLOR_RESET,
p1->describe().data(), p1Type.data(), p2->describe().data(), p2Type.data());
exit(1);
}
if (_VERBOSITY >= 3) {
fprintf(stdout,
ANSI_COLOR_GREEN "\t = PrimaryExpression1 [Type \'%s\'] matches PrimaryExpression2 [Type \'%s\']\n" ANSI_COLOR_RESET,
p1Type.data(), p2Type.data());
}
// Build Expression
return new Expression(p1, p2, o1);
}
Declaration *Parser::parseDeclaration() {
// Debug output
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "\tParsing [%s] \'%s\'\n" ANSI_COLOR_RESET, currentToken->tokenDesc().data(),
currentToken->getValue().data());
}
switch (currentToken->getType()) {
case VarToken: {
/*
* We expect 4 tokens.
* 1. VarName
* 2. IdentifierToken
* 3. DeclVarToken
* 4. IdentifierToken -> Type Denoter
*/
loadNextToken();
VarName *id = parseVarName();
nextToken(TokenType::DeclVarToken);
TypeDenoter *type = parseTypeDenoter();
// Create var_table reference
auto *vardef = new vardef_t{
.name = id,
.defined = false,
.isConst = false,
.type = type
};
// Add to var_table
openScope(vardef);
// build Variable Declaration
return new DeclarationVar(id, type);
}
case ConstToken: {
/*
* We expect 4 tokens.
* 1. ConstName
* 2. IdentifierToken
* 3. DeclConstToken
* 4. Expression
*/
loadNextToken();
VarName *id = parseVarName();
nextToken(TokenType::DeclConstToken);
Expression *expression = parseExpression();
TypeDenoter *typeDenoter = new TypeDenoter(expression->getType());
// Create var_table reference
auto *vardef = new vardef_t{
.name = id,
.defined = false,
.isConst = true,
.type = typeDenoter
};
// Add to var_table
openScope(vardef);
// build Constant Declaration
return new DeclarationConst(id, expression);
}
default: {
fprintf(stdout, ANSI_COLOR_RED "Invalid %s \'%s\' \n" ANSI_COLOR_RESET,
Token::tokenDesc(currentToken->getType()).data(), currentToken->getValue().data());
exit(1);
}
}
}
PrimaryExpression *Parser::parsePrimaryExpression() {
// Debug output
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "\tParsing [%s] \'%s\'\n" ANSI_COLOR_RESET, currentToken->tokenDesc().data(),
currentToken->getValue().data());
}
switch (currentToken->getType()) {
case IdentifierToken: {
std::string temp = currentToken->getValue();
// Prep next token
loadNextToken();
// build Variable Expression
return new PrimaryExpressionVar(temp);
}
case LParToken: {
/*
* We are expecting 3 'tokens'.
* 1. LPar
* 2. Expression
* 3. Right Token
*/
loadNextToken();
Expression *e = parseExpression();
nextToken(TokenType::RParToken);
// build Primary Expression container
return new PrimaryExpression_Expression(e);
}
default: {
fprintf(stdout, ANSI_COLOR_RED "Invalid %s \'%s\' \n" ANSI_COLOR_RESET,
Token::tokenDesc(currentToken->getType()).data(), currentToken->getValue().data());
exit(1);
}
}
}
TypeDenoter *Parser::parseTypeDenoter() {
std::string type = currentToken->getValue();
bool verified = false;
#ifdef _INT
if (type == "int") {
verified = true;
}
#endif
#ifdef _DOUBLE
if (type == "double") {
verified = true;
}
#endif
#ifdef _FLOAT
if (type == "float") {
verified = true;
}
#endif
#ifdef _LONG
if (type == "long") {
verified = true;
}
#endif
#ifdef _STRING
if (type == "String") {
verified = true;
}
#endif
#ifdef _CHAR
if (type == "char") {
verified = true;
}
#endif
if (verified) {
// Prep next token
loadNextToken();
// Debug output
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "\tParsing [Type (%s) ] \'%s\'\n" ANSI_COLOR_RESET,
Token::tokenDesc(TokenType::IdentifierToken).data(), type.data());
}
return new TypeDenoter(Scanner::toUpper(type));
}
fprintf(stderr, "\nFATAL: Unknown data type \'%s\' is not defined!", type.data());
exit(1);
}
VarName *Parser::parseVarName() {
// Store temp value
std::string temp = currentToken->getValue();
// Debug output
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "\tParsing [%s] \'%s\'\n" ANSI_COLOR_RESET,
Token::tokenDesc(TokenType::VarToken).data(), temp.data());
}
// Prep next token
loadNextToken();
return new VarName(temp);
}
Operate *Parser::parseOperator() {
// Store temp value
std::string temp = currentToken->getValue();
// Debug output
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_GREEN "\tParsing [%s] \'%s\'\n" ANSI_COLOR_RESET,
Token::tokenDesc(TokenType::OperaterToken).data(), temp.data());
}
// Prep next token
loadNextToken();
return new Operate(temp);
}
Parser::~Parser() {
delete currentToken;
if (program != nullptr) {
delete program;
}
}
void Parser::openScope(vardef_t *vardef) {
// First check if var exists, if it does, we have a problem
if (checkVarExists(vardef->name->describe())) {
fprintf(stdout, ANSI_COLOR_RED "\tVariable [%s] already declared.\n" ANSI_COLOR_RESET,
vardef->name->describe().data());
exit(1);
}
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_YELLOW "\t{{{ Variable [%s] open scope\n" ANSI_COLOR_RESET,
vardef->name->describe().data());
}
// Add to var_table
vardef->defined = true;
var_table.insert(std::pair<std::string, vardef_t>(vardef->name->describe(), *vardef));
}
void Parser::closeScope(const std::string &varName) {
// We check if variable exists, if not, we have a problem
if (!checkVarExists(varName)) {
fprintf(stdout, ANSI_COLOR_RED "\tUndefined variable [%s].\n" ANSI_COLOR_RESET,
varName.data());
exit(1);
}
if (_VERBOSITY >= 3) {
fprintf(stdout, ANSI_COLOR_YELLOW "\t}}} Variable [%s] close scope\n" ANSI_COLOR_RESET,
varName.data());
}
// Remove from var_table
var_table.find(varName)->second.defined = false;
var_table.erase(varName);
}
bool Parser::checkVarExists(const std::string &varName) {
return (var_table.count(varName) != 0);
}