ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/idar/idar.c
(Generate patch)

Comparing projects/cms/source/idar/idar.c (file contents):
Revision 1.7 by pajs, Sun Mar 30 22:16:20 2003 UTC vs.
Revision 1.12 by pajs, Thu Apr 3 10:59:28 2003 UTC

# Line 29 | Line 29
29   #include <unistd.h>
30   #include <stdlib.h>
31   #include <ukcprog.h>
32 + #include <netinet/in.h>
33 + #include <netdb.h>
34  
35   #include <libxml/xmlmemory.h>
36   #include <libxml/parser.h>
# Line 235 | Line 237 | int cmp_cpu(machine_data_list_t *a, machine_data_list_
237          }
238   }
239   */
240 +
241 + #ifndef HAVE_ATOLL
242 + long long int atoll (const char *nptr){
243 +  return strtoll (nptr, (char **) NULL, 10);
244 + }
245 + #endif
246 +
247 + #ifndef HAVE_STRLCPY
248 + /*
249 + * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
250 + * All rights reserved.
251 + *
252 + * Redistribution and use in source and binary forms, with or without
253 + * modification, are permitted provided that the following conditions
254 + * are met:
255 + * 1. Redistributions of source code must retain the above copyright
256 + *    notice, this list of conditions and the following disclaimer.
257 + * 2. Redistributions in binary form must reproduce the above copyright
258 + *    notice, this list of conditions and the following disclaimer in the
259 + *    documentation and/or other materials provided with the distribution.
260 + * 3. The name of the author may not be used to endorse or promote products
261 + *    derived from this software without specific prior written permission.
262 + *
263 + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
264 + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
265 + * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
266 + * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
267 + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
268 + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
269 + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
270 + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
271 + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
272 + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
273 + */
274 +
275 + /*
276 + * Copy src to string dst of size siz.  At most siz-1 characters
277 + * will be copied.  Always NUL terminates (unless siz == 0).
278 + * Returns strlen(src); if retval >= siz, truncation occurred.
279 + */
280 + size_t
281 + strlcpy(dst, src, siz)
282 +        char *dst;
283 +        const char *src;
284 +        size_t siz;
285 + {
286 +        register char *d = dst;
287 +        register const char *s = src;
288 +        register size_t n = siz;
289 +
290 +        /* Copy as many bytes as will fit */
291 +        if (n != 0 && --n != 0) {
292 +                do {
293 +                        if ((*d++ = *s++) == 0)
294 +                                break;
295 +                } while (--n != 0);
296 +        }
297 +
298 +        /* Not enough room in dst, add NUL and traverse rest of src */
299 +        if (n == 0) {
300 +                if (siz != 0)
301 +                        *d = '\0';              /* NUL-terminate dst */
302 +                while (*s++)
303 +                        ;
304 +        }
305 +
306 +        return(s - src - 1);    /* count does not include NUL */
307 + }
308 +
309 + #endif
310 +
311          
312   FILE *create_tcp_connection(char *hostname, int port){
313          int sock;
# Line 608 | Line 681 | void display(machine_data_list_t *machine_data_list, d
681          int x=1;
682  
683          if(*title){
684 +                clear();
685                  move (num_lines-3, 1);
686                  printw("Sorting by %-64s", display_config->sortby);
687  
# Line 778 | Line 852 | int main(int argc, char **argv){
852  
853          display_config.network_io_total_tx=1;
854          display_config.network_io_total_rx=1;
855 <        display_config.network_all_stats=1;
855 >        display_config.network_all_stats=0;
856  
857 <        display_config.disk_io_total_write=0;
858 <        display_config.disk_io_total_read=0;
857 >        display_config.disk_io_total_write=1;
858 >        display_config.disk_io_total_read=1;
859          display_config.disk_io_all_stats=0;
860  
861          display_config.disk_total_used=0;
# Line 833 | Line 907 | int main(int argc, char **argv){
907          control=create_tcp_connection(servername, server_control_port);
908          if(control==NULL){
909                  errf("Failed to connect (%m)");
910 +                exit(1);
911          }
912  
913          if(argc==4){
# Line 905 | Line 980 | int main(int argc, char **argv){
980                  
981                          ch=getc(stdin);
982                          switch(ch){
983 +
984 +                                /* Quit */
985                                  case 'Q':
986                                  case 'q':
987                                          endwin();
988                                          exit(0);
989                                          break;
990  
991 +                                /* Sort by */
992                                  case 'C':
993                                          sortby_ptr=cmp_cpu_used;
994                                          strlcpy(display_config.sortby, CPU_USED, SORTBYMAXNAME);
# Line 943 | Line 1021 | int main(int argc, char **argv){
1021                                                  sortby_ptr=cmp_network_io_total;
1022                                          }
1023                                          break;
1024 +                                case 'D':
1025 +                                        if(sortby_ptr==cmp_disk_io_total){
1026 +                                                strlcpy(display_config.sortby, DISKIOR, SORTBYMAXNAME);
1027 +                                                sortby_ptr=cmp_disk_io_total_read;
1028 +                                        }else if(sortby_ptr==cmp_disk_io_total_read){
1029 +                                                strlcpy(display_config.sortby, DISKIOW, SORTBYMAXNAME);
1030 +                                                sortby_ptr=cmp_disk_io_total_write;
1031 +                                        }else{
1032 +                                                strlcpy(display_config.sortby, DISKIO, SORTBYMAXNAME);
1033 +                                                sortby_ptr=cmp_disk_io_total;
1034 +                                        }
1035 +                                        break;
1036  
1037 <                        }
1037 >                                /* Display */
1038                          
1039 <                        title=1;
1039 >                                case 'd':
1040 >                                        if(display_config.disk_io_total_read){
1041 >                                                display_config.disk_io_total_read=0;
1042 >                                                display_config.disk_io_total_write=0;
1043 >                                        }else{
1044 >                                                display_config.disk_io_total_read=1;
1045 >                                                display_config.disk_io_total_write=1;
1046 >                                        }
1047 >                                        break;  
1048 >                                case 'n':
1049 >                                        if(display_config.network_io_total_rx){
1050 >                                                display_config.network_io_total_rx=0;
1051 >                                                display_config.network_io_total_tx=0;
1052 >                                        }else{
1053 >                                                display_config.network_io_total_rx=1;
1054 >                                                display_config.network_io_total_tx=1;
1055 >                                        }
1056 >                                        break;
1057 >                                case 'm':
1058 >                                        if(display_config.memory_used_pecent){
1059 >                                                display_config.memory_used_pecent=0;
1060 >                                        }else{
1061 >                                                display_config.memory_used_pecent=1;
1062 >                                        }
1063 >                                        break;
1064 >                                
1065 >                                case 's':
1066 >                                        if(display_config.swap_used_pecent){
1067 >                                                display_config.swap_used_pecent=0;
1068 >                                        }else{
1069 >                                                display_config.swap_used_pecent=1;
1070 >                                        }
1071 >                                        break;
1072 >                                case 'l':
1073 >                                        if(display_config.load_1){
1074 >                                                display_config.load_1=0;
1075 >                                        }else{
1076 >                                                display_config.load_1=1;
1077 >                                        }
1078 >                                        break;
1079 >                                case 'p':
1080 >                                        if(display_config.pages_in){
1081 >                                                display_config.pages_in=0;
1082 >                                                display_config.pages_out=0;
1083 >                                        }else{
1084 >                                                display_config.pages_in=1;
1085 >                                                display_config.pages_out=1;
1086 >                                        }
1087 >                                        break;
1088 >                                case 'c':
1089 >                                        if(display_config.cpu_used){
1090 >                                                display_config.cpu_used=0;
1091 >                                        }else{
1092 >                                                display_config.cpu_used=1;
1093 >                                        }
1094 >                                        break;
1095 >
1096 >                                default:
1097 >                                        /* Invalid key.. Ignore.. Set Title to -1, as the
1098 >                                         * title++ will then make that "0" (false) so a
1099 >                                         * screen redraw will not happen */
1100 >                                        title=-1;
1101 >                                        break;
1102 >                        }
1103 >
1104 >                        /* Increment title so it becomes true (and making the screen update */  
1105 >                        title++;
1106                          
1107                  }
1108                  if(FD_ISSET(data_fileno, &infds)){

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines