make it easy to start service by hand
[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 2, 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 sched the scheduler to use
108  * @param args remaining command-line arguments
109  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
110  * @param cfg configuration
111  */
112 static void
113 run (void *cls,
114      struct GNUNET_SCHEDULER_Handle *sched,
115      char *const *args,
116      const char *cfgfile,
117      const struct GNUNET_CONFIGURATION_Handle *cfg)
118 {
119   struct GNUNET_STATISTICS_Handle *h;
120   unsigned long long val;
121
122   if (args[0] != NULL)
123     {
124       if ((1 != SSCANF (args[0], "%llu", &val)) ||
125           (subsystem == NULL) || (name == NULL))
126         {
127           FPRINTF (stderr, _("Invalid argument `%s'\n"), args[0]);
128           ret = 1;
129           return;
130         }
131       h = GNUNET_STATISTICS_create (sched, subsystem, cfg);
132       if (h == NULL)
133         {
134           ret = 1;
135           return;
136         }
137       GNUNET_STATISTICS_set (h, name, (uint64_t) val, persistent);
138       GNUNET_STATISTICS_destroy (h, GNUNET_YES);
139       return;
140     }
141   h = GNUNET_STATISTICS_create (sched, "gnunet-statistics", cfg);
142   if (h == NULL)
143     {
144       ret = 1;
145       return;
146     }
147   if (NULL == GNUNET_STATISTICS_get (h,
148                                      subsystem, name, GET_TIMEOUT, &cleanup, &printer, h))
149     cleanup (h, GNUNET_SYSERR);
150 }
151
152 /**
153  * The main function to obtain statistics in GNUnet.
154  *
155  * @param argc number of arguments from the command line
156  * @param argv command line arguments
157  * @return 0 ok, 1 on error
158  */
159 int
160 main (int argc, char *const *argv)
161 {
162   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
163     {'n', "name", "NAME",
164      gettext_noop ("limit output to statistcs for the given NAME"), 1,
165      &GNUNET_GETOPT_set_string, &name},
166     {'p', "persistent", NULL,
167      gettext_noop ("make the value being set persistent"), 0,
168      &GNUNET_GETOPT_set_one, &persistent},
169     {'s', "subsystem", "SUBSYSTEM",
170      gettext_noop ("limit output to the given SUBSYSTEM"), 1,
171      &GNUNET_GETOPT_set_string, &subsystem},
172     GNUNET_GETOPT_OPTION_END
173   };
174   return (GNUNET_OK ==
175           GNUNET_PROGRAM_run (argc,
176                               argv,
177                               "gnunet-statistics [options [value]]",
178                               gettext_noop
179                               ("Print statistics about GNUnet operations."),
180                               options, &run, NULL)) ? ret : 1;
181 }
182
183 /* end of gnunet-statistics.c */