mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
b8ee29b22f
Also, fix nth and count to match cloure.
131 lines
3.1 KiB
PHP
131 lines
3.1 KiB
PHP
<?php
|
|
|
|
require_once 'readline.php';
|
|
require_once 'types.php';
|
|
require_once 'reader.php';
|
|
require_once 'printer.php';
|
|
require_once 'env.php';
|
|
require_once 'core.php';
|
|
|
|
// read
|
|
function READ($str) {
|
|
return read_str($str);
|
|
}
|
|
|
|
// eval
|
|
function eval_ast($ast, $env) {
|
|
if (_symbol_Q($ast)) {
|
|
return $env->get($ast);
|
|
} elseif (_sequential_Q($ast)) {
|
|
if (_list_Q($ast)) {
|
|
$el = _list();
|
|
} else {
|
|
$el = _vector();
|
|
}
|
|
foreach ($ast as $a) { $el[] = MAL_EVAL($a, $env); }
|
|
return $el;
|
|
} elseif (_hash_map_Q($ast)) {
|
|
$new_hm = _hash_map();
|
|
foreach (array_keys($ast->getArrayCopy()) as $key) {
|
|
$new_hm[$key] = MAL_EVAL($ast[$key], $env);
|
|
}
|
|
return $new_hm;
|
|
} else {
|
|
return $ast;
|
|
}
|
|
}
|
|
|
|
function MAL_EVAL($ast, $env) {
|
|
while (true) {
|
|
|
|
#echo "MAL_EVAL: " . _pr_str($ast) . "\n";
|
|
if (!_list_Q($ast)) {
|
|
return eval_ast($ast, $env);
|
|
}
|
|
|
|
// apply list
|
|
$a0 = $ast[0];
|
|
$a0v = (_symbol_Q($a0) ? $a0->value : $a0);
|
|
switch ($a0v) {
|
|
case "def!":
|
|
$res = MAL_EVAL($ast[2], $env);
|
|
return $env->set($ast[1], $res);
|
|
case "let*":
|
|
$a1 = $ast[1];
|
|
$let_env = new Env($env);
|
|
for ($i=0; $i < count($a1); $i+=2) {
|
|
$let_env->set($a1[$i], MAL_EVAL($a1[$i+1], $let_env));
|
|
}
|
|
$ast = $ast[2];
|
|
$env = $let_env;
|
|
break; // Continue loop (TCO)
|
|
case "do":
|
|
eval_ast($ast->slice(1, -1), $env);
|
|
$ast = $ast[count($ast)-1];
|
|
break; // Continue loop (TCO)
|
|
case "if":
|
|
$cond = MAL_EVAL($ast[1], $env);
|
|
if ($cond === NULL || $cond === false) {
|
|
if (count($ast) === 4) { $ast = $ast[3]; }
|
|
else { $ast = NULL; }
|
|
} else {
|
|
$ast = $ast[2];
|
|
}
|
|
break; // Continue loop (TCO)
|
|
case "fn*":
|
|
return _function('MAL_EVAL', 'native',
|
|
$ast[2], $env, $ast[1]);
|
|
default:
|
|
$el = eval_ast($ast, $env);
|
|
$f = $el[0];
|
|
$args = array_slice($el->getArrayCopy(), 1);
|
|
if ($f->type === 'native') {
|
|
$ast = $f->ast;
|
|
$env = $f->gen_env($args);
|
|
// Continue loop (TCO)
|
|
} else {
|
|
return $f->apply($args);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
// print
|
|
function MAL_PRINT($exp) {
|
|
return _pr_str($exp, True) . "\n";
|
|
}
|
|
|
|
// repl
|
|
$repl_env = new Env(NULL);
|
|
function rep($str) {
|
|
global $repl_env;
|
|
return MAL_PRINT(MAL_EVAL(READ($str), $repl_env));
|
|
}
|
|
|
|
// core.php: defined using PHP
|
|
foreach ($core_ns as $k=>$v) {
|
|
$repl_env->set(_symbol($k), _function($v));
|
|
}
|
|
|
|
// core.mal: defined using the language itself
|
|
rep("(def! not (fn* (a) (if a false true)))");
|
|
|
|
// repl loop
|
|
do {
|
|
try {
|
|
$line = mal_readline("user> ");
|
|
if ($line === NULL) { break; }
|
|
if ($line !== "") {
|
|
print(rep($line));
|
|
}
|
|
} catch (BlankException $e) {
|
|
continue;
|
|
} catch (Exception $e) {
|
|
echo "Error: " . $e->getMessage() . "\n";
|
|
echo $e->getTraceAsString() . "\n";
|
|
}
|
|
} while (true);
|
|
|
|
?>
|