use crate::float::FloatContent; use crossterm::event::{KeyCode, KeyEvent, KeyModifiers}; use oneshot::{channel, Receiver}; use portable_pty::{ ChildKiller, CommandBuilder, ExitStatus, MasterPty, NativePtySystem, PtySize, PtySystem, }; use ratatui::{ layout::{Rect, Size}, style::{Color, Style, Stylize}, text::{Line, Span}, widgets::{Block, Borders}, Frame, }; use std::{ io::Write, path::{Path, PathBuf}, sync::{Arc, Mutex}, thread::JoinHandle, }; use tui_term::{ vt100::{self, Screen}, widget::PseudoTerminal, }; #[derive(Clone, Hash, Eq, PartialEq)] pub enum Command { Raw(String), LocalFile(PathBuf), None, // Directory } pub struct RunningCommand { /// A buffer to save all the command output (accumulates, until the command exits) buffer: Arc>>, /// A handle for the thread running the command command_thread: Option>, /// A handle to kill the running process; it's an option because it can only be used once child_killer: Option>>, /// A join handle for the thread that reads command output and sends it to the main thread _reader_thread: JoinHandle<()>, /// Virtual terminal (pty) handle, used for resizing the pty pty_master: Box, /// Used for sending keys to the emulated terminal writer: Box, /// Only set after the process has ended status: Option, } impl FloatContent for RunningCommand { fn draw(&mut self, frame: &mut Frame, area: Rect) { // Calculate the inner size of the terminal area, considering borders let inner_size = Size { width: area.width - 2, // Adjust for border width height: area.height - 2, }; // Define the block for the terminal display let block = if !self.is_finished() { // Display a block indicating the command is running Block::default() .borders(Borders::ALL) .title_top(Line::from("Running the command....").centered()) .title_style(Style::default().reversed()) .title_bottom(Line::from("Press Ctrl-C to KILL the command")) } else { // Display a block with the command's exit status let mut title_line = if self.get_exit_status().success() { Line::from( Span::default() .content("SUCCESS!") .style(Style::default().fg(Color::Green).reversed()), ) } else { Line::from( Span::default() .content("FAILED!") .style(Style::default().fg(Color::Red).reversed()), ) }; title_line.push_span( Span::default() .content(" press to close this window ") .style(Style::default()), ); Block::default() .borders(Borders::ALL) .title_top(title_line.centered()) }; // Process the buffer and create the pseudo-terminal widget let screen = self.screen(inner_size); let pseudo_term = PseudoTerminal::new(&screen).block(block); // Render the widget on the frame frame.render_widget(pseudo_term, area); } /// Handle key events of the running command "window". Returns true when the "window" should be /// closed fn handle_key_event(&mut self, key: &KeyEvent) -> bool { match key.code { // Handle Ctrl-C to kill the command KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => { self.kill_child(); } // Close the window when Enter is pressed and the command is finished KeyCode::Enter if self.is_finished() => { return true; } // Pass other key events to the terminal _ => self.handle_passthrough_key_event(key), } false } fn is_finished(&self) -> bool { // Check if the command thread has finished if let Some(command_thread) = &self.command_thread { command_thread.is_finished() } else { true } } } impl RunningCommand { pub fn new(command: Command, temp_path: &Path) -> Self { let pty_system = NativePtySystem::default(); // Build the command based on the provided Command enum variant let mut cmd = CommandBuilder::new("sh"); match command { Command::Raw(prompt) => { cmd.arg("-c"); cmd.arg(prompt); } Command::LocalFile(file) => { cmd.arg(file); } Command::None => panic!("Command::None was treated as a command"), } cmd.cwd(temp_path); // Open a pseudo-terminal with initial size let pair = pty_system .openpty(PtySize { rows: 24, // Initial number of rows (will be updated dynamically) cols: 80, // Initial number of columns (will be updated dynamically) pixel_width: 0, pixel_height: 0, }) .unwrap(); let (tx, rx) = channel(); // Thread waiting for the child to complete let command_handle = std::thread::spawn(move || { let mut child = pair.slave.spawn_command(cmd).unwrap(); let killer = child.clone_killer(); tx.send(killer).unwrap(); child.wait().unwrap() }); let mut reader = pair.master.try_clone_reader().unwrap(); // This is a reader, this is where we // A buffer, shared between the thread that reads the command output, and the main tread. // The main thread only reads the contents let command_buffer: Arc>> = Arc::new(Mutex::new(Vec::new())); let reader_handle = { // Arc is just a reference, so we can create an owned copy without any problem let command_buffer = command_buffer.clone(); // The closure below moves all variables used into it, so we can no longer use them, // that's why command_buffer.clone(), because we need to use command_buffer later std::thread::spawn(move || { let mut buf = [0u8; 8192]; loop { let size = reader.read(&mut buf).unwrap(); // Can block here if size == 0 { break; // EOF } let mut mutex = command_buffer.lock(); // Only lock the mutex after the read is // done, to minimise the time it is opened let command_buffer = mutex.as_mut().unwrap(); command_buffer.extend_from_slice(&buf[0..size]); // The mutex is closed here automatically } }) }; let writer = pair.master.take_writer().unwrap(); Self { buffer: command_buffer, command_thread: Some(command_handle), child_killer: Some(rx), _reader_thread: reader_handle, pty_master: pair.master, writer, status: None, } } fn screen(&mut self, size: Size) -> Screen { // Resize the emulated pty self.pty_master .resize(PtySize { rows: size.height, cols: size.width, pixel_width: 0, pixel_height: 0, }) .unwrap(); // Process the buffer with a parser with the current screen size // We don't actually need to create a new parser every time, but it is so much easier this // way, and doesn't cost that much let mut parser = vt100::Parser::new(size.height, size.width, 0); let mutex = self.buffer.lock(); let buffer = mutex.as_ref().unwrap(); parser.process(buffer); parser.screen().clone() } /// This function will block if the command is not finished fn get_exit_status(&mut self) -> ExitStatus { if self.command_thread.is_some() { let handle = self.command_thread.take().unwrap(); let exit_status = handle.join().unwrap(); self.status = Some(exit_status.clone()); exit_status } else { self.status.as_ref().unwrap().clone() } } /// Send SIGHUB signal, *not* SIGKILL or SIGTERM, to the child process pub fn kill_child(&mut self) { if !self.is_finished() { let mut killer = self.child_killer.take().unwrap().recv().unwrap(); killer.kill().unwrap(); } } /// Convert the KeyEvent to pty key codes, and send them to the virtual terminal fn handle_passthrough_key_event(&mut self, key: &KeyEvent) { let input_bytes = match key.code { KeyCode::Char(ch) => { let mut send = vec![ch as u8]; let upper = ch.to_ascii_uppercase(); if key.modifiers == KeyModifiers::CONTROL { match upper { // https://github.com/fyne-io/terminal/blob/master/input.go // https://gist.github.com/ConnerWill/d4b6c776b509add763e17f9f113fd25b '2' | '@' | ' ' => send = vec![0], '3' | '[' => send = vec![27], '4' | '\\' => send = vec![28], '5' | ']' => send = vec![29], '6' | '^' => send = vec![30], '7' | '-' | '_' => send = vec![31], char if ('A'..='_').contains(&char) => { let ascii_val = char as u8; let ascii_to_send = ascii_val - 64; send = vec![ascii_to_send]; } _ => {} } } send } KeyCode::Enter => vec![b'\n'], KeyCode::Backspace => vec![8], KeyCode::Left => vec![27, 91, 68], KeyCode::Right => vec![27, 91, 67], KeyCode::Up => vec![27, 91, 65], KeyCode::Down => vec![27, 91, 66], KeyCode::Tab => vec![9], KeyCode::Home => vec![27, 91, 72], KeyCode::End => vec![27, 91, 70], KeyCode::PageUp => vec![27, 91, 53, 126], KeyCode::PageDown => vec![27, 91, 54, 126], KeyCode::BackTab => vec![27, 91, 90], KeyCode::Delete => vec![27, 91, 51, 126], KeyCode::Insert => vec![27, 91, 50, 126], KeyCode::Esc => vec![27], _ => return, }; // Send the keycodes to the virtual terminal let _ = self.writer.write_all(&input_bytes); } }