Expression engine is a library written in pure Rust which provides an engine to compile and execute expressions. An expression indicates a string-like sentence that can be executed with some contexts and return a value (mostly, but not limited to, boolean, string and number).
Expression engine aims to provide an engine for users that can execute complex logics using configurations without recompiling. It's a proper alternative as the basis to build business rule engines.
Calling the engine is simple. At first, define the expression you want to execute. Secondly, create a context to cache the pre-defined inner functions and variables. And then, register the variables and functions to the context. Finally, call the execute function with the expression and context to get the executing result.
rust
let input = "(3+4)*5+mm*2"; // the input is an expression
let mut ctx = Context::new(); // create a context
ctx.set_variable(&String::from("mm"), Param::Number(Decimal::new(2, 1)));
match execute(input, ctx) {
Err(e) => println!("{}", e),
Ok(param) => println!("ans is {}", param),
}
``` Syntax Expression(;Expression)*
Expression: ( LiteralExpression | UnaryExpression | BinaryExpression | TernaryExpression | FunctionExpression | ReferenceExpression | ListExpression | MapExpression | NoneExpression
)
```
``` Syntax LiteralExpression: (LITERALNUMBER|LITERALBOOL|LITERAL_STRING)
```
A literal expression is an expression consisting of only one single token instead of a sequence of tokens. Here are 3 kinds of literal expresions, respectively, the LITERALNUMBER, the LITERALBOOL, and the LITERAL_STRING.
rust
fn is_digit_char(ch: char) -> bool {
return '0' <= ch && ch <= '9' || ch == '.' || ch == '-' || ch == 'e' || ch == 'E' || ch == '+';
}
Continuous chars with patterns as above will be parsed to a number.
The false
and False
will be parsed to the bool value false, while the true
and True
will be decoded to the bool value true.
A sequence of characters that starts with " and ends with " or starts with ' and ends with ' will be decoded as a LITERAL_STRING.
``` Syntax UnaryExpression: Operator Operand
Operand: Expression ```
A unary expression is consisted of an operand and a unary operator. All the unary operators have the same precedence and the right-to-left associativity.
| UnaryOp | Desc | | ------- | ------------------------- | | ! | Logical negation operator | | not | Logical negation operator |
``` Syntax BinaryExpression: Lhs Operator Rhs
Lhs: Expresssion
Rhs: Expression
```
A binary expression contains two operands separated by an operator. All the binary operators have right-to-left associativity while their precedences may be not the same.
``` Syntax TernaryExpression: Condition ? Lhs : Rhs
Condition: Expression
Lhs: Expression
Rhs: Expression ```
The ternary expression is composed of three parts, respectively the Condition, the Lhs and the Rhs. If the result of the Condition is true, then return to Lhs. Otherwise the result of Rhs is returned.
``` Syntax FunctionExpression: func(FunctionParams?)
FunctionParams: Expression(,Expression)*
```
The function name with the params which are a sequence of expressions separated by comma consist the function expression.
The reference expression is either a variable or a function with no params.
``` Syntax ListExpression: [ListElements?]
ListElements: Expression(,Expression)* ```
The list expression starts with the open bracket and ends with the close bracket. Its params are a list of expressions.
``` Syntax MapExpression: {MapElements?}
MapElements: KeyElement:ValueElement(,KeyElement:ValueElement)*
KeyElement: Expression
ValueElement: Expression ```
The map expression begins with the open brace and ends with the close brace with a sequence of k, v pair where both the k and v are expressions.
``` Syntax NoneExpression: None
```
The return value of the NoneExpression is None
.