aboutsummaryrefslogtreecommitdiff
path: root/src/statistics/gnunet-statistics.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/statistics/gnunet-statistics.c')
-rw-r--r--src/statistics/gnunet-statistics.c179
1 files changed, 179 insertions, 0 deletions
diff --git a/src/statistics/gnunet-statistics.c b/src/statistics/gnunet-statistics.c
new file mode 100644
index 000000000..bafb77c66
--- /dev/null
+++ b/src/statistics/gnunet-statistics.c
@@ -0,0 +1,179 @@
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, 15)
34
35/**
36 * Final status code.
37 */
38static int ret;
39
40/**
41 * Set to subsystem that we're going to get stats for (or NULL for all).
42 */
43static char *subsystem;
44
45/**
46 * Set to the specific stat value that we are after (or NULL for all).
47 */
48static char *name;
49
50/**
51 * Make the value that is being set persistent.
52 */
53static 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 */
65static int
66printer (void *cls,
67 const char *subsystem,
68 const char *sname, unsigned long long value, int is_persistent)
69{
70 FPRINTF (stdout,
71 "%s%-20s %-40s: %16llu\n",
72 is_persistent ? "!" : " ", subsystem, _(sname), value);
73 return GNUNET_OK;
74}
75
76
77/**
78 * Function called last by the statistics code.
79 *
80 * @param cls closure
81 * @param success GNUNET_OK if statistics were
82 * successfully obtained, GNUNET_SYSERR if not.
83 */
84static void
85cleanup (void *cls, int success)
86{
87 struct GNUNET_STATISTICS_Handle *h = cls;
88
89 if (success != GNUNET_OK)
90 ret = 1;
91 if (h != NULL)
92 GNUNET_STATISTICS_destroy (h);
93}
94
95
96/**
97 * Main function that will be run by the scheduler.
98 *
99 * @param cls closure
100 * @param sched the scheduler to use
101 * @param args remaining command-line arguments
102 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
103 * @param cfg configuration
104 */
105static void
106run (void *cls,
107 struct GNUNET_SCHEDULER_Handle *sched,
108 char *const *args,
109 const char *cfgfile, struct GNUNET_CONFIGURATION_Handle *cfg)
110{
111 struct GNUNET_STATISTICS_Handle *h;
112 unsigned long long val;
113
114 if (args[0] != NULL)
115 {
116 if ((1 != SSCANF (args[0], "%llu", &val)) ||
117 (subsystem == NULL) || (name == NULL))
118 {
119 FPRINTF (stderr, _("Invalid argument `%s'\n"), args[0]);
120 ret = 1;
121 return;
122 }
123 h = GNUNET_STATISTICS_create (sched, subsystem, cfg);
124 if (h == NULL)
125 {
126 ret = 1;
127 return;
128 }
129 GNUNET_STATISTICS_set (h, name, val, persistent);
130 GNUNET_STATISTICS_destroy (h);
131 return;
132 }
133 h = GNUNET_STATISTICS_create (sched, "gnunet-statistics", cfg);
134 if (h == NULL)
135 {
136 ret = 1;
137 return;
138 }
139 GNUNET_STATISTICS_get (h,
140 subsystem, name, GET_TIMEOUT, &cleanup, &printer, h);
141}
142
143/**
144 * gnunet-statistics command line options
145 */
146static struct GNUNET_GETOPT_CommandLineOption options[] = {
147 {'n', "name", "NAME",
148 gettext_noop ("limit output to statistcs for the given NAME"), 1,
149 &GNUNET_GETOPT_set_string, &name},
150 {'p', "persistent", NULL,
151 gettext_noop ("make the value being set persistent"), 0,
152 &GNUNET_GETOPT_set_one, &persistent},
153 {'s', "subsystem", "SUBSYSTEM",
154 gettext_noop ("limit output to the given SUBSYSTEM"), 1,
155 &GNUNET_GETOPT_set_string, &subsystem},
156 GNUNET_GETOPT_OPTION_END
157};
158
159
160/**
161 * The main function to obtain statistics in GNUnet.
162 *
163 * @param argc number of arguments from the command line
164 * @param argv command line arguments
165 * @return 0 ok, 1 on error
166 */
167int
168main (int argc, char *const *argv)
169{
170 return (GNUNET_OK ==
171 GNUNET_PROGRAM_run (argc,
172 argv,
173 "gnunet-statistics",
174 gettext_noop
175 ("Print statistics about GNUnet operations."),
176 options, &run, NULL)) ? ret : 1;
177}
178
179/* end of gnunet-statistics.c */