2017-08-29 00:28:19 -07:00
|
|
|
pub mod tokenizer;
|
|
|
|
pub mod parser;
|
|
|
|
pub mod eval;
|
|
|
|
pub mod compilation;
|
2017-02-03 11:34:26 -08:00
|
|
|
|
2017-10-30 22:18:02 -07:00
|
|
|
use schala_lib::language::{ProgrammingLanguageInterface, EvalOptions, ReplOutput, TraceArtifact, LLVMCodeString};
|
2017-01-25 20:09:51 -08:00
|
|
|
|
2017-08-29 00:28:19 -07:00
|
|
|
pub use self::eval::Evaluator as MaaruEvaluator;
|
2017-01-25 20:09:51 -08:00
|
|
|
|
2017-08-31 00:02:17 -07:00
|
|
|
pub struct Maaru<'a> {
|
2017-08-30 19:15:04 -07:00
|
|
|
evaluator: MaaruEvaluator<'a>
|
|
|
|
}
|
|
|
|
|
2017-08-31 00:02:17 -07:00
|
|
|
impl<'a> Maaru<'a> {
|
|
|
|
pub fn new() -> Maaru<'a> {
|
|
|
|
Maaru {
|
2017-08-30 19:15:04 -07:00
|
|
|
evaluator: MaaruEvaluator::new(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-31 00:02:17 -07:00
|
|
|
impl<'a> ProgrammingLanguageInterface for Maaru<'a> {
|
2017-08-30 19:15:04 -07:00
|
|
|
fn get_language_name(&self) -> String {
|
|
|
|
"Maaru".to_string()
|
|
|
|
}
|
2017-10-02 23:07:05 -07:00
|
|
|
fn get_source_file_suffix(&self) -> String {
|
|
|
|
format!("maaru")
|
|
|
|
}
|
2017-08-30 19:15:04 -07:00
|
|
|
|
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-08-30 19:15:04 -07:00
|
|
|
let tokens = match tokenizer::tokenize(input) {
|
|
|
|
Ok(tokens) => {
|
|
|
|
if options.debug_tokens {
|
2017-08-31 20:59:43 -07:00
|
|
|
output.add_artifact(TraceArtifact::new("tokens", format!("{:?}", tokens)));
|
2017-08-30 19:15:04 -07:00
|
|
|
}
|
|
|
|
tokens
|
|
|
|
},
|
|
|
|
Err(err) => {
|
2017-08-31 20:59:43 -07:00
|
|
|
output.add_output(format!("Tokenization error: {:?}\n", err.msg));
|
2017-08-30 19:15:04 -07:00
|
|
|
return output;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let ast = match parser::parse(&tokens, &[]) {
|
|
|
|
Ok(ast) => {
|
|
|
|
if options.debug_parse {
|
2017-08-31 20:59:43 -07:00
|
|
|
output.add_artifact(TraceArtifact::new("ast", format!("{:?}", ast)));
|
2017-08-30 19:15:04 -07:00
|
|
|
}
|
|
|
|
ast
|
|
|
|
},
|
|
|
|
Err(err) => {
|
2017-08-31 20:59:43 -07:00
|
|
|
output.add_output(format!("Parse error: {:?}\n", err.msg));
|
2017-08-30 19:15:04 -07:00
|
|
|
return output;
|
|
|
|
}
|
|
|
|
};
|
2017-08-31 20:59:43 -07:00
|
|
|
let mut evaluation_output = String::new();
|
|
|
|
for s in self.evaluator.run(ast).iter() {
|
|
|
|
evaluation_output.push_str(s);
|
|
|
|
}
|
|
|
|
output.add_output(evaluation_output);
|
2017-08-30 19:15:04 -07:00
|
|
|
return output;
|
|
|
|
}
|
2017-08-31 19:15:32 -07:00
|
|
|
|
|
|
|
fn can_compile(&self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compile(&mut self, input: &str) -> LLVMCodeString {
|
|
|
|
let tokens = match tokenizer::tokenize(input) {
|
|
|
|
Ok(tokens) => tokens,
|
|
|
|
Err(err) => {
|
|
|
|
let msg = format!("Tokenization error: {:?}\n", err.msg);
|
|
|
|
panic!("{}", msg);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let ast = match parser::parse(&tokens, &[]) {
|
|
|
|
Ok(ast) => ast,
|
|
|
|
Err(err) => {
|
|
|
|
let msg = format!("Parse error: {:?}\n", err.msg);
|
|
|
|
panic!("{}", msg);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
compilation::compile_ast(ast)
|
|
|
|
}
|
2017-08-30 19:15:04 -07:00
|
|
|
}
|