2023-05-14 23:50:27 -04:00
|
|
|
use std::fmt;
|
2023-05-16 01:15:09 -04:00
|
|
|
use std::boxed::Box;
|
2023-05-14 23:50:27 -04:00
|
|
|
use std::rc::Rc;
|
|
|
|
|
use std::cell::RefCell;
|
|
|
|
|
use std::convert::From;
|
|
|
|
|
|
|
|
|
|
impl From<i32> for Form { fn from(item: i32) -> Self { Form::Int(item) } }
|
|
|
|
|
impl From<bool> for Form { fn from(item: bool) -> Self { Form::Bool(item) } }
|
|
|
|
|
// todo, strings not symbols?
|
|
|
|
|
impl From<String> for Form { fn from(item: String) -> Self { Form::Symbol(item) } }
|
|
|
|
|
impl From<&str> for Form { fn from(item: &str) -> Self { Form::Symbol(item.to_owned()) } }
|
|
|
|
|
|
|
|
|
|
impl<A: Into<Form>, B: Into<Form>> From<(A, B)> for Form {
|
|
|
|
|
fn from(item: (A, B)) -> Self {
|
|
|
|
|
Form::Pair(Rc::new(item.0.into()), Rc::new(item.1.into()))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub enum PossibleTailCall {
|
|
|
|
|
Result(Rc<Form>),
|
|
|
|
|
TailCall(Rc<Form>, Rc<Form>),
|
|
|
|
|
}
|
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
|
|
|
pub enum Form {
|
|
|
|
|
Nil,
|
|
|
|
|
Int(i32),
|
|
|
|
|
Bool(bool),
|
|
|
|
|
Symbol(String),
|
|
|
|
|
Cell(RefCell<Rc<Form>>),
|
|
|
|
|
Pair(Rc<Form>,Rc<Form>),
|
2023-05-22 01:23:17 -04:00
|
|
|
PrimComb(String, fn(Rc<Form>, Rc<Form>, Cont, Cont) -> Cursor),
|
2023-05-14 23:50:27 -04:00
|
|
|
DeriComb { se: Rc<Form>, de: Option<String>, params: String, body: Rc<Form> },
|
2023-05-22 01:23:17 -04:00
|
|
|
ContComb(Cont),
|
2023-05-14 23:50:27 -04:00
|
|
|
}
|
2023-05-16 01:15:09 -04:00
|
|
|
|
2023-05-14 23:50:27 -04:00
|
|
|
impl Form {
|
|
|
|
|
pub fn truthy(&self) -> bool {
|
|
|
|
|
match self {
|
|
|
|
|
Form::Bool(b) => *b,
|
|
|
|
|
Form::Nil => false,
|
|
|
|
|
_ => true,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pub fn int(&self) -> Option<i32> {
|
|
|
|
|
match self {
|
|
|
|
|
Form::Int(i) => Some(*i),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pub fn sym(&self) -> Option<&str> {
|
|
|
|
|
match self {
|
|
|
|
|
Form::Symbol(s) => Some(s),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pub fn car(&self) -> Option<Rc<Form>> {
|
|
|
|
|
match self {
|
|
|
|
|
Form::Pair(car, _cdr) => Some(Rc::clone(car)),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pub fn cdr(&self) -> Option<Rc<Form>> {
|
|
|
|
|
match self {
|
|
|
|
|
Form::Pair(_car, cdr) => Some(Rc::clone(cdr)),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-21 04:14:29 -04:00
|
|
|
pub fn is_nil(&self) -> bool {
|
|
|
|
|
match self {
|
|
|
|
|
Form::Nil => true,
|
|
|
|
|
_ => false,
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-14 23:50:27 -04:00
|
|
|
pub fn append(&self, x: Rc<Form>) -> Option<Form> {
|
|
|
|
|
match self {
|
|
|
|
|
Form::Pair(car, cdr) => cdr.append(x).map(|x| Form::Pair(Rc::clone(car), Rc::new(x))),
|
|
|
|
|
Form::Nil => Some(Form::Pair(x, Rc::new(Form::Nil))),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
impl fmt::Display for Form {
|
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
|
match self {
|
|
|
|
|
Form::Nil => write!(f, "nil"),
|
|
|
|
|
Form::Int(i) => write!(f, "{i}"),
|
|
|
|
|
Form::Bool(b) => write!(f, "{b}"),
|
|
|
|
|
Form::Symbol(s) => write!(f, "{s}"),
|
|
|
|
|
Form::Cell(c) => write!(f, "@{}", c.borrow()),
|
|
|
|
|
Form::Pair(car, cdr) => {
|
|
|
|
|
write!(f, "({}", car)?;
|
|
|
|
|
let mut traverse: Rc<Form> = Rc::clone(cdr);
|
|
|
|
|
loop {
|
|
|
|
|
match &*traverse {
|
|
|
|
|
Form::Pair(ref carp, ref cdrp) => {
|
|
|
|
|
write!(f, " {}", carp)?;
|
|
|
|
|
traverse = Rc::clone(cdrp);
|
|
|
|
|
},
|
|
|
|
|
Form::Nil => {
|
|
|
|
|
write!(f, ")")?;
|
|
|
|
|
return Ok(());
|
|
|
|
|
},
|
|
|
|
|
x => {
|
|
|
|
|
write!(f, ". {x})")?;
|
|
|
|
|
return Ok(());
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Form::PrimComb(name, _f) => write!(f, "<{name}>"),
|
|
|
|
|
Form::DeriComb { se, de, params, body } => {
|
|
|
|
|
write!(f, "<{} {} {}>", de.as_ref().unwrap_or(&"".to_string()), params, body)
|
|
|
|
|
},
|
2023-05-22 01:23:17 -04:00
|
|
|
Form::ContComb(_) => write!(f, "<cont>"),
|
2023-05-14 23:50:27 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-22 01:23:17 -04:00
|
|
|
pub struct Cursor { f: Rc<Form>, c: Cont, metac: Cont }
|
|
|
|
|
#[derive(Debug, Eq, PartialEq, Clone)]
|
2023-05-16 23:31:58 -04:00
|
|
|
pub enum Cont {
|
2023-05-22 01:23:17 -04:00
|
|
|
Exit,
|
|
|
|
|
MetaRet,
|
|
|
|
|
CatchRet { nc: Box<Cont>, restore_meta: Box<Cont> },
|
2023-05-16 23:48:26 -04:00
|
|
|
Eval { e: Rc<Form>, nc: Box<Cont> },
|
|
|
|
|
Call { p: Rc<Form>, e: Rc<Form>, nc: Box<Cont> },
|
2023-05-22 01:23:17 -04:00
|
|
|
PramEval { eval_limit: i32, to_eval: Rc<Form>, collected: Option<Rc<Form>>, e: Rc<Form>, pf: fn(Rc<Form>, Rc<Form>, Cont, Cont) -> Cursor, nc: Box<Cont> },
|
2023-05-16 01:15:09 -04:00
|
|
|
}
|
|
|
|
|
|
2023-05-14 23:50:27 -04:00
|
|
|
pub fn eval(e: Rc<Form>, f: Rc<Form>) -> Rc<Form> {
|
2023-05-22 01:23:17 -04:00
|
|
|
let mut cursor = Cursor { f, c: Cont::Eval { e, nc: Box::new(Cont::MetaRet) }, metac: Cont::Exit };
|
2023-05-14 23:50:27 -04:00
|
|
|
loop {
|
2023-05-22 01:23:17 -04:00
|
|
|
let Cursor { f, c, metac } = cursor;
|
2023-05-16 23:31:58 -04:00
|
|
|
match c {
|
2023-05-22 01:23:17 -04:00
|
|
|
Cont::Exit => return f,
|
|
|
|
|
Cont::MetaRet => {
|
|
|
|
|
cursor = Cursor { f: f, c: metac.clone(), metac: metac };
|
|
|
|
|
},
|
|
|
|
|
Cont::CatchRet { nc, restore_meta } => {
|
|
|
|
|
cursor = Cursor { f: f, c: *nc, metac: *restore_meta };
|
|
|
|
|
},
|
2023-05-21 04:14:29 -04:00
|
|
|
Cont::PramEval { eval_limit, to_eval, collected, e, pf, nc } => {
|
|
|
|
|
let next_collected = if let Some(collected) = collected {
|
|
|
|
|
Rc::new(collected.append(f).unwrap())
|
|
|
|
|
} else { Rc::new(Form::Nil) };
|
|
|
|
|
if eval_limit == 0 || to_eval.is_nil() {
|
|
|
|
|
// hmm, it should probs reverse collected
|
|
|
|
|
let mut traverse = to_eval;
|
|
|
|
|
let mut next_collected = next_collected;
|
|
|
|
|
while !traverse.is_nil() {
|
|
|
|
|
next_collected = Rc::new(next_collected.append(traverse.car().unwrap()).unwrap());
|
|
|
|
|
traverse = traverse.cdr().unwrap();
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
cursor = pf(e, next_collected, *nc, metac);
|
2023-05-21 04:14:29 -04:00
|
|
|
} else {
|
|
|
|
|
cursor = Cursor { f: to_eval.car().unwrap(), c: Cont::Eval { e: Rc::clone(&e), nc: Box::new(Cont::PramEval { eval_limit: eval_limit - 1,
|
|
|
|
|
to_eval: to_eval.cdr().unwrap(),
|
|
|
|
|
collected: Some(next_collected),
|
2023-05-22 01:23:17 -04:00
|
|
|
e, pf, nc }) }, metac };
|
2023-05-21 04:14:29 -04:00
|
|
|
}
|
|
|
|
|
},
|
2023-05-16 23:31:58 -04:00
|
|
|
Cont::Eval { e, nc } => {
|
|
|
|
|
match *f {
|
|
|
|
|
Form::Pair(ref comb, ref p) => {
|
2023-05-22 01:23:17 -04:00
|
|
|
cursor = Cursor { f: Rc::clone(comb), c: Cont::Eval { e: Rc::clone(&e), nc: Box::new(Cont::Call { p: Rc::clone(p), e: e, nc: nc }) }, metac }
|
2023-05-16 23:31:58 -04:00
|
|
|
},
|
|
|
|
|
Form::Symbol(ref s) => {
|
|
|
|
|
let mut t = Rc::clone(&e);
|
|
|
|
|
while s != t.car().unwrap().car().unwrap().sym().unwrap() {
|
|
|
|
|
t = t.cdr().unwrap();
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
cursor = Cursor { f: t.car().unwrap().cdr().unwrap(), c: *nc, metac};
|
2023-05-16 23:31:58 -04:00
|
|
|
},
|
|
|
|
|
_ => {
|
2023-05-22 01:23:17 -04:00
|
|
|
cursor = Cursor { f: f, c: *nc, metac };
|
2023-05-16 23:31:58 -04:00
|
|
|
},
|
2023-05-14 23:50:27 -04:00
|
|
|
}
|
2023-05-16 23:31:58 -04:00
|
|
|
},
|
|
|
|
|
Cont::Call { p, e, nc } => {
|
|
|
|
|
match *f {
|
|
|
|
|
Form::PrimComb(ref _n, ref f) => {
|
2023-05-22 01:23:17 -04:00
|
|
|
cursor = f(e, p, *nc, metac);
|
|
|
|
|
},
|
2023-05-16 23:31:58 -04:00
|
|
|
Form::DeriComb{ref se, ref de, ref params, ref body } => {
|
|
|
|
|
let mut new_e = Rc::clone(se);
|
|
|
|
|
if let Some(de) = de {
|
|
|
|
|
new_e = assoc(de, Rc::clone(&e), new_e);
|
2023-05-14 23:50:27 -04:00
|
|
|
}
|
2023-05-16 23:31:58 -04:00
|
|
|
new_e = assoc(params, p, new_e);
|
2023-05-22 01:23:17 -04:00
|
|
|
cursor = Cursor { f: Rc::clone(body), c: Cont::Eval { e: new_e, nc: nc }, metac };
|
2023-05-16 23:31:58 -04:00
|
|
|
},
|
2023-05-22 01:23:17 -04:00
|
|
|
Form::ContComb(ref c) => {
|
|
|
|
|
cursor = Cursor { f: p.car().unwrap(), c: Cont::Eval { e, nc: Box::new(c.clone()) }, metac: Cont::CatchRet { nc: nc, restore_meta: Box::new(metac) } };
|
|
|
|
|
},
|
|
|
|
|
_ => panic!("Tried to call not a Prim/DeriComb/ContComb {:?}, nc was {:?}", f, nc),
|
2023-05-14 23:50:27 -04:00
|
|
|
}
|
2023-05-16 23:48:26 -04:00
|
|
|
},
|
2023-05-14 23:50:27 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-16 01:15:09 -04:00
|
|
|
|
2023-05-14 23:50:27 -04:00
|
|
|
fn assoc(k: &str, v: Rc<Form>, l: Rc<Form>) -> Rc<Form> {
|
|
|
|
|
Rc::new(Form::Pair(
|
|
|
|
|
Rc::new(Form::Pair(
|
|
|
|
|
Rc::new(Form::Symbol(k.to_owned())),
|
|
|
|
|
v)),
|
|
|
|
|
l))
|
|
|
|
|
}
|
|
|
|
|
fn assoc_vec(kvs: Vec<(&str, Rc<Form>)>) -> Rc<Form> {
|
|
|
|
|
let mut to_ret = Rc::new(Form::Nil);
|
|
|
|
|
for (k, v) in kvs {
|
|
|
|
|
to_ret = assoc(k, v, to_ret);
|
|
|
|
|
}
|
|
|
|
|
to_ret
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn root_env() -> Rc<Form> {
|
|
|
|
|
assoc_vec(vec![
|
2023-05-22 01:23:17 -04:00
|
|
|
("eval", Rc::new(Form::PrimComb("eval".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: ps.car().unwrap(), c: Cont::Eval { e: ps.cdr().unwrap().car().unwrap(), nc: Box::new(c) }, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-21 04:14:29 -04:00
|
|
|
}))),
|
2023-05-16 23:31:58 -04:00
|
|
|
|
2023-05-22 01:23:17 -04:00
|
|
|
("reset", Rc::new(Form::PrimComb("reset".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: p.car().unwrap(),
|
|
|
|
|
c: Cont::Eval { e: e, nc: Box::new(Cont::MetaRet) },
|
|
|
|
|
metac: Cont::CatchRet { nc: Box::new(c), restore_meta: Box::new(metac) } }
|
|
|
|
|
}))),
|
|
|
|
|
("shift", Rc::new(Form::PrimComb("shift".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
|
|
|
|
|
let c_comb_p = Rc::new(Form::Pair(Rc::new(Form::ContComb(c)),
|
|
|
|
|
Rc::new(Form::Nil)));
|
|
|
|
|
Cursor { f: ps.car().unwrap(),
|
|
|
|
|
c: Cont::Call { p: c_comb_p,
|
|
|
|
|
e: e,
|
|
|
|
|
nc: Box::new(Cont::MetaRet) },
|
|
|
|
|
metac: Cont::CatchRet { nc: Box::new(metac.clone()), restore_meta: Box::new(metac) } }
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
|
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-21 04:14:29 -04:00
|
|
|
|
2023-05-14 23:50:27 -04:00
|
|
|
// (vau de params body)
|
2023-05-22 01:23:17 -04:00
|
|
|
("vau", Rc::new(Form::PrimComb("vau".to_owned(), |e, p, c, metac| {
|
2023-05-14 23:50:27 -04:00
|
|
|
let de = p.car().unwrap().sym().map(|s| s.to_owned());
|
|
|
|
|
let params = p.cdr().unwrap().car().unwrap().sym().unwrap().to_owned();
|
|
|
|
|
let body = p.cdr().unwrap().cdr().unwrap().car().unwrap();
|
|
|
|
|
|
2023-05-22 01:23:17 -04:00
|
|
|
Cursor { f: Rc::new(Form::DeriComb { se: e, de, params, body }), c: c, metac: metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("=", Rc::new(Form::PrimComb("=".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Bool(ps.car().unwrap() == ps.cdr().unwrap().car().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("<", Rc::new(Form::PrimComb("<".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Bool(ps.car().unwrap().int().unwrap() < ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("<=", Rc::new(Form::PrimComb("<=".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Bool(ps.car().unwrap().int().unwrap() <= ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-21 04:14:29 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
(">", Rc::new(Form::PrimComb(">".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Bool(ps.car().unwrap().int().unwrap() > ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
(">=", Rc::new(Form::PrimComb(">=".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Bool(ps.car().unwrap().int().unwrap() >= ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-21 04:14:29 -04:00
|
|
|
|
2023-05-22 01:23:17 -04:00
|
|
|
("if", Rc::new(Form::PrimComb("if".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: 1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
if ps.car().unwrap().truthy() {
|
2023-05-22 01:23:17 -04:00
|
|
|
Cursor { f: ps.cdr().unwrap().car().unwrap(), c: Cont::Eval { e: e, nc: Box::new(c) }, metac }
|
2023-05-21 04:14:29 -04:00
|
|
|
} else {
|
2023-05-22 01:23:17 -04:00
|
|
|
Cursor { f: ps.cdr().unwrap().cdr().unwrap().car().unwrap(), c: Cont::Eval { e: e, nc: Box::new(c) }, metac }
|
2023-05-21 04:14:29 -04:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
|
|
|
|
|
2023-05-22 01:23:17 -04:00
|
|
|
("cell", Rc::new(Form::PrimComb("cell".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Cell(RefCell::new(ps.car().unwrap()))), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("set", Rc::new(Form::PrimComb("set".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
match &*ps.car().unwrap() {
|
2023-05-22 01:23:17 -04:00
|
|
|
Form::Cell(cell) => Cursor { f: cell.replace(ps.cdr().unwrap().car().unwrap()), c: c, metac},
|
2023-05-21 04:14:29 -04:00
|
|
|
_ => panic!("set on not cell"),
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("get", Rc::new(Form::PrimComb("get".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
match &*ps.car().unwrap() {
|
2023-05-22 01:23:17 -04:00
|
|
|
Form::Cell(cell) => Cursor { f: Rc::clone(&cell.borrow()), c: c, metac},
|
2023-05-21 04:14:29 -04:00
|
|
|
_ => panic!("get on not cell"),
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
|
|
|
|
|
2023-05-22 01:23:17 -04:00
|
|
|
("cons", Rc::new(Form::PrimComb("cons".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Pair(ps.car().unwrap(), ps.cdr().unwrap().car().unwrap())), c: c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("car", Rc::new(Form::PrimComb("car".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: ps.car().unwrap().car().unwrap(), c: c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("cdr", Rc::new(Form::PrimComb("cdr".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: ps.car().unwrap().cdr().unwrap(), c: c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("quote", Rc::new(Form::PrimComb("quote".to_owned(), |_e, p, c, metac| {
|
|
|
|
|
Cursor { f: p.car().unwrap(), c: c, metac: metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
|
|
|
|
|
2023-05-16 23:31:58 -04:00
|
|
|
//("debug", Rc::new(Form::PrimComb("debug".to_owned(), |e, p, c| {
|
|
|
|
|
////println!("Debug: {:?}", eval(Rc::clone(&e), p.car().unwrap()));
|
|
|
|
|
//println!("Debug: {}", eval(Rc::clone(&e), p.car().unwrap()));
|
|
|
|
|
////PossibleTailCall::TailCall(e, p.cdr().unwrap().car().unwrap())
|
|
|
|
|
//Cursor { f: p.cdr().unwrap().car().unwrap(), c: Cont::Eval { e: e, nc: c } };
|
|
|
|
|
//}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("assert", Rc::new(Form::PrimComb("assert".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: 1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
let thing = ps.car().unwrap();
|
|
|
|
|
if !thing.truthy() {
|
|
|
|
|
println!("Assert failed: {:?}", thing);
|
|
|
|
|
}
|
|
|
|
|
assert!(thing.truthy());
|
2023-05-22 01:23:17 -04:00
|
|
|
Cursor { f: ps.cdr().unwrap().car().unwrap(), c: Cont::Eval { e: e, nc: Box::new(c) }, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
|
|
|
|
|
2023-05-22 01:23:17 -04:00
|
|
|
("+", Rc::new(Form::PrimComb("+".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Int(ps.car().unwrap().int().unwrap() + ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("-", Rc::new(Form::PrimComb("-".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Int(ps.car().unwrap().int().unwrap() - ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("*", Rc::new(Form::PrimComb("*".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Int(ps.car().unwrap().int().unwrap() * ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("/", Rc::new(Form::PrimComb("/".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Int(ps.car().unwrap().int().unwrap() / ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("%", Rc::new(Form::PrimComb("%".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Int(ps.car().unwrap().int().unwrap() % ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("&", Rc::new(Form::PrimComb("&".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Int(ps.car().unwrap().int().unwrap() & ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("|", Rc::new(Form::PrimComb("|".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Int(ps.car().unwrap().int().unwrap() | ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("^", Rc::new(Form::PrimComb("^".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Int(ps.car().unwrap().int().unwrap() ^ ps.cdr().unwrap().car().unwrap().int().unwrap())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
|
|
|
|
|
2023-05-22 01:23:17 -04:00
|
|
|
("comb?", Rc::new(Form::PrimComb("comb?".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
Cursor { f: Rc::new(Form::Bool(match &*ps.car().unwrap() {
|
|
|
|
|
Form::PrimComb(_n, _f) => true,
|
|
|
|
|
Form::DeriComb { .. } => true,
|
|
|
|
|
_ => false,
|
2023-05-22 01:23:17 -04:00
|
|
|
})), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("cell?", Rc::new(Form::PrimComb("cell?".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
Cursor { f: Rc::new(Form::Bool(match &*ps.car().unwrap() {
|
|
|
|
|
Form::Cell(_c) => true,
|
|
|
|
|
_ => false,
|
2023-05-22 01:23:17 -04:00
|
|
|
})), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("pair?", Rc::new(Form::PrimComb("pair?".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
Cursor { f: Rc::new(Form::Bool(match &*ps.car().unwrap() {
|
|
|
|
|
Form::Pair(_a,_b) => true,
|
|
|
|
|
_ => false,
|
2023-05-22 01:23:17 -04:00
|
|
|
})), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("symbol?", Rc::new(Form::PrimComb("symbol?".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
Cursor { f: Rc::new(Form::Bool(match &*ps.car().unwrap() {
|
|
|
|
|
Form::Symbol(_) => true,
|
|
|
|
|
_ => false,
|
2023-05-22 01:23:17 -04:00
|
|
|
})), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("int?", Rc::new(Form::PrimComb("int?".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
Cursor { f: Rc::new(Form::Bool(match &*ps.car().unwrap() {
|
|
|
|
|
Form::Int(_) => true,
|
|
|
|
|
_ => false,
|
2023-05-22 01:23:17 -04:00
|
|
|
})), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("bool?", Rc::new(Form::PrimComb("bool?".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
2023-05-21 04:14:29 -04:00
|
|
|
Cursor { f: Rc::new(Form::Bool(match &*ps.car().unwrap() {
|
|
|
|
|
Form::Bool(_) => true,
|
|
|
|
|
_ => false,
|
2023-05-22 01:23:17 -04:00
|
|
|
})), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
2023-05-22 01:23:17 -04:00
|
|
|
("nil?", Rc::new(Form::PrimComb("nil?".to_owned(), |e, p, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Nil), c: Cont::PramEval { eval_limit: -1, to_eval: p, collected: None, e, pf: |e, ps, c, metac| {
|
|
|
|
|
Cursor { f: Rc::new(Form::Bool(ps.car().unwrap().is_nil())), c, metac}
|
2023-05-21 04:14:29 -04:00
|
|
|
},
|
|
|
|
|
nc: Box::new(c),
|
|
|
|
|
}
|
2023-05-22 01:23:17 -04:00
|
|
|
, metac }
|
2023-05-14 23:50:27 -04:00
|
|
|
}))),
|
|
|
|
|
|
|
|
|
|
// consts
|
|
|
|
|
("true", Rc::new(Form::Bool(true))),
|
|
|
|
|
("false", Rc::new(Form::Bool(false))),
|
|
|
|
|
("nil", Rc::new(Form::Nil)),
|
|
|
|
|
])
|
|
|
|
|
}
|
|
|
|
|
|