-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.c
430 lines (424 loc) · 11.2 KB
/
parser.c
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
#include "stdlib.h"
#include "stdbool.h"
#include "string.h"
#include "error.h"
#include "types.h"
#include "tokens.h"
#include "expression.h"
#include "statement.h"
//static TokenType t;
//static char value[64];
static Statement *statement();
static Statement *block();
static Statement *statementPreferred();
static Statement *assignmentStatement();
static Statement *conditionalStatement();
static Statement *whileStatement();
static Statement *forStatement();
static Statement *funcDefine();
static Statement *defaultStatement();
static Expression* expression();
static Expression* conditional();
static Expression* addition();
static Expression* multiply();
static Expression* unary();
static Expression* operand();
static Expression* function(char*);
static Expression* element();
static Expression* word();
static char *variableGet();
static int matchVariable();
int parse() {
Statement *s;
while (getToken().type != ttEOF) {
//tokenSkip(ttEOL);
s = statement();
if (s != NULL)
s->execute(s);
//free(s); // чисттимо
if (!tokenMatch(ttEOL) && getToken().type != ttEOF) {
writeError(erEXPECTATION, "<EOL>");
}
tokenSkip(ttEOL); // skip EOLs
}
return 0;
}
//statements
static Statement *block() {
Statement *bloc_st = BlockStatement();
StatementBlock *st = bloc_st->statement;
tokenSkip(ttEOL); // func() \n {}
if (!tokenMatch(ttOPENBLOCK))
writeError(erEXPECTATION, "{");
while (!tokenMatch(ttCLOSEBLOCK)) {
statements_push(st->list, statement());
if (getToken().type == ttEOF)
writeError(erEXPECTATION, "}");
if (!tokenMatch(ttEOL) && getToken().type != ttCLOSEBLOCK) {
writeError(erEXPECTATION, "<EOL>");
}
}
return bloc_st;
}
static Statement *statementPreferred() {
if (getToken().type == ttOPENBLOCK)
return block();
else
return statement();
}
static Statement *statement() {
tokenSkip(ttEOL);
// getTokenAt(0).type == ttVARIABLE
int pos = matchVariable();
if (pos > 0 && getTokenWithout(pos, ttEOL).type == ttOPENBLOCK) { // TODO chek is variable
char *var = variableGet();
//tokenMatch(ttVARIABLE);
tokenSkip(ttEOL);
tokenMatch(ttOPENBLOCK);
return TableStatement(var);
}
if (tokenMatch(ttCLOSEBLOCK)) { // close of table block
return CloseTableStatement();
}
if (tokenMatch(ttIF)) {
return conditionalStatement();
}
if (tokenMatch(ttWHILE)) {
return whileStatement();
}
if (tokenMatch(ttFOR)) {
return forStatement();
}
if (tokenMatch(ttFNDEF)) {
return funcDefine();
}
if (tokenMatch(ttPRINT)) {
return PrintStatement(expression());
}
if (tokenMatch(ttERROR)) {
return ErrorStatement(expression());
}
if (tokenMatch(ttDELETE)) {
char *var = variableGet();
return DeleteStatement(var); // TODO create fucntion Record* getVar()
}
if (tokenMatch(ttBREAK)) {
return BreakStatement();
}
if (tokenMatch(ttCONTINUE)) {
return ContinueStatement();
}
if (tokenMatch(ttRETURN)) {
if (getToken().type != ttEOL && getToken().type != ttCLOSEBLOCK)
return ReturnStatement(expression());
else
return ReturnStatement(NULL);
}
return assignmentStatement();
}
static Statement *assignmentStatement() {
int pos = matchVariable();
if (pos > 0) {
if (getTokenAt(pos).type == ttASSIGN) { //start parsing of assign statement
char *var = variableGet();
tokenMatch(ttASSIGN);
return AssignStatement(var, expression());
}
else if (getTokenAt(pos).type == ttSQOPEN) {
char *var = variableGet();
expression_node_t *indices = NULL;
do {
tokenMatch(ttSQOPEN);
expression_push(&indices, expression()); // collect indices
if (!tokenMatch(ttSQCLOSE))
writeError(erEXPECTATION, "]");
} while(getToken().type == ttSQOPEN);
if (!tokenMatch(ttASSIGN))
writeError(erEXPECTATION, "=");
return ArrayAssignStatement(var, indices, expression());
}
}
return defaultStatement();
}
static Statement *defaultStatement() {
Expression *expr = expression();
if (tokenMatch(ttISTRUE)) {
return IfTrueStatement(expr, statementPreferred());
}
if (tokenMatch(ttNOT)) {
return IfFalseStatement(expr, statementPreferred());
}
return DefaultStatement(expr);
/*
else {
if (getToken().type == ttEOF) // якщо кінцеь файлу нічого не вертаєм
return NULL;
writeError(erEXPECTATION, "<STATEMENT>");
}*/
}
static Statement *conditionalStatement() {
Expression *expr = expression();
tokenSkip(ttEOL);
Statement *ifStatement = statementPreferred();
Statement *elseStatement;
if (getTokenAt(1).type == ttELSE) tokenSkip(ttEOL);
if (tokenMatch(ttELSE)) {
elseStatement = statementPreferred();
}
else {
elseStatement = NULL;
}
return ConditionStatement(expr, ifStatement, elseStatement);
}
static Statement *whileStatement() {
Expression *expr = expression();
tokenSkip(ttEOL);
Statement *whStatement = statementPreferred();
return WhileStatement(expr, whStatement);
}
static Statement *forStatement() {
Token index = getToken();
if (!tokenMatch(ttVARIABLE)) // match variable
writeError(erEXPECTATION, "<Variable>");
if (!tokenMatch(ttIN))
writeError(erEXPECTATION, "in");
Expression *expr = expression();
tokenSkip(ttEOL);
Statement *frStatement = statementPreferred();
return ForStatement(index.value, expr, frStatement);
}
static Statement *funcDefine() {
char *var = variableGet();
tokenMatch(ttVARIABLE);
tokenMatch(ttPOPEN);
char args[256] = "";
while (!tokenMatch(ttPCLOSE)) {
Token var = getToken();
if (tokenMatch(ttVARIABLE)) {
strcat(args, var.value);
}
else {
writeError(erEXPECTATION, "<Variable>");
}
if (tokenMatch(ttCOMMA)) { // (6,) and match token comma
strcat(args, ";");
if (getToken().type == ttPCLOSE) // то не змінна то вираз
writeError(erEXPECTATION, "<EXPRESSION> (argument)");
}
}
if (getTokenWithout(0, ttEOL).type == ttOPENBLOCK) {
Statement *st = block();
return FuncDefStatement(var, args, st);
}
else {
return FuncDefStatement(var, args, NULL); // if func haven't body
}
}
// function
static Expression *function(char *name) { // fucntion expression
expression_node_t *args = NULL;
int counter = 0;
tokenMatch(ttPOPEN);
while (!tokenMatch(ttPCLOSE)) {
expression_push(&args, expression());
if (tokenMatch(ttCOMMA)) { // (6,) and match token comma
if (getToken().type == ttPCLOSE) // то не змінна то вираз
writeError(erEXPECTATION, "<EXPRESSION> (argument)");
}
counter++;
}
if (counter > 0)
return functionExpression(name, args);
else {
free(args);
return functionExpression(name, NULL);
}
}
// element
static Expression *element(char *name) {
expression_node_t *indices = NULL;
do {
tokenMatch(ttSQOPEN);
expression_push(&indices, expression()); // collect indices
if (!tokenMatch(ttSQCLOSE))
writeError(erEXPECTATION, "]");
} while(getToken().type == ttSQOPEN);
return elementExpression(name, indices);
}
// expressions
static Expression* expression() {
return conditional();
}
// conditional (logic)
static Expression* conditional() {
Expression *result = addition();
for (;;) {
// tokenMatch2 to front cuz have 2 tokens
if (tokenMatch2(ttASSIGN, ttASSIGN)) {
result = conditionalExpression(opEQ, result, addition());
continue;
}
if (tokenMatch2(ttNOT, ttASSIGN)) {
result = conditionalExpression(opNEQ, result, addition());
continue;
}
if (tokenMatch2(ttGT, ttASSIGN)) {
result = conditionalExpression(opGREQ, result, addition());
continue;
}
if (tokenMatch2(ttLT, ttASSIGN)) {
result = conditionalExpression(opLSEQ, result, addition());
continue;
}
if (tokenMatch(ttGT)) {
result = conditionalExpression(opGRTH, result, addition());
continue;
}
if (tokenMatch(ttLT)) {
result = conditionalExpression(opLSTH, result, addition());
continue;
}
break;
}
return result;
}
// binary operations addition, subtaction, multilication, divide
static Expression* addition() {
Expression *result = multiply();
for (;;) {
if (tokenMatch(ttPLUS)) {
result = binaryExpression(opADD, result, multiply());
continue;
}
if (tokenMatch(ttMINUS)) {
result = binaryExpression(opSUB, result, multiply());
continue;
}
break;
}
return result;
}
static Expression* multiply() {
Expression *result = unary();
for (;;) {
if (tokenMatch(ttMULTIPLY)) {
result = binaryExpression(opMUL, result, unary());
continue;
}
if (tokenMatch(ttDIVIDE)) {
result = binaryExpression(opDIV, result, unary());
continue;
}
break;
}
return result;
}
// unary operations
static Expression* unary() {
if (tokenMatch(ttMINUS)) {
return unaryExpression(opNEGNUM, operand());
}
return operand();
}
static Expression* operand() { // numbers and strings // високий приорітет
Token current = getToken();
if (tokenMatch(ttNUMBER)) { // integer
return integerExpression((int)strtol(current.value, NULL, 10));
}
if (tokenMatch(ttHEXNUM)) { // integer
return integerExpression((int)strtol(current.value, NULL, 16));
}
if (tokenMatch(ttFLOATNUM)) { // number
return floatExpression(atof(current.value));
}
if (tokenMatch(ttSTRING)) { // string
return stringExpression(current.value);
}
if (tokenMatch(ttTRUE)) { // boolean
return boolExpression(true);
}
if (tokenMatch(ttFALSE)) { // boolean
return boolExpression(false);
}
if (tokenMatch(ttNIL)) { // nil
return nilExpression();
}
if (matchVariable() > 0) { // variable // getTokenAt(0).type == ttVARIABLE
return word();
}
if (tokenMatch(ttSQOPEN)) { // array definition
tokenSkip(ttEOL);
expression_node_t *elements = NULL;
while (!tokenMatch(ttSQCLOSE)) {
if (getToken().type == ttCOMMA)
writeError(erEXPECTATION, "[element]");
expression_push(&elements, expression());
if (tokenMatch(ttCOMMA)) {
if (getTokenWithout(0, ttEOL).type == ttSQCLOSE)
writeError(erEXPECTATION, "[element]");
}
else {
if (getTokenWithout(0, ttEOL).type != ttSQCLOSE)
writeError(erEXPECTATION, ",");
}
tokenSkip(ttEOL);
}
return listExpression(elements);
}
if (tokenMatch(ttPOPEN)) {
Expression *result = expression();
if (!tokenMatch(ttPCLOSE))
writeError(erEXPECTATION ,")");
return result;
}
writeError(erEXPECTATION, "<EXPRESSION>");
return NULL;
}
static Expression* word() {
char *var = variableGet();
// parse suffix
if (getToken().type == ttPOPEN) { // if function tokenMatch(ttPOPEN)
return function(var);
}
else if (getToken().type == ttSQOPEN) { // if list tokenMatch(ttSQOPEN)
return element(var);
}
else { // if variable
return variableExpression(var);
}
return NULL;
}
static char *variableGet() {
/**
* @return variable string ex."table.var"
*/
Token current = getToken();
if (!tokenMatch(ttVARIABLE)) // match variable
writeError(erEXPECTATION, "<Variable>");
char *var = malloc(sizeof(char) * 256);
strcat(var, current.value);
while (tokenMatch(ttDOT)) { // if dot token, then record is table
strcat(var, ".");
current = getToken();
if (!tokenMatch(ttVARIABLE)) // match variable
writeError(erEXPECTATION, "<Table.Variable>");
strcat(var, current.value);
}
return var;
}
static int matchVariable() {
/**
* @return token 0 - if doesn't match, length of variable tokens
*/
int i = 0;
if (getTokenAt(i).type == ttVARIABLE) { // table.subtable
i++;
while (getTokenAt(i).type == ttDOT && getTokenAt(i + 1).type == ttVARIABLE) {
i += 2;
}
if (getTokenAt(i).type == ttDOT) // table.
writeError(erEXPECTATION, "<Table.Variable>");
return i;
}
return i;
}