2020-05-28 10:10:00 +00:00
|
|
|
<?php
|
2020-12-14 01:49:07 +00:00
|
|
|
/**
|
|
|
|
* MadLisp language
|
|
|
|
* @link http://madlisp.com/
|
|
|
|
* @copyright Copyright (c) 2020 Pekka Laiho
|
|
|
|
*/
|
|
|
|
|
2020-05-28 10:10:00 +00:00
|
|
|
namespace MadLisp;
|
|
|
|
|
|
|
|
class Evaller
|
|
|
|
{
|
2020-06-06 08:31:09 +00:00
|
|
|
protected Tokenizer $tokenizer;
|
|
|
|
protected Reader $reader;
|
2020-06-06 14:02:02 +00:00
|
|
|
protected Printer $printer;
|
2020-12-05 04:24:31 +00:00
|
|
|
protected bool $safemode;
|
2020-06-06 08:31:09 +00:00
|
|
|
|
2020-06-10 13:40:15 +00:00
|
|
|
protected bool $debug = false;
|
2020-06-06 14:02:02 +00:00
|
|
|
|
2020-12-06 14:11:36 +00:00
|
|
|
// Keep cache of macro names so we can skip
|
|
|
|
// macro expansion when possible.
|
|
|
|
protected array $macros = [];
|
|
|
|
|
2020-12-05 04:24:31 +00:00
|
|
|
public function __construct(Tokenizer $tokenizer, Reader $reader, Printer $printer, bool $safemode)
|
2020-06-06 08:31:09 +00:00
|
|
|
{
|
|
|
|
$this->tokenizer = $tokenizer;
|
|
|
|
$this->reader = $reader;
|
2020-06-06 14:02:02 +00:00
|
|
|
$this->printer = $printer;
|
2020-12-05 04:24:31 +00:00
|
|
|
$this->safemode = $safemode;
|
2020-06-06 08:31:09 +00:00
|
|
|
}
|
|
|
|
|
2020-12-06 07:27:55 +00:00
|
|
|
public function eval($ast, Env $env, int $depth = 1)
|
2020-05-28 12:41:41 +00:00
|
|
|
{
|
2020-12-06 07:27:55 +00:00
|
|
|
// Loop for tail call optimization
|
2020-12-06 10:32:29 +00:00
|
|
|
$isTco = false;
|
2020-06-04 14:26:00 +00:00
|
|
|
while (true) {
|
2020-06-04 11:00:30 +00:00
|
|
|
|
2020-12-06 14:11:36 +00:00
|
|
|
// Show debug output
|
|
|
|
if ($this->debug) {
|
|
|
|
printf("%s %2d : ", $isTco ? ' tco' : 'eval', $depth);
|
2020-12-08 11:01:44 +00:00
|
|
|
$this->printer->print($ast, true);
|
2020-12-06 14:11:36 +00:00
|
|
|
print("\n");
|
|
|
|
$isTco = true;
|
|
|
|
}
|
|
|
|
|
2020-12-06 10:32:29 +00:00
|
|
|
// Return here after macro expansion
|
|
|
|
$expandMacros = true;
|
|
|
|
beginning:
|
2020-12-06 01:26:27 +00:00
|
|
|
|
2020-12-06 14:11:36 +00:00
|
|
|
// Handle response for anything but a list
|
|
|
|
if ($ast instanceof Symbol) {
|
|
|
|
return $env->get($ast->getName());
|
|
|
|
} elseif ($ast instanceof Vector || $ast instanceof Hash) {
|
|
|
|
$newData = [];
|
|
|
|
foreach ($ast->getData() as $key => $val) {
|
2020-12-07 02:13:46 +00:00
|
|
|
if ($val instanceof Symbol) {
|
|
|
|
$newData[$key] = $env->get($val->getName());
|
|
|
|
} elseif ($val instanceof Collection) {
|
|
|
|
$newData[$key] = $this->eval($val, $env, $depth + 1);
|
|
|
|
} else {
|
|
|
|
$newData[$key] = $val;
|
|
|
|
}
|
2020-12-06 06:50:51 +00:00
|
|
|
}
|
2020-12-06 14:11:36 +00:00
|
|
|
return $ast::new($newData);
|
|
|
|
} elseif ($ast instanceof MList == false) {
|
|
|
|
return $ast;
|
2020-12-03 03:18:22 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 10:27:26 +00:00
|
|
|
$astData = $ast->getData();
|
|
|
|
$astLength = count($astData);
|
|
|
|
|
2020-12-06 14:11:36 +00:00
|
|
|
// Empty list, we can return
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength == 0) {
|
2020-06-04 14:26:00 +00:00
|
|
|
return $ast;
|
|
|
|
}
|
2020-06-04 11:26:26 +00:00
|
|
|
|
2020-06-04 14:26:00 +00:00
|
|
|
// Handle special forms
|
2020-12-03 10:27:26 +00:00
|
|
|
if ($astData[0] instanceof Symbol) {
|
|
|
|
$symbolName = $astData[0]->getName();
|
2020-12-03 03:08:11 +00:00
|
|
|
|
2020-12-06 10:32:29 +00:00
|
|
|
// Handle macro expansion and go back to beginning to check
|
2020-12-06 14:11:36 +00:00
|
|
|
// if ast is still something we need to evaluate or not.
|
|
|
|
if ($expandMacros && array_key_exists($symbolName, $this->macros)) {
|
2020-12-06 10:32:29 +00:00
|
|
|
$ast = $this->macroexpand($ast, $env);
|
|
|
|
$expandMacros = false;
|
|
|
|
goto beginning;
|
|
|
|
}
|
|
|
|
|
2020-12-03 03:08:11 +00:00
|
|
|
if ($symbolName == 'and') {
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength == 1) {
|
2020-06-04 14:26:00 +00:00
|
|
|
return true;
|
2020-06-04 11:26:26 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 03:18:22 +00:00
|
|
|
for ($i = 1; $i < $astLength - 1; $i++) {
|
2020-12-06 07:27:55 +00:00
|
|
|
$value = $this->eval($astData[$i], $env, $depth + 1);
|
2020-06-04 14:26:00 +00:00
|
|
|
if ($value == false) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|
2020-05-30 11:47:54 +00:00
|
|
|
|
2020-12-03 10:27:26 +00:00
|
|
|
$ast = $astData[$astLength - 1];
|
2020-06-04 14:26:00 +00:00
|
|
|
continue; // tco
|
2020-12-11 01:57:31 +00:00
|
|
|
} elseif ($symbolName == 'case' || $symbolName == 'case-strict') {
|
|
|
|
if ($astLength < 3) {
|
|
|
|
throw new MadLispException("$symbolName requires at least 2 arguments");
|
|
|
|
}
|
|
|
|
|
|
|
|
$value = $this->eval($astData[1], $env, $depth + 1);
|
|
|
|
|
|
|
|
for ($i = 2; $i < $astLength; $i++) {
|
|
|
|
if (!($astData[$i] instanceof Seq)) {
|
|
|
|
throw new MadLispException("argument to $symbolName is not seq");
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = $astData[$i]->getData();
|
|
|
|
|
|
|
|
if (count($data) < 2) {
|
|
|
|
throw new MadLispException("clause for $symbolName requires at least 2 arguments");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($data[0] instanceof Symbol && $data[0]->getName() == 'else') {
|
|
|
|
$test = true;
|
|
|
|
} elseif ($symbolName == 'case') {
|
|
|
|
$test = Util::valueForCompare($value) == Util::valueForCompare($data[0]);
|
|
|
|
} else {
|
|
|
|
// Strict comparison
|
|
|
|
$test = Util::valueForCompare($value) === Util::valueForCompare($data[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($test) {
|
|
|
|
// Evaluate interval expressions
|
|
|
|
for ($j = 1; $j < count($data) - 1; $j++) {
|
|
|
|
$this->eval($data[$j], $env, $depth + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Evaluate last expression
|
|
|
|
$ast = $data[count($data) - 1];
|
|
|
|
continue 2; // tco
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No match
|
|
|
|
return null;
|
2020-12-10 14:46:03 +00:00
|
|
|
} elseif ($symbolName == 'cond') {
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength < 2) {
|
2020-12-10 14:46:03 +00:00
|
|
|
throw new MadLispException("cond requires at least 1 argument");
|
2020-06-04 14:26:00 +00:00
|
|
|
}
|
2020-05-30 11:47:54 +00:00
|
|
|
|
2020-12-10 14:46:03 +00:00
|
|
|
for ($i = 1; $i < $astLength; $i++) {
|
|
|
|
if (!($astData[$i] instanceof Seq)) {
|
|
|
|
throw new MadLispException("argument to cond is not seq");
|
|
|
|
}
|
|
|
|
|
2020-12-11 01:57:31 +00:00
|
|
|
$data = $astData[$i]->getData();
|
2020-12-10 14:46:03 +00:00
|
|
|
|
2020-12-11 01:57:31 +00:00
|
|
|
if (count($data) < 2) {
|
2020-12-10 14:46:03 +00:00
|
|
|
throw new MadLispException("clause for cond requires at least 2 arguments");
|
|
|
|
}
|
|
|
|
|
2020-12-11 01:57:31 +00:00
|
|
|
if ($data[0] instanceof Symbol && $data[0]->getName() == 'else') {
|
2020-12-10 14:46:03 +00:00
|
|
|
$test = true;
|
|
|
|
} else {
|
2020-12-11 01:57:31 +00:00
|
|
|
$test = $this->eval($data[0], $env, $depth + 1);
|
2020-12-10 14:46:03 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 01:57:31 +00:00
|
|
|
if ($test) {
|
2020-12-10 14:46:03 +00:00
|
|
|
// Evaluate interval expressions
|
2020-12-11 01:57:31 +00:00
|
|
|
for ($j = 1; $j < count($data) - 1; $j++) {
|
|
|
|
$this->eval($data[$j], $env, $depth + 1);
|
2020-12-10 14:46:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Evaluate last expression
|
2020-12-11 01:57:31 +00:00
|
|
|
$ast = $data[count($data) - 1];
|
2020-06-04 14:39:26 +00:00
|
|
|
continue 2; // tco
|
2020-06-04 14:26:00 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-30 12:19:37 +00:00
|
|
|
|
2020-12-11 01:57:31 +00:00
|
|
|
// No match
|
2020-12-10 14:46:03 +00:00
|
|
|
return null;
|
2020-12-03 03:08:11 +00:00
|
|
|
} elseif ($symbolName == 'def') {
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength != 3) {
|
2020-06-04 14:26:00 +00:00
|
|
|
throw new MadLispException("def requires exactly 2 arguments");
|
2020-12-09 11:09:35 +00:00
|
|
|
} elseif (!($astData[1] instanceof Symbol)) {
|
2020-06-04 14:26:00 +00:00
|
|
|
throw new MadLispException("first argument to def is not symbol");
|
2020-06-04 10:36:01 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 10:27:26 +00:00
|
|
|
$name = $astData[1]->getName();
|
2020-10-24 05:27:28 +00:00
|
|
|
|
|
|
|
// Do not allow reserved symbols to be defined
|
|
|
|
$reservedSymbols = ['__FILE__', '__DIR__'];
|
|
|
|
if (in_array($name, $reservedSymbols)) {
|
2020-12-14 02:32:16 +00:00
|
|
|
throw new MadLispException("attempt to def reserved symbol $name");
|
2020-10-24 05:27:28 +00:00
|
|
|
}
|
|
|
|
|
2020-12-06 07:27:55 +00:00
|
|
|
$value = $this->eval($astData[2], $env, $depth + 1);
|
2020-12-06 10:32:29 +00:00
|
|
|
|
|
|
|
// Save macros in cache
|
|
|
|
if ($value instanceof Func && $value->isMacro()) {
|
2020-12-06 14:11:36 +00:00
|
|
|
// value does not matter, we check for key
|
|
|
|
$this->macros[$name] = 1;
|
2020-12-06 10:32:29 +00:00
|
|
|
}
|
|
|
|
|
2020-10-24 05:27:28 +00:00
|
|
|
return $env->set($name, $value);
|
2020-12-03 03:08:11 +00:00
|
|
|
} elseif ($symbolName == 'do') {
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength == 1) {
|
2020-06-06 02:39:12 +00:00
|
|
|
return null;
|
2020-06-04 14:26:00 +00:00
|
|
|
}
|
2020-05-31 09:35:03 +00:00
|
|
|
|
2020-12-03 03:18:22 +00:00
|
|
|
for ($i = 1; $i < $astLength - 1; $i++) {
|
2020-12-06 07:27:55 +00:00
|
|
|
$this->eval($astData[$i], $env, $depth + 1);
|
2020-06-04 14:26:00 +00:00
|
|
|
}
|
2020-05-31 09:35:03 +00:00
|
|
|
|
2020-12-03 10:27:26 +00:00
|
|
|
$ast = $astData[$astLength - 1];
|
2020-06-04 14:26:00 +00:00
|
|
|
continue; // tco
|
2020-12-08 11:01:44 +00:00
|
|
|
} elseif ($symbolName == 'env') {
|
2020-12-12 02:08:37 +00:00
|
|
|
if ($astLength != 1) {
|
|
|
|
throw new MadLispException("env does not take arguments");
|
2020-06-04 14:26:00 +00:00
|
|
|
}
|
2020-12-12 02:08:37 +00:00
|
|
|
|
|
|
|
return $env;
|
2020-12-08 11:01:44 +00:00
|
|
|
} elseif ($symbolName == 'eval') {
|
2020-12-14 01:22:22 +00:00
|
|
|
if ($astLength != 2) {
|
|
|
|
throw new MadLispException("eval requires exactly 1 argument");
|
2020-06-06 08:31:09 +00:00
|
|
|
}
|
|
|
|
|
2020-12-06 07:27:55 +00:00
|
|
|
$ast = $this->eval($astData[1], $env, $depth + 1);
|
2020-06-06 08:31:09 +00:00
|
|
|
continue; // tco
|
2020-12-06 01:26:27 +00:00
|
|
|
} elseif ($symbolName == 'fn' || $symbolName == 'macro') {
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength != 3) {
|
2020-12-06 01:26:27 +00:00
|
|
|
throw new MadLispException("$symbolName requires exactly 2 arguments");
|
2020-12-09 11:09:35 +00:00
|
|
|
} elseif (!($astData[1] instanceof Seq)) {
|
2020-12-06 01:26:27 +00:00
|
|
|
throw new MadLispException("first argument to $symbolName is not seq");
|
2020-06-04 14:26:00 +00:00
|
|
|
}
|
2020-05-31 09:35:03 +00:00
|
|
|
|
2020-12-03 10:27:26 +00:00
|
|
|
$bindings = $astData[1]->getData();
|
2020-06-04 14:26:00 +00:00
|
|
|
foreach ($bindings as $bind) {
|
|
|
|
if (!($bind instanceof Symbol)) {
|
2020-12-06 01:26:27 +00:00
|
|
|
throw new MadLispException("binding key for $symbolName is not symbol");
|
2020-06-04 14:26:00 +00:00
|
|
|
}
|
2020-05-31 09:35:03 +00:00
|
|
|
}
|
|
|
|
|
2020-12-06 07:27:55 +00:00
|
|
|
$closure = function (...$args) use ($bindings, $env, $astData, $depth) {
|
2020-06-06 08:31:09 +00:00
|
|
|
$newEnv = new Env('closure', $env);
|
2020-05-30 12:02:41 +00:00
|
|
|
|
2020-12-19 10:45:18 +00:00
|
|
|
Util::bindArguments($newEnv, $bindings, $args);
|
2020-05-30 12:02:41 +00:00
|
|
|
|
2020-12-06 07:27:55 +00:00
|
|
|
return $this->eval($astData[2], $newEnv, $depth + 1);
|
2020-06-05 08:33:52 +00:00
|
|
|
};
|
|
|
|
|
2020-12-06 01:26:27 +00:00
|
|
|
return new UserFunc($closure, $astData[2], $env, $astData[1], $symbolName == 'macro');
|
2020-12-03 03:08:11 +00:00
|
|
|
} elseif ($symbolName == 'if') {
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength < 3 || $astLength > 4) {
|
2020-06-04 14:26:00 +00:00
|
|
|
throw new MadLispException("if requires 2 or 3 arguments");
|
|
|
|
}
|
2020-05-30 11:47:54 +00:00
|
|
|
|
2020-12-06 07:27:55 +00:00
|
|
|
$result = $this->eval($astData[1], $env, $depth + 1);
|
2020-06-04 14:26:00 +00:00
|
|
|
|
|
|
|
if ($result == true) {
|
2020-12-03 10:27:26 +00:00
|
|
|
$ast = $astData[2];
|
2020-12-07 02:13:46 +00:00
|
|
|
continue; // tco
|
2020-12-03 03:18:22 +00:00
|
|
|
} elseif ($astLength == 4) {
|
2020-12-03 10:27:26 +00:00
|
|
|
$ast = $astData[3];
|
2020-12-07 02:13:46 +00:00
|
|
|
continue; // tco
|
2020-06-04 14:26:00 +00:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2020-12-03 03:08:11 +00:00
|
|
|
} elseif ($symbolName == 'let') {
|
2020-12-11 14:29:35 +00:00
|
|
|
if ($astLength < 3) {
|
|
|
|
throw new MadLispException("let requires at least 2 arguments");
|
|
|
|
} elseif (!($astData[1] instanceof Seq)) {
|
|
|
|
throw new MadLispException("first argument to let is not seq");
|
2020-06-04 14:26:00 +00:00
|
|
|
}
|
2020-05-30 11:47:54 +00:00
|
|
|
|
2020-12-03 10:27:26 +00:00
|
|
|
$bindings = $astData[1]->getData();
|
2020-05-30 11:47:54 +00:00
|
|
|
|
2020-06-04 14:26:00 +00:00
|
|
|
if (count($bindings) % 2 == 1) {
|
|
|
|
throw new MadLispException("uneven number of bindings for let");
|
|
|
|
}
|
2020-05-30 11:47:54 +00:00
|
|
|
|
2020-06-06 08:31:09 +00:00
|
|
|
$newEnv = new Env('let', $env);
|
2020-05-30 11:47:54 +00:00
|
|
|
|
2020-06-04 14:26:00 +00:00
|
|
|
for ($i = 0; $i < count($bindings) - 1; $i += 2) {
|
|
|
|
$key = $bindings[$i];
|
|
|
|
|
|
|
|
if (!($key instanceof Symbol)) {
|
|
|
|
throw new MadLispException("binding key for let is not symbol");
|
|
|
|
}
|
|
|
|
|
2020-12-06 07:27:55 +00:00
|
|
|
$val = $this->eval($bindings[$i + 1], $newEnv, $depth + 1);
|
2020-06-04 14:26:00 +00:00
|
|
|
$newEnv->set($key->getName(), $val);
|
2020-05-30 11:47:54 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 14:29:35 +00:00
|
|
|
// Eval interval expressions
|
|
|
|
for ($i = 2; $i < $astLength - 1; $i++) {
|
|
|
|
$this->eval($astData[$i], $newEnv, $depth + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Eval last expression
|
|
|
|
$ast = $astData[$astLength - 1];
|
2020-06-04 14:26:00 +00:00
|
|
|
$env = $newEnv;
|
|
|
|
continue; // tco
|
2020-12-05 04:24:31 +00:00
|
|
|
} elseif (!$this->safemode && $symbolName == 'load') {
|
2020-06-06 08:31:09 +00:00
|
|
|
// Load is here because we want to load into
|
|
|
|
// current $env which is hard otherwise.
|
|
|
|
|
2020-12-05 04:24:31 +00:00
|
|
|
// This is disabled now for safe-mode, but some
|
|
|
|
// use (maybe restricted) might need to be allowed.
|
|
|
|
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength != 2) {
|
2020-06-06 08:31:09 +00:00
|
|
|
throw new MadLispException("load requires exactly 1 argument");
|
|
|
|
}
|
|
|
|
|
2020-10-24 05:27:28 +00:00
|
|
|
// We have to evaluate the argument, it could be a function
|
2020-12-06 07:27:55 +00:00
|
|
|
$filename = $this->eval($astData[1], $env, $depth + 1);
|
2020-06-06 08:31:09 +00:00
|
|
|
|
|
|
|
if (!is_string($filename)) {
|
|
|
|
throw new MadLispException("first argument to load is not string");
|
2020-10-24 05:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Replace ~ with user home directory
|
|
|
|
// Expand relative path names into absolute
|
|
|
|
$targetFile = realpath(str_replace('~', $_SERVER['HOME'], $filename));
|
|
|
|
|
|
|
|
if (!$targetFile || !is_readable($targetFile)) {
|
2020-06-06 08:31:09 +00:00
|
|
|
throw new MadLispException("unable to read file $filename");
|
|
|
|
}
|
|
|
|
|
2020-10-24 05:27:28 +00:00
|
|
|
$input = @file_get_contents($targetFile);
|
2020-06-06 08:31:09 +00:00
|
|
|
|
2020-12-13 08:34:03 +00:00
|
|
|
// Remove #! from the beginning that is used by shell scripts
|
|
|
|
if (extension_loaded('pcre')) {
|
|
|
|
$input = preg_replace('/^#![^\n\r]*[\n\r]+/', '', $input, 1);
|
|
|
|
}
|
|
|
|
|
2020-06-06 08:31:09 +00:00
|
|
|
// Wrap input in a do to process multiple expressions
|
|
|
|
$input = "(do $input)";
|
|
|
|
|
|
|
|
$expr = $this->reader->read($this->tokenizer->tokenize($input));
|
|
|
|
|
2020-10-24 05:27:28 +00:00
|
|
|
// Handle special constants
|
|
|
|
$rootEnv = $env->getRoot();
|
|
|
|
$prevFile = $rootEnv->get('__FILE__');
|
|
|
|
$prevDir = $rootEnv->get('__DIR__');
|
|
|
|
$rootEnv->set('__FILE__', $targetFile);
|
|
|
|
$rootEnv->set('__DIR__', dirname($targetFile) . \DIRECTORY_SEPARATOR);
|
|
|
|
|
|
|
|
// Evaluate the contents
|
2020-12-06 07:27:55 +00:00
|
|
|
$ast = $this->eval($expr, $env, $depth + 1);
|
2020-10-24 05:27:28 +00:00
|
|
|
|
|
|
|
// Restore the special constants to previous values
|
|
|
|
$rootEnv->set('__FILE__', $prevFile);
|
|
|
|
$rootEnv->set('__DIR__', $prevDir);
|
|
|
|
|
2020-06-06 08:31:09 +00:00
|
|
|
continue; // tco
|
2020-12-06 01:26:27 +00:00
|
|
|
} elseif ($symbolName == 'macroexpand') {
|
|
|
|
if ($astLength != 2) {
|
|
|
|
throw new MadLispException("macroexpand requires exactly 1 argument");
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->macroexpand($astData[1], $env);
|
2020-12-08 11:01:44 +00:00
|
|
|
} elseif ($symbolName == 'meta') {
|
2020-12-08 01:25:53 +00:00
|
|
|
if ($astLength != 3) {
|
|
|
|
throw new MadLispException("meta requires exactly 2 arguments");
|
|
|
|
} elseif (!is_string($astData[2])) {
|
|
|
|
throw new MadLispException("third argument to meta is not string");
|
|
|
|
}
|
|
|
|
|
|
|
|
$obj = $this->eval($astData[1], $env, $depth + 1);
|
|
|
|
$attribute = $astData[2];
|
|
|
|
|
|
|
|
if ($obj instanceof Env) {
|
|
|
|
if ($attribute == 'name') {
|
|
|
|
return $obj->getFullName();
|
|
|
|
} elseif ($attribute == 'parent') {
|
|
|
|
return $obj->getParent();
|
|
|
|
} else {
|
|
|
|
throw new MadLispException('unknown attribute for meta');
|
|
|
|
}
|
|
|
|
} elseif ($obj instanceof UserFunc) {
|
|
|
|
if ($attribute == 'args') {
|
|
|
|
return $obj->getBindings();
|
|
|
|
} elseif ($attribute == 'body') {
|
|
|
|
return $obj->getAst();
|
|
|
|
} elseif ($attribute == 'code') {
|
|
|
|
$name = $obj->isMacro() ? 'macro' : 'fn';
|
|
|
|
return new MList([new Symbol($name), $obj->getBindings(), $obj->getAst()]);
|
|
|
|
} elseif ($attribute == 'def') {
|
|
|
|
if ($astData[1] instanceof Symbol) {
|
|
|
|
$def = $obj->isMacro() ? 'defmacro' : 'defn';
|
|
|
|
return new MList([new Symbol($def), $astData[1], $obj->getBindings(), $obj->getAst()]);
|
|
|
|
} else {
|
|
|
|
throw new MadLispException('no name for def in meta');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw new MadLispException('unknown attribute for meta');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw new MadLispException('unknown entity for meta');
|
|
|
|
}
|
2020-12-03 03:08:11 +00:00
|
|
|
} elseif ($symbolName == 'or') {
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength == 1) {
|
2020-06-04 14:26:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-05-30 11:47:54 +00:00
|
|
|
|
2020-12-03 03:18:22 +00:00
|
|
|
for ($i = 1; $i < $astLength - 1; $i++) {
|
2020-12-06 07:27:55 +00:00
|
|
|
$value = $this->eval($astData[$i], $env, $depth + 1);
|
2020-06-04 14:26:00 +00:00
|
|
|
if ($value == true) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|
2020-06-04 11:00:30 +00:00
|
|
|
|
2020-12-03 10:27:26 +00:00
|
|
|
$ast = $astData[$astLength - 1];
|
2020-06-04 14:26:00 +00:00
|
|
|
continue; // tco
|
2020-12-03 03:08:11 +00:00
|
|
|
} elseif ($symbolName == 'quote') {
|
2020-12-03 03:18:22 +00:00
|
|
|
if ($astLength != 2) {
|
2020-06-04 14:26:00 +00:00
|
|
|
throw new MadLispException("quote requires exactly 1 argument");
|
2020-06-04 11:00:30 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 10:27:26 +00:00
|
|
|
return $astData[1];
|
2020-12-05 09:47:49 +00:00
|
|
|
} elseif ($symbolName == 'quasiquote') {
|
|
|
|
if ($astLength != 2) {
|
|
|
|
throw new MadLispException("quasiquote requires exactly 1 argument");
|
|
|
|
}
|
|
|
|
|
|
|
|
$ast = $this->quasiquote($astData[1]);
|
|
|
|
continue; // tco
|
|
|
|
} elseif ($symbolName == 'quasiquote-expand') {
|
|
|
|
if ($astLength != 2) {
|
|
|
|
throw new MadLispException("quasiquote-expand requires exactly 1 argument");
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->quasiquote($astData[1]);
|
2020-12-09 11:09:35 +00:00
|
|
|
} elseif ($symbolName == 'try') {
|
|
|
|
if ($astLength != 3) {
|
|
|
|
throw new MadLispException("try requires exactly 2 arguments");
|
2020-12-11 14:29:35 +00:00
|
|
|
} elseif (!($astData[2] instanceof Seq)) {
|
|
|
|
throw new MadLispException("second argument to try is not seq");
|
2020-12-09 11:09:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$catch = $astData[2]->getData();
|
|
|
|
|
|
|
|
if (count($catch) == 3 && $catch[0] instanceof Symbol &&
|
|
|
|
$catch[0]->getName() == 'catch' && $catch[1] instanceof Symbol) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
return $this->eval($astData[1], $env, $depth + 1);
|
|
|
|
} catch (\Throwable $ex) {
|
|
|
|
if ($ex instanceof MadLispUserException) {
|
|
|
|
$exVal = $ex->getValue();
|
|
|
|
} else {
|
|
|
|
// Return a hash-map for PHP exceptions
|
|
|
|
$exVal = new Hash([
|
|
|
|
'type' => get_class($ex),
|
|
|
|
'file' => $ex->getFile(),
|
|
|
|
'line' => $ex->getLine(),
|
|
|
|
'message' => $ex->getMessage()
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$newEnv = new Env('catch', $env);
|
|
|
|
$newEnv->set($catch[1]->getName(), $exVal);
|
|
|
|
|
|
|
|
$env = $newEnv;
|
|
|
|
$ast = $catch[2];
|
|
|
|
continue; // tco
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw new MadLispException("invalid form for catch");
|
|
|
|
}
|
2020-12-08 09:13:40 +00:00
|
|
|
} elseif ($symbolName == 'undef') {
|
|
|
|
if ($astLength != 2) {
|
|
|
|
throw new MadLispException("undef requires exactly 1 argument");
|
2020-12-09 11:09:35 +00:00
|
|
|
} elseif (!($astData[1] instanceof Symbol)) {
|
2020-12-08 09:13:40 +00:00
|
|
|
throw new MadLispException("first argument to undef is not symbol");
|
|
|
|
}
|
|
|
|
|
|
|
|
return $env->unset($astData[1]->getName());
|
2020-12-12 07:53:48 +00:00
|
|
|
} elseif ($symbolName == 'while') {
|
|
|
|
if ($astLength < 3) {
|
2020-12-14 02:32:16 +00:00
|
|
|
throw new MadLispException("while requires at least 2 arguments");
|
2020-12-12 07:53:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$result = null;
|
|
|
|
|
|
|
|
$test = $this->eval($astData[1], $env, $depth + 1);
|
|
|
|
while ($test) {
|
|
|
|
for ($i = 2; $i < $astLength; $i++) {
|
|
|
|
$result = $this->eval($astData[$i], $env, $depth + 1);
|
|
|
|
}
|
|
|
|
$test = $this->eval($astData[1], $env, $depth + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
2020-05-28 13:30:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-06 14:11:36 +00:00
|
|
|
// Eval all items in list
|
|
|
|
$newData = [];
|
|
|
|
foreach ($astData as $a) {
|
|
|
|
if ($a instanceof Symbol) {
|
|
|
|
$newData[] = $env->get($a->getName());
|
|
|
|
} elseif ($a instanceof Collection) {
|
|
|
|
$newData[] = $this->eval($a, $env, $depth + 1);
|
|
|
|
} else {
|
|
|
|
$newData[] = $a;
|
|
|
|
}
|
|
|
|
}
|
2020-05-28 10:10:00 +00:00
|
|
|
|
2020-06-05 08:33:52 +00:00
|
|
|
// First item is function, rest are arguments
|
2020-12-06 14:11:36 +00:00
|
|
|
$func = $newData[0];
|
|
|
|
$args = array_slice($newData, 1);
|
2020-06-05 08:33:52 +00:00
|
|
|
|
|
|
|
if ($func instanceof CoreFunc) {
|
|
|
|
return $func->call($args);
|
|
|
|
} elseif ($func instanceof UserFunc) {
|
|
|
|
$ast = $func->getAst();
|
|
|
|
$env = $func->getEnv($args);
|
2020-12-06 14:11:36 +00:00
|
|
|
// tco
|
2020-06-05 08:33:52 +00:00
|
|
|
} else {
|
2020-06-04 14:26:00 +00:00
|
|
|
throw new MadLispException("eval: first item of list is not function");
|
|
|
|
}
|
|
|
|
}
|
2020-05-28 10:10:00 +00:00
|
|
|
}
|
2020-06-04 02:10:48 +00:00
|
|
|
|
2020-12-05 01:42:56 +00:00
|
|
|
public function getDebug(): bool
|
|
|
|
{
|
|
|
|
return $this->debug;
|
|
|
|
}
|
|
|
|
|
2020-06-10 13:40:15 +00:00
|
|
|
public function setDebug(bool $val): void
|
|
|
|
{
|
|
|
|
$this->debug = $val;
|
|
|
|
}
|
|
|
|
|
2020-12-06 06:32:52 +00:00
|
|
|
private function macroexpand($ast, Env $env)
|
2020-12-06 01:26:27 +00:00
|
|
|
{
|
2020-12-06 06:32:52 +00:00
|
|
|
while ($ast instanceof MList) {
|
2020-12-06 01:26:27 +00:00
|
|
|
$data = $ast->getData();
|
|
|
|
if (count($data) > 0 && $data[0] instanceof Symbol) {
|
|
|
|
$fn = $env->get($data[0]->getName(), false);
|
|
|
|
if ($fn && $fn instanceof Func && $fn->isMacro()) {
|
2020-12-06 06:32:52 +00:00
|
|
|
$ast = $fn->call(array_slice($data, 1));
|
|
|
|
continue;
|
2020-12-06 01:26:27 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-06 06:32:52 +00:00
|
|
|
break;
|
2020-12-06 01:26:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $ast;
|
|
|
|
}
|
|
|
|
|
2020-12-05 09:47:49 +00:00
|
|
|
private function quasiquote($ast)
|
|
|
|
{
|
|
|
|
if ($ast instanceof MList) {
|
|
|
|
$data = $ast->getData();
|
|
|
|
|
|
|
|
// Check for unquote
|
|
|
|
if (count($data) > 0 && $data[0] instanceof Symbol && $data[0]->getName() == 'unquote') {
|
|
|
|
if (count($data) == 2) {
|
|
|
|
return $data[1];
|
|
|
|
} else {
|
|
|
|
throw new MadLispException("unquote requires exactly 1 argument");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-05 10:15:15 +00:00
|
|
|
return $this->quasiquoteLoop($data);
|
|
|
|
} elseif ($ast instanceof Vector) {
|
|
|
|
return new MList([
|
|
|
|
new Symbol('ltov'),
|
|
|
|
$this->quasiquoteLoop($ast->getData())
|
|
|
|
]);
|
|
|
|
} elseif ($ast instanceof Symbol || $ast instanceof Hash) {
|
|
|
|
// Quote other forms which are affected by evaluation
|
|
|
|
return new MList([
|
|
|
|
new Symbol('quote'),
|
|
|
|
$ast
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
return $ast;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function quasiquoteLoop(array $data): MList
|
|
|
|
{
|
|
|
|
$result = new MList();
|
|
|
|
|
|
|
|
for ($i = count($data) - 1; $i >= 0; $i--) {
|
|
|
|
$elt = $data[$i];
|
|
|
|
|
2020-12-05 10:22:50 +00:00
|
|
|
if ($elt instanceof MList && count($elt->getData()) > 0 && $elt->get(0) instanceof Symbol && $elt->get(0)->getName() == 'unquote-splice') {
|
2020-12-05 10:15:15 +00:00
|
|
|
if (count($elt->getData()) == 2) {
|
2020-12-05 09:47:49 +00:00
|
|
|
$result = new MList([
|
2020-12-05 10:15:15 +00:00
|
|
|
new Symbol('concat'),
|
|
|
|
$elt->get(1),
|
2020-12-05 09:47:49 +00:00
|
|
|
$result
|
|
|
|
]);
|
2020-12-05 10:15:15 +00:00
|
|
|
} else {
|
2020-12-05 10:22:50 +00:00
|
|
|
throw new MadLispException("unquote-splice requires exactly 1 argument");
|
2020-12-05 09:47:49 +00:00
|
|
|
}
|
2020-12-05 10:15:15 +00:00
|
|
|
} else {
|
|
|
|
$result = new MList([
|
2020-12-06 03:18:52 +00:00
|
|
|
new Symbol('cons'),
|
2020-12-05 10:15:15 +00:00
|
|
|
$this->quasiquote($elt),
|
|
|
|
$result
|
|
|
|
]);
|
2020-12-05 09:47:49 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-05 10:15:15 +00:00
|
|
|
|
|
|
|
return $result;
|
2020-12-05 09:47:49 +00:00
|
|
|
}
|
2020-05-28 10:10:00 +00:00
|
|
|
}
|