blob: cb67e45553375f9688e09bac1dd59a3a212c70be (
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
|
use rustyline::error::ReadlineError;
use rustyline::Editor;
mod parser;
mod prompt;
fn main() {
match std::fs::read_to_string("/etc/motd") {
Ok(motd) => print!("{}", motd),
Err(_) => {}
}
let prompt = prompt::Prompt::new().unwrap();
let mut cwd = std::env::current_dir().unwrap();
let mut status = None;
// `()` can be used when no completer is required
let mut rl = Editor::<()>::new();
/*if rl.load_history("history.txt").is_err() {
println!("No previous history.");
}*/
'repl: loop {
match rl.readline(&prompt.print(&cwd)) {
Ok(line) => {
rl.add_history_entry(line.as_str());
let i = parser::tokenize(&line);
match i.run(&prompt.home, &mut cwd, &status) {
Ok(parser::command::RunResult::Command(s)) => status = Some(s),
Ok(parser::command::RunResult::Builtin) => {}
Err(e) => eprintln!("{}", e),
}
}
Err(ReadlineError::Interrupted) => {
println!("CTRL-C");
continue;
}
Err(ReadlineError::Eof) => {
println!("CTRL-D");
break 'repl;
}
Err(err) => {
println!("Error: {:?}", err);
break 'repl;
}
}
}
//rl.save_history("history.txt").unwrap();
}
|