-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParser.java
More file actions
445 lines (405 loc) · 12.1 KB
/
Parser.java
File metadata and controls
445 lines (405 loc) · 12.1 KB
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
// Parser.java
// Parser for language S
public class Parser {
Token token; // current token
Lexer lexer;
String funId = "";
public Parser(Lexer scan) {
lexer = scan;
token = lexer.getToken(); // get the first token
}
private String match(Token t) {
String value = token.value();
if (token == t)
token = lexer.getToken();
else
error(t);
return value;
}
private void error(Token tok) {
System.err.println("Syntax error: " + tok + " --> " + token);
token=lexer.getToken();
}
private void error(String tok) {
System.err.println("Syntax error: " + tok + " --> " + token);
token=lexer.getToken();
}
public Command command() {
// <command> -> <decl> | <function> | <stmt>
if (isType()) {
Decl d = decl();
return d;
}
if (token == Token.FUN) {
Function f = function();
return f;
}
if (token != Token.EOF) {
Stmt s = stmt();
return s;
}
return null;
}
private Decl decl() {
// <decl> -> <type> id [=<expr>]; | <type> id[<n>];
Type t = type();
String id = match(Token.ID);
int n=0;
Decl d = null;
if(token==Token.LBRACKET) {
match(Token.LBRACKET);
n = (int) literal().value;
match(Token.RBRACKET);
}
if (n!=0)
d = new Decl(id, t, n);
else if (token == Token.ASSIGN) {
match(Token.ASSIGN);
Expr e = expr();
d = new Decl(id, t, e);
} else
d = new Decl(id, t);
match(Token.SEMICOLON);
return d;
}
private Decls decls () {
// <decls> -> {<decl>}
Decls ds = new Decls ();
while (isType()) {
Decl d = decl();
ds.add(d);
}
return ds;
}
private Function function() {
// <function> -> fun <type> id(<params>) <stmt>
match(Token.FUN);
Type t = type();
String str = match(Token.ID);
funId = str;
Function f = new Function(str, t);
match(Token.LPAREN);
if (token != Token.RPAREN)
f.params = params();
match(Token.RPAREN);
Stmt s = stmt();
f.stmt = s;
return f;
}
private Decls params() {
Decls params = new Decls();
Type t = type();
String id = match(Token.ID);
params.add(new Decl(id, t));
while (token == Token.COMMA) {
match(Token.COMMA);
t = type();
id = match(Token.ID);
params.add(new Decl(id, t));
}
return params;
}
private Type type () {
// <type> -> int | bool | void | string
Type t = null;
switch (token) {
case INT:
t = Type.INT; break;
case BOOL:
t = Type.BOOL; break;
case VOID:
t = Type.VOID; break;
case STRING:
t = Type.STRING; break;
default:
error("int | bool | void | string");
}
match(token);
return t;
}
private Stmt stmt() {
// <stmt> -> <block> | <assignment> | <ifStmt> | <whileStmt> | ...
Stmt s = new Empty();
switch (token) {
case SEMICOLON:
match(token.SEMICOLON); return s;
case LBRACE:
match(Token.LBRACE);
s = stmts();
match(Token.RBRACE);
return s;
case IF: // if statement
s = ifStmt(); return s;
case WHILE: // while statement
s = whileStmt(); return s;
case ID: // assignment
Identifier id = new Identifier(match(Token.ID));
if(token == Token.LPAREN) s = call(id);
else s = assignment(id);
return s;
case LET: // let statement
s = letStmt(); return s;
case READ: // read statement
s = readStmt(); return s;
case PRINT: // print statement
s = printStmt(); return s;
case RETURN: // return statement
s = returnStmt(); return s;
default:
error("Illegal stmt"); return null;
}
}
private Stmts stmts () {
// <block> -> {<stmt>}
Stmts ss = new Stmts();
while((token != Token.RBRACE) && (token != Token.END))
ss.stmts.add(stmt());
return ss;
}
private Let letStmt () {
// <letStmt> -> let <decls> in <block> end
match(Token.LET);
Decls ds = decls();
match(Token.IN);
Stmts ss = stmts();
match(Token.END);
match(Token.SEMICOLON);
return new Let(ds, null, ss);
}
private Read readStmt() {
// <readStmt> -> read id;
// parse read statement
match(Token.READ);
Identifier id = new Identifier(match(Token.ID));
match(Token.SEMICOLON);
return new Read(id);
}
private Print printStmt() {
// <printStmt> -> print <expr>;
// parse print statement
match(Token.PRINT);
Expr e = expr();
match(Token.SEMICOLON);
return new Print(e);
}
private Return returnStmt() {
// <returnStmt> -> return <expr>;
match(Token.RETURN);
Expr e = expr();
match(Token.SEMICOLON);
return new Return(funId, e);
}
private Stmt assignment(Identifier id) {
// <assignment> -> id = <expr>; | id[<expr>] = <expr>;
Expr n = null;
Array a = null;
if(token==Token.LBRACKET) {
match(Token.LBRACKET);
n = expr();
match(Token.RBRACKET);
a = new Array(id, n);
}
match(Token.ASSIGN);
Expr e = expr();
match(Token.SEMICOLON);
if(a != null)
return new Assignment(a,e);
else
return new Assignment(id, e);
}
private Call call(Identifier id) {
// <call> -> id(<expr>{,<expr>});
//
// parse function call
match(Token.LPAREN);
Call c = new Call(id, arguments());
match(Token.RPAREN);
match(Token.SEMICOLON);
return c;
}
private If ifStmt () {
// <ifStmt> -> if (<expr>) then <stmt> [else <stmt>]
match(Token.IF);
match(Token.LPAREN);
Expr e = expr();
match(Token.RPAREN);
match(Token.THEN);
Stmt s1 = stmt();
Stmt s2 = new Empty();
if (token == Token.ELSE){
match(Token.ELSE);
s2 = stmt();
}
return new If(e, s1, s2);
}
private While whileStmt () {
// <whileStmt> -> while (<expr>) <stmt>
// parse while statement
match(Token.WHILE);
match(Token.LPAREN);
Expr e = expr();
match(Token.RPAREN);
Stmt s = stmt();
return new While(e,s);
}
private Expr expr () {
// <expr> -> <bexp> {& <bexp> | '|'<bexp>} | !<expr> | true | false
switch (token) {
case NOT:
Operator op = new Operator(match(token));
Expr e = expr();
return new Unary(op, e);
case TRUE:
match(Token.TRUE);
return new Value(true);
case FALSE:
match(Token.FALSE);
return new Value(false);
}
Expr e = bexp();
//
// parse logical operations
while (token == Token.AND || token == Token.OR) {
Operator op = new Operator(match(token));
Expr b = bexp();
e = new Binary(op, e, b);
}
return e;
}
private Expr bexp() {
// <bexp> -> <aexp> [ (< | <= | > | >= | == | !=) <aexp> ]
Expr e = aexp();
//
// parse relational operations
if(token == Token.EQUAL || token == Token.LTEQ || token == Token.LT || token == Token.GTEQ || token == Token.GT|| token == Token.NOTEQ) {
Operator op = new Operator(match(token));
Expr a = aexp();
e = new Binary(op,e,a);
}
return e;
}
private Expr aexp () {
// <aexp> -> <term> { + <term> | - <term> }
Expr e = term();
while (token == Token.PLUS || token == Token.MINUS) {
Operator op = new Operator(match(token));
Expr t = term();
e = new Binary(op, e, t);
}
return e;
}
private Expr term () {
// <term> -> <factor> { * <factor> | / <factor>}
Expr t = factor();
while (token == Token.MULTIPLY || token == Token.DIVIDE) {
Operator op = new Operator(match(token));
Expr f = factor();
t = new Binary(op, t, f);
}
return t;
}
private Expr factor() {
// <factor> -> [-](id | <call> | id[<expr>] | literal | '('<aexp> ')')
Operator op = null;
if (token == Token.MINUS)
op = new Operator(match(Token.MINUS));
Expr e = null;
switch(token) {
case ID:
Identifier v = new Identifier(match(Token.ID));
if (token == Token.LPAREN) { // function call
match(Token.LPAREN);
Call c = new Call(v,arguments());
match(Token.RPAREN);
e = c;
}
else if(token == Token.LBRACKET) {
match(Token.LBRACKET);
Expr n = expr();
match(Token.RBRACKET);
Array a = new Array(v, n);
e = a;
}
else e = v;
break;
case NUMBER: case STRLITERAL:
e = literal();
break;
case LPAREN:
match(Token.LPAREN);
e = aexp();
match(Token.RPAREN);
break;
default:
error("Identifier | Literal");
}
if (op != null)
return new Unary(op, e);
else return e;
}
private Exprs arguments() {
// arguments -> [ <expr> {, <expr> } ]
Exprs es = new Exprs();
while (token != Token.RPAREN) {
es.add(expr());
if (token == Token.COMMA)
match(Token.COMMA);
else if (token != Token.RPAREN)
error("Exprs");
}
return es;
}
private Value literal( ) {
String s = null;
switch (token) {
case NUMBER:
s = match(Token.NUMBER);
return new Value(Integer.parseInt(s));
case STRLITERAL:
s = match(Token.STRLITERAL);
return new Value(s);
}
throw new IllegalArgumentException( "no literal");
}
private boolean isType( ) {
switch(token) {
case INT: case BOOL: case STRING:
return true;
default:
return false;
}
}
public static void main(String args[]) {
Parser parser;
if (args.length == 0) {
System.out.println("Begin parsing... ");
System.out.print(">> ");
Lexer.interactive = true;
parser = new Parser(new Lexer());
do {
if (parser.token == Token.EOF) {
parser.token = parser.lexer.getToken();
}
Command command = null;
try {
command = parser.command();
} catch (Exception e) {
System.err.println(e);
}
System.out.print("\n>> ");
} while(true);
}
else {
System.out.println("Begin parsing... " + args[0]);
parser = new Parser(new Lexer(args[0]));
Command command = null;
do {
try {
command = parser.command();
} catch (Exception e) {
System.err.println(e);
}
} while (command != null);
}
} //main
} // Parser