C non-blocking keyboard input

前端 未结 10 794
说谎
说谎 2020-11-22 05:59

I\'m trying to write a program in C (on Linux) that loops until the user presses a key, but shouldn\'t require a keypress to continue each loop.

Is there a simple wa

相关标签:
10条回答
  • 2020-11-22 06:15

    As already stated, you can use sigaction to trap ctrl-c, or select to trap any standard input.

    Note however that with the latter method you also need to set the TTY so that it's in character-at-a-time rather than line-at-a-time mode. The latter is the default - if you type in a line of text it doesn't get sent to the running program's stdin until you press enter.

    You'd need to use the tcsetattr() function to turn off ICANON mode, and probably also disable ECHO too. From memory, you also have to set the terminal back into ICANON mode when the program exits!

    Just for completeness, here's some code I've just knocked up (nb: no error checking!) which sets up a Unix TTY and emulates the DOS <conio.h> functions kbhit() and getch():

    #include <stdlib.h>
    #include <string.h>
    #include <unistd.h>
    #include <sys/select.h>
    #include <termios.h>
    
    struct termios orig_termios;
    
    void reset_terminal_mode()
    {
        tcsetattr(0, TCSANOW, &orig_termios);
    }
    
    void set_conio_terminal_mode()
    {
        struct termios new_termios;
    
        /* take two copies - one for now, one for later */
        tcgetattr(0, &orig_termios);
        memcpy(&new_termios, &orig_termios, sizeof(new_termios));
    
        /* register cleanup handler, and set the new terminal mode */
        atexit(reset_terminal_mode);
        cfmakeraw(&new_termios);
        tcsetattr(0, TCSANOW, &new_termios);
    }
    
    int kbhit()
    {
        struct timeval tv = { 0L, 0L };
        fd_set fds;
        FD_ZERO(&fds);
        FD_SET(0, &fds);
        return select(1, &fds, NULL, NULL, &tv);
    }
    
    int getch()
    {
        int r;
        unsigned char c;
        if ((r = read(0, &c, sizeof(c))) < 0) {
            return r;
        } else {
            return c;
        }
    }
    
    int main(int argc, char *argv[])
    {
        set_conio_terminal_mode();
    
        while (!kbhit()) {
            /* do some work */
        }
        (void)getch(); /* consume the character */
    }
    
    0 讨论(0)
  • 2020-11-22 06:16

    select() is a bit too low-level for convenience. I suggest you use the ncurses library to put the terminal in cbreak mode and delay mode, then call getch(), which will return ERR if no character is ready:

    WINDOW *w = initscr();
    cbreak();
    nodelay(w, TRUE);
    

    At that point you can call getch without blocking.

    0 讨论(0)
  • 2020-11-22 06:23

    You probably want kbhit();

    //Example will loop until a key is pressed
    #include <conio.h>
    #include <iostream>
    
    using namespace std;
    
    int main()
    {
        while(1)
        {
            if(kbhit())
            {
                break;
            }
        }
    }
    

    this may not work on all environments. A portable way would be to create a monitoring thread and set some flag on getch();

    0 讨论(0)
  • 2020-11-22 06:27

    On UNIX systems, you can use sigaction call to register a signal handler for SIGINT signal which represents the Control+C key sequence. The signal handler can set a flag which will be checked in the loop making it to break appropriately.

    0 讨论(0)
  • 2020-11-22 06:28

    The curses library can be used for this purpose. Of course, select() and signal handlers can be used too to a certain extent.

    0 讨论(0)
  • 2020-11-22 06:30

    If you are happy just catching Control-C, it's a done deal. If you really want non-blocking I/O but you don't want the curses library, another alternative is to move lock, stock, and barrel to the AT&T sfio library. It's nice library patterned on C stdio but more flexible, thread-safe, and performs better. (sfio stands for safe, fast I/O.)

    0 讨论(0)
提交回复
热议问题