1 /* 2 * Top users/processes display for Unix 3 * Version 3 4 * 5 * This program may be freely redistributed, 6 * but this entire comment MUST remain intact. 7 * 8 * Copyright (c) 1984, 1989, William LeFebvre, Rice University 9 * Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University 10 * 11 * $FreeBSD$ 12 */ 13 14 /* 15 * This file contains the routines that display information on the screen. 16 * Each section of the screen has two routines: one for initially writing 17 * all constant and dynamic text, and one for only updating the text that 18 * changes. The prefix "i_" is used on all the "initial" routines and the 19 * prefix "u_" is used for all the "updating" routines. 20 * 21 * ASSUMPTIONS: 22 * None of the "i_" routines use any of the termcap capabilities. 23 * In this way, those routines can be safely used on terminals that 24 * have minimal (or nonexistant) terminal capabilities. 25 * 26 * The routines are called in this order: *_loadave, i_timeofday, 27 * *_procstates, *_cpustates, *_memory, *_message, *_header, 28 * *_process, u_endscreen. 29 */ 30 31 #include <sys/time.h> 32 33 #include <curses.h> 34 #include <ctype.h> 35 #include <stdlib.h> 36 #include <string.h> 37 #include <strings.h> 38 #include <termcap.h> 39 #include <time.h> 40 #include <unistd.h> 41 42 #include "screen.h" /* interface to screen package */ 43 #include "layout.h" /* defines for screen position layout */ 44 #include "display.h" 45 #include "top.h" 46 #include "top.local.h" 47 #include "boolean.h" 48 #include "machine.h" /* we should eliminate this!!! */ 49 #include "utils.h" 50 51 #ifdef DEBUG 52 FILE *debug; 53 #endif 54 55 /* imported from screen.c */ 56 extern int overstrike; 57 58 static int lmpid = 0; 59 static int last_hi = 0; /* used in u_process and u_endscreen */ 60 static int lastline = 0; 61 static int display_width = MAX_COLS; 62 63 #define lineindex(l) ((l)*display_width) 64 65 66 /* things initialized by display_init and used thruout */ 67 68 /* buffer of proc information lines for display updating */ 69 char *screenbuf = NULL; 70 71 static char **procstate_names; 72 static char **cpustate_names; 73 static char **memory_names; 74 static char **arc_names; 75 static char **carc_names; 76 static char **swap_names; 77 78 static int num_procstates; 79 static int num_cpustates; 80 static int num_memory; 81 static int num_swap; 82 83 static int *lprocstates; 84 static int *lcpustates; 85 static int *lmemory; 86 static int *lswap; 87 88 static int num_cpus; 89 static int *cpustate_columns; 90 static int cpustate_total_length; 91 static int cpustates_column; 92 93 static enum { OFF, ON, ERASE } header_status = ON; 94 95 static int string_count(); 96 static void summary_format(); 97 static void line_update(); 98 99 int x_lastpid = 10; 100 int y_lastpid = 0; 101 int x_loadave = 33; 102 int x_loadave_nompid = 15; 103 int y_loadave = 0; 104 int x_procstate = 0; 105 int y_procstate = 1; 106 int x_brkdn = 15; 107 int y_brkdn = 1; 108 int x_mem = 5; 109 int y_mem = 3; 110 int x_arc = 5; 111 int y_arc = 4; 112 int x_carc = 5; 113 int y_carc = 5; 114 int x_swap = 6; 115 int y_swap = 4; 116 int y_message = 5; 117 int x_header = 0; 118 int y_header = 6; 119 int x_idlecursor = 0; 120 int y_idlecursor = 5; 121 int y_procs = 7; 122 123 int y_cpustates = 2; 124 int Header_lines = 7; 125 126 int display_resize() 127 128 { 129 int lines; 130 131 /* first, deallocate any previous buffer that may have been there */ 132 if (screenbuf != NULL) 133 { 134 free(screenbuf); 135 } 136 137 /* calculate the current dimensions */ 138 /* if operating in "dumb" mode, we only need one line */ 139 lines = smart_terminal ? screen_length - Header_lines : 1; 140 141 if (lines < 0) 142 lines = 0; 143 /* we don't want more than MAX_COLS columns, since the machine-dependent 144 modules make static allocations based on MAX_COLS and we don't want 145 to run off the end of their buffers */ 146 display_width = screen_width; 147 if (display_width >= MAX_COLS) 148 { 149 display_width = MAX_COLS - 1; 150 } 151 152 /* now, allocate space for the screen buffer */ 153 screenbuf = (char *)malloc(lines * display_width); 154 if (screenbuf == (char *)NULL) 155 { 156 /* oops! */ 157 return(-1); 158 } 159 160 /* return number of lines available */ 161 /* for dumb terminals, pretend like we can show any amount */ 162 return(smart_terminal ? lines : Largest); 163 } 164 165 int display_updatecpus(statics) 166 167 struct statics *statics; 168 169 { 170 int *lp; 171 int lines; 172 int i; 173 174 /* call resize to do the dirty work */ 175 lines = display_resize(); 176 if (pcpu_stats) 177 num_cpus = statics->ncpus; 178 else 179 num_cpus = 1; 180 cpustates_column = 5; /* CPU: */ 181 if (num_cpus != 1) 182 cpustates_column += 2; /* CPU 0: */ 183 for (i = num_cpus; i > 9; i /= 10) 184 cpustates_column++; 185 186 /* fill the "last" array with all -1s, to insure correct updating */ 187 lp = lcpustates; 188 i = num_cpustates * num_cpus; 189 while (--i >= 0) 190 { 191 *lp++ = -1; 192 } 193 194 return(lines); 195 } 196 197 int display_init(statics) 198 199 struct statics *statics; 200 201 { 202 int lines; 203 char **pp; 204 int *ip; 205 int i; 206 207 lines = display_updatecpus(statics); 208 209 /* only do the rest if we need to */ 210 if (lines > -1) 211 { 212 /* save pointers and allocate space for names */ 213 procstate_names = statics->procstate_names; 214 num_procstates = string_count(procstate_names); 215 lprocstates = (int *)malloc(num_procstates * sizeof(int)); 216 217 cpustate_names = statics->cpustate_names; 218 219 swap_names = statics->swap_names; 220 num_swap = string_count(swap_names); 221 lswap = (int *)malloc(num_swap * sizeof(int)); 222 num_cpustates = string_count(cpustate_names); 223 lcpustates = (int *)malloc(num_cpustates * sizeof(int) * statics->ncpus); 224 cpustate_columns = (int *)malloc(num_cpustates * sizeof(int)); 225 226 memory_names = statics->memory_names; 227 num_memory = string_count(memory_names); 228 lmemory = (int *)malloc(num_memory * sizeof(int)); 229 230 arc_names = statics->arc_names; 231 carc_names = statics->carc_names; 232 233 /* calculate starting columns where needed */ 234 cpustate_total_length = 0; 235 pp = cpustate_names; 236 ip = cpustate_columns; 237 while (*pp != NULL) 238 { 239 *ip++ = cpustate_total_length; 240 if ((i = strlen(*pp++)) > 0) 241 { 242 cpustate_total_length += i + 8; 243 } 244 } 245 } 246 247 /* return number of lines available */ 248 return(lines); 249 } 250 251 void 252 i_loadave(mpid, avenrun) 253 254 int mpid; 255 double *avenrun; 256 257 { 258 int i; 259 260 /* i_loadave also clears the screen, since it is first */ 261 top_clear(); 262 263 /* mpid == -1 implies this system doesn't have an _mpid */ 264 if (mpid != -1) 265 { 266 printf("last pid: %5d; ", mpid); 267 } 268 269 printf("load averages"); 270 271 for (i = 0; i < 3; i++) 272 { 273 printf("%c %5.2f", 274 i == 0 ? ':' : ',', 275 avenrun[i]); 276 } 277 lmpid = mpid; 278 } 279 280 void 281 u_loadave(mpid, avenrun) 282 283 int mpid; 284 double *avenrun; 285 286 { 287 int i; 288 289 if (mpid != -1) 290 { 291 /* change screen only when value has really changed */ 292 if (mpid != lmpid) 293 { 294 Move_to(x_lastpid, y_lastpid); 295 printf("%5d", mpid); 296 lmpid = mpid; 297 } 298 299 /* i remembers x coordinate to move to */ 300 i = x_loadave; 301 } 302 else 303 { 304 i = x_loadave_nompid; 305 } 306 307 /* move into position for load averages */ 308 Move_to(i, y_loadave); 309 310 /* display new load averages */ 311 /* we should optimize this and only display changes */ 312 for (i = 0; i < 3; i++) 313 { 314 printf("%s%5.2f", 315 i == 0 ? "" : ", ", 316 avenrun[i]); 317 } 318 } 319 320 void 321 i_timeofday(tod) 322 323 time_t *tod; 324 325 { 326 /* 327 * Display the current time. 328 * "ctime" always returns a string that looks like this: 329 * 330 * Sun Sep 16 01:03:52 1973 331 * 012345678901234567890123 332 * 1 2 333 * 334 * We want indices 11 thru 18 (length 8). 335 */ 336 337 if (smart_terminal) 338 { 339 Move_to(screen_width - 8, 0); 340 } 341 else 342 { 343 fputs(" ", stdout); 344 } 345 #ifdef DEBUG 346 { 347 char *foo; 348 foo = ctime(tod); 349 fputs(foo, stdout); 350 } 351 #endif 352 printf("%-8.8s\n", &(ctime(tod)[11])); 353 lastline = 1; 354 } 355 356 static int ltotal = 0; 357 static char procstates_buffer[MAX_COLS]; 358 359 /* 360 * *_procstates(total, brkdn, names) - print the process summary line 361 * 362 * Assumptions: cursor is at the beginning of the line on entry 363 * lastline is valid 364 */ 365 366 void 367 i_procstates(total, brkdn) 368 369 int total; 370 int *brkdn; 371 372 { 373 int i; 374 375 /* write current number of processes and remember the value */ 376 printf("%d processes:", total); 377 ltotal = total; 378 379 /* put out enough spaces to get to column 15 */ 380 i = digits(total); 381 while (i++ < 4) 382 { 383 putchar(' '); 384 } 385 386 /* format and print the process state summary */ 387 summary_format(procstates_buffer, brkdn, procstate_names); 388 fputs(procstates_buffer, stdout); 389 390 /* save the numbers for next time */ 391 memcpy(lprocstates, brkdn, num_procstates * sizeof(int)); 392 } 393 394 void 395 u_procstates(total, brkdn) 396 397 int total; 398 int *brkdn; 399 400 { 401 static char new[MAX_COLS]; 402 int i; 403 404 /* update number of processes only if it has changed */ 405 if (ltotal != total) 406 { 407 /* move and overwrite */ 408 #if (x_procstate == 0) 409 Move_to(x_procstate, y_procstate); 410 #else 411 /* cursor is already there...no motion needed */ 412 /* assert(lastline == 1); */ 413 #endif 414 printf("%d", total); 415 416 /* if number of digits differs, rewrite the label */ 417 if (digits(total) != digits(ltotal)) 418 { 419 fputs(" processes:", stdout); 420 /* put out enough spaces to get to column 15 */ 421 i = digits(total); 422 while (i++ < 4) 423 { 424 putchar(' '); 425 } 426 /* cursor may end up right where we want it!!! */ 427 } 428 429 /* save new total */ 430 ltotal = total; 431 } 432 433 /* see if any of the state numbers has changed */ 434 if (memcmp(lprocstates, brkdn, num_procstates * sizeof(int)) != 0) 435 { 436 /* format and update the line */ 437 summary_format(new, brkdn, procstate_names); 438 line_update(procstates_buffer, new, x_brkdn, y_brkdn); 439 memcpy(lprocstates, brkdn, num_procstates * sizeof(int)); 440 } 441 } 442 443 #ifdef no_more 444 /* 445 * *_cpustates(states, names) - print the cpu state percentages 446 * 447 * Assumptions: cursor is on the PREVIOUS line 448 */ 449 450 /* cpustates_tag() calculates the correct tag to use to label the line */ 451 452 char *cpustates_tag() 453 454 { 455 char *use; 456 457 static char *short_tag = "CPU: "; 458 static char *long_tag = "CPU states: "; 459 460 /* if length + strlen(long_tag) >= screen_width, then we have to 461 use the shorter tag (we subtract 2 to account for ": ") */ 462 if (cpustate_total_length + (int)strlen(long_tag) - 2 >= screen_width) 463 { 464 use = short_tag; 465 } 466 else 467 { 468 use = long_tag; 469 } 470 471 /* set cpustates_column accordingly then return result */ 472 cpustates_column = strlen(use); 473 return(use); 474 } 475 #endif 476 477 void 478 i_cpustates(states) 479 480 int *states; 481 482 { 483 int i = 0; 484 int value; 485 char **names; 486 char *thisname; 487 int cpu; 488 489 for (cpu = 0; cpu < num_cpus; cpu++) { 490 names = cpustate_names; 491 492 /* print tag and bump lastline */ 493 if (num_cpus == 1) 494 printf("\nCPU: "); 495 else { 496 value = printf("\nCPU %d: ", cpu); 497 while (value++ <= cpustates_column) 498 printf(" "); 499 } 500 lastline++; 501 502 /* now walk thru the names and print the line */ 503 while ((thisname = *names++) != NULL) 504 { 505 if (*thisname != '\0') 506 { 507 /* retrieve the value and remember it */ 508 value = *states++; 509 510 /* if percentage is >= 1000, print it as 100% */ 511 printf((value >= 1000 ? "%s%4.0f%% %s" : "%s%4.1f%% %s"), 512 (i++ % num_cpustates) == 0 ? "" : ", ", 513 ((float)value)/10., 514 thisname); 515 } 516 } 517 } 518 519 /* copy over values into "last" array */ 520 memcpy(lcpustates, states, num_cpustates * sizeof(int) * num_cpus); 521 } 522 523 void 524 u_cpustates(states) 525 526 int *states; 527 528 { 529 int value; 530 char **names; 531 char *thisname; 532 int *lp; 533 int *colp; 534 int cpu; 535 536 for (cpu = 0; cpu < num_cpus; cpu++) { 537 names = cpustate_names; 538 539 Move_to(cpustates_column, y_cpustates + cpu); 540 lastline = y_cpustates + cpu; 541 lp = lcpustates + (cpu * num_cpustates); 542 colp = cpustate_columns; 543 544 /* we could be much more optimal about this */ 545 while ((thisname = *names++) != NULL) 546 { 547 if (*thisname != '\0') 548 { 549 /* did the value change since last time? */ 550 if (*lp != *states) 551 { 552 /* yes, move and change */ 553 Move_to(cpustates_column + *colp, y_cpustates + cpu); 554 lastline = y_cpustates + cpu; 555 556 /* retrieve value and remember it */ 557 value = *states; 558 559 /* if percentage is >= 1000, print it as 100% */ 560 printf((value >= 1000 ? "%4.0f" : "%4.1f"), 561 ((double)value)/10.); 562 563 /* remember it for next time */ 564 *lp = value; 565 } 566 } 567 568 /* increment and move on */ 569 lp++; 570 states++; 571 colp++; 572 } 573 } 574 } 575 576 void 577 z_cpustates() 578 579 { 580 int i = 0; 581 char **names; 582 char *thisname; 583 int *lp; 584 int cpu, value; 585 586 for (cpu = 0; cpu < num_cpus; cpu++) { 587 names = cpustate_names; 588 589 /* show tag and bump lastline */ 590 if (num_cpus == 1) 591 printf("\nCPU: "); 592 else { 593 value = printf("\nCPU %d: ", cpu); 594 while (value++ <= cpustates_column) 595 printf(" "); 596 } 597 lastline++; 598 599 while ((thisname = *names++) != NULL) 600 { 601 if (*thisname != '\0') 602 { 603 printf("%s %% %s", (i++ % num_cpustates) == 0 ? "" : ", ", thisname); 604 } 605 } 606 } 607 608 /* fill the "last" array with all -1s, to insure correct updating */ 609 lp = lcpustates; 610 i = num_cpustates * num_cpus; 611 while (--i >= 0) 612 { 613 *lp++ = -1; 614 } 615 } 616 617 /* 618 * *_memory(stats) - print "Memory: " followed by the memory summary string 619 * 620 * Assumptions: cursor is on "lastline" 621 * for i_memory ONLY: cursor is on the previous line 622 */ 623 624 char memory_buffer[MAX_COLS]; 625 626 void 627 i_memory(stats) 628 629 int *stats; 630 631 { 632 fputs("\nMem: ", stdout); 633 lastline++; 634 635 /* format and print the memory summary */ 636 summary_format(memory_buffer, stats, memory_names); 637 fputs(memory_buffer, stdout); 638 } 639 640 void 641 u_memory(stats) 642 643 int *stats; 644 645 { 646 static char new[MAX_COLS]; 647 648 /* format the new line */ 649 summary_format(new, stats, memory_names); 650 line_update(memory_buffer, new, x_mem, y_mem); 651 } 652 653 /* 654 * *_arc(stats) - print "ARC: " followed by the ARC summary string 655 * 656 * Assumptions: cursor is on "lastline" 657 * for i_arc ONLY: cursor is on the previous line 658 */ 659 char arc_buffer[MAX_COLS]; 660 661 void 662 i_arc(stats) 663 664 int *stats; 665 666 { 667 if (arc_names == NULL) 668 return; 669 670 fputs("\nARC: ", stdout); 671 lastline++; 672 673 /* format and print the memory summary */ 674 summary_format(arc_buffer, stats, arc_names); 675 fputs(arc_buffer, stdout); 676 } 677 678 void 679 u_arc(stats) 680 681 int *stats; 682 683 { 684 static char new[MAX_COLS]; 685 686 if (arc_names == NULL) 687 return; 688 689 /* format the new line */ 690 summary_format(new, stats, arc_names); 691 line_update(arc_buffer, new, x_arc, y_arc); 692 } 693 694 695 /* 696 * *_carc(stats) - print "Compressed ARC: " followed by the summary string 697 * 698 * Assumptions: cursor is on "lastline" 699 * for i_carc ONLY: cursor is on the previous line 700 */ 701 char carc_buffer[MAX_COLS]; 702 703 void 704 i_carc(stats) 705 706 int *stats; 707 708 { 709 if (carc_names == NULL) 710 return; 711 712 fputs("\n ", stdout); 713 lastline++; 714 715 /* format and print the memory summary */ 716 summary_format(carc_buffer, stats, carc_names); 717 fputs(carc_buffer, stdout); 718 } 719 720 void 721 u_carc(stats) 722 723 int *stats; 724 725 { 726 static char new[MAX_COLS]; 727 728 if (carc_names == NULL) 729 return; 730 731 /* format the new line */ 732 summary_format(new, stats, carc_names); 733 line_update(carc_buffer, new, x_carc, y_carc); 734 } 735 736 /* 737 * *_swap(stats) - print "Swap: " followed by the swap summary string 738 * 739 * Assumptions: cursor is on "lastline" 740 * for i_swap ONLY: cursor is on the previous line 741 */ 742 743 char swap_buffer[MAX_COLS]; 744 745 void 746 i_swap(stats) 747 748 int *stats; 749 750 { 751 fputs("\nSwap: ", stdout); 752 lastline++; 753 754 /* format and print the swap summary */ 755 summary_format(swap_buffer, stats, swap_names); 756 fputs(swap_buffer, stdout); 757 } 758 759 void 760 u_swap(stats) 761 762 int *stats; 763 764 { 765 static char new[MAX_COLS]; 766 767 /* format the new line */ 768 summary_format(new, stats, swap_names); 769 line_update(swap_buffer, new, x_swap, y_swap); 770 } 771 772 /* 773 * *_message() - print the next pending message line, or erase the one 774 * that is there. 775 * 776 * Note that u_message is (currently) the same as i_message. 777 * 778 * Assumptions: lastline is consistent 779 */ 780 781 /* 782 * i_message is funny because it gets its message asynchronously (with 783 * respect to screen updates). 784 */ 785 786 static char next_msg[MAX_COLS + 5]; 787 static int msglen = 0; 788 /* Invariant: msglen is always the length of the message currently displayed 789 on the screen (even when next_msg doesn't contain that message). */ 790 791 void 792 i_message() 793 794 { 795 while (lastline < y_message) 796 { 797 fputc('\n', stdout); 798 lastline++; 799 } 800 if (next_msg[0] != '\0') 801 { 802 top_standout(next_msg); 803 msglen = strlen(next_msg); 804 next_msg[0] = '\0'; 805 } 806 else if (msglen > 0) 807 { 808 (void) clear_eol(msglen); 809 msglen = 0; 810 } 811 } 812 813 void 814 u_message() 815 816 { 817 i_message(); 818 } 819 820 static int header_length; 821 822 /* 823 * Trim a header string to the current display width and return a newly 824 * allocated area with the trimmed header. 825 */ 826 827 char * 828 trim_header(text) 829 830 char *text; 831 832 { 833 char *s; 834 int width; 835 836 s = NULL; 837 width = display_width; 838 header_length = strlen(text); 839 if (header_length >= width) { 840 s = malloc((width + 1) * sizeof(char)); 841 if (s == NULL) 842 return (NULL); 843 strncpy(s, text, width); 844 s[width] = '\0'; 845 } 846 return (s); 847 } 848 849 /* 850 * *_header(text) - print the header for the process area 851 * 852 * Assumptions: cursor is on the previous line and lastline is consistent 853 */ 854 855 void 856 i_header(text) 857 858 char *text; 859 860 { 861 char *s; 862 863 s = trim_header(text); 864 if (s != NULL) 865 text = s; 866 867 if (header_status == ON) 868 { 869 putchar('\n'); 870 fputs(text, stdout); 871 lastline++; 872 } 873 else if (header_status == ERASE) 874 { 875 header_status = OFF; 876 } 877 free(s); 878 } 879 880 /*ARGSUSED*/ 881 void 882 u_header(text) 883 884 char *text __unused; /* ignored */ 885 886 { 887 888 if (header_status == ERASE) 889 { 890 putchar('\n'); 891 lastline++; 892 clear_eol(header_length); 893 header_status = OFF; 894 } 895 } 896 897 /* 898 * *_process(line, thisline) - print one process line 899 * 900 * Assumptions: lastline is consistent 901 */ 902 903 void 904 i_process(line, thisline) 905 906 int line; 907 char *thisline; 908 909 { 910 char *p; 911 char *base; 912 913 /* make sure we are on the correct line */ 914 while (lastline < y_procs + line) 915 { 916 putchar('\n'); 917 lastline++; 918 } 919 920 /* truncate the line to conform to our current screen width */ 921 thisline[display_width] = '\0'; 922 923 /* write the line out */ 924 fputs(thisline, stdout); 925 926 /* copy it in to our buffer */ 927 base = smart_terminal ? screenbuf + lineindex(line) : screenbuf; 928 p = strecpy(base, thisline); 929 930 /* zero fill the rest of it */ 931 bzero(p, display_width - (p - base)); 932 } 933 934 void 935 u_process(line, newline) 936 937 int line; 938 char *newline; 939 940 { 941 char *optr; 942 int screen_line = line + Header_lines; 943 char *bufferline; 944 945 /* remember a pointer to the current line in the screen buffer */ 946 bufferline = &screenbuf[lineindex(line)]; 947 948 /* truncate the line to conform to our current screen width */ 949 newline[display_width] = '\0'; 950 951 /* is line higher than we went on the last display? */ 952 if (line >= last_hi) 953 { 954 /* yes, just ignore screenbuf and write it out directly */ 955 /* get positioned on the correct line */ 956 if (screen_line - lastline == 1) 957 { 958 putchar('\n'); 959 lastline++; 960 } 961 else 962 { 963 Move_to(0, screen_line); 964 lastline = screen_line; 965 } 966 967 /* now write the line */ 968 fputs(newline, stdout); 969 970 /* copy it in to the buffer */ 971 optr = strecpy(bufferline, newline); 972 973 /* zero fill the rest of it */ 974 bzero(optr, display_width - (optr - bufferline)); 975 } 976 else 977 { 978 line_update(bufferline, newline, 0, line + Header_lines); 979 } 980 } 981 982 void 983 u_endscreen(hi) 984 985 int hi; 986 987 { 988 int screen_line = hi + Header_lines; 989 int i; 990 991 if (smart_terminal) 992 { 993 if (hi < last_hi) 994 { 995 /* need to blank the remainder of the screen */ 996 /* but only if there is any screen left below this line */ 997 if (lastline + 1 < screen_length) 998 { 999 /* efficiently move to the end of currently displayed info */ 1000 if (screen_line - lastline < 5) 1001 { 1002 while (lastline < screen_line) 1003 { 1004 putchar('\n'); 1005 lastline++; 1006 } 1007 } 1008 else 1009 { 1010 Move_to(0, screen_line); 1011 lastline = screen_line; 1012 } 1013 1014 if (clear_to_end) 1015 { 1016 /* we can do this the easy way */ 1017 putcap(clear_to_end); 1018 } 1019 else 1020 { 1021 /* use clear_eol on each line */ 1022 i = hi; 1023 while ((void) clear_eol(strlen(&screenbuf[lineindex(i++)])), i < last_hi) 1024 { 1025 putchar('\n'); 1026 } 1027 } 1028 } 1029 } 1030 last_hi = hi; 1031 1032 /* move the cursor to a pleasant place */ 1033 Move_to(x_idlecursor, y_idlecursor); 1034 lastline = y_idlecursor; 1035 } 1036 else 1037 { 1038 /* separate this display from the next with some vertical room */ 1039 fputs("\n\n", stdout); 1040 } 1041 } 1042 1043 void 1044 display_header(t) 1045 1046 int t; 1047 1048 { 1049 if (t) 1050 { 1051 header_status = ON; 1052 } 1053 else if (header_status == ON) 1054 { 1055 header_status = ERASE; 1056 } 1057 } 1058 1059 /*VARARGS2*/ 1060 void 1061 new_message(type, msgfmt, a1, a2, a3) 1062 1063 int type; 1064 char *msgfmt; 1065 caddr_t a1, a2, a3; 1066 1067 { 1068 int i; 1069 1070 /* first, format the message */ 1071 (void) snprintf(next_msg, sizeof(next_msg), msgfmt, a1, a2, a3); 1072 1073 if (msglen > 0) 1074 { 1075 /* message there already -- can we clear it? */ 1076 if (!overstrike) 1077 { 1078 /* yes -- write it and clear to end */ 1079 i = strlen(next_msg); 1080 if ((type & MT_delayed) == 0) 1081 { 1082 type & MT_standout ? top_standout(next_msg) : 1083 fputs(next_msg, stdout); 1084 (void) clear_eol(msglen - i); 1085 msglen = i; 1086 next_msg[0] = '\0'; 1087 } 1088 } 1089 } 1090 else 1091 { 1092 if ((type & MT_delayed) == 0) 1093 { 1094 type & MT_standout ? top_standout(next_msg) : fputs(next_msg, stdout); 1095 msglen = strlen(next_msg); 1096 next_msg[0] = '\0'; 1097 } 1098 } 1099 } 1100 1101 void 1102 clear_message() 1103 1104 { 1105 if (clear_eol(msglen) == 1) 1106 { 1107 putchar('\r'); 1108 } 1109 } 1110 1111 int 1112 readline(buffer, size, numeric) 1113 1114 char *buffer; 1115 int size; 1116 int numeric; 1117 1118 { 1119 char *ptr = buffer; 1120 char ch; 1121 char cnt = 0; 1122 char maxcnt = 0; 1123 1124 /* allow room for null terminator */ 1125 size -= 1; 1126 1127 /* read loop */ 1128 while ((fflush(stdout), read(0, ptr, 1) > 0)) 1129 { 1130 /* newline means we are done */ 1131 if ((ch = *ptr) == '\n' || ch == '\r') 1132 { 1133 break; 1134 } 1135 1136 /* handle special editing characters */ 1137 if (ch == ch_kill) 1138 { 1139 /* kill line -- account for overstriking */ 1140 if (overstrike) 1141 { 1142 msglen += maxcnt; 1143 } 1144 1145 /* return null string */ 1146 *buffer = '\0'; 1147 putchar('\r'); 1148 return(-1); 1149 } 1150 else if (ch == ch_erase) 1151 { 1152 /* erase previous character */ 1153 if (cnt <= 0) 1154 { 1155 /* none to erase! */ 1156 putchar('\7'); 1157 } 1158 else 1159 { 1160 fputs("\b \b", stdout); 1161 ptr--; 1162 cnt--; 1163 } 1164 } 1165 /* check for character validity and buffer overflow */ 1166 else if (cnt == size || (numeric && !isdigit(ch)) || 1167 !isprint(ch)) 1168 { 1169 /* not legal */ 1170 putchar('\7'); 1171 } 1172 else 1173 { 1174 /* echo it and store it in the buffer */ 1175 putchar(ch); 1176 ptr++; 1177 cnt++; 1178 if (cnt > maxcnt) 1179 { 1180 maxcnt = cnt; 1181 } 1182 } 1183 } 1184 1185 /* all done -- null terminate the string */ 1186 *ptr = '\0'; 1187 1188 /* account for the extra characters in the message area */ 1189 /* (if terminal overstrikes, remember the furthest they went) */ 1190 msglen += overstrike ? maxcnt : cnt; 1191 1192 /* return either inputted number or string length */ 1193 putchar('\r'); 1194 return(cnt == 0 ? -1 : numeric ? atoi(buffer) : cnt); 1195 } 1196 1197 /* internal support routines */ 1198 1199 static int string_count(pp) 1200 1201 char **pp; 1202 1203 { 1204 int cnt; 1205 1206 cnt = 0; 1207 while (*pp++ != NULL) 1208 { 1209 cnt++; 1210 } 1211 return(cnt); 1212 } 1213 1214 static void summary_format(str, numbers, names) 1215 1216 char *str; 1217 int *numbers; 1218 char **names; 1219 1220 { 1221 char *p; 1222 int num; 1223 char *thisname; 1224 char rbuf[6]; 1225 1226 /* format each number followed by its string */ 1227 p = str; 1228 while ((thisname = *names++) != NULL) 1229 { 1230 /* get the number to format */ 1231 num = *numbers++; 1232 1233 /* display only non-zero numbers */ 1234 if (num > 0) 1235 { 1236 /* is this number in kilobytes? */ 1237 if (thisname[0] == 'K') 1238 { 1239 /* yes: format it as a memory value */ 1240 p = strecpy(p, format_k(num)); 1241 1242 /* skip over the K, since it was included by format_k */ 1243 p = strecpy(p, thisname+1); 1244 } 1245 /* is this number a ratio? */ 1246 else if (thisname[0] == ':') 1247 { 1248 (void) snprintf(rbuf, sizeof(rbuf), "%.2f", 1249 (float)*(numbers - 2) / (float)num); 1250 p = strecpy(p, rbuf); 1251 p = strecpy(p, thisname); 1252 } 1253 else 1254 { 1255 p = strecpy(p, itoa(num)); 1256 p = strecpy(p, thisname); 1257 } 1258 } 1259 1260 /* ignore negative numbers, but display corresponding string */ 1261 else if (num < 0) 1262 { 1263 p = strecpy(p, thisname); 1264 } 1265 } 1266 1267 /* if the last two characters in the string are ", ", delete them */ 1268 p -= 2; 1269 if (p >= str && p[0] == ',' && p[1] == ' ') 1270 { 1271 *p = '\0'; 1272 } 1273 } 1274 1275 static void line_update(old, new, start, line) 1276 1277 char *old; 1278 char *new; 1279 int start; 1280 int line; 1281 1282 { 1283 int ch; 1284 int diff; 1285 int newcol = start + 1; 1286 int lastcol = start; 1287 char cursor_on_line = No; 1288 char *current; 1289 1290 /* compare the two strings and only rewrite what has changed */ 1291 current = old; 1292 #ifdef DEBUG 1293 fprintf(debug, "line_update, starting at %d\n", start); 1294 fputs(old, debug); 1295 fputc('\n', debug); 1296 fputs(new, debug); 1297 fputs("\n-\n", debug); 1298 #endif 1299 1300 /* start things off on the right foot */ 1301 /* this is to make sure the invariants get set up right */ 1302 if ((ch = *new++) != *old) 1303 { 1304 if (line - lastline == 1 && start == 0) 1305 { 1306 putchar('\n'); 1307 } 1308 else 1309 { 1310 Move_to(start, line); 1311 } 1312 cursor_on_line = Yes; 1313 putchar(ch); 1314 *old = ch; 1315 lastcol = 1; 1316 } 1317 old++; 1318 1319 /* 1320 * main loop -- check each character. If the old and new aren't the 1321 * same, then update the display. When the distance from the 1322 * current cursor position to the new change is small enough, 1323 * the characters that belong there are written to move the 1324 * cursor over. 1325 * 1326 * Invariants: 1327 * lastcol is the column where the cursor currently is sitting 1328 * (always one beyond the end of the last mismatch). 1329 */ 1330 do /* yes, a do...while */ 1331 { 1332 if ((ch = *new++) != *old) 1333 { 1334 /* new character is different from old */ 1335 /* make sure the cursor is on top of this character */ 1336 diff = newcol - lastcol; 1337 if (diff > 0) 1338 { 1339 /* some motion is required--figure out which is shorter */ 1340 if (diff < 6 && cursor_on_line) 1341 { 1342 /* overwrite old stuff--get it out of the old buffer */ 1343 printf("%.*s", diff, ¤t[lastcol-start]); 1344 } 1345 else 1346 { 1347 /* use cursor addressing */ 1348 Move_to(newcol, line); 1349 cursor_on_line = Yes; 1350 } 1351 /* remember where the cursor is */ 1352 lastcol = newcol + 1; 1353 } 1354 else 1355 { 1356 /* already there, update position */ 1357 lastcol++; 1358 } 1359 1360 /* write what we need to */ 1361 if (ch == '\0') 1362 { 1363 /* at the end--terminate with a clear-to-end-of-line */ 1364 (void) clear_eol(strlen(old)); 1365 } 1366 else 1367 { 1368 /* write the new character */ 1369 putchar(ch); 1370 } 1371 /* put the new character in the screen buffer */ 1372 *old = ch; 1373 } 1374 1375 /* update working column and screen buffer pointer */ 1376 newcol++; 1377 old++; 1378 1379 } while (ch != '\0'); 1380 1381 /* zero out the rest of the line buffer -- MUST BE DONE! */ 1382 diff = display_width - newcol; 1383 if (diff > 0) 1384 { 1385 bzero(old, diff); 1386 } 1387 1388 /* remember where the current line is */ 1389 if (cursor_on_line) 1390 { 1391 lastline = line; 1392 } 1393 } 1394 1395 /* 1396 * printable(str) - make the string pointed to by "str" into one that is 1397 * printable (i.e.: all ascii), by converting all non-printable 1398 * characters into '?'. Replacements are done in place and a pointer 1399 * to the original buffer is returned. 1400 */ 1401 1402 char *printable(str) 1403 1404 char *str; 1405 1406 { 1407 char *ptr; 1408 char ch; 1409 1410 ptr = str; 1411 while ((ch = *ptr) != '\0') 1412 { 1413 if (!isprint(ch)) 1414 { 1415 *ptr = '?'; 1416 } 1417 ptr++; 1418 } 1419 return(str); 1420 } 1421 1422 void 1423 i_uptime(bt, tod) 1424 1425 struct timeval* bt; 1426 time_t *tod; 1427 1428 { 1429 time_t uptime; 1430 int days, hrs, mins, secs; 1431 1432 if (bt->tv_sec != -1) { 1433 uptime = *tod - bt->tv_sec; 1434 days = uptime / 86400; 1435 uptime %= 86400; 1436 hrs = uptime / 3600; 1437 uptime %= 3600; 1438 mins = uptime / 60; 1439 secs = uptime % 60; 1440 1441 /* 1442 * Display the uptime. 1443 */ 1444 1445 if (smart_terminal) 1446 { 1447 Move_to((screen_width - 24) - (days > 9 ? 1 : 0), 0); 1448 } 1449 else 1450 { 1451 fputs(" ", stdout); 1452 } 1453 printf(" up %d+%02d:%02d:%02d", days, hrs, mins, secs); 1454 } 1455 } 1456