-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParser.cpp
393 lines (334 loc) · 8.65 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
#include "Parser.h"
// Local includes
#include "ASTNode.h"
#include "BinaryExpression.h"
#include "ConstructorCall.h"
#include "Expression.h"
#include "FunctionCall.h"
#include "IdentifierExpression.h"
#include "Lexer.h"
#include "LiteralExpression.h"
#include "PainterContext.h"
#include "RootNode.h"
#include "UnaryExpression.h"
#include "VariableAssignment.h"
#include "VariableCreation.h"
BinaryExpression::BinaryExpressionType tokenToBinaryExpressionType(Lexer::Token token)
{
switch(token)
{
case Lexer::PlusSign:
return BinaryExpression::Addition;
case Lexer::MinusSign:
return BinaryExpression::Subtraction;
case Lexer::MulSign:
return BinaryExpression::Multiplication;
case Lexer::DivSign:
return BinaryExpression::Division;
case Lexer::ModuloSign:
return BinaryExpression::Modulo;
default:
return BinaryExpression::None;
}
}
Parser::Parser()
: lexer(0), m_context(0), m_currentLine(0), m_currentColumn(0)
{
}
Parser::~Parser()
{
delete lexer;
}
bool Parser::hasError() const
{
return !m_errorMessage.isEmpty();
}
QString Parser::errorMessage() const
{
return QString("Error at %1:%2: %3").arg(m_currentLine).arg(m_currentColumn).arg(m_errorMessage);
}
void Parser::setContext(PainterContext *context)
{
m_context = context;
}
void Parser::getNextToken()
{
if(lexer)
{
m_currentLine = lexer->currentLine();
m_currentColumn = lexer->currentColumn();
m_token = lexer->getNextToken();
}
}
ASTNode* Parser::parse(const QString& sourceText)
{
if(lexer)
{
delete lexer;
lexer = 0;
}
lexer = new Lexer(sourceText);
// root ::= statement* EOF
qDebug("root");
RootNode* root = new RootNode;
while(m_token != Lexer::EndOfFile)
{
ASTNode* child = parseStatement();
if (!child)
{
return 0;
}
root->addChild(child);
// Check for end of file token
if(lexer->lookAhead() == Lexer::EndOfFile)
{
getNextToken();
}
}
return root;
}
ASTNode* Parser::parseStatement()
{
// statement ::= functionCall | variableAssignment | variableCreation
qDebug("statement");
Lexer::Token lookAhead = lexer->lookAhead();
switch(lookAhead)
{
case Lexer::Identifier:
{
QString qualifiedIdentifier = parseQualifiedIdentifier();
Lexer::Token identLookAhead = lexer->lookAhead();
if(identLookAhead == Lexer::LeftParenthesis)
{
return parseFunctionCall(qualifiedIdentifier);
}
else if(identLookAhead == Lexer::EqualSign)
{
return parseVariableAssignment(qualifiedIdentifier);
}
}
case Lexer::Keyword_var:
return parseVariableCreation();
default:
m_errorMessage = "You can only use statements here.";
return 0;
}
}
Expression* Parser::parseFunctionCall(const QString &qualifiedIdentifier)
{
// functionCall ::= qualifiedIdentifier '(' expression? (',' expression)* ')'
qDebug("functionCall");
QString functionName = qualifiedIdentifier;
QString lastIdentifier = qualifiedIdentifier.mid(qualifiedIdentifier.lastIndexOf('.'));
FunctionCall* functionCall = 0;
// A function call can be a constructor call
if(m_context->hasClassPrototype(lastIdentifier))
{
functionCall = new ConstructorCall(functionName, m_context);
}
else
{
functionCall = new FunctionCall(functionName, m_context);
}
//Ignore (
getNextToken();
if(lexer->lookAhead() == Lexer::RightParenthesis)
{
getNextToken();
}
else
{
// Parse expression untill we find the right parenthesis
while(m_token != Lexer::RightParenthesis)
{
Expression *parameter = parseExpression();
if(!parameter)
{
delete functionCall;
return 0;
}
functionCall->addParameter(parameter);
getNextToken();
}
}
return functionCall;
}
ASTNode* Parser::parseVariableCreation()
{
qDebug("variableCreation");
// variableCreation ::= 'var' IDENTIFIER '=' expression
// Eat 'var' token
getNextToken();
// Parse variable name
getNextToken();
QString variableName = lexer->lastReadValue().toString();
// Eat '='
getNextToken();
// Parse expression
Expression* expression = parseExpression();
if(!expression)
{
m_errorMessage = "You can only assign an expression to a variable";
return 0;
}
return new VariableCreation(variableName, expression, m_context);
}
ASTNode* Parser::parseVariableAssignment(const QString &qualifiedIdentifier)
{
qDebug("variableAssignment");
// variableAssignment ::= qualifiedIdentifier '=' expression
// Eat '='
getNextToken();
// Parse expression
Expression* expression = parseExpression();
if(!expression)
{
m_errorMessage = "You can only assign an expression to a variable";
return 0;
}
return new VariableAssignment(qualifiedIdentifier, expression, m_context);
}
QString Parser::parseQualifiedIdentifier(bool firstIdentifierIsParsed)
{
// qualifiedIdentifier ::= IDENTIFIER ('.' IDENTIFIER)*
if(!firstIdentifierIsParsed)
{
getNextToken();
}
QString qualifiedIdentifier;
while(lexer->lookAhead() == Lexer::ScopeOperator)
{
QString scopeName = lexer->lastReadValue().toString();
qualifiedIdentifier += scopeName;
qualifiedIdentifier += '.';
// Eat scope operator
getNextToken();
// Read next identifier
getNextToken();
}
qualifiedIdentifier += lexer->lastReadValue().toString();
return qualifiedIdentifier;
}
Expression* Parser::parseTerm()
{
// term ::= INTEGER_LITERAL
// | FLOAT_LITERAL
// | STRING_LITERAL
// | BOOL_LITERAL
// | qualifiedIdentifier
// | '(' expression ')'
// | functionCall
qDebug("term");
getNextToken();
switch(m_token)
{
case Lexer::IntegerLiteral:
return new LiteralExpression(lexer->lastReadValue().toInt());
case Lexer::StringLiteral:
return new LiteralExpression(lexer->lastReadValue().toString());
case Lexer::FloatLiteral:
return new LiteralExpression(lexer->lastReadValue().toDouble());
case Lexer::BoolLiteral:
return new LiteralExpression(lexer->lastReadValue().toBool());
case Lexer::Identifier:
{
QString qualifiedIdentifier = parseQualifiedIdentifier(true);
if(lexer->lookAhead() == Lexer::LeftParenthesis)
{
return parseFunctionCall(qualifiedIdentifier);
}
else
{
return new IdentifierExpression(qualifiedIdentifier, m_context);
}
}
case Lexer::LeftParenthesis:
{
Expression *parenthesisExpression = parseExpression();
// Eat )
getNextToken();
return parenthesisExpression;
}
default:
m_errorMessage = "Invalid term found !";
qDebug("Token %d not expected here", (int)m_token);
break;
}
return 0;
}
Expression* Parser::parseUnaryExpression()
{
// unaryExpression ::= '-'? term
qDebug("unaryExpression");
Lexer::Token lookAhead = lexer->lookAhead();
if(lookAhead == Lexer::MinusSign)
{
// Eat '-'
getNextToken();
return new UnaryExpression(UnaryExpression::Negative, parseTerm());
}
else
{
return parseTerm();
}
}
Expression* Parser::parseMultiplicativeExpression()
{
// multiplicativeExpression ::= unaryExpression (('*'|'/'|) unaryExpression)*
qDebug("multiplicativeExpression");
Expression* left = parseUnaryExpression();
Lexer::Token lookAhead = lexer->lookAhead();
if(lookAhead == Lexer::MulSign || lookAhead == Lexer::DivSign || lookAhead == Lexer::ModuloSign)
{
getNextToken();
Expression* right = parseUnaryExpression();
Lexer::Token secondLookAhead = lexer->lookAhead();
if(secondLookAhead == Lexer::MulSign || secondLookAhead == Lexer::DivSign || secondLookAhead == Lexer::ModuloSign)
{
getNextToken();
BinaryExpression *binOpRight = new BinaryExpression(tokenToBinaryExpressionType(secondLookAhead), right, parseMultiplicativeExpression());
return new BinaryExpression(tokenToBinaryExpressionType(lookAhead), left, binOpRight);
}
else
{
return new BinaryExpression(tokenToBinaryExpressionType(lookAhead), left, right);
}
}
else
{
return left;
}
}
Expression* Parser::parseAdditiveExpression()
{
// additiveExpression ::= multiplicativeExpression (('+' | '-') multiplicativeExpression)*
qDebug("additiveExpression");
Expression* left = parseMultiplicativeExpression();
Lexer::Token lookAhead = lexer->lookAhead();
if(lookAhead == Lexer::PlusSign|| lookAhead == Lexer::MinusSign)
{
getNextToken();
Expression* right = parseMultiplicativeExpression();
Lexer::Token secondLookAhead = lexer->lookAhead();
if(secondLookAhead == Lexer::PlusSign || secondLookAhead == Lexer::MinusSign)
{
getNextToken();
BinaryExpression *binOpRight = new BinaryExpression(tokenToBinaryExpressionType(secondLookAhead), right, parseAdditiveExpression());
return new BinaryExpression(tokenToBinaryExpressionType(lookAhead), left, binOpRight);
}
else
{
return new BinaryExpression(tokenToBinaryExpressionType(lookAhead), left, right);
}
}
else
{
return left;
}
}
Expression* Parser::parseExpression()
{
// expression :: additiveExpression
qDebug("expression");
return parseAdditiveExpression();
}