diff --git a/Cargo.toml b/Cargo.toml index 1db5e2b..9b4571e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,9 @@ keywords = ["cli", "prompt", "console"] console = "0.15" fuzzy-matcher = "0.3" itertools = "0.13" +lazy_static = "1.5.0" once_cell = "1" +signal-hook = "0.3.17" termcolor = "1" [dev-dependencies] diff --git a/examples/confirm.rs b/examples/confirm.rs index c910e12..cce4a4f 100644 --- a/examples/confirm.rs +++ b/examples/confirm.rs @@ -5,11 +5,11 @@ fn main() { .description("This will do a thing.") .affirmative("Yes!") .negative("No."); - let _ = match confirm.run() { + match confirm.run() { Ok(confirm) => confirm, Err(e) => { if e.kind() == std::io::ErrorKind::Interrupted { - println!("Dialog was cancelled"); + println!("{}", e); false } else { panic!("Error: {}", e); diff --git a/examples/dialog.rs b/examples/dialog.rs index 13d3453..c8085c6 100644 --- a/examples/dialog.rs +++ b/examples/dialog.rs @@ -9,11 +9,11 @@ fn main() { DialogButton::new("Cancel"), ]) .selected_button(1); - let _ = match dialog.run() { + match dialog.run() { Ok(value) => value, Err(e) => { if e.kind() == std::io::ErrorKind::Interrupted { - println!("Dialog was cancelled"); + println!("{}", e); return; } else { panic!("Error: {}", e); diff --git a/examples/input-password.rs b/examples/input-password.rs index 6bb8897..b5657a1 100644 --- a/examples/input-password.rs +++ b/examples/input-password.rs @@ -5,11 +5,11 @@ fn main() { .placeholder("Enter password") .prompt("Password: ") .password(true); - let _ = match input.run() { + match input.run() { Ok(value) => value, Err(e) => { if e.kind() == std::io::ErrorKind::Interrupted { - println!("Input cancelled"); + println!("{}", e); return; } else { panic!("Error: {}", e); diff --git a/examples/input.rs b/examples/input.rs index de00192..ef23d95 100644 --- a/examples/input.rs +++ b/examples/input.rs @@ -26,15 +26,40 @@ fn main() { "Zack Snyder", ]) .validation(notempty_minlen); - let _ = match input.run() { + match input.run() { Ok(value) => value, - Err(e) => { - if e.kind() == std::io::ErrorKind::Interrupted { - println!("Input cancelled"); - return; - } else { - panic!("Error: {}", e); + Err(_) => "".to_string(), + // Err(e) => { + // if e.kind() == std::io::ErrorKind::Interrupted { + // println!("{}", e); + // return; + // } else { + // panic!("Error: {}", e); + // } + // } + }; + + loop { + println!("Chose an option: "); + let mut input = String::new(); + println!("Q to quit"); + println!("C to continue"); + match std::io::stdin().read_line(&mut input) { + Ok(_) => match input.trim() { + "Q" | "q" => { + println!("Quitting..."); + break; + } + "C" | "c" => { + println!("Continuing..."); + } + _ => { + println!("Invalid option"); + } + }, + Err(e) => { + println!("Error: {}", e); } } - }; + } } diff --git a/examples/list.rs b/examples/list.rs index 0fd2bf4..7a33a09 100644 --- a/examples/list.rs +++ b/examples/list.rs @@ -71,7 +71,7 @@ fn main() { Ok(_) => {} Err(e) => { if e.kind() == io::ErrorKind::Interrupted { - println!("Input cancelled"); + println!("{}", e); } else { panic!("Error: {}", e); } diff --git a/examples/multiselect.rs b/examples/multiselect.rs index 23d43eb..76a5790 100644 --- a/examples/multiselect.rs +++ b/examples/multiselect.rs @@ -13,11 +13,11 @@ fn main() { .option(DemandOption::new("Cheese")) .option(DemandOption::new("Vegan Cheese")) .option(DemandOption::new("Nutella")); - let _ = match multiselect.run() { + match multiselect.run() { Ok(toppings) => toppings, Err(e) => { if e.kind() == std::io::ErrorKind::Interrupted { - println!("Input cancelled"); + println!("{}", e); return; } else { panic!("Error: {}", e); diff --git a/examples/multiselect_huge.rs b/examples/multiselect_huge.rs index 197c09a..08941d7 100644 --- a/examples/multiselect_huge.rs +++ b/examples/multiselect_huge.rs @@ -67,11 +67,11 @@ fn main() { .option(DemandOption::new("Starburst")) .option(DemandOption::new("Twizzlers")) .option(DemandOption::new("Milk Duds")); - let _ = match multiselect.run() { + match multiselect.run() { Ok(value) => value, Err(e) => { if e.kind() == std::io::ErrorKind::Interrupted { - println!("Input cancelled"); + println!("{}", e); return; } else { panic!("Error: {}", e); diff --git a/examples/select.rs b/examples/select.rs index 32c9269..779ef0e 100644 --- a/examples/select.rs +++ b/examples/select.rs @@ -47,11 +47,11 @@ fn main() { .option(DemandOption::new("EG").label("Egypt")) .option(DemandOption::new("SA").label("Saudi Arabia")) .option(DemandOption::new("AE").label("United Arab Emirates")); - let _ = match ms.run() { + match ms.run() { Ok(value) => value, Err(e) => { if e.kind() == std::io::ErrorKind::Interrupted { - println!("Input cancelled"); + println!("{}", e); return; } else { panic!("Error: {}", e); diff --git a/examples/themes.rs b/examples/themes.rs index 1ab93a5..113a606 100644 --- a/examples/themes.rs +++ b/examples/themes.rs @@ -2,6 +2,20 @@ use std::env::args; use demand::{Confirm, DemandOption, Input, MultiSelect, Theme}; +fn handle_run(result: Result) -> T { + match result { + Ok(value) => value, + Err(e) => { + if e.kind() == std::io::ErrorKind::Interrupted { + println!("{}", e); + std::process::exit(0); + } else { + panic!("Error: {}", e); + } + } + } +} + fn main() { let theme = match args().nth(1).unwrap_or_default().as_str() { "base16" => Theme::base16(), @@ -16,7 +30,7 @@ fn main() { .description("Please enter your e-mail address.") .placeholder("john.doe@acme.com") .theme(&theme); - i.run().expect("error running input"); + handle_run(i.run()); let ms = MultiSelect::new("Interests") .description("Select your interests") @@ -31,12 +45,12 @@ fn main() { .option(DemandOption::new("Travel")) .option(DemandOption::new("Sports")) .theme(&theme); - ms.run().expect("error running multi select"); + handle_run(ms.run()); let c = Confirm::new("Confirm privacy policy") .description("Do you accept the privacy policy?") .affirmative("Yes") .negative("No") .theme(&theme); - c.run().expect("error running confirm"); + handle_run(c.run()); } diff --git a/src/confirm.rs b/src/confirm.rs index 049b9bd..c4fdba7 100644 --- a/src/confirm.rs +++ b/src/confirm.rs @@ -95,9 +95,12 @@ impl<'a> Confirm<'a> { /// This function will block until the user submits the input. If the user cancels the input, /// an error of type `io::ErrorKind::Interrupted` is returned. pub fn run(mut self) -> io::Result { + // TODO + let affirmative_char = self.affirmative.to_lowercase().chars().next().unwrap(); let negative_char = self.negative.to_lowercase().chars().next().unwrap(); self.term.clear_line()?; + self.term.hide_cursor()?; loop { self.clear()?; let output = self.render()?; @@ -119,7 +122,7 @@ impl<'a> Confirm<'a> { return self.handle_submit(); } Key::Escape => { - self.clear()?; + self.term.show_cursor()?; return Err(io::Error::new(io::ErrorKind::Interrupted, "user cancelled")); } _ => {} @@ -130,6 +133,7 @@ impl<'a> Confirm<'a> { fn handle_submit(mut self) -> io::Result { self.term.clear_to_end_of_screen()?; self.clear()?; + self.term.show_cursor()?; let output = self.render_success()?; self.term.write_all(output.as_bytes())?; Ok(self.selected) diff --git a/src/ctrlc.rs b/src/ctrlc.rs new file mode 100644 index 0000000..34ad61c --- /dev/null +++ b/src/ctrlc.rs @@ -0,0 +1,73 @@ +use console::Term; +use lazy_static::lazy_static; +use signal_hook::{ + consts::SIGINT, + iterator::{Handle, Signals}, +}; +use std::{ + io::Error, + sync::{ + atomic::{AtomicBool, Ordering}, + Mutex, RwLock, + }, + thread, +}; + +static INIT: AtomicBool = AtomicBool::new(false); +static INIT_LOCK: Mutex<()> = Mutex::new(()); + +lazy_static! { + static ref HANDLE: RwLock> = RwLock::new(None); +} + +pub fn show_cursor_after_ctrlc(term: &Term) -> Result, Error> { + let t = term.clone(); + set_ctrlc_handler(move || { + println!("Received Ctrl-C"); + t.show_cursor().unwrap(); + }) +} + +pub fn close_ctrlc_handle(handle: Option) { + if let Some(handle) = handle { + handle.close(); + } +} + +pub fn set_ctrlc_handler(mut handler: F) -> Result, Error> +where + F: FnMut() + 'static + Send, +{ + let _guard = INIT_LOCK.lock(); + if INIT.load(Ordering::Relaxed) { + let handle_guard = HANDLE.read().unwrap(); + return Ok(handle_guard.clone()); + } + INIT.store(true, Ordering::Relaxed); + + let handle = set_ctrlc_handler_internal(move || handler())?; + { + let mut handle_guard = HANDLE.write().unwrap(); + *handle_guard = Some(handle.clone()); + } + Ok(Some(handle)) +} + +fn set_ctrlc_handler_internal(mut handler: F) -> Result +where + F: FnMut() + 'static + Send, +{ + let mut signals = Signals::new(&[SIGINT])?; + let handle = signals.handle(); + thread::Builder::new() + .name("ctrl-c".into()) + .spawn(move || { + for sig in signals.forever() { + println!("Received signal {:?}", sig); + handler(); + // we dont' break here and leave it + // to the user to close the handle + } + })?; + Ok(handle) +} diff --git a/src/dialog.rs b/src/dialog.rs index 09201e1..e1df41f 100644 --- a/src/dialog.rs +++ b/src/dialog.rs @@ -131,6 +131,9 @@ impl<'a> Dialog<'a> { /// This function will block until the user submits the input. If the user cancels the input, /// an error of type `io::ErrorKind::Interrupted` is returned. pub fn run(mut self) -> io::Result { + // TODO + + self.term.hide_cursor()?; loop { self.clear()?; let output = self.render()?; @@ -149,7 +152,7 @@ impl<'a> Dialog<'a> { return self.handle_submit(); } Key::Escape => { - self.clear()?; + self.term.show_cursor()?; return Err(io::Error::new(io::ErrorKind::Interrupted, "user cancelled")); } _ => {} @@ -159,6 +162,7 @@ impl<'a> Dialog<'a> { fn handle_submit(mut self) -> io::Result { self.clear()?; + self.term.show_cursor()?; let output = self.render_success()?; self.term.write_all(output.as_bytes())?; let result = if !self.buttons.is_empty() { diff --git a/src/input.rs b/src/input.rs index 86a3d32..9cc1428 100644 --- a/src/input.rs +++ b/src/input.rs @@ -6,6 +6,7 @@ use std::{ use console::{measure_text_width, Key, Term}; use termcolor::{Buffer, WriteColor}; +use crate::ctrlc; use crate::{theme, Theme}; /// Single line text input @@ -153,6 +154,8 @@ impl<'a> Input<'a> { /// This function will block until the user submits the input. If the user cancels the input, /// an error of type `io::ErrorKind::Interrupted` is returned. pub fn run(mut self) -> io::Result { + let ctrlc_handle = ctrlc::show_cursor_after_ctrlc(&self.term)?; + self.term.hide_cursor()?; loop { self.clear()?; @@ -179,12 +182,14 @@ impl<'a> Input<'a> { if self.err.is_none() { self.term.show_cursor()?; self.term.clear_to_end_of_screen()?; + ctrlc::close_ctrlc_handle(ctrlc_handle); return self.handle_submit(); } } Key::Tab => self.handle_tab()?, Key::Escape => { - self.clear()?; + self.term.show_cursor()?; + ctrlc::close_ctrlc_handle(ctrlc_handle); return Err(io::Error::new(io::ErrorKind::Interrupted, "user cancelled")); } _ => {} diff --git a/src/lib.rs b/src/lib.rs index 6b4933e..fa3b4a3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,6 +13,7 @@ pub use spinner::SpinnerStyle; pub use theme::Theme; mod confirm; +mod ctrlc; mod dialog; mod input; mod list; diff --git a/src/list.rs b/src/list.rs index 0c7995e..2715969 100644 --- a/src/list.rs +++ b/src/list.rs @@ -125,6 +125,8 @@ impl<'a> List<'a> { /// This function will block until the user submits the input. If the user cancels the input, /// an error of type `io::ErrorKind::Interrupted` is returned. pub fn run(mut self) -> Result<(), io::Error> { + // TODO + loop { self.clear()?; let output = self.render()?; @@ -148,7 +150,7 @@ impl<'a> List<'a> { Key::ArrowRight | Key::Char('l') => self.handle_right()?, Key::Char('/') if self.filterable => self.handle_start_filtering(), Key::Escape => { - self.clear()?; + self.term.show_cursor()?; return Err(io::Error::new(io::ErrorKind::Interrupted, "user cancelled")); } Key::Enter => { diff --git a/src/multiselect.rs b/src/multiselect.rs index 1314938..d72a620 100644 --- a/src/multiselect.rs +++ b/src/multiselect.rs @@ -141,6 +141,8 @@ impl<'a, T> MultiSelect<'a, T> { /// This function will block until the user submits the input. If the user cancels the input, /// an error of type `io::ErrorKind::Interrupted` is returned. pub fn run(mut self) -> io::Result> { + // TODO + self.max = self.max.min(self.options.len()); self.min = self.min.min(self.max); @@ -170,7 +172,7 @@ impl<'a, T> MultiSelect<'a, T> { Key::Char('/') if self.filterable => self.handle_start_filtering(), Key::Escape => { if self.filter.is_empty() { - self.clear()?; + self.term.show_cursor()?; return Err(io::Error::new( io::ErrorKind::Interrupted, "user cancelled", diff --git a/src/select.rs b/src/select.rs index 7e7ee83..5ab645f 100644 --- a/src/select.rs +++ b/src/select.rs @@ -131,6 +131,8 @@ impl<'a, T> Select<'a, T> { /// This function will block until the user submits the input. If the user cancels the input, /// an error of type `io::ErrorKind::Interrupted` is returned. pub fn run(mut self) -> io::Result { + // TODO + loop { self.clear()?; let output = self.render()?; @@ -171,7 +173,7 @@ impl<'a, T> Select<'a, T> { Key::Char('/') if self.filterable => self.handle_start_filtering(), Key::Escape => { if self.filter.is_empty() { - self.clear()?; + self.term.show_cursor()?; return Err(io::Error::new( io::ErrorKind::Interrupted, "user cancelled", diff --git a/src/spinner.rs b/src/spinner.rs index db2782e..847bccc 100644 --- a/src/spinner.rs +++ b/src/spinner.rs @@ -129,6 +129,8 @@ impl<'a> Spinner<'a> { F: FnOnce(&mut SpinnerActionRunner<'spinner>) -> T + Send + 'scope, T: Send + 'scope, { + // TODO + std::thread::scope(|s| { let (sender, receiver) = mpsc::channel(); let handle = s.spawn(move || {