2017-10-23 00:45:01 -07:00
|
|
|
use itertools::Itertools;
|
2017-11-02 02:45:26 -07:00
|
|
|
use schala_lib::{ProgrammingLanguageInterface, EvalOptions, TraceArtifact, ReplOutput};
|
2017-10-23 00:45:01 -07:00
|
|
|
|
2018-02-23 03:04:19 -08:00
|
|
|
macro_rules! bx {
|
|
|
|
($e:expr) => { Box::new($e) }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-23 01:58:06 -08:00
|
|
|
mod tokenizing;
|
2017-10-23 00:45:01 -07:00
|
|
|
mod parsing;
|
2018-02-21 02:31:28 -08:00
|
|
|
//mod type_check;
|
|
|
|
mod typechecking;
|
2017-10-23 00:45:01 -07:00
|
|
|
mod eval;
|
|
|
|
|
2018-02-21 02:31:28 -08:00
|
|
|
use self::typechecking::{TypeContext};
|
2017-10-23 00:45:01 -07:00
|
|
|
|
|
|
|
pub struct Schala {
|
|
|
|
state: eval::ReplState,
|
|
|
|
type_context: TypeContext
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Schala {
|
|
|
|
pub fn new() -> Schala {
|
|
|
|
Schala {
|
|
|
|
state: eval::ReplState::new(),
|
|
|
|
type_context: TypeContext::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ProgrammingLanguageInterface for Schala {
|
|
|
|
fn get_language_name(&self) -> String {
|
|
|
|
"Schala".to_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_source_file_suffix(&self) -> String {
|
|
|
|
format!("schala")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn evaluate_in_repl(&mut self, input: &str, options: &EvalOptions) -> ReplOutput {
|
|
|
|
let mut output = ReplOutput::default();
|
2018-02-23 01:58:06 -08:00
|
|
|
let tokens = tokenizing::tokenize(input);
|
2017-10-23 00:45:01 -07:00
|
|
|
if options.debug_tokens {
|
|
|
|
let token_string = tokens.iter().map(|t| format!("{:?}<{}>", t.token_type, t.offset)).join(", ");
|
|
|
|
output.add_artifact(TraceArtifact::new("tokens", format!("{:?}", token_string)));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let ast = match parsing::parse(tokens) {
|
|
|
|
(Ok(ast), trace) => {
|
|
|
|
if options.debug_parse {
|
|
|
|
output.add_artifact(TraceArtifact::new_parse_trace(trace));
|
|
|
|
output.add_artifact(TraceArtifact::new("ast", format!("{:?}", ast)));
|
|
|
|
}
|
|
|
|
ast
|
|
|
|
},
|
|
|
|
(Err(err), trace) => {
|
|
|
|
output.add_artifact(TraceArtifact::new_parse_trace(trace));
|
|
|
|
output.add_output(format!("Parse error: {:?}\n", err.msg));
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-21 02:31:28 -08:00
|
|
|
match self.type_context.type_check_ast(&ast) {
|
|
|
|
Ok(ty) => {
|
|
|
|
output.add_artifact(TraceArtifact::new("type_check", format!("{:?}", ty)));
|
|
|
|
},
|
|
|
|
Err(msg) => {
|
|
|
|
output.add_artifact(TraceArtifact::new("type_check", msg));
|
|
|
|
output.add_output(format!("Type error"));
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-10-23 00:45:01 -07:00
|
|
|
self.type_context.add_symbols(&ast);
|
|
|
|
|
|
|
|
if options.debug_symbol_table {
|
|
|
|
let text = self.type_context.debug_symbol_table();
|
|
|
|
output.add_artifact(TraceArtifact::new("symbol_table", text));
|
|
|
|
}
|
|
|
|
|
|
|
|
match self.type_context.type_check(&ast) {
|
|
|
|
Ok(ty) => {
|
|
|
|
output.add_artifact(TraceArtifact::new("type_check", format!("type: {:?}", ty)));
|
|
|
|
},
|
|
|
|
Err(msg) => {
|
|
|
|
output.add_artifact(TraceArtifact::new("type_check", msg));
|
|
|
|
output.add_output(format!("Type error"));
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
}
|
2018-02-21 02:31:28 -08:00
|
|
|
*/
|
2017-10-23 00:45:01 -07:00
|
|
|
|
2018-01-08 05:21:04 -08:00
|
|
|
let evaluation_outputs = self.state.evaluate(ast);
|
|
|
|
let text_output: String = evaluation_outputs.into_iter().intersperse(format!("\n")).collect();
|
|
|
|
output.add_output(text_output);
|
2017-10-23 00:45:01 -07:00
|
|
|
return output;
|
|
|
|
}
|
|
|
|
}
|