debug output
[oweals/gnunet.git] / src / statistics / gnunet-statistics.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 statistics/gnunet-statistics.c
23  * @brief tool to obtain statistics
24  * @author Christian Grothoff
25  * @author Igor Wronsky
26  */
27 #include "platform.h"
28 #include "gnunet_getopt_lib.h"
29 #include "gnunet_program_lib.h"
30 #include "gnunet_statistics_service.h"
31 #include "statistics.h"
32
33 #define GET_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
34
35 /**
36  * Final status code.
37  */
38 static int ret;
39
40 /**
41  * Set to subsystem that we're going to get stats for (or NULL for all).
42  */
43 static char *subsystem;
44
45 /**
46  * Set to the specific stat value that we are after (or NULL for all).
47  */
48 static char *name;
49
50 /**
51  * Make the value that is being set persistent.
52  */
53 static int persistent;
54
55 /**
56  * Callback function to process statistic values.
57  *
58  * @param cls closure
59  * @param subsystem name of subsystem that created the statistic
60  * @param name the name of the datum
61  * @param value the current value
62  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
63  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
64  */
65 static int
66 printer (void *cls,
67          const char *subsystem,
68          const char *name, 
69          uint64_t value, int is_persistent)
70 {
71   FPRINTF (stdout,
72            "%s%-12s %-50s: %16llu\n",
73            is_persistent ? "!" : " ", subsystem, _(name),
74            (unsigned long long) value);
75   return GNUNET_OK;
76 }
77
78
79 /**
80  * Function called last by the statistics code.
81  *
82  * @param cls closure
83  * @param success GNUNET_OK if statistics were
84  *        successfully obtained, GNUNET_SYSERR if not.
85  */
86 static void
87 cleanup (void *cls, int success)
88 {
89   struct GNUNET_STATISTICS_Handle *h = cls;
90
91   if (success != GNUNET_OK)
92     {
93       fprintf (stderr,
94                _("Failed to obtain statistics.\n"));
95       ret = 1;
96     }
97   if (h != NULL)
98     GNUNET_STATISTICS_destroy (h,
99                                GNUNET_NO);
100 }
101
102
103 /**
104  * Main function that will be run by the scheduler.
105  *
106  * @param cls closure
107  * @param args remaining command-line arguments
108  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
109  * @param cfg configuration
110  */
111 static void
112 run (void *cls,
113      char *const *args,
114      const char *cfgfile,
115      const struct GNUNET_CONFIGURATION_Handle *cfg)
116 {
117   struct GNUNET_STATISTICS_Handle *h;
118   unsigned long long val;
119
120   if (args[0] != NULL)
121     {
122       if ((1 != SSCANF (args[0], "%llu", &val)) ||
123           (subsystem == NULL) || (name == NULL))
124         {
125           FPRINTF (stderr, _("Invalid argument `%s'\n"), args[0]);
126           ret = 1;
127           return;
128         }
129       h = GNUNET_STATISTICS_create (subsystem, cfg);
130       if (h == NULL)
131         {
132           ret = 1;
133           return;
134         }
135       GNUNET_STATISTICS_set (h, name, (uint64_t) val, persistent);
136       GNUNET_STATISTICS_destroy (h, GNUNET_YES);
137       return;
138     }
139   h = GNUNET_STATISTICS_create ("gnunet-statistics", cfg);
140   if (h == NULL)
141     {
142       ret = 1;
143       return;
144     }
145   if (NULL == GNUNET_STATISTICS_get (h,
146                                      subsystem, name, GET_TIMEOUT, &cleanup, &printer, h))
147     cleanup (h, GNUNET_SYSERR);
148 }
149
150 /**
151  * The main function to obtain statistics in GNUnet.
152  *
153  * @param argc number of arguments from the command line
154  * @param argv command line arguments
155  * @return 0 ok, 1 on error
156  */
157 int
158 main (int argc, char *const *argv)
159 {
160   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
161     {'n', "name", "NAME",
162      gettext_noop ("limit output to statistcs for the given NAME"), 1,
163      &GNUNET_GETOPT_set_string, &name},
164     {'p', "persistent", NULL,
165      gettext_noop ("make the value being set persistent"), 0,
166      &GNUNET_GETOPT_set_one, &persistent},
167     {'s', "subsystem", "SUBSYSTEM",
168      gettext_noop ("limit output to the given SUBSYSTEM"), 1,
169      &GNUNET_GETOPT_set_string, &subsystem},
170     GNUNET_GETOPT_OPTION_END
171   };
172   return (GNUNET_OK ==
173           GNUNET_PROGRAM_run (argc,
174                               argv,
175                               "gnunet-statistics [options [value]]",
176                               gettext_noop
177                               ("Print statistics about GNUnet operations."),
178                               options, &run, NULL)) ? ret : 1;
179 }
180
181 /* end of gnunet-statistics.c */