How can I read one character from stdin without having to hit enter?

后端 未结 3 1191
时光说笑
时光说笑 2020-12-01 14:13

I want to run an executable that blocks on stdin and when a key is pressed that same character is printed immediately without Enter having to be pressed.

相关标签:
3条回答
  • 2020-12-01 14:27

    You can also use termion, but you will have to enable the raw TTY mode which changes the behavior of stdout as well. See the example below (tested with Rust 1.34.0). Note that internally, it also wraps the termios UNIX API.

    Cargo.toml

    [dependencies]
    termion = "1.5.2"
    

    main.rs

    use std::io;
    use std::io::Write;
    use std::thread;
    use std::time;
    
    use termion;
    use termion::input::TermRead;
    use termion::raw::IntoRawMode;
    
    fn main() {
        // Set terminal to raw mode to allow reading stdin one key at a time
        let mut stdout = io::stdout().into_raw_mode().unwrap();
    
        // Use asynchronous stdin
        let mut stdin = termion::async_stdin().keys();
    
        loop {
            // Read input (if any)
            let input = stdin.next();
    
            // If a key was pressed
            if let Some(Ok(key)) = input {
                match key {
                    // Exit if 'q' is pressed
                    termion::event::Key::Char('q') => break,
                    // Else print the pressed key
                    _ => {
                        write!(
                            stdout,
                            "{}{}Key pressed: {:?}",
                            termion::clear::All,
                            termion::cursor::Goto(1, 1),
                            key
                        )
                        .unwrap();
    
                        stdout.lock().flush().unwrap();
                    }
                }
            }
            thread::sleep(time::Duration::from_millis(50));
        }
    }
    
    0 讨论(0)
  • 2020-12-01 14:30

    While @Jon's solution using ncurses works, ncurses clears the screen by design. I came up with this solution that uses the termios crate for my little project to learn Rust. The idea is to modify ECHO and ICANON flags by accessing tcsetattr through termios bindings.

    extern crate termios;
    use std::io;
    use std::io::Read;
    use std::io::Write;
    use termios::{Termios, TCSANOW, ECHO, ICANON, tcsetattr};
    
    fn main() {
        let stdin = 0; // couldn't get std::os::unix::io::FromRawFd to work 
                       // on /dev/stdin or /dev/tty
        let termios = Termios::from_fd(stdin).unwrap();
        let mut new_termios = termios.clone();  // make a mutable copy of termios 
                                                // that we will modify
        new_termios.c_lflag &= !(ICANON | ECHO); // no echo and canonical mode
        tcsetattr(stdin, TCSANOW, &mut new_termios).unwrap();
        let stdout = io::stdout();
        let mut reader = io::stdin();
        let mut buffer = [0;1];  // read exactly one byte
        print!("Hit a key! ");
        stdout.lock().flush().unwrap();
        reader.read_exact(&mut buffer).unwrap();
        println!("You have hit: {:?}", buffer);
        tcsetattr(stdin, TCSANOW, & termios).unwrap();  // reset the stdin to 
                                                        // original termios data
    }
    

    One advantage of reading a single byte is capturing arrow keys, ctrl etc. Extended F-keys are not captured (although ncurses can capture these).

    This solution is intended for UNIX-like platforms. I have no experience with Windows, but according to this forum perhaps something similar can be achieved using SetConsoleMode in Windows.

    0 讨论(0)
  • 2020-12-01 14:35

    Use one of the 'ncurses' libraries now available, for instance this one.

    Add the dependency in Cargo

    [dependencies]
    ncurses = "5.86.0"
    

    and include in main.rs:

    extern crate ncurses;
    use ncurses::*; // watch for globs
    

    Follow the examples in the library to initialize ncurses and wait for single character input like this:

    initscr();
    /* Print to the back buffer. */
    printw("Hello, world!");
    
    /* Update the screen. */
    refresh();
    
    /* Wait for a key press. */
    getch();
    
    /* Terminate ncurses. */
    endwin();
    
    0 讨论(0)
提交回复
热议问题