mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
111 lines
3.0 KiB
Python
111 lines
3.0 KiB
Python
#import sys, traceback
|
|
import mal_readline
|
|
import mal_types as types
|
|
from mal_types import (MalSym, MalInt, MalStr,
|
|
_keywordu,
|
|
MalList, _list, MalVector, MalHashMap, MalFunc)
|
|
import reader, printer
|
|
|
|
# read
|
|
def READ(str):
|
|
return reader.read_str(str)
|
|
|
|
# eval
|
|
def eval_ast(ast, env):
|
|
if types._symbol_Q(ast):
|
|
assert isinstance(ast, MalSym)
|
|
if ast.value in env:
|
|
return env[ast.value]
|
|
else:
|
|
raise Exception(u"'" + ast.value + u"' not found")
|
|
elif types._list_Q(ast):
|
|
res = []
|
|
for a in ast.values:
|
|
res.append(EVAL(a, env))
|
|
return MalList(res)
|
|
elif types._vector_Q(ast):
|
|
res = []
|
|
for a in ast.values:
|
|
res.append(EVAL(a, env))
|
|
return MalVector(res)
|
|
elif types._hash_map_Q(ast):
|
|
new_dct = {}
|
|
for k in ast.dct.keys():
|
|
new_dct[k] = EVAL(ast.dct[k], env)
|
|
return MalHashMap(new_dct)
|
|
else:
|
|
return ast # primitive value, return unchanged
|
|
|
|
def EVAL(ast, env):
|
|
#print("EVAL %s" % printer._pr_str(ast))
|
|
if not types._list_Q(ast):
|
|
return eval_ast(ast, env)
|
|
|
|
# apply list
|
|
el = eval_ast(ast, env)
|
|
f = el.values[0]
|
|
if isinstance(f, MalFunc):
|
|
return f.apply(el.values[1:])
|
|
else:
|
|
raise Exception("%s is not callable" % f)
|
|
|
|
# print
|
|
def PRINT(exp):
|
|
return printer._pr_str(exp)
|
|
|
|
# repl
|
|
repl_env = {}
|
|
def REP(str, env):
|
|
return PRINT(EVAL(READ(str), env))
|
|
|
|
def plus(args):
|
|
a, b = args[0], args[1]
|
|
assert isinstance(a, MalInt)
|
|
assert isinstance(b, MalInt)
|
|
return MalInt(a.value+b.value)
|
|
def minus(args):
|
|
a, b = args[0], args[1]
|
|
assert isinstance(a, MalInt)
|
|
assert isinstance(b, MalInt)
|
|
return MalInt(a.value-b.value)
|
|
def multiply(args):
|
|
a, b = args[0], args[1]
|
|
assert isinstance(a, MalInt)
|
|
assert isinstance(b, MalInt)
|
|
return MalInt(a.value*b.value)
|
|
def divide(args):
|
|
a, b = args[0], args[1]
|
|
assert isinstance(a, MalInt)
|
|
assert isinstance(b, MalInt)
|
|
return MalInt(int(a.value/b.value))
|
|
repl_env[u'+'] = MalFunc(plus)
|
|
repl_env[u'-'] = MalFunc(minus)
|
|
repl_env[u'*'] = MalFunc(multiply)
|
|
repl_env[u'/'] = MalFunc(divide)
|
|
|
|
def entry_point(argv):
|
|
while True:
|
|
try:
|
|
line = mal_readline.readline("user> ")
|
|
if line == "": continue
|
|
print(REP(line, repl_env))
|
|
except EOFError as e:
|
|
break
|
|
except reader.Blank:
|
|
continue
|
|
except types.MalException as e:
|
|
print(u"Error: %s" % printer._pr_str(e.object, False))
|
|
except Exception as e:
|
|
print("Error: %s" % e)
|
|
#print("".join(traceback.format_exception(*sys.exc_info())))
|
|
return 0
|
|
|
|
# _____ Define and setup target ___
|
|
def target(*args):
|
|
return entry_point
|
|
|
|
# Just run entry_point if not RPython compilation
|
|
import sys
|
|
if not sys.argv[0].endswith('rpython'):
|
|
entry_point(sys.argv)
|