2020-04-08 17:01:48 +02:00
|
|
|
//! Module which defines the function registration mechanism.
|
|
|
|
#![cfg(not(feature = "no_function"))]
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
2020-04-12 17:00:06 +02:00
|
|
|
use crate::any::Variant;
|
2020-04-08 17:01:48 +02:00
|
|
|
use crate::engine::Engine;
|
|
|
|
use crate::error::ParseError;
|
|
|
|
use crate::parser::AST;
|
|
|
|
use crate::result::EvalAltResult;
|
|
|
|
use crate::scope::Scope;
|
|
|
|
|
2020-04-09 04:38:33 +02:00
|
|
|
use crate::stdlib::{boxed::Box, string::ToString};
|
|
|
|
|
2020-04-08 17:01:48 +02:00
|
|
|
/// A trait to create a Rust anonymous function from a script.
|
2020-04-09 04:38:33 +02:00
|
|
|
pub trait Func<ARGS, RET> {
|
2020-04-08 17:01:48 +02:00
|
|
|
type Output;
|
|
|
|
|
|
|
|
/// Create a Rust anonymous function from an `AST`.
|
|
|
|
/// The `Engine` and `AST` are consumed and basically embedded into the closure.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2020-04-21 17:25:12 +02:00
|
|
|
/// # fn main() -> Result<(), Box<rhai::EvalAltResult>> {
|
2020-04-09 04:38:33 +02:00
|
|
|
/// use rhai::{Engine, Func}; // use 'Func' for 'create_from_ast'
|
2020-04-08 17:01:48 +02:00
|
|
|
///
|
|
|
|
/// let engine = Engine::new(); // create a new 'Engine' just for this
|
|
|
|
///
|
2020-04-21 17:25:12 +02:00
|
|
|
/// let ast = engine.compile("fn calc(x, y) { x + len(y) < 42 }")?;
|
2020-04-08 17:01:48 +02:00
|
|
|
///
|
2020-04-09 04:38:33 +02:00
|
|
|
/// // Func takes two type parameters:
|
2020-04-08 17:01:48 +02:00
|
|
|
/// // 1) a tuple made up of the types of the script function's parameters
|
|
|
|
/// // 2) the return type of the script function
|
|
|
|
/// //
|
2020-04-21 17:25:12 +02:00
|
|
|
/// // 'func' will have type Box<dyn Fn(i64, String) -> Result<bool, Box<EvalAltResult>>> and is callable!
|
2020-04-09 04:38:33 +02:00
|
|
|
/// let func = Func::<(i64, String), bool>::create_from_ast(
|
|
|
|
/// // ^^^^^^^^^^^^^ function parameter types in tuple
|
2020-04-08 17:01:48 +02:00
|
|
|
///
|
|
|
|
/// engine, // the 'Engine' is consumed into the closure
|
|
|
|
/// ast, // the 'AST'
|
|
|
|
/// "calc" // the entry-point function name
|
|
|
|
/// );
|
|
|
|
///
|
|
|
|
/// func(123, "hello".to_string())? == false; // call the anonymous function
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
fn create_from_ast(self, ast: AST, entry_point: &str) -> Self::Output;
|
|
|
|
|
|
|
|
/// Create a Rust anonymous function from a script.
|
|
|
|
/// The `Engine` is consumed and basically embedded into the closure.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2020-04-21 17:25:12 +02:00
|
|
|
/// # fn main() -> Result<(), Box<rhai::EvalAltResult>> {
|
2020-04-09 04:38:33 +02:00
|
|
|
/// use rhai::{Engine, Func}; // use 'Func' for 'create_from_script'
|
2020-04-08 17:01:48 +02:00
|
|
|
///
|
|
|
|
/// let engine = Engine::new(); // create a new 'Engine' just for this
|
|
|
|
///
|
2020-04-21 17:25:12 +02:00
|
|
|
/// let script = "fn calc(x, y) { x + len(y) < 42 }";
|
2020-04-08 17:01:48 +02:00
|
|
|
///
|
2020-04-09 04:38:33 +02:00
|
|
|
/// // Func takes two type parameters:
|
2020-04-08 17:01:48 +02:00
|
|
|
/// // 1) a tuple made up of the types of the script function's parameters
|
|
|
|
/// // 2) the return type of the script function
|
|
|
|
/// //
|
2020-04-21 17:25:12 +02:00
|
|
|
/// // 'func' will have type Box<dyn Fn(i64, String) -> Result<bool, Box<EvalAltResult>>> and is callable!
|
2020-04-09 04:38:33 +02:00
|
|
|
/// let func = Func::<(i64, String), bool>::create_from_script(
|
|
|
|
/// // ^^^^^^^^^^^^^ function parameter types in tuple
|
2020-04-08 17:01:48 +02:00
|
|
|
///
|
|
|
|
/// engine, // the 'Engine' is consumed into the closure
|
|
|
|
/// script, // the script, notice number of parameters must match
|
|
|
|
/// "calc" // the entry-point function name
|
|
|
|
/// )?;
|
|
|
|
///
|
|
|
|
/// func(123, "hello".to_string())? == false; // call the anonymous function
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
fn create_from_script(
|
|
|
|
self,
|
|
|
|
script: &str,
|
|
|
|
entry_point: &str,
|
2020-04-21 17:25:12 +02:00
|
|
|
) -> Result<Self::Output, Box<ParseError>>;
|
2020-04-08 17:01:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! def_anonymous_fn {
|
|
|
|
() => {
|
|
|
|
def_anonymous_fn!(imp);
|
|
|
|
};
|
|
|
|
(imp $($par:ident),*) => {
|
2020-04-16 17:31:48 +02:00
|
|
|
impl<$($par: Variant + Clone,)* RET: Variant + Clone> Func<($($par,)*), RET> for Engine
|
2020-04-08 17:01:48 +02:00
|
|
|
{
|
|
|
|
#[cfg(feature = "sync")]
|
2020-04-21 17:25:12 +02:00
|
|
|
type Output = Box<dyn Fn($($par),*) -> Result<RET, Box<EvalAltResult>> + Send + Sync>;
|
2020-04-08 17:01:48 +02:00
|
|
|
|
|
|
|
#[cfg(not(feature = "sync"))]
|
2020-04-21 17:25:12 +02:00
|
|
|
type Output = Box<dyn Fn($($par),*) -> Result<RET, Box<EvalAltResult>>>;
|
2020-04-08 17:01:48 +02:00
|
|
|
|
|
|
|
fn create_from_ast(self, ast: AST, entry_point: &str) -> Self::Output {
|
|
|
|
let name = entry_point.to_string();
|
|
|
|
|
|
|
|
Box::new(move |$($par: $par),*| {
|
2020-04-09 04:38:33 +02:00
|
|
|
self.call_fn(&mut Scope::new(), &ast, &name, ($($par,)*))
|
2020-04-08 17:01:48 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-04-21 17:25:12 +02:00
|
|
|
fn create_from_script(self, script: &str, entry_point: &str) -> Result<Self::Output, Box<ParseError>> {
|
2020-04-08 17:01:48 +02:00
|
|
|
let ast = self.compile(script)?;
|
2020-04-09 04:38:33 +02:00
|
|
|
Ok(Func::<($($par,)*), RET>::create_from_ast(self, ast, entry_point))
|
2020-04-08 17:01:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
($p0:ident $(, $p:ident)*) => {
|
|
|
|
def_anonymous_fn!(imp $p0 $(, $p)*);
|
|
|
|
def_anonymous_fn!($($p),*);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
def_anonymous_fn!(A, B, C, D, E, F, G, H, J, K, L, M, N, P, Q, R, S, T, U, V);
|