-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc6.py
195 lines (159 loc) · 5.62 KB
/
calc6.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
INTEGER, PLUS, MINUS, MUL, DIV, LPAREN, RPAREN, EOF = ('INTEGER', 'PLUS', 'MINUS', 'MUL', 'DIV', 'LPAREN', 'RPAREN', 'EOF')
class Token(object):
def __init__(self, type, value):
#token type: INTEGER, PLUS, or EOF
self.type = type
#token value: 0-9, '+'
self.value = value
def __str__(self):
"""
Examples:
Token(INTEGER, 3)
Token(PLUS, '+')
"""
return 'Token({type}, {value})'.format(
type=self.type,
value=repr(self.value)
)
def __repre__(self):
return self.__str__()
class Lexer(object):
def __init__(self, text):
self.text = text
self.pos = 0
self.current_char = self.text[self.pos]
def error(self, msg='Lexical analysis error'):
raise Exception(msg)
def advance(self):
self.pos += 1
if self.pos > len(self.text) - 1:
self.current_char = None
else:
self.current_char = self.text[self.pos]
def skip_whitespace(self):
while self.current_char is not None and self.current_char.isspace():
self.advance()
def integer(self):
result = ''
while self.current_char is not None and self.current_char.isdigit():
result += self.current_char
self.advance()
return int(result)
def get_next_token(self):
'''
Lexical analyzer
'''
while self.current_char is not None:
if self.current_char.isspace():
self.skip_whitespace()
continue
elif self.current_char.isdigit():
return Token(INTEGER, self.integer())
elif self.current_char == '+':
self.advance()
return Token(PLUS, '+')
elif self.current_char == '-':
self.advance()
return Token(MINUS, '-')
elif self.current_char == '*':
self.advance()
return Token(MUL, '*')
elif self.current_char == '/':
self.advance()
return Token(DIV, '/')
elif self.current_char == '(':
self.advance()
return Token(LPAREN, '(')
elif self.current_char == ')':
self.advance()
return Token(RPAREN, ')')
else:
self.error("Current_char is " + self.current_char)
return Token(EOF, None)
class Interpreter(object):
def __init__(self, lexer):
# Example: "3+5", " 71 - 15 "
self.lexer = lexer
self.current_token = self.lexer.get_next_token()
def error(self, msg='Syntax analysis error'):
raise Exception(msg)
def eat(self, token_type):
if self.current_token.type == token_type:
self.current_token = self.lexer.get_next_token()
else:
self.error('self.current_token:'+str(self.current_token)+', expected token_type is ' + token_type)
def factor(self):
'''
facotr: INTEGER
'''
token = self.current_token
if token.type == INTEGER:
self.eat(INTEGER)
result = token.value
print("INTEGER " + str(token))
elif token.type == LPAREN:
print("LPAREN " + str(token))
self.eat(LPAREN)
result = self.expr()
print("RPAREN " + str(self.current_token))
self.eat(RPAREN)
return result
def term(self):
'''
term : factor ((MUL | DIV) factor)*
'''
result = self.factor()
while self.current_token.type in (MUL, DIV):
token = self.current_token
if token.type == MUL:
self.eat(MUL)
result = result * self.factor()
elif token.type == DIV:
self.eat(DIV)
result = result / self.factor()
else:
self.error('Unknow token in term()' + str(token))
print("Op " + str(token))
return result
def expr(self):
'''
expr : term ((PLUS | MINUS) term)*
'''
result = self.term()
while self.current_token.type in (PLUS, MINUS):
token = self.current_token
if token.type == PLUS:
self.eat(PLUS)
result = result + self.term()
elif token.type == MINUS:
self.eat(MINUS)
result = result - self.term()
else:
self.error('Unknow token in expr()' + str(token))
print("Op " + str(token))
return result
def main():
while True:
try:
text = input('calc > ')
except EOFError:
break
if not text:
continue
lexer = Lexer(text)
interpreter = Interpreter(lexer)
result = interpreter.expr()
print(result)
def main2():
tests = [ '7 + 3 * (10 / (12 / (3 + 1) - 1)) / (2 + 3) - 5 - 3 + (8)',
'7 + (((3 + 2)))',
'7 + 3 * (10 / (12 / (3 + 1) - 1))' ]
results = [10, 12, 22]
for text in tests:
lexer = Lexer(text)
interpreter = Interpreter(lexer)
result = interpreter.expr()
print(result)
print ('='*20)
if __name__ == '__main__':
main2()