summaryrefslogtreecommitdiff
path: root/matrix-bin/src/repl.rs
blob: f2964d4b2313a1238730d0c60773bad9b57d3f12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use std::{io::Write, sync::atomic::Ordering};

use matrix::{value::Value, vm::Interupt};
use rustyline::{Config, EditMode, ColorMode, Editor, CompletionType};

use crate::{State, helper::MatrixHelper};

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)  {

        let interupt = self.state.vm.borrow().interupt();
        ctrlc::set_handler(move || {
            interupt.store(Interupt::KeyboardInterupt as usize, Ordering::SeqCst);
        }).unwrap();

        let config = Config::builder()
            .check_cursor_position(true)
            .completion_type(CompletionType::List)
            .edit_mode(EditMode::Emacs)
            .color_mode(if self.state.color { ColorMode::Enabled } else { ColorMode::Disabled })
            .build();

        let helper = MatrixHelper::new(self.state.vm.clone());

        let mut rl = Editor::with_config(config).unwrap();
        rl.set_helper(Some(helper));

        loop {
            let Ok(line) = rl.readline(">> ") else {
                break;
            };
            if let Err(_) = rl.add_history_entry(&line) {
                break;
            };
            match self.state.execute(line) {
                Err(err) => crate::error(err, &self.state),
                Ok(val) => {
                    if val != Value::Nil {
                        if self.state.color {
                            println!("{val:#}");
                        } else {
                            println!("{val}");
                        }
                    }
                }
            }
            let _ = std::io::stdout().flush();
        }
    }

}