2020-05-13 13:39:34 +02:00
|
|
|
use rhai::{Dynamic, Engine, EvalAltResult, Scope, AST};
|
2020-03-16 05:41:19 +01:00
|
|
|
|
2020-03-15 15:39:58 +01:00
|
|
|
#[cfg(not(feature = "no_optimize"))]
|
|
|
|
use rhai::OptimizationLevel;
|
|
|
|
|
2020-05-13 13:39:34 +02:00
|
|
|
use std::io::{stdin, stdout, Write};
|
2017-10-15 17:50:39 +02:00
|
|
|
|
2020-03-10 04:25:34 +01:00
|
|
|
fn print_error(input: &str, err: EvalAltResult) {
|
2020-03-24 10:30:04 +01:00
|
|
|
let lines: Vec<_> = input.trim().split('\n').collect();
|
2020-06-12 12:04:16 +02:00
|
|
|
let pos = err.position();
|
2020-03-21 10:14:31 +01:00
|
|
|
|
|
|
|
let line_no = if lines.len() > 1 {
|
2020-06-12 12:04:16 +02:00
|
|
|
if pos.is_none() {
|
|
|
|
"".to_string()
|
|
|
|
} else {
|
|
|
|
format!("{}: ", pos.line().unwrap())
|
2020-03-21 10:14:31 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
"".to_string()
|
|
|
|
};
|
2020-03-10 04:25:34 +01:00
|
|
|
|
|
|
|
// Print error
|
2020-03-25 04:51:13 +01:00
|
|
|
let pos_text = format!(" ({})", pos);
|
2020-03-22 14:03:58 +01:00
|
|
|
|
2020-06-12 12:04:16 +02:00
|
|
|
if pos.is_none() {
|
|
|
|
// No position
|
|
|
|
println!("{}", err);
|
|
|
|
} else {
|
|
|
|
// Specific position
|
|
|
|
println!("{}{}", line_no, lines[pos.line().unwrap() - 1]);
|
|
|
|
|
|
|
|
let err_text = match err {
|
|
|
|
EvalAltResult::ErrorRuntime(err, _) if !err.is_empty() => {
|
|
|
|
format!("Runtime error: {}", err)
|
|
|
|
}
|
|
|
|
err => err.to_string(),
|
|
|
|
};
|
|
|
|
|
|
|
|
println!(
|
|
|
|
"{0:>1$} {2}",
|
|
|
|
"^",
|
|
|
|
line_no.len() + pos.position().unwrap(),
|
|
|
|
err_text.replace(&pos_text, "")
|
|
|
|
);
|
2020-03-10 04:25:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-21 10:14:31 +01:00
|
|
|
fn print_help() {
|
|
|
|
println!("help => print this help");
|
|
|
|
println!("quit, exit => quit");
|
|
|
|
println!("ast => print the last AST");
|
2020-03-22 02:25:41 +01:00
|
|
|
println!("astu => print the last raw, un-optimized AST");
|
2020-03-21 10:14:31 +01:00
|
|
|
println!(r"end a line with '\' to continue to the next line.");
|
|
|
|
println!();
|
|
|
|
}
|
|
|
|
|
2020-03-10 04:25:34 +01:00
|
|
|
fn main() {
|
2017-12-20 12:16:14 +01:00
|
|
|
let mut engine = Engine::new();
|
2020-03-15 15:39:58 +01:00
|
|
|
|
|
|
|
#[cfg(not(feature = "no_optimize"))]
|
2020-03-22 02:25:41 +01:00
|
|
|
engine.set_optimization_level(OptimizationLevel::None);
|
2020-03-15 15:39:58 +01:00
|
|
|
|
2017-12-20 12:16:14 +01:00
|
|
|
let mut scope = Scope::new();
|
2017-10-15 17:50:39 +02:00
|
|
|
|
2020-03-10 04:25:34 +01:00
|
|
|
let mut input = String::new();
|
2020-05-05 09:00:10 +02:00
|
|
|
let mut main_ast: AST = Default::default();
|
|
|
|
let mut ast_u: AST = Default::default();
|
|
|
|
let mut ast: AST = Default::default();
|
2017-10-15 17:50:39 +02:00
|
|
|
|
2020-03-21 10:14:31 +01:00
|
|
|
println!("Rhai REPL tool");
|
|
|
|
println!("==============");
|
|
|
|
print_help();
|
|
|
|
|
2017-12-20 12:16:14 +01:00
|
|
|
loop {
|
2020-03-10 04:25:34 +01:00
|
|
|
print!("rhai> ");
|
2017-12-20 12:16:14 +01:00
|
|
|
stdout().flush().expect("couldn't flush stdout");
|
2020-03-02 08:19:59 +01:00
|
|
|
|
2020-03-10 04:25:34 +01:00
|
|
|
input.clear();
|
|
|
|
|
2020-03-21 10:14:31 +01:00
|
|
|
loop {
|
|
|
|
if let Err(err) = stdin().read_line(&mut input) {
|
|
|
|
panic!("input error: {}", err);
|
|
|
|
}
|
|
|
|
|
|
|
|
let line = input.as_str().trim_end();
|
|
|
|
|
|
|
|
// Allow line continuation
|
|
|
|
if line.ends_with('\\') {
|
|
|
|
let len = line.len();
|
|
|
|
input.truncate(len - 1);
|
|
|
|
input.push('\n');
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
print!("> ");
|
|
|
|
stdout().flush().expect("couldn't flush stdout");
|
2017-12-20 12:16:14 +01:00
|
|
|
}
|
2017-10-15 17:50:39 +02:00
|
|
|
|
2020-03-21 10:14:31 +01:00
|
|
|
let script = input.trim();
|
|
|
|
|
2020-04-04 16:00:44 +02:00
|
|
|
if script.is_empty() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-12 08:31:01 +01:00
|
|
|
// Implement standard commands
|
2020-03-21 10:14:31 +01:00
|
|
|
match script {
|
|
|
|
"help" => {
|
|
|
|
print_help();
|
|
|
|
continue;
|
|
|
|
}
|
2020-03-12 08:31:01 +01:00
|
|
|
"exit" | "quit" => break, // quit
|
2020-03-22 02:25:41 +01:00
|
|
|
"astu" => {
|
2020-04-04 16:00:44 +02:00
|
|
|
// print the last un-optimized AST
|
|
|
|
println!("{:#?}", &ast_u);
|
2020-03-22 02:25:41 +01:00
|
|
|
continue;
|
|
|
|
}
|
2020-03-12 08:31:01 +01:00
|
|
|
"ast" => {
|
2020-04-04 16:00:44 +02:00
|
|
|
// print the last AST
|
|
|
|
println!("{:#?}", &ast);
|
2020-03-12 08:31:01 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
|
2020-04-13 04:27:08 +02:00
|
|
|
match engine
|
2020-03-21 10:14:31 +01:00
|
|
|
.compile_with_scope(&scope, &script)
|
2020-06-16 03:34:30 +02:00
|
|
|
.map_err(Into::into)
|
2020-03-12 08:31:01 +01:00
|
|
|
.and_then(|r| {
|
2020-04-05 11:44:48 +02:00
|
|
|
ast_u = r.clone();
|
2020-03-22 02:25:41 +01:00
|
|
|
|
2020-03-22 14:03:58 +01:00
|
|
|
#[cfg(not(feature = "no_optimize"))]
|
|
|
|
{
|
2020-04-08 03:30:50 +02:00
|
|
|
ast = engine.optimize_ast(&scope, r, OptimizationLevel::Full);
|
2020-03-22 14:03:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "no_optimize")]
|
|
|
|
{
|
2020-04-05 11:44:48 +02:00
|
|
|
ast = r;
|
2020-03-22 14:03:58 +01:00
|
|
|
}
|
2020-03-22 02:25:41 +01:00
|
|
|
|
2020-04-04 16:00:44 +02:00
|
|
|
// Merge the AST into the main
|
|
|
|
main_ast = main_ast.merge(&ast);
|
|
|
|
|
|
|
|
// Evaluate
|
2020-04-13 04:27:08 +02:00
|
|
|
engine.eval_ast_with_scope::<Dynamic>(&mut scope, &main_ast)
|
|
|
|
}) {
|
2020-04-16 05:57:08 +02:00
|
|
|
Ok(result) if !result.is::<()>() => {
|
2020-04-13 04:27:08 +02:00
|
|
|
println!("=> {:?}", result);
|
|
|
|
println!();
|
|
|
|
}
|
2020-04-16 05:57:08 +02:00
|
|
|
Ok(_) => (),
|
2020-04-13 04:27:08 +02:00
|
|
|
Err(err) => {
|
|
|
|
println!();
|
2020-04-21 17:25:12 +02:00
|
|
|
print_error(&input, *err);
|
2020-04-13 04:27:08 +02:00
|
|
|
println!();
|
|
|
|
}
|
2017-12-20 12:16:14 +01:00
|
|
|
}
|
2020-04-13 04:27:08 +02:00
|
|
|
|
|
|
|
// Throw away all the statements, leaving only the functions
|
2020-05-06 10:09:44 +02:00
|
|
|
#[cfg(not(feature = "no_function"))]
|
2020-04-13 04:27:08 +02:00
|
|
|
main_ast.retain_functions();
|
2017-12-20 12:16:14 +01:00
|
|
|
}
|
2017-10-15 17:50:39 +02:00
|
|
|
}
|