c57013987c24cbc8b9712d9863560af9a9b9217d
[oweals/gnunet.git] / src / statistics / gnunet-service-statistics.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2012 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-service-statistics.c
23  * @brief program that tracks statistics
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_bio_lib.h"
28 #include "gnunet_container_lib.h"
29 #include "gnunet_disk_lib.h"
30 #include "gnunet_getopt_lib.h"
31 #include "gnunet_protocols.h"
32 #include "gnunet_service_lib.h"
33 #include "gnunet_statistics_service.h"
34 #include "gnunet_strings_lib.h"
35 #include "gnunet_time_lib.h"
36 #include "statistics.h"
37
38 /**
39  * Watch entry.
40  */
41 struct WatchEntry
42 {
43
44   /**
45    * Watch entries are kept in a linked list.
46    */
47   struct WatchEntry *next;
48
49   /**
50    * Watch entries are kept in a linked list.
51    */
52   struct WatchEntry *prev;
53
54   /**
55    * For which client is this watch entry?
56    */
57   struct GNUNET_SERVER_Client *client;
58
59   /**
60    * Last value we communicated to the client for this watch entry.
61    */
62   uint64_t last_value;
63
64   /**
65    * Unique watch number for this client and this watched value.
66    */
67   uint32_t wid;
68
69 };
70
71
72 /**
73  * Client entry.
74  */
75 struct ClientEntry
76 {
77   /**
78    * Clients are kept in a linked list.
79    */
80   struct ClientEntry *next;
81
82   /**
83    * Clients are kept in a linked list.
84    */
85   struct ClientEntry *prev;
86
87   /**
88    * Corresponding server handle.
89    */
90   struct GNUNET_SERVER_Client *client;
91
92   /**
93    * Maximum watch ID used by this client so far.
94    */
95   uint32_t max_wid;
96
97 };
98
99 /**
100  * Entry in the statistics list.
101  */
102 struct StatsEntry
103 {
104   /**
105    * This is a linked list.
106    */
107   struct StatsEntry *next;
108
109   /**
110    * Name of the service, points into the
111    * middle of msg.
112    */
113   const char *service;
114
115   /**
116    * Name for the value, points into
117    * the middle of msg.
118    */
119   const char *name;
120
121   /**
122    * Message that can be used to set this value,
123    * stored at the end of the memory used by
124    * this struct.
125    */
126   struct GNUNET_STATISTICS_SetMessage *msg;
127
128   /**
129    * Watch context for changes to this
130    * value, or NULL for none.
131    */
132   struct WatchEntry *we_head;
133
134   /**
135    * Watch context for changes to this
136    * value, or NULL for none.
137    */
138   struct WatchEntry *we_tail;
139
140   /**
141    * Our value.
142    */
143   uint64_t value;
144
145   /**
146    * Unique ID.
147    */
148   uint32_t uid;
149
150   /**
151    * Is this value persistent?
152    */
153   int persistent;
154
155 };
156
157 /**
158  * Our configuration.
159  */
160 static const struct GNUNET_CONFIGURATION_Handle *cfg;
161
162 /**
163  * Linked list of our active statistics.
164  */
165 static struct StatsEntry *start;
166
167 /**
168  * Head of linked list of connected clients.
169  */
170 static struct ClientEntry *client_head;
171
172 /**
173  * Tail of linked list of connected clients.
174  */
175 static struct ClientEntry *client_tail;
176
177 /**
178  * Handle to our server.
179  */
180 static struct GNUNET_SERVER_Handle *srv;
181
182 /**
183  * Our notification context.
184  */
185 static struct GNUNET_SERVER_NotificationContext *nc;
186
187 /**
188  * Counter used to generate unique values.
189  */
190 static uint32_t uidgen;
191
192 /**
193  * Set to YES if we are shutting down as soon as possible.
194  */
195 static int in_shutdown;
196
197
198 /**
199  * Inject a message to our server with a client of 'NULL'.
200  *
201  * @param cls the 'struct GNUNET_SERVER_Handle'
202  * @param client unused
203  * @param msg message to inject
204  */
205 static void
206 inject_message (void *cls, void *client, const struct GNUNET_MessageHeader *msg)
207 {
208   struct GNUNET_SERVER_Handle *server = cls;
209
210   GNUNET_break (GNUNET_OK == GNUNET_SERVER_inject (server, NULL, msg));
211 }
212
213
214 /**
215  * Load persistent values from disk.  Disk format is
216  * exactly the same format that we also use for
217  * setting the values over the network.
218  *
219  * @param server handle to the server context
220  */
221 static void
222 load (struct GNUNET_SERVER_Handle *server)
223 {
224   char *fn;
225   struct GNUNET_BIO_ReadHandle *rh;
226   struct stat sb;
227   char *buf;
228   struct GNUNET_SERVER_MessageStreamTokenizer *mst;
229   char *emsg;
230
231   fn = GNUNET_DISK_get_home_filename (cfg, "statistics", "statistics.data",
232                                       NULL);
233   if (fn == NULL)
234     return;
235   if ((0 != stat (fn, &sb)) || (sb.st_size == 0))
236   {
237     GNUNET_free (fn);
238     return;
239   }
240   buf = GNUNET_malloc (sb.st_size);
241   rh = GNUNET_BIO_read_open (fn);
242   if (!rh)
243   {
244     GNUNET_free (buf);
245     GNUNET_free (fn);
246     return;
247   }
248   if (GNUNET_OK != GNUNET_BIO_read (rh, fn, buf, sb.st_size))
249   {
250     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "read", fn);
251     GNUNET_break (GNUNET_OK == GNUNET_BIO_read_close (rh, &emsg));
252     GNUNET_free (buf);
253     GNUNET_free_non_null (emsg);
254     GNUNET_free (fn);
255     return;
256   }
257   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
258               _("Loading %llu bytes of statistics from `%s'\n"),
259               (unsigned long long) sb.st_size, fn);
260   mst = GNUNET_SERVER_mst_create (&inject_message, server);
261   GNUNET_break (GNUNET_OK ==
262                 GNUNET_SERVER_mst_receive (mst, NULL, buf, sb.st_size,
263                                            GNUNET_YES, GNUNET_NO));
264   GNUNET_SERVER_mst_destroy (mst);
265   GNUNET_free (buf);
266   GNUNET_break (GNUNET_OK == GNUNET_BIO_read_close (rh, &emsg));
267   GNUNET_free_non_null (emsg);
268   GNUNET_free (fn);
269 }
270
271
272 /**
273  * Write persistent statistics to disk.
274  */
275 static void
276 save ()
277 {
278   struct StatsEntry *pos;
279   char *fn;
280   struct GNUNET_BIO_WriteHandle *wh;
281   
282   uint16_t size;
283   unsigned long long total;
284
285   wh = NULL;
286   fn = GNUNET_DISK_get_home_filename (cfg, "statistics", "statistics.data",
287                                       NULL);
288   if (fn != NULL)
289     wh = GNUNET_BIO_write_open (fn);
290   total = 0;
291   while (NULL != (pos = start))
292   {
293     start = pos->next;
294     if ((pos->persistent) && (NULL != wh))
295     {
296       size = htons (pos->msg->header.size);
297       if (GNUNET_OK != GNUNET_BIO_write (wh, pos->msg, size))
298       {
299         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "write", fn);
300         if (GNUNET_OK != GNUNET_BIO_write_close (wh))
301           GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "close", fn);
302         wh = NULL;
303       }
304       else
305         total += size;
306     }
307     GNUNET_free (pos);
308   }
309   if (NULL != wh)
310   {
311     if (GNUNET_OK != GNUNET_BIO_write_close (wh))
312       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "close", fn);
313     if (total == 0)
314       GNUNET_break (0 == UNLINK (fn));
315     else
316       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
317                   _("Wrote %llu bytes of statistics to `%s'\n"), total, fn);
318   }
319   GNUNET_free_non_null (fn);
320 }
321
322
323 /**
324  * Transmit the given stats value.
325  *
326  * @param client receiver of the value
327  * @param e value to transmit
328  */
329 static void
330 transmit (struct GNUNET_SERVER_Client *client, const struct StatsEntry *e)
331 {
332   struct GNUNET_STATISTICS_ReplyMessage *m;
333   size_t size;
334
335   size =
336       sizeof (struct GNUNET_STATISTICS_ReplyMessage) + strlen (e->service) + 1 +
337       strlen (e->name) + 1;
338   GNUNET_assert (size < GNUNET_SERVER_MAX_MESSAGE_SIZE);
339   m = GNUNET_malloc (size);
340   m->header.type = htons (GNUNET_MESSAGE_TYPE_STATISTICS_VALUE);
341   m->header.size = htons (size);
342   m->uid = htonl (e->uid);
343   if (e->persistent)
344     m->uid |= htonl (GNUNET_STATISTICS_PERSIST_BIT);
345   m->value = GNUNET_htonll (e->value);
346   size -= sizeof (struct GNUNET_STATISTICS_ReplyMessage);
347   GNUNET_assert (size ==
348                  GNUNET_STRINGS_buffer_fill ((char *) &m[1], size, 2,
349                                              e->service, e->name));
350   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
351               "Transmitting value for `%s:%s' (%d): %llu\n", e->service,
352               e->name, e->persistent, e->value);
353   GNUNET_SERVER_notification_context_unicast (nc, client, &m->header,
354                                               GNUNET_NO);
355   GNUNET_free (m);
356 }
357
358
359 /**
360  * Does this entry match the request?
361  *
362  * @param e an entry
363  * @param service name of service to match
364  * @param name value to match
365  * @return 1 if they match, 0 if not
366  */
367 static int
368 matches (const struct StatsEntry *e, const char *service, const char *name)
369 {
370   return ((0 == strlen (service)) || (0 == strcmp (service, e->service))) &&
371       ((0 == strlen (name)) || (0 == strcmp (name, e->name)));
372 }
373
374
375 /**
376  * Find a client entry for the given client handle, or create one.
377  *
378  * @param client handle to match
379  * @return corresponding client entry struct
380  */
381 static struct ClientEntry *
382 make_client_entry (struct GNUNET_SERVER_Client *client)
383 {
384   struct ClientEntry *ce;
385
386   GNUNET_assert (client != NULL);
387   ce = client_head;
388   while (ce != NULL)
389   {
390     if (ce->client == client)
391       return ce;
392     ce = ce->next;
393   }
394   ce = GNUNET_malloc (sizeof (struct ClientEntry));
395   ce->client = client;
396   GNUNET_SERVER_client_keep (client);
397   GNUNET_CONTAINER_DLL_insert (client_head, client_tail, ce);
398   GNUNET_SERVER_notification_context_add (nc, client);
399   return ce;
400 }
401
402
403 /**
404  * Handle GET-message.
405  *
406  * @param cls closure
407  * @param client identification of the client
408  * @param message the actual message
409  * @return GNUNET_OK to keep the connection open,
410  *         GNUNET_SYSERR to close it (signal serious error)
411  */
412 static void
413 handle_get (void *cls, struct GNUNET_SERVER_Client *client,
414             const struct GNUNET_MessageHeader *message)
415 {
416   struct GNUNET_MessageHeader end;
417   char *service;
418   char *name;
419   struct StatsEntry *pos;
420   size_t size;
421
422   if (client != NULL)
423     make_client_entry (client);
424   size = ntohs (message->size) - sizeof (struct GNUNET_MessageHeader);
425   if (size !=
426       GNUNET_STRINGS_buffer_tokenize ((const char *) &message[1], size, 2,
427                                       &service, &name))
428   {
429     GNUNET_break (0);
430     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
431     return;
432   }
433   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
434               "Received request for statistics on `%s:%s'\n",
435               strlen (service) ? service : "*", strlen (name) ? name : "*");
436   for (pos = start; NULL != pos; pos = pos->next)
437     if (matches (pos, service, name))
438       transmit (client, pos);
439   end.size = htons (sizeof (struct GNUNET_MessageHeader));
440   end.type = htons (GNUNET_MESSAGE_TYPE_STATISTICS_END);
441   GNUNET_SERVER_notification_context_unicast (nc, client, &end, GNUNET_NO);
442   GNUNET_SERVER_receive_done (client, GNUNET_OK);
443 }
444
445
446 /**
447  * Notify all clients listening about a change to a value.
448  *
449  * @param se value that changed
450  */
451 static void
452 notify_change (struct StatsEntry *se)
453 {
454   struct GNUNET_STATISTICS_WatchValueMessage wvm;
455   struct WatchEntry *pos;
456
457   for (pos = se->we_head; NULL != pos; pos = pos->next)
458   {
459     if (pos->last_value == se->value)
460       continue;
461     wvm.header.type = htons (GNUNET_MESSAGE_TYPE_STATISTICS_WATCH_VALUE);
462     wvm.header.size =
463       htons (sizeof (struct GNUNET_STATISTICS_WatchValueMessage));
464     wvm.flags = htonl (se->persistent ? GNUNET_STATISTICS_PERSIST_BIT : 0);
465     wvm.wid = htonl (pos->wid);
466     wvm.reserved = htonl (0);
467     wvm.value = GNUNET_htonll (se->value);
468     GNUNET_SERVER_notification_context_unicast (nc, pos->client, &wvm.header,
469                                                 GNUNET_NO);
470     pos->last_value = se->value;
471   }
472 }
473
474 /**
475  * Handle SET-message.
476  *
477  * @param cls closure
478  * @param client identification of the client
479  * @param message the actual message
480  */
481 static void
482 handle_set (void *cls, struct GNUNET_SERVER_Client *client,
483             const struct GNUNET_MessageHeader *message)
484 {
485   char *service;
486   char *name;
487   uint16_t msize;
488   uint16_t size;
489   const struct GNUNET_STATISTICS_SetMessage *msg;
490   struct StatsEntry *pos;
491   struct StatsEntry *prev;
492   uint32_t flags;
493   uint64_t value;
494   int64_t delta;
495   int changed;
496
497   if (client != NULL)
498     make_client_entry (client);
499   msize = ntohs (message->size);
500   if (msize < sizeof (struct GNUNET_STATISTICS_SetMessage))
501   {
502     GNUNET_break (0);
503     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
504     return;
505   }
506   size = msize - sizeof (struct GNUNET_STATISTICS_SetMessage);
507   msg = (const struct GNUNET_STATISTICS_SetMessage *) message;
508
509   if (size !=
510       GNUNET_STRINGS_buffer_tokenize ((const char *) &msg[1], size, 2, &service,
511                                       &name))
512   {
513     GNUNET_break (0);
514     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
515     return;
516   }
517   flags = ntohl (msg->flags);
518   value = GNUNET_ntohll (msg->value);
519   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
520               "Received request to update statistic on `%s:%s' (%u) to/by %llu\n",
521               service, name, (unsigned int) flags, (unsigned long long) value);
522   pos = start;
523   prev = NULL;
524   while (pos != NULL)
525   {
526     if (matches (pos, service, name))
527     {
528       if ((flags & GNUNET_STATISTICS_SETFLAG_RELATIVE) == 0)
529       {
530         changed = (pos->value != value);
531         pos->value = value;
532       }
533       else
534       {
535         delta = (int64_t) value;
536         if ((delta < 0) && (pos->value < -delta))
537         {
538           changed = (pos->value != 0);
539           pos->value = 0;
540         }
541         else
542         {
543           changed = (delta != 0);
544           GNUNET_break ((delta <= 0) || (pos->value + delta > pos->value));
545           pos->value += delta;
546         }
547       }
548       pos->msg->value = GNUNET_htonll (pos->value);
549       pos->msg->flags = msg->flags;
550       pos->persistent = (0 != (flags & GNUNET_STATISTICS_SETFLAG_PERSISTENT));
551       if (prev != NULL)
552       {
553         /* move to front for faster setting next time! */
554         prev->next = pos->next;
555         pos->next = start;
556         start = pos;
557       }
558       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
559                   "Statistic `%s:%s' updated to value %llu.\n", service, name,
560                   pos->value);
561       if (changed)
562         notify_change (pos);
563       GNUNET_SERVER_receive_done (client, GNUNET_OK);
564       return;
565     }
566     prev = pos;
567     pos = pos->next;
568   }
569   pos = GNUNET_malloc (sizeof (struct StatsEntry) + msize);
570   pos->next = start;
571   if (((flags & GNUNET_STATISTICS_SETFLAG_RELATIVE) == 0) ||
572       (0 < (int64_t) GNUNET_ntohll (msg->value)))
573     pos->value = GNUNET_ntohll (msg->value);
574   pos->uid = uidgen++;
575   pos->persistent = (0 != (flags & GNUNET_STATISTICS_SETFLAG_PERSISTENT));
576   pos->msg = (void *) &pos[1];
577   memcpy (pos->msg, message, ntohs (message->size));
578   pos->service = (const char *) &pos->msg[1];
579   pos->name = &pos->service[strlen (pos->service) + 1];
580
581   start = pos;
582   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
583               "New statistic on `%s:%s' with value %llu created.\n", service,
584               name, pos->value);
585   GNUNET_SERVER_receive_done (client, GNUNET_OK);
586 }
587
588
589 /**
590  * Handle WATCH-message.
591  *
592  * @param cls closure
593  * @param client identification of the client
594  * @param message the actual message
595  */
596 static void
597 handle_watch (void *cls, struct GNUNET_SERVER_Client *client,
598               const struct GNUNET_MessageHeader *message)
599 {
600   char *service;
601   char *name;
602   uint16_t msize;
603   uint16_t size;
604   struct StatsEntry *pos;
605   struct ClientEntry *ce;
606   struct WatchEntry *we;
607   size_t slen;
608
609   ce = make_client_entry (client);
610   msize = ntohs (message->size);
611   if (msize < sizeof (struct GNUNET_MessageHeader))
612   {
613     GNUNET_break (0);
614     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
615     return;
616   }
617   size = msize - sizeof (struct GNUNET_MessageHeader);
618   if (size !=
619       GNUNET_STRINGS_buffer_tokenize ((const char *) &message[1], size, 2,
620                                       &service, &name))
621   {
622     GNUNET_break (0);
623     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
624     return;
625   }
626   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
627               "Received request to watch statistic on `%s:%s'\n", service,
628               name);
629   pos = start;
630   while (pos != NULL)
631   {
632     if (matches (pos, service, name))
633       break;
634     pos = pos->next;
635   }
636   if (pos == NULL)
637   {
638     pos =
639         GNUNET_malloc (sizeof (struct StatsEntry) +
640                        sizeof (struct GNUNET_STATISTICS_SetMessage) + size);
641     pos->next = start;
642     pos->uid = uidgen++;
643     pos->msg = (void *) &pos[1];
644     pos->msg->header.size =
645         htons (sizeof (struct GNUNET_STATISTICS_SetMessage) + size);
646     pos->msg->header.type = htons (GNUNET_MESSAGE_TYPE_STATISTICS_SET);
647     pos->service = (const char *) &pos->msg[1];
648     slen = strlen (service) + 1;
649     memcpy ((void *) pos->service, service, slen);
650     pos->name = &pos->service[slen];
651     memcpy ((void *) pos->name, name, strlen (name) + 1);
652     start = pos;
653   }
654   we = GNUNET_malloc (sizeof (struct WatchEntry));
655   we->client = client;
656   GNUNET_SERVER_client_keep (client);
657   we->wid = ce->max_wid++;
658   GNUNET_CONTAINER_DLL_insert (pos->we_head, pos->we_tail, we);
659   if (pos->value != 0)
660     notify_change (pos);
661   GNUNET_SERVER_receive_done (client, GNUNET_OK);
662 }
663
664
665 /**
666  * Actually perform the shutdown.
667  */
668 static void 
669 do_shutdown ()
670 {
671   struct WatchEntry *we;
672   struct StatsEntry *se;
673
674   save ();
675   GNUNET_SERVER_notification_context_destroy (nc);
676   nc = NULL;
677   GNUNET_assert (NULL == client_head);
678   while (NULL != (se = start))
679   {
680     start = se->next;
681     while (NULL != (we = se->we_head))
682     {
683       GNUNET_SERVER_client_drop (we->client);
684       GNUNET_CONTAINER_DLL_remove (se->we_head, se->we_tail, we);
685       GNUNET_free (we);
686     }
687     GNUNET_free (se);
688   }
689   GNUNET_SERVER_destroy (srv);
690 }
691
692
693 /**
694  * Task run during shutdown.
695  *
696  * @param cls unused
697  * @param tc unused
698  */
699 static void
700 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
701 {
702   in_shutdown = GNUNET_YES;
703   if (NULL != client_head)
704     return;
705   do_shutdown ();
706 }
707
708
709 /**
710  * A client disconnected.  Remove all of its data structure entries.
711  *
712  * @param cls closure, NULL
713  * @param client identification of the client
714  */
715 static void
716 handle_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
717 {
718   struct ClientEntry *ce;
719   struct WatchEntry *we;
720   struct WatchEntry *wen;
721   struct StatsEntry *se;
722
723   ce = client_head;
724   while (NULL != ce)
725   {
726     if (ce->client == client)
727     {
728       GNUNET_SERVER_client_drop (ce->client);
729       GNUNET_CONTAINER_DLL_remove (client_head, client_tail, ce);
730       GNUNET_free (ce);
731       break;
732     }
733     ce = ce->next;
734   }
735   se = start;
736   while (NULL != se)
737   {
738     wen = se->we_head;
739     while (NULL != (we = wen))
740     {
741       wen = we->next;
742       if (we->client != client)
743         continue;
744       GNUNET_SERVER_client_drop (we->client);
745       GNUNET_CONTAINER_DLL_remove (se->we_head, se->we_tail, we);
746       GNUNET_free (we);
747     }
748     se = se->next;
749   }
750   if ( (NULL == client_head) &&
751        (GNUNET_YES == in_shutdown) )
752     do_shutdown ();
753 }
754
755
756 /**
757  * Process statistics requests.
758  *
759  * @param cls closure
760  * @param server the initialized server
761  * @param c configuration to use
762  */
763 static void
764 run (void *cls, struct GNUNET_SERVER_Handle *server,
765      const struct GNUNET_CONFIGURATION_Handle *c)
766 {
767   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
768     {&handle_set, NULL, GNUNET_MESSAGE_TYPE_STATISTICS_SET, 0},
769     {&handle_get, NULL, GNUNET_MESSAGE_TYPE_STATISTICS_GET, 0},
770     {&handle_watch, NULL, GNUNET_MESSAGE_TYPE_STATISTICS_WATCH, 0},
771     {NULL, NULL, 0, 0}
772   };
773   cfg = c;
774   srv = server;
775   GNUNET_SERVER_add_handlers (server, handlers);
776   GNUNET_SERVER_ignore_shutdown (server, GNUNET_YES);
777   nc = GNUNET_SERVER_notification_context_create (server, 16);
778   GNUNET_SERVER_disconnect_notify (server, &handle_client_disconnect, NULL);
779   load (server);
780   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
781                                 NULL);
782 }
783
784
785 /**
786  * The main function for the statistics service.
787  *
788  * @param argc number of arguments from the command line
789  * @param argv command line arguments
790  * @return 0 ok, 1 on error
791  */
792 int
793 main (int argc, char *const *argv)
794 {
795   return (GNUNET_OK ==
796           GNUNET_SERVICE_run (argc, argv, "statistics",
797                               GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
798 }
799
800 /* end of gnunet-service-statistics.c */