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.10 by pajs, Wed Apr 2 15:41:01 2003 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines