Giter Site home page Giter Site logo

Comments (10)

felipesere avatar felipesere commented on June 29, 2024 1

Sort of tangential to this, if I CTRL-C out of a selection, then my cursor is not restored.
Is that something I'd have to handle myself with some of the approaches named above?

from dialoguer.

pksunkara avatar pksunkara commented on June 29, 2024

Why was this closed?

from dialoguer.

mainrs avatar mainrs commented on June 29, 2024

This could be done through a custom (global?) callback function that users of the library could set before instantiating any dialog components.

from dialoguer.

filipelbc avatar filipelbc commented on June 29, 2024

Same problem. Would like the program not to exit when ctrl-c is hit during input.

from dialoguer.

filipelbc avatar filipelbc commented on June 29, 2024

So, after investigating a little, this is not really an issue with the library. It actually catches the ^C and returns an "Interrupted" error. However, before this can happen, the default SIGINT handler exits the program.

In order to work around this, one has to "disable" the signal handler.

I could not find a "good" way to do this. Below's my awkward solution. Notice the need to first setup the SIGINT handler. ctrlc does not provide a way to change the handler after setting it, and signal_hook does not allow setting the signal handler again if you reset to a default (i.e. if you set an empty handler to avoid exiting the program, then reset to the "default" one later, then you cannot set it again if, e.g., you need a new input prompt).

use anyhow::{Context, Result};
use dialoguer::Input;
use signal_hook::{register, unregister, SigId, SIGINT};
use std::io::ErrorKind;

pub fn prompt(p: &str) -> Result<String> {
    with_sigint_disabled(|| do_prompt(p))
}

static mut SIGINT_HANDLER: Option<SigId> = None;

fn with_sigint_disabled<F, R>(f: F) -> Result<R>
where
    F: Fn() -> Result<R>,
{
    disable_sigint();
    let r = f();
    enable_sigint();
    r
}

pub fn enable_sigint() {
    unsafe {
        if SIGINT_HANDLER.is_none() {
            let signal = register(SIGINT, move || std::process::exit(128 + SIGINT)).unwrap();
            SIGINT_HANDLER = Some(signal);
        }
    }
}

fn disable_sigint() {
    unsafe {
        if let Some(s) = SIGINT_HANDLER {
            unregister(s);
            SIGINT_HANDLER = None;
        }
    }
}

fn do_prompt(p: &str) -> Result<String> {
    Input::new()
        .with_prompt(p)
        .allow_empty(true)
        .validate_with(|x: &String| {
            if x.trim().is_empty() {
                Err(format!("{} cannot be empty", p))
            } else {
                Ok(())
            }
        })
        .interact_text()
        .map(|x| x.trim().to_string())
        .map_err(|e| {
            if e.kind() == ErrorKind::Interrupted {
                println!("");
            }
            e
        })
        .with_context(|| format!("{} could not be read", p))
}

from dialoguer.

pksunkara avatar pksunkara commented on June 29, 2024

Can you try with https://lib.rs/crates/ctrlc?

from dialoguer.

filipelbc avatar filipelbc commented on June 29, 2024

I tried that one initially. The issue is that this one only lets you set the handler, but not disable it temporarily.

I just dawned on me that instead of disabling the handler, one could use a global flag, which is checked by the handler in order to decide what to do (e.g quit or nothing...).

Anyhow, not an issue with the library I guess. Just unexpected, given that in other languages this works out of the box.

std::string foo;
std::cin >> foo;

from dialoguer.

mtorromeo avatar mtorromeo commented on June 29, 2024

@felipesere I just had this issue and this is how I restored the terminal:

let term = dialogue::console::Term::stderr();
term.show_cursor()?;

from dialoguer.

pksunkara avatar pksunkara commented on June 29, 2024

Showing the cursor should hopefully be fixed by #149 issue.

from dialoguer.

pksunkara avatar pksunkara commented on June 29, 2024

Closing this issue since it is not about this library.

from dialoguer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.