2021-02-07 23:16:25 -08:00
|
|
|
/* 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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2022-01-16 22:02:40 -08:00
|
|
|
use crate::eval::eval;
|
|
|
|
|
use crate::func::{Args, FTable, Function, Operation};
|
|
|
|
|
use crate::segment::{ast_to_string, Ast, Ctr};
|
2021-03-14 16:14:57 -07:00
|
|
|
use std::cell::RefCell;
|
2021-02-07 23:16:25 -08:00
|
|
|
use std::collections::HashMap;
|
2021-11-21 12:48:11 -08:00
|
|
|
use std::env;
|
2022-01-16 22:02:40 -08:00
|
|
|
use std::rc::Rc;
|
2021-03-14 16:14:57 -07:00
|
|
|
/* Mapping between a string token and a tree of Segments
|
2021-02-07 23:16:25 -08:00
|
|
|
* The string token can be found in any Ctr::Symbol value
|
2021-03-07 19:24:38 -08:00
|
|
|
* it is expected that the trees stored are already evaluated
|
2021-02-07 23:16:25 -08:00
|
|
|
*/
|
2021-03-14 16:14:57 -07:00
|
|
|
pub type VTable = HashMap<String, Rc<Ctr>>;
|
2021-02-07 23:16:25 -08:00
|
|
|
|
2021-03-17 00:03:43 -07:00
|
|
|
// WARNING: make sure var_tree is properly evaluated before storing
|
2022-01-16 22:02:40 -08:00
|
|
|
pub fn define(vt: Rc<RefCell<VTable>>, identifier: String, var_tree: Rc<Ctr>) {
|
2021-03-14 16:14:57 -07:00
|
|
|
if let Some(rc_segment) = vt.borrow_mut().insert(identifier, var_tree) {
|
|
|
|
|
drop(rc_segment);
|
2021-02-07 23:16:25 -08:00
|
|
|
}
|
2021-02-14 16:33:17 -08:00
|
|
|
}
|
2021-11-06 15:43:42 -07:00
|
|
|
|
2021-11-07 22:04:57 -08:00
|
|
|
pub fn get_export(env_cfg: bool) -> Function {
|
2022-01-16 22:01:42 -08:00
|
|
|
// This is the most hilarious way to work around the lifetime of env_cfg
|
|
|
|
|
// TODO: figure out the RUSTEY way of doing this
|
|
|
|
|
if env_cfg {
|
2022-01-16 22:02:40 -08:00
|
|
|
return Function {
|
2022-01-16 22:01:42 -08:00
|
|
|
name: String::from("export"),
|
|
|
|
|
loose_syms: true,
|
|
|
|
|
eval_lazy: true,
|
|
|
|
|
args: Args::Lazy(2),
|
2022-01-16 22:02:40 -08:00
|
|
|
function: Operation::Internal(Box::new(
|
|
|
|
|
|a: Ast, b: Rc<RefCell<VTable>>, c: Rc<RefCell<FTable>>| -> Ctr {
|
|
|
|
|
export_callback(true, a, b, c)
|
|
|
|
|
},
|
|
|
|
|
)),
|
2022-01-16 22:01:42 -08:00
|
|
|
};
|
|
|
|
|
} else {
|
2022-01-16 22:02:40 -08:00
|
|
|
return Function {
|
2022-01-16 22:01:42 -08:00
|
|
|
name: String::from("export"),
|
|
|
|
|
loose_syms: true,
|
|
|
|
|
eval_lazy: true,
|
|
|
|
|
args: Args::Lazy(2),
|
2022-01-16 22:02:40 -08:00
|
|
|
function: Operation::Internal(Box::new(
|
|
|
|
|
|a: Ast, b: Rc<RefCell<VTable>>, c: Rc<RefCell<FTable>>| -> Ctr {
|
|
|
|
|
export_callback(false, a, b, c)
|
|
|
|
|
},
|
|
|
|
|
)),
|
2022-01-16 22:01:42 -08:00
|
|
|
};
|
|
|
|
|
}
|
2021-12-30 21:14:24 -08:00
|
|
|
}
|
2021-11-14 22:55:52 -08:00
|
|
|
|
2022-01-16 22:02:40 -08:00
|
|
|
fn export_callback(env_cfg: bool, a: Ast, b: Rc<RefCell<VTable>>, c: Rc<RefCell<FTable>>) -> Ctr {
|
2022-01-16 22:01:42 -08:00
|
|
|
let inner = a.borrow_mut();
|
|
|
|
|
match &inner.car {
|
|
|
|
|
Ctr::Symbol(identifier) => {
|
|
|
|
|
match &inner.cdr {
|
2022-01-16 22:02:40 -08:00
|
|
|
Ctr::Seg(tree) => match eval(tree.clone(), b.clone(), c.clone(), false) {
|
|
|
|
|
Ok(seg) => match seg {
|
|
|
|
|
Ctr::Seg(val) => {
|
|
|
|
|
define(b, identifier.to_string(), Rc::new(val.borrow().clone().car));
|
|
|
|
|
if env_cfg {
|
|
|
|
|
match val.borrow().clone().car {
|
|
|
|
|
Ctr::Symbol(s) => env::set_var(identifier, s),
|
|
|
|
|
Ctr::String(s) => env::set_var(identifier, s),
|
|
|
|
|
Ctr::Integer(i) => env::set_var(identifier, format!("{}", i)),
|
|
|
|
|
Ctr::Float(f) => env::set_var(identifier, format!("{}", f)),
|
|
|
|
|
Ctr::Bool(b) => env::set_var(identifier, format!("{}", b)),
|
|
|
|
|
Ctr::Seg(c) => env::set_var(identifier, ast_to_string(c)),
|
|
|
|
|
Ctr::None => (),
|
|
|
|
|
}
|
2022-01-16 22:01:42 -08:00
|
|
|
}
|
2022-01-16 22:02:40 -08:00
|
|
|
}
|
2021-11-08 00:45:09 -08:00
|
|
|
|
2022-01-16 22:02:40 -08:00
|
|
|
_ => eprintln!("impossible args to export"),
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
Err(e) => eprintln!("couldnt eval symbol: {}", e),
|
2022-01-16 22:01:42 -08:00
|
|
|
},
|
2021-11-25 21:24:04 -08:00
|
|
|
|
2022-01-16 22:01:42 -08:00
|
|
|
Ctr::None => {
|
|
|
|
|
(*b).borrow_mut().remove(identifier);
|
|
|
|
|
if env_cfg {
|
|
|
|
|
// TODO: unset variable
|
|
|
|
|
}
|
2022-01-16 22:02:40 -08:00
|
|
|
}
|
2021-11-25 21:24:04 -08:00
|
|
|
|
2022-01-16 22:02:40 -08:00
|
|
|
_ => eprintln!("args not in standard form"),
|
2022-01-16 22:01:42 -08:00
|
|
|
}
|
2022-01-16 22:02:40 -08:00
|
|
|
}
|
2021-11-25 21:24:04 -08:00
|
|
|
|
2022-01-16 22:02:40 -08:00
|
|
|
_ => eprintln!("first argument to export must be a symbol"),
|
2022-01-16 22:01:42 -08:00
|
|
|
}
|
2021-12-30 21:14:24 -08:00
|
|
|
|
2022-01-16 22:01:42 -08:00
|
|
|
return Ctr::None;
|
2021-11-06 15:43:42 -07:00
|
|
|
}
|