2017-10-30 20:06:20 -07:00
|
|
|
#![feature(link_args)]
|
2018-04-03 23:24:13 -07:00
|
|
|
#![feature(slice_patterns, box_patterns, box_syntax)]
|
2017-10-30 20:06:20 -07:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate getopts;
|
2018-07-02 00:20:52 -07:00
|
|
|
extern crate linefeed;
|
2017-10-30 20:06:20 -07:00
|
|
|
extern crate itertools;
|
2018-03-24 15:14:24 -07:00
|
|
|
extern crate colored;
|
2018-03-20 20:29:07 -07:00
|
|
|
|
2017-10-30 20:06:20 -07:00
|
|
|
#[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-25 00:09:51 -07:00
|
|
|
use std::fmt::Write as FmtWrite;
|
2017-10-30 20:06:20 -07:00
|
|
|
|
2018-05-05 22:36:04 -07:00
|
|
|
use colored::*;
|
2018-05-01 02:24:50 -07:00
|
|
|
use itertools::Itertools;
|
2018-03-01 02:43:11 -08:00
|
|
|
|
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-07-03 03:02:16 -07:00
|
|
|
pub use language::{LLVMCodeString, ProgrammingLanguageInterface, EvalOptions,
|
2018-07-07 18:08:21 -07:00
|
|
|
ExecutionMethod, TraceArtifact, FinishedComputation, UnfinishedComputation, PassDebugDescriptor, PassDescriptor};
|
2018-07-03 03:02:16 -07:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2018-03-27 00:50:31 -07:00
|
|
|
let mut options = EvalOptions::default();
|
2018-05-07 02:38:44 -07:00
|
|
|
let debug_passes = if let Some(opts) = option_matches.opt_str("debug") {
|
|
|
|
let output: Vec<String> = opts.split_terminator(",").map(|s| s.to_string()).collect();
|
|
|
|
output
|
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
};
|
2018-03-27 00:50:31 -07:00
|
|
|
|
2017-10-30 20:06:20 -07:00
|
|
|
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);
|
|
|
|
|
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, _..] => {
|
|
|
|
|
2018-05-07 02:38:44 -07:00
|
|
|
run_noninteractive(filename, languages, options, debug_passes);
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-07 02:38:44 -07:00
|
|
|
fn run_noninteractive(filename: &str, languages: Vec<Box<ProgrammingLanguageInterface>>, mut options: EvalOptions, debug_passes: Vec<String>) {
|
2017-10-30 20:06:20 -07:00
|
|
|
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-05-07 02:38:44 -07:00
|
|
|
for pass in debug_passes.into_iter() {
|
2018-07-06 03:17:37 -07:00
|
|
|
if let Some(_) = language.get_passes().iter().find(|desc| desc.name == pass) {
|
2018-07-03 03:02:16 -07:00
|
|
|
options.debug_passes.insert(pass, PassDebugDescriptor { opts: vec![] });
|
2018-05-07 02:38:44 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 => {
|
2018-04-29 22:53:17 -07:00
|
|
|
let output = language.execute_pipeline(&buffer, &options);
|
2018-03-20 20:29:07 -07:00
|
|
|
output.to_noninteractive().map(|text| println!("{}", text));
|
2018-03-11 12:56:51 -07:00
|
|
|
}
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-02 01:50:24 -07:00
|
|
|
enum CommandTree {
|
2018-07-02 03:06:12 -07:00
|
|
|
Terminal(String, Option<String>),
|
|
|
|
NonTerminal(String, Vec<CommandTree>, Option<String>),
|
2018-07-02 02:35:48 -07:00
|
|
|
Top(Vec<CommandTree>),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CommandTree {
|
2018-07-02 03:06:12 -07:00
|
|
|
fn term(s: &str, help: Option<&str>) -> CommandTree {
|
|
|
|
CommandTree::Terminal(s.to_string(), help.map(|x| x.to_string()))
|
2018-07-02 02:35:48 -07:00
|
|
|
}
|
|
|
|
fn get_cmd(&self) -> String {
|
|
|
|
match self {
|
2018-07-02 03:06:12 -07:00
|
|
|
CommandTree::Terminal(s, _) => s.to_string(),
|
|
|
|
CommandTree::NonTerminal(s, _, _) => s.to_string(),
|
|
|
|
CommandTree::Top(_) => "".to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn get_help(&self) -> String {
|
|
|
|
match self {
|
|
|
|
CommandTree::Terminal(_, h) => h.as_ref().map(|h| h.clone()).unwrap_or(format!("")),
|
|
|
|
CommandTree::NonTerminal(_, _, h) => h.as_ref().map(|h| h.clone()).unwrap_or(format!("")),
|
2018-07-02 02:35:48 -07:00
|
|
|
CommandTree::Top(_) => "".to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn get_children(&self) -> Vec<String> {
|
|
|
|
match self {
|
2018-07-02 03:06:12 -07:00
|
|
|
CommandTree::Terminal(_, _) => vec![],
|
|
|
|
CommandTree::NonTerminal(_, children, _) => children.iter().map(|x| x.get_cmd()).collect(),
|
2018-07-02 02:35:48 -07:00
|
|
|
CommandTree::Top(children) => children.iter().map(|x| x.get_cmd()).collect(),
|
|
|
|
}
|
|
|
|
}
|
2018-07-02 01:50:24 -07:00
|
|
|
}
|
|
|
|
|
2018-07-02 00:20:52 -07:00
|
|
|
struct TabCompleteHandler {
|
2018-05-07 01:42:19 -07:00
|
|
|
sigil: char,
|
2018-07-02 02:35:48 -07:00
|
|
|
top_level_commands: CommandTree,
|
2018-05-07 01:42:19 -07:00
|
|
|
}
|
|
|
|
|
2018-07-02 01:50:24 -07:00
|
|
|
use linefeed::complete::{Completion, Completer};
|
|
|
|
use linefeed::terminal::Terminal;
|
|
|
|
|
2018-05-07 01:42:19 -07:00
|
|
|
impl TabCompleteHandler {
|
2018-07-02 02:46:07 -07:00
|
|
|
fn new(sigil: char, top_level_commands: CommandTree) -> TabCompleteHandler {
|
2018-07-02 01:50:24 -07:00
|
|
|
TabCompleteHandler {
|
2018-07-02 02:46:07 -07:00
|
|
|
top_level_commands,
|
2018-07-02 01:50:24 -07:00
|
|
|
sigil,
|
|
|
|
}
|
2018-05-07 01:42:19 -07:00
|
|
|
}
|
|
|
|
}
|
2018-05-06 21:29:27 -07:00
|
|
|
|
2018-07-02 01:50:24 -07:00
|
|
|
impl<T: Terminal> Completer<T> for TabCompleteHandler {
|
2018-07-02 02:35:48 -07:00
|
|
|
fn complete(&self, word: &str, prompter: &linefeed::prompter::Prompter<T>, start: usize, _end: usize) -> Option<Vec<Completion>> {
|
2018-07-02 01:50:24 -07:00
|
|
|
let line = prompter.buffer();
|
|
|
|
|
2018-05-07 01:42:19 -07:00
|
|
|
if line.starts_with(&format!("{}", self.sigil)) {
|
2018-07-02 01:50:24 -07:00
|
|
|
let mut words = line[1..(if start == 0 { 1 } else { start })].split_whitespace();
|
|
|
|
let mut completions = Vec::new();
|
2018-07-02 02:35:48 -07:00
|
|
|
let mut command_tree: Option<&CommandTree> = Some(&self.top_level_commands);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
match words.next() {
|
|
|
|
None => {
|
|
|
|
let top = match command_tree {
|
|
|
|
Some(CommandTree::Top(_)) => true,
|
|
|
|
_ => false
|
|
|
|
};
|
|
|
|
let word = if top { word.get(1..).unwrap() } else { word };
|
|
|
|
for cmd in command_tree.map(|x| x.get_children()).unwrap_or(vec![]).into_iter() {
|
|
|
|
if cmd.starts_with(word) {
|
|
|
|
completions.push(Completion {
|
|
|
|
completion: format!("{}{}", if top { ":" } else { "" }, cmd),
|
|
|
|
display: Some(cmd.clone()),
|
|
|
|
suffix: linefeed::complete::Suffix::Some(' ')
|
|
|
|
})
|
|
|
|
}
|
2018-07-02 01:50:24 -07:00
|
|
|
}
|
2018-07-02 02:35:48 -07:00
|
|
|
break;
|
2018-07-02 01:50:24 -07:00
|
|
|
},
|
2018-07-02 02:35:48 -07:00
|
|
|
Some(s) => {
|
|
|
|
let new_ptr: Option<&CommandTree> = command_tree.and_then(|cm| match cm {
|
|
|
|
CommandTree::Top(children) => children.iter().find(|c| c.get_cmd() == s),
|
2018-07-02 03:06:12 -07:00
|
|
|
CommandTree::NonTerminal(_, children, _) => children.iter().find(|c| c.get_cmd() == s),
|
|
|
|
CommandTree::Terminal(_, _) => None,
|
2018-07-02 02:35:48 -07:00
|
|
|
});
|
|
|
|
command_tree = new_ptr;
|
|
|
|
}
|
|
|
|
}
|
2018-07-02 01:50:24 -07:00
|
|
|
}
|
|
|
|
Some(completions)
|
2018-05-07 01:42:19 -07:00
|
|
|
} else {
|
2018-07-02 01:50:24 -07:00
|
|
|
None
|
2018-05-07 01:42:19 -07:00
|
|
|
}
|
2018-05-06 21:29:27 -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-07-02 00:20:52 -07:00
|
|
|
line_reader: linefeed::interface::Interface<linefeed::terminal::DefaultTerminal>,
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Repl {
|
|
|
|
fn new(languages: Vec<Box<ProgrammingLanguageInterface>>, initial_index: usize) -> Repl {
|
2018-07-02 00:20:52 -07:00
|
|
|
use linefeed::Interface;
|
2017-10-30 20:06:20 -07:00
|
|
|
let i = if initial_index < languages.len() { initial_index } else { 0 };
|
|
|
|
|
2018-07-02 00:20:52 -07:00
|
|
|
let line_reader = Interface::new("schala-repl").unwrap();
|
2018-03-01 02:43:11 -08:00
|
|
|
|
2017-10-30 20:06:20 -07:00
|
|
|
Repl {
|
|
|
|
options: Repl::get_options(),
|
|
|
|
languages: languages,
|
|
|
|
current_language_index: i,
|
2018-04-23 19:45:58 -07:00
|
|
|
interpreter_directive_sigil: ':',
|
2018-07-02 00:20:52 -07:00
|
|
|
line_reader
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-01 02:24:50 -07:00
|
|
|
fn get_cur_language(&self) -> &ProgrammingLanguageInterface {
|
|
|
|
self.languages[self.current_language_index].as_ref()
|
|
|
|
}
|
|
|
|
|
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-07-02 00:20:52 -07:00
|
|
|
use linefeed::ReadResult;
|
|
|
|
|
2018-03-23 18:56:09 -07:00
|
|
|
println!("Schala MetaInterpreter version {}", VERSION_STRING);
|
2018-04-23 19:45:58 -07:00
|
|
|
println!("Type {}help for help with the REPL", self.interpreter_directive_sigil);
|
2017-12-07 20:08:31 -08:00
|
|
|
|
2018-07-02 00:20:52 -07:00
|
|
|
self.line_reader.load_history(".schala_history").unwrap_or(());
|
2018-03-01 02:49:14 -08:00
|
|
|
|
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();
|
2018-07-02 17:37:24 -07:00
|
|
|
let directives = self.get_directives();
|
2018-07-02 02:46:07 -07:00
|
|
|
let tab_complete_handler = TabCompleteHandler::new(self.interpreter_directive_sigil, directives);
|
2018-07-02 01:50:24 -07:00
|
|
|
self.line_reader.set_completer(std::sync::Arc::new(tab_complete_handler));
|
|
|
|
|
2017-12-07 20:08:31 -08:00
|
|
|
let prompt_str = format!("{} >> ", language_name);
|
2018-07-02 00:20:52 -07:00
|
|
|
self.line_reader.set_prompt(&prompt_str);
|
2017-12-07 20:08:31 -08:00
|
|
|
|
2018-07-02 00:20:52 -07:00
|
|
|
match self.line_reader.read_line() {
|
2017-10-30 20:06:20 -07:00
|
|
|
Err(e) => {
|
|
|
|
println!("Terminal read error: {}", e);
|
|
|
|
},
|
2018-07-02 00:20:52 -07:00
|
|
|
Ok(ReadResult::Eof) => break,
|
|
|
|
Ok(ReadResult::Signal(_)) => break,
|
|
|
|
Ok(ReadResult::Input(ref input)) => {
|
|
|
|
self.line_reader.add_history_unique(input.to_string());
|
2018-03-25 00:09:51 -07:00
|
|
|
let output = match input.chars().nth(0) {
|
|
|
|
Some(ch) if ch == self.interpreter_directive_sigil => self.handle_interpreter_directive(input),
|
2018-05-11 01:09:11 -07:00
|
|
|
_ => Some(self.input_handler(input)),
|
2018-03-25 00:09:51 -07:00
|
|
|
};
|
|
|
|
if let Some(o) = output {
|
|
|
|
println!("=> {}", o);
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-02 00:20:52 -07:00
|
|
|
self.line_reader.save_history(".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-04-29 00:04:31 -07:00
|
|
|
let interpreter_output = language.execute_pipeline(input, &self.options);
|
2018-03-20 20:29:07 -07:00
|
|
|
interpreter_output.to_repl()
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
|
2018-07-02 17:37:24 -07:00
|
|
|
fn get_directives(&self) -> CommandTree {
|
|
|
|
let ref passes = self.get_cur_language().get_passes();
|
2018-07-02 02:46:07 -07:00
|
|
|
CommandTree::Top(vec![
|
2018-07-02 03:06:12 -07:00
|
|
|
CommandTree::term("exit", Some("exit the REPL")),
|
|
|
|
CommandTree::term("quit", Some("exit the REPL")),
|
2018-07-02 17:37:24 -07:00
|
|
|
CommandTree::term("help", Some("Print this help message")),
|
2018-07-02 02:46:07 -07:00
|
|
|
CommandTree::NonTerminal(format!("debug"), vec![
|
2018-07-02 03:06:12 -07:00
|
|
|
CommandTree::term("passes", None),
|
2018-07-06 03:17:37 -07:00
|
|
|
CommandTree::NonTerminal(format!("show"), passes.iter().map(|p| CommandTree::term(&p.name, None)).collect(), None),
|
|
|
|
CommandTree::NonTerminal(format!("hide"), passes.iter().map(|p| CommandTree::term(&p.name, None)).collect(), None),
|
2018-07-02 17:37:24 -07:00
|
|
|
], Some(format!("show or hide pass info for a given pass, or display the names of all passes"))),
|
2018-07-02 02:46:07 -07:00
|
|
|
CommandTree::NonTerminal(format!("lang"), vec![
|
2018-07-02 03:06:12 -07:00
|
|
|
CommandTree::term("next", None),
|
|
|
|
CommandTree::term("prev", None),
|
|
|
|
CommandTree::NonTerminal(format!("go"), vec![], None)//TODO
|
2018-07-02 17:37:24 -07:00
|
|
|
], Some(format!("switch between languages, or go directly to a langauge by name"))),
|
2018-07-02 02:46:07 -07:00
|
|
|
])
|
|
|
|
}
|
|
|
|
|
2018-04-23 21:33:15 -07:00
|
|
|
fn handle_interpreter_directive(&mut self, input: &str) -> Option<String> {
|
|
|
|
let mut iter = input.chars();
|
|
|
|
iter.next();
|
|
|
|
let commands: Vec<&str> = iter
|
|
|
|
.as_str()
|
|
|
|
.split_whitespace()
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let cmd: &str = match commands.get(0).clone() {
|
|
|
|
None => return None,
|
|
|
|
Some(s) => s
|
|
|
|
};
|
|
|
|
|
|
|
|
match cmd {
|
|
|
|
"exit" | "quit" => {
|
|
|
|
self.save_options();
|
|
|
|
exit(0)
|
|
|
|
},
|
|
|
|
"lang" | "language" => match commands.get(1) {
|
|
|
|
Some(&"show") => {
|
|
|
|
let mut buf = String::new();
|
|
|
|
for (i, lang) in self.languages.iter().enumerate() {
|
|
|
|
write!(buf, "{}{}\n", if i == self.current_language_index { "* "} else { "" }, lang.get_language_name()).unwrap();
|
|
|
|
}
|
|
|
|
Some(buf)
|
|
|
|
},
|
|
|
|
Some(&"go") => match commands.get(2) {
|
|
|
|
None => Some(format!("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;
|
|
|
|
return Some(format!("Switching to {}", self.languages[self.current_language_index].get_language_name()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Some(format!("Language {} not found", desired_name))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Some(&"next") | Some(&"n") => {
|
|
|
|
self.current_language_index = (self.current_language_index + 1) % self.languages.len();
|
|
|
|
Some(format!("Switching to {}", self.languages[self.current_language_index].get_language_name()))
|
|
|
|
},
|
|
|
|
Some(&"previous") | Some(&"p") | Some(&"prev") => {
|
|
|
|
self.current_language_index = if self.current_language_index == 0 { self.languages.len() - 1 } else { self.current_language_index - 1 };
|
|
|
|
Some(format!("Switching to {}", self.languages[self.current_language_index].get_language_name()))
|
|
|
|
},
|
|
|
|
Some(e) => Some(format!("Bad `lang(uage)` argument: {}", e)),
|
|
|
|
None => Some(format!("Valid arguments for `lang(uage)` are `show`, `next`|`n`, `previous`|`prev`|`n`"))
|
|
|
|
},
|
|
|
|
"help" => {
|
|
|
|
let mut buf = String::new();
|
|
|
|
let ref lang = self.languages[self.current_language_index];
|
2018-07-02 17:37:24 -07:00
|
|
|
let directives = match self.get_directives() {
|
|
|
|
CommandTree::Top(children) => children,
|
|
|
|
_ => panic!("Top-level CommandTree not Top")
|
|
|
|
};
|
2018-04-23 21:33:15 -07:00
|
|
|
|
|
|
|
writeln!(buf, "MetaInterpreter options").unwrap();
|
|
|
|
writeln!(buf, "-----------------------").unwrap();
|
2018-07-02 17:37:24 -07:00
|
|
|
|
|
|
|
for directive in directives {
|
|
|
|
let trailer = " ";
|
|
|
|
writeln!(buf, "{}{}- {}", directive.get_cmd(), trailer, directive.get_help()).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
writeln!(buf, "").unwrap();
|
2018-04-23 21:33:15 -07:00
|
|
|
writeln!(buf, "Language-specific help for {}", lang.get_language_name()).unwrap();
|
|
|
|
writeln!(buf, "-----------------------").unwrap();
|
|
|
|
writeln!(buf, "{}", lang.custom_interpreter_directives_help()).unwrap();
|
|
|
|
Some(buf)
|
|
|
|
},
|
2018-05-01 00:38:01 -07:00
|
|
|
"debug" => self.handle_debug(commands),
|
|
|
|
e => self.languages[self.current_language_index]
|
|
|
|
.handle_custom_interpreter_directives(&commands)
|
|
|
|
.or(Some(format!("Unknown command: {}", e)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn handle_debug(&mut self, commands: Vec<&str>) -> Option<String> {
|
2018-05-04 01:58:43 -07:00
|
|
|
let passes = self.get_cur_language().get_passes();
|
2018-05-01 00:38:01 -07:00
|
|
|
match commands.get(1) {
|
2018-05-05 22:36:04 -07:00
|
|
|
Some(&"passes") => Some(
|
|
|
|
passes.into_iter()
|
2018-07-06 03:17:37 -07:00
|
|
|
.map(|desc| {
|
|
|
|
if self.options.debug_passes.contains_key(&desc.name) {
|
2018-05-05 22:36:04 -07:00
|
|
|
let color = "green";
|
2018-07-06 03:17:37 -07:00
|
|
|
format!("*{}", desc.name.color(color))
|
2018-05-05 22:36:04 -07:00
|
|
|
} else {
|
2018-07-06 03:17:37 -07:00
|
|
|
desc.name
|
2018-05-05 22:36:04 -07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.intersperse(format!(" -> "))
|
|
|
|
.collect()),
|
2018-05-01 00:38:01 -07:00
|
|
|
b @ Some(&"show") | b @ Some(&"hide") => {
|
|
|
|
let show = b == Some(&"show");
|
2018-05-03 09:40:11 -07:00
|
|
|
let debug_pass: String = match commands.get(2) {
|
2018-05-01 02:58:29 -07:00
|
|
|
Some(s) => s.to_string(),
|
2018-05-01 00:38:01 -07:00
|
|
|
None => return Some(format!("Must specify a stage to debug")),
|
|
|
|
};
|
2018-07-04 19:46:36 -07:00
|
|
|
let pass_opt = commands.get(3);
|
2018-07-06 03:17:37 -07:00
|
|
|
if let Some(desc) = passes.iter().find(|desc| desc.name == debug_pass) {
|
2018-07-04 19:46:36 -07:00
|
|
|
let mut opts = vec![];
|
|
|
|
if let Some(opt) = pass_opt {
|
|
|
|
opts.push(opt.to_string());
|
|
|
|
}
|
2018-07-06 03:17:37 -07:00
|
|
|
let msg = format!("{} debug for pass {}", if show { "Enabling" } else { "Disabling" }, debug_pass);
|
2018-05-01 18:10:24 -07:00
|
|
|
if show {
|
2018-07-06 03:17:37 -07:00
|
|
|
self.options.debug_passes.insert(desc.name.clone(), PassDebugDescriptor { opts });
|
2018-05-01 18:10:24 -07:00
|
|
|
} else {
|
2018-07-06 03:17:37 -07:00
|
|
|
self.options.debug_passes.remove(&desc.name);
|
2018-05-01 18:10:24 -07:00
|
|
|
}
|
|
|
|
Some(msg)
|
|
|
|
} else {
|
2018-05-03 09:40:11 -07:00
|
|
|
Some(format!("Couldn't find stage: {}", debug_pass))
|
2018-05-01 02:24:50 -07:00
|
|
|
}
|
2018-05-01 00:38:01 -07:00
|
|
|
},
|
|
|
|
_ => Some(format!("Unknown debug command"))
|
|
|
|
}
|
2017-10-30 20:06:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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");
|
2018-03-27 00:50:31 -07:00
|
|
|
options.optopt("d",
|
|
|
|
"debug",
|
|
|
|
"Debug a stage (l = tokenizer, a = AST, r = parse trace, s = symbol table)",
|
|
|
|
"[l|a|r|s]");
|
2017-10-30 20:06:20 -07:00
|
|
|
options
|
|
|
|
}
|