rhai/src/fn_register.rs

225 lines
7.8 KiB
Rust
Raw Normal View History

2020-03-08 12:54:02 +01:00
//! Module which defines the function registration mechanism.
2016-02-29 22:43:45 +01:00
use crate::any::{Any, Dynamic};
2020-03-04 15:00:01 +01:00
use crate::engine::{Engine, FnCallArgs};
use crate::parser::Position;
2020-03-04 15:00:01 +01:00
use crate::result::EvalAltResult;
2020-03-08 12:54:02 +01:00
use std::any::TypeId;
2016-02-29 22:43:45 +01:00
2020-03-04 15:00:01 +01:00
/// A trait to register custom functions with the `Engine`.
///
/// # Example
///
/// ```rust
2020-03-09 14:09:53 +01:00
/// # fn main() -> Result<(), rhai::EvalAltResult> {
2020-03-04 15:00:01 +01:00
/// use rhai::{Engine, RegisterFn};
///
/// // Normal function
/// fn add(x: i64, y: i64) -> i64 {
/// x + y
/// }
///
/// let mut engine = Engine::new();
///
/// // You must use the trait rhai::RegisterFn to get this method.
/// engine.register_fn("add", add);
///
2020-03-09 14:09:53 +01:00
/// let result = engine.eval::<i64>("add(40, 2)")?;
///
/// println!("Answer: {}", result); // prints 42
/// # Ok(())
/// # }
2020-03-04 15:00:01 +01:00
/// ```
2017-12-20 12:16:14 +01:00
pub trait RegisterFn<FN, ARGS, RET> {
2020-03-04 15:00:01 +01:00
/// Register a custom function with the `Engine`.
2017-12-20 12:16:14 +01:00
fn register_fn(&mut self, name: &str, f: FN);
2016-02-29 22:43:45 +01:00
}
2020-03-04 15:00:01 +01:00
/// A trait to register custom functions that return `Dynamic` values with the `Engine`.
///
/// # Example
///
/// ```rust
2020-03-09 14:09:53 +01:00
/// # fn main() -> Result<(), rhai::EvalAltResult> {
/// use rhai::{Engine, Dynamic, RegisterDynamicFn};
2020-03-04 15:00:01 +01:00
///
/// // Function that returns a Dynamic value
/// fn get_an_any(x: i64) -> Dynamic {
/// Box::new(x)
/// }
///
/// let mut engine = Engine::new();
///
/// // You must use the trait rhai::RegisterDynamicFn to get this method.
/// engine.register_dynamic_fn("get_an_any", get_an_any);
///
2020-03-09 14:09:53 +01:00
/// let result = engine.eval::<i64>("get_an_any(42)")?;
///
/// println!("Answer: {}", result); // prints 42
/// # Ok(())
/// # }
2020-03-04 15:00:01 +01:00
/// ```
pub trait RegisterDynamicFn<FN, ARGS> {
2020-03-04 15:00:01 +01:00
/// Register a custom function returning `Dynamic` values with the `Engine`.
fn register_dynamic_fn(&mut self, name: &str, f: FN);
}
2016-02-29 22:43:45 +01:00
/// A trait to register fallible custom functions returning Result<_, EvalAltResult> with the `Engine`.
///
/// # Example
///
/// ```rust
2020-03-09 14:09:53 +01:00
/// # fn main() -> Result<(), rhai::EvalAltResult> {
/// use rhai::{Engine, RegisterFn};
///
/// // Normal function
/// fn add(x: i64, y: i64) -> i64 {
/// x + y
/// }
///
/// let mut engine = Engine::new();
///
/// // You must use the trait rhai::RegisterFn to get this method.
/// engine.register_fn("add", add);
///
2020-03-09 14:09:53 +01:00
/// let result = engine.eval::<i64>("add(40, 2)")?;
///
/// println!("Answer: {}", result); // prints 42
/// # Ok(())
/// # }
/// ```
pub trait RegisterResultFn<FN, ARGS, RET> {
/// Register a custom function with the `Engine`.
fn register_result_fn(&mut self, name: &str, f: FN);
}
2017-12-20 12:16:14 +01:00
pub struct Ref<A>(A);
pub struct Mut<A>(A);
2017-12-20 12:16:14 +01:00
macro_rules! count_args {
2020-03-04 16:06:05 +01:00
() => { 0_usize };
( $head:ident $($tail:ident)* ) => { 1_usize + count_args!($($tail)*) };
}
2017-12-20 12:16:14 +01:00
macro_rules! def_register {
() => {
def_register!(imp);
};
(imp $($par:ident => $mark:ty => $param:ty => $clone:expr),*) => {
impl<
2017-12-20 12:16:14 +01:00
$($par: Any + Clone,)*
FN: Fn($($param),*) -> RET + 'static,
RET: Any
2020-03-04 15:00:01 +01:00
> RegisterFn<FN, ($($mark,)*), RET> for Engine<'_>
2017-12-20 12:16:14 +01:00
{
fn register_fn(&mut self, name: &str, f: FN) {
2020-03-02 05:08:03 +01:00
let fn_name = name.to_string();
let fun = move |mut args: FnCallArgs, pos: Position| {
2020-03-04 16:06:05 +01:00
// Check for length at the beginning to avoid per-element bound checks.
2020-03-02 05:08:03 +01:00
const NUM_ARGS: usize = count_args!($($par)*);
if args.len() != NUM_ARGS {
2020-03-11 04:03:18 +01:00
return Err(EvalAltResult::ErrorFunctionArgsMismatch(fn_name.clone(), NUM_ARGS, args.len(), pos));
}
2020-03-11 04:03:18 +01:00
#[allow(unused_variables, unused_mut)]
let mut drain = args.drain(..);
$(
// Downcast every element, return in case of a type mismatch
let $par = drain.next().unwrap().downcast_mut::<$par>().unwrap();
)*
// Call the user-supplied function using ($clone) to
// potentially clone the value, otherwise pass the reference.
let r = f($(($clone)($par)),*);
Ok(Box::new(r) as Dynamic)
};
2020-03-04 15:00:01 +01:00
self.register_fn_raw(name, Some(vec![$(TypeId::of::<$par>()),*]), Box::new(fun));
}
}
impl<
$($par: Any + Clone,)*
FN: Fn($($param),*) -> Dynamic + 'static,
2020-03-04 15:00:01 +01:00
> RegisterDynamicFn<FN, ($($mark,)*)> for Engine<'_>
{
fn register_dynamic_fn(&mut self, name: &str, f: FN) {
2020-03-02 05:08:03 +01:00
let fn_name = name.to_string();
let fun = move |mut args: FnCallArgs, pos: Position| {
2020-03-04 16:06:05 +01:00
// Check for length at the beginning to avoid per-element bound checks.
2020-03-02 05:08:03 +01:00
const NUM_ARGS: usize = count_args!($($par)*);
if args.len() != NUM_ARGS {
2020-03-11 04:03:18 +01:00
return Err(EvalAltResult::ErrorFunctionArgsMismatch(fn_name.clone(), NUM_ARGS, args.len(), pos));
}
2020-03-11 04:03:18 +01:00
#[allow(unused_variables, unused_mut)]
let mut drain = args.drain(..);
$(
// Downcast every element, return in case of a type mismatch
let $par = drain.next().unwrap().downcast_mut::<$par>().unwrap();
)*
// Call the user-supplied function using ($clone) to
// potentially clone the value, otherwise pass the reference.
Ok(f($(($clone)($par)),*))
2017-12-20 12:16:14 +01:00
};
2020-03-04 15:00:01 +01:00
self.register_fn_raw(name, Some(vec![$(TypeId::of::<$par>()),*]), Box::new(fun));
2017-12-20 12:16:14 +01:00
}
}
impl<
$($par: Any + Clone,)*
FN: Fn($($param),*) -> Result<RET, EvalAltResult> + 'static,
RET: Any
> RegisterResultFn<FN, ($($mark,)*), RET> for Engine<'_>
{
fn register_result_fn(&mut self, name: &str, f: FN) {
let fn_name = name.to_string();
let fun = move |mut args: FnCallArgs, pos: Position| {
// Check for length at the beginning to avoid per-element bound checks.
const NUM_ARGS: usize = count_args!($($par)*);
if args.len() != NUM_ARGS {
2020-03-11 04:03:18 +01:00
return Err(EvalAltResult::ErrorFunctionArgsMismatch(fn_name.clone(), NUM_ARGS, args.len(), pos));
}
#[allow(unused_variables, unused_mut)]
let mut drain = args.drain(..);
$(
// Downcast every element, return in case of a type mismatch
let $par = drain.next().unwrap().downcast_mut::<$par>().unwrap();
)*
// Call the user-supplied function using ($clone) to
// potentially clone the value, otherwise pass the reference.
2020-03-14 16:41:21 +01:00
f($(($clone)($par)),*).map(|r| Box::new(r) as Dynamic).map_err(|mut err| {
err.set_position(pos);
err
})
};
self.register_fn_raw(name, Some(vec![$(TypeId::of::<$par>()),*]), Box::new(fun));
}
}
2017-12-20 12:16:14 +01:00
//def_register!(imp_pop $($par => $mark => $param),*);
};
($p0:ident $(, $p:ident)*) => {
def_register!(imp $p0 => $p0 => $p0 => Clone::clone $(, $p => $p => $p => Clone::clone)*);
def_register!(imp $p0 => Ref<$p0> => &$p0 => |x| { x } $(, $p => $p => $p => Clone::clone)*);
def_register!(imp $p0 => Mut<$p0> => &mut $p0 => |x| { x } $(, $p => $p => $p => Clone::clone)*);
def_register!($($p),*);
};
// (imp_pop) => {};
// (imp_pop $head:ident => $head_mark:ty => $head_param:ty $(,$tail:ident => $tail_mark:ty => $tp:ty)*) => {
// def_register!(imp $($tail => $tail_mark => $tp),*);
// };
}
2017-12-20 12:16:14 +01:00
#[cfg_attr(rustfmt, rustfmt_skip)]
def_register!(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T);