less,microcom,lineedit: use common routine to set raw termios
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 15 Sep 2017 15:14:01 +0000 (17:14 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 15 Sep 2017 15:14:01 +0000 (17:14 +0200)
function                                             old     new   delta
get_termios_and_make_raw                               -     139    +139
xget1                                                 39       8     -31
read_line_input                                     3912    3867     -45
less_main                                           2525    2471     -54
set_termios_to_raw                                   116      36     -80
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 0/4 up/down: 139/-210)          Total: -71 bytes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
include/libbb.h
libbb/lineedit.c
libbb/xfuncs.c
miscutils/less.c
miscutils/microcom.c

index 06f8877324c91001d59b8453fa3e69d1b0800f49..aff2825ac6395acc3cfc71ca8d0da1dd594c9e90 100644 (file)
@@ -1582,6 +1582,7 @@ int tcsetattr_stdin_TCSANOW(const struct termios *tp) FAST_FUNC;
 #define TERMIOS_CLEAR_ISIG (1 << 0)
 #define TERMIOS_RAW_CRNL   (1 << 1)
 #define TERMIOS_RAW_INPUT  (1 << 2)
+int get_termios_and_make_raw(int fd, struct termios *newterm, struct termios *oldterm, int flags) FAST_FUNC;
 int set_termios_to_raw(int fd, struct termios *oldterm, int flags) FAST_FUNC;
 
 /* NB: "unsigned request" is crucial! "int request" will break some arches! */
