2020-11-23 00:47:27 +01:00
|
|
|
use std::env;
|
2020-11-23 00:59:03 +01:00
|
|
|
use std::fs;
|
|
|
|
use std::io;
|
|
|
|
use std::io::Write;
|
|
|
|
use std::process;
|
2020-11-23 00:47:27 +01:00
|
|
|
|
2020-11-23 02:00:02 +01:00
|
|
|
mod errors;
|
2020-11-23 00:59:03 +01:00
|
|
|
mod interpreter;
|
2020-11-28 19:53:51 +01:00
|
|
|
mod parser;
|
2021-01-16 13:11:36 +01:00
|
|
|
mod resolver;
|
2020-11-23 02:00:02 +01:00
|
|
|
mod scanner;
|
2020-11-23 00:47:27 +01:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut args = env::args();
|
|
|
|
|
2020-11-23 00:59:03 +01:00
|
|
|
if args.len() > 2 {
|
2020-11-23 00:47:27 +01:00
|
|
|
println!("Usage: rlox [script]");
|
|
|
|
process::exit(1);
|
2020-11-23 00:59:03 +01:00
|
|
|
} else if let Some(file) = args.nth(1) {
|
2020-11-23 00:47:27 +01:00
|
|
|
run_file(&file);
|
|
|
|
} else {
|
|
|
|
run_prompt();
|
|
|
|
}
|
|
|
|
}
|
2020-11-23 00:59:03 +01:00
|
|
|
|
|
|
|
// Run Lox code from a file and print results to stdout
|
|
|
|
fn run_file(file: &str) {
|
|
|
|
let contents = fs::read_to_string(file).expect("failed to read the input file");
|
2021-01-14 16:36:06 +01:00
|
|
|
let mut lox = interpreter::Interpreter::create();
|
|
|
|
run(&mut lox, &contents);
|
2020-11-23 00:59:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Evaluate Lox code interactively in a shitty REPL.
|
|
|
|
fn run_prompt() {
|
|
|
|
let mut line = String::new();
|
2021-01-14 16:36:06 +01:00
|
|
|
let mut lox = interpreter::Interpreter::create();
|
2020-11-23 00:59:03 +01:00
|
|
|
|
|
|
|
loop {
|
|
|
|
print!("> ");
|
|
|
|
io::stdout().flush().unwrap();
|
|
|
|
io::stdin()
|
|
|
|
.read_line(&mut line)
|
|
|
|
.expect("failed to read user input");
|
2021-01-14 16:36:06 +01:00
|
|
|
run(&mut lox, &line);
|
2020-11-28 16:58:46 +01:00
|
|
|
line.clear();
|
2020-11-23 00:59:03 +01:00
|
|
|
}
|
|
|
|
}
|
2020-12-31 11:27:10 +01:00
|
|
|
|
2021-01-14 16:36:06 +01:00
|
|
|
fn run(lox: &mut interpreter::Interpreter, code: &str) {
|
2020-12-31 11:27:10 +01:00
|
|
|
let chars: Vec<char> = code.chars().collect();
|
|
|
|
|
2021-01-16 13:11:36 +01:00
|
|
|
let result = scanner::scan(&chars)
|
|
|
|
.and_then(|tokens| parser::parse(tokens))
|
2021-01-17 09:59:51 +01:00
|
|
|
.and_then(|program| lox.interpret(program).map_err(|e| vec![e]));
|
2021-01-16 13:11:36 +01:00
|
|
|
|
|
|
|
if let Err(errors) = result {
|
|
|
|
report_errors(errors);
|
2020-12-31 11:27:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn report_errors(errors: Vec<errors::Error>) {
|
|
|
|
for error in errors {
|
|
|
|
errors::report(&error);
|
|
|
|
}
|
|
|
|
}
|