rhai/src/lib.rs

94 lines
4.0 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
//!
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.
//! It provides a familiar syntax based on JS and Rust and a simple Rust interface.
//! 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
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
//! }
//!
//! compute_something(factorial(10))
//! ```
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-03-09 14:09:53 +01:00
//! fn main() -> Result<(), EvalAltResult>
//! {
//! 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
//! }
//!
//! let mut engine = Engine::new();
//!
//! engine.register_fn("compute_something", compute_something);
2017-12-20 12:16:14 +01:00
//!
//! # #[cfg(not(feature = "no_std"))]
//! assert_eq!(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
//!
//! | 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. |
//! | `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. |
//! | `sync` | Restrict all values types to those that are `Send + Sync`. Under this feature, `Engine`, `Scope` and `AST` are all `Send + Sync`. |
//!
//! [Check out the README on GitHub for details on the Rhai language!](https://github.com/jonathandturner/rhai)
#![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;
2017-12-20 12:16:14 +01:00
mod any;
mod api;
mod builtin;
2017-12-20 21:52:26 +01:00
mod call;
mod engine;
2020-03-04 15:00:01 +01:00
mod error;
mod fn_register;
2020-03-09 14:57:07 +01:00
mod optimize;
mod parser;
2020-03-04 15:00:01 +01:00
mod result;
2020-03-03 08:20:20 +01:00
mod scope;
2020-03-18 15:03:50 +01:00
mod stdlib;
2020-03-04 15:00:01 +01:00
pub use any::{Any, AnyExt, Dynamic, Variant};
pub use call::FuncArgs;
pub use engine::Engine;
2020-03-04 15:00:01 +01:00
pub use error::{ParseError, ParseErrorType};
pub use fn_register::{RegisterDynamicFn, RegisterFn, RegisterResultFn};
pub use parser::{Position, AST, INT};
2020-03-04 15:00:01 +01:00
pub use result::EvalAltResult;
pub use scope::Scope;
#[cfg(not(feature = "no_index"))]
pub use engine::Array;
2020-03-29 17:53:35 +02:00
#[cfg(not(feature = "no_object"))]
pub use engine::Map;
#[cfg(not(feature = "no_float"))]
pub use parser::FLOAT;
#[cfg(not(feature = "no_optimize"))]
pub use optimize::OptimizationLevel;