dust/src/abstract_tree/function_call.rs

162 lines
5.2 KiB
Rust
Raw Normal View History

2023-10-06 17:32:58 +00:00
use serde::{Deserialize, Serialize};
use tree_sitter::Node;
2024-01-06 03:40:58 +00:00
use crate::{
AbstractTree, Error, Expression, FunctionExpression, Map, Result, SyntaxPosition, Type, Value,
};
2023-10-06 17:32:58 +00:00
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)]
2023-11-28 22:54:17 +00:00
pub struct FunctionCall {
function_expression: FunctionExpression,
2023-11-28 22:54:17 +00:00
arguments: Vec<Expression>,
2024-01-06 03:40:58 +00:00
syntax_position: SyntaxPosition,
2023-11-28 22:54:17 +00:00
}
impl FunctionCall {
2024-01-06 03:40:58 +00:00
pub fn new(
function_expression: FunctionExpression,
arguments: Vec<Expression>,
syntax_position: SyntaxPosition,
) -> Self {
2023-11-28 22:54:17 +00:00
Self {
2023-12-02 07:34:23 +00:00
function_expression,
2023-11-28 22:54:17 +00:00
arguments,
2024-01-06 03:40:58 +00:00
syntax_position,
2023-11-28 22:54:17 +00:00
}
}
2023-10-09 19:54:47 +00:00
}
2023-10-06 17:32:58 +00:00
impl AbstractTree for FunctionCall {
2023-11-30 03:54:46 +00:00
fn from_syntax_node(source: &str, node: Node, context: &Map) -> Result<Self> {
Error::expect_syntax_node(source, "function_call", node)?;
2023-10-06 17:32:58 +00:00
2023-12-30 01:14:03 +00:00
let function_node = node.child(0).unwrap();
let function_expression =
FunctionExpression::from_syntax_node(source, function_node, context)?;
2023-11-28 22:54:17 +00:00
2023-10-09 19:54:47 +00:00
let mut arguments = Vec::new();
2023-10-06 17:32:58 +00:00
2023-11-15 00:38:19 +00:00
for index in 2..node.child_count() - 1 {
2023-11-30 03:54:46 +00:00
let child = node.child(index).unwrap();
2023-10-06 17:32:58 +00:00
2023-11-30 03:54:46 +00:00
if child.is_named() {
let expression = Expression::from_syntax_node(source, child, context)?;
2023-10-06 17:32:58 +00:00
2023-10-11 16:07:30 +00:00
arguments.push(expression);
}
2023-10-06 17:32:58 +00:00
}
2023-12-12 23:21:16 +00:00
Ok(FunctionCall {
2023-12-02 07:34:23 +00:00
function_expression,
2023-11-28 22:54:17 +00:00
arguments,
2024-01-06 03:40:58 +00:00
syntax_position: node.range().into(),
2023-12-12 23:21:16 +00:00
})
2023-11-28 22:54:17 +00:00
}
fn check_type(&self, _source: &str, context: &Map) -> Result<()> {
2024-01-04 00:57:06 +00:00
let function_expression_type = self.function_expression.expected_type(context)?;
2024-01-06 01:02:29 +00:00
let parameter_types = match function_expression_type {
Type::Function {
parameter_types, ..
} => parameter_types,
Type::Any => return Ok(()),
_ => {
return Err(Error::TypeCheckExpectedFunction {
actual: function_expression_type,
})
}
2024-01-04 00:57:06 +00:00
};
for (index, expression) in self.arguments.iter().enumerate() {
if let Some(r#type) = parameter_types.get(index) {
r#type.check(&expression.expected_type(context)?)?;
}
}
if self.arguments.len() != parameter_types.len() {
return Err(Error::ExpectedFunctionArgumentAmount {
expected: parameter_types.len(),
actual: self.arguments.len(),
2024-01-06 03:40:58 +00:00
}
.at_source_position(_source, self.syntax_position));
2024-01-04 00:57:06 +00:00
}
Ok(())
}
2023-11-30 00:23:42 +00:00
fn run(&self, source: &str, context: &Map) -> Result<Value> {
2024-01-01 12:46:47 +00:00
let (name, value) = match &self.function_expression {
FunctionExpression::Identifier(identifier) => {
2023-12-02 07:34:23 +00:00
let key = identifier.inner();
let variables = context.variables()?;
2023-12-05 22:40:22 +00:00
2023-12-09 22:15:41 +00:00
if let Some((value, _)) = variables.get(key) {
2024-01-01 12:46:47 +00:00
(Some(key.clone()), value.clone())
2023-12-02 07:34:23 +00:00
} else {
return Err(Error::FunctionIdentifierNotFound(
identifier.inner().clone(),
));
2023-12-02 07:34:23 +00:00
}
}
FunctionExpression::FunctionCall(function_call) => {
2024-01-01 12:46:47 +00:00
(None, function_call.run(source, context)?)
}
2024-01-01 12:46:47 +00:00
FunctionExpression::Value(value_node) => (None, value_node.run(source, context)?),
FunctionExpression::Index(index) => (None, index.run(source, context)?),
FunctionExpression::Yield(r#yield) => (None, r#yield.run(source, context)?),
2023-11-30 16:05:09 +00:00
};
2023-10-07 01:00:31 +00:00
let mut arguments = Vec::with_capacity(self.arguments.len());
for expression in &self.arguments {
let value = expression.run(source, context)?;
arguments.push(value);
}
2024-01-01 12:46:47 +00:00
if let Some(name) = &name {
context.set(name.to_string(), value.clone(), None)?;
}
value
.as_function()
.map_err(|error| {
println!("{name:?}");
error
})?
.call(name, &arguments, source, context)
2023-10-06 17:32:58 +00:00
}
2023-11-30 00:23:42 +00:00
2023-12-05 22:08:22 +00:00
fn expected_type(&self, context: &Map) -> Result<Type> {
2023-12-02 07:34:23 +00:00
match &self.function_expression {
FunctionExpression::Identifier(identifier) => {
2023-12-26 22:52:44 +00:00
let identifier_type = identifier.expected_type(context)?;
if let Type::Function {
parameter_types: _,
return_type,
} = &identifier_type
{
Ok(*return_type.clone())
} else {
Ok(identifier_type)
}
}
FunctionExpression::FunctionCall(function_call) => function_call.expected_type(context),
2024-01-01 09:59:27 +00:00
FunctionExpression::Value(value_node) => {
let value_type = value_node.expected_type(context)?;
if let Type::Function { return_type, .. } = value_type {
Ok(*return_type)
} else {
Ok(value_type)
}
}
FunctionExpression::Index(index) => index.expected_type(context),
2023-12-30 02:15:03 +00:00
FunctionExpression::Yield(r#yield) => r#yield.expected_type(context),
2023-12-02 03:16:50 +00:00
}
2023-11-30 00:23:42 +00:00
}
2023-10-06 17:32:58 +00:00
}