zenyx-engine/engine/src/core/repl/repl.rs

179 lines
4.9 KiB
Rust
Raw Normal View History

2024-12-05 01:33:44 -06:00
use crate::{
core::repl::{commands, Callable, COMMAND_LIST},
utils::logger::LOGGER,
};
2024-12-02 15:43:39 -05:00
use anyhow::Result;
use chrono::Local;
2024-12-02 15:43:39 -05:00
use colored::Colorize;
use log::debug;
use regex::Regex;
2024-12-05 01:33:44 -06:00
use rustyline::{
error::ReadlineError, highlight::Highlighter, hint::HistoryHinter, history::DefaultHistory,
Cmd, Completer, ConditionalEventHandler, Editor, Event, EventContext, EventHandler, Helper,
Hinter, KeyEvent, RepeatCount, Validator,
};
use std::{
borrow::Cow::{self, Borrowed, Owned},
sync::{Arc, Mutex},
};
#[derive(Completer, Helper, Hinter, Validator)]
struct MyHelper(#[rustyline(Hinter)] HistoryHinter);
impl Highlighter for MyHelper {
fn highlight_prompt<'b, 's: 'b, 'p: 'b>(
&'s self,
prompt: &'p str,
default: bool,
) -> Cow<'b, str> {
if default {
Owned(prompt.bright_black().bold().to_string())
} else {
Borrowed(prompt)
}
}
fn highlight_hint<'h>(&self, hint: &'h str) -> Cow<'h, str> {
Owned(hint.bold().to_string())
}
}
#[derive(Clone)]
struct BacktickEventHandler {
toggle_state: Arc<Mutex<bool>>, // Tracks whether logging is enabled or disabled
}
impl ConditionalEventHandler for BacktickEventHandler {
fn handle(&self, evt: &Event, _: RepeatCount, _: bool, _: &EventContext) -> Option<Cmd> {
if let Some(k) = evt.get(0) {
if *k == KeyEvent::from('`') {
let mut state = self.toggle_state.lock().unwrap();
2024-12-05 10:46:36 -05:00
println!("Stdout Logging: {}", if *state { "ON".green() } else { "OFF".red() });
2024-12-05 01:33:44 -06:00
if *state {
LOGGER.write_to_stdout();
} else {
LOGGER.write_to_file("z.log");
}
*state = !*state;
Some(Cmd::Noop)
} else {
None
}
} else {
unreachable!()
}
}
}
fn register_commands() {
COMMAND_LIST.add_command(
"hello",
Some("Displays \"Hello World\"!"),
Callable::Simple(commands::say_hello),
None,
);
COMMAND_LIST.add_command(
"exit",
Some("Exits the application gracefully."),
Callable::Simple(commands::exit),
None,
);
COMMAND_LIST.add_command(
"clear",
Some("Clears the terminal screen."),
Callable::Simple(commands::clear),
None,
);
COMMAND_LIST.add_command(
"echo",
Some("Prints the provided arguments back to the terminal."),
Callable::WithArgs(commands::echo),
Some(1), // Requires at least one argument
);
COMMAND_LIST.add_command(
"help",
Some("Displays a list of all available commands."),
Callable::Simple(commands::help),
None,
);
2024-12-05 01:33:44 -06:00
// Example of adding aliases for commands
COMMAND_LIST.add_alias("clear".to_string(), "cls".to_string());
}
fn evaluate_command(input: &str) {
if input.trim().is_empty() {
return;
}
let pattern = Regex::new(r"[;|\n]").unwrap();
let commands: Vec<&str> = pattern.split(input).collect();
for command in commands {
let command = command.trim();
if command.is_empty() {
println!("Empty command, skipping.");
continue;
}
let tokens: Vec<&str> = command.split_whitespace().collect();
if tokens.is_empty() {
return;
}
let cmd_name = tokens[0];
let args: Vec<String> = tokens[1..].iter().map(|&s| s.to_string()).collect();
COMMAND_LIST.execute_command(
cmd_name.to_string(),
if args.is_empty() { None } else { Some(args) },
);
}
}
2024-12-05 01:33:44 -06:00
pub async fn handle_repl() -> Result<()> {
let mut rl = Editor::<MyHelper, DefaultHistory>::new()?;
rl.set_helper(Some(MyHelper(HistoryHinter::new())));
rl.bind_sequence(
KeyEvent::from('`'),
EventHandler::Conditional(Box::new(BacktickEventHandler {
toggle_state: Arc::new(Mutex::new(false)),
})),
);
if rl.load_history("history.txt").is_err() {
2024-12-02 15:43:39 -05:00
debug!("No previous history.");
}
2024-12-05 01:33:44 -06:00
register_commands();
loop {
2024-12-05 01:33:44 -06:00
let time = Local::now().format("%H:%M:%S.%3f").to_string();
let prompt = format!("[{}/{}] {}", time, "SHELL", ">>\t");
let sig = rl.readline(&prompt.bright_white());
match sig {
2024-12-02 15:43:39 -05:00
Ok(line) => {
2024-12-05 01:33:44 -06:00
rl.add_history_entry(line.as_str())?;
2024-12-02 15:43:39 -05:00
evaluate_command(line.as_str());
}
2024-12-05 01:33:44 -06:00
Err(ReadlineError::Interrupted) => {
2024-12-02 15:43:39 -05:00
println!("CTRL+C received, exiting...");
std::process::exit(0);
}
2024-12-05 01:33:44 -06:00
Err(ReadlineError::Eof) => {
2024-12-02 15:43:39 -05:00
println!("Error: CTRL+D pressed. Exiting...");
std::process::exit(0);
}
2024-12-02 15:43:39 -05:00
Err(err) => {
println!("Error: {}", err);
}
}
}
}