rhai/README.md

1882 lines
71 KiB
Markdown
Raw Normal View History

2020-03-09 05:53:07 +01:00
Rhai - Embedded Scripting for Rust
=================================
2016-02-29 22:43:45 +01:00
2020-03-22 03:18:16 +01:00
![GitHub last commit](https://img.shields.io/github/last-commit/jonathandturner/rhai)
[![Travis (.org)](https://img.shields.io/travis/jonathandturner/rhai)](http://travis-ci.org/jonathandturner/rhai)
[![license](https://img.shields.io/github/license/jonathandturner/rhai)](https://github.com/license/jonathandturner/rhai)
[![crates.io](https://img.shields.io/crates/v/rhai.svg)](https::/crates.io/crates/rhai/)
![crates.io](https://img.shields.io/crates/d/rhai)
[![API Docs](https://docs.rs/rhai/badge.svg)](https://docs.rs/rhai/)
2020-03-16 05:42:01 +01:00
Rhai is an embedded scripting language and evaluation engine for Rust that gives a safe and easy way to add scripting to any application.
2016-03-02 20:53:12 +01:00
2020-03-18 03:50:51 +01:00
Rhai's current features set:
2016-03-03 15:59:53 +01:00
2020-03-18 03:50:51 +01:00
* `no-std` support
2020-03-16 05:42:01 +01:00
* Easy integration with Rust functions and data types, supporting getter/setter methods
* Easily call a script-defined function from Rust
* Fairly efficient (1 million iterations in 0.75 sec on my 5 year old laptop)
2016-03-04 14:08:34 +01:00
* Low compile-time overhead (~0.6 sec debug/~3 sec release for script runner app)
2020-03-03 10:28:38 +01:00
* Easy-to-use language similar to JS+Rust
2016-03-03 15:59:53 +01:00
* Support for overloaded functions
2020-03-16 05:42:01 +01:00
* Compiled script is optimized for repeat evaluations
2020-03-19 06:52:10 +01:00
* Very few additional dependencies (right now only [`num-traits`](https://crates.io/crates/num-traits/)
to do checked arithmetic operations); for [`no_std`] builds, a number of additional dependencies are
pulled in to provide for functionalities that used to be in `std`.
2016-03-03 15:59:53 +01:00
2020-03-18 05:13:44 +01:00
**Note:** Currently, the version is 0.11.0, so the language and API's may change before they stabilize.
2016-03-14 16:31:24 +01:00
2020-03-09 05:53:07 +01:00
Installation
------------
2016-03-14 16:31:24 +01:00
2020-03-16 05:42:01 +01:00
Install the Rhai crate by adding this line to `dependencies`:
2016-03-14 16:31:24 +01:00
2017-12-11 07:32:12 +01:00
```toml
2016-03-14 16:31:24 +01:00
[dependencies]
2020-03-18 05:13:44 +01:00
rhai = "0.11.0"
2016-03-14 16:31:24 +01:00
```
2020-03-24 02:49:19 +01:00
Use the latest released crate version on [`crates.io`](https::/crates.io/crates/rhai/):
2020-03-02 08:20:29 +01:00
```toml
[dependencies]
rhai = "*"
```
2020-03-24 02:49:19 +01:00
Crate versions are released on [`crates.io`](https::/crates.io/crates/rhai/) infrequently, so if you want to track the
latest features, enhancements and bug fixes, pull directly from GitHub:
```toml
[dependencies]
rhai = { git = "https://github.com/jonathandturner/rhai" }
```
2020-03-02 08:20:29 +01:00
2020-03-16 05:42:01 +01:00
Beware that in order to use pre-releases (e.g. alpha and beta), the exact version must be specified in the `Cargo.toml`.
2020-02-25 04:23:46 +01:00
2020-03-09 05:53:07 +01:00
Optional features
-----------------
| Feature | Description |
| ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `no_stdlib` | Exclude the standard library of utility functions in the build, and only include the minimum necessary functionalities. Standard types are not affected. |
| `unchecked` | Exclude arithmetic checking (such as overflows and division by zero). Beware that a bad script may panic the entire system! |
2020-03-16 05:42:01 +01:00
| `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. |
2020-03-16 05:42:01 +01:00
| `no_float` | Disable floating-point numbers and math if not needed. |
| `no_optimize` | Disable the script optimizer. |
2020-03-16 07:50:12 +01:00
| `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`. |
2020-03-18 03:50:51 +01:00
| `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`. |
2020-03-16 05:42:01 +01:00
By default, Rhai includes all the standard functionalities in a small, tight package. Most features are here to opt-**out** of certain functionalities that are not needed.
Excluding unneeded functionalities can result in smaller, faster builds as well as less bugs due to a more restricted language.
2020-03-19 06:52:10 +01:00
[`unchecked`]: #optional-features
[`no_stdlib`]: #optional-features
[`no_index`]: #optional-features
[`no_float`]: #optional-features
[`no_function`]: #optional-features
[`no_object`]: #optional-features
2020-03-19 06:52:10 +01:00
[`no_optimize`]: #optional-features
[`only_i32`]: #optional-features
[`only_i64`]: #optional-features
[`no_std`]: #optional-features
[`sync`]: #optional-features
2020-03-19 06:52:10 +01:00
2020-03-09 05:53:07 +01:00
Related
-------
2016-03-03 16:00:29 +01:00
2016-03-04 14:13:57 +01:00
Other cool projects to check out:
2020-02-25 08:01:50 +01:00
2020-03-24 02:49:19 +01:00
* [ChaiScript](http://chaiscript.com/) - A strong inspiration for Rhai. An embedded scripting language for C++ that I helped created many moons ago, now being led by my cousin.
2020-03-16 05:42:01 +01:00
* Check out the list of [scripting languages for Rust](https://github.com/rust-unofficial/awesome-rust#scripting) on [awesome-rust](https://github.com/rust-unofficial/awesome-rust)
2016-03-04 14:13:57 +01:00
2020-03-09 05:53:07 +01:00
Examples
--------
2020-02-25 08:01:50 +01:00
A number of examples can be found in the `examples` folder:
2020-02-25 08:01:50 +01:00
2020-03-18 05:09:34 +01:00
| Example | Description |
| ------------------------------------------------------------------ | --------------------------------------------------------------------------- |
| [`arrays_and_structs`](examples/arrays_and_structs.rs) | demonstrates registering a new type to Rhai and the usage of arrays on it |
| [`custom_types_and_methods`](examples/custom_types_and_methods.rs) | shows how to register a type and methods for it |
| [`hello`](examples/hello.rs) | simple example that evaluates an expression and prints the result |
| [`no_std`](examples/no_std.rs) | example to test out `no-std` builds |
| [`reuse_scope`](examples/reuse_scope.rs) | evaluates two pieces of code in separate runs, but using a common [`Scope`] |
| [`rhai_runner`](examples/rhai_runner.rs) | runs each filename passed to it as a Rhai script |
| [`simple_fn`](examples/simple_fn.rs) | shows how to register a Rust function to a Rhai [`Engine`] |
| [`repl`](examples/repl.rs) | a simple REPL, interactively evaluate statements from stdin |
Examples can be run with the following command:
2020-02-25 08:01:50 +01:00
```bash
cargo run --example name
```
The `repl` example is a particularly good one as it allows you to interactively try out Rhai's
language features in a standard REPL (**R**ead-**E**val-**P**rint **L**oop).
2020-03-09 05:53:07 +01:00
Example Scripts
---------------
2020-02-25 08:01:50 +01:00
There are also a number of examples scripts that showcase Rhai's features, all in the `scripts` folder:
2020-02-25 08:01:50 +01:00
2020-03-16 07:50:12 +01:00
| Language feature scripts | Description |
| ---------------------------------------------------- | ------------------------------------------------------------- |
| [`array.rhai`](scripts/array.rhai) | arrays in Rhai |
| [`assignment.rhai`](scripts/assignment.rhai) | variable declarations |
| [`comments.rhai`](scripts/comments.rhai) | just comments |
| [`for1.rhai`](scripts/for1.rhai) | for loops |
| [`function_decl1.rhai`](scripts/function_decl1.rhai) | a function without parameters |
| [`function_decl2.rhai`](scripts/function_decl2.rhai) | a function with two parameters |
| [`function_decl3.rhai`](scripts/function_decl3.rhai) | a function with many parameters |
| [`if1.rhai`](scripts/if1.rhai) | if example |
| [`loop.rhai`](scripts/loop.rhai) | endless loop in Rhai, this example emulates a do..while cycle |
| [`op1.rhai`](scripts/op1.rhai) | just a simple addition |
| [`op2.rhai`](scripts/op2.rhai) | simple addition and multiplication |
| [`op3.rhai`](scripts/op3.rhai) | change evaluation order with parenthesis |
| [`string.rhai`](scripts/string.rhai) | string operations |
| [`while.rhai`](scripts/while.rhai) | while loop |
| Example scripts | Description |
| -------------------------------------------- | ---------------------------------------------------------------------------------- |
| [`speed_test.rhai`](scripts/speed_test.rhai) | a simple program to measure the speed of Rhai's interpreter (1 million iterations) |
| [`primes.rhai`](scripts/primes.rhai) | use Sieve of Eratosthenes to find all primes smaller than a limit |
To run the scripts, either make a tiny program or use of the `rhai_runner` example:
2020-02-25 08:01:50 +01:00
```bash
cargo run --example rhai_runner scripts/any_script.rhai
```
2020-03-09 05:53:07 +01:00
Hello world
-----------
2016-03-31 16:01:58 +02:00
2020-03-19 06:52:10 +01:00
[`Engine`]: #hello-world
To get going with Rhai, create an instance of the scripting engine and then call `eval`:
2016-02-29 22:43:45 +01:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-09 09:54:43 +01:00
use rhai::{Engine, EvalAltResult};
2016-03-02 20:40:07 +01:00
fn main() -> Result<(), EvalAltResult>
{
2016-03-03 17:07:45 +01:00
let mut engine = Engine::new();
2020-03-09 09:54:43 +01:00
let result = engine.eval::<i64>("40 + 2")?;
println!("Answer: {}", result); // prints 42
Ok(())
2016-03-02 20:40:07 +01:00
}
```
2016-03-31 16:01:58 +02:00
2020-03-16 05:42:01 +01:00
The type parameter is used to specify the type of the return value, which _must_ match the actual type or an error is returned.
Rhai is very strict here. There are two ways to specify the return type - _turbofish_ notation, or type inference.
2016-03-31 16:06:39 +02:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-16 05:42:01 +01:00
let result = engine.eval::<i64>("40 + 2")?; // return type is i64, specified using 'turbofish' notation
let result: i64 = engine.eval("40 + 2")?; // return type is inferred to be i64
2020-04-01 03:51:33 +02:00
let result = engine.eval::<String>("40 + 2")?; // returns an error because the actual return type is i64, not String
2016-03-31 16:06:39 +02:00
```
2020-03-16 05:42:01 +01:00
Evaluate a script file directly:
```rust
let result = engine.eval_file::<i64>("hello_world.rhai".into())?; // 'eval_file' takes a 'PathBuf'
```
To repeatedly evaluate a script, _compile_ it first into an AST (abstract syntax tree) form:
2020-02-25 04:08:40 +01:00
```rust
2020-02-25 08:01:50 +01:00
// Compile to an AST and store it for later evaluations
2020-03-09 09:54:43 +01:00
let ast = engine.compile("40 + 2")?;
2020-02-25 04:08:40 +01:00
for _ in 0..42 {
2020-03-16 05:42:01 +01:00
let result: i64 = engine.eval_ast(&ast)?;
2020-03-09 09:54:43 +01:00
2020-03-16 16:51:32 +01:00
println!("Answer #{}: {}", i, result); // prints 42
2020-02-25 04:08:40 +01:00
}
```
Compiling a script file is also supported:
2020-02-25 04:08:40 +01:00
```rust
2020-03-16 05:42:01 +01:00
let ast = engine.compile_file("hello_world.rhai".into())?;
2020-02-25 04:08:40 +01:00
```
Rhai also allows working _backwards_ from the other direction - i.e. calling a Rhai-scripted function from Rust - via `call_fn`
or its cousins `call_fn1` (one argument) and `call_fn0` (no argument).
```rust
// Define functions in a script.
let ast = engine.compile(true,
2020-03-16 16:51:32 +01:00
r"
// a function with two parameters: String and i64
fn hello(x, y) {
x.len() + y
}
2020-03-16 16:51:32 +01:00
// functions can be overloaded: this one takes only one parameter
fn hello(x) {
x * 2
}
// this one takes no parameters
fn hello() {
42
}
2020-03-16 05:42:01 +01:00
")?;
// A custom scope can also contain any variables/constants available to the functions
let mut scope = Scope::new();
// Evaluate a function defined in the script, passing arguments into the script as a tuple
2020-03-12 14:19:34 +01:00
// if there are more than one. Beware, arguments must be of the correct types because
2020-03-16 05:42:01 +01:00
// Rhai does not have built-in type conversions. If arguments of the wrong types are passed,
2020-03-12 14:19:34 +01:00
// the Engine will not find the function.
let result: i64 = engine.call_fn(&mut scope, &ast, "hello", ( String::from("abc"), 123_i64 ) )?;
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// put arguments in a tuple
let result: i64 = engine.call_fn1(&mut scope, &ast, "hello", 123_i64)?
// ^^^^^^^^ use 'call_fn1' for one argument
let result: i64 = engine.call_fn0(&mut scope, &ast, "hello")?
// ^^^^^^^^ use 'call_fn0' for no arguments
```
2020-03-22 14:03:58 +01:00
Evaluate expressions only
-------------------------
Sometimes a use case does not require a full-blown scripting _language_, but only needs to evaluate _expressions_.
In these cases, use the `compile_expression` and `eval_expression` methods or their `_with_scope` variants.
```rust
let result = engine.eval_expression::<i64>("2 + (10 + 10) * 2")?;
```
When evaluation _expressions_, no control-flow statement (e.g. `if`, `while`, `for`) is not supported and will be
parse errors when encountered - not even variable assignments.
```rust
// The following are all syntax errors because the script is not an expression.
engine.eval_expression::<()>("x = 42")?;
let ast = engine.compile_expression("let x = 42")?;
let result = engine.eval_expression_with_scope::<i64>(&mut scope, "if x { 42 } else { 123 }")?;
```
2020-03-09 05:53:07 +01:00
Values and types
----------------
2020-03-27 16:47:23 +01:00
[`type_of()`]: #values-and-types
[`to_string()`]: #values-and-types
2020-03-19 06:52:10 +01:00
The following primitive types are supported natively:
| Category | Equivalent Rust types | `type_of()` | `to_string()` |
| ----------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------------------- |
| **Integer number** | `u8`, `i8`, `u16`, `i16`, <br/>`u32`, `i32` (default for [`only_i32`]),<br/>`u64`, `i64` _(default)_ | `"i32"`, `"u64"` etc. | `"42"`, `"123"` etc. |
| **Floating-point number** (disabled with [`no_float`]) | `f32`, `f64` _(default)_ | `"f32"` or `"f64"` | `"123.4567"` etc. |
| **Boolean value** | `bool` | `"bool"` | `"true"` or `"false"` |
| **Unicode character** | `char` | `"char"` | `"A"`, `"x"` etc. |
| **Unicode string** | `String` (_not_ `&str`) | `"string"` | `"hello"` etc. |
| **Array** (disabled with [`no_index`]) | `rhai::Array` | `"array"` | `"[ ? ? ? ]"` |
| **Object map** (disabled with [`no_object`]) | `rhai::Map` | `"map"` | `#{ "a": 1, "b": 2 }` |
| **Dynamic value** (i.e. can be anything) | `rhai::Dynamic` | _the actual type_ | _actual value_ |
| **System integer** (current configuration) | `rhai::INT` (`i32` or `i64`) | `"i32"` or `"i64"` | `"42"`, `"123"` etc. |
| **System floating-point** (current configuration, disabled with [`no_float`]) | `rhai::FLOAT` (`f32` or `f64`) | `"f32"` or `"f64"` | `"123.456"` etc. |
| **Nothing/void/nil/null** (or whatever you want to call it) | `()` | `"()"` | `""` _(empty string)_ |
2020-03-19 06:52:10 +01:00
[`()`]: #values-and-types
2020-03-16 05:42:01 +01:00
All types are treated strictly separate by Rhai, meaning that `i32` and `i64` and `u32` are completely different - they even cannot be added together. This is very similar to Rust.
2020-03-16 05:42:01 +01:00
The default integer type is `i64`. If other integer types are not needed, it is possible to exclude them and make a smaller build with the [`only_i64`] feature.
2020-03-16 05:42:01 +01:00
If only 32-bit integers are needed, enabling the [`only_i32`] feature will remove support for all integer types other than `i32`, including `i64`.
2020-03-19 06:52:10 +01:00
This is useful on some 32-bit systems where using 64-bit integers incurs a performance penalty.
2020-03-19 06:52:10 +01:00
If no floating-point is needed or supported, use the [`no_float`] feature to remove it.
The `to_string` function converts a standard type into a string for display purposes.
The `type_of` function detects the actual type of a value. This is useful because all variables are [`Dynamic`] in nature.
2020-03-19 06:52:10 +01:00
```rust
// Use 'type_of()' to get the actual types of values
type_of('c') == "char";
type_of(42) == "i64";
let x = 123;
2020-04-01 03:51:33 +02:00
x.type_of(); // <- error: 'type_of' cannot use method-call style
type_of(x) == "i64";
2020-03-19 06:52:10 +01:00
x = 99.999;
type_of(x) == "f64";
2020-03-19 06:52:10 +01:00
x = "hello";
if type_of(x) == "string" {
do_something_with_string(x);
}
```
`Dynamic` values
----------------
[`Dynamic`]: #dynamic-values
A `Dynamic` value can be _any_ type. However, if the [`sync`] feature is used, then all types must be `Send + Sync`.
Because [`type_of()`] a `Dynamic` value returns the type of the actual value, it is usually used to perform type-specific
actions based on the actual value's type.
```rust
let mystery = get_some_dynamic_value();
if type_of(mystery) == "i64" {
print("Hey, I got an integer here!");
} else if type_of(mystery) == "f64" {
print("Hey, I got a float here!");
} else if type_of(mystery) == "string" {
print("Hey, I got a string here!");
} else if type_of(mystery) == "bool" {
print("Hey, I got a boolean here!");
} else if type_of(mystery) == "array" {
print("Hey, I got an array here!");
} else if type_of(mystery) == "map" {
print("Hey, I got an object map here!");
} else if type_of(mystery) == "TestStruct" {
print("Hey, I got the TestStruct custom type here!");
} else {
print("I don't know what this is: " + type_of(mystery));
}
```
In Rust, sometimes a `Dynamic` forms part of the return value - a good example is elements within an `Array` which are `Dynamic`,
or property values in an object map. In order to get the _real_ value, the actual value type _must_ be known in advance.
There is no easy way for Rust to detect, at run-time, what type the `Dynamic` value is (short of using the `type_name`
function to get the textual name of the type and then matching on that).
To use a `Dynamic` value in Rust, use the `cast` method to convert the value into a specific, known type.
Alternatively, use the `try_cast` method which does not panic but returns an error when the cast fails.
```rust
use rhai::AnyExt; // Pull in the trait.
let list: Array = engine.eval("...")?; // return type is 'Array'
let item = list[0]; // an element in an 'Array' is 'Dynamic'
let value = item.cast::<i64>(); // if the element is 'i64', this succeeds; otherwise it panics
let value: i64 = item.cast(); // type can also be inferred
let value = item.try_cast::<i64>()?; // 'try_cast' does not panic when the cast fails, but returns an error
```
The `type_name` method gets the name of the actual type as a string, which you may match against.
```rust
use rhai::Any; // Pull in the trait.
let list: Array = engine.eval("...")?; // return type is 'Array'
let item = list[0]; // an element in an 'Array' is 'Dynamic'
match item.type_name() { // 'type_name' returns the name of the actual Rust type
"i64" => ...
"std::string::String" => ...
"bool" => ...
"path::to::module::TestStruct" => ...
}
```
2020-03-09 05:53:07 +01:00
Value conversions
-----------------
2020-03-19 06:52:10 +01:00
[`to_int`]: #value-conversions
[`to_float`]: #value-conversions
The `to_float` function converts a supported number to `FLOAT` (`f32` or `f64`),
and the `to_int` function converts a supported number to `INT` (`i32` or `i64`).
That's about it. For other conversions, register custom conversion functions.
```rust
let x = 42;
let y = x * 100.0; // <- error: cannot multiply i64 with f64
let y = x.to_float() * 100.0; // works
let z = y.to_int() + x; // works
2020-03-01 06:30:22 +01:00
let c = 'X'; // character
2020-03-03 10:28:38 +01:00
print("c is '" + c + "' and its code is " + c.to_int()); // prints "c is 'X' and its code is 88"
```
2020-03-09 05:53:07 +01:00
Working with functions
----------------------
2016-03-02 20:53:12 +01:00
2020-03-16 05:42:01 +01:00
Rhai's scripting engine is very lightweight. It gets most of its abilities from functions.
2020-03-19 06:52:10 +01:00
To call these functions, they need to be registered with the [`Engine`].
2016-03-02 20:53:12 +01:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-09 09:54:43 +01:00
use rhai::{Engine, EvalAltResult};
2020-04-01 03:51:33 +02:00
use rhai::RegisterFn; // use `RegisterFn` trait for `register_fn`
use rhai::{Dynamic, RegisterDynamicFn}; // use `RegisterDynamicFn` trait for `register_dynamic_fn`
2016-03-03 17:07:45 +01:00
2020-02-25 03:43:13 +01:00
// Normal function
2016-04-14 03:52:12 +02:00
fn add(x: i64, y: i64) -> i64 {
2016-03-02 20:53:12 +01:00
x + y
}
2020-02-25 08:01:50 +01:00
// Function that returns a Dynamic value
fn get_an_any() -> Dynamic {
2020-02-25 03:43:13 +01:00
Box::new(42_i64)
}
fn main() -> Result<(), EvalAltResult>
{
2016-03-02 20:53:12 +01:00
let mut engine = Engine::new();
2016-03-26 21:42:54 +01:00
engine.register_fn("add", add);
2016-04-14 03:52:12 +02:00
2020-03-09 09:54:43 +01:00
let result = engine.eval::<i64>("add(40, 2)")?;
2020-04-01 03:51:33 +02:00
println!("Answer: {}", result); // prints 42
2020-02-25 03:43:13 +01:00
2020-02-25 08:01:50 +01:00
// Functions that return Dynamic values must use register_dynamic_fn()
engine.register_dynamic_fn("get_an_any", get_an_any);
2020-02-25 03:43:13 +01:00
2020-03-09 09:54:43 +01:00
let result = engine.eval::<i64>("get_an_any()")?;
2020-04-01 03:51:33 +02:00
println!("Answer: {}", result); // prints 42
2020-03-09 09:54:43 +01:00
Ok(())
2016-03-02 20:53:12 +01:00
}
```
2016-03-02 20:40:07 +01:00
2020-03-19 06:52:10 +01:00
To return a [`Dynamic`] value from a Rust function, simply `Box` it and return it.
2020-03-02 10:04:56 +01:00
```rust
fn decide(yes_no: bool) -> Dynamic {
if yes_no {
Box::new(42_i64)
} else {
Box::new("hello world!".to_string()) // remember &str is not supported
}
}
```
2020-03-09 05:53:07 +01:00
Generic functions
-----------------
2016-03-02 20:53:12 +01:00
2020-03-16 05:42:01 +01:00
Generic functions can be used in Rhai, but separate instances for each concrete type must be registered separately:
2016-03-02 20:53:12 +01:00
2017-11-04 11:18:56 +01:00
```rust
2016-03-03 17:07:45 +01:00
use std::fmt::Display;
use rhai::{Engine, RegisterFn};
2016-03-03 17:07:45 +01:00
fn show_it<T: Display>(x: &mut T) -> () {
println!("put up a good show: {}!", x)
2016-03-02 20:53:12 +01:00
}
fn main()
{
2016-03-02 20:53:12 +01:00
let mut engine = Engine::new();
engine.register_fn("print", show_it as fn(x: &mut i64)->());
engine.register_fn("print", show_it as fn(x: &mut bool)->());
engine.register_fn("print", show_it as fn(x: &mut String)->());
2016-03-02 20:53:12 +01:00
}
```
2020-03-16 05:42:01 +01:00
This example shows how to register multiple functions (or, in this case, multiple instances of the same function) to the same name in script.
This enables function overloading based on the number and types of parameters.
2016-03-03 16:14:11 +01:00
2020-03-09 05:53:07 +01:00
Fallible functions
------------------
2020-03-16 05:42:01 +01:00
If a function is _fallible_ (i.e. it returns a `Result<_, Error>`), it can be registered with `register_result_fn` (using the `RegisterResultFn` trait).
2020-03-16 05:42:01 +01:00
The function must return `Result<_, EvalAltResult>`. `EvalAltResult` implements `From<&str>` and `From<String>` etc. and the error text gets converted into `EvalAltResult::ErrorRuntime`.
```rust
use rhai::{Engine, EvalAltResult, Position};
2020-04-01 03:51:33 +02:00
use rhai::RegisterResultFn; // use `RegisterResultFn` trait for `register_result_fn`
// Function that may fail
fn safe_divide(x: i64, y: i64) -> Result<i64, EvalAltResult> {
if y == 0 {
// Return an error if y is zero
2020-04-01 03:51:33 +02:00
Err("Division by zero detected!".into()) // short-cut to create EvalAltResult
} else {
Ok(x / y)
}
}
fn main()
{
let mut engine = Engine::new();
// Fallible functions that return Result values must use register_result_fn()
engine.register_result_fn("divide", safe_divide);
if let Err(error) = engine.eval::<i64>("divide(40, 0)") {
2020-04-01 03:51:33 +02:00
println!("Error: {:?}", error); // prints ErrorRuntime("Division by zero detected!", (1, 1)")
}
}
```
2020-03-09 05:53:07 +01:00
Overriding built-in functions
----------------------------
2020-03-02 08:20:29 +01:00
2020-03-02 10:04:56 +01:00
Any similarly-named function defined in a script overrides any built-in function.
2020-03-02 08:20:29 +01:00
```rust
// Override the built-in function 'to_int'
fn to_int(num) {
2020-03-12 06:02:13 +01:00
print("Ha! Gotcha! " + num);
2020-03-02 08:20:29 +01:00
}
2020-03-12 06:02:13 +01:00
print(to_int(123)); // what happens?
2020-03-02 08:20:29 +01:00
```
2020-03-09 05:53:07 +01:00
Custom types and methods
-----------------------
2016-03-02 20:40:07 +01:00
2016-03-02 21:08:35 +01:00
Here's an more complete example of working with Rust. First the example, then we'll break it into parts:
2016-03-02 20:53:12 +01:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-09 09:54:43 +01:00
use rhai::{Engine, EvalAltResult};
use rhai::RegisterFn;
2016-03-03 17:07:45 +01:00
2016-03-10 22:48:56 +01:00
#[derive(Clone)]
2016-03-02 20:40:07 +01:00
struct TestStruct {
2020-03-19 06:52:10 +01:00
field: i64
2016-03-02 20:40:07 +01:00
}
impl TestStruct {
fn update(&mut self) {
2020-03-19 06:52:10 +01:00
self.field += 41;
2016-03-02 20:40:07 +01:00
}
2020-03-19 06:52:10 +01:00
fn new() -> Self {
TestStruct { field: 1 }
2016-03-02 20:40:07 +01:00
}
}
fn main() -> Result<(), EvalAltResult>
{
2016-03-03 17:07:45 +01:00
let mut engine = Engine::new();
2016-03-02 20:40:07 +01:00
2016-03-03 17:07:45 +01:00
engine.register_type::<TestStruct>();
2016-03-02 20:40:07 +01:00
2016-03-26 21:42:54 +01:00
engine.register_fn("update", TestStruct::update);
engine.register_fn("new_ts", TestStruct::new);
2016-03-02 20:40:07 +01:00
2020-03-09 09:54:43 +01:00
let result = engine.eval::<TestStruct>("let x = new_ts(); x.update(); x")?;
2020-03-19 06:52:10 +01:00
println!("result: {}", result.field); // prints 42
2020-03-09 09:54:43 +01:00
Ok(())
2016-03-02 20:40:07 +01:00
}
```
All custom types must implement `Clone`. This allows the [`Engine`] to pass by value.
You can turn off support for custom types via the [`no_object`] feature.
2016-03-02 20:40:07 +01:00
2017-11-04 11:18:56 +01:00
```rust
2016-03-10 22:48:56 +01:00
#[derive(Clone)]
2016-03-02 20:40:07 +01:00
struct TestStruct {
2020-03-19 06:52:10 +01:00
field: i64
2016-03-02 20:40:07 +01:00
}
```
Next, we create a few methods that we'll later use in our scripts. Notice that we register our custom type with the [`Engine`].
2020-02-25 08:01:50 +01:00
2017-11-04 11:18:56 +01:00
```rust
2016-03-02 20:40:07 +01:00
impl TestStruct {
fn update(&mut self) {
2020-03-19 06:52:10 +01:00
self.field += 41;
2016-03-02 20:40:07 +01:00
}
2020-03-19 06:52:10 +01:00
fn new() -> Self {
TestStruct { field: 1 }
2016-03-02 20:40:07 +01:00
}
}
let mut engine = Engine::new();
engine.register_type::<TestStruct>();
```
To use methods and functions with the [`Engine`], we need to register them. There are some convenience functions to help with this.
Below I register update and new with the [`Engine`].
2016-03-02 20:40:07 +01:00
*Note: [`Engine`] follows the convention that methods use a `&mut` first parameter so that invoking methods can update the value in memory.*
2016-03-02 20:40:07 +01:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-19 06:52:10 +01:00
engine.register_fn("update", TestStruct::update); // registers 'update(&mut ts)'
engine.register_fn("new_ts", TestStruct::new); // registers 'new'
2016-03-02 20:40:07 +01:00
```
Finally, we call our script. The script can see the function and method we registered earlier.
We need to get the result back out from script land just as before, this time casting to our custom struct type.
2020-02-25 08:01:50 +01:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-09 09:54:43 +01:00
let result = engine.eval::<TestStruct>("let x = new_ts(); x.update(); x")?;
2020-03-19 06:52:10 +01:00
println!("result: {}", result.field); // prints 42
2016-03-02 20:40:07 +01:00
```
2016-03-04 14:27:06 +01:00
In fact, any function with a first argument (either by copy or via a `&mut` reference) can be used as a method-call on that type because internally they are the same thing:
methods on a type is implemented as a functions taking an first argument.
2020-02-25 08:01:50 +01:00
```rust
fn foo(ts: &mut TestStruct) -> i64 {
2020-03-19 06:52:10 +01:00
ts.field
2020-02-25 08:01:50 +01:00
}
engine.register_fn("foo", foo);
2020-03-09 09:54:43 +01:00
let result = engine.eval::<i64>("let x = new_ts(); x.foo()")?;
2020-03-19 06:52:10 +01:00
println!("result: {}", result); // prints 1
2020-02-25 08:01:50 +01:00
```
If the [`no_object`] feature is turned on, however, the _method_ style of function calls (i.e. calling a function as an object-method) is no longer supported.
```rust
// Below is a syntax error under 'no_object' because 'len' cannot be called in method style.
let result = engine.eval::<i64>("let x = [1, 2, 3]; x.len()")?;
```
[`type_of()`] works fine with custom types and returns the name of the type.
If `register_type_with_name` is used to register the custom type
2020-03-27 16:47:23 +01:00
with a special "pretty-print" name, [`type_of()`] will return that name instead.
2020-03-03 10:28:38 +01:00
```rust
2020-03-19 06:52:10 +01:00
engine.register_type::<TestStruct>();
engine.register_fn("new_ts", TestStruct::new);
let x = new_ts();
print(type_of(x)); // prints "path::to::module::TestStruct"
2020-03-19 06:52:10 +01:00
engine.register_type_with_name::<TestStruct>("Hello");
engine.register_fn("new_ts", TestStruct::new);
2020-03-03 10:28:38 +01:00
let x = new_ts();
print(type_of(x)); // prints "Hello"
2020-03-03 10:28:38 +01:00
```
2020-02-25 08:01:50 +01:00
2020-03-09 05:53:07 +01:00
Getters and setters
-------------------
2016-03-10 22:25:03 +01:00
2020-03-16 05:42:01 +01:00
Similarly, custom types can expose members by registering a `get` and/or `set` function.
2016-03-10 22:25:03 +01:00
2017-11-04 11:18:56 +01:00
```rust
2016-03-10 22:25:03 +01:00
#[derive(Clone)]
struct TestStruct {
2020-03-19 06:52:10 +01:00
field: i64
2016-03-10 22:25:03 +01:00
}
impl TestStruct {
2020-03-19 06:52:10 +01:00
fn get_field(&mut self) -> i64 {
self.field
2016-03-10 22:25:03 +01:00
}
2020-03-19 06:52:10 +01:00
fn set_field(&mut self, new_val: i64) {
self.field = new_val;
2016-03-10 22:25:03 +01:00
}
2020-03-19 06:52:10 +01:00
fn new() -> Self {
TestStruct { field: 1 }
2016-03-10 22:25:03 +01:00
}
}
let mut engine = Engine::new();
engine.register_type::<TestStruct>();
2020-03-19 06:52:10 +01:00
engine.register_get_set("xyz", TestStruct::get_field, TestStruct::set_field);
2016-03-26 21:42:54 +01:00
engine.register_fn("new_ts", TestStruct::new);
2016-03-10 22:25:03 +01:00
2020-03-19 06:52:10 +01:00
let result = engine.eval::<i64>("let a = new_ts(); a.xyz = 42; a.xyz")?;
2020-03-09 09:54:43 +01:00
2020-03-19 06:52:10 +01:00
println!("Answer: {}", result); // prints 42
2016-03-10 22:25:03 +01:00
```
Needless to say, `register_type`, `register_type_with_name`, `register_get`, `register_set` and `register_get_set`
are not available when the [`no_object`] feature is turned on.
2020-03-09 05:53:07 +01:00
Initializing and maintaining state
---------------------------------
2016-03-04 14:27:06 +01:00
2020-03-19 06:52:10 +01:00
[`Scope`]: #initializing-and-maintaining-state
2020-03-16 05:42:01 +01:00
By default, Rhai treats each [`Engine`] invocation as a fresh one, persisting only the functions that have been defined but no global state.
This gives each evaluation a clean starting slate. In order to continue using the same global state from one invocation to the next,
such a state must be manually created and passed in.
2016-03-04 14:27:06 +01:00
All `Scope` variables are [`Dynamic`], meaning they can store values of any type. If the [`sync`] feature is used, however, then only types
that are `Send + Sync` are supported, and the entire `Scope` itself will also be `Send + Sync`. This is extremely useful in multi-threaded applications.
2020-03-16 05:42:01 +01:00
In this example, a global state object (a `Scope`) is created with a few initialized variables, then the same state is threaded through multiple invocations:
2016-03-04 14:27:06 +01:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-09 09:54:43 +01:00
use rhai::{Engine, Scope, EvalAltResult};
2016-03-04 14:27:06 +01:00
fn main() -> Result<(), EvalAltResult>
{
2016-03-04 14:27:06 +01:00
let mut engine = Engine::new();
2020-03-03 08:20:20 +01:00
// First create the state
2019-09-18 12:21:07 +02:00
let mut scope = Scope::new();
2016-03-04 14:27:06 +01:00
2020-04-05 13:17:48 +02:00
// Then push (i.e. add) some initialized variables into the state.
// Remember the system number types in Rhai are i64 (i32 if 'only_i32') ond f64.
// Better stick to them or it gets hard working with the script.
2020-03-16 16:51:32 +01:00
scope.push("y", 42_i64);
scope.push("z", 999_i64);
2020-04-05 13:17:48 +02:00
// 'set_value' adds a variable when one doesn't exist
scope.set_value("s", "hello, world!".to_string()); // remember to use 'String', not '&str'
2020-03-03 08:20:20 +01:00
// First invocation
2020-03-12 14:19:34 +01:00
engine.eval_with_scope::<()>(&mut scope, r"
2020-03-19 06:52:10 +01:00
let x = 4 + 5 - y + z + s.len();
2020-03-03 08:20:20 +01:00
y = 1;
2020-03-09 09:54:43 +01:00
")?;
2016-03-04 14:27:06 +01:00
2020-03-03 08:20:20 +01:00
// Second invocation using the same state
2020-03-12 14:19:34 +01:00
let result = engine.eval_with_scope::<i64>(&mut scope, "x")?;
2020-03-09 09:54:43 +01:00
2020-04-05 13:17:48 +02:00
println!("result: {}", result); // prints 979
// Variable y is changed in the script - read it with 'get_value'
assert_eq!(scope.get_value::<i64>("y").expect("variable y should exist"), 1);
2020-03-03 08:20:20 +01:00
2020-04-05 13:17:48 +02:00
// We can modify scope variables directly with 'set_value'
scope.set_value("y", 42_i64);
assert_eq!(scope.get_value::<i64>("y").expect("variable y should exist"), 42);
2020-03-09 09:54:43 +01:00
Ok(())
2016-03-04 14:27:06 +01:00
}
```
2016-03-10 22:25:03 +01:00
2020-03-27 07:34:01 +01:00
Engine configuration options
---------------------------
| Method | Description |
| ------------------------ | ---------------------------------------------------------------------------------------- |
| `set_optimization_level` | Set the amount of script _optimizations_ performed. See [`script optimization`]. |
| `set_max_call_levels` | Set the maximum number of function call levels (default 50) to avoid infinite recursion. |
[`script optimization`]: #script-optimization
-------
2020-03-16 05:42:01 +01:00
Rhai Language Guide
2020-03-09 05:53:07 +01:00
===================
2016-03-31 15:59:54 +02:00
2020-03-09 05:53:07 +01:00
Comments
--------
2016-03-31 15:59:54 +02:00
2020-03-16 05:42:01 +01:00
Comments are C-style, including '`/*` ... `*/`' pairs and '`//`' for comments to the end of the line.
2020-03-09 05:53:07 +01:00
```rust
let /* intruder comment */ name = "Bob";
2020-03-16 05:42:01 +01:00
2020-03-09 05:53:07 +01:00
// This is a very important comment
2020-03-16 05:42:01 +01:00
2020-03-09 05:53:07 +01:00
/* This comment spans
multiple lines, so it
only makes sense that
it is even more important */
2020-03-16 05:42:01 +01:00
/* Fear not, Rhai satisfies all nesting needs with nested comments:
2020-03-09 05:53:07 +01:00
/*/*/*/*/**/*/*/*/*/
*/
```
Statements
----------
Statements are terminated by semicolons '`;`' - they are mandatory, except for the _last_ statement where it can be omitted.
A statement can be used anywhere where an expression is expected. The _last_ statement of a statement block
(enclosed by '`{`' .. '`}`' pairs) is always the return value of the statement. If a statement has no return value
2020-03-19 06:52:10 +01:00
(e.g. variable definitions, assignments) then the value will be [`()`].
```rust
let a = 42; // normal assignment statement
let a = foo(42); // normal function call statement
foo < 42; // normal expression as statement
2020-03-19 06:52:10 +01:00
let a = { 40 + 2 }; // 'a' is set to the value of the statement block, which is the value of the last statement
// ^ notice that the last statement does not require a terminating semicolon (although it also works with it)
// ^ notice that a semicolon is required here to terminate the assignment statement; it is syntax error without it
4 * 10 + 2 // this is also a statement, which is an expression, with no ending semicolon because
// it is the last statement of the whole block
```
2020-03-09 05:53:07 +01:00
Variables
---------
[variables]: #variables
2020-03-16 05:42:01 +01:00
Variables in Rhai follow normal C naming rules (i.e. must contain only ASCII letters, digits and underscores '`_`').
2020-03-19 06:52:10 +01:00
Variable names must start with an ASCII letter or an underscore '`_`', must contain at least one ASCII letter, and must start with an ASCII letter before a digit.
Therefore, names like '`_`', '`_42`', '`3a`' etc. are not legal variable names, but '`_c3po`' and '`r2d2`' are.
Variable names are also case _sensitive_.
2020-03-16 05:42:01 +01:00
Variables are defined using the `let` keyword. A variable defined within a statement block is _local_ to that block.
2017-11-04 11:18:56 +01:00
```rust
2020-04-01 03:51:33 +02:00
let x = 3; // ok
let _x = 42; // ok
let x_ = 42; // also ok
let _x_ = 42; // still ok
2020-03-16 05:42:01 +01:00
2020-04-01 03:51:33 +02:00
let _ = 123; // <- syntax error: illegal variable name
let _9 = 9; // <- syntax error: illegal variable name
2020-03-16 05:42:01 +01:00
2020-04-01 03:51:33 +02:00
let x = 42; // variable is 'x', lower case
let X = 123; // variable is 'X', upper case
2020-03-16 05:42:01 +01:00
x == 42;
X == 123;
{
2020-04-01 03:51:33 +02:00
let x = 999; // local variable 'x' shadows the 'x' in parent block
x == 999; // access to local 'x'
}
2020-04-01 03:51:33 +02:00
x == 42; // the parent block's 'x' is not changed
2016-03-31 15:59:54 +02:00
```
2020-03-13 11:12:41 +01:00
Constants
---------
Constants can be defined using the `const` keyword and are immutable. Constants follow the same naming rules as [variables].
2020-03-13 11:12:41 +01:00
```rust
const x = 42;
2020-04-01 03:51:33 +02:00
print(x * 2); // prints 84
x = 123; // <- syntax error: cannot assign to constant
2020-03-13 11:12:41 +01:00
```
2020-03-19 06:52:10 +01:00
Constants must be assigned a _value_, not an expression.
```rust
2020-04-01 03:51:33 +02:00
const x = 40 + 2; // <- syntax error: cannot assign expression to constant
```
2020-03-09 05:53:07 +01:00
Numbers
-------
2020-03-16 05:42:01 +01:00
Integer numbers follow C-style format with support for decimal, binary ('`0b`'), octal ('`0o`') and hex ('`0x`') notations.
The default system integer type (also aliased to `INT`) is `i64`. It can be turned into `i32` via the [`only_i32`] feature.
Floating-point numbers are also supported if not disabled with [`no_float`]. The default system floating-point type is `i64` (also aliased to `FLOAT`).
'`_`' separators can be added freely and are ignored within a number.
| Format | Type |
| ---------------- | ---------------- |
| `123_345`, `-42` | `i64` in decimal |
| `0o07_76` | `i64` in octal |
| `0xabcd_ef` | `i64` in hex |
| `0b0101_1001` | `i64` in binary |
| `123_456.789` | `f64` |
2020-03-09 05:53:07 +01:00
Numeric operators
-----------------
2016-03-31 15:59:54 +02:00
2020-03-16 05:42:01 +01:00
Numeric operators generally follow C styles.
2020-03-19 06:52:10 +01:00
| Operator | Description | Integers only |
| -------- | ---------------------------------------------------- | :-----------: |
| `+` | Plus | |
| `-` | Minus | |
| `*` | Multiply | |
| `/` | Divide (integer division if acting on integer types) | |
| `%` | Modulo (remainder) | |
| `~` | Power | |
| `&` | Binary _And_ bit-mask | Yes |
| `\|` | Binary _Or_ bit-mask | Yes |
| `^` | Binary _Xor_ bit-mask | Yes |
| `<<` | Left bit-shift | Yes |
| `>>` | Right bit-shift | Yes |
2020-03-16 05:42:01 +01:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-16 05:42:01 +01:00
let x = (1 + 2) * (6 - 4) / 2; // arithmetic, with parentheses
let reminder = 42 % 10; // modulo
let power = 42 ~ 2; // power (i64 and f64 only)
let left_shifted = 42 << 3; // left shift
let right_shifted = 42 >> 3; // right shift
let bit_op = 42 | 99; // bit masking
2016-03-31 15:59:54 +02:00
```
2020-03-09 05:53:07 +01:00
Unary operators
---------------
2020-03-16 05:42:01 +01:00
| Operator | Description |
| -------- | ----------- |
| `+` | Plus |
| `-` | Negative |
2020-03-09 05:53:07 +01:00
```rust
let number = -5;
number = -5 - +5;
```
Numeric functions
-----------------
The following standard functions (defined in the standard library but excluded if [`no_stdlib`]) operate on `i8`, `i16`, `i32`, `i64`, `f32` and `f64` only:
2020-03-19 06:52:10 +01:00
| Function | Description |
| ------------ | --------------------------------- |
| `abs` | absolute value |
| [`to_float`] | converts an integer type to `f64` |
2020-03-09 05:53:07 +01:00
Floating-point functions
------------------------
The following standard functions (defined in the standard library but excluded if [`no_stdlib`]) operate on `f64` only:
| Category | Functions |
| ---------------- | ------------------------------------------------------------ |
| Trigonometry | `sin`, `cos`, `tan`, `sinh`, `cosh`, `tanh` in degrees |
| Arc-trigonometry | `asin`, `acos`, `atan`, `asinh`, `acosh`, `atanh` in degrees |
| Square root | `sqrt` |
| Exponential | `exp` (base _e_) |
| Logarithmic | `ln` (base _e_), `log10` (base 10), `log` (any base) |
| Rounding | `floor`, `ceiling`, `round`, `int`, `fraction` |
2020-03-19 06:52:10 +01:00
| Conversion | [`to_int`] |
| Testing | `is_nan`, `is_finite`, `is_infinite` |
2020-03-09 05:53:07 +01:00
Strings and Chars
-----------------
2020-02-25 08:01:50 +01:00
2020-03-16 07:50:12 +01:00
String and char literals follow C-style formatting, with support for Unicode ('`\u`_xxxx_' or '`\U`_xxxxxxxx_') and hex ('`\x`_xx_') escape sequences.
Hex sequences map to ASCII characters, while '`\u`' maps to 16-bit common Unicode code points and '`\U`' maps the full, 32-bit extended Unicode code points.
2020-03-16 05:42:01 +01:00
2020-03-27 16:47:23 +01:00
Internally Rhai strings are stored as UTF-8 just like Rust (they _are_ Rust `String`s!), but there are major differences.
In Rhai a string is the same as an array of Unicode characters and can be directly indexed (unlike Rust).
This is similar to most other languages where strings are internally represented not as UTF-8 but as arrays of multi-byte Unicode characters.
Individual characters within a Rhai string can also be replaced just as if the string is an array of Unicode characters.
In Rhai, there is also no separate concepts of `String` and `&str` as in Rust.
2020-03-16 05:42:01 +01:00
Strings can be built up from other strings and types via the `+` operator (provided by the standard library but excluded if [`no_stdlib`]).
This is particularly useful when printing output.
2020-03-19 06:52:10 +01:00
[`type_of()`] a string returns `"string"`.
2020-03-16 05:42:01 +01:00
```rust
2020-03-09 05:53:07 +01:00
let name = "Bob";
let middle_initial = 'C';
let last = "Davis";
2016-03-31 15:59:54 +02:00
2020-03-09 05:53:07 +01:00
let full_name = name + " " + middle_initial + ". " + last;
full_name == "Bob C. Davis";
2016-03-31 15:59:54 +02:00
2020-03-09 05:53:07 +01:00
// String building with different types
let age = 42;
let record = full_name + ": age " + age;
record == "Bob C. Davis: age 42";
2016-03-31 15:59:54 +02:00
2020-03-16 05:42:01 +01:00
// Unlike Rust, Rhai strings can be indexed to get a character
// (disabled with 'no_index')
2020-03-09 05:53:07 +01:00
let c = record[4];
c == 'C';
2020-02-25 03:43:13 +01:00
2020-03-16 05:42:01 +01:00
ts.s = record; // custom type properties can take strings
2020-03-09 05:53:07 +01:00
let c = ts.s[4];
c == 'C';
2020-03-16 05:42:01 +01:00
let c = "foo"[0]; // indexing also works on string literals...
2020-03-09 05:53:07 +01:00
c == 'f';
2020-03-16 05:42:01 +01:00
let c = ("foo" + "bar")[5]; // ... and expressions returning strings
2020-03-09 05:53:07 +01:00
c == 'r';
2020-03-09 05:53:07 +01:00
// Escape sequences in strings
record += " \u2764\n"; // escape sequence of '❤' in Unicode
record == "Bob C. Davis: age 42 ❤\n"; // '\n' = new-line
2020-03-16 05:42:01 +01:00
// Unlike Rust, Rhai strings can be directly modified character-by-character
// (disabled with 'no_index')
2020-03-09 05:53:07 +01:00
record[4] = '\x58'; // 0x58 = 'X'
record == "Bob X. Davis: age 42 ❤\n";
```
The following standard functions (defined in the standard library but excluded if [`no_stdlib`]) operate on strings:
2020-03-03 11:15:20 +01:00
2020-03-09 05:53:07 +01:00
| Function | Description |
| ---------- | ------------------------------------------------------------------------ |
| `len` | returns the number of characters (not number of bytes) in the string |
| `pad` | pads the string with an character until a specified number of characters |
| `append` | Adds a character or a string to the end of another string |
| `clear` | empties the string |
| `truncate` | cuts off the string at exactly a specified number of characters |
| `contains` | checks if a certain character or sub-string occurs in the string |
| `replace` | replaces a substring with another |
| `trim` | trims the string |
2020-03-03 11:15:20 +01:00
2020-03-09 05:53:07 +01:00
Examples:
2020-03-03 11:15:20 +01:00
```rust
2020-03-09 05:53:07 +01:00
let full_name == " Bob C. Davis ";
full_name.len() == 14;
2020-03-03 11:15:20 +01:00
2020-03-09 05:53:07 +01:00
full_name.trim();
full_name.len() == 12;
full_name == "Bob C. Davis";
2020-03-03 11:15:20 +01:00
2020-03-09 05:53:07 +01:00
full_name.pad(15, '$');
full_name.len() == 15;
full_name == "Bob C. Davis$$$";
2020-03-03 11:15:20 +01:00
2020-03-09 05:53:07 +01:00
full_name.truncate(6);
full_name.len() == 6;
full_name == "Bob C.";
2020-03-03 11:15:20 +01:00
2020-03-09 05:53:07 +01:00
full_name.replace("Bob", "John");
full_name.len() == 7;
full_name = "John C.";
2020-03-03 11:15:20 +01:00
2020-03-09 05:53:07 +01:00
full_name.contains('C') == true;
full_name.contains("John") == true;
2020-03-03 11:15:20 +01:00
2020-03-09 05:53:07 +01:00
full_name.clear();
full_name.len() == 0;
2020-03-03 11:15:20 +01:00
```
2020-03-09 05:53:07 +01:00
Arrays
------
2016-03-31 15:59:54 +02:00
2020-03-16 05:42:01 +01:00
Arrays are first-class citizens in Rhai. Like C, arrays are accessed with zero-based, non-negative integer indices.
2020-03-27 16:47:23 +01:00
Array literals are built within square brackets '`[`' ... '`]`' and separated by commas '`,`'.
All elements stored in an array are [`Dynamic`], and the array can freely grow or shrink with elements added or removed.
2020-03-16 05:42:01 +01:00
The Rust type of a Rhai array is `rhai::Array`. [`type_of()`] an array returns `"array"`.
2020-03-16 05:42:01 +01:00
Arrays are disabled via the [`no_index`] feature.
2020-02-25 09:23:59 +01:00
The following functions (defined in the standard library but excluded if [`no_stdlib`]) operate on arrays:
2020-02-25 09:23:59 +01:00
| Function | Description |
| ------------ | ------------------------------------------------------------------------------------- |
| `push` | inserts an element at the end |
| `append` | concatenates the second array to the end of the first |
| `+` operator | concatenates the first array with the second |
| `pop` | removes the last element and returns it ([`()`] if empty) |
| `shift` | removes the first element and returns it ([`()`] if empty) |
| `len` | returns the number of elements |
| `pad` | pads the array with an element until a specified length |
| `clear` | empties the array |
| `truncate` | cuts off the array at exactly a specified length (discarding all subsequent elements) |
Examples:
2016-03-31 15:59:54 +02:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-16 05:42:01 +01:00
let y = [1, 2, 3]; // array literal with 3 elements
2020-02-25 03:43:13 +01:00
y[1] = 42;
print(y[1]); // prints 42
2020-03-04 15:00:01 +01:00
ts.list = y; // arrays can be assigned completely (by value copy)
2020-03-05 13:28:03 +01:00
let foo = ts.list[1];
2020-03-04 15:00:01 +01:00
foo == 42;
2020-03-05 13:28:03 +01:00
let foo = [1, 2, 3][0];
foo == 1;
2020-03-16 05:42:01 +01:00
fn abc() {
2020-03-29 17:53:35 +02:00
[42, 43, 44] // a function returning an array
2020-03-16 05:42:01 +01:00
}
2020-03-05 13:28:03 +01:00
let foo = abc()[0];
foo == 42;
let foo = y[0];
foo == 1;
2020-03-01 06:30:22 +01:00
2020-02-25 03:43:13 +01:00
y.push(4); // 4 elements
y.push(5); // 5 elements
2016-03-31 15:59:54 +02:00
2020-02-25 03:43:13 +01:00
print(y.len()); // prints 5
let first = y.shift(); // remove the first element, 4 elements remaining
first == 1;
let last = y.pop(); // remove the last element, 3 elements remaining
last == 5;
2020-02-25 09:23:59 +01:00
print(y.len()); // prints 3
for item in y { // arrays can be iterated with a 'for' statement
print(item);
}
2020-02-25 09:23:59 +01:00
y.pad(10, "hello"); // pad the array up to 10 elements
print(y.len()); // prints 10
y.truncate(5); // truncate the array to 5 elements
print(y.len()); // prints 5
y.clear(); // empty the array
print(y.len()); // prints 0
2020-02-25 03:43:13 +01:00
```
2020-03-16 05:42:01 +01:00
`push` and `pad` are only defined for standard built-in types. For custom types, type-specific versions must be registered:
2020-02-25 08:01:50 +01:00
2020-02-25 03:43:13 +01:00
```rust
2020-03-19 06:52:10 +01:00
engine.register_fn("push", |list: &mut Array, item: MyType| list.push(Box::new(item)) );
2020-02-25 03:43:13 +01:00
```
2020-03-29 17:53:35 +02:00
Object maps
-----------
Object maps are dictionaries. Properties are all [`Dynamic`] and can be freely added and retrieved.
2020-03-30 11:40:26 +02:00
Object map literals are built within braces '`#{`' ... '`}`' (_name_ `:` _value_ syntax similar to Rust)
and separated by commas '`,`'. The property _name_ can be a simple variable name following the same
naming rules as [variables], or an arbitrary string literal.
Property values can be accessed via the dot notation (_object_ `.` _property_) or index notation (_object_ `[` _property_ `]`).
The dot notation allows only property names that follow the same naming rules as [variables].
The index notation allows setting/getting properties of arbitrary names (even the empty string).
**Important:** Trying to read a non-existent property returns `()` instead of causing an error.
2020-03-29 17:53:35 +02:00
The Rust type of a Rhai object map is `rhai::Map`. [`type_of()`] an object map returns `"map"`.
2020-03-29 17:53:35 +02:00
Object maps are disabled via the [`no_object`] feature.
The following functions (defined in the standard library but excluded if [`no_stdlib`]) operate on object maps:
| Function | Description |
| ------------ | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `has` | does the object map contain a property of a particular name? |
| `len` | returns the number of properties |
| `clear` | empties the object map |
| `mixin` | mixes in all the properties of the second object map to the first (values of properties with the same names replace the existing values) |
| `+` operator | merges the first object map with the second |
| `keys` | returns an array of all the property names (in random order) |
| `values` | returns an array of all the property values (in random order) |
2020-03-29 17:53:35 +02:00
Examples:
```rust
2020-03-30 11:40:26 +02:00
let y = #{ // object map literal with 3 properties
2020-03-29 17:53:35 +02:00
a: 1,
bar: "hello",
"baz!$@": 123.456, // like JS, you can use any string as property names...
"": false, // even the empty string!
a: 42 // <- syntax error: duplicated property name
2020-03-29 17:53:35 +02:00
};
y.a = 42; // access via dot notation
y.baz!$@ = 42; // <- syntax error: only proper variable names allowed in dot notation
y."baz!$@" = 42; // <- syntax error: strings not allowed in dot notation
2020-03-29 17:53:35 +02:00
print(y.a); // prints 42
print(y["baz!$@"]); // prints 123.456 - access via index notation
2020-03-29 17:53:35 +02:00
ts.obj = y; // object maps can be assigned completely (by value copy)
let foo = ts.list.a;
foo == 42;
2020-03-30 11:40:26 +02:00
let foo = #{ a:1, b:2, c:3 }["a"];
2020-03-29 17:53:35 +02:00
foo == 1;
fn abc() {
2020-03-30 11:40:26 +02:00
#{ a:1, b:2, c:3 } // a function returning an object map
2020-03-29 17:53:35 +02:00
}
let foo = abc().b;
foo == 2;
let foo = y["a"];
foo == 42;
y.has("a") == true;
y.has("xyz") == false;
y.xyz == (); // A non-existing property returns '()'
y["xyz"] == ();
2020-03-29 17:53:35 +02:00
print(y.len()); // prints 3
for name in keys(y) { // get an array of all the property names via the 'keys' function
print(name);
}
for val in values(y) { // get an array of all the property values via the 'values' function
print(val);
}
2020-03-29 17:53:35 +02:00
y.clear(); // empty the object map
print(y.len()); // prints 0
```
2020-03-09 05:53:07 +01:00
Comparison operators
--------------------
2020-03-16 05:42:01 +01:00
Comparing most values of the same data type work out-of-the-box for standard types supported by the system.
However, if the [`no_stdlib`] feature is turned on, comparisons can only be made between restricted system
types - `INT` (`i64` or `i32` depending on [`only_i32`] and [`only_i64`]), `f64` (if not [`no_float`]), string, array, `bool`, `char`.
2020-02-25 08:01:50 +01:00
2020-02-25 03:43:13 +01:00
```rust
2020-04-01 03:51:33 +02:00
42 == 42; // true
42 > 42; // false
"hello" > "foo"; // true
"42" == 42; // false
2020-03-16 05:42:01 +01:00
```
Comparing two values of _different_ data types, or of unknown data types, always results in `false`.
```rust
2020-04-01 03:51:33 +02:00
42 == 42.0; // false - i64 is different from f64
42 > "42"; // false - i64 is different from string
42 <= "42"; // false again
2020-03-16 05:42:01 +01:00
2020-04-01 03:51:33 +02:00
let ts = new_ts(); // custom type
ts == 42; // false - types are not the same
2020-03-09 05:53:07 +01:00
```
2020-02-25 03:43:13 +01:00
2020-03-09 05:53:07 +01:00
Boolean operators
-----------------
2020-02-25 03:43:13 +01:00
2020-03-16 05:42:01 +01:00
| Operator | Description |
| -------- | ------------------------------- |
| `!` | Boolean _Not_ |
| `&&` | Boolean _And_ (short-circuits) |
2020-03-16 16:51:32 +01:00
| `\|\|` | Boolean _Or_ (short-circuits) |
2020-03-16 05:42:01 +01:00
| `&` | Boolean _And_ (full evaluation) |
2020-03-16 16:51:32 +01:00
| `\|` | Boolean _Or_ (full evaluation) |
2020-03-16 05:42:01 +01:00
Double boolean operators `&&` and `||` _short-circuit_, meaning that the second operand will not be evaluated
if the first one already proves the condition wrong.
2020-03-09 05:53:07 +01:00
Single boolean operators `&` and `|` always evaluate both operands.
```rust
2020-04-01 03:51:33 +02:00
this() || that(); // that() is not evaluated if this() is true
this() && that(); // that() is not evaluated if this() is false
2020-03-09 05:53:07 +01:00
2020-04-01 03:51:33 +02:00
this() | that(); // both this() and that() are evaluated
this() & that(); // both this() and that() are evaluated
2016-03-31 15:59:54 +02:00
```
2020-03-09 05:53:07 +01:00
Compound assignment operators
----------------------------
2016-03-31 15:59:54 +02:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-09 05:53:07 +01:00
let number = 5;
2020-04-01 03:51:33 +02:00
number += 4; // number = number + 4
number -= 3; // number = number - 3
number *= 2; // number = number * 2
number /= 1; // number = number / 1
number %= 3; // number = number % 3
number <<= 2; // number = number << 2
number >>= 1; // number = number >> 1
2016-03-31 15:59:54 +02:00
```
2020-03-09 05:53:07 +01:00
The `+=` operator can also be used to build strings:
2020-03-03 14:39:25 +01:00
```rust
2020-03-09 05:53:07 +01:00
let my_str = "abc";
my_str += "ABC";
my_str += 12345;
2020-03-03 14:39:25 +01:00
2020-03-09 05:53:07 +01:00
my_str == "abcABC12345"
2020-03-03 14:39:25 +01:00
```
2020-03-27 16:47:23 +01:00
`if` statements
---------------
2020-03-03 14:39:25 +01:00
2020-03-09 05:53:07 +01:00
```rust
2020-03-27 16:47:23 +01:00
if foo(x) {
2020-03-09 05:53:07 +01:00
print("It's true!");
2020-03-27 16:47:23 +01:00
} else if bar == baz {
2020-03-09 05:53:07 +01:00
print("It's true again!");
2020-03-16 05:42:01 +01:00
} else if ... {
:
} else if ... {
:
2020-03-09 05:53:07 +01:00
} else {
2020-03-16 05:42:01 +01:00
print("It's finally false!");
2020-03-09 05:53:07 +01:00
}
2020-03-27 16:47:23 +01:00
```
2020-03-16 05:42:01 +01:00
2020-03-27 16:47:23 +01:00
All branches of an `if` statement must be enclosed within braces '`{`' .. '`}`', even when there is only one statement.
Like Rust, there is no ambiguity regarding which `if` clause a statement belongs to.
```rust
2020-03-16 05:42:01 +01:00
if (decision) print("I've decided!");
// ^ syntax error, expecting '{' in statement block
2020-03-09 05:53:07 +01:00
```
2020-03-03 14:39:25 +01:00
2020-03-27 16:47:23 +01:00
Like Rust, `if` statements can also be used as _expressions_, replacing the `? :` conditional operators in other C-like languages.
```rust
let x = 1 + if true { 42 } else { 123 } / 2;
x == 22;
let x = if false { 42 }; // No else branch defaults to '()'
x == ();
```
`while` loops
-------------
2016-04-14 03:52:12 +02:00
2017-11-04 11:18:56 +01:00
```rust
2020-03-09 05:53:07 +01:00
let x = 10;
2020-02-25 03:43:13 +01:00
2020-03-09 05:53:07 +01:00
while x > 0 {
2020-04-01 10:22:18 +02:00
x = x - 1;
if x < 6 { continue; } // skip to the next iteration
2020-03-09 05:53:07 +01:00
print(x);
2020-03-16 05:42:01 +01:00
if x == 5 { break; } // break out of while loop
2020-03-09 05:53:07 +01:00
}
```
2020-02-25 03:43:13 +01:00
2020-03-27 16:47:23 +01:00
Infinite `loop`
---------------
2020-03-01 06:30:22 +01:00
2020-03-09 05:53:07 +01:00
```rust
let x = 10;
2020-03-01 06:30:22 +01:00
2020-03-09 05:53:07 +01:00
loop {
x = x - 1;
2020-04-01 10:22:18 +02:00
if x > 5 { continue; } // skip to the next iteration
print(x);
2020-03-16 05:42:01 +01:00
if x == 0 { break; } // break out of loop
2020-03-09 05:53:07 +01:00
}
```
2020-03-05 13:28:03 +01:00
2020-03-27 16:47:23 +01:00
`for` loops
-----------
2020-03-16 05:42:01 +01:00
Iterating through a range or an array is provided by the `for` ... `in` loop.
2020-03-04 15:00:01 +01:00
2020-03-09 05:53:07 +01:00
```rust
let array = [1, 3, 5, 7, 9, 42];
2020-03-05 13:28:03 +01:00
2020-03-09 05:53:07 +01:00
// Iterate through array
for x in array {
2020-04-01 10:22:18 +02:00
if x > 10 { continue; } // skip to the next iteration
2020-03-09 05:53:07 +01:00
print(x);
2020-04-01 10:22:18 +02:00
if x == 42 { break; } // break out of for loop
2020-03-09 05:53:07 +01:00
}
2020-03-01 06:30:22 +01:00
2020-03-16 07:50:12 +01:00
// The 'range' function allows iterating from first to last-1
2020-03-09 05:53:07 +01:00
for x in range(0, 50) {
2020-04-01 10:22:18 +02:00
if x > 10 { continue; } // skip to the next iteration
2020-03-09 05:53:07 +01:00
print(x);
2020-04-01 10:22:18 +02:00
if x == 42 { break; } // break out of for loop
2020-03-09 05:53:07 +01:00
}
// The 'range' function also takes a step
for x in range(0, 50, 3) { // step by 3
if x > 10 { continue; } // skip to the next iteration
print(x);
if x == 42 { break; } // break out of for loop
}
// Iterate through the values of an object map
let map = #{a:1, b:3, c:5, d:7, e:9};
// Remember that keys are returned in random order
for x in keys(map) {
if x > 10 { continue; } // skip to the next iteration
print(x);
if x == 42 { break; } // break out of for loop
}
2020-03-09 05:53:07 +01:00
```
2020-03-03 14:39:25 +01:00
2020-03-27 16:47:23 +01:00
`return`-ing values
-------------------
2020-03-09 05:53:07 +01:00
```rust
2020-04-01 03:51:33 +02:00
return; // equivalent to return ();
2020-03-09 05:53:07 +01:00
2020-04-01 03:51:33 +02:00
return 123 + 456; // returns 579
2020-03-01 06:30:22 +01:00
```
2020-03-27 16:47:23 +01:00
Errors and `throw`-ing exceptions
--------------------------------
2020-03-01 06:30:22 +01:00
2020-03-19 06:52:10 +01:00
All of [`Engine`]'s evaluation/consuming methods return `Result<T, rhai::EvalAltResult>` with `EvalAltResult` holding error information.
2020-03-16 05:42:01 +01:00
To deliberately return an error during an evaluation, use the `throw` keyword.
2020-03-09 05:53:07 +01:00
```rust
if some_bad_condition_has_happened {
2020-04-01 03:51:33 +02:00
throw error; // 'throw' takes a string as the exception text
2020-03-09 05:53:07 +01:00
}
2020-04-01 03:51:33 +02:00
throw; // defaults to empty exception text: ""
2020-03-09 05:53:07 +01:00
```
2020-04-01 10:22:18 +02:00
Exceptions thrown via `throw` in the script can be captured by matching `Err(EvalAltResult::ErrorRuntime(` _reason_ `,` _position_ `))`
2020-03-16 05:42:01 +01:00
with the exception text captured by the first parameter.
2020-03-01 06:30:22 +01:00
```rust
2020-03-16 05:42:01 +01:00
let result = engine.eval::<i64>(r#"
2020-03-09 05:53:07 +01:00
let x = 42;
2020-03-09 05:53:07 +01:00
if x > 0 {
throw x + " is too large!";
}
"#);
2020-03-01 06:30:22 +01:00
2020-04-01 03:51:33 +02:00
println!(result); // prints "Runtime error: 42 is too large! (line 5, position 15)"
2020-03-09 05:53:07 +01:00
```
2020-03-01 06:30:22 +01:00
2020-03-09 05:53:07 +01:00
Functions
---------
2020-03-01 06:30:22 +01:00
Rhai supports defining functions in script (unless disabled with [`no_function`]):
2020-03-09 05:53:07 +01:00
```rust
fn add(x, y) {
return x + y;
}
2020-03-09 05:53:07 +01:00
print(add(2, 3));
2020-02-25 03:43:13 +01:00
```
2020-03-27 16:47:23 +01:00
### Implicit return
2020-03-16 05:42:01 +01:00
Just like in Rust, an implicit return can be used. In fact, the last statement of a block is _always_ the block's return value
2020-03-27 16:47:23 +01:00
regardless of whether it is terminated with a semicolon `';'`. This is different from Rust.
2020-02-25 08:01:50 +01:00
2020-02-25 03:43:13 +01:00
```rust
2020-04-01 03:51:33 +02:00
fn add(x, y) { // implicit return:
x + y; // value of the last statement (no need for ending semicolon)
// is used as the return value
2020-03-09 05:53:07 +01:00
}
2020-03-16 05:42:01 +01:00
fn add2(x) {
2020-04-01 03:51:33 +02:00
return x + 2; // explicit return
2020-03-16 05:42:01 +01:00
}
2020-04-01 03:51:33 +02:00
print(add(2, 3)); // prints 5
print(add2(42)); // prints 44
2020-02-25 03:43:13 +01:00
```
2020-03-27 16:47:23 +01:00
### No access to external scope
2020-04-01 10:22:18 +02:00
Functions are not _closures_. They do not capture the calling environment and can only access their own parameters.
They cannot access variables external to the function itself.
2020-03-27 16:47:23 +01:00
```rust
let x = 42;
2020-04-01 03:51:33 +02:00
fn foo() { x } // <- syntax error: variable 'x' doesn't exist
2020-03-27 16:47:23 +01:00
```
2020-03-16 05:42:01 +01:00
### Passing arguments by value
Functions defined in script always take [`Dynamic`] parameters (i.e. the parameter can be of any type).
2020-03-16 05:42:01 +01:00
It is important to remember that all arguments are passed by _value_, so all functions are _pure_ (i.e. they never modify their arguments).
Any update to an argument will **not** be reflected back to the caller. This can introduce subtle bugs, if not careful.
2020-02-25 08:01:50 +01:00
2020-02-25 03:43:13 +01:00
```rust
2020-04-01 03:51:33 +02:00
fn change(s) { // 's' is passed by value
s = 42; // only a COPY of 's' is changed
2020-03-09 05:53:07 +01:00
}
2020-03-04 15:00:01 +01:00
2020-03-09 05:53:07 +01:00
let x = 500;
2020-04-01 03:51:33 +02:00
x.change(); // de-sugars to change(x)
x == 500; // 'x' is NOT changed!
2016-04-14 03:52:12 +02:00
```
2016-03-31 15:59:54 +02:00
2020-03-16 05:42:01 +01:00
### Global definitions only
Functions can only be defined at the global level, never inside a block or another function.
```rust
2020-03-16 05:42:01 +01:00
// Global level is OK
2020-03-09 05:53:07 +01:00
fn add(x, y) {
x + y
}
2020-03-09 05:53:07 +01:00
// The following will not compile
fn do_addition(x) {
2020-04-01 10:22:18 +02:00
fn add_y(n) { // <- syntax error: functions cannot be defined inside another function
2020-03-09 05:53:07 +01:00
n + y
}
add_y(x)
}
```
2017-11-04 11:18:56 +01:00
2020-03-16 05:42:01 +01:00
### Functions overloading
2020-03-27 16:47:23 +01:00
Functions can be _overloaded_ and are resolved purely upon the function's _name_ and the _number_ of parameters
(but not parameter _types_, since all parameters are the same type - [`Dynamic`]).
New definitions _overwrite_ previous definitions of the same name and number of parameters.
2020-03-12 06:02:13 +01:00
```rust
2020-03-27 16:47:23 +01:00
fn foo(x,y,z) { print("Three!!! " + x + "," + y + "," + z) }
fn foo(x) { print("One! " + x) }
fn foo(x,y) { print("Two! " + x + "," + y) }
fn foo() { print("None.") }
fn foo(x) { print("HA! NEW ONE! " + x) } // overwrites previous definition
2020-04-01 03:51:33 +02:00
foo(1,2,3); // prints "Three!!! 1,2,3"
foo(42); // prints "HA! NEW ONE! 42"
foo(1,2); // prints "Two!! 1,2"
foo(); // prints "None."
2020-03-12 06:02:13 +01:00
```
2020-03-09 05:53:07 +01:00
Members and methods
-------------------
2017-11-04 11:18:56 +01:00
2020-03-27 16:47:23 +01:00
Properties and methods in a Rust custom type registered with the [`Engine`] can be called just like in Rust.
2020-03-16 05:42:01 +01:00
2017-11-04 11:18:56 +01:00
```rust
2020-04-01 03:51:33 +02:00
let a = new_ts(); // constructor function
a.field = 500; // property access
a.update(); // method call
2020-03-27 16:47:23 +01:00
2020-04-01 03:51:33 +02:00
update(a); // this works, but 'a' is unchanged because only
// a COPY of 'a' is passed to 'update' by VALUE
2017-11-04 11:18:56 +01:00
```
Custom types, properties and methods can be disabled via the [`no_object`] feature.
2020-03-09 05:53:07 +01:00
`print` and `debug`
-------------------
2017-11-04 11:18:56 +01:00
2020-03-16 05:42:01 +01:00
The `print` and `debug` functions default to printing to `stdout`, with `debug` using standard debug formatting.
2017-11-04 11:18:56 +01:00
```rust
2020-04-01 03:51:33 +02:00
print("hello"); // prints hello to stdout
print(1 + 2 + 3); // prints 6 to stdout
print("hello" + 42); // prints hello42 to stdout
debug("world!"); // prints "world!" to stdout using debug formatting
2017-11-04 11:18:56 +01:00
```
2020-03-09 05:53:07 +01:00
### Overriding `print` and `debug` with callback functions
2017-11-04 11:18:56 +01:00
2020-03-16 05:42:01 +01:00
When embedding Rhai into an application, it is usually necessary to trap `print` and `debug` output
(for logging into a tracking log, for example).
2017-11-04 11:18:56 +01:00
```rust
2020-03-12 14:19:34 +01:00
// Any function or closure that takes an &str argument can be used to override
// print and debug
2020-03-09 05:53:07 +01:00
engine.on_print(|x| println!("hello: {}", x));
engine.on_debug(|x| println!("DEBUG: {}", x));
2017-11-04 11:18:56 +01:00
2020-03-09 05:53:07 +01:00
// Example: quick-'n-dirty logging
let mut log: Vec<String> = Vec::new();
// Redirect print/debug output to 'log'
engine.on_print(|s| log.push(format!("entry: {}", s)));
engine.on_debug(|s| log.push(format!("DEBUG: {}", s)));
2020-03-12 14:19:34 +01:00
// Evaluate script
2020-03-09 05:53:07 +01:00
engine.eval::<()>(script)?;
// 'log' captures all the 'print' and 'debug' output
for entry in log {
println!("{}", entry);
}
2017-11-04 11:18:56 +01:00
```
Script optimization
===================
2020-03-12 14:19:34 +01:00
Rhai includes an _optimizer_ that tries to optimize a script after parsing.
This can reduce resource utilization and increase execution speed.
Script optimization can be turned off via the [`no_optimize`] feature.
2020-03-12 14:19:34 +01:00
For example, in the following:
```rust
{
2020-04-01 03:51:33 +02:00
let x = 999; // NOT eliminated: Rhai doesn't check yet whether a variable is used later on
123; // eliminated: no effect
"hello"; // eliminated: no effect
[1, 2, x, x*2, 5]; // eliminated: no effect
foo(42); // NOT eliminated: the function 'foo' may have side effects
666 // NOT eliminated: this is the return value of the block,
// and the block is the last one so this is the return value of the whole script
2020-03-12 14:19:34 +01:00
}
```
Rhai attempts to eliminate _dead code_ (i.e. code that does nothing, for example an expression by itself as a statement, which is allowed in Rhai).
The above script optimizes to:
```rust
{
let x = 999;
foo(42);
666
}
```
2020-03-13 11:12:41 +01:00
Constants propagation is used to remove dead code:
2020-03-12 14:19:34 +01:00
```rust
const ABC = true;
if ABC || some_work() { print("done!"); } // 'ABC' is constant so it is replaced by 'true'...
if true || some_work() { print("done!"); } // since '||' short-circuits, 'some_work' is never called
2020-03-16 05:42:01 +01:00
if true { print("done!"); } // <- the line above is equivalent to this
print("done!"); // <- the line above is further simplified to this
2020-04-01 03:51:33 +02:00
// because the condition is always true
2020-03-12 14:19:34 +01:00
```
2020-03-16 05:42:01 +01:00
These are quite effective for template-based machine-generated scripts where certain constant values
are spliced into the script text in order to turn on/off certain sections.
2020-03-19 06:52:10 +01:00
For fixed script texts, the constant values can be provided in a user-defined [`Scope`] object
to the [`Engine`] for use in compilation and evaluation.
2020-03-12 14:19:34 +01:00
Beware, however, that most operators are actually function calls, and those functions can be overridden,
so they are not optimized away:
2020-03-12 14:19:34 +01:00
```rust
const DECISION = 1;
if DECISION == 1 { // NOT optimized away because you can define
2020-04-01 03:51:33 +02:00
: // your own '==' function to override the built-in default!
:
} else if DECISION == 2 { // same here, NOT optimized away
:
} else if DECISION == 3 { // same here, NOT optimized away
:
} else {
:
}
```
because no operator functions will be run (in order not to trigger side effects) during the optimization process
(unless the optimization level is set to [`OptimizationLevel::Full`]). So, instead, do this:
```rust
const DECISION_1 = true;
const DECISION_2 = false;
const DECISION_3 = false;
if DECISION_1 {
: // this branch is kept and promoted to the parent level
} else if DECISION_2 {
: // this branch is eliminated
} else if DECISION_3 {
: // this branch is eliminated
} else {
: // this branch is eliminated
}
2020-03-12 14:19:34 +01:00
```
2020-03-16 05:42:01 +01:00
In general, boolean constants are most effective for the optimizer to automatically prune
large `if`-`else` branches because they do not depend on operators.
Alternatively, turn the optimizer to [`OptimizationLevel::Full`]
Here be dragons!
2020-03-19 06:52:10 +01:00
================
2020-03-12 14:19:34 +01:00
2020-03-19 06:52:10 +01:00
Optimization levels
-------------------
[`OptimizationLevel::Full`]: #optimization-levels
[`OptimizationLevel::Simple`]: #optimization-levels
[`OptimizationLevel::None`]: #optimization-levels
There are actually three levels of optimizations: `None`, `Simple` and `Full`.
2020-03-16 05:42:01 +01:00
* `None` is obvious - no optimization on the AST is performed.
* `Simple` (default) performs relatively _safe_ optimizations without causing side effects
(i.e. it only relies on static analysis and will not actually perform any function calls).
* `Full` is _much_ more aggressive, _including_ running functions on constant arguments to determine their result.
One benefit to this is that many more optimization opportunities arise, especially with regards to comparison operators.
2020-03-19 06:52:10 +01:00
An [`Engine`]'s optimization level is set via a call to `set_optimization_level`:
```rust
2020-03-16 05:42:01 +01:00
// Turn on aggressive optimizations
engine.set_optimization_level(rhai::OptimizationLevel::Full);
```
2020-03-19 06:52:10 +01:00
When the optimization level is [`OptimizationLevel::Full`], the [`Engine`] assumes all functions to be _pure_ and will _eagerly_
evaluated all function calls with constant arguments, using the result to replace the call. This also applies to all operators
(which are implemented as functions). For instance, the same example above:
2020-03-16 05:42:01 +01:00
```rust
// When compiling the following with OptimizationLevel::Full...
2020-03-16 05:42:01 +01:00
const DECISION = 1;
2020-04-01 03:51:33 +02:00
// this condition is now eliminated because 'DECISION == 1'
if DECISION == 1 { // is a function call to the '==' function, and it returns 'true'
print("hello!"); // this block is promoted to the parent level
} else {
2020-04-01 03:51:33 +02:00
print("boo!"); // this block is eliminated because it is never reached
}
2020-04-01 03:51:33 +02:00
print("hello!"); // <- the above is equivalent to this
// ('print' and 'debug' are handled specially)
```
Because of the eager evaluation of functions, many constant expressions will be evaluated and replaced by the result.
2020-03-19 06:52:10 +01:00
This does not happen with [`OptimizationLevel::Simple`] which doesn't assume all functions to be _pure_.
```rust
// When compiling the following with OptimizationLevel::Full...
2020-04-01 03:51:33 +02:00
let x = (1+2)*3-4/5%6; // <- will be replaced by 'let x = 9'
let y = (1>2) || (3<=4); // <- will be replaced by 'let y = true'
```
Function side effect considerations
----------------------------------
All of Rhai's built-in functions (and operators which are implemented as functions) are _pure_ (i.e. they do not mutate state
nor cause side any effects, with the exception of `print` and `debug` which are handled specially) so using [`OptimizationLevel::Full`]
is usually quite safe _unless_ you register your own types and functions.
If custom functions are registered, they _may_ be called (or maybe not, if the calls happen to lie within a pruned code block).
If custom functions are registered to replace built-in operators, they will also be called when the operators are used (in an `if`
statement, for example) and cause side-effects.
Function volatility considerations
---------------------------------
Even if a custom function does not mutate state nor cause side effects, it may still be _volatile_, i.e. it _depends_ on the external
environment and is not _pure_. A perfect example is a function that gets the current time - obviously each run will return a different value!
2020-03-22 03:18:16 +01:00
The optimizer, when using [`OptimizationLevel::Full`], _assumes_ that all functions are _pure_, so when it finds constant arguments
it will eagerly execute the function call. This causes the script to behave differently from the intended semantics because
2020-03-22 03:18:16 +01:00
essentially the result of the function call will always be the same value.
2020-03-16 05:42:01 +01:00
Therefore, **avoid using [`OptimizationLevel::Full`]** if you intend to register non-_pure_ custom types and/or functions.
2020-03-19 06:52:10 +01:00
Subtle semantic changes
-----------------------
2020-03-16 05:42:01 +01:00
Some optimizations can alter subtle semantics of the script. For example:
2020-03-12 14:19:34 +01:00
```rust
2020-04-01 03:51:33 +02:00
if true { // condition always true
123.456; // eliminated
hello; // eliminated, EVEN THOUGH the variable doesn't exist!
foo(42) // promoted up-level
2020-03-12 14:19:34 +01:00
}
2020-04-01 03:51:33 +02:00
foo(42) // <- the above optimizes to this
2020-03-12 14:19:34 +01:00
```
2020-03-16 05:42:01 +01:00
Nevertheless, if the original script were evaluated instead, it would have been an error - the variable `hello` doesn't exist,
so the script would have been terminated at that point with an error return.
2020-03-12 14:19:34 +01:00
2020-03-16 05:42:01 +01:00
In fact, any errors inside a statement that has been eliminated will silently _disappear_:
2020-03-12 14:19:34 +01:00
```rust
print("start!");
2020-03-16 05:42:01 +01:00
if my_decision { /* do nothing... */ } // eliminated due to no effect
2020-03-12 14:19:34 +01:00
print("end!");
// The above optimizes to:
print("start!");
print("end!");
```
In the script above, if `my_decision` holds anything other than a boolean value, the script should have been terminated due to a type error.
2020-03-16 05:42:01 +01:00
However, after optimization, the entire `if` statement is removed (because an access to `my_decision` produces no side effects),
thus the script silently runs to completion without errors.
2020-03-12 14:19:34 +01:00
2020-03-19 06:52:10 +01:00
Turning off optimizations
-------------------------
2020-03-12 14:19:34 +01:00
It is usually a bad idea to depend on a script failing or such kind of subtleties, but if it turns out to be necessary (why? I would never guess),
2020-03-19 06:52:10 +01:00
turn it off by setting the optimization level to [`OptimizationLevel::None`].
2020-03-12 14:19:34 +01:00
```rust
let engine = rhai::Engine::new();
2020-03-16 05:42:01 +01:00
// Turn off the optimizer
engine.set_optimization_level(rhai::OptimizationLevel::None);
2020-03-12 14:19:34 +01:00
```
2020-03-19 12:53:42 +01:00
`eval` - or "How to Shoot Yourself in the Foot even Easier"
---------------------------------------------------------
Saving the best for last: in addition to script optimizations, there is the ever-dreaded... `eval` function!
```rust
let x = 10;
fn foo(x) { x += 12; x }
2020-04-01 03:51:33 +02:00
let script = "let y = x;"; // build a script
2020-03-19 12:53:42 +01:00
script += "y += foo(y);";
script += "x + y";
2020-04-01 03:51:33 +02:00
let result = eval(script); // <- look, JS, we can also do this!
2020-03-19 12:53:42 +01:00
2020-04-01 03:51:33 +02:00
print("Answer: " + result); // prints 42
2020-03-19 12:53:42 +01:00
2020-04-01 03:51:33 +02:00
print("x = " + x); // prints 10: functions call arguments are passed by value
print("y = " + y); // prints 32: variables defined in 'eval' persist!
2020-03-19 12:53:42 +01:00
2020-04-01 03:51:33 +02:00
eval("{ let z = y }"); // to keep a variable local, use a statement block
2020-03-19 12:53:42 +01:00
2020-04-01 03:51:33 +02:00
print("z = " + z); // <- error: variable 'z' not found
2020-04-01 03:51:33 +02:00
"print(42)".eval(); // <- nope... just like 'type_of', method-call style doesn't work
```
Script segments passed to `eval` execute inside the current [`Scope`], so they can access and modify _everything_,
including all variables that are visible at that position in code! It is almost as if the script segments were
physically pasted in at the position of the `eval` call.
```rust
let script = "x += 32";
let x = 10;
2020-04-01 03:51:33 +02:00
eval(script); // variable 'x' in the current scope is visible!
print(x); // prints 42
// The above is equivalent to:
let script = "x += 32";
let x = 10;
x += 32;
print(x);
2020-03-19 12:53:42 +01:00
```
For those who subscribe to the (very sensible) motto of ["`eval` is **evil**"](http://linterrors.com/js/eval-is-evil),
disable `eval` by overriding it, probably with something that throws.
```rust
fn eval(script) { throw "eval is evil! I refuse to run " + script }
2020-04-01 03:51:33 +02:00
let x = eval("40 + 2"); // 'eval' here throws "eval is evil! I refuse to run 40 + 2"
2020-03-19 12:53:42 +01:00
```
Or override it from Rust:
```rust
fn alt_eval(script: String) -> Result<(), EvalAltResult> {
Err(format!("eval is evil! I refuse to run {}", script).into())
}
engine.register_result_fn("eval", alt_eval);
```