Réorganisation avant l'ajout de l'interpreteur.
This commit is contained in:
60
src/main.rs
60
src/main.rs
@@ -1,8 +1,11 @@
|
||||
use std::env;
|
||||
use std::{env, fs, io};
|
||||
use std::io::Write;
|
||||
use std::process;
|
||||
use crate::astprinter::ASTPrinter;
|
||||
use crate::expr::ExprVisitor;
|
||||
use crate::parser::Parser;
|
||||
|
||||
mod rlox_interpreter;
|
||||
|
||||
mod interpreter;
|
||||
mod scanner;
|
||||
mod token;
|
||||
mod token_type;
|
||||
@@ -10,7 +13,7 @@ mod expr;
|
||||
mod astprinter;
|
||||
mod parser;
|
||||
|
||||
use crate::rlox_interpreter::RLoxInterpreter;
|
||||
use crate::scanner::Scanner;
|
||||
|
||||
// Exit codes from #include <sysexits.h>
|
||||
const EX_OK: i32 = 0;
|
||||
@@ -21,8 +24,8 @@ fn main() {
|
||||
let args: Vec<String> = env::args().collect();
|
||||
|
||||
let exit_code = match args.len() {
|
||||
1 => { RLoxInterpreter::new().run_prompt() } ,
|
||||
2 => { RLoxInterpreter::new().run_file(&args[1]) },
|
||||
1 => { run_prompt() } ,
|
||||
2 => { run_file(&args[1]) },
|
||||
_ => {
|
||||
println!("Usage : rlox [script]");
|
||||
EX_USAGE
|
||||
@@ -32,6 +35,51 @@ fn main() {
|
||||
process::exit(exit_code);
|
||||
}
|
||||
|
||||
pub fn run_file(file_path: &str) -> i32 {
|
||||
let contents = fs::read_to_string(file_path)
|
||||
.expect(&format!("Should have been able to read the file {file_path}"));
|
||||
|
||||
run(contents)
|
||||
}
|
||||
|
||||
pub fn run_prompt() -> i32 {
|
||||
let mut exit_code = EX_OK;
|
||||
loop {
|
||||
print!("> ");
|
||||
io::stdout().flush().expect("Unable to flush stdout");
|
||||
let mut line = String::new();
|
||||
|
||||
io::stdin()
|
||||
.read_line(&mut line)
|
||||
.expect("Failed to read line");
|
||||
|
||||
if line.trim().is_empty() {
|
||||
break;
|
||||
}
|
||||
|
||||
exit_code = run(line);
|
||||
}
|
||||
exit_code
|
||||
}
|
||||
|
||||
fn run(src: String) -> i32 {
|
||||
let mut scanner = Scanner::new( src );
|
||||
scanner.scan_tokens();
|
||||
|
||||
let mut parser = Parser::new( scanner.tokens );
|
||||
match parser.parse() {
|
||||
Some(expr) => {
|
||||
let mut printer = ASTPrinter { depth: 0 };
|
||||
printer.visit_expr(&expr);
|
||||
println!();
|
||||
},
|
||||
None => println!("An error occurred while parsing expression.")
|
||||
}
|
||||
|
||||
EX_OK
|
||||
}
|
||||
|
||||
|
||||
// Implémentations de référence :
|
||||
// https://github.com/munificent/craftinginterpreters/wiki/Lox-implementations#rust
|
||||
|
||||
|
||||
Reference in New Issue
Block a user