network test
[oweals/gnunet.git] / src / sysmon / test_glibtop_process.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2004, 2005, 2006, 2007, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file sysmon/test_glibtop_process.c
23  * @brief a brief test for glibtop
24  * @author Matthias Wachs
25  */
26
27 #include "platform.h"
28
29 #include <glibtop.h>
30 #include <glibtop/proclist.h>
31 #include <glibtop/procstate.h>
32 #include <glibtop/procargs.h>
33 #include <glibtop/procmem.h>
34 #include <glibtop/proctime.h>
35 #include <glib.h>
36
37 static int ret;
38
39 static void print_pids(guint64 which, guint64 arg)
40 {
41     pid_t *pids = NULL;
42     unsigned i;
43     glibtop_proclist proc_list;
44     glibtop_proc_args proc_args;
45     glibtop_proc_mem proc_mem;
46     glibtop_proc_time proc_time;
47     char *argss;
48
49     /* get process list */
50     pids = glibtop_get_proclist(&proc_list, which, arg);
51     if (NULL == pids)
52     {
53       fprintf (stderr, "Could not retrieve process list!\n");
54       ret = 1;
55       return;
56     }
57
58     printf("Found %lu processes\n", (unsigned long) proc_list.number);
59     for (i = 0; i < proc_list.number; ++i)
60     {
61         printf("PID %u:\n", pids[i]);
62
63         /* get process args */
64         argss = glibtop_get_proc_args (&proc_args, pids[i], 1024);
65         if (NULL == argss)
66         {
67           fprintf (stderr, "Could not retrieve process args!\n");
68           ret = 1;
69           return;
70         }
71         printf ("\targument string: %s\n", argss);
72         g_free (argss);
73
74         /* get memory info */
75         glibtop_get_proc_mem (&proc_mem, pids[i]);
76         printf ("\tMemory information:\n");
77         printf ("\t%-50s: %lu\n", "total # of pages of memory", proc_mem.size);
78         printf ("\t%-50s: %lu\n", "number of pages of virtual memory",proc_mem.vsize);
79         printf ("\t%-50s: %lu\n", "number of resident set", proc_mem.resident);
80         printf ("\t%-50s: %lu\n", "number of pages of shared (mmap'd) memory", proc_mem.share);
81         printf ("\t%-50s: %lu\n", "resident set size", proc_mem.rss);
82
83         /* get time info */
84         glibtop_get_proc_time (&proc_time, pids[i]);
85         printf ("\tTime information:\n");
86         printf ("\t%-50s: %lu\n", "real time accumulated by process", proc_time.rtime);
87         printf ("\t%-50s: %lu\n", "user-mode CPU time accumulated by process",proc_time.utime);
88         printf ("\t%-50s: %lu\n", "kernel-mode CPU time accumulated by process", proc_time.stime);
89     }
90
91     if (NULL != pids)
92     {
93       g_free(pids);
94       pids = NULL;
95     }
96 }
97
98
99 /**
100  * The main function.
101  *
102  * @param argc number of arguments from the command line
103  * @param argv command line arguments
104  * @return 0 ok, 1 on error
105  */
106 int
107 main (int argc, char *const *argv)
108 {
109   if (NULL == glibtop_init())
110   {
111     fprintf (stderr, "Could not init gliptop!\n");
112     return 1;
113   }
114
115   /* Print all processes */
116   print_pids(GLIBTOP_KERN_PROC_ALL, 0);
117
118   glibtop_close();
119   return ret;
120 }
121
122 /* end of test_glibtop_process.c */
123