-
Notifications
You must be signed in to change notification settings - Fork 0
/
scheme.py
553 lines (468 loc) · 18.1 KB
/
scheme.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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
"""This module implements the core Scheme interpreter functions, including the
eval/apply mutual recurrence, environment model, and read-eval-print loop.
"""
from scheme_primitives import *
from scheme_reader import *
from ucb import main, trace
##############
# Eval/Apply #
##############
def scheme_eval(expr, env):
"""Evaluate Scheme expression EXPR in environment ENV.
>>> expr = read_line("(+ 2 2)")
>>> expr
Pair('+', Pair(2, Pair(2, nil)))
>>> scheme_eval(expr, create_global_frame())
4
"""
if expr is None:
raise SchemeError("Cannot evaluate an undefined expression.")
# Evaluate Atoms
if scheme_symbolp(expr):
return env.lookup(expr)
elif scheme_atomp(expr) or scheme_stringp(expr) or expr is okay:
return expr
# All non-atomic expressions are lists.
if not scheme_listp(expr):
raise SchemeError("malformed list: {0}".format(str(expr)))
first, rest = expr.first, expr.second
# Evaluate Combinations
if (scheme_symbolp(first) # first might be unhashable
and first in LOGIC_FORMS):
return scheme_eval(LOGIC_FORMS[first](rest, env), env)
elif first == "lambda":
return do_lambda_form(rest, env)
elif first == "mu":
return do_mu_form(rest)
elif first == "define":
return do_define_form(rest, env)
elif first == "quote":
return do_quote_form(rest)
elif first == "let":
expr, env = do_let_form(rest, env)
return scheme_eval(expr, env)
else:
procedure = scheme_eval(first, env)
args = rest.map(lambda operand: scheme_eval(operand, env))
return scheme_apply(procedure, args, env)
def scheme_apply(procedure, args, env):
"""Apply Scheme PROCEDURE to argument values ARGS in environment ENV."""
if isinstance(procedure, PrimitiveProcedure):
return apply_primitive(procedure, args, env)
elif isinstance(procedure, LambdaProcedure):
new_frame = procedure.env.make_call_frame(procedure.formals, args)
return scheme_eval(procedure.body, new_frame)
elif isinstance(procedure, MuProcedure):
new_frame = env.make_call_frame(procedure.formals, args)
return scheme_eval(procedure.body, new_frame)
else:
raise SchemeError("Cannot call {0}".format(str(procedure)))
def apply_primitive(procedure, args, env):
"""Apply PrimitiveProcedure PROCEDURE to a Scheme list of ARGS in ENV.
>>> env = create_global_frame()
>>> plus = env.bindings["+"]
>>> twos = Pair(2, Pair(2, nil))
>>> apply_primitive(plus, twos, env)
4
"""
list_arg = list(args)
if procedure.use_env:
list_arg.append(env)
try:
return procedure.fn(*list_arg)
except TypeError:
raise SchemeError("Invalid number of arguments")
################
# Environments #
################
class Frame:
"""An environment frame binds Scheme symbols to Scheme values."""
def __init__(self, parent):
"""An empty frame with a PARENT frame (that may be None)."""
self.bindings = {}
self.parent = parent
def __repr__(self):
if self.parent is None:
return "<Global Frame>"
else:
s = sorted('{0}: {1}'.format(k,v) for k,v in self.bindings.items())
return "<{{{0}}} -> {1}>".format(', '.join(s), repr(self.parent))
def lookup(self, symbol):
"""Return the value bound to SYMBOL. Errors if SYMBOL is not found."""
if symbol in self.bindings:
return self.bindings[symbol]
else:
if self.parent is not None:
return self.parent.lookup(symbol)
raise SchemeError("unknown identifier: {0}".format(str(symbol)))
def global_frame(self):
"""The global environment at the root of the parent chain."""
e = self
while e.parent is not None:
e = e.parent
return e
def make_call_frame(self, formals, vals):
"""Return a new local frame whose parent is SELF, in which the symbols
in the Scheme formal parameter list FORMALS are bound to the Scheme
values in the Scheme value list VALS. Raise an error if too many or too
few arguments are given.
>>> env = create_global_frame()
>>> formals, vals = read_line("(a b c)"), read_line("(1 2 3)")
>>> env.make_call_frame(formals, vals)
<{a: 1, b: 2, c: 3} -> <Global Frame>>
"""
frame = Frame(self)
check_formals(formals)
if len(formals) != len(vals):
raise SchemeError("Different number of formals and values")
else:
for i in range(len(formals)): #Adding to bindings dictionary
frame.bindings[formals[i]] = vals[i]
return frame
def define(self, sym, val):
"""Define Scheme symbol SYM to have value VAL in SELF."""
self.bindings[sym] = val
class LambdaProcedure:
"""A procedure defined by a lambda expression or the complex define form."""
def __init__(self, formals, body, env):
"""A procedure whose formal parameter list is FORMALS (a Scheme list),
whose body is the single Scheme expression BODY, and whose parent
environment is the Frame ENV. A lambda expression containing multiple
expressions, such as (lambda (x) (display x) (+ x 1)) can be handled by
using (begin (display x) (+ x 1)) as the body."""
self.formals = formals
self.body = body
self.env = env
def __str__(self):
return "(lambda {0} {1})".format(str(self.formals), str(self.body))
def __repr__(self):
args = (self.formals, self.body, self.env)
return "LambdaProcedure({0}, {1}, {2})".format(*(repr(a) for a in args))
class MuProcedure:
"""A procedure defined by a mu expression, which has dynamic scope.
_________________
< Scheme is cool! >1
-----------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
"""
def __init__(self, formals, body):
"""A procedure whose formal parameter list is FORMALS (a Scheme list),
whose body is the single Scheme expression BODY. A mu expression
containing multiple expressions, such as (mu (x) (display x) (+ x 1))
can be handled by using (begin (display x) (+ x 1)) as the body."""
self.formals = formals
self.body = body
def __str__(self):
return "(mu {0} {1})".format(str(self.formals), str(self.body))
def __repr__(self):
args = (self.formals, self.body)
return "MuProcedure({0}, {1})".format(*(repr(a) for a in args))
#################
# Special forms #
#################
def do_lambda_form(vals, env):
"""Evaluate a lambda form with parameters VALS in environment ENV."""
check_form(vals, 2)
formals = vals[0]
check_formals(formals)
if vals.second.second == nil:
return LambdaProcedure(formals, vals[1], env)
else:
return LambdaProcedure(formals, Pair('begin', vals.second), env)
def do_mu_form(vals):
"""Evaluate a mu form with parameters VALS."""
check_form(vals, 2)
formals = vals[0]
check_formals(formals)
if vals.second.second == nil:
return MuProcedure(formals, vals[1])
return MuProcedure(formals, Pair('begin', vals.second))
def do_define_form(vals, env):
"""Evaluate a define form with parameters VALS in environment ENV."""
check_form(vals, 2)
target = vals[0]
if scheme_symbolp(target):
check_form(vals, 2, 2)
env.define(target, scheme_eval(vals[1], env))
return target
elif isinstance(target, Pair):
if not scheme_symbolp(target.first):
raise SchemeError("Not scheme symbol")
env.define(target[0], do_lambda_form(Pair(target.second, vals.second), env))
return target.first
else:
raise SchemeError("bad argument to define")
def do_quote_form(vals):
"""Evaluate a quote form with parameters VALS."""
check_form(vals, 1, 1)
return vals[0]
def do_let_form(vals, env):
"""Evaluate a let form with parameters VALS in environment ENV."""
check_form(vals, 2)
bindings = vals[0]
exprs = vals.second
if not scheme_listp(bindings):
raise SchemeError("Bad bindings list in let form")
# Add a frame containing bindings
names, values = nil, nil
for binding in bindings:
if binding.second.second != nil:
raise SchemeError("too many arguments")
elif scheme_symbolp(binding.first) == False:
raise SchemeError("Incorrect binding")
names = Pair(binding.first, names)
values = Pair(scheme_eval(binding.second.first, env), values)
new_env = env.make_call_frame(names, values)
# Evaluate all but the last expression after bindings, and return the last
last = len(exprs)-1
for i in range(0, last):
scheme_eval(exprs[i], new_env)
return exprs[last], new_env
#########################
# Logical Special Forms #
#########################
def do_if_form(vals, env):
"""Evaluate if form with parameters VALS in environment ENV."""
check_form(vals, 2, 3)
pred = scheme_eval(vals[0], env)
if scheme_true(pred):
return vals[1]
else:
if len(vals) == 2: #If there is no second option return okay
return okay
elif len(vals) == 3:
return vals[2]
def do_and_form(vals, env):
"""Evaluate short-circuited and with parameters VALS in environment ENV."""
if len(vals) == 0:
return True
for i in range(len(vals) - 1):
if scheme_false(scheme_eval(vals[i], env)):
return False
return vals[len(vals) - 1]
def quote(value):
"""Return a Scheme expression quoting the Scheme VALUE.
>>> s = quote('hello')
>>> print(s)
(quote hello)
>>> scheme_eval(s, Frame(None)) # "hello" is undefined in this frame.
'hello'
"""
return Pair("quote", Pair(value, nil))
def do_or_form(vals, env):
"""Evaluate short-circuited or with parameters VALS in environment ENV."""
if len(vals) == 0:
return False
for i in range(len(vals) - 1):
r = scheme_eval(vals[i], env)
if scheme_true(r):
return quote(r)
return vals[len(vals) - 1]
def do_cond_form(vals, env):
"""Evaluate cond form with parameters VALS in environment ENV."""
num_clauses = len(vals)
for i, clause in enumerate(vals):
check_form(clause, 1)
if clause.first == "else":
if i < num_clauses-1:
raise SchemeError("else must be last")
test = True
if clause.second is nil:
raise SchemeError("badly formed else clause")
else:
test = scheme_eval(clause.first, env)
if scheme_true(test):
if len(clause) == 1:
return quote(test)
elif len(clause) == 2:
return clause[1]
return Pair('begin', clause.second)
return okay
def do_begin_form(vals, env):
"""Evaluate begin form with parameters VALS in environment ENV."""
check_form(vals, 1)
vals_length = len(vals)-1
for i in range(vals_length):
scheme_eval(vals[i], env)
return vals[vals_length] #Return the last, don't evaluate it
LOGIC_FORMS = {
"and": do_and_form,
"or": do_or_form,
"if": do_if_form,
"cond": do_cond_form,
"begin": do_begin_form,
}
# Utility methods for checking the structure of Scheme programs
def check_form(expr, min, max = None):
"""Check EXPR (default SELF.expr) is a proper list whose length is
at least MIN and no more than MAX (default: no maximum). Raises
a SchemeError if this is not the case."""
if not scheme_listp(expr):
raise SchemeError("badly formed expression: " + str(expr))
length = len(expr)
if length < min:
raise SchemeError("too few operands in form")
elif max is not None and length > max:
raise SchemeError("too many operands in form")
def check_formals(formals):
"""Check that FORMALS is a valid parameter list, a Scheme list of symbols
in which each symbol is distinct. Raise a SchemeError if the list of formals
is not a well-formed list of symbols or if any symbol is repeated.
>>> check_formals(read_line("(a b c)"))
"""
if not scheme_listp(formals): #Check if its not a well formed list
raise SchemeError
for element in formals: #Checks for non symbols
if not scheme_symbolp(element):
raise SchemeError
current = "something" #Checks for duplicates
i = 0
while i < len(formals):
if formals[i] == current:
raise SchemeError
current = formals[i]
i += 1
##################
# Tail Recursion #
##################
def scheme_optimized_eval(expr, env):
"""Evaluate Scheme expression EXPR in environment ENV."""
while True:
if expr is None:
raise SchemeError("Cannot evaluate an undefined expression.")
# Evaluate Atoms
if scheme_symbolp(expr):
return env.lookup(expr)
elif scheme_atomp(expr) or scheme_stringp(expr) or expr is okay:
return expr
# All non-atomic expressions are lists.
if not scheme_listp(expr):
raise SchemeError("malformed list: {0}".format(str(expr)))
first, rest = expr.first, expr.second
# Evaluate Combinations
if (scheme_symbolp(first) # first might be unhashable
and first in LOGIC_FORMS):
expr = LOGIC_FORMS[first](rest, env)
elif first == "lambda":
return do_lambda_form(rest, env)
elif first == "mu":
return do_mu_form(rest)
elif first == "define":
return do_define_form(rest, env)
elif first == "quote":
return do_quote_form(rest)
elif first == "let":
expr, env = do_let_form(rest, env)
else:
procedure = scheme_optimized_eval(first, env)
args = rest.map(lambda operand: scheme_optimized_eval(operand, env))
if isinstance(procedure, PrimitiveProcedure):
return apply_primitive(procedure, args, env)
elif isinstance(procedure, LambdaProcedure):
expr = procedure.body
env = procedure.env.make_call_frame(procedure.formals, args)
elif isinstance(procedure, MuProcedure):
expr = procedure.body
env = env.make_call_frame(procedure.formals, args)
else:
raise SchemeError
################################################################
# Uncomment the following line to apply tail call optimization #
################################################################
scheme_eval = scheme_optimized_eval
################
# Input/Output #
################
def read_eval_print_loop(next_line, env, quiet=False, startup=False,
interactive=False, load_files=()):
"""Read and evaluate input until an end of file or keyboard interrupt."""
if startup:
for filename in load_files:
scheme_load(filename, True, env)
while True:
try:
src = next_line()
while src.more_on_line:
expression = scheme_read(src)
result = scheme_eval(expression, env)
if not quiet and result is not None:
print(result)
except (SchemeError, SyntaxError, ValueError, RuntimeError) as err:
if (isinstance(err, RuntimeError) and
'maximum recursion depth exceeded' not in err.args[0]):
raise
print("Error:", err)
except KeyboardInterrupt: # <Control>-C
if not startup:
raise
print("\nKeyboardInterrupt")
if not interactive:
return
except EOFError: # <Control>-D, etc.
return
def scheme_load(*args):
"""Load a Scheme source file. ARGS should be of the form (SYM, ENV) or (SYM,
QUIET, ENV). The file named SYM is loaded in environment ENV, with verbosity
determined by QUIET (default true)."""
if not (2 <= len(args) <= 3):
vals = args[:-1]
raise SchemeError("wrong number of arguments to load: {0}".format(vals))
sym = args[0]
quiet = args[1] if len(args) > 2 else True
env = args[-1]
if (scheme_stringp(sym)):
sym = eval(sym)
check_type(sym, scheme_symbolp, 0, "load")
with scheme_open(sym) as infile:
lines = infile.readlines()
args = (lines, None) if quiet else (lines,)
def next_line():
return buffer_lines(*args)
read_eval_print_loop(next_line, env.global_frame(), quiet=quiet)
return okay
def scheme_open(filename):
"""If either FILENAME or FILENAME.scm is the name of a valid file,
return a Python file opened to it. Otherwise, raise an error."""
try:
return open(filename)
except IOError as exc:
if filename.endswith('.scm'):
raise SchemeError(str(exc))
try:
return open(filename + '.scm')
except IOError as exc:
raise SchemeError(str(exc))
def create_global_frame():
"""Initialize and return a single-frame environment with built-in names."""
env = Frame(None)
env.define("eval", PrimitiveProcedure(scheme_eval, True))
env.define("apply", PrimitiveProcedure(scheme_apply, True))
env.define("load", PrimitiveProcedure(scheme_load, True))
add_primitives(env)
return env
@main
def run(*argv):
next_line = buffer_input
interactive = True
load_files = ()
if argv:
try:
filename = argv[0]
if filename == '-load':
load_files = argv[1:]
else:
input_file = open(argv[0])
lines = input_file.readlines()
def next_line():
return buffer_lines(lines)
interactive = False
except IOError as err:
print(err)
sys.exit(1)
read_eval_print_loop(next_line, create_global_frame(), startup=True,
interactive=interactive, load_files=load_files)
tscheme_exitonclick()