dust/src/abstract_tree/function_call.rs

175 lines
5.8 KiB
Rust
Raw Normal View History

2023-10-06 17:32:58 +00:00
use serde::{Deserialize, Serialize};
2024-01-06 03:40:58 +00:00
use crate::{
2024-01-31 18:51:48 +00:00
error::{RuntimeError, SyntaxError, ValidationError},
2024-02-01 00:07:18 +00:00
AbstractTree, Error, Expression, Format, FunctionExpression, Map, SourcePosition, SyntaxNode,
2024-01-31 18:51:48 +00:00
Type, Value,
2024-01-06 03:40:58 +00:00
};
2023-10-06 17:32:58 +00:00
2024-01-30 23:19:05 +00:00
/// A function being invoked and the arguments it is being passed.
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-02-01 00:07:18 +00:00
syntax_position: SourcePosition,
2023-11-28 22:54:17 +00:00
}
impl FunctionCall {
2024-01-30 23:19:05 +00:00
/// Returns a new FunctionCall.
2024-01-06 03:40:58 +00:00
pub fn new(
function_expression: FunctionExpression,
arguments: Vec<Expression>,
2024-02-01 00:07:18 +00:00
syntax_position: SourcePosition,
2024-01-06 03:40:58 +00:00
) -> 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 {
2024-01-31 18:51:48 +00:00
fn from_syntax(node: SyntaxNode, source: &str, context: &Map) -> Result<Self, SyntaxError> {
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();
2024-01-10 20:03:52 +00:00
let function_expression = FunctionExpression::from_syntax(function_node, source, 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() {
2024-01-10 20:03:52 +00:00
let expression = Expression::from_syntax(child, source, 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
}
2024-01-31 18:51:48 +00:00
fn expected_type(&self, context: &Map) -> Result<Type, ValidationError> {
match &self.function_expression {
FunctionExpression::Identifier(identifier) => {
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),
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),
FunctionExpression::Yield(r#yield) => r#yield.expected_type(context),
}
}
2024-02-01 00:07:18 +00:00
fn check_type(&self, _source: &str, context: &Map) -> Result<(), ValidationError> {
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(()),
_ => {
2024-02-01 00:07:18 +00:00
return Err(ValidationError::TypeCheckExpectedFunction {
2024-01-06 01:02:29 +00:00
actual: function_expression_type,
2024-02-01 00:07:18 +00:00
position: self.syntax_position,
});
2024-01-06 01:02:29 +00:00
}
2024-01-04 00:57:06 +00:00
};
if self.arguments.len() != parameter_types.len() {
2024-02-01 00:07:18 +00:00
return Err(ValidationError::ExpectedFunctionArgumentAmount {
expected: parameter_types.len(),
2024-01-04 00:57:06 +00:00
actual: self.arguments.len(),
2024-02-01 00:07:18 +00:00
position: self.syntax_position,
});
2024-01-10 01:38:40 +00:00
}
for (index, expression) in self.arguments.iter().enumerate() {
2024-02-01 00:07:18 +00:00
if let Some(expected) = parameter_types.get(index) {
let actual = expression.expected_type(context)?;
if !expected.accepts(&actual) {
return Err(ValidationError::TypeCheck {
expected: expected.clone(),
actual,
position: self.syntax_position,
});
}
2024-01-10 01:38:40 +00:00
}
2024-01-04 00:57:06 +00:00
}
Ok(())
}
2024-01-31 18:51:48 +00:00
fn run(&self, source: &str, context: &Map) -> Result<Value, RuntimeError> {
let 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) {
value.clone()
2023-12-02 07:34:23 +00:00
} else {
2024-02-01 00:07:18 +00:00
return Err(RuntimeError::VariableIdentifierNotFound(
identifier.inner().clone(),
));
2023-12-02 07:34:23 +00:00
}
}
FunctionExpression::FunctionCall(function_call) => {
function_call.run(source, context)?
}
FunctionExpression::Value(value_node) => value_node.run(source, context)?,
FunctionExpression::Index(index) => index.run(source, context)?,
FunctionExpression::Yield(r#yield) => 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);
}
value.as_function()?.call(&arguments, source, context)
2023-10-06 17:32:58 +00:00
}
}
2024-01-06 10:00:36 +00:00
2024-01-06 13:11:09 +00:00
impl Format for FunctionCall {
fn format(&self, output: &mut String, indent_level: u8) {
self.function_expression.format(output, indent_level);
output.push('(');
2024-01-06 10:00:36 +00:00
2024-01-06 13:11:09 +00:00
for expression in &self.arguments {
expression.format(output, indent_level);
2024-01-06 10:00:36 +00:00
}
2024-01-06 13:11:09 +00:00
output.push(')');
2024-01-06 10:00:36 +00:00
}
}