2017-10-30 20:06:20 -07:00
|
|
|
#![feature(link_args)]
|
|
|
|
#![feature(advanced_slice_patterns, slice_patterns, box_patterns, box_syntax)]
|
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate getopts;
|
2018-03-01 02:43:11 -08:00
|
|
|
extern crate rustyline;
|
2017-10-30 20:06:20 -07:00
|
|
|
extern crate itertools;
|
2018-03-20 20:29:07 -07:00
|
|
|
|
2017-10-30 20:06:20 -07:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate maplit;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
extern crate serde_json;
|
|
|
|
extern crate rocket;
|
|
|
|
extern crate rocket_contrib;
|
|
|
|
extern crate includedir;
|
|
|
|
extern crate phf;
|
|
|
|
|
|
|
|
use std::path::Path;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::io::{Read, Write};
|
|
|
|
use std::process::exit;
|
|
|
|
use std::default::Default;
|
|
|
|
|
2018-03-01 02:43:11 -08:00
|
|
|
use rustyline::error::ReadlineError;
|
|
|
|
use rustyline::Editor;
|
|
|
|
|
2017-11-02 02:45:26 -07:00
|
|
|
mod language;
|
2017-10-30 20:06:20 -07:00
|
|
|
mod webapp;
|
2017-10-30 22:18:02 -07:00
|
|
|
pub mod llvm_wrap;
|
2017-10-30 20:06:20 -07:00
|
|
|
|
2018-03-23 18:56:09 -07:00
|
|
|
const VERSION_STRING: &'static str = "0.1.0";
|
|
|
|
|
2017-10-30 20:06:20 -07:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/static.rs"));
|
|
|
|
|
2018-03-20 21:13:34 -07:00
|
|
|
pub use language::{LLVMCodeString, ProgrammingLanguageInterface, EvalOptions, ExecutionMethod, TraceArtifact, LanguageOutput, FinishedComputation, UnfinishedComputation};
|
2017-10-30 22:18:02 -07:00
|
|
|
pub type PLIGenerator = Box<Fn() -> Box<ProgrammingLanguageInterface> + Send + Sync>;
|
2017-10-30 20:06:20 -07:00
|
|
|
|
2018-03-23 19:04:32 -07:00
|
|
|
pub fn repl_main(generators: Vec<PLIGenerator>) {
|
2017-10-30 20:06:20 -07:00
|
|
|
let languages: Vec<Box<ProgrammingLanguageInterface>> = generators.iter().map(|x| x()).collect();
|
|
|
|
|
|
|
|
let option_matches = program_options().parse(std::env::args()).unwrap_or_else(|e| {
|
|
|
|
println!("{:?}", e);
|
|
|
|
exit(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
if option_matches.opt_present("list-languages") {
|
|
|
|
for lang in languages {
|
|
|
|
println!("{}", lang.get_language_name());
|
|
|
|
}
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if option_matches.opt_present("help") {
|
|
|
|
println!("{}", program_options().usage("Schala metainterpreter"));
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if option_matches.opt_present("webapp") {
|
|
|
|
webapp::web_main(generators);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
let language_names: Vec<String> = languages.iter().map(|lang| {lang.get_language_name()}).collect();
|
|
|
|
let initial_index: usize =
|
|
|
|
option_matches.opt_str("lang")
|
2017-12-09 18:19:07 -08:00
|
|
|
.and_then(|lang| { language_names.iter().position(|x| { x.to_lowercase() == lang.to_lowercase() }) })
|
2017-10-30 20:06:20 -07:00
|
|
|
.unwrap_or(0);
|
|
|
|
|
|
|
|
let mut options = EvalOptions::default();
|
2018-03-20 20:29:07 -07:00
|
|
|
options.execution_method = match option_matches.opt_str("eval-style") {
|
|
|
|
Some(ref s) if s == "compile" => ExecutionMethod::Compile,
|
|
|
|
_ => ExecutionMethod::Interpret,
|
2017-10-30 20:06:20 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
match option_matches.free[..] {
|
|
|
|
[] | [_] => {
|
|
|
|
let mut repl = Repl::new(languages, initial_index);
|
|
|
|
repl.run();
|
|
|
|
}
|
|
|
|
[_, ref filename, _..] => {
|
|
|
|
|
|
|
|
run_noninteractive(filename, languages, options);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_noninteractive(filename: &str, languages: Vec<Box<ProgrammingLanguageInterface>>, options: EvalOptions) {
|
|
|
|
let path = Path::new(filename);
|
|
|
|
let ext = path.extension().and_then(|e| e.to_str()).unwrap_or_else(|| {
|
|
|
|
println!("Source file lacks extension");
|
|
|
|
exit(1);
|
|
|
|
});
|
|
|
|
let mut language = Box::new(languages.into_iter().find(|lang| lang.get_source_file_suffix() == ext)
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
println!("Extension .{} not recognized", ext);
|
|
|
|
exit(1);
|
|
|
|
}));
|
|
|
|
|
|
|
|
let mut source_file = File::open(path).unwrap();
|
|
|
|
let mut buffer = String::new();
|
|
|
|
|
|
|
|
source_file.read_to_string(&mut buffer).unwrap();
|
|
|
|
|
2018-03-20 20:29:07 -07:00
|
|
|
match options.execution_method {
|
|
|
|
ExecutionMethod::Compile => {
|
|
|
|
/*
|
2017-10-30 20:06:20 -07:00
|
|
|
let llvm_bytecode = language.compile(&buffer);
|
|
|
|
compilation_sequence(llvm_bytecode, filename);
|
2018-03-20 20:29:07 -07:00
|
|
|
*/
|
|
|
|
panic!("Not ready to go yet");
|
|
|
|
},
|
|
|
|
ExecutionMethod::Interpret => {
|
|
|
|
let output = language.execute(&buffer, &options);
|
|
|
|
output.to_noninteractive().map(|text| println!("{}", text));
|
2018-03-11 12:56:51 -07:00
|
|
|
}
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Repl {
|
|
|
|
options: EvalOptions,
|
|
|
|
languages: Vec<Box<ProgrammingLanguageInterface>>,
|
|
|
|
current_language_index: usize,
|
|
|
|
interpreter_directive_sigil: char,
|
2018-03-01 02:43:11 -08:00
|
|
|
console: rustyline::Editor<()>,
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Repl {
|
|
|
|
fn new(languages: Vec<Box<ProgrammingLanguageInterface>>, initial_index: usize) -> Repl {
|
|
|
|
let i = if initial_index < languages.len() { initial_index } else { 0 };
|
|
|
|
|
2018-03-01 02:43:11 -08:00
|
|
|
let console = Editor::<()>::new();
|
|
|
|
|
2017-10-30 20:06:20 -07:00
|
|
|
Repl {
|
|
|
|
options: Repl::get_options(),
|
|
|
|
languages: languages,
|
|
|
|
current_language_index: i,
|
|
|
|
interpreter_directive_sigil: '.',
|
2018-03-01 02:43:11 -08:00
|
|
|
console
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_options() -> EvalOptions {
|
|
|
|
File::open(".schala_repl")
|
|
|
|
.and_then(|mut file| {
|
|
|
|
let mut contents = String::new();
|
|
|
|
file.read_to_string(&mut contents)?;
|
|
|
|
Ok(contents)
|
|
|
|
})
|
|
|
|
.and_then(|contents| {
|
|
|
|
let options: EvalOptions = serde_json::from_str(&contents)?;
|
|
|
|
Ok(options)
|
|
|
|
}).unwrap_or(EvalOptions::default())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn save_options(&self) {
|
|
|
|
let ref options = self.options;
|
|
|
|
let read = File::create(".schala_repl")
|
|
|
|
.and_then(|mut file| {
|
|
|
|
let buf = serde_json::to_string(options).unwrap();
|
|
|
|
file.write_all(buf.as_bytes())
|
|
|
|
});
|
|
|
|
|
|
|
|
if let Err(err) = read {
|
|
|
|
println!("Error saving .schala_repl file {}", err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(&mut self) {
|
2018-03-23 18:56:09 -07:00
|
|
|
println!("Schala MetaInterpreter version {}", VERSION_STRING);
|
2017-12-07 20:08:31 -08:00
|
|
|
|
2018-03-01 02:49:14 -08:00
|
|
|
self.console.get_history().load(".schala_history").unwrap_or(());
|
|
|
|
|
2017-10-30 20:06:20 -07:00
|
|
|
loop {
|
2017-12-07 20:08:31 -08:00
|
|
|
let language_name = self.languages[self.current_language_index].get_language_name();
|
|
|
|
let prompt_str = format!("{} >> ", language_name);
|
|
|
|
|
2018-03-01 02:43:11 -08:00
|
|
|
match self.console.readline(&prompt_str) {
|
|
|
|
Err(ReadlineError::Eof) | Err(ReadlineError::Interrupted) => break,
|
2017-10-30 20:06:20 -07:00
|
|
|
Err(e) => {
|
|
|
|
println!("Terminal read error: {}", e);
|
|
|
|
},
|
2018-03-01 02:43:11 -08:00
|
|
|
Ok(ref input) => {
|
|
|
|
self.console.add_history_entry(input);
|
2017-10-30 20:06:20 -07:00
|
|
|
if self.handle_interpreter_directive(input) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let output = self.input_handler(input);
|
|
|
|
println!("=> {}", output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-01 02:49:14 -08:00
|
|
|
self.console.get_history().save(".schala_history").unwrap_or(());
|
2018-02-11 16:28:17 -08:00
|
|
|
self.save_options();
|
2017-10-30 20:06:20 -07:00
|
|
|
println!("Exiting...");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn input_handler(&mut self, input: &str) -> String {
|
|
|
|
let ref mut language = self.languages[self.current_language_index];
|
2018-03-20 20:29:07 -07:00
|
|
|
let interpreter_output = language.execute(input, &self.options);
|
|
|
|
interpreter_output.to_repl()
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn handle_interpreter_directive(&mut self, input: &str) -> bool {
|
|
|
|
match input.chars().nth(0) {
|
|
|
|
Some(ch) if ch == self.interpreter_directive_sigil => (),
|
|
|
|
_ => return false
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut iter = input.chars();
|
|
|
|
iter.next();
|
|
|
|
let trimmed_sigil: &str = iter.as_str();
|
|
|
|
|
|
|
|
let commands: Vec<&str> = trimmed_sigil
|
|
|
|
.split_whitespace()
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let cmd: &str = match commands.get(0).clone() {
|
|
|
|
None => return true,
|
|
|
|
Some(s) => s
|
|
|
|
};
|
|
|
|
|
|
|
|
match cmd {
|
|
|
|
"exit" | "quit" => {
|
|
|
|
self.save_options();
|
|
|
|
exit(0)
|
|
|
|
},
|
|
|
|
"help" => {
|
|
|
|
println!("Commands:");
|
|
|
|
println!("exit | quit");
|
2017-12-09 13:38:55 -08:00
|
|
|
println!("lang(uage) [go|show|next|previous]");
|
2017-10-30 20:06:20 -07:00
|
|
|
println!("set [show|hide] [tokens|parse|symbols|eval|llvm]");
|
|
|
|
}
|
2017-12-09 13:38:55 -08:00
|
|
|
"lang" | "language" => {
|
2017-10-30 20:06:20 -07:00
|
|
|
match commands.get(1) {
|
|
|
|
Some(&"show") => {
|
|
|
|
for (i, lang) in self.languages.iter().enumerate() {
|
|
|
|
if i == self.current_language_index {
|
|
|
|
println!("* {}", lang.get_language_name());
|
|
|
|
} else {
|
|
|
|
println!("{}", lang.get_language_name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-12-09 13:38:55 -08:00
|
|
|
Some(&"go") => {
|
|
|
|
match commands.get(2) {
|
|
|
|
None => println!("Must specify a language name"),
|
|
|
|
Some(&desired_name) => {
|
|
|
|
for (i, _) in self.languages.iter().enumerate() {
|
|
|
|
let lang_name = self.languages[i].get_language_name();
|
|
|
|
if lang_name.to_lowercase() == desired_name.to_lowercase() {
|
|
|
|
self.current_language_index = i;
|
|
|
|
println!("Switching to {}", self.languages[self.current_language_index].get_language_name());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
println!("Language {} not found", desired_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-10-30 20:06:20 -07:00
|
|
|
Some(&"next") => {
|
|
|
|
self.current_language_index = (self.current_language_index + 1) % self.languages.len();
|
|
|
|
println!("Switching to {}", self.languages[self.current_language_index].get_language_name());
|
|
|
|
}
|
|
|
|
Some(&"prev") | Some(&"previous") => {
|
|
|
|
self.current_language_index = if self.current_language_index == 0 { self.languages.len() - 1 } else { self.current_language_index - 1 };
|
|
|
|
println!("Switching to {}", self.languages[self.current_language_index].get_language_name());
|
|
|
|
},
|
|
|
|
Some(e) => println!("Bad `lang` argument: {}", e),
|
|
|
|
None => println!("`lang` - valid arguments `show`, `next`, `prev`|`previous`"),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"set" => {
|
|
|
|
let show = match commands.get(1) {
|
|
|
|
Some(&"show") => true,
|
|
|
|
Some(&"hide") => false,
|
|
|
|
Some(e) => {
|
|
|
|
println!("Bad `set` argument: {}", e);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
println!("`set` - valid arguments `show {{option}}`, `hide {{option}}`");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
match commands.get(2) {
|
2018-03-20 20:29:07 -07:00
|
|
|
Some(&"tokens") => self.options.debug.tokens = show,
|
|
|
|
Some(&"parse") => self.options.debug.parse_tree = show,
|
|
|
|
Some(&"ast") => self.options.debug.ast = show,
|
|
|
|
Some(&"symbols") => self.options.debug.symbol_table = show,
|
|
|
|
Some(&"llvm") => self.options.debug.llvm_ir = show,
|
2017-10-30 20:06:20 -07:00
|
|
|
Some(e) => {
|
|
|
|
println!("Bad `show`/`hide` argument: {}", e);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
println!("`show`/`hide` requires an argument");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
e => println!("Unknown command: {}", e)
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-20 21:13:34 -07:00
|
|
|
/*
|
2017-10-30 20:06:20 -07:00
|
|
|
pub fn compilation_sequence(llvm_code: LLVMCodeString, sourcefile: &str) {
|
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
let ll_filename = "out.ll";
|
|
|
|
let obj_filename = "out.o";
|
|
|
|
let q: Vec<&str> = sourcefile.split('.').collect();
|
|
|
|
let bin_filename = match &q[..] {
|
|
|
|
&[name, "maaru"] => name,
|
|
|
|
_ => panic!("Bad filename {}", sourcefile),
|
|
|
|
};
|
|
|
|
|
|
|
|
let LLVMCodeString(llvm_str) = llvm_code;
|
|
|
|
|
|
|
|
println!("Compilation process finished for {}", ll_filename);
|
|
|
|
File::create(ll_filename)
|
|
|
|
.and_then(|mut f| f.write_all(llvm_str.as_bytes()))
|
|
|
|
.expect("Error writing file");
|
|
|
|
|
|
|
|
let llc_output = Command::new("llc")
|
|
|
|
.args(&["-filetype=obj", ll_filename, "-o", obj_filename])
|
|
|
|
.output()
|
|
|
|
.expect("Failed to run llc");
|
|
|
|
|
|
|
|
|
|
|
|
if !llc_output.status.success() {
|
|
|
|
println!("{}", String::from_utf8_lossy(&llc_output.stderr));
|
|
|
|
}
|
|
|
|
|
|
|
|
let gcc_output = Command::new("gcc")
|
|
|
|
.args(&["-o", bin_filename, &obj_filename])
|
|
|
|
.output()
|
|
|
|
.expect("failed to run gcc");
|
|
|
|
|
|
|
|
if !gcc_output.status.success() {
|
|
|
|
println!("{}", String::from_utf8_lossy(&gcc_output.stdout));
|
|
|
|
println!("{}", String::from_utf8_lossy(&gcc_output.stderr));
|
|
|
|
}
|
|
|
|
|
|
|
|
for filename in [obj_filename].iter() {
|
|
|
|
Command::new("rm")
|
|
|
|
.arg(filename)
|
|
|
|
.output()
|
|
|
|
.expect(&format!("failed to run rm {}", filename));
|
|
|
|
}
|
|
|
|
}
|
2018-03-20 21:13:34 -07:00
|
|
|
*/
|
2017-10-30 20:06:20 -07:00
|
|
|
|
|
|
|
fn program_options() -> getopts::Options {
|
|
|
|
let mut options = getopts::Options::new();
|
|
|
|
options.optopt("s",
|
|
|
|
"eval-style",
|
|
|
|
"Specify whether to compile (if supported) or interpret the language. If not specified, the default is language-specific",
|
|
|
|
"[compile|interpret]"
|
|
|
|
);
|
|
|
|
options.optflag("",
|
|
|
|
"list-languages",
|
|
|
|
"Show a list of all supported languages");
|
|
|
|
options.optopt("l",
|
|
|
|
"lang",
|
|
|
|
"Start up REPL in a language",
|
|
|
|
"LANGUAGE");
|
|
|
|
options.optflag("h",
|
|
|
|
"help",
|
|
|
|
"Show help text");
|
|
|
|
options.optflag("w",
|
|
|
|
"webapp",
|
|
|
|
"Start up web interpreter");
|
|
|
|
options
|
|
|
|
}
|