diff options
author | Vincent Ambo <mail@tazj.in> | 2020-12-31T19·05+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-12-31T19·10+0000 |
commit | 1686355d2e26281e5ccf5bc0fec74820b542856d (patch) | |
tree | f30a2029f756660b9832ffa9ba5848fce1a5145d | |
parent | b55caf0338f9bc4bfa4685c657e169940b4a7738 (diff) |
refactor(tazjin/rlox): Hold shared environment ptr in interpreter r/2039
Change-Id: Ia4c4ef330be431a344d42bc00d3a518825fb9399 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2305 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
-rw-r--r-- | users/tazjin/rlox/src/interpreter.rs | 54 |
1 files changed, 37 insertions, 17 deletions
diff --git a/users/tazjin/rlox/src/interpreter.rs b/users/tazjin/rlox/src/interpreter.rs index b7b3570b5da9..b650a4ee6826 100644 --- a/users/tazjin/rlox/src/interpreter.rs +++ b/users/tazjin/rlox/src/interpreter.rs @@ -74,10 +74,40 @@ fn identifier_str<'a>(name: &'a scanner::Token) -> Result<&'a str, Error> { #[derive(Debug, Default)] pub struct Interpreter { - globals: Environment, + env: Rc<RwLock<Environment>>, } impl Interpreter { + // Environment modification helpers + fn define_var(&mut self, name: &scanner::Token, value: Literal) -> Result<(), Error> { + self.env + .write() + .expect("environment lock is poisoned") + .define(name, value) + } + + fn assign_var(&mut self, name: &scanner::Token, value: Literal) -> Result<(), Error> { + self.env + .write() + .expect("environment lock is poisoned") + .assign(name, value) + } + + fn get_var(&mut self, var: &parser::Variable) -> Result<Literal, Error> { + self.env + .read() + .expect("environment lock is poisoned") + .get(var) + } + + fn set_enclosing(&mut self, parent: Rc<RwLock<Environment>>) { + self.env + .write() + .expect("environment lock is poisoned") + .enclosing = Some(parent); + } + + // Interpreter itself pub fn interpret<'a>(&mut self, program: &Block<'a>) -> Result<(), Error> { for stmt in program { self.interpret_stmt(stmt)?; @@ -108,7 +138,7 @@ impl Interpreter { kind: ErrorKind::InternalError("missing variable initialiser".into()), })?; let value = self.eval(init)?; - self.globals.define(&var.name, value)?; + self.define_var(&var.name, value)?; return Ok(()); } @@ -118,23 +148,13 @@ impl Interpreter { // out of the Rc). // // TODO(tazjin): Refactor this to use Rc on the interpreter itself. - let mut previous = Rc::new(RwLock::new(std::mem::replace( - &mut self.globals, - Environment::default(), - ))); - - self.globals.enclosing = Some(previous); + let previous = std::mem::replace(&mut self.env, Default::default()); + self.set_enclosing(previous.clone()); let result = self.interpret(block); // Swap it back, discarding the child env. - previous = self - .globals - .enclosing - .take() - .expect("child environment should not simply vanish"); - - self.globals = Rc::try_unwrap(previous).unwrap().into_inner().unwrap(); + self.env = previous; return result; } @@ -146,7 +166,7 @@ impl Interpreter { Expr::Grouping(grouping) => self.eval(&*grouping.0), Expr::Unary(unary) => self.eval_unary(unary), Expr::Binary(binary) => self.eval_binary(binary), - Expr::Variable(var) => self.globals.get(var), + Expr::Variable(var) => self.get_var(var), } } @@ -213,7 +233,7 @@ impl Interpreter { fn eval_assign<'a>(&mut self, assign: &parser::Assign<'a>) -> Result<Literal, Error> { let value = self.eval(&assign.value)?; - self.globals.assign(&assign.name, value.clone())?; + self.assign_var(&assign.name, value.clone())?; Ok(value) } } |