index 17766a12640726d04282e800718fdf60e24d9ed2..3a092ffe26a93c5e9c7a7b2713971913817e69ed 100644 (file)
@@ -2259,7 +2259,7 @@ static int32_t reverse_i_search(int timeout)
  */
 int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize)
 {
-       int len;
+       int len, n;
        int timeout;
 #if ENABLE_FEATURE_TAB_COMPLETION
        smallint lastWasTab = 0;
@@ -2274,9 +2274,10 @@ int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *comman
 
        INIT_S();
 
-       if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
-        || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON
-       ) {
+       n = get_termios_and_make_raw(STDIN_FILENO, &new_settings, &initial_settings, 0
+               | TERMIOS_CLEAR_ISIG /* turn off INTR (ctrl-C), QUIT, SUSP */
+       );
+       if (n != 0 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON) {
                /* Happens when e.g. stty -echo was run before.
                 * But if ICANON is not set, we don't come here.
                 * (example: interactive python ^Z-backgrounded,
@@ -2329,18 +2330,6 @@ int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *comman
 #endif
 #define command command_must_not_be_used
 
-       new_settings = initial_settings;
-       /* ~ICANON: unbuffered input (most c_cc[] are disabled, VMIN/VTIME are enabled) */
-       /* ~ECHO, ~ECHONL: turn off echoing, including newline echoing */
-       /* ~ISIG: turn off INTR (ctrl-C), QUIT, SUSP */
-       new_settings.c_lflag &= ~(ICANON | ECHO | ECHONL | ISIG);
-       /* reads will block only if < 1 char is available */
-       new_settings.c_cc[VMIN] = 1;
-       /* no timeout (reads block forever) */
-       new_settings.c_cc[VTIME] = 0;
-       /* Should be not needed if ISIG is off: */
-       /* Turn off CTRL-C */
-       /* new_settings.c_cc[VINTR] = _POSIX_VDISABLE; */
        tcsetattr_stdin_TCSANOW(&new_settings);
 
 #if ENABLE_USERNAME_OR_HOMEDIR
index 1b3a1667bee7f451f6070c3e5bacdef4124594c7..d7647704e63e8124fed10f912edd9c895fc1aee5 100644 (file)
@@ -311,40 +311,65 @@ int FAST_FUNC tcsetattr_stdin_TCSANOW(const struct termios *tp)
        return tcsetattr(STDIN_FILENO, TCSANOW, tp);
 }
 
-int FAST_FUNC set_termios_to_raw(int fd, struct termios *oldterm, int flags)
+int FAST_FUNC get_termios_and_make_raw(int fd, struct termios *newterm, struct termios *oldterm, int flags)
 {
-//TODO: lineedit, microcom, slattach, less might be adapted to use this too:
-// grep for "tcsetattr"
-
-       struct termios newterm;
+//TODO: slattach, shell read might be adapted to use this too: grep for "tcsetattr", "[VTIME] = 0"
+       int r;
 
-       tcgetattr(fd, oldterm);
-       newterm = *oldterm;
+       memset(oldterm, 0, sizeof(*oldterm)); /* paranoia */
+       r = tcgetattr(fd, oldterm);
+       *newterm = *oldterm;
 
        /* Turn off buffered input (ICANON)
         * Turn off echoing (ECHO)
         * and separate echoing of newline (ECHONL, normally off anyway)
         */
-       newterm.c_lflag &= ~(ICANON | ECHO | ECHONL);
+       newterm->c_lflag &= ~(ICANON | ECHO | ECHONL);
        if (flags & TERMIOS_CLEAR_ISIG) {
                /* dont recognize INT/QUIT/SUSP chars */
-               newterm.c_lflag &= ~ISIG;
+               newterm->c_lflag &= ~ISIG;
        }
        /* reads will block only if < 1 char is available */
-       newterm.c_cc[VMIN] = 1;
+       newterm->c_cc[VMIN] = 1;
        /* no timeout (reads block forever) */
-       newterm.c_cc[VTIME] = 0;
+       newterm->c_cc[VTIME] = 0;
        if (flags & TERMIOS_RAW_CRNL) {
+/* IXON, IXOFF, and IXANY:
+ * IXOFF=1: sw flow control is enabled on input queue:
+ * tty transmits a STOP char when input queue is close to full
+ * and transmits a START char when input queue is nearly empty.
+ * IXON=1: sw flow control is enabled on output queue:
+ * tty will stop sending if STOP char is received,
+ * and resume sending if START is received, or if any char
+ * is received and IXANY=1.
+ */
+               /* IXON=0: XON/XOFF chars are treated as normal chars (why we do this?) */
                /* dont convert CR to NL on input */
-               newterm.c_iflag &= ~(IXON | ICRNL);
-               /* dont convert NL to CR on output */
-               newterm.c_oflag &= ~(ONLCR);
+               newterm->c_iflag &= ~(IXON | ICRNL);
+               /* dont convert NL to CR+NL on output */
+               newterm->c_oflag &= ~(ONLCR);
+               /* Maybe clear more c_oflag bits? usually, only OPOST and ONLCR are set.
+                * OPOST  Enable implementation-defined output processing (is this reqd for all other bits to work?)
+                * OLCUC  Map lowercase characters to uppercase on output.
+                * OCRNL  Map CR to NL on output.
+                * ONOCR  Don't output CR at column 0.
+                * ONLRET Don't output CR.
+                */
        }
        if (flags & TERMIOS_RAW_INPUT) {
+               /* IXOFF=0: disable sending XON/XOFF if input buf is full */
+               /* IXON=0: XON/XOFF chars are treated as normal chars */
                /* dont convert anything on input */
-               newterm.c_iflag &= ~(BRKINT|INLCR|ICRNL|IXON|IXOFF|IUCLC|IXANY|IMAXBEL);
+               newterm->c_iflag &= ~(IXOFF|IXON|IXANY|BRKINT|INLCR|ICRNL|IUCLC|IMAXBEL);
        }
+       return r;
+}
+
+int FAST_FUNC set_termios_to_raw(int fd, struct termios *oldterm, int flags)
+{
+       struct termios newterm;
 
+       get_termios_and_make_raw(fd, &newterm, oldterm, flags);
        return tcsetattr(fd, TCSANOW, &newterm);
 }
 
index d524b6c87f3eb58297b28a9e2aaedfb024e8e5f7..c6c158a513c79ae0e8b4180739142a865bbcc0ab 100644 (file)
@@ -1824,15 +1824,9 @@ int less_main(int argc, char **argv)
        G.kbd_fd_orig_flags = ndelay_on(tty_fd);
        kbd_fd = tty_fd; /* save in a global */
 
-       tcgetattr(kbd_fd, &term_orig);
-       term_less = term_orig;
-       term_less.c_lflag &= ~(ICANON | ECHO);
-       term_less.c_iflag &= ~(IXON | ICRNL);
-       /*term_less.c_oflag &= ~ONLCR;*/
-       term_less.c_cc[VMIN] = 1;
-       term_less.c_cc[VTIME] = 0;
-
-       IF_FEATURE_LESS_ASK_TERMINAL(G.winsize_err =) get_terminal_width_height(kbd_fd, &width, &max_displayed_line);
+       get_termios_and_make_raw(tty_fd, &term_less, &term_orig, TERMIOS_RAW_CRNL);
+
+       IF_FEATURE_LESS_ASK_TERMINAL(G.winsize_err =) get_terminal_width_height(tty_fd, &width, &max_displayed_line);
        /* 20: two tabstops + 4 */
        if (width < 20 || max_displayed_line < 3)
                return bb_cat(argv);
index b87f3273fab0fcb0ccd31dcbfa204a98a783e3f8..fa090057e72ca4ea2342957923c79287d77309f6 100644 (file)
 // set raw tty mode
 static void xget1(int fd, struct termios *t, struct termios *oldt)
 {
-//TODO: use set_termios_to_raw()
-       tcgetattr(fd, oldt);
-       *t = *oldt;
-       cfmakeraw(t);
-//     t->c_lflag &= ~(ISIG|ICANON|ECHO|IEXTEN);
-//     t->c_iflag &= ~(BRKINT|IXON|ICRNL);
-//     t->c_oflag &= ~(ONLCR);
-//     t->c_cc[VMIN]  = 1;
-//     t->c_cc[VTIME] = 0;
+       get_termios_and_make_raw(fd, t, oldt, 0
+               | TERMIOS_CLEAR_ISIG /* ^C is ASCII char 3, not "interrupt me!" */
+               | TERMIOS_RAW_INPUT /* pass all chars verbatim, no special handling or translating CR->NL */
+               | TERMIOS_RAW_CRNL  /* dont convert NL<->CR on output too */
+       );
 }
 
 static int xset1(int fd, struct termios *tio, const char *device)