flesh/src/vars.rs

93 lines
3.5 KiB
Rust
Raw Normal View History

/* 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 <http://www.gnu.org/licenses/>.
*/
use std::cell::RefCell;
use std::rc::Rc;
use std::collections::HashMap;
use std::env;
2021-11-06 15:43:42 -07:00
use crate::segment::{Ctr, Ast};
2021-11-14 22:55:52 -08:00
use crate::eval::eval;
2021-11-06 15:43:42 -07:00
use crate::func::{Function, Operation, Args, FTable};
/* Mapping between a string token and a tree of Segments
* The string token can be found in any Ctr::Symbol value
* it is expected that the trees stored are already evaluated
*/
pub type VTable = HashMap<String, Rc<Ctr>>;
// WARNING: make sure var_tree is properly evaluated before storing
pub fn define(
vt: Rc<RefCell<VTable>>,
identifier: String,
var_tree: Rc<Ctr>
) {
if let Some(rc_segment) = vt.borrow_mut().insert(identifier, var_tree) {
drop(rc_segment);
}
}
2021-11-06 15:43:42 -07:00
pub fn get_export(env_cfg: bool) -> Function {
2021-11-06 15:43:42 -07:00
return Function{
name: String::from("export"),
loose_syms: true,
eval_lazy: true,
2021-11-06 15:43:42 -07:00
args: Args::Lazy(2),
function: Operation::Internal(
2021-11-14 22:55:52 -08:00
|a: Ast, b: Rc<RefCell<VTable>>, c: Rc<RefCell<FTable>>| -> Ctr {
2021-11-06 15:43:42 -07:00
let inner = a.borrow_mut();
match &inner.car {
Ctr::Symbol(identifier) => {
2021-11-14 22:55:52 -08:00
match &inner.cdr {
Ctr::Seg(tree) => {
if let Ok(seg) = eval(tree.clone(), b.clone(), c.clone(), false) {
match seg {
Ctr::Seg(val) => {
let val_tmp = val.borrow().clone();
define(b, identifier.to_string(), Rc::new(val_tmp.car));
if env_cfg {
// set var in env
// gotta distill value
// env::set_var(identifier, VALUE)
}
2021-11-14 22:55:52 -08:00
},
_ => {
eprintln!("impossible args to export");
}
}
},
Ctr::None => {
// UNSET VAR LOGIC
2021-11-14 22:55:52 -08:00
}
2021-11-08 00:45:09 -08:00
},
_ => {
2021-11-14 22:55:52 -08:00
eprintln!("args not in standard form");
2021-11-08 00:45:09 -08:00
}
}
2021-11-06 15:43:42 -07:00
return Ctr::None;
},
_ => {
eprintln!("first argument to export must be a symbol");
return Ctr::None;
}
}
}
)
};
}