1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/objpascal/stepA_mal.pas
2016-04-02 17:27:43 -05:00

346 lines
9.2 KiB
ObjectPascal

program Mal;
{$H+} // Use AnsiString
Uses sysutils,
CMem,
fgl,
math,
mal_readline,
mal_types,
mal_func,
reader,
printer,
mal_env,
core;
var
Repl_Env : TEnv;
Line : string;
I : longint;
Key : string;
CmdArgs : TMalArray;
// read
function READ(const Str: string) : TMal;
begin
READ := read_str(Str);
end;
// eval
function is_pair(x: TMal) : Boolean;
begin
is_pair := _sequential_Q(x) and (Length((x as TMalList).Val) > 0);
end;
function quasiquote(Ast: TMal) : TMal;
var
Arr, Arr0 : TMalArray;
A0, A00 : TMal;
begin
if not is_pair(Ast) then
Exit(_list(TMalSymbol.Create('quote'), Ast))
else
begin
Arr := (Ast as TMalList).Val;
A0 := Arr[0];
if (A0 is TMalSymbol) and
((A0 as TMalSymbol).Val = 'unquote') then
Exit(Arr[1])
else if is_pair(A0) then
begin
Arr0 := (Arr[0] as TMalList).Val;
A00 := Arr0[0];
if (A00 is TMalSymbol) and
((A00 as TMalSymbol).Val = 'splice-unquote') then
Exit(_list(TMalSymbol.Create('concat'),
Arr0[1],
quasiquote((Ast as TMalList).Rest)));
end;
quasiquote := _list(TMalSymbol.Create('cons'),
quasiquote(A0),
quasiquote((Ast as TMalList).Rest));
end;
end;
function is_macro_call(Ast: TMal; Env: TEnv): Boolean;
var
A0 : TMal;
Mac : TMal;
begin
is_macro_call := false;
if (Ast.ClassType = TMalList) and
(Length((Ast as TMalList).Val) > 0) then
begin
A0 := (Ast as TMalList).Val[0];
if (A0 is TMalSymbol) and
(Env.Find(A0 as TMalSymbol) <> nil) then
begin
Mac := Env.Get((A0 as TMalSymbol));
if Mac is TMalFunc then
is_macro_call := (Mac as TMalFunc).isMacro;
end;
end;
end;
// Forward declation since eval_ast call it
function EVAL(Ast: TMal; Env: TEnv) : TMal; forward;
function macroexpand(Ast: TMal; Env: TEnv): TMal;
var
A0 : TMal;
Arr : TMalArray;
Args : TMalArray;
Mac : TMalFunc;
begin
while is_macro_call(Ast, Env) do
begin
Arr := (Ast as TMalList).Val;
A0 := Arr[0];
Mac := Env.Get((A0 as TMalSymbol)) as TMalFunc;
Args := (Ast as TMalList).Rest.Val;
if Mac.Ast = nil then
Ast := Mac.Val(Args)
else
Ast := EVAL(Mac.Ast,
TEnv.Create(Mac.Env, Mac.Params, Args));
end;
macroexpand := Ast;
end;
function eval_ast(Ast: TMal; Env: TEnv) : TMal;
var
OldArr, NewArr : TMalArray;
OldDict, NewDict : TMalDict;
I : longint;
begin
if Ast is TMalSymbol then
begin
eval_ast := Env.Get((Ast as TMalSymbol));
end
else if Ast is TMalList then
begin
OldArr := (Ast as TMalList).Val;
SetLength(NewArr, Length(OldArr));
for I := 0 to Length(OldArr)-1 do
begin
NewArr[I] := EVAL(OldArr[I], Env);
end;
if Ast is TMalVector then
eval_ast := TMalVector.Create(NewArr)
else
eval_ast := TMalList.Create(NewArr);
end
else if Ast is TMalHashMap then
begin
OldDict := (Ast as TMalHashMap).Val;
NewDict := TMalDict.Create;
I := 0;
while I < OldDict.Count do
begin
NewDict[OldDict.Keys[I]] := EVAL(OldDict[OldDict.Keys[I]], Env);
I := I + 1;
end;
eval_ast := TMalHashMap.Create(NewDict);
end
else
eval_ast := Ast;
end;
function EVAL(Ast: TMal; Env: TEnv) : TMal;
var
Lst : TMalList;
Arr : TMalArray;
Arr1 : TMalArray;
A0Sym : string;
LetEnv : TEnv;
Cond : TMal;
I : longint;
Fn : TMalFunc;
Args : TMalArray;
Err : TMalArray;
begin
while true do
begin
if Ast.ClassType <> TMalList then
Exit(eval_ast(Ast, Env));
Ast := macroexpand(Ast, Env);
if Ast.ClassType <> TMalList then
Exit(eval_ast(Ast, Env));
// Apply list
Lst := (Ast as TMalList);
Arr := Lst.Val;
if Length(Arr) = 0 then
Exit(Ast);
if Arr[0] is TMalSymbol then
A0Sym := (Arr[0] as TMalSymbol).Val
else
A0Sym := '__<*fn*>__';
case A0Sym of
'def!':
Exit(Env.Add((Arr[1] as TMalSymbol), EVAL(Arr[2], ENV)));
'let*':
begin
LetEnv := TEnv.Create(Env);
Arr1 := (Arr[1] as TMalList).Val;
I := 0;
while I < Length(Arr1) do
begin
LetEnv.Add((Arr1[I] as TMalSymbol), EVAL(Arr1[I+1], LetEnv));
Inc(I,2);
end;
Env := LetEnv;
Ast := Arr[2]; // TCO
end;
'quote':
Exit(Arr[1]);
'quasiquote':
Ast := quasiquote(Arr[1]);
'defmacro!':
begin
Fn := EVAL(Arr[2], ENV) as TMalFunc;
Fn.isMacro := true;
Exit(Env.Add((Arr[1] as TMalSymbol), Fn));
end;
'macroexpand':
Exit(macroexpand(Arr[1], Env));
'try*':
begin
try
Exit(EVAL(Arr[1], Env));
except
On E : Exception do
begin
SetLength(Err, 1);
if E.ClassType = TMalException then
Err[0] := (E as TMalException).Val
else
Err[0] := TMalString.Create(E.message);
Arr := (Arr[2] as TMalList).Val;
Exit(EVAL(Arr[2], TEnv.Create(Env,
_list(Arr[1]),
Err)));
end;
end;
end;
'do':
begin
eval_ast(TMalList.Create(copy(Arr,1, Length(Arr)-2)), Env);
Ast := Arr[Length(Arr)-1]; // TCO
end;
'if':
begin
Cond := EVAL(Arr[1], Env);
if (Cond is TMalNil) or (Cond is TMalFalse) then
if Length(Arr) > 3 then
Ast := Arr[3] // TCO
else
Exit(TMalNil.Create)
else
Ast := Arr[2]; // TCO
end;
'fn*':
begin
Exit(TMalFunc.Create(Arr[2], Env, (Arr[1] as TMalList)));
end;
else
begin
Arr := (eval_ast(Ast, Env) as TMalList).Val;
if Arr[0] is TMalFunc then
begin
Fn := Arr[0] as TMalFunc;
if Length(Arr) < 2 then
SetLength(Args, 0)
else
Args := copy(Arr, 1, Length(Arr)-1);
if Fn.Ast = nil then
Exit(Fn.Val(Args))
else
begin
Env := TEnv.Create(Fn.Env, Fn.Params, Args);
Ast := Fn.Ast; // TCO
end
end
else
raise Exception.Create('invalid apply');
end;
end;
end;
end;
// print
function PRINT(Exp: TMal) : string;
begin
PRINT := pr_str(Exp, True);
end;
// repl
function REP(Str: string) : string;
begin
REP := PRINT(EVAL(READ(Str), Repl_Env));
end;
function do_eval(Args : TMalArray) : TMal;
begin
do_eval := EVAL(Args[0], Repl_Env);
end;
begin
Repl_Env := TEnv.Create;
core.EVAL := @EVAL;
// core.pas: defined using Pascal
for I := 0 to core.NS.Count-1 do
begin
Key := core.NS.Keys[I];
Repl_Env.Add(TMalSymbol.Create(Key),
TMalFunc.Create(core.NS[Key]));
end;
Repl_Env.Add(TMalSymbol.Create('eval'), TMalFunc.Create(@do_eval));
SetLength(CmdArgs, Max(0, ParamCount-1));
for I := 2 to ParamCount do
CmdArgs[I-2] := TMalString.Create(ParamStr(I));
Repl_Env.Add(TMalSymbol.Create('*ARGV*'), TMalList.Create(CmdArgs));
Repl_Env.Add(TMalSymbol.Create('*host-language*'),
TMalString.Create('Object Pascal'));
// core.mal: defined using language itself
REP('(def! not (fn* (a) (if a false true)))');
REP('(def! load-file (fn* (f) (eval (read-string (str "(do " (slurp f) ")")))))');
REP('(defmacro! cond (fn* (& xs) (if (> (count xs) 0) (list ''if (first xs) (if (> (count xs) 1) (nth xs 1) (throw "odd number of forms to cond")) (cons ''cond (rest (rest xs)))))))');
REP('(def! *gensym-counter* (atom 0))');
REP('(def! gensym (fn* () (symbol (str "G__" (swap! *gensym-counter* (fn* [x] (+ 1 x)))))))');
REP('(defmacro! or (fn* (& xs) (if (empty? xs) nil (if (= 1 (count xs)) (first xs) (let* (condvar (gensym)) `(let* (~condvar ~(first xs)) (if ~condvar ~condvar (or ~@(rest xs)))))))))');
if ParamCount >= 1 then
begin
REP('(load-file "' + ParamStr(1) + '")');
ExitCode := 0;
Exit;
end;
REP('(println (str "Mal [" *host-language* "]"))');
while True do
begin
try
Line := _readline('user> ');
if Line = '' then continue;
WriteLn(REP(Line))
except
On E : MalEOF do Halt(0);
On E : Exception do
begin
WriteLn('Error: ' + E.message);
WriteLn('Backtrace:');
WriteLn(GetBacktrace(E));
end;
end;
end;
end.