dust/src/abstract_tree/value_node.rs

287 lines
9.9 KiB
Rust
Raw Normal View History

use std::collections::BTreeMap;
2023-10-10 18:12:07 +00:00
use serde::{Deserialize, Serialize};
use tree_sitter::Node;
2023-10-10 21:12:38 +00:00
use crate::{
2023-12-02 03:54:25 +00:00
AbstractTree, Error, Expression, Function, Identifier, List, Map, Result, Statement, Table,
Type, TypeDefinition, Value,
2023-10-10 21:12:38 +00:00
};
2023-10-10 18:12:07 +00:00
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)]
2023-11-27 22:53:12 +00:00
pub enum ValueNode {
Boolean(String),
Float(String),
2023-12-02 03:54:25 +00:00
Function(Function),
2023-11-27 22:53:12 +00:00
Integer(String),
String(String),
List(Vec<Expression>),
Empty,
Map(BTreeMap<String, Statement>),
Table {
column_names: Vec<Identifier>,
rows: Box<Expression>,
},
2023-10-10 18:12:07 +00:00
}
impl AbstractTree for ValueNode {
2023-11-30 03:54:46 +00:00
fn from_syntax_node(source: &str, node: Node, context: &Map) -> Result<Self> {
2023-11-30 14:30:25 +00:00
Error::expect_syntax_node(source, "value", node)?;
2023-10-10 18:12:07 +00:00
let child = node.child(0).unwrap();
2023-11-27 22:53:12 +00:00
let value_node = match child.kind() {
"boolean" => ValueNode::Boolean(source[child.byte_range()].to_string()),
"float" => ValueNode::Float(source[child.byte_range()].to_string()),
2023-12-02 03:54:25 +00:00
"function" => ValueNode::Function(Function::from_syntax_node(source, child, context)?),
2023-11-27 22:53:12 +00:00
"integer" => ValueNode::Integer(source[child.byte_range()].to_string()),
"string" => {
let without_quotes = child.start_byte() + 1..child.end_byte() - 1;
ValueNode::String(source[without_quotes].to_string())
}
2023-10-10 18:12:07 +00:00
"list" => {
2023-10-28 14:28:43 +00:00
let mut expressions = Vec::new();
2023-10-10 18:12:07 +00:00
for index in 1..child.child_count() - 1 {
2023-10-28 14:28:43 +00:00
let current_node = child.child(index).unwrap();
2023-10-10 18:12:07 +00:00
2023-10-28 14:28:43 +00:00
if current_node.is_named() {
2023-11-30 03:54:46 +00:00
let expression =
Expression::from_syntax_node(source, current_node, context)?;
2023-10-28 14:28:43 +00:00
expressions.push(expression);
2023-10-10 18:12:07 +00:00
}
}
2023-11-27 22:53:12 +00:00
ValueNode::List(expressions)
2023-10-10 18:12:07 +00:00
}
2023-10-18 23:26:49 +00:00
"table" => {
2023-10-31 22:18:39 +00:00
let identifier_list_node = child.child(1).unwrap();
let identifier_count = identifier_list_node.child_count();
let mut column_names = Vec::with_capacity(identifier_count);
2023-10-18 23:26:49 +00:00
2023-10-31 22:18:39 +00:00
for index in 0..identifier_count {
let identifier_node = identifier_list_node.child(index).unwrap();
2023-10-18 23:26:49 +00:00
2023-10-31 22:18:39 +00:00
if identifier_node.is_named() {
2023-11-30 03:54:46 +00:00
let identifier =
Identifier::from_syntax_node(source, identifier_node, context)?;
2023-10-18 23:26:49 +00:00
column_names.push(identifier)
}
}
2023-10-31 22:18:39 +00:00
let expression_node = child.child(2).unwrap();
2023-11-30 03:54:46 +00:00
let expression = Expression::from_syntax_node(source, expression_node, context)?;
2023-10-31 22:18:39 +00:00
2023-11-27 22:53:12 +00:00
ValueNode::Table {
2023-10-18 23:26:49 +00:00
column_names,
rows: Box::new(expression),
}
}
2023-10-10 18:12:07 +00:00
"map" => {
let mut child_nodes = BTreeMap::new();
let mut current_key = "".to_string();
for index in 0..child.child_count() - 1 {
let child_syntax_node = child.child(index).unwrap();
if child_syntax_node.kind() == "identifier" {
current_key =
2023-11-30 03:54:46 +00:00
Identifier::from_syntax_node(source, child_syntax_node, context)?
.take_inner();
2023-10-10 18:12:07 +00:00
}
2023-10-31 19:21:13 +00:00
if child_syntax_node.kind() == "statement" {
2023-10-10 18:12:07 +00:00
let key = current_key.clone();
2023-11-30 03:54:46 +00:00
let statement =
Statement::from_syntax_node(source, child_syntax_node, context)?;
2023-10-10 18:12:07 +00:00
2023-10-31 19:21:13 +00:00
child_nodes.insert(key, statement);
2023-10-10 18:12:07 +00:00
}
}
2023-11-27 22:53:12 +00:00
ValueNode::Map(child_nodes)
2023-10-10 18:12:07 +00:00
}
_ => {
return Err(Error::UnexpectedSyntaxNode {
2023-11-30 14:30:25 +00:00
expected: "string, integer, float, boolean, list, table, map, or empty",
2023-10-10 18:12:07 +00:00
actual: child.kind(),
location: child.start_position(),
relevant_source: source[child.byte_range()].to_string(),
})
}
};
2023-11-27 22:53:12 +00:00
Ok(value_node)
2023-10-10 18:12:07 +00:00
}
2023-11-30 00:23:42 +00:00
fn run(&self, source: &str, context: &Map) -> Result<Value> {
2023-11-27 22:53:12 +00:00
let value = match self {
ValueNode::Boolean(value_source) => Value::Boolean(value_source.parse().unwrap()),
ValueNode::Float(value_source) => Value::Float(value_source.parse().unwrap()),
2023-12-02 03:54:25 +00:00
ValueNode::Function(function) => Value::Function(function.clone()),
2023-11-27 22:53:12 +00:00
ValueNode::Integer(value_source) => Value::Integer(value_source.parse().unwrap()),
ValueNode::String(value_source) => Value::String(value_source.parse().unwrap()),
ValueNode::List(expressions) => {
let mut values = Vec::with_capacity(expressions.len());
for node in expressions {
2023-10-10 18:12:07 +00:00
let value = node.run(source, context)?;
values.push(value);
}
2023-10-26 22:03:59 +00:00
Value::List(List::with_items(values))
2023-10-10 18:12:07 +00:00
}
2023-11-27 22:53:12 +00:00
ValueNode::Empty => Value::Empty,
ValueNode::Map(key_statement_pairs) => {
2023-10-29 23:31:06 +00:00
let map = Map::new();
2023-10-10 18:12:07 +00:00
2023-11-05 18:54:29 +00:00
{
let mut variables = map.variables_mut()?;
2023-11-27 22:53:12 +00:00
for (key, statement) in key_statement_pairs {
let value = statement.run(source, context)?;
2023-10-10 18:12:07 +00:00
2023-11-05 18:54:29 +00:00
variables.insert(key.clone(), value);
}
2023-10-10 18:12:07 +00:00
}
2023-10-29 23:31:06 +00:00
Value::Map(map)
2023-10-10 18:12:07 +00:00
}
2023-11-27 22:53:12 +00:00
ValueNode::Table {
2023-10-18 23:26:49 +00:00
column_names,
rows: row_expression,
} => {
let mut headers = Vec::with_capacity(column_names.len());
let mut rows = Vec::new();
for identifier in column_names {
let name = identifier.inner().clone();
headers.push(name)
}
let _row_values = row_expression.run(source, context)?;
2023-10-26 22:03:59 +00:00
let row_values = _row_values.as_list()?.items();
2023-10-18 23:26:49 +00:00
2023-10-26 22:03:59 +00:00
for value in row_values.iter() {
let row = value.as_list()?.items().clone();
2023-10-18 23:26:49 +00:00
rows.push(row)
}
let table = Table::from_raw_parts(headers, rows);
Value::Table(table)
}
2023-10-10 18:12:07 +00:00
};
Ok(value)
}
2023-11-30 00:23:42 +00:00
2023-11-30 05:57:15 +00:00
fn expected_type(&self, context: &Map) -> Result<TypeDefinition> {
let type_definition = match self {
ValueNode::Boolean(_) => TypeDefinition::new(Type::Boolean),
ValueNode::Float(_) => TypeDefinition::new(Type::Float),
2023-12-02 03:54:25 +00:00
ValueNode::Function(function) => Value::Function(function.clone()).r#type(context)?,
2023-11-30 05:57:15 +00:00
ValueNode::Integer(_) => TypeDefinition::new(Type::Integer),
ValueNode::String(_) => TypeDefinition::new(Type::String),
2023-11-30 00:23:42 +00:00
ValueNode::List(expressions) => {
2023-11-30 05:57:15 +00:00
let mut previous_type = None;
for expression in expressions {
let expression_type = expression.expected_type(context)?;
if let Some(previous) = previous_type {
if expression_type != previous {
2023-12-02 07:34:23 +00:00
return Ok(TypeDefinition::new(Type::List(Box::new(Type::Any))));
2023-11-30 05:57:15 +00:00
}
}
2023-11-30 00:23:42 +00:00
2023-11-30 05:57:15 +00:00
previous_type = Some(expression_type);
}
if let Some(previous) = previous_type {
2023-11-30 07:09:55 +00:00
TypeDefinition::new(Type::List(Box::new(previous.take_inner())))
2023-11-30 05:57:15 +00:00
} else {
2023-11-30 07:09:55 +00:00
TypeDefinition::new(Type::List(Box::new(Type::Any)))
2023-11-30 05:57:15 +00:00
}
2023-11-30 00:23:42 +00:00
}
2023-11-30 05:57:15 +00:00
ValueNode::Empty => TypeDefinition::new(Type::Any),
ValueNode::Map(_) => TypeDefinition::new(Type::Map),
2023-11-30 00:23:42 +00:00
ValueNode::Table {
column_names: _,
rows: _,
2023-11-30 05:57:15 +00:00
} => TypeDefinition::new(Type::Table),
2023-11-30 00:23:42 +00:00
};
2023-11-30 05:57:15 +00:00
Ok(type_definition)
2023-11-30 00:23:42 +00:00
}
2023-10-10 18:12:07 +00:00
}
2023-11-30 14:48:56 +00:00
#[cfg(test)]
mod tests {
use crate::{evaluate, List};
use super::*;
#[test]
fn evaluate_empty() {
assert_eq!(evaluate("x = 9"), Ok(Value::Empty));
assert_eq!(evaluate("x = 1 + 1"), Ok(Value::Empty));
}
#[test]
fn evaluate_integer() {
assert_eq!(evaluate("1"), Ok(Value::Integer(1)));
assert_eq!(evaluate("123"), Ok(Value::Integer(123)));
assert_eq!(evaluate("-666"), Ok(Value::Integer(-666)));
}
#[test]
fn evaluate_float() {
assert_eq!(evaluate("0.1"), Ok(Value::Float(0.1)));
assert_eq!(evaluate("12.3"), Ok(Value::Float(12.3)));
assert_eq!(evaluate("-6.66"), Ok(Value::Float(-6.66)));
}
#[test]
fn evaluate_string() {
assert_eq!(evaluate("\"one\""), Ok(Value::String("one".to_string())));
assert_eq!(evaluate("'one'"), Ok(Value::String("one".to_string())));
assert_eq!(evaluate("`one`"), Ok(Value::String("one".to_string())));
assert_eq!(evaluate("`'one'`"), Ok(Value::String("'one'".to_string())));
assert_eq!(evaluate("'`one`'"), Ok(Value::String("`one`".to_string())));
assert_eq!(
evaluate("\"'one'\""),
Ok(Value::String("'one'".to_string()))
);
}
#[test]
fn evaluate_list() {
assert_eq!(
evaluate("[1, 2, 'foobar']"),
Ok(Value::List(List::with_items(vec![
Value::Integer(1),
Value::Integer(2),
Value::String("foobar".to_string()),
])))
);
}
#[test]
fn evaluate_map() {
let map = Map::new();
{
let mut variables = map.variables_mut().unwrap();
variables.insert("x".to_string(), Value::Integer(1));
variables.insert("foo".to_string(), Value::String("bar".to_string()));
}
assert_eq!(evaluate("{ x = 1, foo = 'bar' }"), Ok(Value::Map(map)));
}
}