2017-10-28 22:33:00 +02:00
//! # Rhai - embedded scripting for Rust
2017-12-20 12:16:14 +01:00
//!
2017-10-28 22:33:00 +02:00
//! Rhai is a tiny, simple and very fast embedded scripting language for Rust
//! that gives you a safe and easy way to add scripting to your applications.
2020-06-22 16:02:49 +02:00
//! It provides a familiar syntax based on JavaScript and Rust and a simple Rust interface.
2020-04-09 04:38:33 +02:00
//! Here is a quick example.
//!
//! First, the contents of `my_script.rhai`:
2017-12-20 12:16:14 +01:00
//!
2020-03-19 06:52:10 +01:00
//! ```,ignore
2020-04-09 04:38:33 +02: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
//!
2017-10-28 22:33:00 +02:00
//! And the Rust part:
2017-12-20 12:16:14 +01:00
//!
2020-03-19 06:52:10 +01:00
//! ```,no_run
2020-03-09 14:09:53 +01:00
//! use rhai::{Engine, EvalAltResult, RegisterFn};
2017-12-20 12:16:14 +01:00
//!
2020-04-21 17:25:12 +02: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
//!
2020-04-07 07:23:06 +02:00
//! # #[cfg(not(feature = "no_std"))]
2020-06-17 03:54:17 +02:00
//! # #[cfg(not(target_arch = "wasm32"))]
2020-04-09 04:38:33 +02:00
//! assert_eq!(
2020-04-09 12:45:49 +02:00
//! // Evaluate the script, expects a 'bool' return
2020-04-09 04:38:33 +02:00
//! engine.eval_file::<bool>("my_script.rhai".into())?,
//! true
//! );
2020-03-09 14:09:53 +01:00
//!
//! Ok(())
//! }
2017-10-28 22:33:00 +02:00
//! ```
//!
2020-04-03 13:42:01 +02:00
//! ## Optional features
//!
2020-05-26 08:14:03 +02:00
//! | Feature | Description |
//! | ------------- | ----------------------------------------------------------------------------------------------------------------------------------|
//! | `unchecked` | Exclude arithmetic checking (such as overflows and division by zero). Beware that a bad script may panic the entire system! |
//! | `no_function` | Disable script-defined functions if not needed. |
2020-06-20 06:23:32 +02:00
//! | `no_module` | Disable loading external modules if not needed. |
2020-05-26 08:14:03 +02:00
//! | `no_index` | Disable arrays and indexing features if not needed. |
//! | `no_object` | Disable support for custom types and objects. |
//! | `no_float` | Disable floating-point numbers and math if not needed. |
//! | `no_optimize` | Disable the script optimizer. |
//! | `only_i32` | Set the system integer type to `i32` and disable all other integer types. `INT` is set to `i32`. |
//! | `only_i64` | Set the system integer type to `i64` and disable all other integer types. `INT` is set to `i64`. |
//! | `no_std` | Build for `no-std`. Notice that additional dependencies will be pulled in to replace `std` features. |
2020-07-06 07:01:57 +02:00
//! | `sync` | Restrict all values types to those that are `Send + Sync`. Under this feature, `Engine`, `Scope` and `AST` are all `Send + Sync`. |
2020-07-04 09:39:40 +02:00
//! | `serde` | Enable serialization/deserialization via `serde`. Notice that the [`serde`](https://crates.io/crates/serde) crate will be pulled in together with its dependencies. |
2020-06-23 04:43:24 +02:00
//! | `internals` | Expose internal data structures (beware they may be volatile from version to version). |
2020-04-03 13:42:01 +02:00
//!
2020-06-23 04:43:24 +02:00
//! See [The Rhai Book](https://schungx.github.io/rhai) for details on the Rhai script engine and language.
2016-03-03 16:55:28 +01:00
2020-03-18 05:04:26 +01:00
#![ cfg_attr(feature = " no_std " , no_std) ]
2017-10-02 23:44:45 +02:00
2020-03-18 05:04:26 +01:00
#[ cfg(feature = " no_std " ) ]
2020-03-17 19:26:11 +01:00
extern crate alloc ;
2017-12-20 12:16:14 +01:00
mod any ;
2020-03-02 07:28:42 +01:00
mod api ;
2016-03-03 16:55:28 +01:00
mod engine ;
2020-03-04 15:00:01 +01:00
mod error ;
2020-04-08 17:01:48 +02:00
mod fn_call ;
2020-04-09 04:38:33 +02:00
mod fn_func ;
2020-06-18 12:39:28 +02:00
mod fn_native ;
2016-03-03 16:55:28 +01:00
mod fn_register ;
2020-05-05 06:24:13 +02:00
mod module ;
2020-03-09 14:57:07 +01:00
mod optimize ;
2020-04-20 18:11:25 +02:00
pub mod packages ;
2016-03-03 16:55:28 +01:00
mod parser ;
2020-03-04 15:00:01 +01:00
mod result ;
2020-03-03 08:20:20 +01:00
mod scope ;
2020-07-03 16:48:33 +02:00
#[ cfg(feature = " serde " ) ]
2020-07-03 11:19:55 +02:00
mod serde ;
2020-07-05 09:23:51 +02:00
mod settings ;
2020-03-18 15:03:50 +01:00
mod stdlib ;
2020-07-10 16:01:47 +02:00
#[ cfg(feature = " internals " ) ]
2020-07-09 13:54:28 +02:00
mod syntax ;
2020-04-15 16:21:23 +02:00
mod token ;
2020-05-14 12:27:22 +02:00
mod r #unsafe ;
2020-05-05 06:24:13 +02:00
mod utils ;
2016-03-03 16:55:28 +01:00
2020-04-12 17:00:06 +02:00
pub use any ::Dynamic ;
2020-05-05 06:24:13 +02:00
pub use engine ::Engine ;
2020-03-04 15:00:01 +01:00
pub use error ::{ ParseError , ParseErrorType } ;
2020-07-06 15:30:35 +02:00
pub use fn_native ::{ FnPtr , IteratorFn } ;
2020-05-22 07:09:17 +02:00
pub use fn_register ::{ RegisterFn , RegisterResultFn } ;
2020-05-13 13:21:42 +02:00
pub use module ::Module ;
2020-05-25 07:44:28 +02:00
pub use parser ::{ ImmutableString , AST , INT } ;
2020-03-04 15:00:01 +01:00
pub use result ::EvalAltResult ;
2020-03-25 04:24:29 +01:00
pub use scope ::Scope ;
2020-04-15 16:21:23 +02:00
pub use token ::Position ;
2020-05-05 06:24:13 +02:00
pub use utils ::calc_fn_spec as calc_fn_hash ;
2020-03-10 10:10:33 +01:00
2020-06-30 12:34:58 +02:00
#[ cfg(not(feature = " no_function " )) ]
pub use parser ::FnAccess ;
2020-04-08 17:01:48 +02:00
#[ cfg(not(feature = " no_function " )) ]
2020-04-09 04:38:33 +02:00
pub use fn_func ::Func ;
2020-04-08 17:01:48 +02:00
2020-03-10 10:10:33 +01:00
#[ cfg(not(feature = " no_index " )) ]
pub use engine ::Array ;
2020-03-14 13:06:40 +01:00
2020-03-29 17:53:35 +02:00
#[ cfg(not(feature = " no_object " )) ]
pub use engine ::Map ;
2020-03-14 13:06:40 +01:00
#[ cfg(not(feature = " no_float " )) ]
pub use parser ::FLOAT ;
2020-03-15 15:39:58 +01: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-07-04 10:21:15 +02:00
///
/// Not available under the `no_module` feature.
2020-05-05 17:57:25 +02:00
#[ cfg(not(feature = " no_module " )) ]
pub mod module_resolvers {
pub use crate ::module ::resolvers ::* ;
}
2020-05-05 09:00:10 +02:00
2020-07-04 09:39:40 +02:00
/// Serialization support for [`serde`](https://crates.io/crates/serde).
2020-07-04 10:21:15 +02:00
///
/// Requires the `serde` feature.
2020-07-03 16:42:56 +02:00
#[ cfg(feature = " serde " ) ]
pub mod ser {
pub use crate ::serde ::ser ::to_dynamic ;
}
2020-07-04 09:39:40 +02:00
/// Deserialization support for [`serde`](https://crates.io/crates/serde).
2020-07-04 10:21:15 +02:00
///
/// Requires the `serde` feature.
2020-07-03 11:19:55 +02:00
#[ cfg(feature = " serde " ) ]
pub mod de {
pub use crate ::serde ::de ::from_dynamic ;
}
2020-03-15 15:39:58 +01:00
#[ cfg(not(feature = " no_optimize " )) ]
pub use optimize ::OptimizationLevel ;
2020-06-23 04:43:24 +02:00
// Expose internal data structures.
2020-07-09 13:54:28 +02:00
#[ cfg(feature = " internals " ) ]
#[ deprecated(note = " this type is volatile and may change " ) ]
pub use error ::LexError ;
2020-06-23 04:43:24 +02:00
#[ cfg(feature = " internals " ) ]
2020-06-25 05:07:46 +02:00
#[ deprecated(note = " this type is volatile and may change " ) ]
2020-06-26 13:44:50 +02:00
pub use token ::{ get_next_token , parse_string_literal , InputStream , Token , TokenizeState } ;
2020-06-23 04:43:24 +02:00
#[ cfg(feature = " internals " ) ]
2020-06-25 05:07:46 +02:00
#[ deprecated(note = " this type is volatile and may change " ) ]
2020-07-09 13:54:28 +02:00
pub use parser ::{ CustomExpr , Expr , ReturnType , ScriptFnDef , Stmt } ;
#[ cfg(feature = " internals " ) ]
#[ deprecated(note = " this type is volatile and may change " ) ]
2020-07-11 09:09:17 +02:00
pub use engine ::{ Expression , Imports , State as EvalState } ;
2020-06-23 04:43:24 +02:00
#[ cfg(feature = " internals " ) ]
2020-06-25 05:07:46 +02:00
#[ deprecated(note = " this type is volatile and may change " ) ]
2020-06-23 04:43:24 +02:00
pub use module ::ModuleRef ;
#[ cfg(feature = " internals " ) ]
2020-06-25 05:07:46 +02:00
#[ deprecated(note = " this type is volatile and may change " ) ]
2020-06-23 04:43:24 +02:00
pub use utils ::StaticVec ;