dust/src/abstract_tree/function_call.rs

124 lines
3.3 KiB
Rust
Raw Normal View History

2023-10-06 17:32:58 +00:00
use serde::{Deserialize, Serialize};
use tree_sitter::Node;
2023-11-30 16:05:09 +00:00
use crate::{
AbstractTree, Error, Identifier, Map, Result, TypeDefinition, Value, BUILT_IN_FUNCTIONS,
};
2023-10-06 17:32:58 +00:00
use super::expression::Expression;
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 {
2023-11-30 16:05:09 +00:00
function_name: Identifier,
2023-11-28 22:54:17 +00:00
arguments: Vec<Expression>,
}
impl FunctionCall {
2023-11-30 16:05:09 +00:00
pub fn new(function_name: Identifier, arguments: Vec<Expression>) -> Self {
2023-11-28 22:54:17 +00:00
Self {
2023-11-30 16:05:09 +00:00
function_name,
2023-11-28 22:54:17 +00:00
arguments,
}
}
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> {
2023-10-06 17:32:58 +00:00
debug_assert_eq!("function_call", node.kind());
2023-11-30 16:05:09 +00:00
let identifier_node = node.child(1).unwrap();
let function_name = Identifier::from_syntax_node(source, identifier_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-02 03:16:50 +00:00
let function_type = function_name.expected_type(context)?;
let function_call = FunctionCall {
2023-11-30 16:05:09 +00:00
function_name,
2023-11-28 22:54:17 +00:00
arguments,
2023-12-02 03:16:50 +00:00
};
function_type.abstract_check(
&function_call.expected_type(context)?,
context,
node,
source,
)?;
Ok(function_call)
2023-11-28 22:54:17 +00:00
}
2023-11-30 00:23:42 +00:00
fn run(&self, source: &str, context: &Map) -> Result<Value> {
2023-11-30 16:05:09 +00:00
let key = self.function_name.inner();
2023-10-31 19:21:13 +00:00
2023-11-30 16:05:09 +00:00
for built_in_function in BUILT_IN_FUNCTIONS {
if key == built_in_function.name() {
let mut arguments = Vec::with_capacity(self.arguments.len());
2023-10-31 19:21:13 +00:00
2023-11-30 16:05:09 +00:00
for expression in &self.arguments {
let value = expression.run(source, context)?;
2023-10-31 19:21:13 +00:00
2023-11-30 16:05:09 +00:00
arguments.push(value);
2023-11-28 22:54:17 +00:00
}
2023-10-31 19:21:13 +00:00
2023-11-30 16:05:09 +00:00
return built_in_function.run(&arguments, context);
}
2023-11-30 16:05:09 +00:00
}
2023-11-30 16:05:09 +00:00
let variables = context.variables()?;
let function = if let Some(value) = variables.get(key) {
value.as_function()?
} else {
return Err(Error::FunctionIdentifierNotFound(
self.function_name.clone(),
));
};
2023-10-07 01:00:31 +00:00
2023-12-02 03:16:50 +00:00
function.call(&self.arguments, source, context)
2023-10-06 17:32:58 +00:00
}
2023-11-30 00:23:42 +00:00
2023-11-30 05:57:15 +00:00
fn expected_type(&self, context: &Map) -> Result<TypeDefinition> {
2023-12-02 03:16:50 +00:00
let function_name = self.function_name.inner();
if let Some(value) = context.variables()?.get(function_name) {
let return_type = value.as_function()?.return_type();
Ok(return_type.clone())
} else {
self.function_name.expected_type(context)
}
2023-11-30 00:23:42 +00:00
}
2023-10-06 17:32:58 +00:00
}
2023-11-30 14:48:56 +00:00
#[cfg(test)]
mod tests {
use crate::{evaluate, Value};
#[test]
fn evaluate_function_call() {
assert_eq!(
evaluate(
"
2023-12-02 03:54:25 +00:00
foobar = <fn str -> str> |message| { message }
2023-11-30 14:48:56 +00:00
(foobar 'Hiya')
",
),
Ok(Value::String("Hiya".to_string()))
);
}
#[test]
fn evaluate_built_in_function_call() {
assert_eq!(evaluate("(output 'Hiya')"), Ok(Value::Empty));
}
}