-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathparser.py
361 lines (340 loc) · 14.8 KB
/
parser.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
from ast import *
from .utils import LEX, ErrorHandler, ERROR, CONGRESS_RULE
class Parser:
def __init__(self, lex):
self.lex = lex
self.length = len(lex)
self._variables = set()
def parse(self):
"""
Convert to ast
"""
module = self._analyze_module()
fix_missing_locations(module)
return module
def _debug_details(self, num):
if isinstance(num, dict):
return {'lineno': num['line'], 'col_offset': num['offset']}
return {'lineno': self.lex[num]['line'], 'col_offset': self.lex[num]['offset']}
def _load_var(self, num):
return Name(id=self.lex[num]['value'], ctx=Load(), **self._debug_details(num))
def _store_var(self, num):
return Name(id=self.lex[num]['value'], ctx=Store(), **self._debug_details(num))
def _is_not(self, lex):
if isinstance(lex, int):
lex = self.lex[lex]
return lex['lex'] == LEX['var'] and lex['value'] == 'nahi'
def _analyze(self, num):
"""
Begin a new line.
"""
lexeme = self.lex[num]
if lexeme['lex'] == LEX['if']:
return self._analyze_if(num)
if lexeme['lex'] == LEX['until']:
return self._analyze_until(num)
if lexeme['lex'] == LEX['print']:
return self._analyze_print(num)
if lexeme['lex'] == LEX['input']:
return self._analyze_input(num)
if lexeme['lex'] == LEX['var']:
return self._analyze_assign(num)
return num + 1, None
def _analyze_module(self):
code = []
num = 0
while num < self.length:
num, node = self._analyze(num)
if node is not None:
code.append(node)
return Module(body=code, **self._debug_details(0))
def _analyze_assign(self, num):
if num + 1 < self.length:
new_num, node = self._analyze_expr(num + 1)
if node is not None:
self._variables.add(self.lex[num]['value'])
return new_num, Assign(targets=[self._store_var(num)],
value=node, **self._debug_details(num))
return num + 1, None
def _analyze_input(self, num):
input_func = Call(func=Name(id='input', ctx=Load(), **self._debug_details(num)),
args=[], keywords=[], **self._debug_details(num))
num += 1
if num < self.length:
lexeme = self.lex[num]
if lexeme['lex'] == LEX['str']:
if lexeme['value'].count(' '):
return num, None
elif lexeme['lex'] != LEX['var']:
return num, None
else:
input_func = Call(func=Name(id='int', ctx=Load(), **self._debug_details(num)),
args=[input_func], keywords=[], **self._debug_details(num))
self._variables.add(lexeme['value'])
return num + 1, Assign(targets=[self._store_var(num)],
value=input_func, **self._debug_details(num))
return num, None
def _analyze_if(self, num):
if num + 1 >= self.length:
return num + 1, None
new_num, cond = self._analyze_expr(num + 1)
if cond is not None and new_num < self.length:
if self.lex[new_num]['lex'] == LEX['then']:
new_num += 1
if new_num < self.length:
if self.lex[new_num]['lex'] == LEX['{']:
new_num, body = self._analyze_block(new_num)
else:
new_num, body = self._analyze(new_num)
if body is not None:
body = [body]
if body is not None:
orelse = None
if self.lex[new_num]['lex'] == LEX['else']:
new_num += 1
if new_num < self.length:
if self.lex[new_num]['lex'] == LEX['{']:
new_num, orelse = self._analyze_block(new_num)
else:
new_num, orelse = self._analyze(new_num)
if orelse is not None:
orelse = [orelse]
if orelse is None:
orelse = []
return new_num, If(test=cond, body=body, orelse=orelse, **self._debug_details(num))
raise ErrorHandler(ERROR, "If failed")
def _analyze_print(self, num):
if num + 1 >= self.length:
return num + 1, None
new_num, node = self._analyze_expr(num + 1)
if node is not None:
return new_num, Expr(value=Call(func=Name(id='print', ctx=Load()),
args=[node], keywords=[]), **self._debug_details(num))
return num + 1, None
def _analyze_until(self, num):
if num + 1 >= self.length:
return num + 1, None
new_num, cond = self._analyze_expr(num + 1)
if cond is not None and new_num < self.length:
if self.lex[new_num]['lex'] == LEX['then']:
new_num += 1
if new_num < self.length:
if self.lex[new_num]['lex'] == LEX['{']:
new_num, body = self._analyze_block(new_num)
else:
new_num, body = self._analyze(new_num)
if body is not None:
body = [body]
if body is not None:
return new_num, While(test=UnaryOp(op=Not(), operand=cond, **self._debug_details(num + 1)),
body=body, orelse=[], **self._debug_details(num))
raise ErrorHandler(ERROR, "Misplaced jab tak")
def _analyze_block(self, num):
num += 1
code = []
while num < self.length:
if self.lex[num]['lex'] == LEX['}']:
return num + 1, code
num, node = self._analyze(num)
if node is not None:
code.append(node)
raise ErrorHandler(ERROR, "Missing '}'")
def _analyze_e(self, num):
lexeme = self.lex[num]
if lexeme['lex'] == LEX['(']:
if num + 1 >= self.length:
return num + 1, None
new_num, code = self._analyze_expr(num + 1)
if self.lex[new_num]['lex'] != LEX[')']:
raise ErrorHandler(ERROR, "Missing ')'")
new_num += 1
if new_num < self.length and self._is_not(new_num):
new_num += 1
if new_num < self.length and self.lex[new_num]['lex'] == LEX['hai']:
new_num += 1
return new_num, code
if lexeme['lex'] == LEX['true']:
k = 2 if (num + 1 < self.length and self.lex[num + 1]['lex'] == LEX['hai']) else 1
return num + k, NameConstant(value=True, **self._debug_details(num))
if lexeme['lex'] == LEX['false']:
k = 2 if (num + 1 < self.length and self.lex[num + 1]['lex'] == LEX['hai']) else 1
return num + k, NameConstant(value=False, **self._debug_details(num))
if lexeme['lex'] == LEX['num']:
k = 2 if (num + 1 < self.length and self.lex[num + 1]['lex'] == LEX['hai']) else 1
return num + k, Num(n=int(lexeme['value']), **self._debug_details(num))
if lexeme['lex'] == LEX['str']:
k = 2 if (num + 1 < self.length and self.lex[num + 1]['lex'] == LEX['hai']) else 1
return num + k, Str(s=lexeme['value'], **self._debug_details(num))
if lexeme['lex'] == LEX['var']:
if lexeme['value'] in self._variables:
k = 2 if (num + 1 < self.length and self.lex[num + 1]['lex'] == LEX['hai']) else 1
return num + k, Name(id=lexeme['value'], ctx=Load(), **self._debug_details(num))
if num + 1 >= self.length:
return num + 1, None
return self._analyze_e(num + 1)
raise ErrorHandler(ERROR, 'Unknown symbol')
def _analyze_d(self, num):
num, prev = self._analyze_e(num)
if prev is None:
raise ErrorHandler(ERROR)
while num < self.length:
lexeme = self.lex[num]
if lexeme['lex'] == LEX['*']:
op = Mult(**self._debug_details(num))
elif lexeme['lex'] == LEX['/']:
op = Div(**self._debug_details(num))
elif lexeme['lex'] == LEX['%']:
op = Mod(**self._debug_details(num))
else:
return num, prev
num += 1
if num >= self.length:
raise ErrorHandler(ERROR, "Missing right operand")
num, node = self._analyze_e(num)
if node is None:
raise ErrorHandler(ERROR)
prev = BinOp(left=prev, op=op, right=node)
return num, prev
def _analyze_c(self, num):
num, prev = self._analyze_d(num)
if prev is None:
raise ErrorHandler(ERROR)
while num < self.length:
lexeme = self.lex[num]
if lexeme['lex'] == LEX['+']:
op = Add(**self._debug_details(num))
elif lexeme['lex'] == LEX['-']:
op = Sub(**self._debug_details(num))
else:
return num, prev
num += 1
if num >= self.length:
raise ErrorHandler(ERROR, "Missing right operand")
num, node = self._analyze_d(num)
if node is None:
raise ErrorHandler(ERROR)
prev = BinOp(left=prev, op=op, right=node)
return num, prev
def _analyze_b(self, num):
lex_line = self.lex[num]['line']
op = None
num, prev = self._analyze_c(num)
if prev is None:
raise ErrorHandler(ERROR)
if num >= self.length:
return num, prev
lexeme = self.lex[num]
if lexeme['lex'] in (LEX['<'], LEX['>'], LEX['<='], LEX['>='], LEX['=='], LEX['!=']):
if num + 1 >= self.length:
return num + 1, prev
new_num, node = self._analyze_c(num + 1)
if node is None:
return num + 1, prev
if lexeme['lex'] == LEX['<']:
op = Lt(**self._debug_details(num))
elif lexeme['lex'] == LEX['>']:
op = Gt(**self._debug_details(num))
elif lexeme['lex'] == LEX['<=']:
op = LtE(**self._debug_details(num))
elif lexeme['lex'] == LEX['>=']:
op = GtE(**self._debug_details(num))
elif lexeme['lex'] == LEX['==']:
op = Eq(**self._debug_details(num))
elif lexeme['lex'] == LEX['!=']:
op = NotEq(**self._debug_details(num))
if lexeme['value'] == 'word':
if lexeme['lex'] == LEX['>']:
op = Lt(**self._debug_details(num))
elif lexeme['lex'] == LEX['<']:
op = Gt(**self._debug_details(num))
op = Compare(left=prev, ops=[op], comparators=[node], **self._debug_details(num))
if new_num + 1 < self.length and self.lex[new_num + 1]['lex'] == LEX['var'] and self.lex[new_num + 1][
'value'] == 'nahi':
new_num += 1
op = UnaryOp(op=Not(), operand=op, **self._debug_details(new_num))
if new_num < self.length and self.lex[new_num]['lex'] == LEX['hai']:
new_num += 1
return new_num, op
elif lexeme['lex'] in (LEX['var'], LEX['('], LEX['str'], LEX['num']) and lexeme['line'] == lex_line:
new_num, node = self._analyze_c(num)
if new_num >= self.length:
return new_num, prev
lexeme = self.lex[new_num]
if lexeme['value'] is None:
raise ErrorHandler(ERROR, 'Misplaced relational operator')
if lexeme['lex'] == LEX['<']:
op = Lt(**self._debug_details(new_num))
elif lexeme['lex'] == LEX['>']:
op = Gt(**self._debug_details(new_num))
elif lexeme['lex'] == LEX['<=']:
op = LtE(**self._debug_details(new_num))
elif lexeme['lex'] == LEX['>=']:
op = GtE(**self._debug_details(new_num))
elif lexeme['lex'] == LEX['==']:
op = Eq(**self._debug_details(new_num))
elif lexeme['lex'] == LEX['!=']:
op = NotEq(**self._debug_details(new_num))
op = Compare(left=prev, ops=[op], comparators=[node], **self._debug_details(num))
if new_num + 1 < self.length and self.lex[new_num + 1]['lex'] == LEX['var'] and self.lex[new_num + 1][
'value'] == 'nahi':
new_num += 1
op = UnaryOp(op=Not(), operand=op, **self._debug_details(new_num))
if new_num + 1 < self.length and self.lex[new_num + 1]['lex'] == LEX['hai']:
new_num += 1
return new_num + 1, op
else:
return num, prev
def _analyze_a(self, num):
lex_num = num
values = []
num, node = self._analyze_b(num)
if node is None:
raise ErrorHandler(ERROR)
values.append(node)
while num < self.length:
lexeme = self.lex[num]
if lexeme['lex'] != LEX['&&']:
break
num += 1
if num >= self.length:
raise ErrorHandler(ERROR, 'Unexpected aur')
num, node = self._analyze_b(num)
if node is None:
raise ErrorHandler(ERROR)
values.append(node)
if len(values) == 1:
return num, values.pop()
else:
return num, BoolOp(op=And(**self._debug_details(lex_num)), values=values, **self._debug_details(lex_num))
def _analyze_expr(self, num):
"""
expr -> A ya expr | A
A -> B A', A' -> aur B A' | e
B -> C relational C N H | C C relational N H | C
C -> D C', C' -> + D C' | - D C' | e
D -> E D', D' -> * E D' | / E D' | % E D' | e
E -> (expr) H | var H | num H | str H
H -> e | hai
N -> e | nahi
"""
lex_num = num
values = []
num, node = self._analyze_a(num)
if node is None:
raise ErrorHandler(ERROR)
values.append(node)
while num < self.length:
lexeme = self.lex[num]
if lexeme['lex'] != LEX['||']:
break
num += 1
if num >= self.length:
raise ErrorHandler(ERROR, 'Unexpected aur')
num, node = self._analyze_a(num)
if node is None:
raise ErrorHandler(ERROR)
values.append(node)
if len(values) == 1:
return num, values.pop()
else:
return num, BoolOp(op=Or(**self._debug_details(lex_num)), values=values, **self._debug_details(lex_num))