-
Notifications
You must be signed in to change notification settings - Fork 2
/
MiniJavaASTBuilder.py
380 lines (338 loc) · 10.7 KB
/
MiniJavaASTBuilder.py
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
#-*- coding: utf-8 -*-
from antlr4 import *
if __name__ is not None and "." in __name__:
from .MiniJavaParser import MiniJavaParser
from .MiniJavaVisitor import MiniJavaVisitor
else:
from MiniJavaParser import MiniJavaParser
from MiniJavaVisitor import MiniJavaVisitor
def get_ctx_label(ctx):
s = ctx.__class__.__name__
s = s[:-7]
return s
hash_table = {} # record the ctx and its corresponding node (list)
# Use visitor to build AST
class AST_Builder(MiniJavaVisitor):
def __init__(self):
self.tree_list = []
def visitGoal(self, ctx: MiniJavaParser.GoalContext):
global hash_table
node = ['Goal', []]
self.tree_list = node
hash_table[ctx] = node
# it doesn't have parent
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#mainclass.
def visitMainclass(self, ctx: MiniJavaParser.MainclassContext):
global hash_table
node = ['Main Class, name: %s' % ctx.Identifier(0).getText(), []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#dec_class.
def visitDec_class(self, ctx: MiniJavaParser.Dec_classContext):
global hash_table
node = ['New Class, name: %s' % ctx.Identifier(0).getText(), []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#dec_var.
def visitDec_var(self, ctx: MiniJavaParser.Dec_varContext):
# ?
global hash_table
node = ['New Identifier, name: %s' % ctx.Identifier().getText(), []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#dec_method.
def visitDec_method(self, ctx: MiniJavaParser.Dec_methodContext):
global hash_table
node = ['New Method, name: %s' % ctx.Identifier(0).getText(), []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#mtype.
def visitMtype(self, ctx: MiniJavaParser.MtypeContext):
'''
global hash_table
node = [ 'Mtype', [] ]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
'''
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#state_lrparents.
def visitState_lrparents(self, ctx: MiniJavaParser.State_lrparentsContext):
global hash_table
node = ['{ }', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#state_if.
def visitState_if(self, ctx: MiniJavaParser.State_ifContext):
global hash_table
node = ['If', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#state_while.
def visitState_while(self, ctx: MiniJavaParser.State_whileContext):
global hash_table
node = ['While', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#state_print.
def visitState_print(self, ctx: MiniJavaParser.State_printContext):
global hash_table
node = ['Print', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#state_assign.
def visitState_assign(self, ctx: MiniJavaParser.State_assignContext):
global hash_table
node = ['Assign, identifier: %s' % ctx.Identifier().getText(), []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#state_array_assign.
def visitState_array_assign(self, ctx: MiniJavaParser.State_array_assignContext):
global hash_table
node = ['Assign, array: %s' % ctx.Identifier().getText(), []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#err_miss_RHS.
def visitErr_miss_RHS(self, ctx: MiniJavaParser.Err_miss_RHSContext):
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#err_lparent_closing.
def visitErr_lparent_closing(self, ctx: MiniJavaParser.Err_lparent_closingContext):
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_this.
def visitExpr_this(self, ctx: MiniJavaParser.Expr_thisContext):
global hash_table
node = ['This', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#err_many_lparents.
def visitErr_many_lparents(self, ctx: MiniJavaParser.Err_many_lparentsContext):
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_bool.
def visitExpr_bool(self, ctx: MiniJavaParser.Expr_boolContext):
global hash_table
node = ['Boolean', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_length.
def visitExpr_length(self, ctx: MiniJavaParser.Expr_lengthContext):
global hash_table
node = ['Length', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#err_rparent_closing.
def visitErr_rparent_closing(self, ctx: MiniJavaParser.Err_rparent_closingContext):
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_lrparents.
def visitExpr_lrparents(self, ctx: MiniJavaParser.Expr_lrparentsContext):
global hash_table
node = ['( )', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#err_many_rparents.
def visitErr_many_rparents(self, ctx: MiniJavaParser.Err_many_rparentsContext):
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_array.
def visitExpr_array(self, ctx: MiniJavaParser.Expr_arrayContext):
global hash_table
node = ['Array', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_int.
def visitExpr_int(self, ctx: MiniJavaParser.Expr_intContext):
global hash_table
node = ['Integer, value: %s' % ctx.getText(), []] # change
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
def visitExpr_op_multi(self, ctx: MiniJavaParser.Expr_op_multiContext):
global hash_table
node = ['Operation *', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
def visitExpr_op_and(self, ctx: MiniJavaParser.Expr_op_andContext):
global hash_table
node = ['Operation &&', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
def visitExpr_op_less(self, ctx: MiniJavaParser.Expr_op_lessContext):
global hash_table
node = ['Operation <', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
def visitExpr_op_minus(self, ctx: MiniJavaParser.Expr_op_minusContext):
global hash_table
node = ['Operation -', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
def visitExpr_op_plus(self, ctx: MiniJavaParser.Expr_op_plusContext):
global hash_table
node = ['Operation +', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_int_array.
def visitExpr_int_array(self, ctx: MiniJavaParser.Expr_int_arrayContext):
global hash_table
node = ['Int Array', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_new_array.
def visitExpr_new_array(self, ctx: MiniJavaParser.Expr_new_arrayContext):
global hash_table
s = ctx.getText()[3:]
node = ['New Object, name: %s' % s, []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#err_miss_LHS.
def visitErr_miss_LHS(self, ctx: MiniJavaParser.Err_miss_LHSContext):
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_method_calling.
def visitExpr_method_calling(self, ctx: MiniJavaParser.Expr_method_callingContext):
global hash_table
node = ['Calling Method: %s' % ctx.Identifier().getText(), []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_not.
def visitExpr_not(self, ctx: MiniJavaParser.Expr_notContext):
global hash_table
node = ['Not', []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)
# Visit a parse tree produced by MiniJavaParser#expr_id.
def visitExpr_id(self, ctx: MiniJavaParser.Expr_idContext):
global hash_table
node = ['Identifier: %s' % ctx.Identifier().getText(), []]
hash_table[ctx] = node
try:
parent_list = hash_table[ctx.parentCtx]
parent_list[1].append(node)
except:
pass
return self.visitChildren(ctx)