-fix order
[oweals/gnunet.git] / src / statistics / gnunet-statistics.c
index 3742a496d587d179d5571bf582c0c7a704aee4d5..0f2c92582678e50fc69a863883dba7d0fee7bfaa 100644 (file)
@@ -52,6 +52,11 @@ static char *name;
  */
 static int persistent;
 
+/**
+ * Quiet mode
+ */
+static int quiet;
+
 /**
  * Callback function to process statistic values.
  *
@@ -63,15 +68,15 @@ static int persistent;
  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
  */
 static int
-printer (void *cls,
-         const char *subsystem,
-         const char *name, 
-        uint64_t value, int is_persistent)
+printer (void *cls, const char *subsystem, const char *name, uint64_t value,
+         int is_persistent)
 {
-  FPRINTF (stdout,
-           "%s%-12s %-50s: %16llu\n",
-           is_persistent ? "!" : " ", subsystem, _(name),
-          (unsigned long long) value);
+  if (quiet == GNUNET_NO)
+    FPRINTF (stdout, "%s%-12s %-50s: %16llu\n", is_persistent ? "!" : " ",
+           subsystem, _(name), (unsigned long long) value);
+  else
+    FPRINTF (stdout, "%llu\n", (unsigned long long) value);
+
   return GNUNET_OK;
 }
 
@@ -89,14 +94,12 @@ cleanup (void *cls, int success)
   struct GNUNET_STATISTICS_Handle *h = cls;
 
   if (success != GNUNET_OK)
-    {
-      fprintf (stderr,
-              _("Failed to obtain statistics.\n"));
-      ret = 1;
-    }
+  {
+    fprintf (stderr, _("Failed to obtain statistics.\n"));
+    ret = 1;
+  }
   if (h != NULL)
-    GNUNET_STATISTICS_destroy (h,
-                              GNUNET_NO);
+    GNUNET_STATISTICS_destroy (h, GNUNET_NO);
 }
 
 
@@ -104,48 +107,45 @@ cleanup (void *cls, int success)
  * Main function that will be run by the scheduler.
  *
  * @param cls closure
- * @param sched the scheduler to use
  * @param args remaining command-line arguments
  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
  * @param cfg configuration
  */
 static void
-run (void *cls,
-     struct GNUNET_SCHEDULER_Handle *sched,
-     char *const *args,
-     const char *cfgfile,
+run (void *cls, char *const *args, const char *cfgfile,
      const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
   struct GNUNET_STATISTICS_Handle *h;
   unsigned long long val;
 
   if (args[0] != NULL)
+  {
+    if ((1 != SSCANF (args[0], "%llu", &val)) || (subsystem == NULL) ||
+        (name == NULL))
     {
-      if ((1 != SSCANF (args[0], "%llu", &val)) ||
-          (subsystem == NULL) || (name == NULL))
-        {
-          FPRINTF (stderr, _("Invalid argument `%s'\n"), args[0]);
-          ret = 1;
-          return;
-        }
-      h = GNUNET_STATISTICS_create (sched, subsystem, cfg);
-      if (h == NULL)
-        {
-          ret = 1;
-          return;
-        }
-      GNUNET_STATISTICS_set (h, name, (uint64_t) val, persistent);
-      GNUNET_STATISTICS_destroy (h, GNUNET_YES);
+      FPRINTF (stderr, _("Invalid argument `%s'\n"), args[0]);
+      ret = 1;
       return;
     }
-  h = GNUNET_STATISTICS_create (sched, "gnunet-statistics", cfg);
-  if (h == NULL)
+    h = GNUNET_STATISTICS_create (subsystem, cfg);
+    if (h == NULL)
     {
       ret = 1;
       return;
     }
-  if (NULL == GNUNET_STATISTICS_get (h,
-                                    subsystem, name, GET_TIMEOUT, &cleanup, &printer, h))
+    GNUNET_STATISTICS_set (h, name, (uint64_t) val, persistent);
+    GNUNET_STATISTICS_destroy (h, GNUNET_YES);
+    return;
+  }
+  h = GNUNET_STATISTICS_create ("gnunet-statistics", cfg);
+  if (h == NULL)
+  {
+    ret = 1;
+    return;
+  }
+  if (NULL ==
+      GNUNET_STATISTICS_get (h, subsystem, name, GET_TIMEOUT, &cleanup,
+                             &printer, h))
     cleanup (h, GNUNET_SYSERR);
 }
 
@@ -161,7 +161,7 @@ main (int argc, char *const *argv)
 {
   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
     {'n', "name", "NAME",
-     gettext_noop ("limit output to statistcs for the given NAME"), 1,
+     gettext_noop ("limit output to statistics for the given NAME"), 1,
      &GNUNET_GETOPT_set_string, &name},
     {'p', "persistent", NULL,
      gettext_noop ("make the value being set persistent"), 0,
@@ -169,12 +169,13 @@ main (int argc, char *const *argv)
     {'s', "subsystem", "SUBSYSTEM",
      gettext_noop ("limit output to the given SUBSYSTEM"), 1,
      &GNUNET_GETOPT_set_string, &subsystem},
+    {'q', "quiet", NULL,
+     gettext_noop ("just print the statistics value"), 0,
+     &GNUNET_GETOPT_set_one, &quiet},
     GNUNET_GETOPT_OPTION_END
   };
   return (GNUNET_OK ==
-          GNUNET_PROGRAM_run (argc,
-                              argv,
-                              "gnunet-statistics [options [value]]",
+          GNUNET_PROGRAM_run (argc, argv, "gnunet-statistics [options [value]]",
                               gettext_noop
                               ("Print statistics about GNUnet operations."),
                               options, &run, NULL)) ? ret : 1;