2024-08-07 15:38:08 +00:00
|
|
|
use std::collections::HashMap;
|
2024-08-05 02:15:31 +00:00
|
|
|
|
2024-08-05 19:54:48 +00:00
|
|
|
use crate::{
|
2024-08-07 22:24:25 +00:00
|
|
|
abstract_tree::BuiltInFunctionError, parse, AbstractSyntaxTree, Analyzer, AnalyzerError,
|
|
|
|
Identifier, Node, ParseError, Span, Statement, Value, ValueError,
|
2024-08-05 19:54:48 +00:00
|
|
|
};
|
2024-08-05 04:40:51 +00:00
|
|
|
|
|
|
|
pub fn run(
|
|
|
|
input: &str,
|
|
|
|
variables: &mut HashMap<Identifier, Value>,
|
2024-08-07 19:47:37 +00:00
|
|
|
) -> Result<Option<Value>, VmError<Span>> {
|
2024-08-05 22:45:43 +00:00
|
|
|
let abstract_syntax_tree = parse(input)?;
|
2024-08-07 15:57:15 +00:00
|
|
|
let analyzer = Analyzer::new(&abstract_syntax_tree, variables);
|
2024-08-07 15:38:08 +00:00
|
|
|
|
|
|
|
analyzer.analyze()?;
|
|
|
|
|
2024-08-05 22:45:43 +00:00
|
|
|
let mut vm = Vm::new(abstract_syntax_tree);
|
2024-08-05 02:15:31 +00:00
|
|
|
|
2024-08-05 04:40:51 +00:00
|
|
|
vm.run(variables)
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|
|
|
|
|
2024-08-07 19:47:37 +00:00
|
|
|
pub struct Vm<P> {
|
|
|
|
abstract_tree: AbstractSyntaxTree<P>,
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|
|
|
|
|
2024-08-07 19:47:37 +00:00
|
|
|
impl<P: Copy> Vm<P> {
|
|
|
|
pub fn new(abstract_tree: AbstractSyntaxTree<P>) -> Self {
|
2024-08-07 15:38:08 +00:00
|
|
|
Self { abstract_tree }
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|
|
|
|
|
2024-08-05 04:40:51 +00:00
|
|
|
pub fn run(
|
|
|
|
&mut self,
|
|
|
|
variables: &mut HashMap<Identifier, Value>,
|
2024-08-07 19:47:37 +00:00
|
|
|
) -> Result<Option<Value>, VmError<P>> {
|
2024-08-05 02:15:31 +00:00
|
|
|
let mut previous_value = None;
|
|
|
|
|
2024-08-07 15:38:08 +00:00
|
|
|
while let Some(node) = self.abstract_tree.nodes.pop_front() {
|
2024-08-05 04:40:51 +00:00
|
|
|
previous_value = self.run_node(node, variables)?;
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(previous_value)
|
|
|
|
}
|
|
|
|
|
2024-08-05 04:40:51 +00:00
|
|
|
fn run_node(
|
|
|
|
&self,
|
2024-08-07 19:47:37 +00:00
|
|
|
node: Node<P>,
|
2024-08-05 04:40:51 +00:00
|
|
|
variables: &mut HashMap<Identifier, Value>,
|
2024-08-07 19:47:37 +00:00
|
|
|
) -> Result<Option<Value>, VmError<P>> {
|
2024-08-05 04:40:51 +00:00
|
|
|
match node.statement {
|
|
|
|
Statement::Add(left, right) => {
|
2024-08-07 19:47:37 +00:00
|
|
|
let left_span = left.position;
|
2024-08-05 04:40:51 +00:00
|
|
|
let left = if let Some(value) = self.run_node(*left, variables)? {
|
2024-08-05 02:15:31 +00:00
|
|
|
value
|
|
|
|
} else {
|
2024-08-05 04:40:51 +00:00
|
|
|
return Err(VmError::ExpectedValue {
|
|
|
|
position: left_span,
|
|
|
|
});
|
2024-08-05 02:15:31 +00:00
|
|
|
};
|
2024-08-07 19:47:37 +00:00
|
|
|
let right_span = right.position;
|
2024-08-05 04:40:51 +00:00
|
|
|
let right = if let Some(value) = self.run_node(*right, variables)? {
|
2024-08-05 02:15:31 +00:00
|
|
|
value
|
|
|
|
} else {
|
2024-08-05 04:40:51 +00:00
|
|
|
return Err(VmError::ExpectedValue {
|
|
|
|
position: right_span,
|
|
|
|
});
|
2024-08-05 02:15:31 +00:00
|
|
|
};
|
|
|
|
let sum = left.add(&right)?;
|
|
|
|
|
|
|
|
Ok(Some(sum))
|
|
|
|
}
|
2024-08-05 04:40:51 +00:00
|
|
|
Statement::Assign(left, right) => {
|
|
|
|
let identifier = if let Statement::Identifier(identifier) = &left.statement {
|
|
|
|
identifier
|
|
|
|
} else {
|
2024-08-07 14:03:33 +00:00
|
|
|
return Err(VmError::ExpectedIdentifier {
|
2024-08-07 19:47:37 +00:00
|
|
|
position: left.position,
|
2024-08-05 04:40:51 +00:00
|
|
|
});
|
|
|
|
};
|
2024-08-07 19:47:37 +00:00
|
|
|
let right_span = right.position;
|
2024-08-05 04:40:51 +00:00
|
|
|
let value = if let Some(value) = self.run_node(*right, variables)? {
|
|
|
|
value
|
|
|
|
} else {
|
|
|
|
return Err(VmError::ExpectedValue {
|
|
|
|
position: right_span,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
variables.insert(identifier.clone(), value);
|
|
|
|
|
|
|
|
Ok(None)
|
|
|
|
}
|
2024-08-07 22:24:25 +00:00
|
|
|
Statement::BuiltInFunctionCall {
|
|
|
|
function,
|
|
|
|
type_arguments: _,
|
|
|
|
value_arguments: value_nodes,
|
|
|
|
} => {
|
2024-08-07 22:46:40 +00:00
|
|
|
let values = if let Some(nodes) = value_nodes {
|
2024-08-07 22:24:25 +00:00
|
|
|
let mut values = Vec::new();
|
|
|
|
|
|
|
|
for node in nodes {
|
|
|
|
let position = node.position;
|
|
|
|
let value = if let Some(value) = self.run_node(node, variables)? {
|
|
|
|
value
|
|
|
|
} else {
|
|
|
|
return Err(VmError::ExpectedValue { position });
|
|
|
|
};
|
|
|
|
|
|
|
|
values.push(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(values)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let function_call_return = function.call(None, values)?;
|
|
|
|
|
|
|
|
Ok(Some(function_call_return))
|
|
|
|
}
|
|
|
|
Statement::Constant(value) => Ok(Some(value.clone())),
|
|
|
|
Statement::FunctionCall {
|
|
|
|
function: function_node,
|
2024-08-07 22:46:40 +00:00
|
|
|
type_arguments: _,
|
2024-08-07 22:24:25 +00:00
|
|
|
value_arguments: value_parameter_nodes,
|
|
|
|
} => {
|
|
|
|
let function_position = function_node.position;
|
|
|
|
let function_value =
|
|
|
|
if let Some(value) = self.run_node(*function_node, variables)? {
|
|
|
|
value
|
|
|
|
} else {
|
|
|
|
return Err(VmError::ExpectedValue {
|
|
|
|
position: function_position,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
let function = if let Some(function) = function_value.as_function() {
|
|
|
|
function
|
|
|
|
} else {
|
|
|
|
return Err(VmError::AnaylyzerError(AnalyzerError::ExpectedFunction {
|
|
|
|
position: function_position,
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
|
|
|
let value_parameters = if let Some(value_nodes) = value_parameter_nodes {
|
|
|
|
let mut value_parameters = Vec::new();
|
|
|
|
|
|
|
|
for node in value_nodes {
|
|
|
|
let position = node.position;
|
|
|
|
let value = if let Some(value) = self.run_node(node, variables)? {
|
|
|
|
value
|
|
|
|
} else {
|
|
|
|
return Err(VmError::ExpectedValue { position });
|
|
|
|
};
|
|
|
|
|
|
|
|
value_parameters.push(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(value_parameters)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(function
|
|
|
|
.clone()
|
|
|
|
.call(None, value_parameters, variables)
|
|
|
|
.map_err(|error| VmError::FunctionCallFailed {
|
|
|
|
error: Box::new(error),
|
|
|
|
position: function_position,
|
|
|
|
})?)
|
|
|
|
}
|
|
|
|
Statement::Identifier(_) => Ok(None),
|
2024-08-05 04:40:51 +00:00
|
|
|
Statement::List(nodes) => {
|
|
|
|
let values = nodes
|
|
|
|
.into_iter()
|
|
|
|
.map(|node| {
|
2024-08-07 19:47:37 +00:00
|
|
|
let span = node.position;
|
2024-08-05 04:40:51 +00:00
|
|
|
if let Some(value) = self.run_node(node, variables)? {
|
|
|
|
Ok(value)
|
|
|
|
} else {
|
|
|
|
Err(VmError::ExpectedValue { position: span })
|
|
|
|
}
|
|
|
|
})
|
2024-08-07 19:47:37 +00:00
|
|
|
.collect::<Result<Vec<Value>, VmError<P>>>()?;
|
2024-08-05 04:40:51 +00:00
|
|
|
|
|
|
|
Ok(Some(Value::list(values)))
|
|
|
|
}
|
|
|
|
Statement::Multiply(_, _) => todo!(),
|
2024-08-05 18:31:08 +00:00
|
|
|
Statement::PropertyAccess(left, right) => {
|
2024-08-07 19:47:37 +00:00
|
|
|
let left_span = left.position;
|
2024-08-07 22:24:25 +00:00
|
|
|
let left_value = if let Some(value) = self.run_node(*left, variables)? {
|
2024-08-05 18:31:08 +00:00
|
|
|
value
|
|
|
|
} else {
|
|
|
|
return Err(VmError::ExpectedValue {
|
|
|
|
position: left_span,
|
|
|
|
});
|
|
|
|
};
|
2024-08-07 19:47:37 +00:00
|
|
|
let right_span = right.position;
|
2024-08-05 18:31:08 +00:00
|
|
|
|
2024-08-07 22:24:25 +00:00
|
|
|
if let (Some(list), Statement::Constant(value)) =
|
|
|
|
(left_value.as_list(), &right.statement)
|
2024-08-05 19:54:48 +00:00
|
|
|
{
|
2024-08-05 18:58:58 +00:00
|
|
|
if let Some(index) = value.as_integer() {
|
2024-08-05 19:54:48 +00:00
|
|
|
let value = list.get(index as usize).cloned();
|
2024-08-05 18:58:58 +00:00
|
|
|
|
2024-08-05 19:54:48 +00:00
|
|
|
return Ok(value);
|
2024-08-05 18:58:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-07 22:24:25 +00:00
|
|
|
if let (
|
|
|
|
value,
|
|
|
|
Statement::BuiltInFunctionCall {
|
|
|
|
function,
|
2024-08-07 22:46:40 +00:00
|
|
|
type_arguments: _,
|
|
|
|
value_arguments: value_argument_nodes,
|
2024-08-07 22:24:25 +00:00
|
|
|
},
|
|
|
|
) = (left_value, right.statement)
|
|
|
|
{
|
2024-08-07 22:39:28 +00:00
|
|
|
let mut value_arguments = Vec::new();
|
2024-08-07 22:24:25 +00:00
|
|
|
|
2024-08-07 22:39:28 +00:00
|
|
|
value_arguments.push(value);
|
2024-08-07 22:24:25 +00:00
|
|
|
|
2024-08-07 22:39:28 +00:00
|
|
|
if let Some(value_nodes) = value_argument_nodes {
|
2024-08-07 22:24:25 +00:00
|
|
|
for node in value_nodes {
|
|
|
|
let position = node.position;
|
|
|
|
let value = if let Some(value) = self.run_node(node, variables)? {
|
|
|
|
value
|
|
|
|
} else {
|
|
|
|
return Err(VmError::ExpectedValue { position });
|
|
|
|
};
|
|
|
|
|
|
|
|
value_arguments.push(value);
|
|
|
|
}
|
2024-08-07 22:39:28 +00:00
|
|
|
}
|
2024-08-07 22:24:25 +00:00
|
|
|
|
2024-08-07 22:39:28 +00:00
|
|
|
let function_call_return = function.call(None, Some(value_arguments))?;
|
2024-08-07 22:24:25 +00:00
|
|
|
|
|
|
|
return Ok(Some(function_call_return));
|
|
|
|
}
|
|
|
|
|
2024-08-05 18:58:58 +00:00
|
|
|
Err(VmError::ExpectedIdentifierOrInteger {
|
|
|
|
position: right_span,
|
|
|
|
})
|
2024-08-05 18:31:08 +00:00
|
|
|
}
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq)]
|
2024-08-07 19:47:37 +00:00
|
|
|
pub enum VmError<P> {
|
|
|
|
AnaylyzerError(AnalyzerError<P>),
|
2024-08-05 02:15:31 +00:00
|
|
|
ParseError(ParseError),
|
|
|
|
ValueError(ValueError),
|
2024-08-05 04:40:51 +00:00
|
|
|
|
|
|
|
// Anaylsis Failures
|
|
|
|
// These should be prevented by running the analyzer before the VM
|
2024-08-07 22:24:25 +00:00
|
|
|
BuiltInFunctionCallFailed(BuiltInFunctionError),
|
|
|
|
ExpectedIdentifier {
|
|
|
|
position: P,
|
|
|
|
},
|
|
|
|
ExpectedIdentifierOrInteger {
|
|
|
|
position: P,
|
|
|
|
},
|
|
|
|
ExpectedInteger {
|
|
|
|
position: P,
|
|
|
|
},
|
|
|
|
ExpectedList {
|
|
|
|
position: P,
|
|
|
|
},
|
|
|
|
ExpectedValue {
|
|
|
|
position: P,
|
|
|
|
},
|
|
|
|
FunctionCallFailed {
|
|
|
|
error: Box<VmError<()>>,
|
|
|
|
position: P,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<P> From<BuiltInFunctionError> for VmError<P> {
|
|
|
|
fn from(v: BuiltInFunctionError) -> Self {
|
|
|
|
Self::BuiltInFunctionCallFailed(v)
|
|
|
|
}
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|
|
|
|
|
2024-08-07 19:47:37 +00:00
|
|
|
impl<P> From<AnalyzerError<P>> for VmError<P> {
|
|
|
|
fn from(error: AnalyzerError<P>) -> Self {
|
2024-08-07 15:38:08 +00:00
|
|
|
Self::AnaylyzerError(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-07 19:47:37 +00:00
|
|
|
impl<P> From<ParseError> for VmError<P> {
|
2024-08-05 04:40:51 +00:00
|
|
|
fn from(error: ParseError) -> Self {
|
|
|
|
Self::ParseError(error)
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-07 19:47:37 +00:00
|
|
|
impl<P> From<ValueError> for VmError<P> {
|
2024-08-05 04:40:51 +00:00
|
|
|
fn from(error: ValueError) -> Self {
|
|
|
|
Self::ValueError(error)
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
2024-08-07 14:50:19 +00:00
|
|
|
#[test]
|
|
|
|
fn boolean() {
|
|
|
|
let input = "true";
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
run(input, &mut HashMap::new()),
|
|
|
|
Ok(Some(Value::boolean(true)))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-08-05 19:54:48 +00:00
|
|
|
#[test]
|
|
|
|
fn is_even() {
|
2024-08-07 22:24:25 +00:00
|
|
|
let input = "42.is_even()";
|
2024-08-05 19:54:48 +00:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
run(input, &mut HashMap::new()),
|
|
|
|
Ok(Some(Value::boolean(true)))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn is_odd() {
|
2024-08-07 22:24:25 +00:00
|
|
|
let input = "42.is_odd()";
|
2024-08-05 19:54:48 +00:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
run(input, &mut HashMap::new()),
|
|
|
|
Ok(Some(Value::boolean(false)))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-08-05 18:58:58 +00:00
|
|
|
#[test]
|
2024-08-07 22:24:25 +00:00
|
|
|
fn length() {
|
|
|
|
let input = "[1, 2, 3].length()";
|
2024-08-05 18:58:58 +00:00
|
|
|
|
2024-08-07 22:24:25 +00:00
|
|
|
assert_eq!(run(input, &mut HashMap::new()), Ok(Some(Value::integer(3))));
|
2024-08-05 18:58:58 +00:00
|
|
|
}
|
|
|
|
|
2024-08-05 18:31:08 +00:00
|
|
|
#[test]
|
2024-08-07 22:24:25 +00:00
|
|
|
fn list_access() {
|
|
|
|
let input = "[1, 2, 3].1";
|
2024-08-05 18:31:08 +00:00
|
|
|
|
2024-08-07 22:24:25 +00:00
|
|
|
assert_eq!(run(input, &mut HashMap::new()), Ok(Some(Value::integer(2))));
|
2024-08-05 18:31:08 +00:00
|
|
|
}
|
|
|
|
|
2024-08-05 02:15:31 +00:00
|
|
|
#[test]
|
|
|
|
fn add() {
|
|
|
|
let input = "1 + 2";
|
|
|
|
|
2024-08-05 04:40:51 +00:00
|
|
|
assert_eq!(run(input, &mut HashMap::new()), Ok(Some(Value::integer(3))));
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|
2024-08-05 03:11:04 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn add_multiple() {
|
2024-08-05 04:40:51 +00:00
|
|
|
let input = "1 + 2 + 3";
|
2024-08-05 03:11:04 +00:00
|
|
|
|
2024-08-05 04:40:51 +00:00
|
|
|
assert_eq!(run(input, &mut HashMap::new()), Ok(Some(Value::integer(6))));
|
2024-08-05 03:11:04 +00:00
|
|
|
}
|
2024-08-05 02:15:31 +00:00
|
|
|
}
|