rhai/src/engine.rs

1407 lines
55 KiB
Rust
Raw Normal View History

2016-02-29 22:43:45 +01:00
use std::collections::HashMap;
use std::error::Error;
use std::any::Any;
use std::boxed::Box;
use std::fmt;
use parser::{lex, parse, Expr, Stmt, FnDef };
2016-02-29 22:43:45 +01:00
use fn_register::FnRegister;
2016-03-01 15:40:48 +01:00
use std::ops::{Add, Sub, Mul, Div};
use std::cmp::{Ord, Eq};
2016-02-29 22:43:45 +01:00
#[derive(Debug)]
pub enum EvalAltResult {
ErrorFunctionNotFound,
ErrorFunctionArgMismatch,
ErrorFunctionCallNotSupported,
2016-03-26 18:46:28 +01:00
ErrorIndexMismatch,
ErrorIfGuardMismatch,
ErrorVariableNotFound(String),
ErrorFunctionArityNotSupported,
ErrorAssignmentToUnknownLHS,
2016-03-16 23:32:05 +01:00
ErrorMismatchOutputType,
2016-03-17 13:45:48 +01:00
ErrorCantOpenScriptFile,
2016-03-16 23:32:05 +01:00
InternalErrorMalformedDotExpression,
LoopBreak,
Return(Box<Any>)
2016-02-29 22:43:45 +01:00
}
2016-03-26 18:46:28 +01:00
impl Error for EvalAltResult {
2016-02-29 22:43:45 +01:00
fn description(&self) -> &str {
match *self {
EvalAltResult::ErrorFunctionNotFound => "Function not found",
EvalAltResult::ErrorFunctionArgMismatch => "Function argument types do not match",
EvalAltResult::ErrorFunctionCallNotSupported => "Function call with > 2 argument not supported",
2016-03-26 18:46:28 +01:00
EvalAltResult::ErrorIndexMismatch => "Index does not match array",
EvalAltResult::ErrorIfGuardMismatch => "If guards expect boolean expression",
2016-03-10 22:19:56 +01:00
EvalAltResult::ErrorVariableNotFound(_) => "Variable not found",
EvalAltResult::ErrorFunctionArityNotSupported => "Functions of more than 3 parameters are not yet supported",
EvalAltResult::ErrorAssignmentToUnknownLHS => "Assignment to an unsupported left-hand side",
2016-03-16 23:32:05 +01:00
EvalAltResult::ErrorMismatchOutputType => "Cast of output failed",
2016-03-17 13:45:48 +01:00
EvalAltResult::ErrorCantOpenScriptFile => "Cannot open script file",
EvalAltResult::InternalErrorMalformedDotExpression => "[Internal error] Unexpected expression in dot expression",
EvalAltResult::LoopBreak => "Loop broken before completion (not an error)",
EvalAltResult::Return(_) => "Function returned value (not an error)"
2016-02-29 22:43:45 +01:00
}
}
fn cause(&self) -> Option<&Error> {
None
}
}
impl fmt::Display for EvalAltResult {
2016-02-29 22:43:45 +01:00
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.description())
}
}
pub enum FnType {
ExternalFn0(Box<Fn()->Result<Box<Any>, EvalAltResult>>),
ExternalFn1(Box<Fn(&mut Box<Any>)->Result<Box<Any>, EvalAltResult>>),
ExternalFn2(Box<Fn(&mut Box<Any>, &mut Box<Any>)->Result<Box<Any>, EvalAltResult>>),
ExternalFn3(Box<Fn(&mut Box<Any>, &mut Box<Any>, &mut Box<Any>)->Result<Box<Any>, EvalAltResult>>),
ExternalFn4(Box<Fn(&mut Box<Any>, &mut Box<Any>, &mut Box<Any>, &mut Box<Any>)->Result<Box<Any>, EvalAltResult>>),
ExternalFn5(Box<Fn(&mut Box<Any>, &mut Box<Any>, &mut Box<Any>, &mut Box<Any>, &mut Box<Any>)->Result<Box<Any>, EvalAltResult>>),
ExternalFn6(Box<Fn(&mut Box<Any>, &mut Box<Any>, &mut Box<Any>, &mut Box<Any>, &mut Box<Any>, &mut Box<Any>)->Result<Box<Any>, EvalAltResult>>),
2016-03-01 15:40:48 +01:00
InternalFn(FnDef)
}
2016-02-29 22:43:45 +01:00
pub struct Engine {
pub fns: HashMap<String, Vec<FnType>>
2016-02-29 22:43:45 +01:00
}
pub type Scope = Vec<(String, Box<Any>)>;
2016-02-29 22:43:45 +01:00
impl Engine {
fn call_fn(&self, name: &str, arg1: Option<&mut Box<Any>>, arg2: Option<&mut Box<Any>>, arg3: Option<&mut Box<Any>>,
arg4: Option<&mut Box<Any>>, arg5: Option<&mut Box<Any>>, arg6: Option<&mut Box<Any>>) -> Result<Box<Any>, EvalAltResult> {
match self.fns.get(name) {
Some(ref vf) => {
match (arg1, arg2, arg3, arg4, arg5, arg6) {
(Some(ref mut a1), Some(ref mut a2), Some(ref mut a3), Some(ref mut a4), Some(ref mut a5), Some(ref mut a6)) => {
for arr_f in *vf {
match arr_f {
& FnType::ExternalFn6(ref f) => {
match f(*a1, *a2, *a3, *a4, *a5, *a6) {
Ok(v) => return Ok(v),
_ => ()
}
}
& FnType::InternalFn(ref f) => {
if f.params.len() != 6 { return Err(EvalAltResult::ErrorFunctionArgMismatch); }
let mut new_scope: Scope = Vec::new();
let result1 = self.call_fn("clone", Some(a1), None, None, None, None, None);
let result2 = self.call_fn("clone", Some(a2), None, None, None, None, None);
let result3 = self.call_fn("clone", Some(a3), None, None, None, None, None);
let result4 = self.call_fn("clone", Some(a4), None, None, None, None, None);
let result5 = self.call_fn("clone", Some(a5), None, None, None, None, None);
let result6 = self.call_fn("clone", Some(a6), None, None, None, None, None);
match (result1, result2, result3, result4, result5, result6) {
(Ok(r1), Ok(r2), Ok(r3), Ok(r4), Ok(r5), Ok(r6)) => {
new_scope.push((f.params[0].clone(), r1));
new_scope.push((f.params[1].clone(), r2));
new_scope.push((f.params[2].clone(), r3));
new_scope.push((f.params[3].clone(), r4));
new_scope.push((f.params[4].clone(), r5));
new_scope.push((f.params[5].clone(), r6));
},
_ => return Err(EvalAltResult::ErrorFunctionArgMismatch)
}
match self.eval_stmt(&mut new_scope, &*f.body) {
Err(EvalAltResult::Return(x)) => return Ok(x),
x => return x
}
}
_ => ()
}
}
return Err(EvalAltResult::ErrorFunctionArgMismatch);
2016-02-29 22:43:45 +01:00
}
(Some(ref mut a1), Some(ref mut a2), Some(ref mut a3), Some(ref mut a4), Some(ref mut a5), None) => {
for arr_f in *vf {
match arr_f {
& FnType::ExternalFn5(ref f) => {
match f(*a1, *a2, *a3, *a4, *a5) {
Ok(v) => return Ok(v),
_ => ()
}
}
& FnType::InternalFn(ref f) => {
if f.params.len() != 5 { return Err(EvalAltResult::ErrorFunctionArgMismatch); }
let mut new_scope: Scope = Vec::new();
let result1 = self.call_fn("clone", Some(a1), None, None, None, None, None);
let result2 = self.call_fn("clone", Some(a2), None, None, None, None, None);
let result3 = self.call_fn("clone", Some(a3), None, None, None, None, None);
let result4 = self.call_fn("clone", Some(a4), None, None, None, None, None);
let result5 = self.call_fn("clone", Some(a5), None, None, None, None, None);
2016-03-03 14:20:55 +01:00
match (result1, result2, result3, result4, result5) {
(Ok(r1), Ok(r2), Ok(r3), Ok(r4), Ok(r5)) => {
new_scope.push((f.params[0].clone(), r1));
new_scope.push((f.params[1].clone(), r2));
new_scope.push((f.params[2].clone(), r3));
new_scope.push((f.params[3].clone(), r4));
new_scope.push((f.params[4].clone(), r5));
},
_ => return Err(EvalAltResult::ErrorFunctionArgMismatch)
}
match self.eval_stmt(&mut new_scope, &*f.body) {
Err(EvalAltResult::Return(x)) => return Ok(x),
x => return x
}
}
_ => ()
}
}
return Err(EvalAltResult::ErrorFunctionArgMismatch);
2016-02-29 22:43:45 +01:00
}
(Some(ref mut a1), Some(ref mut a2), Some(ref mut a3), Some(ref mut a4), None, None) => {
for arr_f in *vf {
match arr_f {
& FnType::ExternalFn4(ref f) => {
match f(*a1, *a2, *a3, *a4) {
Ok(v) => return Ok(v),
_ => ()
}
}
& FnType::InternalFn(ref f) => {
if f.params.len() != 4 { return Err(EvalAltResult::ErrorFunctionArgMismatch); }
let mut new_scope: Scope = Vec::new();
let result1 = self.call_fn("clone", Some(a1), None, None, None, None, None);
let result2 = self.call_fn("clone", Some(a2), None, None, None, None, None);
let result3 = self.call_fn("clone", Some(a3), None, None, None, None, None);
let result4 = self.call_fn("clone", Some(a4), None, None, None, None, None);
match (result1, result2, result3, result4) {
(Ok(r1), Ok(r2), Ok(r3), Ok(r4)) => {
new_scope.push((f.params[0].clone(), r1));
new_scope.push((f.params[1].clone(), r2));
new_scope.push((f.params[2].clone(), r3));
new_scope.push((f.params[3].clone(), r4));
},
_ => return Err(EvalAltResult::ErrorFunctionArgMismatch)
}
match self.eval_stmt(&mut new_scope, &*f.body) {
Err(EvalAltResult::Return(x)) => return Ok(x),
x => return x
}
}
_ => ()
}
}
return Err(EvalAltResult::ErrorFunctionArgMismatch);
2016-03-01 15:40:48 +01:00
}
(Some(ref mut a1), Some(ref mut a2), Some(ref mut a3), None, None, None) => {
for arr_f in *vf {
match arr_f {
& FnType::ExternalFn3(ref f) => {
match f(*a1, *a2, *a3) {
Ok(v) => return Ok(v),
_ => ()
}
}
& FnType::InternalFn(ref f) => {
if f.params.len() != 3 { return Err(EvalAltResult::ErrorFunctionArgMismatch); }
let mut new_scope: Scope = Vec::new();
let result1 = self.call_fn("clone", Some(a1), None, None, None, None, None);
let result2 = self.call_fn("clone", Some(a2), None, None, None, None, None);
let result3 = self.call_fn("clone", Some(a3), None, None, None, None, None);
match (result1, result2, result3) {
(Ok(r1), Ok(r2), Ok(r3)) => {
new_scope.push((f.params[0].clone(), r1));
new_scope.push((f.params[1].clone(), r2));
new_scope.push((f.params[2].clone(), r3));
},
_ => return Err(EvalAltResult::ErrorFunctionArgMismatch)
}
match self.eval_stmt(&mut new_scope, &*f.body) {
Err(EvalAltResult::Return(x)) => return Ok(x),
x => return x
}
}
_ => ()
}
}
return Err(EvalAltResult::ErrorFunctionArgMismatch);
}
(Some(ref mut a1), Some(ref mut a2), None, None, None, None) => {
for arr_f in *vf {
match arr_f {
& FnType::ExternalFn2(ref f) => {
match f(*a1, *a2) {
Ok(v) => return Ok(v),
_ => ()
}
}
& FnType::InternalFn(ref f) => {
if f.params.len() != 2 { return Err(EvalAltResult::ErrorFunctionArgMismatch); }
let mut new_scope: Scope = Vec::new();
let result1 = self.call_fn("clone", Some(a1), None, None, None, None, None);
let result2 = self.call_fn("clone", Some(a2), None, None, None, None, None);
match (result1, result2) {
(Ok(r1), Ok(r2)) => {
new_scope.push((f.params[0].clone(), r1));
new_scope.push((f.params[1].clone(), r2));
},
_ => return Err(EvalAltResult::ErrorFunctionArgMismatch)
}
match self.eval_stmt(&mut new_scope, &*f.body) {
Err(EvalAltResult::Return(x)) => return Ok(x),
x => return x
}
}
_ => ()
}
}
return Err(EvalAltResult::ErrorFunctionArgMismatch);
}
(Some(ref mut a1), None, None, None, None, None) => {
for arr_f in *vf {
match arr_f {
& FnType::ExternalFn1(ref f) => {
match f(*a1) {
Ok(v) => return Ok(v),
_ => ()
}
}
& FnType::InternalFn(ref f) => {
if f.params.len() != 1 { return Err(EvalAltResult::ErrorFunctionArgMismatch); }
let mut new_scope: Scope = Vec::new();
let result1 = self.call_fn("clone", Some(a1), None, None, None, None, None);
match result1 {
Ok(r1) => {
new_scope.push((f.params[0].clone(), r1));
},
_ => return Err(EvalAltResult::ErrorFunctionArgMismatch)
}
match self.eval_stmt(&mut new_scope, &*f.body) {
Err(EvalAltResult::Return(x)) => return Ok(x),
x => return x
}
}
_ => ()
}
}
return Err(EvalAltResult::ErrorFunctionArgMismatch);
}
_ => {
for arr_f in *vf {
match arr_f {
& FnType::ExternalFn0(ref f) => {
match f() {
Ok(v) => return Ok(v),
_ => ()
}
}
& FnType::InternalFn(ref f) => {
if f.params.len() != 0 { return Err(EvalAltResult::ErrorFunctionArgMismatch); }
let mut new_scope: Scope = Vec::new();
match self.eval_stmt(&mut new_scope, &*f.body) {
Err(EvalAltResult::Return(x)) => return Ok(x),
x => return x
}
}
_ => ()
}
}
return Err(EvalAltResult::ErrorFunctionArgMismatch);
}
}
}
None => Err(EvalAltResult::ErrorFunctionNotFound)
}
}
pub fn register_type<T: Clone+Any>(&mut self) {
2016-02-29 22:43:45 +01:00
fn clone_helper<T: Clone>(t:T)->T { t.clone() };
self.register_fn("clone", clone_helper as fn(T)->T);
2016-02-29 22:43:45 +01:00
}
2016-03-17 13:45:48 +01:00
pub fn register_get<T: Clone+Any, U: Clone+Any, F>(&mut self, name: &str, get_fn: F)
where F : 'static+Fn(&mut T)->U {
let get_name = "get$".to_string() + name;
self.register_fn(&get_name, get_fn);
}
pub fn register_set<T: Clone+Any, U: Clone+Any, F>(&mut self, name: &str, set_fn: F)
where F : 'static+Fn(&mut T, U)->() {
let set_name = "set$".to_string() + name;
self.register_fn(&set_name, set_fn);
}
pub fn register_get_set<T: Clone+Any, U: Clone+Any, F, G>(&mut self, name: &str, get_fn: F, set_fn: G)
where F : 'static+Fn(&mut T)->U, G : 'static+Fn(&mut T, U)->() {
self.register_get(name, get_fn);
self.register_set(name, set_fn);
}
fn get_dot_val_helper(&self, scope: &mut Scope, this_ptr: &mut Box<Any>, dot_rhs: &Expr) -> Result<Box<Any>, EvalAltResult> {
match *dot_rhs {
Expr::FnCall(ref fn_name, ref args) => {
if args.len() == 0 {
return self.call_fn(&fn_name, Some(this_ptr), None, None, None, None, None);
}
else if args.len() == 1 {
let mut arg = try!(self.eval_expr(scope, &args[0]));
return self.call_fn(&fn_name, Some(this_ptr), Some(&mut arg), None, None, None, None);
}
else if args.len() == 2 {
let mut arg1 = try!(self.eval_expr(scope, &args[0]));
let mut arg2 = try!(self.eval_expr(scope, &args[1]));
return self.call_fn(&fn_name, Some(this_ptr), Some(&mut arg1), Some(&mut arg2), None, None, None);
}
else if args.len() == 3 {
let mut arg1 = try!(self.eval_expr(scope, &args[0]));
let mut arg2 = try!(self.eval_expr(scope, &args[1]));
let mut arg3 = try!(self.eval_expr(scope, &args[2]));
return self.call_fn(&fn_name, Some(this_ptr), Some(&mut arg1), Some(&mut arg2), Some(&mut arg3), None, None);
}
else if args.len() == 4 {
let mut arg1 = try!(self.eval_expr(scope, &args[0]));
let mut arg2 = try!(self.eval_expr(scope, &args[1]));
let mut arg3 = try!(self.eval_expr(scope, &args[2]));
let mut arg4 = try!(self.eval_expr(scope, &args[3]));
return self.call_fn(&fn_name, Some(this_ptr), Some(&mut arg1), Some(&mut arg2), Some(&mut arg3),
Some(&mut arg4), None);
}
else if args.len() == 5 {
let mut arg1 = try!(self.eval_expr(scope, &args[0]));
let mut arg2 = try!(self.eval_expr(scope, &args[1]));
let mut arg3 = try!(self.eval_expr(scope, &args[2]));
let mut arg4 = try!(self.eval_expr(scope, &args[3]));
let mut arg5 = try!(self.eval_expr(scope, &args[4]));
return self.call_fn(&fn_name, Some(this_ptr), Some(&mut arg1), Some(&mut arg2), Some(&mut arg3),
Some(&mut arg4), Some(&mut arg5));
}
else {
Err(EvalAltResult::ErrorFunctionCallNotSupported)
}
}
Expr::Identifier(ref id) => {
let get_fn_name = "get$".to_string() + id;
return self.call_fn(&get_fn_name, Some(this_ptr), None, None, None, None, None);
}
Expr::Index(ref id, ref idx_raw) => {
let idx = try!(self.eval_expr(scope, idx_raw));
let get_fn_name = "get$".to_string() + id;
if let Ok(mut val) = self.call_fn(&get_fn_name, Some(this_ptr), None, None, None, None, None) {
if let Ok(i) = idx.downcast::<i32>() {
if let Some(arr_typed) = (*val).downcast_mut() as Option<&mut Vec<Box<Any>>> {
return self.call_fn("clone", Some(&mut arr_typed[*i as usize]), None, None, None, None, None);
}
else {
return Err(EvalAltResult::ErrorIndexMismatch);
}
}
else {
return Err(EvalAltResult::ErrorIndexMismatch);
}
}
else {
return Err(EvalAltResult::ErrorIndexMismatch);
}
}
Expr::Dot(ref inner_lhs, ref inner_rhs) => {
match **inner_lhs {
Expr::Identifier(ref id) => {
let get_fn_name = "get$".to_string() + id;
let result = self.call_fn(&get_fn_name, Some(this_ptr), None, None, None, None, None);
match result {
Ok(mut v) => return self.get_dot_val_helper(scope, &mut v, inner_rhs),
e => return e
}
}
_ => Err(EvalAltResult::InternalErrorMalformedDotExpression)
}
}
_ => Err(EvalAltResult::InternalErrorMalformedDotExpression)
}
}
fn get_dot_val(&self, scope: &mut Scope, dot_lhs: &Expr, dot_rhs: &Expr) -> Result<Box<Any>, EvalAltResult> {
match *dot_lhs {
Expr::Identifier(ref id) => {
let mut target : Option<Box<Any>> = None;
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
let result = self.call_fn("clone", Some(val), None, None, None, None, None);
if let Ok(clone) = result {
target = Some(clone);
break;
}
else {
return result;
}
}
}
if let Some(mut t) = target {
let result = self.get_dot_val_helper(scope, &mut t, dot_rhs);
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
*val = t;
break;
}
}
return result;
}
return Err(EvalAltResult::ErrorVariableNotFound(id.clone()));
}
Expr::Index(ref id, ref idx_raw) => {
let idx_boxed = try!(self.eval_expr(scope, idx_raw));
let idx = if let Ok(i) = idx_boxed.downcast::<i32>() { i } else { return Err(EvalAltResult::ErrorIndexMismatch); };
let mut target : Option<Box<Any>> = None;
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
if let Some(arr_typed) = (*val).downcast_mut() as Option<&mut Vec<Box<Any>>> {
let result = self.call_fn("clone", Some(&mut arr_typed[*idx as usize]),
None, None, None, None, None);
if let Ok(clone) = result {
target = Some(clone);
break;
}
else {
return result;
}
}
else {
return Err(EvalAltResult::ErrorIndexMismatch);
}
}
}
if let Some(mut t) = target {
let result = self.get_dot_val_helper(scope, &mut t, dot_rhs);
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
if let Some(arr_typed) = (*val).downcast_mut() as Option<&mut Vec<Box<Any>>> {
arr_typed[*idx as usize] = t;
break;
}
}
}
return result;
}
Err(EvalAltResult::ErrorVariableNotFound(id.clone()))
}
_ => Err(EvalAltResult::InternalErrorMalformedDotExpression)
}
}
fn set_dot_val_helper(&self, this_ptr: &mut Box<Any>, dot_rhs: &Expr, mut source_val: Box<Any>) -> Result<Box<Any>, EvalAltResult> {
match *dot_rhs {
Expr::Identifier(ref id) => {
let set_fn_name = "set$".to_string() + id;
self.call_fn(&set_fn_name, Some(this_ptr), Some(&mut source_val), None, None, None, None)
}
Expr::Dot(ref inner_lhs, ref inner_rhs) => {
match **inner_lhs {
Expr::Identifier(ref id) => {
let get_fn_name = "get$".to_string() + id;
let result = self.call_fn(&get_fn_name, Some(this_ptr), None, None, None, None, None);
match result {
Ok(mut v) => {
match self.set_dot_val_helper(&mut v, inner_rhs, source_val) {
Ok(_) => {
let set_fn_name = "set$".to_string() + id;
self.call_fn(&set_fn_name, Some(this_ptr), Some(&mut v), None, None, None, None)
}
e => e
}
},
e => e
}
}
_ => Err(EvalAltResult::InternalErrorMalformedDotExpression)
}
}
_ => {
Err(EvalAltResult::InternalErrorMalformedDotExpression)
}
}
}
fn set_dot_val(&self, scope: &mut Scope, dot_lhs: &Expr, dot_rhs: &Expr, source_val: Box<Any>) -> Result<Box<Any>, EvalAltResult> {
match *dot_lhs {
Expr::Identifier(ref id) => {
let mut target : Option<Box<Any>> = None;
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
if let Ok(clone) = self.call_fn("clone", Some(val), None, None, None, None, None) {
target = Some(clone);
break;
}
else {
return Err(EvalAltResult::ErrorVariableNotFound(id.clone()));
}
}
}
if let Some(mut t) = target {
let result = self.set_dot_val_helper(&mut t, dot_rhs, source_val);
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
*val = t;
break;
}
}
return result;
}
return Err(EvalAltResult::ErrorAssignmentToUnknownLHS);
}
Expr::Index(ref id, ref idx_raw) => {
let idx_boxed = try!(self.eval_expr(scope, idx_raw));
let idx = if let Ok(i) = idx_boxed.downcast::<i32>() { i } else { return Err(EvalAltResult::ErrorIndexMismatch); };
let mut target : Option<Box<Any>> = None;
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
if let Some(arr_typed) = (*val).downcast_mut() as Option<&mut Vec<Box<Any>>> {
let result = self.call_fn("clone", Some(&mut arr_typed[*idx as usize]),
None, None, None, None, None);
if let Ok(clone) = result {
target = Some(clone);
break;
}
else {
return result;
}
}
else {
return Err(EvalAltResult::ErrorIndexMismatch);
}
}
}
if let Some(mut t) = target {
let result = self.set_dot_val_helper(&mut t, dot_rhs, source_val);
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
if let Some(arr_typed) = (*val).downcast_mut() as Option<&mut Vec<Box<Any>>> {
arr_typed[*idx as usize] = t;
break;
}
}
}
return result;
}
Err(EvalAltResult::ErrorVariableNotFound(id.clone()))
}
_ => Err(EvalAltResult::InternalErrorMalformedDotExpression)
}
}
fn eval_expr(&self, scope: &mut Scope, expr: &Expr) -> Result<Box<Any>, EvalAltResult> {
2016-02-29 22:43:45 +01:00
match *expr {
Expr::IntConst(i) => Ok(Box::new(i)),
Expr::StringConst(ref s) => Ok(Box::new(s.clone())),
2016-02-29 22:43:45 +01:00
Expr::Identifier(ref id) => {
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
return self.call_fn("clone", Some(val), None, None, None, None, None);
2016-02-29 22:43:45 +01:00
}
}
Err(EvalAltResult::ErrorVariableNotFound(id.clone()))
2016-02-29 22:43:45 +01:00
}
2016-03-26 18:46:28 +01:00
Expr::Index(ref id, ref idx_raw) => {
let idx = try!(self.eval_expr(scope, idx_raw));
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
if let Ok(i) = idx.downcast::<i32>() {
if let Some(arr_typed) = (*val).downcast_mut() as Option<&mut Vec<Box<Any>>> {
return self.call_fn("clone", Some(&mut arr_typed[*i as usize]), None, None, None, None, None);
}
else {
return Err(EvalAltResult::ErrorIndexMismatch);
}
}
else {
return Err(EvalAltResult::ErrorIndexMismatch);
}
}
}
Err(EvalAltResult::ErrorVariableNotFound(id.clone()))
}
2016-02-29 22:43:45 +01:00
Expr::Assignment(ref id, ref rhs) => {
2016-03-26 18:46:28 +01:00
let rhs_val = try!(self.eval_expr(scope, rhs));
2016-02-29 22:43:45 +01:00
match **id {
Expr::Identifier(ref n) => {
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
2016-02-29 22:43:45 +01:00
if *n == *name {
*val = rhs_val;
return Ok(Box::new(()));
}
}
Err(EvalAltResult::ErrorVariableNotFound(n.clone()))
2016-02-29 22:43:45 +01:00
}
2016-03-26 18:46:28 +01:00
Expr::Index(ref id, ref idx_raw) => {
let idx = try!(self.eval_expr(scope, idx_raw));
for &mut (ref name, ref mut val) in &mut scope.iter_mut().rev() {
if *id == *name {
if let Ok(i) = idx.downcast::<i32>() {
if let Some(arr_typed) = (*val).downcast_mut() as Option<&mut Vec<Box<Any>>> {
arr_typed[*i as usize] = rhs_val;
return Ok(Box::new(()));
}
else {
return Err(EvalAltResult::ErrorIndexMismatch);
}
}
else {
return Err(EvalAltResult::ErrorIndexMismatch);
}
}
}
2016-03-26 18:46:28 +01:00
Err(EvalAltResult::ErrorVariableNotFound(id.clone()))
}
Expr::Dot(ref dot_lhs, ref dot_rhs) => {
self.set_dot_val(scope, dot_lhs, dot_rhs, rhs_val)
}
_ => Err(EvalAltResult::ErrorAssignmentToUnknownLHS)
2016-02-29 22:43:45 +01:00
}
}
Expr::Dot(ref lhs, ref rhs) => {
self.get_dot_val(scope, lhs, rhs)
}
2016-03-26 18:46:28 +01:00
Expr::Array(ref contents) => {
let mut arr = Vec::new();
for item in (*contents).iter() {
let arg = try!(self.eval_expr(scope, item));
arr.push(arg);
}
Ok(Box::new(arr))
}
Expr::FnCall(ref fn_name, ref args) => {
if args.len() == 0 {
self.call_fn(&fn_name, None, None, None, None, None, None)
}
else if args.len() == 1 {
let mut arg = try!(self.eval_expr(scope, &args[0]));
self.call_fn(&fn_name, Some(&mut arg), None, None, None, None, None)
}
else if args.len() == 2 {
let mut arg1 = try!(self.eval_expr(scope, &args[0]));
let mut arg2 = try!(self.eval_expr(scope, &args[1]));
self.call_fn(&fn_name, Some(&mut arg1), Some(&mut arg2), None, None, None, None)
}
else if args.len() == 3 {
let mut arg1 = try!(self.eval_expr(scope, &args[0]));
let mut arg2 = try!(self.eval_expr(scope, &args[1]));
let mut arg3 = try!(self.eval_expr(scope, &args[2]));
self.call_fn(&fn_name, Some(&mut arg1), Some(&mut arg2), Some(&mut arg3), None, None, None)
}
else if args.len() == 4 {
let mut arg1 = try!(self.eval_expr(scope, &args[0]));
let mut arg2 = try!(self.eval_expr(scope, &args[1]));
let mut arg3 = try!(self.eval_expr(scope, &args[2]));
let mut arg4 = try!(self.eval_expr(scope, &args[3]));
self.call_fn(&fn_name, Some(&mut arg1), Some(&mut arg2), Some(&mut arg3), Some(&mut arg4), None, None)
}
else if args.len() == 5 {
let mut arg1 = try!(self.eval_expr(scope, &args[0]));
let mut arg2 = try!(self.eval_expr(scope, &args[1]));
let mut arg3 = try!(self.eval_expr(scope, &args[2]));
let mut arg4 = try!(self.eval_expr(scope, &args[3]));
let mut arg5 = try!(self.eval_expr(scope, &args[4]));
self.call_fn(&fn_name, Some(&mut arg1), Some(&mut arg2), Some(&mut arg3), Some(&mut arg4),
Some(&mut arg5), None)
}
else if args.len() == 6 {
let mut arg1 = try!(self.eval_expr(scope, &args[0]));
let mut arg2 = try!(self.eval_expr(scope, &args[1]));
let mut arg3 = try!(self.eval_expr(scope, &args[2]));
let mut arg4 = try!(self.eval_expr(scope, &args[3]));
let mut arg5 = try!(self.eval_expr(scope, &args[4]));
let mut arg6 = try!(self.eval_expr(scope, &args[5]));
self.call_fn(&fn_name, Some(&mut arg1), Some(&mut arg2), Some(&mut arg3), Some(&mut arg4),
Some(&mut arg5), Some(&mut arg6))
}
else {
Err(EvalAltResult::ErrorFunctionCallNotSupported)
}
}
2016-02-29 22:43:45 +01:00
Expr::True => {
Ok(Box::new(true))
}
Expr::False => {
Ok(Box::new(false))
}
}
}
fn eval_stmt(&self, scope: &mut Scope, stmt: &Stmt) -> Result<Box<Any>, EvalAltResult> {
2016-02-29 22:43:45 +01:00
match *stmt {
Stmt::Expr(ref e) => {
self.eval_expr(scope, e)
2016-02-29 22:43:45 +01:00
}
Stmt::Block(ref b) => {
let prev_len = scope.len();
let mut last_result : Result<Box<Any>, EvalAltResult> = Ok(Box::new(()));
2016-02-29 22:43:45 +01:00
for s in b.iter() {
last_result = self.eval_stmt(scope, s);
match last_result {
Err(x) => {last_result = Err(x); break},
_ => ()
}
2016-02-29 22:43:45 +01:00
}
while scope.len() > prev_len {
scope.pop();
2016-02-29 22:43:45 +01:00
}
return last_result;
}
Stmt::If(ref guard, ref body) => {
let guard_result = try!(self.eval_expr(scope, guard));
2016-02-29 22:43:45 +01:00
match guard_result.downcast::<bool>() {
Ok(g) => {
if *g {
self.eval_stmt(scope, body)
2016-02-29 22:43:45 +01:00
}
else {
Ok(Box::new(()))
}
}
Err(_) => Err(EvalAltResult::ErrorIfGuardMismatch)
2016-02-29 22:43:45 +01:00
}
}
2016-03-03 14:20:55 +01:00
Stmt::IfElse(ref guard, ref body, ref else_body) => {
let guard_result = try!(self.eval_expr(scope, guard));
match guard_result.downcast::<bool>() {
Ok(g) => {
if *g {
self.eval_stmt(scope, body)
}
else {
self.eval_stmt(scope, else_body)
}
}
Err(_) => Err(EvalAltResult::ErrorIfGuardMismatch)
2016-03-03 14:20:55 +01:00
}
}
2016-02-29 22:43:45 +01:00
Stmt::While(ref guard, ref body) => {
loop {
let guard_result = try!(self.eval_expr(scope, guard));
2016-02-29 22:43:45 +01:00
match guard_result.downcast::<bool>() {
Ok(g) => {
if *g {
match self.eval_stmt(scope, body) {
Err(EvalAltResult::LoopBreak) => { return Ok(Box::new(())); }
Err(x) => { return Err(x); }
_ => ()
}
2016-02-29 22:43:45 +01:00
}
else {
return Ok(Box::new(()));
}
}
Err(_) => return Err(EvalAltResult::ErrorIfGuardMismatch)
2016-02-29 22:43:45 +01:00
}
}
}
Stmt::Break => return Err(EvalAltResult::LoopBreak),
Stmt::Return => return Err(EvalAltResult::Return(Box::new(()))),
Stmt::ReturnWithVal(ref a) => {
let result = try!(self.eval_expr(scope, a));
return Err(EvalAltResult::Return(result));
}
2016-02-29 22:43:45 +01:00
Stmt::Var(ref name, ref init) => {
match init {
& Some(ref v) => {
let i = try!(self.eval_expr(scope, v));
scope.push((name.clone(), i));
2016-02-29 22:43:45 +01:00
},
& None => {
scope.push((name.clone(), Box::new(())));
2016-02-29 22:43:45 +01:00
}
};
Ok(Box::new(()))
}
}
}
2016-03-17 13:45:48 +01:00
pub fn eval_file<T:Any+Clone>(&mut self, fname: &str) -> Result<T, EvalAltResult> {
use std::fs::File;
use std::io::prelude::*;
if let Ok(mut f) = File::open(fname.clone()) {
let mut contents = String::new();
if let Ok(_) = f.read_to_string(&mut contents) {
self.eval::<T>(&contents)
}
else {
Err(EvalAltResult::ErrorCantOpenScriptFile)
}
}
else {
Err(EvalAltResult::ErrorCantOpenScriptFile)
}
}
2016-03-16 23:32:05 +01:00
pub fn eval<T:Any+Clone>(&mut self, input: &str) -> Result<T, EvalAltResult> {
let mut scope: Scope = Vec::new();
self.eval_with_scope(&mut scope, input)
}
2016-03-16 23:32:05 +01:00
pub fn eval_with_scope<T:Any+Clone>(&mut self, scope: &mut Scope, input: &str) -> Result<T, EvalAltResult> {
let tokens = lex(input);
2016-02-29 22:43:45 +01:00
let mut peekables = tokens.peekable();
let tree = parse(&mut peekables);
match tree {
Ok((ref os, ref fns)) => {
let mut x: Result<Box<Any>, EvalAltResult> = Ok(Box::new(()));
for f in fns {
if f.params.len() > 6 {
return Err(EvalAltResult::ErrorFunctionArityNotSupported);
}
let name = f.name.clone();
let local_f = f.clone();
let ent = self.fns.entry(name).or_insert(Vec::new());
(*ent).push(FnType::InternalFn(local_f));
}
2016-02-29 22:43:45 +01:00
for o in os {
2016-03-16 23:32:05 +01:00
x = match self.eval_stmt(scope, &o) {
Ok(v) => Ok(v),
Err(e) => return Err(e)
}
}
match x {
Ok(v) => {
match v.downcast::<T>() {
Ok(out) => Ok(*out),
Err(_) => Err(EvalAltResult::ErrorMismatchOutputType)
}
}
Err(e) => Err(e)
2016-02-29 22:43:45 +01:00
}
}
Err(_) => Err(EvalAltResult::ErrorFunctionArgMismatch)
2016-02-29 22:43:45 +01:00
}
}
2016-03-01 15:40:48 +01:00
pub fn register_default_lib(engine: &mut Engine) {
engine.register_type::<i32>();
engine.register_type::<u32>();
engine.register_type::<i64>();
engine.register_type::<u64>();
engine.register_type::<f32>();
engine.register_type::<f64>();
engine.register_type::<String>();
engine.register_type::<char>();
engine.register_type::<bool>();
macro_rules! reg_op {
($engine:expr, $x:expr, $op:expr, $( $y:ty ),*) => (
$(
$engine.register_fn($x, ($op as fn(x: $y, y: $y)->$y));
2016-03-01 15:40:48 +01:00
)*
)
}
2016-03-01 15:40:48 +01:00
macro_rules! reg_cmp {
($engine:expr, $x:expr, $op:expr, $( $y:ty ),*) => (
$(
$engine.register_fn($x, ($op as fn(x: $y, y: $y)->bool));
2016-03-01 15:40:48 +01:00
)*
)
}
fn add<T: Add>(x: T, y: T) -> <T as Add>::Output { x + y }
fn sub<T: Sub>(x: T, y: T) -> <T as Sub>::Output { x - y }
fn mul<T: Mul>(x: T, y: T) -> <T as Mul>::Output { x * y }
fn div<T: Div>(x: T, y: T) -> <T as Div>::Output { x / y }
fn lt<T: Ord>(x: T, y: T) -> bool { x < y }
fn lte<T: Ord>(x: T, y: T) -> bool { x <= y }
fn gt<T: Ord>(x: T, y: T) -> bool { x > y }
fn gte<T: Ord>(x: T, y: T) -> bool { x >= y }
fn eq<T: Eq>(x: T, y: T) -> bool { x == y }
fn ne<T: Eq>(x: T, y: T) -> bool { x != y }
fn and(x: bool, y: bool) -> bool { x && y }
fn or(x: bool, y: bool) -> bool { x || y }
2016-03-01 15:40:48 +01:00
reg_op!(engine, "+", add, i32, i64, u32, u64, f32, f64);
reg_op!(engine, "-", sub, i32, i64, u32, u64, f32, f64);
reg_op!(engine, "*", mul, i32, i64, u32, u64, f32, f64);
reg_op!(engine, "/", div, i32, i64, u32, u64, f32, f64);
reg_cmp!(engine, "<", lt, i32, i64, u32, u64);
reg_cmp!(engine, "<=", lte, i32, i64, u32, u64);
reg_cmp!(engine, ">", gt, i32, i64, u32, u64);
reg_cmp!(engine, ">=", gte, i32, i64, u32, u64);
reg_cmp!(engine, "==", eq, i32, i64, u32, u64, bool);
reg_cmp!(engine, "!=", ne, i32, i64, u32, u64, bool);
2016-03-01 15:40:48 +01:00
reg_op!(engine, "||", or, bool);
reg_op!(engine, "&&", and, bool);
2016-03-26 18:46:28 +01:00
//engine.register_fn("[]", idx);
//FIXME? Registering array lookups are a special case because we want to return boxes directly
//let ent = engine.fns.entry("[]".to_string()).or_insert(Vec::new());
//(*ent).push(FnType::ExternalFn2(Box::new(idx)));
2016-03-01 15:40:48 +01:00
}
2016-02-29 22:43:45 +01:00
pub fn new() -> Engine {
2016-03-01 15:40:48 +01:00
let mut engine = Engine {
fns: HashMap::new()
2016-03-01 15:40:48 +01:00
};
Engine::register_default_lib(&mut engine);
engine
}
}
#[test]
fn test_number_literal() {
let mut engine = Engine::new();
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("65") {
assert_eq!(result, 65);
2016-03-01 15:40:48 +01:00
}
else {
assert!(false);
}
}
#[test]
2016-03-03 17:32:02 +01:00
fn test_ops() {
2016-03-01 15:40:48 +01:00
let mut engine = Engine::new();
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("60 + 5") {
assert_eq!(result, 65);
2016-03-01 15:40:48 +01:00
}
else {
assert!(false);
}
2016-03-03 17:32:02 +01:00
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("(1 + 2) * (6 - 4) / 2") {
assert_eq!(result, 3);
2016-03-03 17:32:02 +01:00
}
else {
assert!(false);
}
2016-03-01 15:40:48 +01:00
}
#[test]
fn test_mismatched_op() {
let mut engine = Engine::new();
match engine.eval::<i32>("60 + \"hello\"") {
Err(EvalAltResult::ErrorFunctionArgMismatch) => (),
_ => assert!(false)
}
}
2016-03-01 15:40:48 +01:00
#[test]
fn test_bool_op1() {
2016-03-01 15:40:48 +01:00
let mut engine = Engine::new();
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<bool>("true && (false || true)") {
assert_eq!(result, true);
2016-03-01 15:40:48 +01:00
}
else {
assert!(false);
}
}
#[test]
fn test_bool_op2() {
let mut engine = Engine::new();
2016-03-01 15:40:48 +01:00
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<bool>("false && (false || true)") {
assert_eq!(result, false);
2016-03-01 15:40:48 +01:00
}
else {
assert!(false);
2016-02-29 22:43:45 +01:00
}
}
2016-03-01 15:40:48 +01:00
#[test]
fn test_op_prec() {
let mut engine = Engine::new();
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("var x = 0; if x == 10 || true { x = 1} x") {
assert_eq!(result, 1);
2016-03-01 15:40:48 +01:00
}
else {
assert!(false);
}
}
#[test]
fn test_if() {
let mut engine = Engine::new();
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("if true { 55 }") {
assert_eq!(result, 55);
2016-03-01 15:40:48 +01:00
}
else {
assert!(false);
}
2016-03-03 14:20:55 +01:00
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("if false { 55 } else { 44 }") {
assert_eq!(result, 44);
2016-03-03 14:20:55 +01:00
}
else {
assert!(false);
}
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("if true { 55 } else { 44 }") {
assert_eq!(result, 55);
2016-03-03 14:20:55 +01:00
}
else {
assert!(false);
}
2016-03-01 15:40:48 +01:00
}
#[test]
fn test_while() {
let mut engine = Engine::new();
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("var x = 0; while x < 10 { x = x + 1; if x > 5 { break } } x") {
assert_eq!(result, 6);
}
else {
assert!(false);
}
}
#[test]
2016-03-01 15:40:48 +01:00
fn test_var_scope() {
let mut engine = Engine::new();
let mut scope: Scope = Vec::new();
2016-03-01 15:40:48 +01:00
2016-03-16 23:32:05 +01:00
if let Ok(_) = engine.eval_with_scope::<()>(&mut scope, "var x = 4 + 5") { } else { assert!(false); }
2016-03-01 15:40:48 +01:00
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval_with_scope::<i32>(&mut scope, "x") {
assert_eq!(result, 9);
2016-03-01 15:40:48 +01:00
}
else {
assert!(false);
}
2016-03-16 23:32:05 +01:00
if let Ok(_) = engine.eval_with_scope::<()>(&mut scope, "x = x + 1; x = x + 2;") { } else { assert!(false); }
2016-03-01 15:40:48 +01:00
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval_with_scope::<i32>(&mut scope, "x") {
assert_eq!(result, 12);
2016-03-01 15:40:48 +01:00
}
else {
assert!(false);
}
2016-03-16 23:32:05 +01:00
if let Ok(_) = engine.eval_with_scope::<()>(&mut scope, "{var x = 3}") { } else { assert!(false); }
2016-03-01 15:40:48 +01:00
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval_with_scope::<i32>(&mut scope, "x") {
assert_eq!(result, 12);
2016-03-01 15:40:48 +01:00
}
else {
assert!(false);
}
}
#[test]
fn test_method_call() {
2016-03-10 22:19:56 +01:00
#[derive(Clone)]
struct TestStruct {
x: i32
}
2016-03-01 15:40:48 +01:00
impl TestStruct {
fn update(&mut self) {
self.x += 1000;
}
fn new() -> TestStruct {
TestStruct { x: 1 }
}
}
let mut engine = Engine::new();
engine.register_type::<TestStruct>();
engine.register_fn("update", TestStruct::update);
engine.register_fn("new_ts", TestStruct::new);
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<TestStruct>("var x = new_ts(); x.update(); x") {
assert_eq!(result.x, 1001);
}
else {
assert!(false);
}
}
#[test]
fn test_get_set() {
2016-03-10 22:19:56 +01:00
#[derive(Clone)]
struct TestStruct {
x: i32
}
impl TestStruct {
fn get_x(&mut self) -> i32 {
self.x
}
fn set_x(&mut self, new_x: i32) {
self.x = new_x;
}
fn new() -> TestStruct {
TestStruct { x: 1 }
}
}
let mut engine = Engine::new();
engine.register_type::<TestStruct>();
2016-03-17 13:45:48 +01:00
engine.register_get_set("x", TestStruct::get_x, TestStruct::set_x);
engine.register_fn("new_ts", TestStruct::new);
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("var a = new_ts(); a.x = 500; a.x") {
assert_eq!(result, 500);
}
else {
assert!(false);
}
}
#[test]
fn test_big_get_set() {
2016-03-10 22:19:56 +01:00
#[derive(Clone)]
struct TestChild {
x: i32
}
impl TestChild {
fn get_x(&mut self) -> i32 {
self.x
}
fn set_x(&mut self, new_x: i32) {
self.x = new_x;
}
fn new() -> TestChild {
TestChild { x: 1 }
}
}
2016-03-10 22:19:56 +01:00
#[derive(Clone)]
struct TestParent {
child: TestChild
}
impl TestParent {
fn get_child(&mut self) -> TestChild {
self.child.clone()
}
fn set_child(&mut self, new_child: TestChild) {
self.child = new_child;
}
fn new() -> TestParent {
TestParent { child: TestChild::new() }
}
}
let mut engine = Engine::new();
engine.register_type::<TestChild>();
engine.register_type::<TestParent>();
2016-03-17 13:45:48 +01:00
engine.register_get_set("x", TestChild::get_x, TestChild::set_x);
engine.register_get_set("child", TestParent::get_child, TestParent::set_child);
engine.register_fn("new_tp", TestParent::new);
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("var a = new_tp(); a.child.x = 500; a.child.x") {
assert_eq!(result, 500);
}
else {
assert!(false);
}
}
#[test]
fn test_internal_fn() {
let mut engine = Engine::new();
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("fn addme(a, b) { a+b } addme(3, 4)") {
assert_eq!(result, 7);
}
else {
assert!(false);
}
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("fn bob() { return 4; 5 } bob()") {
assert_eq!(result, 4);
}
else {
assert!(false);
}
}
#[test]
fn test_big_internal_fn() {
let mut engine = Engine::new();
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("fn mathme(a, b, c, d, e, f) { a - b * c + d * e - f } mathme(100, 5, 2, 9, 6, 32)") {
assert_eq!(result, 112);
}
else {
assert!(false);
}
}
#[test]
fn test_string() {
let mut engine = Engine::new();
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<String>("\"Test string: \\u2764\"") {
assert_eq!(result, "Test string: ❤");
}
else {
assert!(false);
}
}
2016-03-26 18:46:28 +01:00
#[test]
2016-03-26 21:36:26 +01:00
fn test_arrays() {
2016-03-26 18:46:28 +01:00
let mut engine = Engine::new();
if let Ok(result) = engine.eval::<i32>("var x = [1, 2, 3]; x[1]") {
assert_eq!(result, 2);
}
else {
assert!(false);
}
if let Ok(result) = engine.eval::<i32>("var y = [1, 2, 3]; y[1] = 5; y[1]") {
assert_eq!(result, 5);
}
else {
assert!(false);
}
}
2016-03-26 21:36:26 +01:00
#[test]
fn test_array_with_structs() {
#[derive(Clone)]
struct TestStruct {
x: i32
}
impl TestStruct {
fn update(&mut self) {
self.x += 1000;
}
fn get_x(&mut self) -> i32 {
self.x
}
fn set_x(&mut self, new_x: i32) {
self.x = new_x;
}
fn new() -> TestStruct {
TestStruct { x: 1 }
}
}
let mut engine = Engine::new();
engine.register_type::<TestStruct>();
engine.register_get_set("x", TestStruct::get_x, TestStruct::set_x);
engine.register_fn("update", TestStruct::update);
engine.register_fn("new_ts", TestStruct::new);
if let Ok(result) = engine.eval::<i32>("var a = [new_ts()]; a[0].x") {
assert_eq!(result, 1);
}
else {
assert!(false);
}
if let Ok(result) = engine.eval::<i32>("var a = [new_ts()]; a[0].x = 100; a[0].update(); a[0].x") {
assert_eq!(result, 1100);
}
else {
assert!(false);
}
}
2016-03-26 18:46:28 +01:00