2024-02-23 16:32:47 +00:00
|
|
|
use std::{io::Write, sync::atomic::Ordering};
|
|
|
|
|
|
|
|
use matrix::{value::Value, vm::Interupt};
|
|
|
|
use rustyline::Config;
|
|
|
|
|
2024-02-19 23:38:15 +00:00
|
|
|
use crate::State;
|
|
|
|
|
|
|
|
pub struct Repl<'a> {
|
|
|
|
state: State<'a>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Repl<'a> {
|
|
|
|
|
|
|
|
pub fn new(state: State<'a>) -> Self {
|
|
|
|
Self { state }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn run(&mut self) {
|
2024-02-23 16:32:47 +00:00
|
|
|
|
|
|
|
let interupt = self.state.vm.interupt();
|
|
|
|
ctrlc::set_handler(move || {
|
|
|
|
interupt.store(Interupt::KeyboardInterupt as usize, Ordering::SeqCst);
|
|
|
|
}).unwrap();
|
|
|
|
|
|
|
|
let config = Config::builder()
|
|
|
|
.check_cursor_position(true)
|
|
|
|
.build();
|
|
|
|
let mut rl = rustyline::DefaultEditor::with_config(config).unwrap();
|
2024-02-19 23:38:15 +00:00
|
|
|
loop {
|
|
|
|
let Ok(line) = rl.readline(">> ") else {
|
|
|
|
break;
|
|
|
|
};
|
2024-02-23 16:32:47 +00:00
|
|
|
match self.state.execute(line) {
|
|
|
|
Err(err) => crate::error(err),
|
|
|
|
Ok(val) => {
|
|
|
|
if val != Value::Nil {
|
|
|
|
println!("{val}");
|
|
|
|
}
|
|
|
|
}
|
2024-02-19 23:38:15 +00:00
|
|
|
}
|
2024-02-23 16:32:47 +00:00
|
|
|
let _ = std::io::stdout().flush();
|
2024-02-19 23:38:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|