rhai/src/module.rs

1005 lines
32 KiB
Rust
Raw Normal View History

//! Module defining external-loaded modules for Rhai.
#![cfg(not(feature = "no_module"))]
2020-05-05 09:00:10 +02:00
use crate::any::{Dynamic, Variant};
2020-05-05 11:51:40 +02:00
use crate::calc_fn_hash;
2020-05-11 07:36:50 +02:00
use crate::engine::{Engine, FunctionsLib};
use crate::fn_native::{
FnAny, FnCallArgs, NativeCallable, NativeFunction, NativeFunctionABI, NativeFunctionABI::*,
SharedNativeFunction,
};
2020-05-11 07:36:50 +02:00
use crate::parser::{FnAccess, FnDef, SharedFnDef, AST};
2020-05-05 09:00:10 +02:00
use crate::result::EvalAltResult;
use crate::scope::{Entry as ScopeEntry, EntryType as ScopeEntryType, Scope};
use crate::token::{Position, Token};
use crate::utils::{StaticVec, EMPTY_TYPE_ID};
2020-05-05 17:57:25 +02:00
use crate::stdlib::{
any::TypeId,
boxed::Box,
collections::HashMap,
fmt,
iter::{empty, repeat},
mem,
num::NonZeroUsize,
ops::{Deref, DerefMut},
rc::Rc,
string::{String, ToString},
sync::Arc,
vec,
vec::Vec,
2020-05-05 17:57:25 +02:00
};
/// A trait that encapsulates a module resolution service.
2020-05-12 10:32:22 +02:00
#[cfg(not(feature = "sync"))]
2020-05-05 17:57:25 +02:00
pub trait ModuleResolver {
/// Resolve a module based on a path string.
fn resolve(
&self,
engine: &Engine,
2020-05-08 10:49:24 +02:00
scope: Scope,
path: &str,
pos: Position,
) -> Result<Module, Box<EvalAltResult>>;
2020-05-05 17:57:25 +02:00
}
2020-05-12 10:32:22 +02:00
/// A trait that encapsulates a module resolution service.
#[cfg(feature = "sync")]
pub trait ModuleResolver: Send + Sync {
/// Resolve a module based on a path string.
fn resolve(
&self,
engine: &Engine,
scope: Scope,
path: &str,
pos: Position,
) -> Result<Module, Box<EvalAltResult>>;
}
/// Default function access mode.
const DEF_ACCESS: FnAccess = FnAccess::Public;
/// Return type of module-level Rust function.
type FuncReturn<T> = Result<T, Box<EvalAltResult>>;
2020-05-05 09:00:10 +02:00
/// An imported module, which may contain variables, sub-modules,
/// external Rust functions, and script-defined functions.
///
/// Not available under the `no_module` feature.
2020-05-05 17:57:25 +02:00
#[derive(Default, Clone)]
2020-05-05 09:00:10 +02:00
pub struct Module {
/// Sub-modules.
modules: HashMap<String, Module>,
/// Module variables.
2020-05-05 09:00:10 +02:00
variables: HashMap<String, Dynamic>,
2020-05-05 17:57:25 +02:00
/// Flattened collection of all module variables, including those in sub-modules.
all_variables: HashMap<u64, Dynamic>,
2020-05-05 09:00:10 +02:00
/// External Rust functions.
2020-05-11 07:36:50 +02:00
functions: HashMap<u64, (String, FnAccess, Vec<TypeId>, SharedNativeFunction)>,
/// Flattened collection of all external Rust functions, including those in sub-modules.
2020-05-11 07:36:50 +02:00
all_functions: HashMap<u64, SharedNativeFunction>,
2020-05-05 17:57:25 +02:00
2020-05-05 09:00:10 +02:00
/// Script-defined functions.
2020-05-05 17:57:25 +02:00
fn_lib: FunctionsLib,
/// Flattened collection of all script-defined functions, including those in sub-modules.
all_fn_lib: FunctionsLib,
2020-05-05 09:00:10 +02:00
}
impl fmt::Debug for Module {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"<module {:?}, functions={}, lib={}>",
self.variables,
self.functions.len(),
2020-05-05 17:57:25 +02:00
self.fn_lib.len()
2020-05-05 09:00:10 +02:00
)
}
}
impl Module {
/// Create a new module.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// module.set_var("answer", 42_i64);
/// assert_eq!(module.get_var_value::<i64>("answer").unwrap(), 42);
/// ```
pub fn new() -> Self {
2020-05-05 09:00:10 +02:00
Default::default()
}
2020-05-05 09:00:10 +02:00
/// Does a variable exist in the module?
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// module.set_var("answer", 42_i64);
/// assert!(module.contains_var("answer"));
/// ```
2020-05-05 11:51:40 +02:00
pub fn contains_var(&self, name: &str) -> bool {
2020-05-05 09:00:10 +02:00
self.variables.contains_key(name)
}
2020-05-05 09:00:10 +02:00
/// Get the value of a module variable.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// module.set_var("answer", 42_i64);
/// assert_eq!(module.get_var_value::<i64>("answer").unwrap(), 42);
/// ```
2020-05-05 11:51:40 +02:00
pub fn get_var_value<T: Variant + Clone>(&self, name: &str) -> Option<T> {
self.get_var(name).and_then(Dynamic::try_cast::<T>)
2020-05-05 09:00:10 +02:00
}
/// Get a module variable as a `Dynamic`.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// module.set_var("answer", 42_i64);
/// assert_eq!(module.get_var("answer").unwrap().cast::<i64>(), 42);
/// ```
2020-05-05 11:51:40 +02:00
pub fn get_var(&self, name: &str) -> Option<Dynamic> {
2020-05-05 09:00:10 +02:00
self.variables.get(name).cloned()
}
/// Set a variable into the module.
///
/// If there is an existing variable of the same name, it is replaced.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// module.set_var("answer", 42_i64);
/// assert_eq!(module.get_var_value::<i64>("answer").unwrap(), 42);
/// ```
2020-05-05 11:51:40 +02:00
pub fn set_var<K: Into<String>, T: Into<Dynamic>>(&mut self, name: K, value: T) {
2020-05-05 09:00:10 +02:00
self.variables.insert(name.into(), value.into());
}
/// Get a mutable reference to a modules-qualified variable.
///
/// The `u64` hash is calculated by the function `crate::calc_fn_hash`.
2020-05-05 11:51:40 +02:00
pub(crate) fn get_qualified_var_mut(
2020-05-05 09:00:10 +02:00
&mut self,
name: &str,
2020-05-11 17:48:50 +02:00
hash_var: u64,
2020-05-05 09:00:10 +02:00
pos: Position,
) -> Result<&mut Dynamic, Box<EvalAltResult>> {
self.all_variables
2020-05-11 17:48:50 +02:00
.get_mut(&hash_var)
.ok_or_else(|| Box::new(EvalAltResult::ErrorVariableNotFound(name.to_string(), pos)))
2020-05-05 09:00:10 +02:00
}
/// Does a sub-module exist in the module?
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// let sub_module = Module::new();
/// module.set_sub_module("question", sub_module);
/// assert!(module.contains_sub_module("question"));
/// ```
2020-05-05 09:00:10 +02:00
pub fn contains_sub_module(&self, name: &str) -> bool {
self.modules.contains_key(name)
}
/// Get a sub-module.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// let sub_module = Module::new();
/// module.set_sub_module("question", sub_module);
/// assert!(module.get_sub_module("question").is_some());
/// ```
2020-05-05 09:00:10 +02:00
pub fn get_sub_module(&self, name: &str) -> Option<&Module> {
self.modules.get(name)
}
/// Get a mutable reference to a sub-module.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// let sub_module = Module::new();
/// module.set_sub_module("question", sub_module);
/// assert!(module.get_sub_module_mut("question").is_some());
/// ```
2020-05-05 09:00:10 +02:00
pub fn get_sub_module_mut(&mut self, name: &str) -> Option<&mut Module> {
self.modules.get_mut(name)
}
/// Set a sub-module into the module.
///
/// If there is an existing sub-module of the same name, it is replaced.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// let sub_module = Module::new();
/// module.set_sub_module("question", sub_module);
/// assert!(module.get_sub_module("question").is_some());
/// ```
2020-05-05 09:00:10 +02:00
pub fn set_sub_module<K: Into<String>>(&mut self, name: K, sub_module: Module) {
self.modules.insert(name.into(), sub_module.into());
}
2020-05-05 11:51:40 +02:00
/// Does the particular Rust function exist in the module?
///
/// The `u64` hash is calculated by the function `crate::calc_fn_hash`.
/// It is also returned by the `set_fn_XXX` calls.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
2020-05-09 18:19:13 +02:00
/// let hash = module.set_fn_0("calc", || Ok(42_i64));
/// assert!(module.contains_fn(hash));
/// ```
2020-05-11 17:48:50 +02:00
pub fn contains_fn(&self, hash_fn: u64) -> bool {
self.functions.contains_key(&hash_fn)
2020-05-05 11:51:40 +02:00
}
/// Set a Rust function into the module, returning a hash key.
///
/// If there is an existing Rust function of the same hash, it is replaced.
pub fn set_fn(
&mut self,
name: String,
abi: NativeFunctionABI,
access: FnAccess,
params: Vec<TypeId>,
func: Box<FnAny>,
) -> u64 {
2020-05-11 17:48:50 +02:00
let hash_fn = calc_fn_hash(empty(), &name, params.iter().cloned());
2020-05-05 17:57:25 +02:00
let f = Box::new(NativeFunction::from((func, abi))) as Box<dyn NativeCallable>;
2020-05-11 07:36:50 +02:00
2020-05-05 17:57:25 +02:00
#[cfg(not(feature = "sync"))]
2020-05-11 07:36:50 +02:00
let func = Rc::new(f);
2020-05-05 17:57:25 +02:00
#[cfg(feature = "sync")]
2020-05-11 07:36:50 +02:00
let func = Arc::new(f);
2020-05-11 17:48:50 +02:00
self.functions.insert(hash_fn, (name, access, params, func));
2020-05-05 17:57:25 +02:00
2020-05-11 17:48:50 +02:00
hash_fn
2020-05-05 11:51:40 +02:00
}
/// Set a Rust function taking no parameters into the module, returning a hash key.
///
/// If there is a similar existing Rust function, it is replaced.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
2020-05-09 18:19:13 +02:00
/// let hash = module.set_fn_0("calc", || Ok(42_i64));
/// assert!(module.get_fn(hash).is_some());
/// ```
pub fn set_fn_0<K: Into<String>, T: Into<Dynamic>>(
2020-05-05 11:51:40 +02:00
&mut self,
name: K,
#[cfg(not(feature = "sync"))] func: impl Fn() -> FuncReturn<T> + 'static,
#[cfg(feature = "sync")] func: impl Fn() -> FuncReturn<T> + Send + Sync + 'static,
2020-05-05 11:51:40 +02:00
) -> u64 {
let f = move |_: &mut FnCallArgs, pos| {
func()
2020-05-11 04:29:33 +02:00
.map(Into::<Dynamic>::into)
.map_err(|err| EvalAltResult::set_position(err, pos))
};
let arg_types = vec![];
self.set_fn(name.into(), Pure, DEF_ACCESS, arg_types, Box::new(f))
2020-05-05 11:51:40 +02:00
}
/// Set a Rust function taking one parameter into the module, returning a hash key.
///
/// If there is a similar existing Rust function, it is replaced.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
2020-05-09 18:19:13 +02:00
/// let hash = module.set_fn_1("calc", |x: i64| Ok(x + 1));
/// assert!(module.get_fn(hash).is_some());
/// ```
pub fn set_fn_1<K: Into<String>, A: Variant + Clone, T: Into<Dynamic>>(
2020-05-05 11:51:40 +02:00
&mut self,
name: K,
#[cfg(not(feature = "sync"))] func: impl Fn(A) -> FuncReturn<T> + 'static,
#[cfg(feature = "sync")] func: impl Fn(A) -> FuncReturn<T> + Send + Sync + 'static,
2020-05-05 11:51:40 +02:00
) -> u64 {
let f = move |args: &mut FnCallArgs, pos| {
func(mem::take(args[0]).cast::<A>())
2020-05-11 04:29:33 +02:00
.map(Into::<Dynamic>::into)
.map_err(|err| EvalAltResult::set_position(err, pos))
2020-05-05 11:51:40 +02:00
};
let arg_types = vec![TypeId::of::<A>()];
self.set_fn(name.into(), Pure, DEF_ACCESS, arg_types, Box::new(f))
2020-05-05 11:51:40 +02:00
}
/// Set a Rust function taking one mutable parameter into the module, returning a hash key.
///
/// If there is a similar existing Rust function, it is replaced.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
2020-05-09 18:19:13 +02:00
/// let hash = module.set_fn_1_mut("calc", |x: &mut i64| { *x += 1; Ok(*x) });
/// assert!(module.get_fn(hash).is_some());
/// ```
pub fn set_fn_1_mut<K: Into<String>, A: Variant + Clone, T: Into<Dynamic>>(
2020-05-05 11:51:40 +02:00
&mut self,
name: K,
#[cfg(not(feature = "sync"))] func: impl Fn(&mut A) -> FuncReturn<T> + 'static,
#[cfg(feature = "sync")] func: impl Fn(&mut A) -> FuncReturn<T> + Send + Sync + 'static,
2020-05-05 11:51:40 +02:00
) -> u64 {
let f = move |args: &mut FnCallArgs, pos| {
func(args[0].downcast_mut::<A>().unwrap())
2020-05-11 04:29:33 +02:00
.map(Into::<Dynamic>::into)
.map_err(|err| EvalAltResult::set_position(err, pos))
2020-05-05 11:51:40 +02:00
};
let arg_types = vec![TypeId::of::<A>()];
self.set_fn(name.into(), Method, DEF_ACCESS, arg_types, Box::new(f))
2020-05-05 11:51:40 +02:00
}
/// Set a Rust function taking two parameters into the module, returning a hash key.
///
/// If there is a similar existing Rust function, it is replaced.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// let hash = module.set_fn_2("calc", |x: i64, y: String| {
/// Ok(x + y.len() as i64)
2020-05-09 18:19:13 +02:00
/// });
/// assert!(module.get_fn(hash).is_some());
/// ```
pub fn set_fn_2<K: Into<String>, A: Variant + Clone, B: Variant + Clone, T: Into<Dynamic>>(
2020-05-05 11:51:40 +02:00
&mut self,
name: K,
#[cfg(not(feature = "sync"))] func: impl Fn(A, B) -> FuncReturn<T> + 'static,
#[cfg(feature = "sync")] func: impl Fn(A, B) -> FuncReturn<T> + Send + Sync + 'static,
2020-05-05 11:51:40 +02:00
) -> u64 {
let f = move |args: &mut FnCallArgs, pos| {
2020-05-05 11:51:40 +02:00
let a = mem::take(args[0]).cast::<A>();
let b = mem::take(args[1]).cast::<B>();
func(a, b)
2020-05-11 04:29:33 +02:00
.map(Into::<Dynamic>::into)
.map_err(|err| EvalAltResult::set_position(err, pos))
2020-05-05 11:51:40 +02:00
};
let arg_types = vec![TypeId::of::<A>(), TypeId::of::<B>()];
self.set_fn(name.into(), Pure, DEF_ACCESS, arg_types, Box::new(f))
2020-05-05 11:51:40 +02:00
}
/// Set a Rust function taking two parameters (the first one mutable) into the module,
/// returning a hash key.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// let hash = module.set_fn_2_mut("calc", |x: &mut i64, y: String| {
/// *x += y.len() as i64; Ok(*x)
2020-05-09 18:19:13 +02:00
/// });
/// assert!(module.get_fn(hash).is_some());
/// ```
pub fn set_fn_2_mut<
K: Into<String>,
A: Variant + Clone,
B: Variant + Clone,
T: Into<Dynamic>,
>(
2020-05-05 11:51:40 +02:00
&mut self,
name: K,
#[cfg(not(feature = "sync"))] func: impl Fn(&mut A, B) -> FuncReturn<T> + 'static,
#[cfg(feature = "sync")] func: impl Fn(&mut A, B) -> FuncReturn<T> + Send + Sync + 'static,
2020-05-05 11:51:40 +02:00
) -> u64 {
let f = move |args: &mut FnCallArgs, pos| {
2020-05-05 11:51:40 +02:00
let b = mem::take(args[1]).cast::<B>();
let a = args[0].downcast_mut::<A>().unwrap();
func(a, b)
2020-05-11 04:29:33 +02:00
.map(Into::<Dynamic>::into)
.map_err(|err| EvalAltResult::set_position(err, pos))
2020-05-05 11:51:40 +02:00
};
let arg_types = vec![TypeId::of::<A>(), TypeId::of::<B>()];
self.set_fn(name.into(), Method, DEF_ACCESS, arg_types, Box::new(f))
2020-05-05 11:51:40 +02:00
}
/// Set a Rust function taking three parameters into the module, returning a hash key.
///
/// If there is a similar existing Rust function, it is replaced.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// let hash = module.set_fn_3("calc", |x: i64, y: String, z: i64| {
/// Ok(x + y.len() as i64 + z)
2020-05-09 18:19:13 +02:00
/// });
/// assert!(module.get_fn(hash).is_some());
/// ```
2020-05-05 11:51:40 +02:00
pub fn set_fn_3<
K: Into<String>,
2020-05-05 11:51:40 +02:00
A: Variant + Clone,
B: Variant + Clone,
C: Variant + Clone,
T: Into<Dynamic>,
>(
&mut self,
name: K,
#[cfg(not(feature = "sync"))] func: impl Fn(A, B, C) -> FuncReturn<T> + 'static,
#[cfg(feature = "sync")] func: impl Fn(A, B, C) -> FuncReturn<T> + Send + Sync + 'static,
2020-05-05 11:51:40 +02:00
) -> u64 {
let f = move |args: &mut FnCallArgs, pos| {
2020-05-05 11:51:40 +02:00
let a = mem::take(args[0]).cast::<A>();
let b = mem::take(args[1]).cast::<B>();
let c = mem::take(args[2]).cast::<C>();
func(a, b, c)
2020-05-11 04:29:33 +02:00
.map(Into::<Dynamic>::into)
.map_err(|err| EvalAltResult::set_position(err, pos))
2020-05-05 11:51:40 +02:00
};
let arg_types = vec![TypeId::of::<A>(), TypeId::of::<B>(), TypeId::of::<C>()];
self.set_fn(name.into(), Pure, DEF_ACCESS, arg_types, Box::new(f))
2020-05-05 11:51:40 +02:00
}
/// Set a Rust function taking three parameters (the first one mutable) into the module,
/// returning a hash key.
///
/// If there is a similar existing Rust function, it is replaced.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// let hash = module.set_fn_3_mut("calc", |x: &mut i64, y: String, z: i64| {
/// *x += y.len() as i64 + z; Ok(*x)
2020-05-09 18:19:13 +02:00
/// });
/// assert!(module.get_fn(hash).is_some());
/// ```
2020-05-05 11:51:40 +02:00
pub fn set_fn_3_mut<
K: Into<String>,
2020-05-05 11:51:40 +02:00
A: Variant + Clone,
B: Variant + Clone,
C: Variant + Clone,
T: Into<Dynamic>,
>(
&mut self,
name: K,
#[cfg(not(feature = "sync"))] func: impl Fn(&mut A, B, C) -> FuncReturn<T> + 'static,
#[cfg(feature = "sync")] func: impl Fn(&mut A, B, C) -> FuncReturn<T> + Send + Sync + 'static,
2020-05-05 11:51:40 +02:00
) -> u64 {
let f = move |args: &mut FnCallArgs, pos| {
2020-05-05 11:51:40 +02:00
let b = mem::take(args[1]).cast::<B>();
let c = mem::take(args[2]).cast::<C>();
let a = args[0].downcast_mut::<A>().unwrap();
func(a, b, c)
2020-05-11 04:29:33 +02:00
.map(Into::<Dynamic>::into)
.map_err(|err| EvalAltResult::set_position(err, pos))
2020-05-05 11:51:40 +02:00
};
let arg_types = vec![TypeId::of::<A>(), TypeId::of::<B>(), TypeId::of::<C>()];
self.set_fn(name.into(), Method, DEF_ACCESS, arg_types, Box::new(f))
2020-05-05 11:51:40 +02:00
}
/// Get a Rust function.
///
/// The `u64` hash is calculated by the function `crate::calc_fn_hash`.
/// It is also returned by the `set_fn_XXX` calls.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
2020-05-09 18:19:13 +02:00
/// let hash = module.set_fn_1("calc", |x: i64| Ok(x + 1));
/// assert!(module.get_fn(hash).is_some());
/// ```
2020-05-11 17:48:50 +02:00
pub fn get_fn(&self, hash_fn: u64) -> Option<&Box<dyn NativeCallable>> {
self.functions.get(&hash_fn).map(|(_, _, _, v)| v.as_ref())
2020-05-05 11:51:40 +02:00
}
/// Get a modules-qualified function.
///
/// The `u64` hash is calculated by the function `crate::calc_fn_hash`.
/// It is also returned by the `set_fn_XXX` calls.
pub(crate) fn get_qualified_fn(
&mut self,
name: &str,
2020-05-11 17:48:50 +02:00
hash_fn_native: u64,
2020-05-05 11:51:40 +02:00
pos: Position,
2020-05-11 07:36:50 +02:00
) -> Result<&Box<dyn NativeCallable>, Box<EvalAltResult>> {
self.all_functions
2020-05-11 17:48:50 +02:00
.get(&hash_fn_native)
.map(|f| f.as_ref())
.ok_or_else(|| Box::new(EvalAltResult::ErrorFunctionNotFound(name.to_string(), pos)))
2020-05-05 11:51:40 +02:00
}
2020-05-05 17:57:25 +02:00
/// Get the script-defined functions.
///
/// # Examples
///
/// ```
/// use rhai::Module;
///
/// let mut module = Module::new();
/// assert_eq!(module.get_fn_lib().len(), 0);
/// ```
2020-05-05 17:57:25 +02:00
pub fn get_fn_lib(&self) -> &FunctionsLib {
&self.fn_lib
}
/// Get a modules-qualified script-defined functions.
///
/// The `u64` hash is calculated by the function `crate::calc_fn_hash`.
2020-05-11 17:48:50 +02:00
pub(crate) fn get_qualified_scripted_fn(&mut self, hash_fn_def: u64) -> Option<&FnDef> {
self.all_fn_lib.get_function(hash_fn_def)
2020-05-05 17:57:25 +02:00
}
/// Create a new `Module` by evaluating an `AST`.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<rhai::EvalAltResult>> {
/// use rhai::{Engine, Module, Scope};
///
/// let engine = Engine::new();
/// let ast = engine.compile("let answer = 42; export answer;")?;
/// let module = Module::eval_ast_as_new(Scope::new(), &ast, &engine)?;
/// assert!(module.contains_var("answer"));
/// assert_eq!(module.get_var_value::<i64>("answer").unwrap(), 42);
/// # Ok(())
/// # }
/// ```
2020-05-08 10:49:24 +02:00
pub fn eval_ast_as_new(mut scope: Scope, ast: &AST, engine: &Engine) -> FuncReturn<Self> {
// Run the script
engine.eval_ast_with_scope_raw(&mut scope, &ast)?;
// Create new module
let mut module = Module::new();
scope.into_iter().for_each(
|ScopeEntry {
typ, value, alias, ..
}| {
match typ {
2020-05-08 10:49:24 +02:00
// Variables with an alias left in the scope become module variables
ScopeEntryType::Normal | ScopeEntryType::Constant if alias.is_some() => {
module.variables.insert(*alias.unwrap(), value);
}
// Modules left in the scope become sub-modules
ScopeEntryType::Module if alias.is_some() => {
module
.modules
.insert(*alias.unwrap(), value.cast::<Module>());
}
// Variables and modules with no alias are private and not exported
_ => (),
}
},
);
module.fn_lib = module.fn_lib.merge(ast.fn_lib());
Ok(module)
}
/// Scan through all the sub-modules in the `Module` build an index of all
/// variables and external Rust functions via hashing.
2020-05-09 04:00:59 +02:00
pub(crate) fn index_all_sub_modules(&mut self) {
// Collect a particular module.
2020-05-09 04:00:59 +02:00
fn index_module<'a>(
module: &'a mut Module,
2020-05-09 04:00:59 +02:00
qualifiers: &mut Vec<&'a str>,
variables: &mut Vec<(u64, Dynamic)>,
2020-05-11 07:36:50 +02:00
functions: &mut Vec<(u64, SharedNativeFunction)>,
fn_lib: &mut Vec<(u64, SharedFnDef)>,
) {
2020-05-09 04:00:59 +02:00
for (name, m) in module.modules.iter_mut() {
// Index all the sub-modules first.
qualifiers.push(name);
index_module(m, qualifiers, variables, functions, fn_lib);
qualifiers.pop();
}
2020-05-09 04:00:59 +02:00
// Index all variables
for (var_name, value) in module.variables.iter() {
2020-05-09 04:00:59 +02:00
// Qualifiers + variable name
2020-05-11 17:48:50 +02:00
let hash_var = calc_fn_hash(qualifiers.iter().map(|&v| v), var_name, empty());
variables.push((hash_var, value.clone()));
}
2020-05-09 04:00:59 +02:00
// Index all Rust functions
for (name, access, params, func) in module.functions.values() {
match access {
// Private functions are not exported
FnAccess::Private => continue,
FnAccess::Public => (),
}
2020-05-09 04:00:59 +02:00
// Rust functions are indexed in two steps:
// 1) Calculate a hash in a similar manner to script-defined functions,
// i.e. qualifiers + function name + dummy parameter types (one for each parameter).
2020-05-09 18:19:13 +02:00
let hash_fn_def = calc_fn_hash(
2020-05-11 04:29:33 +02:00
qualifiers.iter().map(|&v| v),
name,
repeat(EMPTY_TYPE_ID()).take(params.len()),
);
2020-05-09 04:00:59 +02:00
// 2) Calculate a second hash with no qualifiers, empty function name, and
// the actual list of parameter `TypeId`'.s
2020-05-09 18:19:13 +02:00
let hash_fn_args = calc_fn_hash(empty(), "", params.iter().cloned());
2020-05-09 04:00:59 +02:00
// 3) The final hash is the XOR of the two hashes.
2020-05-11 17:48:50 +02:00
let hash_fn_native = hash_fn_def ^ hash_fn_args;
2020-05-09 04:00:59 +02:00
2020-05-11 17:48:50 +02:00
functions.push((hash_fn_native, func.clone()));
}
2020-05-09 04:00:59 +02:00
// Index all script-defined functions
for fn_def in module.fn_lib.values() {
match fn_def.access {
// Private functions are not exported
FnAccess::Private => continue,
DEF_ACCESS => (),
}
2020-05-09 04:00:59 +02:00
// Qualifiers + function name + placeholders (one for each parameter)
2020-05-11 17:48:50 +02:00
let hash_fn_def = calc_fn_hash(
2020-05-11 04:29:33 +02:00
qualifiers.iter().map(|&v| v),
&fn_def.name,
repeat(EMPTY_TYPE_ID()).take(fn_def.params.len()),
);
2020-05-11 17:48:50 +02:00
fn_lib.push((hash_fn_def, fn_def.clone()));
}
}
let mut variables = Vec::new();
let mut functions = Vec::new();
let mut fn_lib = Vec::new();
2020-05-09 04:00:59 +02:00
index_module(
self,
&mut vec!["root"],
&mut variables,
&mut functions,
&mut fn_lib,
);
self.all_variables = variables.into_iter().collect();
self.all_functions = functions.into_iter().collect();
self.all_fn_lib = fn_lib.into();
}
2020-05-05 17:57:25 +02:00
}
/// Re-export module resolvers.
2020-05-05 17:57:25 +02:00
pub mod resolvers {
#[cfg(not(feature = "no_std"))]
pub use super::file::FileModuleResolver;
pub use super::stat::StaticModuleResolver;
}
2020-05-05 17:57:25 +02:00
/// Script file-based module resolver.
#[cfg(not(feature = "no_std"))]
mod file {
use super::*;
2020-05-05 17:57:25 +02:00
use crate::stdlib::path::PathBuf;
/// A module resolution service that loads module script files from the file system.
///
/// The `new_with_path` and `new_with_path_and_extension` constructor functions
/// allow specification of a base directory with module path used as a relative path offset
/// to the base directory. The script file is then forced to be in a specified extension
/// (default `.rhai`).
///
/// # Examples
///
/// ```
/// use rhai::Engine;
/// use rhai::module_resolvers::FileModuleResolver;
///
/// // Create a new 'FileModuleResolver' loading scripts from the 'scripts' subdirectory
/// // with file extension '.x'.
/// let resolver = FileModuleResolver::new_with_path_and_extension("./scripts", "x");
///
/// let mut engine = Engine::new();
/// engine.set_module_resolver(Some(resolver));
/// ```
2020-05-12 12:48:25 +02:00
#[derive(Debug, Eq, PartialEq, PartialOrd, Ord, Clone, Hash)]
pub struct FileModuleResolver {
path: PathBuf,
extension: String,
}
2020-05-05 17:57:25 +02:00
impl Default for FileModuleResolver {
fn default() -> Self {
Self::new_with_path(PathBuf::default())
}
}
2020-05-05 17:57:25 +02:00
impl FileModuleResolver {
/// Create a new `FileModuleResolver` with a specific base path.
///
/// # Examples
///
/// ```
/// use rhai::Engine;
/// use rhai::module_resolvers::FileModuleResolver;
///
/// // Create a new 'FileModuleResolver' loading scripts from the 'scripts' subdirectory
/// // with file extension '.rhai' (the default).
/// let resolver = FileModuleResolver::new_with_path("./scripts");
///
/// let mut engine = Engine::new();
/// engine.set_module_resolver(Some(resolver));
/// ```
pub fn new_with_path<P: Into<PathBuf>>(path: P) -> Self {
Self::new_with_path_and_extension(path, "rhai")
}
/// Create a new `FileModuleResolver` with a specific base path and file extension.
///
/// The default extension is `.rhai`.
///
/// # Examples
///
/// ```
/// use rhai::Engine;
/// use rhai::module_resolvers::FileModuleResolver;
///
/// // Create a new 'FileModuleResolver' loading scripts from the 'scripts' subdirectory
/// // with file extension '.x'.
/// let resolver = FileModuleResolver::new_with_path_and_extension("./scripts", "x");
///
/// let mut engine = Engine::new();
/// engine.set_module_resolver(Some(resolver));
/// ```
pub fn new_with_path_and_extension<P: Into<PathBuf>, E: Into<String>>(
path: P,
extension: E,
) -> Self {
Self {
path: path.into(),
extension: extension.into(),
}
2020-05-05 17:57:25 +02:00
}
2020-05-05 17:57:25 +02:00
/// Create a new `FileModuleResolver` with the current directory as base path.
///
/// # Examples
///
/// ```
/// use rhai::Engine;
/// use rhai::module_resolvers::FileModuleResolver;
///
/// // Create a new 'FileModuleResolver' loading scripts from the current directory
/// // with file extension '.rhai' (the default).
/// let resolver = FileModuleResolver::new();
///
/// let mut engine = Engine::new();
/// engine.set_module_resolver(Some(resolver));
/// ```
2020-05-05 17:57:25 +02:00
pub fn new() -> Self {
Default::default()
}
2020-05-06 16:26:52 +02:00
/// Create a `Module` from a file path.
pub fn create_module<P: Into<PathBuf>>(
&self,
engine: &Engine,
2020-05-08 10:49:24 +02:00
scope: Scope,
2020-05-06 16:26:52 +02:00
path: &str,
) -> Result<Module, Box<EvalAltResult>> {
2020-05-08 10:49:24 +02:00
self.resolve(engine, scope, path, Default::default())
2020-05-06 16:26:52 +02:00
}
2020-05-05 17:57:25 +02:00
}
impl ModuleResolver for FileModuleResolver {
fn resolve(
&self,
engine: &Engine,
2020-05-08 10:49:24 +02:00
scope: Scope,
path: &str,
pos: Position,
) -> Result<Module, Box<EvalAltResult>> {
// Construct the script file path
let mut file_path = self.path.clone();
2020-05-05 17:57:25 +02:00
file_path.push(path);
file_path.set_extension(&self.extension); // Force extension
2020-05-05 17:57:25 +02:00
// Compile it
let ast = engine
.compile_file(file_path)
.map_err(|err| EvalAltResult::set_position(err, pos))?;
2020-05-05 17:57:25 +02:00
2020-05-08 10:49:24 +02:00
Module::eval_ast_as_new(scope, &ast, engine)
.map_err(|err| EvalAltResult::set_position(err, pos))
2020-05-05 17:57:25 +02:00
}
}
}
/// A chain of module names to qualify a variable or function call.
/// A `u64` hash key is kept for quick search purposes.
///
/// A `StaticVec` is used because most module-level access contains only one level,
/// and it is wasteful to always allocate a `Vec` with one element.
2020-05-12 12:48:25 +02:00
#[derive(Clone, Eq, PartialEq, Hash, Default)]
2020-05-09 10:15:50 +02:00
pub struct ModuleRef(StaticVec<(String, Position)>, Option<NonZeroUsize>);
impl fmt::Debug for ModuleRef {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(&self.0, f)?;
2020-05-09 10:15:50 +02:00
if let Some(index) = self.1 {
write!(f, " -> {}", index)
} else {
Ok(())
}
}
}
impl Deref for ModuleRef {
type Target = StaticVec<(String, Position)>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for ModuleRef {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl fmt::Display for ModuleRef {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
for (m, _) in self.0.iter() {
write!(f, "{}{}", m, Token::DoubleColon.syntax())?;
}
Ok(())
}
}
impl From<StaticVec<(String, Position)>> for ModuleRef {
fn from(modules: StaticVec<(String, Position)>) -> Self {
2020-05-09 10:15:50 +02:00
Self(modules, None)
}
}
impl ModuleRef {
pub(crate) fn index(&self) -> Option<NonZeroUsize> {
self.1
}
pub(crate) fn set_index(&mut self, index: Option<NonZeroUsize>) {
self.1 = index
}
}
/// Static module resolver.
mod stat {
use super::*;
2020-05-05 17:57:25 +02:00
/// A module resolution service that serves modules added into it.
///
/// # Examples
///
/// ```
/// use rhai::{Engine, Module};
/// use rhai::module_resolvers::StaticModuleResolver;
///
/// let mut resolver = StaticModuleResolver::new();
///
/// let module = Module::new();
/// resolver.insert("hello".to_string(), module);
///
/// let mut engine = Engine::new();
/// engine.set_module_resolver(Some(resolver));
/// ```
2020-05-05 17:57:25 +02:00
#[derive(Debug, Clone, Default)]
pub struct StaticModuleResolver(HashMap<String, Module>);
impl StaticModuleResolver {
/// Create a new `StaticModuleResolver`.
///
/// # Examples
///
/// ```
/// use rhai::{Engine, Module};
/// use rhai::module_resolvers::StaticModuleResolver;
///
/// let mut resolver = StaticModuleResolver::new();
///
/// let module = Module::new();
/// resolver.insert("hello".to_string(), module);
///
/// let mut engine = Engine::new();
/// engine.set_module_resolver(Some(resolver));
/// ```
2020-05-05 17:57:25 +02:00
pub fn new() -> Self {
Default::default()
}
}
impl Deref for StaticModuleResolver {
type Target = HashMap<String, Module>;
fn deref(&self) -> &Self::Target {
&self.0
2020-05-05 17:57:25 +02:00
}
}
impl DerefMut for StaticModuleResolver {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
2020-05-05 17:57:25 +02:00
}
}
impl ModuleResolver for StaticModuleResolver {
fn resolve(
&self,
_: &Engine,
2020-05-08 10:49:24 +02:00
_: Scope,
path: &str,
pos: Position,
) -> Result<Module, Box<EvalAltResult>> {
self.0
.get(path)
.cloned()
2020-05-11 17:48:50 +02:00
.ok_or_else(|| Box::new(EvalAltResult::ErrorModuleNotFound(path.into(), pos)))
2020-05-05 17:57:25 +02:00
}
}
}