-
Notifications
You must be signed in to change notification settings - Fork 0
/
lis.py
206 lines (161 loc) · 5.42 KB
/
lis.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
################ Lispy: Scheme Interpreter in Python
## (c) Peter Norvig, 2010-16; See http://norvig.com/lispy.html
from __future__ import division
import math
import operator as op
################ Types
Symbol = str # A Lisp Symbol is implemented as a Python str
List = list # A Lisp List is implemented as a Python list
Number = (int, float) # A Lisp Number is implemented as a Python int or float
def apply(f, *args):
f(*args)
def string_escape(s, encoding="utf-8"):
return (
s.encode("latin1") # To bytes, required by 'unicode-escape'
.decode("unicode-escape") # Perform the actual octal-escaping decode
.encode("latin1") # 1:1 mapping back to bytes
.decode(encoding)
) # Decode original encoding
################ Parsing: parse, tokenize, and read_from_tokens
def parse(program):
"Read a Scheme expression from a string."
return read_from_tokens(tokenize(program))
def tokenize(s):
"Convert a string into a list of tokens."
return s.replace("(", " ( ").replace(")", " ) ").split()
def read_from_tokens(tokens):
"Read an expression from a sequence of tokens."
if len(tokens) == 0:
raise SyntaxError("unexpected EOF while reading")
token = tokens.pop(0)
if "(" == token:
L = []
while tokens[0] != ")":
L.append(read_from_tokens(tokens))
tokens.pop(0) # pop off ')'
return L
elif ")" == token:
raise SyntaxError("unexpected )")
else:
return atom(token)
def atom(token):
"Numbers become numbers; every other token is a symbol."
try:
return int(token)
except ValueError:
try:
return float(token)
except ValueError:
return Symbol(token)
def to_string(x):
"Convert a Python object back into a Lisp-readable string."
if x is True:
return "#t"
elif x is False:
return "#f"
elif isa(x, Symbol):
return x
elif isa(x, str):
return '"%s"' % string_escape(x).replace('"', r"\"")
elif isa(x, list):
return "(" + " ".join(list(map(to_string, x))) + ")"
elif isa(x, complex):
return str(x).replace("j", "i")
else:
return str(x)
################ Environments
def standard_env():
"An environment with some Scheme standard procedures."
env = Env()
env.update(vars(math)) # sin, cos, sqrt, pi, ...
env.update(
{
"+": op.add,
"-": op.sub,
"*": op.mul,
"/": op.truediv,
">": op.gt,
"<": op.lt,
">=": op.ge,
"<=": op.le,
"=": op.eq,
"abs": abs,
"append": op.add,
"apply": apply,
"begin": lambda *x: x[-1],
"car": lambda x: x[0],
"cdr": lambda x: x[1:],
"cons": lambda x, y: [x] + y,
"eq?": op.is_,
"equal?": op.eq,
"length": len,
"list": lambda *x: list(x),
"list?": lambda x: isinstance(x, list),
"map": lambda *x: list(map(*x)),
"max": max,
"min": min,
"not": op.not_,
"null?": lambda x: x == [],
"number?": lambda x: isinstance(x, Number),
"procedure?": callable,
"round": round,
"symbol?": lambda x: isinstance(x, Symbol),
}
)
return env
class Env(dict):
"An environment: a dict of {'var':val} pairs, with an outer Env."
def __init__(self, parms=(), args=(), outer=None):
self.update(zip(parms, args))
self.outer = outer
def find(self, var):
"Find the innermost Env where var appears."
return self if (var in self) else self.outer.find(var)
global_env = standard_env()
################ Interaction: A REPL
def repl(prompt="lis.py> "):
"A prompt-read-eval-print loop."
while True:
val = eval(parse(raw_input(prompt)))
if val is not None:
print(lispstr(val))
def lispstr(exp):
"Convert a Python object back into a Lisp-readable string."
if isinstance(exp, List):
return "(" + " ".join(list(map(lispstr, exp))) + ")"
else:
return str(exp)
################ Procedures
class Procedure(object):
"A user-defined Scheme procedure."
def __init__(self, parms, body, env):
self.parms, self.body, self.env = parms, body, env
def __call__(self, *args):
return eval(self.body, Env(self.parms, args, self.env))
################ eval
def eval(x, env=global_env):
"Evaluate an expression in an environment."
if isinstance(x, Symbol): # variable reference
return env.find(x)[x]
elif not isinstance(x, List): # constant literal
return x
elif x[0] == "quote": # (quote exp)
(_, exp) = x
return exp
elif x[0] == "if": # (if test conseq alt)
(_, test, conseq, alt) = x
exp = conseq if eval(test, env) else alt
return eval(exp, env)
elif x[0] == "define": # (define var exp)
(_, var, exp) = x
env[var] = eval(exp, env)
elif x[0] == "set!": # (set! var exp)
(_, var, exp) = x
env.find(var)[var] = eval(exp, env)
elif x[0] == "lambda": # (lambda (var...) body)
(_, parms, body) = x
return Procedure(parms, body, env)
else: # (proc arg...)
proc = eval(x[0], env)
args = [eval(exp, env) for exp in x[1:]]
return proc(*args)