2017-09-18 19:09:27 -07:00
|
|
|
use itertools::Itertools;
|
2017-08-31 20:59:43 -07:00
|
|
|
use language::{ProgrammingLanguageInterface, EvalOptions, TraceArtifact, ReplOutput};
|
2017-08-29 04:15:31 -07:00
|
|
|
|
2017-08-29 04:27:07 -07:00
|
|
|
mod parsing;
|
2017-09-30 23:30:02 -07:00
|
|
|
mod eval;
|
2017-08-29 04:27:07 -07:00
|
|
|
|
2017-10-01 00:48:08 -07:00
|
|
|
use self::eval::TypeCheck;
|
|
|
|
|
2017-09-15 16:35:45 -07:00
|
|
|
pub struct Schala {
|
2017-09-30 23:30:02 -07:00
|
|
|
state: eval::ReplState
|
2017-08-29 04:15:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Schala {
|
|
|
|
pub fn new() -> Schala {
|
2017-09-30 23:30:02 -07:00
|
|
|
Schala {
|
|
|
|
state: eval::ReplState::new(),
|
|
|
|
}
|
2017-08-29 04:15:31 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-31 14:57:56 -07:00
|
|
|
impl ProgrammingLanguageInterface for Schala {
|
|
|
|
fn get_language_name(&self) -> String {
|
2017-08-29 04:15:31 -07:00
|
|
|
"Schala".to_string()
|
|
|
|
}
|
|
|
|
|
2017-09-01 02:08:26 -07:00
|
|
|
fn evaluate_in_repl(&mut self, input: &str, options: &EvalOptions) -> ReplOutput {
|
2017-08-31 20:59:43 -07:00
|
|
|
let mut output = ReplOutput::default();
|
2017-09-06 23:52:25 -07:00
|
|
|
let tokens = parsing::tokenize(input);
|
|
|
|
if options.debug_tokens {
|
2017-09-18 19:09:27 -07:00
|
|
|
let token_string = tokens.iter().map(|t| format!("{:?}<{}>", t.token_type, t.offset)).join(", ");
|
|
|
|
output.add_artifact(TraceArtifact::new("tokens", format!("{:?}", token_string)));
|
|
|
|
|
2017-09-06 23:52:25 -07:00
|
|
|
}
|
|
|
|
|
2017-09-08 16:42:42 -07:00
|
|
|
{
|
|
|
|
let token_errors: Vec<&String> = tokens.iter().filter_map(|t| t.get_error()).collect();
|
|
|
|
if token_errors.len() != 0 {
|
|
|
|
output.add_output(format!("Tokenization error: {:?}\n", token_errors));
|
|
|
|
return output;
|
|
|
|
}
|
2017-09-06 23:52:25 -07:00
|
|
|
}
|
2017-08-31 16:26:55 -07:00
|
|
|
|
2017-08-31 20:59:43 -07:00
|
|
|
let ast = match parsing::parse(tokens) {
|
2017-09-15 16:35:45 -07:00
|
|
|
(Ok(ast), trace) => {
|
2017-08-31 20:59:43 -07:00
|
|
|
if options.debug_parse {
|
2017-09-16 14:29:22 -07:00
|
|
|
output.add_artifact(TraceArtifact::new_parse_trace(trace));
|
2017-08-31 20:59:43 -07:00
|
|
|
output.add_artifact(TraceArtifact::new("ast", format!("{:?}", ast)));
|
|
|
|
}
|
|
|
|
ast
|
|
|
|
},
|
2017-09-15 16:35:45 -07:00
|
|
|
(Err(err), trace) => {
|
2017-09-16 14:29:22 -07:00
|
|
|
output.add_artifact(TraceArtifact::new_parse_trace(trace));
|
2017-08-31 20:59:43 -07:00
|
|
|
output.add_output(format!("Parse error: {:?}\n", err.msg));
|
2017-08-31 16:26:55 -07:00
|
|
|
return output;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-10-01 00:48:08 -07:00
|
|
|
match self.state.type_check(&ast) {
|
|
|
|
TypeCheck::OK => (),
|
|
|
|
TypeCheck::Error(s) => {
|
|
|
|
output.add_artifact(TraceArtifact::new("type_check", s));
|
|
|
|
output.add_output(format!("Type error"));
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-30 23:30:02 -07:00
|
|
|
let evaluation_output = self.state.evaluate(ast);
|
2017-08-31 20:59:43 -07:00
|
|
|
output.add_output(evaluation_output);
|
|
|
|
return output;
|
2017-08-29 04:15:31 -07:00
|
|
|
}
|
|
|
|
}
|