-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.py
269 lines (204 loc) · 5.98 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
from rply import ParserGenerator
from lexer import token_names, lex
import ast
pg = ParserGenerator(
token_names,
precedence=[
('left', ['AND', 'OR']),
('left', ['NOT',]),
('left', ['PLUS', 'MINUS']),
('left', ['MULTIPLY', 'DIVIDE', ]),
# ('left', ['PAREN_L, PAREN_R'])
])
# Whole program
@pg.production("program : statements")
def program(p):
return ast.Block(p)
@pg.production("statements : statement")
def statementlist_statement(p):
return [p[0]]
@pg.production("statements : statements statement")
def statementlist_statementliststatement(p):
return p[0] + [p[1]]
@pg.production("statement : ID kek assignment")
def assign(p):
assert p[0].gettokentype() == "ID"
return ast.Assignment(ast.IdentifierReference(p[0].getstr()), p[2])
@pg.production("assignment : exp")
def assignment_exp(p):
return p[0]
"""
EXPRESSION DEFINITION
"""
@pg.production("exp : math_exp")
def math_expression(p):
return p[0]
@pg.production("exp : boolean_exp")
def boolean_expression(p):
return p[0]
@pg.production("exp : string_exp")
def string_expression(p):
return p[0]
"""
NUMERIC EXPRESSION DEFINITION
"""
@pg.production("math_exp : term")
def exp_term(p):
return p[0]
@pg.production("math_exp : math_exp PLUS term ")
@pg.production("math_exp : math_exp MINUS term")
@pg.production("math_exp : math_exp MULTIPLY term")
@pg.production("math_exp : math_exp DIVIDE term")
@pg.production("math_exp : math_exp MOD term")
def exp_binary_term(p):
token_type, left, right = p[1].gettokentype(), p[0], p[2]
if token_type == "PLUS":
return ast.Add(left, right)
elif token_type == "MINUS":
return ast.Subtract(left, right)
elif token_type == "MULTIPLY":
return ast.Multiply(left, right)
elif token_type == "DIVIDE":
return ast.Divide(left, right)
elif token_type == "MOD":
return ast.Modulus(left, right)
else:
assert False, "Something went wrong"
@pg.production("term : factor")
def exp_factor(p):
return p[0]
@pg.production("factor : NUM")
def factor_num(p):
return ast.Number(int(p[0].getstr()))
@pg.production("factor : MINUS NUM")
def factor_negative_num(p):
return ast.Number(-int(p[1].getstr()))
@pg.production("factor : ID")
def factor_id(p):
return ast.IdentifierReference(p[0].getstr())
@pg.production("factor : PAREN_L math_exp PAREN_R")
def factor_parens(p):
return p[1]
"""
BOOLEAN EXPRESSIONS
"""
@pg.production("boolean_exp : booleans")
def boolean_expression(p):
return p[0]
@pg.production("booleans : bool_factor")
def booleans_to_boolean(p):
return p[0]
@pg.production("booleans : booleans and bool_factor")
@pg.production("booleans : booleans or bool_factor")
def boolean_operations(p):
token_type, left, right = p[1].gettokentype(), p[0], p[2]
if token_type == "and":
return ast.And(left, right)
elif token_type == "or":
return ast.Or(left, right)
else:
assert False, "Something went wrong"
@pg.production("bool_factor : bool_term")
def boolean_to_boolean_factor(p):
return p[0]
@pg.production("bool_term : true")
@pg.production("bool_term : false")
def boolean(p):
boolean = p[0]
if boolean.gettokentype() == "true":
return ast.Boolean(True)
elif boolean.gettokentype() == "false":
return ast.Boolean(False)
else:
assert False, "Something went wrong"
@pg.production("bool_term : not bool_term")
def not_boolean(p):
return ast.Boolean(not p[1].value)
@pg.production("bool_term : PAREN_L booleans PAREN_R")
def paren_boolean(p):
return p[1]
"""
STRING EPRESSIONS
"""
@pg.production("string_exp : ID ")
@pg.production("string_exp : STRING")
@pg.production("string_exp : string_exp BRACKET_L NUM COMMA NUM BRACKET_R")
def string_exp_to_string(p):
return ast.String(p[0].getstr().strip("\""))
@pg.production("string_exp : STRING BRACKET_L math_exp BRACKET_R")
def string_indexing(p):
index = p[2].value
string = ast.String(p[0].getstr().strip("\""))
return ast.IndexOperation(string, index)
@pg.production("string_exp : ID BRACKET_L math_exp BRACKET_R")
def string_variable_indexing(p):
index = p[2].value
variable = ast.IdentifierReference(p[0].getstr())
return ast.IndexOperation(variable, index)
"""
FUNCTION DECLARATION
"""
@pg.production("statement : func_dec")
def function_dec(p):
return p[0]
@pg.production("func_dec : lol function_name PAREN_L func_params PAREN_R CURLY_L func_body CURLY_R")
def function_dec_syn(p):
return ast.FunctionDeclaration(p[1].value, p[3], p[6])
@pg.production("func_dec : lol function_name PAREN_L func_params PAREN_R CURLY_L CURLY_R")
def function_dec_empty(p):
return ast.FunctionDeclaration(p[1].value, p[3], [])
@pg.production("func_params : func_params COMMA func_param")
def function_params(p):
return [p[0]] + [p[2].value]
@pg.production("func_params : func_param")
def function_param(p):
return p[0].value
@pg.production("func_param : ID")
def func_param(p):
return p[0]
@pg.production("function_name : ID")
def function_name(p):
return p[0]
@pg.production("func_body : statements")
def func_body(p):
return ast.FunctionBody(p[0])
@pg.production("statement : kdone exp")
def return_statement(p):
return ast.ReturnStatement(p[1])
"""
FUNCTION EXECUTION
"""
@pg.production("statement : func_call")
def function_call(p):
return p[0]
@pg.production("func_call : function_name PAREN_L func_call_params PAREN_R")
def function_call_syn(p):
return ast.FunctionCall(p[0].value, p[2])
@pg.production("func_call_params : func_call_params COMMA func_call_param")
def func_call_params(p):
return [p[0]] + [p[2]]
@pg.production("func_call_params : func_call_param")
def func_call_param(p):
return p[0]
@pg.production("func_call_param : exp")
def func_call_param_type(p):
return p[0]
"""
PRINTING (TO BE CHANGED)
"""
@pg.production("statement : PAREN_L exp PAREN_R")
def print_id(p):
return ast.WriteStatement(p[1])
"""
GENERIC PG ERROR HANDLING
"""
@pg.error
def error_handler(token):
raise ValueError('Ran into a %s where it wasn\'t expected' % token)
parser = pg.build()
if __name__ == "__main__":
from pprint import pprint
from sys import argv
with open(argv[1], "r") as f:
p = parser.parse(lex(f.read()))
(p.eval({}))