/* relish: versatile lisp shell * Copyright (C) 2021 Aidan Hahn * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ use crate::segment::{Ctr, Seg, Type}; use crate::eval::eval; use crate::sym::{SymTable, Symbol, ValueType, Args, UserFn}; use std::env; use std::rc::Rc; fn store_stdlib(env: bool, syms: &mut SymTable) -> Result<(), String> { syms.insert("def".to_string(), Symbol { name: String::from("export"), args: Args::Lazy(2), conditional_branches: false, value: ValueType::Internal(Rc::new( move |ast: &Seg, syms: &mut SymTable| -> Ctr { _store_callback(ast, syms, env) }, )), }); syms.insert("append".to_string(), Symbol { name: String::from("append"), args: Args::Infinite, conditional_branches: false, value: ValueType::Internal(Rc::new(_append_callback)), }); Ok(()) } fn _append_callback (_ast: &Seg, _syms: &mut SymTable) -> Ctr { // if car is a list, append cdr // otherwise create a list out of all arguments todo!() } fn _store_callback (ast: &Seg, syms: &mut SymTable, env_cfg: bool) -> Ctr { let is_var = ast.len() == 2; if let Ctr::Symbol(ref identifier) = *ast.car { match &*ast.cdr { Ctr::Seg(data_tree) if is_var => match eval(&Box::new(data_tree), syms) { Ok(seg) => if let Ctr::Seg(ref val) = *seg { syms.insert(identifier.clone(), Symbol{ value: ValueType::VarForm(val.car.clone()), name: identifier.clone(), args: Args::None, conditional_branches: false, }); if env_cfg { env::set_var(identifier.clone(), val.car.to_string()); } } else { eprintln!("impossible args to export") }, Err(e) => eprintln!("couldnt eval symbol: {}", e), }, Ctr::Seg(data_tree) if !is_var => { if let Ctr::Seg(ref args) = *data_tree.car { let mut arg_list = vec![]; if !args.circuit(&mut |c: &Ctr| -> bool { if let Ctr::Symbol(ref arg) = c { arg_list.push(arg.clone()); true } else { false } }) { eprintln!("all arguments defined for function must be of type symbol"); return Ctr::None; }; if let Ctr::Seg(ref bodies) = *data_tree.cdr { syms.insert(identifier.clone(), Symbol{ value: ValueType::FuncForm(UserFn{ ast: Box::new(bodies.clone()), arg_syms: arg_list.clone(), }), name: identifier.clone(), args: Args::Strict(arg_list .into_iter() .map(Type::from) .collect()), conditional_branches: false, }); } else { eprintln!("expected one or more function bodies in function definition"); return Ctr::None; } } else { eprintln!("expected list of arguments in function definition"); return Ctr::None; } } Ctr::None => { syms.remove(&identifier.to_string()); if env_cfg { env::remove_var(identifier); } }, _ => eprintln!("args not in standard form"), } } else { eprintln!("first argument to export must be a symbol"); } Ctr::None }