rhai/src/lib.rs

347 lines
12 KiB
Rust
Raw Normal View History

2017-10-28 22:33:00 +02:00
//! # Rhai - embedded scripting for Rust
2017-12-20 12:16:14 +01:00
//!
2021-01-30 00:19:54 +01:00
//! ![Rhai logo](https://rhai.rs/book/images/logo/rhai-banner-transparent-colour.svg)
2020-12-24 09:32:43 +01:00
//!
2020-10-10 07:41:55 +02:00
//! Rhai is a tiny, simple and fast embedded scripting language for Rust
2017-10-28 22:33:00 +02:00
//! that gives you a safe and easy way to add scripting to your applications.
2020-04-09 04:38:33 +02:00
//!
2020-12-24 09:32:43 +01:00
//! It provides a familiar syntax based on JavaScript+Rust and a simple Rust interface.
//!
//! # A Quick Example
//!
//! ## Contents of `my_script.rhai`
2017-12-20 12:16:14 +01:00
//!
2021-03-22 04:18:09 +01:00
//! ```ignore
2020-12-24 09:32:43 +01:00
//! /// Brute force factorial function
2017-10-28 22:33:00 +02:00
//! fn factorial(x) {
//! if x == 1 { return 1; }
2020-03-24 09:57:35 +01:00
//! x * factorial(x - 1)
2017-10-28 22:33:00 +02:00
//! }
//!
2020-04-09 04:38:33 +02:00
//! // Calling an external function 'compute'
//! compute(factorial(10))
2017-10-28 22:33:00 +02:00
//! ```
2017-12-20 12:16:14 +01:00
//!
2020-12-24 09:32:43 +01:00
//! ## The Rust part
2017-12-20 12:16:14 +01:00
//!
2021-03-22 04:18:09 +01:00
//! ```no_run
//! use rhai::{Engine, EvalAltResult};
2017-12-20 12:16:14 +01:00
//!
//! fn main() -> Result<(), Box<EvalAltResult>>
2020-03-09 14:09:53 +01:00
//! {
2020-04-09 04:38:33 +02:00
//! // Define external function
2020-03-09 14:09:53 +01:00
//! fn compute_something(x: i64) -> bool {
2020-03-24 09:57:35 +01:00
//! (x % 40) == 0
2020-03-09 14:09:53 +01:00
//! }
//!
2020-04-09 04:38:33 +02:00
//! // Create scripting engine
2020-03-09 14:09:53 +01:00
//! let mut engine = Engine::new();
//!
2020-04-09 04:38:33 +02:00
//! // Register external function as 'compute'
//! engine.register_fn("compute", compute_something);
2017-12-20 12:16:14 +01:00
//!
//! # #[cfg(not(feature = "no_std"))]
//! # #[cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))]
2021-12-25 16:49:14 +01:00
//! // Evaluate the script, expects a 'bool' return
//! let result = engine.eval_file::<bool>("my_script.rhai".into())?,
//!
//! assert_eq!(result, true);
2020-03-09 14:09:53 +01:00
//!
//! Ok(())
//! }
2017-10-28 22:33:00 +02:00
//! ```
//!
2020-07-29 16:43:50 +02:00
//! # Documentation
2020-04-03 13:42:01 +02:00
//!
2021-01-30 00:19:54 +01:00
//! See [The Rhai Book](https://rhai.rs/book) for details on the Rhai scripting engine and language.
#![cfg_attr(feature = "no_std", no_std)]
2017-10-02 23:44:45 +02:00
#[cfg(feature = "no_std")]
2020-03-17 19:26:11 +01:00
extern crate alloc;
2021-04-17 09:15:54 +02:00
#[cfg(feature = "no_std")]
extern crate no_std_compat as std;
#[cfg(feature = "no_std")]
use std::prelude::v1::*;
// Internal modules
2021-11-13 15:36:23 +01:00
mod api;
2020-10-28 15:18:44 +01:00
mod ast;
2021-06-16 12:36:33 +02:00
mod custom_syntax;
mod engine;
2021-11-13 15:36:23 +01:00
mod func;
mod module;
2021-11-13 15:36:23 +01:00
mod optimizer;
pub mod packages;
2021-11-13 15:36:23 +01:00
mod parser;
2021-09-07 16:12:04 +02:00
mod tests;
2021-11-13 15:36:23 +01:00
mod tokenizer;
mod types;
mod r#unsafe;
2021-12-25 16:49:14 +01:00
/// General evaluation error for Rhai scripts.
type RhaiError = Box<EvalAltResult>;
/// Generic [`Result`] type for Rhai functions.
type RhaiResultOf<T> = Result<T, RhaiError>;
/// General [`Result`] type for Rhai functions returning [`Dynamic`] values.
type RhaiResult = RhaiResultOf<Dynamic>;
2021-03-02 08:02:28 +01:00
2020-11-25 02:36:06 +01:00
/// The system integer type. It is defined as [`i64`].
2020-10-29 04:37:51 +01:00
///
2020-11-25 02:36:06 +01:00
/// If the `only_i32` feature is enabled, this will be [`i32`] instead.
2020-10-29 04:37:51 +01:00
#[cfg(not(feature = "only_i32"))]
pub type INT = i64;
/// The system integer type.
2020-11-25 02:36:06 +01:00
/// It is defined as [`i32`] since the `only_i32` feature is used.
2020-10-29 04:37:51 +01:00
///
2020-11-25 02:36:06 +01:00
/// If the `only_i32` feature is not used, this will be `i64` instead.
2020-10-29 04:37:51 +01:00
#[cfg(feature = "only_i32")]
pub type INT = i32;
/// The system base integer type. It is defined as [`u64`].
///
/// If the `only_i32` feature is enabled, this will be [`u32`] instead.
#[cfg(not(feature = "only_i32"))]
#[allow(non_camel_case_types)]
type INT_BASE = u64;
/// The system integer base type.
/// It is defined as [`u32`] since the `only_i32` feature is used.
///
/// If the `only_i32` feature is not used, this will be `u64` instead.
#[cfg(feature = "only_i32")]
#[allow(non_camel_case_types)]
type INT_BASE = u32;
2020-11-25 02:36:06 +01:00
/// The system floating-point type. It is defined as [`f64`].
/// Not available under `no_float`.
2020-11-25 02:36:06 +01:00
///
/// If the `f32_float` feature is enabled, this will be [`f32`] instead.
2020-10-29 04:37:51 +01:00
#[cfg(not(feature = "no_float"))]
2020-11-01 08:48:48 +01:00
#[cfg(not(feature = "f32_float"))]
2020-10-29 04:37:51 +01:00
pub type FLOAT = f64;
2020-11-01 08:48:48 +01:00
/// The system floating-point type.
2020-11-25 02:36:06 +01:00
/// It is defined as [`f32`] since the `f32_float` feature is used.
/// Not available under `no_float`.
2020-11-25 02:36:06 +01:00
///
/// If the `f32_float` feature is not used, this will be `f64` instead.
2020-11-01 08:48:48 +01:00
#[cfg(not(feature = "no_float"))]
#[cfg(feature = "f32_float")]
pub type FLOAT = f32;
2021-12-15 05:06:17 +01:00
pub type ExclusiveRange = std::ops::Range<INT>;
pub type InclusiveRange = std::ops::RangeInclusive<INT>;
2021-03-07 15:10:54 +01:00
pub use ast::{FnAccess, AST};
2021-06-16 12:36:33 +02:00
pub use custom_syntax::Expression;
2021-12-15 05:06:17 +01:00
pub use engine::{
Engine, EvalContext, OP_CONTAINS, OP_EQUALS, OP_EXCLUSIVE_RANGE, OP_INCLUSIVE_RANGE,
};
2021-11-16 05:26:37 +01:00
pub use func::{NativeCallContext, RegisterNativeFunction};
2020-11-17 05:23:53 +01:00
pub use module::{FnNamespace, Module};
2021-11-13 15:36:23 +01:00
pub use tokenizer::Position;
pub use types::{
2021-11-16 05:26:37 +01:00
Dynamic, EvalAltResult, FnPtr, ImmutableString, LexError, ParseError, ParseErrorType, Scope,
2021-11-13 15:36:23 +01:00
};
2021-06-16 12:58:48 +02:00
/// An identifier in Rhai. [`SmartString`](https://crates.io/crates/smartstring) is used because most
/// identifiers are ASCII and short, fewer than 23 characters, so they can be stored inline.
#[cfg(not(feature = "internals"))]
pub(crate) type Identifier = SmartString;
/// An identifier in Rhai. [`SmartString`](https://crates.io/crates/smartstring) is used because most
/// identifiers are ASCII and short, fewer than 23 characters, so they can be stored inline.
#[cfg(feature = "internals")]
pub type Identifier = SmartString;
2021-03-04 07:08:11 +01:00
/// Alias to [`Rc`][std::rc::Rc] or [`Arc`][std::sync::Arc] depending on the `sync` feature flag.
2021-11-16 05:26:37 +01:00
pub use func::Shared;
2021-03-04 07:08:11 +01:00
2021-11-13 15:36:23 +01:00
/// Alias to [`RefCell`][std::cell::RefCell] or [`RwLock`][std::sync::RwLock] depending on the `sync` feature flag.
2021-11-16 05:26:37 +01:00
pub use func::Locked;
2020-11-16 09:28:04 +01:00
2021-11-16 05:26:37 +01:00
pub(crate) use func::{
2021-06-30 10:28:37 +02:00
calc_fn_hash, calc_fn_params_hash, calc_qualified_fn_hash, calc_qualified_var_hash,
combine_hashes,
2021-06-16 12:36:33 +02:00
};
2020-08-01 18:52:26 +02:00
pub use rhai_codegen::*;
2021-11-27 16:20:05 +01:00
pub use func::{plugin, FuncArgs};
2021-01-28 09:48:56 +01:00
#[cfg(not(feature = "no_function"))]
2021-11-27 16:20:05 +01:00
pub use func::Func;
2021-01-28 09:48:56 +01:00
2021-03-07 15:10:54 +01:00
#[cfg(not(feature = "no_function"))]
pub use ast::ScriptFnMetadata;
2020-11-25 02:36:06 +01:00
/// Variable-sized array of [`Dynamic`] values.
2021-01-02 16:30:10 +01:00
/// Not available under `no_index`.
#[cfg(not(feature = "no_index"))]
2021-04-17 09:15:54 +02:00
pub type Array = Vec<Dynamic>;
2021-11-23 07:58:54 +01:00
/// Variable-sized array of [`u8`] values (byte array).
/// Not available under `no_index`.
#[cfg(not(feature = "no_index"))]
pub type Blob = Vec<u8>;
/// Hash map of [`Dynamic`] values with [`SmartString`](https://crates.io/crates/smartstring) keys.
2021-01-02 16:30:10 +01:00
/// Not available under `no_object`.
2020-03-29 17:53:35 +02:00
#[cfg(not(feature = "no_object"))]
2021-04-17 09:15:54 +02:00
pub type Map = std::collections::BTreeMap<Identifier, Dynamic>;
2020-03-29 17:53:35 +02:00
2020-05-05 09:00:10 +02:00
#[cfg(not(feature = "no_module"))]
2020-05-13 13:21:42 +02:00
pub use module::ModuleResolver;
2020-05-05 17:57:25 +02:00
2020-05-15 15:40:54 +02:00
/// Module containing all built-in _module resolvers_ available to Rhai.
2020-05-05 17:57:25 +02:00
#[cfg(not(feature = "no_module"))]
2021-01-28 09:48:56 +01:00
pub use module::resolvers as module_resolvers;
2020-05-05 09:00:10 +02:00
2020-07-03 11:19:55 +02:00
#[cfg(feature = "serde")]
2021-02-19 08:17:14 +01:00
pub mod serde;
2020-07-03 11:19:55 +02:00
#[cfg(not(feature = "no_optimize"))]
2021-11-13 15:36:23 +01:00
pub use optimizer::OptimizationLevel;
// Expose internal data structures.
2020-06-23 04:43:24 +02:00
2021-03-05 07:18:36 +01:00
#[cfg(feature = "internals")]
2021-11-13 15:36:23 +01:00
pub use types::dynamic::{AccessMode, DynamicReadLock, DynamicWriteLock, Variant};
2021-03-05 07:18:36 +01:00
2021-05-10 05:07:19 +02:00
#[cfg(feature = "internals")]
2021-11-13 15:36:23 +01:00
pub use tokenizer::{get_next_token, parse_string_literal};
2021-05-10 05:07:19 +02:00
2020-06-23 04:43:24 +02:00
#[cfg(feature = "internals")]
2021-11-13 15:36:23 +01:00
pub use tokenizer::{
2021-09-24 03:26:35 +02:00
InputStream, MultiInputsStream, Token, TokenIterator, TokenizeState, TokenizerControl,
TokenizerControlBlock,
};
#[cfg(feature = "internals")]
2021-11-13 15:36:23 +01:00
pub use parser::{IdentifierBuilder, ParseState};
2020-06-23 04:43:24 +02:00
#[cfg(feature = "internals")]
pub use ast::{
ASTNode, BinaryExpr, CustomExpr, Expr, FnCallExpr, FnCallHashes, Ident, OpAssignment,
2021-09-19 16:44:27 +02:00
OptionFlags, ScriptFnDef, Stmt, StmtBlock, AST_OPTION_FLAGS::*,
};
2020-07-09 13:54:28 +02:00
#[cfg(feature = "internals")]
#[cfg(not(feature = "no_float"))]
pub use ast::FloatWrapper;
2020-07-09 13:54:28 +02:00
#[cfg(feature = "internals")]
2021-07-04 10:40:15 +02:00
pub use engine::{EvalState, FnResolutionCache, FnResolutionCacheEntry, Imports};
2020-11-27 16:37:59 +01:00
2020-06-23 04:43:24 +02:00
#[cfg(feature = "internals")]
2021-12-25 16:49:14 +01:00
pub use module::Namespace;
2020-06-23 04:43:24 +02:00
2021-09-10 14:25:22 +02:00
/// Alias to [`smallvec::SmallVec<[T; 3]>`](https://crates.io/crates/smallvec), which is a
/// specialized [`Vec`] backed by a small, inline, fixed-size array when there are ≤ 3 items stored.
2021-03-17 06:30:47 +01:00
///
/// # History
2021-03-17 06:30:47 +01:00
///
/// And Saint Attila raised the `SmallVec` up on high, saying, "O Lord, bless this Thy `SmallVec`
/// that, with it, Thou mayest blow Thine allocation costs to tiny bits in Thy mercy."
///
/// And the Lord did grin, and the people did feast upon the lambs and sloths and carp and anchovies
/// and orangutans and breakfast cereals and fruit bats and large chu...
///
/// And the Lord spake, saying, "First shalt thou depend on the [`smallvec`](https://crates.io/crates/smallvec) crate.
2021-09-10 14:25:22 +02:00
/// Then, shalt thou keep three inline. No more. No less. Three shalt be the number thou shalt keep inline,
/// and the number to keep inline shalt be three. Four shalt thou not keep inline, nor either keep inline
/// thou two, excepting that thou then proceed to three. Five is right out. Once the number three,
/// being the third number, be reached, then, lobbest thou thy `SmallVec` towards thy heap, who,
2021-03-17 06:30:47 +01:00
/// being slow and cache-naughty in My sight, shall snuff it."
///
2021-09-11 13:40:40 +02:00
/// # Why Three
2021-03-17 06:30:47 +01:00
///
/// `StaticVec` is used frequently to keep small lists of items in inline (non-heap) storage in
/// order to improve cache friendliness and reduce indirections.
///
2021-09-10 14:25:22 +02:00
/// The number 3, other than being the holy number, is carefully chosen for a balance between
2021-03-17 06:30:47 +01:00
/// storage space and reduce allocations. That is because most function calls (and most functions,
/// for that matter) contain fewer than 4 arguments, the exception being closures that capture a
2021-03-17 06:30:47 +01:00
/// large number of external variables.
///
2021-09-11 13:40:40 +02:00
/// In addition, most script blocks either contain many statements, or just one or two lines;
2021-09-10 14:25:22 +02:00
/// most scripts load fewer than 4 external modules; most module paths contain fewer than 4 levels
2021-09-11 13:40:40 +02:00
/// (e.g. `std::collections::map::HashMap` is 4 levels and it is just about as long as they get).
2020-10-10 07:41:55 +02:00
#[cfg(not(feature = "internals"))]
2021-09-10 14:25:22 +02:00
type StaticVec<T> = smallvec::SmallVec<[T; 3]>;
2020-10-10 07:41:55 +02:00
2021-09-11 13:40:40 +02:00
/// _(internals)_ Alias to [`smallvec::SmallVec<[T; 3]>`](https://crates.io/crates/smallvec),
/// which is a [`Vec`] backed by a small, inline, fixed-size array when there are ≤ 3 items stored.
2020-10-10 07:41:55 +02:00
/// Exported under the `internals` feature only.
2021-03-17 06:30:47 +01:00
///
/// # History
2021-03-17 06:30:47 +01:00
///
/// And Saint Attila raised the `SmallVec` up on high, saying, "O Lord, bless this Thy `SmallVec`
/// that, with it, Thou mayest blow Thine allocation costs to tiny bits in Thy mercy."
///
/// And the Lord did grin, and the people did feast upon the lambs and sloths and carp and anchovies
/// and orangutans and breakfast cereals and fruit bats and large chu...
///
/// And the Lord spake, saying, "First shalt thou depend on the [`smallvec`](https://crates.io/crates/smallvec) crate.
2021-09-10 14:25:22 +02:00
/// Then, shalt thou keep three inline. No more. No less. Three shalt be the number thou shalt keep inline,
/// and the number to keep inline shalt be three. Four shalt thou not keep inline, nor either keep inline
/// thou two, excepting that thou then proceed to three. Five is right out. Once the number three,
/// being the third number, be reached, then, lobbest thou thy `SmallVec` towards thy heap, who,
2021-03-17 06:30:47 +01:00
/// being slow and cache-naughty in My sight, shall snuff it."
///
2021-09-11 13:40:40 +02:00
/// # Why Three
2021-03-17 06:30:47 +01:00
///
/// `StaticVec` is used frequently to keep small lists of items in inline (non-heap) storage in
/// order to improve cache friendliness and reduce indirections.
///
2021-09-10 14:25:22 +02:00
/// The number 3, other than being the holy number, is carefully chosen for a balance between
2021-03-17 06:30:47 +01:00
/// storage space and reduce allocations. That is because most function calls (and most functions,
/// for that matter) contain fewer than 4 arguments, the exception being closures that capture a
2021-03-17 06:30:47 +01:00
/// large number of external variables.
///
2021-09-11 13:40:40 +02:00
/// In addition, most script blocks either contain many statements, or just one or two lines;
2021-09-10 14:25:22 +02:00
/// most scripts load fewer than 4 external modules; most module paths contain fewer than 4 levels
2021-09-11 13:40:40 +02:00
/// (e.g. `std::collections::map::HashMap` is 4 levels and it is just about as long as they get).
2020-06-23 04:43:24 +02:00
#[cfg(feature = "internals")]
2021-09-10 14:25:22 +02:00
pub type StaticVec<T> = smallvec::SmallVec<[T; 3]>;
2021-09-20 05:34:01 +02:00
pub(crate) type SmartString = smartstring::SmartString<smartstring::LazyCompact>;
// Compiler guards against mutually-exclusive feature flags
#[cfg(feature = "no_float")]
#[cfg(feature = "f32_float")]
2021-09-12 15:06:13 +02:00
compile_error!("`f32_float` cannot be used with `no_float`");
#[cfg(feature = "only_i32")]
#[cfg(feature = "only_i64")]
compile_error!("`only_i32` and `only_i64` cannot be used together");
#[cfg(feature = "no_std")]
#[cfg(feature = "wasm-bindgen")]
2021-09-12 15:06:13 +02:00
compile_error!("`wasm-bindgen` cannot be used with `no-std`");
#[cfg(feature = "no_std")]
#[cfg(feature = "stdweb")]
2021-09-12 15:06:13 +02:00
compile_error!("`stdweb` cannot be used with `no-std`");
#[cfg(any(target_arch = "wasm32", target_arch = "wasm64"))]
#[cfg(feature = "no_std")]
2021-09-12 15:06:13 +02:00
compile_error!("`no_std` cannot be used for WASM target");
#[cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))]
#[cfg(feature = "wasm-bindgen")]
2021-09-12 15:06:13 +02:00
compile_error!("`wasm-bindgen` cannot be used for non-WASM target");
#[cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))]
#[cfg(feature = "stdweb")]
2021-09-12 15:06:13 +02:00
compile_error!("`stdweb` cannot be used non-WASM target");
#[cfg(feature = "wasm-bindgen")]
#[cfg(feature = "stdweb")]
compile_error!("`wasm-bindgen` and `stdweb` cannot be used together");