]> granicus.if.org Git - procps-ng/commitdiff
top: attempt to clarify the 'iokey' parameter meanings
authorJim Warner <james.warner@comcast.net>
Fri, 11 Feb 2022 06:00:00 +0000 (00:00 -0600)
committerCraig Small <csmall@dropbear.xyz>
Thu, 17 Feb 2022 07:23:30 +0000 (18:23 +1100)
The 'iokey' function's parameter 'action' was utilized
with literal numbers in the calling functions. So this
change will replace those literal numbers with #define
constants which, one hopes, will clarify their impact.

Signed-off-by: Jim Warner <james.warner@comcast.net>
top/top.c

index cea6b76c9509ed29dd74e3b7a301238c81166e4e..f535c69b9a898e3ec2d4d04622af67c39cd83310 100644 (file)
--- a/top/top.c
+++ b/top/top.c
@@ -1059,6 +1059,10 @@ static int ioch (int ech, char *buf, unsigned cnt) {
 } // end: ioch
 
 
+#define IOKEY_INIT 0
+#define IOKEY_ONCE 1
+#define IOKEY_NEXT 2
+
         /*
          * Support for single or multiple keystroke input AND
          * escaped cursor motion keys.
@@ -1092,7 +1096,7 @@ static int iokey (int action) {
 #endif
    int i;
 
-   if (action == 0) {
+   if (action == IOKEY_INIT) {
     #define tOk(s)  s ? s : ""
       tinfo_tab[0].str  = tOk(key_backspace);
       tinfo_tab[1].str  = tOk(key_ic);
@@ -1112,13 +1116,13 @@ static int iokey (int action) {
     #undef tOk
    }
 
-   if (action == 1) {
+   if (action == IOKEY_ONCE) {
       memset(buf, '\0', sizeof(buf));
       if (1 > ioch(0, buf, sizeof(buf)-1)) return 0;
    }
 
 #ifndef TERMIOS_ONLY
-   if (action == 2) {
+   if (action == IOKEY_NEXT) {
       if (pos < len)
          return buf[pos++];            // exhaust prior keystrokes
       pos = len = 0;
@@ -1206,7 +1210,7 @@ static char *ioline (const char *prompt) {
    do {
       fflush(stdout);
       len = strlen(buf);
-      key = iokey(2);
+      key = iokey(IOKEY_NEXT);
       switch (key) {
          case 0:
             buf[0] = '\0';
@@ -2216,7 +2220,7 @@ signify_that:
       fflush(stdout);
 
       if (Frames_signal) goto signify_that;
-      key = iokey(1);
+      key = iokey(IOKEY_ONCE);
       if (key < 1) goto signify_that;
 
       switch (key) {
@@ -3034,7 +3038,7 @@ signify_that:
       tcflush(STDIN_FILENO, TCIFLUSH);
 
       if (Frames_signal) goto signify_that;
-      key = iokey(1);
+      key = iokey(IOKEY_ONCE);
       if (key < 1) goto signify_that;
 
       switch (key) {
@@ -3090,7 +3094,7 @@ signify_that:
          case '=':
             snprintf(buf, sizeof(buf), "%s: %s", Insp_sel->type, Insp_sel->fmts);
             INSP_MKSL(1, buf);    // show an extended SL
-            if (iokey(1) < 1)
+            if (iokey(IOKEY_ONCE) < 1)
                goto signify_that;
             break;
          default:                 // keep gcc happy
@@ -3146,7 +3150,7 @@ signify_that:
       INSP_MKSL(0, " ");
 
       if (Frames_signal) goto signify_that;
-      if (key == INT_MAX) key = iokey(1);
+      if (key == INT_MAX) key = iokey(IOKEY_ONCE);
       if (key < 1) goto signify_that;
 
       switch (key) {
@@ -4146,7 +4150,7 @@ static void whack_terminal (void) {
    if (enter_ca_mode) putp(enter_ca_mode);
 #endif
    // and don't forget to ask iokey to initialize his tinfo_tab
-   iokey(0);
+   iokey(IOKEY_INIT);
 } // end: whack_terminal
 \f
 /*######  Windows/Field Groups support  #################################*/
@@ -4192,7 +4196,7 @@ static WIN_t *win_select (int ch) {
       so we must try to get our own darn ch by begging the user... */
    if (!ch) {
       show_pmt(N_txt(CHOOSE_group_txt));
-      if (1 > (ch = iokey(1))) return w;
+      if (1 > (ch = iokey(IOKEY_ONCE))) return w;
    }
    switch (ch) {
       case 'a':                   // we don't carry 'a' / 'w' in our
@@ -4282,7 +4286,7 @@ signify_that:
       fflush(stdout);
 
       if (Frames_signal) goto signify_that;
-      key = iokey(1);
+      key = iokey(IOKEY_ONCE);
       if (key < 1) goto signify_that;
       if (key == kbd_ESC) break;
 
@@ -4787,7 +4791,7 @@ signify_that:
    fflush(stdout);
 
    if (Frames_signal) goto signify_that;
-   key = iokey(1);
+   key = iokey(IOKEY_ONCE);
    if (key < 1) goto signify_that;
 
    switch (key) {
@@ -4802,7 +4806,7 @@ signify_that:
                , Winstk[2].rc.winname, Winstk[3].rc.winname));
             putp(Cap_clr_eos);
             fflush(stdout);
-            if (Frames_signal || (key = iokey(1)) < 1) {
+            if (Frames_signal || (key = iokey(IOKEY_ONCE)) < 1) {
                adj_geometry();
                putp(Cap_clr_scr);
             } else w = win_select(key);
@@ -4869,13 +4873,13 @@ static void write_rcfile (void) {
 
    if (Rc_questions) {
       show_pmt(N_txt(XTRA_warncfg_txt));
-      if ('y' != tolower(iokey(1)))
+      if ('y' != tolower(iokey(IOKEY_ONCE)))
          return;
       Rc_questions = 0;
    }
    if (Rc_compatibilty) {
       show_pmt(N_txt(XTRA_warnold_txt));
-      if ('y' != tolower(iokey(1)))
+      if ('y' != tolower(iokey(IOKEY_ONCE)))
          return;
       Rc_compatibilty = 0;
    }
@@ -6567,7 +6571,7 @@ int main (int argc, char *argv[]) {
          pselect(0, NULL, NULL, NULL, &ts, NULL);
       else {
          if (ioa(&ts))
-            do_key(iokey(1));
+            do_key(iokey(IOKEY_ONCE));
       }
            /* note: that above ioa routine exists to consolidate all logic
                     which is susceptible to signal interrupt and must then