2 * Copyright (c) 1984 through 2008, William LeFebvre
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
16 * * Neither the name of William LeFebvre nor the names of other
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 * Top users/processes display for Unix
39 * This file contains the routines that display information on the screen.
40 * Each section of the screen has two routines: one for initially writing
41 * all constant and dynamic text, and one for only updating the text that
42 * changes. The prefix "i_" is used on all the "initial" routines and the
43 * prefix "u_" is used for all the "updating" routines.
46 * None of the "i_" routines use any of the termcap capabilities.
47 * In this way, those routines can be safely used on terminals that
48 * have minimal (or nonexistant) terminal capabilities.
50 * The routines should be called in this order: *_loadave, *_uptime,
51 * i_timeofday, *_procstates, *_cpustates, *_memory, *_swap,
52 * *_message, *_header, *_process, *_endscreen.
58 #include <sys/types.h>
64 #include "screen.h" /* interface to screen package */
65 #include "layout.h" /* defines for screen position layout */
76 #define MESSAGE_DISPLAY_TIME 5
78 /* imported from screen.c */
79 extern int overstrike
;
81 static int lmpid
= -1;
82 static int display_width
= MAX_COLS
;
84 /* cursor positions of key points on the screen are maintained here */
85 /* layout.h has static definitions, but we may change our minds on some
86 of the positions as we make decisions about what needs to be displayed */
88 static int x_lastpid
= X_LASTPID
;
89 static int y_lastpid
= Y_LASTPID
;
90 static int x_loadave
= X_LOADAVE
;
91 static int y_loadave
= Y_LOADAVE
;
92 static int x_minibar
= X_MINIBAR
;
93 static int y_minibar
= Y_MINIBAR
;
94 static int x_uptime
= X_UPTIME
;
95 static int y_uptime
= Y_UPTIME
;
96 static int x_procstate
= X_PROCSTATE
;
97 static int y_procstate
= Y_PROCSTATE
;
98 static int x_cpustates
= X_CPUSTATES
;
99 static int y_cpustates
= Y_CPUSTATES
;
100 static int x_kernel
= X_KERNEL
;
101 static int y_kernel
= Y_KERNEL
;
102 static int x_mem
= X_MEM
;
103 static int y_mem
= Y_MEM
;
104 static int x_swap
= X_SWAP
;
105 static int y_swap
= Y_SWAP
;
106 static int y_message
= Y_MESSAGE
;
107 static int x_header
= X_HEADER
;
108 static int y_header
= Y_HEADER
;
109 static int x_idlecursor
= X_IDLECURSOR
;
110 static int y_idlecursor
= Y_IDLECURSOR
;
111 static int y_procs
= Y_PROCS
;
113 /* buffer and colormask that describes the content of the screen */
114 /* these are singly dimensioned arrays -- the row boundaries are
115 determined on the fly.
117 static char *screenbuf
= NULL
;
118 static char *colorbuf
= NULL
;
119 static char scratchbuf
[MAX_COLS
];
120 static int bufsize
= 0;
122 /* lineindex tells us where the beginning of a line is in the buffer */
123 #define lineindex(l) ((l)*MAX_COLS)
125 /* screen's cursor */
126 static int curr_x
, curr_y
;
127 static int curr_color
;
130 static int virt_x
, virt_y
;
132 static char **procstate_names
;
133 static char **cpustate_names
;
134 static char **memory_names
;
135 static char **swap_names
;
136 static char **kernel_names
;
138 static int num_procstates
;
139 static int num_cpustates
;
140 static int num_memory
;
142 static int num_kernel
;
144 static int *lprocstates
;
145 static int *lcpustates
;
147 static int *cpustate_columns
;
148 static int cpustate_total_length
;
150 static int header_status
= Yes
;
152 /* pending messages are stored in a circular buffer, where message_first
153 is the next one to display, and message_last is the last one
154 in the buffer. Counters wrap around at MAX_MESSAGES. The buffer is
155 empty when message_first == message_last and full when
156 message_last + 1 == message_first. The pointer message_current holds
157 the message currently being displayed, or "" if there is none.
159 #define MAX_MESSAGES 16
160 static char *message_buf
[MAX_MESSAGES
];
161 static int message_first
= 0;
162 static int message_last
= 0;
163 static struct timeval message_time
= {0, 0};
164 static char *message_current
= NULL
;
165 static int message_length
= 0;
166 static int message_hold
= 1;
167 static int message_barrier
= No
;
170 static int load_cidx
[3];
171 static int header_cidx
;
172 static int *cpustate_cidx
;
173 static int *memory_cidx
;
174 static int *swap_cidx
;
175 static int *kernel_cidx
;
177 #define memory_cidx NULL
178 #define swap_cidx NULL
179 #define kernel_cidx NULL
183 /* internal support routines */
186 * static int string_count(char **pp)
188 * Pointer "pp" points to an array of string pointers, which is
189 * terminated by a NULL. Return the number of string pointers in
194 string_count(char **pp
)
197 register int cnt
= 0;
201 while (*pp
++ != NULL
)
213 dprintf("display_clear\n");
215 memzero(screenbuf
, bufsize
);
216 memzero(colorbuf
, bufsize
);
221 * void display_move(int x, int y)
223 * Efficiently move the cursor to x, y. This assumes the cursor is
224 * currently located at curr_x, curr_y, and will only use cursor
225 * addressing when it is less expensive than overstriking what's
226 * already on the screen.
230 display_move(int x
, int y
)
238 int color
= curr_color
;
240 dprintf("display_move(%d, %d): curr_x %d, curr_y %d\n", x
, y
, curr_x
, curr_y
);
242 /* are we in a position to do this without cursor addressing? */
243 if (curr_y
< y
|| (curr_y
== y
&& curr_x
<= x
))
245 /* start buffering up what it would take to move there by rewriting
246 what's on the screen */
250 /* one newline for every line */
251 while (cnt
> 0 && curr_y
< y
)
256 p
= strcpyend(p
, color_setstr(0));
267 /* write whats in the screenbuf */
268 bufp
= &screenbuf
[lineindex(curr_y
) + curr_x
];
269 colorp
= &colorbuf
[lineindex(curr_y
) + curr_x
];
270 while (cnt
> 0 && curr_x
< x
)
273 if (color
!= *colorp
)
276 p
= strcpyend(p
, color_setstr(color
));
280 if ((*p
= *bufp
) == '\0')
282 /* somwhere on screen we haven't been before */
293 /* move the cursor */
296 /* screen rewrite is cheaper */
306 /* update our position */
312 * display_write(int x, int y, int newcolor, int eol, char *new)
314 * Optimized write to the display. This writes characters to the
315 * screen in a way that optimizes the number of characters actually
316 * sent, by comparing what is being written to what is already on
317 * the screen (according to screenbuf and colorbuf). The string to
318 * write is "new", the first character of "new" should appear at
319 * screen position x, y. If x is -1 then "new" begins wherever the
320 * cursor is currently positioned. The string is written with color
321 * "newcolor". If "eol" is true then the remainder of the line is
322 * cleared. It is expected that "new" will have no newlines and no
327 display_write(int x
, int y
, int newcolor
, int eol
, char *new)
335 dprintf("display_write(%d, %d, %d, %d, \"%s\")\n",
336 x
, y
, newcolor
, eol
, new);
338 /* dumb terminal handling here */
343 /* make sure we are on the right line */
351 /* make sure we are on the right column */
361 curr_x
+= strlen(new);
366 /* adjust for "here" */
378 /* a pointer to where we start */
379 bufp
= &screenbuf
[lineindex(y
) + x
];
380 colorp
= &colorbuf
[lineindex(y
) + x
];
383 while ((ch
= *new++) != '\0')
385 /* if either character or color are different, an update is needed */
386 /* but only when the screen is wide enough */
387 if (x
< display_width
&& (ch
!= *bufp
|| newcolor
!= *colorp
))
390 if (y
!= curr_y
|| x
!= curr_x
)
392 /* have to move the cursor */
396 /* write character */
398 if (curr_color
!= newcolor
)
400 fputs(color_setstr(newcolor
), stdout
);
401 curr_color
= newcolor
;
406 *colorp
= curr_color
;
418 if (eol
&& *bufp
!= '\0')
420 dprintf("display_write: clear-eol (bufp = \"%s\")\n", bufp
);
421 /* make sure we are color 0 */
425 fputs(color_setstr(0), stdout
);
430 /* make sure we are at the end */
431 if (x
!= curr_x
|| y
!= curr_y
)
439 screen_cleareol(strlen(bufp
));
441 /* clear out whats left of this line's buffer */
442 diff
= display_width
- x
;
446 memzero(colorp
, diff
);
452 display_fmt(int x
, int y
, int newcolor
, int eol
, char *fmt
, ...)
459 vsnprintf(scratchbuf
, MAX_COLS
, fmt
, argp
);
460 display_write(x
, y
, newcolor
, eol
, scratchbuf
);
472 /* is there anything out there that needs to be cleared? */
473 p
= &screenbuf
[lineindex(virt_y
) + virt_x
];
480 /* this line is clear, what about the rest? */
482 while (++y
< screen_length
)
484 if (screenbuf
[lineindex(y
)] != '\0')
494 dprintf("display_cte: clearing\n");
496 /* we will need this later */
497 len
= lineindex(virt_y
) + virt_x
;
499 /* move to x and y, then clear to end */
500 display_move(virt_x
, virt_y
);
503 /* screen has no clear to end, so do it by hand */
508 screen_cleareol(len
);
510 while (++virt_y
< screen_length
)
512 display_move(0, virt_y
);
513 p
= &screenbuf
[lineindex(virt_y
)];
517 screen_cleareol(len
);
522 /* clear the screenbuf */
523 memzero(&screenbuf
[len
], bufsize
- len
);
524 memzero(&colorbuf
[len
], bufsize
- len
);
529 summary_format(int x
, int y
, int *numbers
, char **names
, int *cidx
)
533 register char *thisname
;
534 register char *lastname
= NULL
;
537 /* format each number followed by its string */
538 while ((thisname
= *names
++) != NULL
)
540 /* get the number to format */
544 /* display only non-zero numbers */
547 /* write the previous name */
548 if (lastname
!= NULL
)
550 display_write(-1, -1, 0, 0, lastname
);
557 color
= color_test(*cidx
++, num
);
561 /* write this number if positive */
564 display_write(x
, y
, color
, 0, itoa(num
));
567 /* defer writing this name */
570 /* next iteration will not start at x, y */
575 /* if the last string has a separator on the end, it has to be
577 if (lastname
!= NULL
)
579 if ((num
= strlen(lastname
)) > 1 &&
580 lastname
[num
-2] == ',' && lastname
[num
-1] == ' ')
582 display_fmt(-1, -1, 0, 1, "%.*s", num
-2, lastname
);
586 display_write(-1, -1, 0, 1, lastname
);
592 summary_format_memory(int x
, int y
, long *numbers
, char **names
, int *cidx
)
597 register char *thisname
;
598 register char *lastname
= NULL
;
600 /* format each number followed by its string */
601 while ((thisname
= *names
++) != NULL
)
603 /* get the number to format */
607 /* display only non-zero numbers */
610 /* write the previous name */
611 if (lastname
!= NULL
)
613 display_write(-1, -1, 0, 0, lastname
);
616 /* defer writing this name */
621 color
= color_test(*cidx
++, num
);
624 /* is this number in kilobytes? */
625 if (thisname
[0] == 'K')
627 display_write(x
, y
, color
, 0, format_k(num
));
632 display_write(x
, y
, color
, 0, itoa((int)num
));
635 /* next iteration will not start at x, y */
640 /* if the last string has a separator on the end, it has to be
642 if (lastname
!= NULL
)
644 if ((num
= strlen(lastname
)) > 1 &&
645 lastname
[num
-2] == ',' && lastname
[num
-1] == ' ')
647 display_fmt(-1, -1, 0, 1, "%.*s", num
-2, lastname
);
651 display_write(-1, -1, 0, 1, lastname
);
657 * int display_resize()
659 * Reallocate buffer space needed by the display package to accomodate
660 * a new screen size. Must be called whenever the screen's size has
661 * changed. Returns the number of lines available for displaying
662 * processes or -1 if there was a problem allocating space.
669 register int top_lines
;
670 register int newsize
;
672 /* calculate the current dimensions */
673 /* if operating in "dumb" mode, we only need one line */
674 top_lines
= smart_terminal
? screen_length
: 1;
676 /* we don't want more than MAX_COLS columns, since the machine-dependent
677 modules make static allocations based on MAX_COLS and we don't want
678 to run off the end of their buffers */
679 display_width
= screen_width
;
680 if (display_width
>= MAX_COLS
)
682 display_width
= MAX_COLS
- 1;
685 /* see how much space we need */
686 newsize
= top_lines
* (MAX_COLS
+ 1);
688 /* reallocate only if we need more than we already have */
689 if (newsize
> bufsize
)
691 /* deallocate any previous buffer that may have been there */
692 if (screenbuf
!= NULL
)
696 if (colorbuf
!= NULL
)
701 /* allocate space for the screen and color buffers */
703 screenbuf
= (char *)calloc(bufsize
, sizeof(char));
704 colorbuf
= (char *)calloc(bufsize
, sizeof(char));
705 if (screenbuf
== NULL
|| colorbuf
== NULL
)
713 /* just clear them out */
714 memzero(screenbuf
, bufsize
);
715 memzero(colorbuf
, bufsize
);
718 /* adjust total lines on screen to lines available for procs */
719 top_lines
-= y_procs
;
721 /* return number of lines available */
722 /* for dumb terminals, pretend like we can show any amount */
723 return(smart_terminal
? top_lines
: Largest
);
730 return(smart_terminal
? screen_length
: Largest
);
737 return(display_width
);
741 * int display_init(struct statics *statics)
743 * Initialize the display system based on information in the statics
744 * structure. Returns the number of lines available for displaying
745 * processes or -1 if there was an error.
749 display_init(struct statics
*statics
)
752 register int top_lines
;
758 /* certain things may influence the screen layout,
759 so look at those first */
761 /* More than one core will shif the parts of the display down */
762 if (enable_ncpus
!= 0 && n_cpus
> 1)
764 /* adjust screen placements */
765 y_mem
= y_mem
+ n_cpus
-1;
766 y_swap
= y_swap
+ n_cpus
-1;
767 y_message
= y_message
+ n_cpus
-1;
768 y_header
= y_header
+ n_cpus
-1;
769 y_idlecursor
= y_idlecursor
+ n_cpus
-1;
770 y_procs
= y_procs
+ n_cpus
-1;
773 /* a kernel line shifts parts of the display down */
774 kernel_names
= statics
->kernel_names
;
775 if ((num_kernel
= string_count(kernel_names
)) > 0)
777 /* adjust screen placements */
786 /* a swap line shifts parts of the display down one */
787 swap_names
= statics
->swap_names
;
788 if ((num_swap
= string_count(swap_names
)) > 0)
790 /* adjust screen placements */
797 /* call resize to do the dirty work */
798 top_lines
= display_resize();
801 * save pointers and allocate space for names. Even if top_lines <= -1
802 * the code will dereference many of these pointers and arrays.
804 procstate_names
= statics
->procstate_names
;
805 num_procstates
= string_count(procstate_names
);
807 lprocstates
= (int *)calloc(num_procstates
, sizeof(int));
809 cpustate_names
= statics
->cpustate_names
;
810 num_cpustates
= string_count(cpustate_names
);
811 lcpustates
= (int *)calloc(num_cpustates
, sizeof(int));
812 cpustate_columns
= (int *)calloc(num_cpustates
, sizeof(int));
813 memory_names
= statics
->memory_names
;
814 num_memory
= string_count(memory_names
);
816 /* calculate starting columns where needed */
817 cpustate_total_length
= 0;
819 ip
= cpustate_columns
;
822 *ip
++ = cpustate_total_length
;
823 if ((i
= strlen(*pp
++)) > 0)
825 cpustate_total_length
+= i
+ 8;
830 /* set up color tags for loadavg */
831 load_cidx
[0] = color_tag("1min");
832 load_cidx
[1] = color_tag("5min");
833 load_cidx
[2] = color_tag("15min");
835 /* find header color */
836 header_cidx
= color_tag("header");
838 /* color tags for cpu states */
839 cpustate_cidx
= (int *)malloc(num_cpustates
* sizeof(int));
841 p
= strcpyend(scratchbuf
, "cpu.");
842 while (i
< num_cpustates
)
844 strcpy(p
, cpustate_names
[i
]);
845 cpustate_cidx
[i
++] = color_tag(scratchbuf
);
848 /* color tags for kernel */
851 kernel_cidx
= (int *)malloc(num_kernel
* sizeof(int));
853 p
= strcpyend(scratchbuf
, "kernel.");
854 while (i
< num_kernel
)
856 strcpy(p
, homogenize(kernel_names
[i
]+1));
857 kernel_cidx
[i
++] = color_tag(scratchbuf
);
861 /* color tags for memory */
862 memory_cidx
= (int *)malloc(num_memory
* sizeof(int));
864 p
= strcpyend(scratchbuf
, "memory.");
865 while (i
< num_memory
)
867 strcpy(p
, homogenize(memory_names
[i
]+1));
868 memory_cidx
[i
++] = color_tag(scratchbuf
);
871 /* color tags for swap */
874 swap_cidx
= (int *)malloc(num_swap
* sizeof(int));
876 p
= strcpyend(scratchbuf
, "swap.");
879 strcpy(p
, homogenize(swap_names
[i
]+1));
880 swap_cidx
[i
++] = color_tag(scratchbuf
);
885 /* return number of lines available (or error) */
890 pr_loadavg(double avg
, int i
)
896 color
= color_test(load_cidx
[i
], (int)(avg
* 100));
898 display_fmt(x_loadave
+ X_LOADAVEWIDTH
* i
, y_loadave
, color
, 0,
899 avg
< 10.0 ? " %5.2f" : " %5.1f", avg
);
900 display_write(-1, -1, 0, 0, (i
< 2 ? "," : ";"));
904 i_loadave(int mpid
, double *avenrun
)
909 /* mpid == -1 implies this system doesn't have an _mpid */
912 display_fmt(0, 0, 0, 0,
913 "last pid: %5d; load avg:", mpid
);
914 x_loadave
= X_LOADAVE
;
918 display_write(0, 0, 0, 0, "load averages:");
919 x_loadave
= X_LOADAVE
- X_LASTPIDWIDTH
;
921 for (i
= 0; i
< 3; i
++)
923 pr_loadavg(avenrun
[i
], i
);
930 u_loadave(int mpid
, double *avenrun
)
937 /* change screen only when value has really changed */
940 display_fmt(x_lastpid
, y_lastpid
, 0, 0,
946 /* display new load averages */
947 for (i
= 0; i
< 3; i
++)
949 pr_loadavg(avenrun
[i
], i
);
953 static char minibar_buffer
[64];
954 #define MINIBAR_WIDTH 20
957 i_minibar(int (*formatter
)(char *, int))
959 (void)((*formatter
)(minibar_buffer
, MINIBAR_WIDTH
));
961 display_write(x_minibar
, y_minibar
, 0, 0, minibar_buffer
);
965 u_minibar(int (*formatter
)(char *, int))
967 (void)((*formatter
)(minibar_buffer
, MINIBAR_WIDTH
));
969 display_write(x_minibar
, y_minibar
, 0, 0, minibar_buffer
);
972 static int uptime_days
;
973 static int uptime_hours
;
974 static int uptime_mins
;
975 static int uptime_secs
;
978 i_uptime(time_t *bt
, time_t *tod
)
987 uptime_days
= uptime
/ 86400;
989 uptime_hours
= uptime
/ 3600;
991 uptime_mins
= uptime
/ 60;
992 uptime_secs
= uptime
% 60;
995 * Display the uptime.
998 display_fmt(x_uptime
, y_uptime
, 0, 0,
999 " up %d+%02d:%02d:%02d",
1000 uptime_days
, uptime_hours
, uptime_mins
, uptime_secs
);
1005 u_uptime(time_t *bt
, time_t *tod
)
1013 i_timeofday(time_t *tod
)
1017 * Display the current time.
1018 * "ctime" always returns a string that looks like this:
1020 * Sun Sep 16 01:03:52 1973
1021 * 012345678901234567890123
1024 * We want indices 11 thru 18 (length 8).
1029 /* where on the screen do we start? */
1030 x
= (smart_terminal
? screen_width
: 79) - 8;
1032 /* but don't bump in to uptime */
1033 if (x
< x_uptime
+ 19)
1039 display_fmt(x
, 0, 0, 1, "%-8.8s", &(ctime(tod
)[11]));
1042 static int ltotal
= 0;
1043 static int lthreads
= 0;
1046 * *_procstates(total, brkdn, names) - print the process summary line
1051 i_procstates(int total
, int *brkdn
, int threads
)
1054 /* write current number of processes and remember the value */
1055 display_fmt(0, y_procstate
, 0, 0,
1056 "%d %s: ", total
, threads
? "threads" : "processes");
1059 /* remember where the summary starts */
1060 x_procstate
= virt_x
;
1064 /* format and print the process state summary */
1065 summary_format(-1, -1, brkdn
, procstate_names
, NULL
);
1067 /* save the numbers for next time */
1068 memcpy(lprocstates
, brkdn
, num_procstates
* sizeof(int));
1074 u_procstates(int total
, int *brkdn
, int threads
)
1077 /* if threads state has changed, do a full update */
1078 if (lthreads
!= threads
)
1080 i_procstates(total
, brkdn
, threads
);
1084 /* update number of processes only if it has changed */
1085 if (ltotal
!= total
)
1087 display_fmt(0, y_procstate
, 0, 0,
1090 /* if number of digits differs, rewrite the label */
1091 if (digits(total
) != digits(ltotal
))
1093 display_fmt(-1, -1, 0, 0, " %s: ", threads
? "threads" : "processes");
1094 x_procstate
= virt_x
;
1097 /* save new total */
1101 /* see if any of the state numbers has changed */
1102 if (total
> 0 && memcmp(lprocstates
, brkdn
, num_procstates
* sizeof(int)) != 0)
1104 /* format and update the line */
1105 summary_format(x_procstate
, y_procstate
, brkdn
, procstate_names
, NULL
);
1106 memcpy(lprocstates
, brkdn
, num_procstates
* sizeof(int));
1111 * *_cpustates(states, names) - print the cpu state percentages
1114 /* cpustates_tag() calculates the correct tag to use to label the line */
1122 static char *short_tag
= "CPU: ";
1123 static char *long_tag
= "CPU states: ";
1125 /* if length + strlen(long_tag) >= screen_width, then we have to
1126 use the shorter tag (we subtract 2 to account for ": ") */
1127 if (cpustate_total_length
+ (int)strlen(long_tag
) - 2 >= screen_width
)
1136 /* set x_cpustates accordingly then return result */
1137 x_cpustates
= strlen(use
);
1142 i_cpustates(int *states
)
1152 int *cidx
= cpustate_cidx
;
1156 names
= cpustate_names
;
1157 colp
= cpustate_columns
;
1160 if (enable_ncpus
!=0 && n_cpus
> 1) {
1161 for (cpu
= 0; cpu
< n_cpus
; ++cpu
) {
1162 int y_pos
= y_cpustates
;
1163 y_pos
= y_pos
+ cpu
;
1164 colp
= cpustate_columns
;
1165 names
= cpustate_names
;
1166 display_write(0, y_cpustates
+cpu
, 0, 0, cpustates_tag());
1168 /* now walk thru the names and print the line */
1169 while ((thisname
= *names
++) != NULL
) {
1170 if (*thisname
!= '\0') {
1171 /* retrieve the value and remember it */
1175 /* determine color number to use */
1176 color
= color_test(*cidx
++, value
/10);
1178 /* if percentage is >= 1000, print it as 100% */
1179 display_fmt(x_cpustates
+ *colp
, y_pos
,
1181 (value
>= 1000 ? "%4.0f%% %s%s" : "%4.1f%% %s%s"),
1184 *names
!= NULL
? ", " : "");
1191 /* copy over values into "last" array */
1192 memcpy(lcpustates
, states
, num_cpustates
* sizeof(int));
1195 display_write(0, y_cpustates
, 0, 0, cpustates_tag());
1197 /* now walk thru the names and print the line */
1198 while ((thisname
= *names
++) != NULL
)
1200 if (*thisname
!= '\0')
1202 /* retrieve the value and remember it */
1206 /* determine color number to use */
1207 color
= color_test(*cidx
++, value
/10);
1210 /* if percentage is >= 1000, print it as 100% */
1211 display_fmt(x_cpustates
+ *colp
, y_cpustates
,
1213 (value
>= 1000 ? "%4.0f%% %s%s" : "%4.1f%% %s%s"),
1216 *names
!= NULL
? ", " : "");
1224 /* copy over values into "last" array */
1225 memcpy(lcpustates
, states
, num_cpustates
* sizeof(int));
1231 u_cpustates(int *states
)
1235 char **names
= cpustate_names
;
1242 int *cidx
= cpustate_cidx
;
1246 if (enable_ncpus
!= 0 && n_cpus
> 1 ) {
1247 for (cpu
= 0; cpu
< n_cpus
; ++cpu
) {
1249 int y_pos
= y_cpustates
;
1250 y_pos
= y_pos
+ cpu
;
1251 colp
= cpustate_columns
;
1252 char **names
= cpustate_names
;
1253 /* we could be much more optimal about this */
1254 while ((thisname
= *names
++) != NULL
) {
1255 if (*thisname
!= '\0') {
1256 /* yes, change it */
1257 /* retrieve value and remember it */
1261 /* determine color number to use */
1262 color
= color_test(*cidx
, value
/10);
1264 /* if percentage is >= 1000, print it as 100% */
1265 display_fmt(x_cpustates
+ *colp
, y_pos
, color
, 0,
1266 (value
>= 1000 ? "%4.0f" : "%4.1f"),
1267 ((double)value
)/10.);
1273 /* increment and move on */
1281 colp
= cpustate_columns
;
1283 /* we could be much more optimal about this */
1284 while ((thisname
= *names
++) != NULL
)
1286 if (*thisname
!= '\0')
1288 /* did the value change since last time? */
1291 /* yes, change it */
1292 /* retrieve value and remember it */
1296 /* determine color number to use */
1297 color
= color_test(*cidx
, value
/10);
1300 /* if percentage is >= 1000, print it as 100% */
1301 display_fmt(x_cpustates
+ *colp
, y_cpustates
, color
, 0,
1302 (value
>= 1000 ? "%4.0f" : "%4.1f"),
1303 ((double)value
)/10.);
1305 /* remember it for next time */
1313 /* increment and move on */
1326 register char **names
= cpustate_names
;
1327 register char *thisname
;
1332 if (enable_ncpus
!= 0 && n_cpus
> 1) {
1333 for (cpu
= 0; cpu
< n_cpus
; ++cpu
) {
1334 display_write(0, y_cpustates
+ cpu
, 0, 0, cpustates_tag());
1335 char **names
= cpustate_names
;
1337 while ((thisname
= *names
++) != NULL
) {
1338 if (*thisname
!= '\0') {
1339 display_fmt(-1, -1, 0, 0, "%s %% %s", i
++ == 0 ? "" : ", ",
1343 /* fill the "last" array with all -1s, to insure correct updating */
1351 display_write(0, y_cpustates
, 0, 0, cpustates_tag());
1353 while ((thisname
= *names
++) != NULL
)
1355 if (*thisname
!= '\0')
1357 display_fmt(-1, -1, 0, 0, "%s %% %s", i
++ == 0 ? "" : ", ",
1362 /* fill the "last" array with all -1s, to insure correct updating */
1373 * *_kernel(stats) - print "Kernel: " followed by the kernel summary string
1375 * Assumptions: cursor is on "lastline", the previous line
1379 i_kernel(int *stats
)
1384 display_write(0, y_kernel
, 0, 0, "Kernel: ");
1386 /* format and print the kernel summary */
1387 summary_format(x_kernel
, y_kernel
, stats
, kernel_names
, kernel_cidx
);
1392 u_kernel(int *stats
)
1397 /* format the new line */
1398 summary_format(x_kernel
, y_kernel
, stats
, kernel_names
, kernel_cidx
);
1403 * *_memory(stats) - print "Memory: " followed by the memory summary string
1405 * Assumptions: cursor is on "lastline", the previous line
1409 i_memory(long *stats
)
1412 display_write(0, y_mem
, 0, 0, "Memory: ");
1414 /* format and print the memory summary */
1415 summary_format_memory(x_mem
, y_mem
, stats
, memory_names
, memory_cidx
);
1419 u_memory(long *stats
)
1422 /* format the new line */
1423 summary_format_memory(x_mem
, y_mem
, stats
, memory_names
, memory_cidx
);
1427 * *_swap(stats) - print "Swap: " followed by the swap summary string
1429 * Assumptions: cursor is on "lastline", the previous line
1431 * These functions only print something when num_swap > 0
1441 display_write(0, y_swap
, 0, 0, "Swap: ");
1443 /* format and print the swap summary */
1444 summary_format_memory(x_swap
, y_swap
, stats
, swap_names
, swap_cidx
);
1454 /* format the new line */
1455 summary_format_memory(x_swap
, y_swap
, stats
, swap_names
, swap_cidx
);
1460 * *_message() - print the next pending message line, or erase the one
1463 * Note that u_message is (currently) the same as i_message.
1465 * Assumptions: lastline is consistent
1469 * i_message is funny because it gets its message asynchronously (with
1470 * respect to screen updates). Messages are taken out of the
1471 * circular message_buf and displayed one at a time.
1475 i_message(struct timeval
*now
)
1478 struct timeval my_now
;
1481 dprintf("i_message(%08x)\n", now
);
1483 /* if now is NULL we have to get it ourselves */
1490 /* now that we have been called, messages no longer need to be held */
1493 dprintf("i_message: now %d, message_time %d\n",
1494 now
->tv_sec
, message_time
.tv_sec
);
1498 /* is it time to change the message? */
1499 if (timercmp(now
, &message_time
, > ))
1501 /* yes, free the current message */
1502 dprintf("i_message: timer expired\n");
1503 if (message_current
!= NULL
)
1505 free(message_current
);
1506 message_current
= NULL
;
1509 /* is there a new message to be displayed? */
1510 if (message_first
!= message_last
)
1512 /* move index to next message */
1513 if (++message_first
== MAX_MESSAGES
) message_first
= 0;
1515 /* make the next message the current one */
1516 message_current
= message_buf
[message_first
];
1519 dprintf("i_message: showing \"%s\"\n", message_current
);
1520 display_move(0, y_message
);
1521 screen_standout(message_current
);
1522 i
= strlen(message_current
);
1524 /* set the expiration timer */
1525 message_time
= *now
;
1526 message_time
.tv_sec
+= MESSAGE_DISPLAY_TIME
;
1528 /* clear the rest of the line */
1529 screen_cleareol(message_length
- i
);
1535 /* just clear what was there before, if anything */
1536 if (message_length
> 0)
1538 display_move(0, y_message
);
1539 screen_cleareol(message_length
);
1549 u_message(struct timeval
*now
)
1555 static int header_length
;
1558 * *_header(text) - print the header for the process area
1560 * Assumptions: cursor is on the previous line and lastline is consistent
1564 i_header(char *text
)
1567 int header_color
= 0;
1570 header_color
= color_test(header_cidx
, 0);
1572 header_length
= strlen(text
);
1575 display_write(x_header
, y_header
, header_color
, 1, text
);
1581 u_header(char *text
)
1584 int header_color
= 0;
1587 header_color
= color_test(header_cidx
, 0);
1589 display_write(x_header
, y_header
, header_color
, 1,
1590 header_status
? text
: "");
1594 * *_process(line, thisline) - print one process line
1596 * Assumptions: lastline is consistent
1600 i_process(int line
, char *thisline
)
1603 /* truncate the line to conform to our current screen width */
1604 thisline
[display_width
] = '\0';
1606 /* write the line out */
1607 display_write(0, y_procs
+ line
, 0, 1, thisline
);
1611 u_process(int line
, char *new_line
)
1614 i_process(line
, new_line
);
1623 /* move the cursor to a pleasant place */
1624 display_move(x_idlecursor
, y_idlecursor
);
1628 /* separate this display from the next with some vertical room */
1629 fputs("\n\n", stdout
);
1640 /* clear-to-end the display */
1643 /* move the cursor to a pleasant place */
1644 display_move(x_idlecursor
, y_idlecursor
);
1649 /* separate this display from the next with some vertical room */
1650 fputs("\n\n", stdout
);
1655 display_header(int t
)
1658 header_status
= t
!= 0;
1665 message_barrier
= Yes
;
1672 message_time
.tv_sec
= 0;
1673 message_time
.tv_usec
= 0;
1680 message_first
= message_last
;
1681 message_time
.tv_sec
= 0;
1682 message_time
.tv_usec
= 0;
1686 * void new_message_v(char *msgfmt, va_list ap)
1688 * Display a message in the message area. This function takes a va_list for
1689 * the arguments. Safe to call before display_init. This function only
1690 * queues a message for display, and allowed for multiple messages to be
1691 * queued. The i_message function drains the queue and actually writes the
1692 * messages on the display.
1697 new_message_v(char *msgfmt
, va_list ap
)
1704 /* if message_barrier is active, remove all pending messages */
1705 if (message_barrier
)
1708 message_barrier
= No
;
1711 /* first, format the message */
1712 (void) vsnprintf(msg
, sizeof(msg
), msgfmt
, ap
);
1714 /* where in the buffer will it go? */
1715 i
= message_last
+ 1;
1716 if (i
>= MAX_MESSAGES
) i
= 0;
1718 /* make sure the buffer is not full */
1719 if (i
!= message_first
)
1721 /* insert it in to message_buf */
1722 message_buf
[i
] = strdup(msg
);
1723 dprintf("new_message_v: new message inserted in slot %d\n", i
);
1725 /* remember if the buffer is empty and set the index */
1726 empty
= message_last
== message_first
;
1729 /* is message_buf otherwise empty and have we started displaying? */
1730 if (empty
&& !message_hold
)
1732 /* we can display the message now */
1739 * void new_message(int type, char *msgfmt, ...)
1741 * Display a message in the message area. It is safe to call this function
1742 * before display_init. Messages logged before the display is drawn will be
1743 * held and displayed later.
1747 new_message(char *msgfmt
, ...)
1752 va_start(ap
, msgfmt
);
1753 new_message_v(msgfmt
, ap
);
1758 * void message_error(char *msgfmt, ...)
1760 * Put an error message in the message area. It is safe to call this function
1761 * before display_init. Messages logged before the display is drawn will be
1762 * held and displayed later.
1766 message_error(char *msgfmt
, ...)
1771 va_start(ap
, msgfmt
);
1772 new_message_v(msgfmt
, ap
);
1778 * void message_clear()
1780 * Clear message area and flush all pending messages.
1787 /* remove any existing message */
1788 if (message_current
!= NULL
)
1790 display_move(0, y_message
);
1791 screen_cleareol(message_length
);
1792 free(message_current
);
1793 message_current
= 0;
1796 /* flush all pending messages */
1801 * void message_prompt_v(int so, char *msgfmt, va_list ap)
1803 * Place a prompt in the message area. A prompt is different from a
1804 * message as follows: it is displayed immediately, overwriting any
1805 * message that may already be there, it may be highlighted in standout
1806 * mode (if "so" is true), the cursor is left to rest at the end of the
1807 * prompt. This call causes all pending messages to be flushed.
1811 message_prompt_v(int so
, char *msgfmt
, va_list ap
)
1817 /* clear out the message buffer */
1820 /* format the message */
1821 i
= vsnprintf(msg
, sizeof(msg
), msgfmt
, ap
);
1823 /* this goes over any existing message */
1824 display_move(0, y_message
);
1826 /* clear the entire line */
1827 screen_cleareol(message_length
);
1829 /* show the prompt */
1832 screen_standout(msg
);
1839 /* make it all visible */
1842 /* even though we dont keep a copy of the prompt, track its length */
1843 message_length
= i
< MAX_COLS
? i
: MAX_COLS
;
1847 * void message_prompt(char *msgfmt, ...)
1849 * Place a prompt in the message area (see message_prompt_v).
1853 message_prompt(char *msgfmt
, ...)
1858 va_start(ap
, msgfmt
);
1859 message_prompt_v(Yes
, msgfmt
, ap
);
1864 message_prompt_plain(char *msgfmt
, ...)
1869 va_start(ap
, msgfmt
);
1870 message_prompt_v(No
, msgfmt
, ap
);
1875 * int readline(char *buffer, int size, int numeric)
1877 * Read a line of input from the terminal. The line is placed in
1878 * "buffer" not to exceed "size". If "numeric" is true then the input
1879 * can only consist of digits. This routine handles all character
1880 * editing while keeping the terminal in cbreak mode. If "numeric"
1881 * is true then the number entered is returned. Otherwise the number
1882 * of character read in to "buffer" is returned.
1886 readline(char *buffer
, int size
, int numeric
)
1889 register char *ptr
= buffer
;
1891 register char cnt
= 0;
1893 /* allow room for null terminator */
1897 while ((fflush(stdout
), read(0, ptr
, 1) > 0))
1899 /* newline or return means we are done */
1900 if ((ch
= *ptr
) == '\n' || ch
== '\r')
1905 /* handle special editing characters */
1908 /* return null string */
1913 else if (ch
== ch_werase
)
1915 /* erase previous word */
1918 /* none to erase! */
1924 * First: remove all spaces till the first-non-space
1925 * Second: remove all non-spaces till the first-space
1927 while(cnt
> 0 && ptr
[-1] == ' ')
1929 fputs("\b \b", stdout
);
1933 while(cnt
> 0 && ptr
[-1] != ' ')
1935 fputs("\b \b", stdout
);
1941 else if (ch
== ch_erase
)
1943 /* erase previous character */
1946 /* none to erase! */
1951 fputs("\b \b", stdout
);
1956 /* check for character validity and buffer overflow */
1957 else if (cnt
== size
|| (numeric
&& !isdigit((int)ch
)) ||
1965 /* echo it and store it in the buffer */
1972 /* all done -- null terminate the string */
1975 /* add response length to message_length */
1976 message_length
+= cnt
;
1978 /* return either inputted number or string length */
1980 return(cnt
== 0 ? -1 : numeric
? atoi(buffer
) : cnt
);
1984 display_pagerstart()
1996 screen_standout("Hit any key to continue: ");
1998 (void) read(0, &ch
, 1);
2002 display_pager(char *fmt
, ...)
2009 char buffer
[MAX_COLS
];
2012 /* format into buffer */
2014 (void) vsnprintf(buffer
, MAX_COLS
, fmt
, ap
);
2018 while ((ch
= *data
++) != '\0')
2023 if (++curr_y
>= screen_length
- 1)
2025 screen_standout("...More...");
2027 (void) read(0, &readch
, 1);