SHUTDOWN
[oweals/gnunet.git] / src / statistics / statistics_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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/statistics_api.c
23  * @brief API of the statistics service
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_client_lib.h"
28 #include "gnunet_constants.h"
29 #include "gnunet_container_lib.h"
30 #include "gnunet_protocols.h"
31 #include "gnunet_server_lib.h"
32 #include "gnunet_statistics_service.h"
33 #include "gnunet_strings_lib.h"
34 #include "statistics.h"
35
36 /**
37  * How long do we wait until a statistics request for setting
38  * a value times out?  (The update will be lost if the
39  * service does not react within this timeframe).  
40  */
41 #define SET_TRANSMIT_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 250)
42
43
44 /**
45  * Types of actions.
46  */
47 enum ActionType
48 {
49   ACTION_GET,
50   ACTION_SET,
51   ACTION_UPDATE,
52   ACTION_WATCH
53 };
54
55
56 /**
57  * Entry kept for each value we are watching.
58  */
59 struct GNUNET_STATISTICS_WatchEntry
60 {
61  
62   /**
63    * What subsystem is this action about? (never NULL)
64    */
65   char *subsystem;
66
67   /**
68    * What value is this action about? (never NULL)
69    */
70   char *name;
71
72   /**
73    * Function to call
74    */
75   GNUNET_STATISTICS_Iterator proc;
76
77   /**
78    * Closure for proc
79    */
80   void *proc_cls;
81
82 };
83
84
85 /**
86  * Linked list of things we still need to do.
87  */
88 struct GNUNET_STATISTICS_GetHandle
89 {
90
91   /**
92    * This is a doubly linked list.
93    */
94   struct GNUNET_STATISTICS_GetHandle *next;
95
96   /**
97    * This is a doubly linked list.
98    */
99   struct GNUNET_STATISTICS_GetHandle *prev;
100
101   /**
102    * Main statistics handle.
103    */
104   struct GNUNET_STATISTICS_Handle *sh;
105  
106   /**
107    * What subsystem is this action about? (can be NULL)
108    */
109   char *subsystem;
110
111   /**
112    * What value is this action about? (can be NULL)
113    */
114   char *name;
115
116   /**
117    * Continuation to call once action is complete.
118    */
119   GNUNET_STATISTICS_Callback cont;
120
121   /**
122    * Function to call (for GET actions only).
123    */
124   GNUNET_STATISTICS_Iterator proc;
125
126   /**
127    * Closure for proc and cont.
128    */
129   void *cls;
130
131   /**
132    * Timeout for this action.
133    */
134   struct GNUNET_TIME_Absolute timeout;
135
136   /**
137    * Associated value.
138    */
139   uint64_t value;
140
141   /**
142    * Flag for SET/UPDATE actions.
143    */
144   int make_persistent;
145
146   /**
147    * Has the current iteration been aborted; for GET actions.
148    */
149   int aborted;
150
151   /**
152    * Is this a GET, SET, UPDATE or WATCH?
153    */
154   enum ActionType type;
155
156   /**
157    * Size of the message that we will be transmitting.
158    */
159   uint16_t msize;
160
161 };
162
163
164 /**
165  * Handle for the service.
166  */
167 struct GNUNET_STATISTICS_Handle
168 {
169   /**
170    * Name of our subsystem.
171    */
172   char *subsystem;
173
174   /**
175    * Configuration to use.
176    */
177   const struct GNUNET_CONFIGURATION_Handle *cfg;
178
179   /**
180    * Socket (if available).
181    */
182   struct GNUNET_CLIENT_Connection *client;
183
184   /**
185    * Currently pending transmission request.
186    */
187   struct GNUNET_CLIENT_TransmitHandle *th;
188
189   /**
190    * Head of the linked list of pending actions (first action
191    * to be performed).
192    */
193   struct GNUNET_STATISTICS_GetHandle *action_head;
194
195   /**
196    * Tail of the linked list of actions (for fast append).
197    */
198   struct GNUNET_STATISTICS_GetHandle *action_tail;
199
200   /**
201    * Action we are currently busy with (action request has been
202    * transmitted, we're now receiving the response from the
203    * service).
204    */
205   struct GNUNET_STATISTICS_GetHandle *current;
206
207   /**
208    * Array of watch entries.
209    */
210   struct GNUNET_STATISTICS_WatchEntry **watches;
211
212   /**
213    * Task doing exponential back-off trying to reconnect.
214    */
215   GNUNET_SCHEDULER_TaskIdentifier backoff_task;
216
217   /**
218    * Time for next connect retry.
219    */
220   struct GNUNET_TIME_Relative backoff;
221
222   /**
223    * Size of the 'watches' array.
224    */
225   unsigned int watches_size;
226
227   /**
228    * Should this handle auto-destruct once all actions have
229    * been processed?
230    */
231   int do_destroy;
232
233   /**
234    * Are we currently receiving from the service?
235    */
236   int receiving;
237
238 };
239
240
241
242 /**
243  * Schedule the next action to be performed.
244  */
245 static void schedule_action (struct GNUNET_STATISTICS_Handle *h);
246
247 /**
248  * Try to (re)connect to the statistics service.
249  *
250  * @return GNUNET_YES on success, GNUNET_NO on failure.
251  */
252 static int
253 try_connect (struct GNUNET_STATISTICS_Handle *ret);
254
255
256 static void
257 insert_ai (struct GNUNET_STATISTICS_Handle *h, struct GNUNET_STATISTICS_GetHandle *ai)
258 {
259   GNUNET_CONTAINER_DLL_insert_after (h->action_head,
260                                      h->action_tail,
261                                      h->action_tail,
262                                      ai);                                    
263   if (h->action_head == ai)
264     schedule_action (h);
265 }
266
267
268 static void
269 schedule_watch_request (struct GNUNET_STATISTICS_Handle *h,
270                         struct GNUNET_STATISTICS_WatchEntry *watch)
271 {
272
273   struct GNUNET_STATISTICS_GetHandle *ai;
274   size_t slen;
275   size_t nlen;
276   size_t nsize;
277   
278   GNUNET_assert (h != NULL);
279   if (GNUNET_YES != try_connect (h))
280     {
281       schedule_action (h);
282       return;
283     }
284   slen = strlen (watch->subsystem) + 1;
285   nlen = strlen (watch->name) + 1;
286   nsize = sizeof (struct GNUNET_MessageHeader) + slen + nlen;
287   if (nsize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
288     {
289       GNUNET_break (0);
290       return;
291     }
292   ai = GNUNET_malloc (sizeof (struct GNUNET_STATISTICS_GetHandle));
293   ai->sh = h;
294   ai->subsystem = GNUNET_strdup (watch->subsystem);
295   ai->name = GNUNET_strdup (watch->name);
296   ai->timeout = GNUNET_TIME_UNIT_FOREVER_ABS;
297   ai->msize = nsize;
298   ai->type = ACTION_WATCH;
299   ai->proc = watch->proc;
300   ai->cls = watch->proc_cls;
301   insert_ai (h, ai);
302 }
303
304
305 /**
306  * Try to (re)connect to the statistics service.
307  *
308  * @return GNUNET_YES on success, GNUNET_NO on failure.
309  */
310 static int
311 try_connect (struct GNUNET_STATISTICS_Handle *ret)
312 {
313   unsigned int i;
314   if (ret->client != NULL)
315     return GNUNET_YES;
316   ret->client = GNUNET_CLIENT_connect ("statistics", ret->cfg);
317   if (ret->client != NULL)
318     {
319       for (i=0;i<ret->watches_size;i++)
320         schedule_watch_request (ret, ret->watches[i]);
321       return GNUNET_YES;
322     }
323 #if DEBUG_STATISTICS
324   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
325               _("Failed to connect to statistics service!\n"));
326 #endif
327   return GNUNET_NO;
328 }
329
330
331 /**
332  * Free memory associated with the given action item.
333  */
334 static void
335 free_action_item (struct GNUNET_STATISTICS_GetHandle *ai)
336 {
337   GNUNET_free_non_null (ai->subsystem);
338   GNUNET_free_non_null (ai->name);
339   GNUNET_free (ai);
340 }
341
342
343 /**
344  * GET processing is complete, tell client about it.
345  */
346 static void
347 finish (struct GNUNET_STATISTICS_Handle *h, int code)
348 {
349   struct GNUNET_STATISTICS_GetHandle *pos = h->current;
350   h->current = NULL;
351   schedule_action (h);
352   if (pos != NULL)
353     {
354       if (pos->cont != NULL)
355         pos->cont (pos->cls, code);
356       free_action_item (pos);
357     }
358 }
359
360
361 /**
362  * Process the message.
363  *
364  * @return GNUNET_OK if the message was well-formed
365  */
366 static int
367 process_message (struct GNUNET_STATISTICS_Handle *h,
368                  const struct GNUNET_MessageHeader *msg)
369 {
370   char *service;
371   char *name;
372   const struct GNUNET_STATISTICS_ReplyMessage *smsg;
373   uint16_t size;
374
375   if (h->current->aborted)
376     {
377 #if DEBUG_STATISTICS
378       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
379                   "Iteration was aborted, ignoring VALUE\n");
380 #endif      
381       return GNUNET_OK;           /* don't bother */
382     }
383   size = ntohs (msg->size);
384   if (size < sizeof (struct GNUNET_STATISTICS_ReplyMessage))
385     {
386       GNUNET_break (0);
387       return GNUNET_SYSERR;
388     }
389   smsg = (const struct GNUNET_STATISTICS_ReplyMessage *) msg;
390   size -= sizeof (struct GNUNET_STATISTICS_ReplyMessage);
391   if (size != GNUNET_STRINGS_buffer_tokenize ((const char *) &smsg[1],
392                                               size, 2, &service, &name))
393     {
394       GNUNET_break (0);
395       return GNUNET_SYSERR;
396     }
397 #if DEBUG_STATISTICS
398   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
399               "Received valid statistic on `%s:%s': %llu\n",
400               service, name, GNUNET_ntohll (smsg->value));
401 #endif
402   if (GNUNET_OK !=
403       h->current->proc (h->current->cls,
404                         service,
405                         name,
406                         GNUNET_ntohll (smsg->value),
407                         0 !=
408                         (ntohl (smsg->uid) & GNUNET_STATISTICS_PERSIST_BIT)))
409     {
410 #if DEBUG_STATISTICS
411       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
412                   "Processing of remaining statistics aborted by client.\n");
413 #endif
414       h->current->aborted = GNUNET_YES;    
415     }
416 #if DEBUG_STATISTICS
417   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
418               "VALUE processed successfully\n");
419 #endif      
420   return GNUNET_OK;
421 }
422
423
424 static int
425 process_watch_value (struct GNUNET_STATISTICS_Handle *h,
426                      const struct GNUNET_MessageHeader *msg)
427 {
428   const struct GNUNET_STATISTICS_WatchValueMessage *wvm;
429   struct GNUNET_STATISTICS_WatchEntry *w;
430   uint32_t wid;
431
432   if (sizeof(struct GNUNET_STATISTICS_WatchValueMessage) !=
433       ntohs (msg->size))
434     {
435       GNUNET_break (0);
436       return GNUNET_SYSERR;
437     }
438   wvm = (const struct GNUNET_STATISTICS_WatchValueMessage *)msg;
439   GNUNET_break (0 == ntohl (wvm->reserved));
440   wid = ntohl (wvm->wid);
441   if (wid >= h->watches_size)
442     {
443       GNUNET_break (0);
444       return GNUNET_SYSERR;
445     }
446   w = h->watches[wid];
447   (void) w->proc (w->proc_cls,
448                   w->subsystem,
449                   w->name,
450                   GNUNET_ntohll (wvm->value),
451                   0 !=
452                   (ntohl (wvm->flags) & GNUNET_STATISTICS_PERSIST_BIT));
453   return GNUNET_OK;
454 }
455
456
457 /**
458  * Function called with messages from stats service.
459  *
460  * @param cls closure
461  * @param msg message received, NULL on timeout or fatal error
462  */
463 static void
464 receive_stats (void *cls, const struct GNUNET_MessageHeader *msg)
465 {
466   struct GNUNET_STATISTICS_Handle *h = cls;
467
468   if (msg == NULL)
469     {
470       if (NULL != h->client)
471         {
472           GNUNET_CLIENT_disconnect (h->client, GNUNET_NO);
473           h->client = NULL;
474         }
475 #if DEBUG_STATISTICS
476       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
477                   "Error receiving statistics from service, is the service running?\n" );
478 #endif
479       finish (h, GNUNET_SYSERR);
480       return;
481     }
482   switch (ntohs (msg->type))
483     {
484     case GNUNET_MESSAGE_TYPE_STATISTICS_END:
485 #if DEBUG_STATISTICS
486       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
487                   "Received end of statistics marker\n");
488 #endif
489       h->backoff = GNUNET_TIME_UNIT_MILLISECONDS;
490       if (h->watches_size > 0)
491         {
492           GNUNET_CLIENT_receive (h->client,
493                                  &receive_stats,
494                                  h,
495                                  GNUNET_TIME_UNIT_FOREVER_REL);
496         }
497       else
498         {
499           h->receiving = GNUNET_NO;
500         }
501       finish (h, GNUNET_OK);
502       return;
503     case GNUNET_MESSAGE_TYPE_STATISTICS_VALUE:
504       if (GNUNET_OK == process_message (h, msg))
505         {
506           /* finally, look for more! */
507 #if DEBUG_STATISTICS
508           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
509                       "Processing VALUE done, now reading more\n");
510 #endif      
511           GNUNET_CLIENT_receive (h->client,
512                                  &receive_stats,
513                                  h,
514                                  GNUNET_TIME_absolute_get_remaining
515                                  (h->current->timeout));
516           h->backoff = GNUNET_TIME_UNIT_MILLISECONDS;
517           return;
518         }
519       GNUNET_break (0);
520       break;
521     case GNUNET_MESSAGE_TYPE_STATISTICS_WATCH_VALUE:
522       if (GNUNET_OK ==
523           process_watch_value (h, 
524                                msg))
525         {
526           h->backoff = GNUNET_TIME_UNIT_MILLISECONDS;
527           GNUNET_assert (h->watches_size > 0);
528           GNUNET_CLIENT_receive (h->client,
529                                  &receive_stats,
530                                  h,
531                                  GNUNET_TIME_UNIT_FOREVER_REL);
532           return;
533         }
534       GNUNET_break (0);
535       break;
536     default:
537       GNUNET_break (0);
538       break;
539     }
540   if (NULL != h->client)
541     {
542       GNUNET_CLIENT_disconnect (h->client, GNUNET_NO);
543       h->client = NULL;
544     }
545   finish (h, GNUNET_SYSERR);
546 }
547
548
549 /**
550  * Transmit a GET request (and if successful, start to receive
551  * the response).
552  */
553 static size_t
554 transmit_get (struct GNUNET_STATISTICS_Handle *handle, size_t size, void *buf)
555 {
556   struct GNUNET_MessageHeader *hdr;
557   size_t slen1;
558   size_t slen2;
559   uint16_t msize;
560
561   if (buf == NULL)
562     {
563       /* timeout / error */
564 #if DEBUG_STATISTICS
565       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
566                   "Transmission of request for statistics failed!\n");
567 #endif
568       finish (handle, GNUNET_SYSERR);
569       return 0;
570     }
571   slen1 = strlen (handle->current->subsystem) + 1;
572   slen2 = strlen (handle->current->name) + 1;
573   msize = slen1 + slen2 + sizeof (struct GNUNET_MessageHeader);
574   GNUNET_assert (msize <= size);
575   hdr = (struct GNUNET_MessageHeader *) buf;
576   hdr->size = htons (msize);
577   hdr->type = htons (GNUNET_MESSAGE_TYPE_STATISTICS_GET);
578   GNUNET_assert (slen1 + slen2 ==
579                  GNUNET_STRINGS_buffer_fill ((char *) &hdr[1],
580                                              slen1 + slen2,
581                                              2,
582                                              handle->current->subsystem,
583                                              handle->current->name));
584   if (! handle->receiving)
585     {
586 #if DEBUG_STATISTICS
587       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
588                   "Transmission of GET done, now reading response\n");
589 #endif      
590       handle->receiving = GNUNET_YES;
591       GNUNET_CLIENT_receive (handle->client,
592                              &receive_stats,
593                              handle,
594                              GNUNET_TIME_absolute_get_remaining (handle->
595                                                                  current->timeout));
596     }
597   return msize;
598 }
599
600
601 /**
602  * Transmit a WATCH request (and if successful, start to receive
603  * the response).
604  */
605 static size_t
606 transmit_watch (struct GNUNET_STATISTICS_Handle *handle, size_t size, void *buf)
607 {
608   struct GNUNET_MessageHeader *hdr;
609   size_t slen1;
610   size_t slen2;
611   uint16_t msize;
612
613   if (buf == NULL)
614     {
615       /* timeout / error */
616 #if DEBUG_STATISTICS
617       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
618                   "Transmission of request for statistics failed!\n");
619 #endif
620       finish (handle, GNUNET_SYSERR);
621       return 0;
622     }
623   slen1 = strlen (handle->current->subsystem) + 1;
624   slen2 = strlen (handle->current->name) + 1;
625   msize = slen1 + slen2 + sizeof (struct GNUNET_MessageHeader);
626   GNUNET_assert (msize <= size);
627   hdr = (struct GNUNET_MessageHeader *) buf;
628   hdr->size = htons (msize);
629   hdr->type = htons (GNUNET_MESSAGE_TYPE_STATISTICS_WATCH);
630   GNUNET_assert (slen1 + slen2 ==
631                  GNUNET_STRINGS_buffer_fill ((char *) &hdr[1],
632                                              slen1 + slen2,
633                                              2,
634                                              handle->current->subsystem,
635                                              handle->current->name));
636   if (! handle->receiving)
637     {
638       handle->receiving = GNUNET_YES;
639       GNUNET_CLIENT_receive (handle->client,
640                              &receive_stats,
641                              handle,
642                              GNUNET_TIME_UNIT_FOREVER_REL);
643     }
644   return msize;
645 }
646
647
648 /**
649  * Transmit a SET/UPDATE request.
650  */
651 static size_t
652 transmit_set (struct GNUNET_STATISTICS_Handle *handle, size_t size, void *buf)
653 {
654   struct GNUNET_STATISTICS_SetMessage *r;
655   size_t slen;
656   size_t nlen;
657   size_t nsize;
658
659   if (NULL == buf)
660     {
661       finish (handle, GNUNET_SYSERR);
662       return 0;
663     }
664
665   slen = strlen (handle->current->subsystem) + 1;
666   nlen = strlen (handle->current->name) + 1;
667   nsize = sizeof (struct GNUNET_STATISTICS_SetMessage) + slen + nlen;
668   if (size < nsize)
669     {
670       GNUNET_break (0);
671       finish (handle, GNUNET_SYSERR);
672       return 0;
673     }
674   r = buf;
675   r->header.size = htons (nsize);
676   r->header.type = htons (GNUNET_MESSAGE_TYPE_STATISTICS_SET);
677   r->flags = 0;
678   r->value = GNUNET_htonll (handle->current->value);
679   if (handle->current->make_persistent)
680     r->flags |= htonl (GNUNET_STATISTICS_SETFLAG_PERSISTENT);
681   if (handle->current->type == ACTION_UPDATE)
682     r->flags |= htonl (GNUNET_STATISTICS_SETFLAG_RELATIVE);
683   GNUNET_assert (slen + nlen ==
684                  GNUNET_STRINGS_buffer_fill ((char *) &r[1],
685                                              slen + nlen,
686                                              2,
687                                              handle->current->subsystem,
688                                              handle->current->name));
689   finish (handle, GNUNET_OK);
690   return nsize;
691 }
692
693
694 static size_t
695 transmit_action (void *cls, size_t size, void *buf)
696 {
697   struct GNUNET_STATISTICS_Handle *handle = cls;
698   size_t ret;
699
700   handle->th = NULL;
701   switch (handle->current->type)
702     {
703     case ACTION_GET:
704       ret = transmit_get (handle, size, buf);
705       break;
706     case ACTION_SET:
707     case ACTION_UPDATE:
708       ret = transmit_set (handle, size, buf);
709       break;
710     case ACTION_WATCH:
711       ret = transmit_watch (handle, size, buf);
712       break;
713     default:
714       ret = 0;
715       GNUNET_break (0);
716       break; 
717     }
718   return ret;
719 }
720
721
722 /**
723  * Get handle for the statistics service.
724  *
725  * @param subsystem name of subsystem using the service
726  * @param cfg services configuration in use
727  * @return handle to use
728  */
729 struct GNUNET_STATISTICS_Handle *
730 GNUNET_STATISTICS_create (const char *subsystem,
731                           const struct GNUNET_CONFIGURATION_Handle *cfg)
732 {
733   struct GNUNET_STATISTICS_Handle *ret;
734
735   GNUNET_assert (subsystem != NULL);
736   GNUNET_assert (cfg != NULL);
737   ret = GNUNET_malloc (sizeof (struct GNUNET_STATISTICS_Handle));
738   ret->cfg = cfg;
739   ret->subsystem = GNUNET_strdup (subsystem);
740   ret->backoff = GNUNET_TIME_UNIT_MILLISECONDS;
741   if (GNUNET_YES != try_connect (ret))
742     {
743       GNUNET_free (ret->subsystem);
744       GNUNET_free (ret);
745       return NULL;
746     }
747   return ret;
748 }
749
750
751 /**
752  * Destroy a handle (free all state associated with
753  * it).
754  *
755  * @param h statistics handle to destroy
756  * @param sync_first set to GNUNET_YES if pending SET requests should
757  *        be completed
758  */
759 void
760 GNUNET_STATISTICS_destroy (struct GNUNET_STATISTICS_Handle *h,
761                            int sync_first)
762 {
763   struct GNUNET_STATISTICS_GetHandle *pos;
764   struct GNUNET_STATISTICS_GetHandle *next;
765   struct GNUNET_STATISTICS_GetHandle *prev;
766   struct GNUNET_TIME_Relative timeout;
767   int i;
768
769   if (h == NULL) return;
770   if (GNUNET_SCHEDULER_NO_TASK != h->backoff_task)
771     GNUNET_SCHEDULER_cancel (h->backoff_task);
772   if (sync_first)
773     {
774       if (h->current != NULL)
775         {
776           if (h->current->type == ACTION_GET)
777             {
778               GNUNET_CLIENT_notify_transmit_ready_cancel (h->th);
779               h->th = NULL;
780               free_action_item (h->current);
781               h->current = NULL;
782             }
783         }
784       pos = h->action_head;
785       prev = NULL;
786       while (pos != NULL)
787         {
788           next = pos->next;
789           if (pos->type == ACTION_GET)
790             {
791               if (prev == NULL)
792                 h->action_head = next;
793               else
794                 prev->next = next;
795               free_action_item (pos);
796             }
797           else
798             {
799               prev = pos;
800             }
801           pos = next;
802         }
803       h->action_tail = prev;
804       if (h->current == NULL)
805         {
806           h->current = h->action_head;
807           if (h->action_head != NULL)
808             {
809               h->action_head = h->action_head->next;
810               if (h->action_head == NULL)
811                 h->action_tail = NULL;
812             }
813         }
814       h->do_destroy = GNUNET_YES;
815       if ( (h->current != NULL) &&
816            (h->th == NULL) )
817         {                                       
818           timeout = GNUNET_TIME_absolute_get_remaining (h->current->timeout);
819           h->th = GNUNET_CLIENT_notify_transmit_ready (h->client,
820                                                        h->current->msize,
821                                                        timeout,
822                                                        GNUNET_YES,
823                                                        &transmit_action, h);
824           GNUNET_assert (NULL != h->th);
825         }
826       if (h->th != NULL)
827         return;
828     }
829   if (NULL != h->th)
830     {
831       GNUNET_CLIENT_notify_transmit_ready_cancel (h->th);
832       h->th = NULL;
833     }
834   if (h->current != NULL)
835     free_action_item (h->current);
836   while (NULL != (pos = h->action_head))
837     {
838       h->action_head = pos->next;
839       free_action_item (pos);
840     }
841   if (h->client != NULL)
842     {
843       GNUNET_CLIENT_disconnect (h->client, GNUNET_YES);
844       h->client = NULL;
845     }
846   for (i=0;i<h->watches_size;i++)
847     {
848       GNUNET_free (h->watches[i]->subsystem);
849       GNUNET_free (h->watches[i]->name);
850       GNUNET_free (h->watches[i]);
851     }
852   GNUNET_array_grow (h->watches,
853                      h->watches_size,
854                      0);
855   GNUNET_free (h->subsystem);
856   GNUNET_free (h);
857 }
858
859
860 static void
861 finish_task (void *cls,
862              const struct GNUNET_SCHEDULER_TaskContext *tc)
863 {
864   struct GNUNET_STATISTICS_Handle *h = cls;
865
866   h->backoff_task = GNUNET_SCHEDULER_NO_TASK;
867   finish (h, GNUNET_SYSERR);
868 }
869
870
871 /**
872  * Schedule the next action to be performed.
873  */
874 static void
875 schedule_action (struct GNUNET_STATISTICS_Handle *h)
876 {
877   struct GNUNET_TIME_Relative timeout;
878
879   if (h->current != NULL)
880     return;                     /* action already pending */
881   if (GNUNET_YES != try_connect (h))
882     {
883       h->backoff_task = GNUNET_SCHEDULER_add_delayed (h->backoff,
884                                                       &finish_task,
885                                                       h);
886       h->backoff = GNUNET_TIME_relative_multiply (h->backoff, 2);
887       h->backoff = GNUNET_TIME_relative_min (h->backoff,
888                                              GNUNET_CONSTANTS_SERVICE_TIMEOUT);
889       return;
890     }
891
892   /* schedule next action */
893   h->current = h->action_head;
894   if (NULL == h->current)
895     {
896       if (h->do_destroy)
897         {
898           h->do_destroy = GNUNET_NO;
899           GNUNET_STATISTICS_destroy (h, GNUNET_YES);
900         }
901       return;
902     }
903   GNUNET_CONTAINER_DLL_remove (h->action_head,
904                                h->action_tail,
905                                h->current);
906   timeout = GNUNET_TIME_absolute_get_remaining (h->current->timeout);
907   if (NULL ==
908       (h->th = GNUNET_CLIENT_notify_transmit_ready (h->client,
909                                                     h->current->msize,
910                                                     timeout,
911                                                     GNUNET_YES,
912                                                     &transmit_action, h)))
913     {
914 #if DEBUG_STATISTICS
915       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
916                   "Failed to transmit request to statistics service.\n");
917 #endif
918       finish (h, GNUNET_SYSERR);
919     }
920 }
921
922
923 /**
924  * Get statistic from the peer.
925  *
926  * @param handle identification of the statistics service
927  * @param subsystem limit to the specified subsystem, NULL for our subsystem
928  * @param name name of the statistic value, NULL for all values
929  * @param timeout after how long should we give up (and call
930  *        cont with an error code)?
931  * @param cont continuation to call when done (can be NULL)
932  * @param proc function to call on each value
933  * @param cls closure for cont and proc
934  * @return NULL on error
935  */
936 struct GNUNET_STATISTICS_GetHandle *
937 GNUNET_STATISTICS_get (struct GNUNET_STATISTICS_Handle *handle,
938                        const char *subsystem,
939                        const char *name,
940                        struct GNUNET_TIME_Relative timeout,
941                        GNUNET_STATISTICS_Callback cont,
942                        GNUNET_STATISTICS_Iterator proc, void *cls)
943 {
944   size_t slen1;
945   size_t slen2;
946   struct GNUNET_STATISTICS_GetHandle *ai;
947
948   GNUNET_assert (handle != NULL);
949   GNUNET_assert (proc != NULL);
950   GNUNET_assert (GNUNET_NO == handle->do_destroy);
951   if (GNUNET_YES != try_connect (handle))
952     {
953 #if DEBUG_STATISTICS
954       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
955                   "Failed to connect to statistics service, can not get value `%s:%s'.\n",
956                   strlen (subsystem) ? subsystem : "*",
957                   strlen (name) ? name : "*");
958 #endif
959       return NULL;
960     }
961   if (subsystem == NULL)
962     subsystem = "";
963   if (name == NULL)
964     name = "";
965   slen1 = strlen (subsystem) + 1;
966   slen2 = strlen (name) + 1;
967   GNUNET_assert (slen1 + slen2 + sizeof (struct GNUNET_MessageHeader) <
968                  GNUNET_SERVER_MAX_MESSAGE_SIZE);
969   ai = GNUNET_malloc (sizeof (struct GNUNET_STATISTICS_GetHandle));
970   ai->sh = handle;
971   ai->subsystem = GNUNET_strdup (subsystem);
972   ai->name = GNUNET_strdup (name);
973   ai->cont = cont;
974   ai->proc = proc;
975   ai->cls = cls;
976   ai->timeout = GNUNET_TIME_relative_to_absolute (timeout);
977   ai->type = ACTION_GET;
978   ai->msize = slen1 + slen2 + sizeof (struct GNUNET_MessageHeader);
979   insert_ai (handle, ai);
980   return ai;
981 }
982
983
984 /**
985  * Cancel a 'get' request.  Must be called before the 'cont' 
986  * function is called.
987  *
988  * @param gh handle of the request to cancel
989  */
990 void
991 GNUNET_STATISTICS_get_cancel (struct GNUNET_STATISTICS_GetHandle *gh)
992 {
993   if (gh->sh->current == gh)
994     {
995       gh->aborted = GNUNET_YES;
996     }
997   else
998     {
999       GNUNET_CONTAINER_DLL_remove (gh->sh->action_head,
1000                                    gh->sh->action_tail,
1001                                    gh);
1002       GNUNET_free (gh->name);
1003       GNUNET_free (gh->subsystem);
1004       GNUNET_free (gh);
1005     }
1006 }
1007
1008
1009 /**
1010  * Watch statistics from the peer (be notified whenever they change).
1011  * Note that the only way to cancel a "watch" request is to destroy
1012  * the statistics handle given as the first argument to this call.
1013  *
1014  * @param handle identification of the statistics service
1015  * @param subsystem limit to the specified subsystem, never NULL
1016  * @param name name of the statistic value, never NULL
1017  * @param proc function to call on each value
1018  * @param proc_cls closure for proc
1019  * @return GNUNET_OK on success, GNUNET_SYSERR on error
1020  */
1021 int
1022 GNUNET_STATISTICS_watch (struct GNUNET_STATISTICS_Handle *handle,
1023                          const char *subsystem,
1024                          const char *name,
1025                          GNUNET_STATISTICS_Iterator proc, 
1026                          void *proc_cls)
1027 {
1028   struct GNUNET_STATISTICS_WatchEntry *w;
1029
1030   if (handle == NULL) 
1031     return GNUNET_SYSERR;
1032   w = GNUNET_malloc (sizeof (struct GNUNET_STATISTICS_WatchEntry));
1033   w->subsystem = GNUNET_strdup (subsystem);
1034   w->name = GNUNET_strdup (name);
1035   w->proc = proc;
1036   w->proc_cls = proc_cls;
1037   GNUNET_array_append (handle->watches,
1038                        handle->watches_size,
1039                        w);
1040   schedule_watch_request (handle, w);
1041   return GNUNET_OK;
1042 }
1043
1044
1045 static void
1046 add_setter_action (struct GNUNET_STATISTICS_Handle *h,
1047                    const char *name,
1048                    int make_persistent,
1049                    uint64_t value, enum ActionType type)
1050 {
1051   struct GNUNET_STATISTICS_GetHandle *ai;
1052   size_t slen;
1053   size_t nlen;
1054   size_t nsize;
1055   int64_t delta;
1056   
1057   GNUNET_assert (h != NULL);
1058   GNUNET_assert (name != NULL);
1059   if (GNUNET_YES != try_connect (h))
1060     return;
1061   slen = strlen (h->subsystem) + 1;
1062   nlen = strlen (name) + 1;
1063   nsize = sizeof (struct GNUNET_STATISTICS_SetMessage) + slen + nlen;
1064   if (nsize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1065     {
1066       GNUNET_break (0);
1067       return;
1068     }
1069   ai = h->action_head;
1070   while (ai != NULL)
1071     {
1072       if ( (0 == strcmp (ai->subsystem, h->subsystem)) &&
1073            (0 == strcmp (ai->name, name)) &&
1074            ( (ai->type == ACTION_UPDATE) ||
1075              (ai->type == ACTION_SET) ) )
1076         {
1077           if (ai->type == ACTION_SET)
1078             {
1079               if (type == ACTION_UPDATE)
1080                 {
1081                   delta = (int64_t) value;
1082                   if (delta > 0) 
1083                     {
1084                       ai->value += delta;
1085                     }
1086                   else
1087                     {
1088                       if (ai->value < -delta)
1089                         ai->value = 0;
1090                       else
1091                         ai->value += delta;
1092                     }
1093                 }
1094               else
1095                 {
1096                   ai->value = value;
1097                 }
1098             }
1099           else
1100             {
1101               if (type == ACTION_UPDATE)
1102                 {
1103                   delta = (int64_t) value;
1104                   ai->value += delta;
1105                 }
1106               else
1107                 {
1108                   ai->value = value;
1109                   ai->type = type;
1110                 }
1111             }
1112           ai->timeout = GNUNET_TIME_relative_to_absolute (SET_TRANSMIT_TIMEOUT);
1113           ai->make_persistent = make_persistent;
1114           return;
1115         }
1116       ai = ai->next;
1117     }
1118   ai = GNUNET_malloc (sizeof (struct GNUNET_STATISTICS_GetHandle));
1119   ai->sh = h;
1120   ai->subsystem = GNUNET_strdup (h->subsystem);
1121   ai->name = GNUNET_strdup (name);
1122   ai->timeout = GNUNET_TIME_relative_to_absolute (SET_TRANSMIT_TIMEOUT);
1123   ai->make_persistent = make_persistent;
1124   ai->msize = nsize;
1125   ai->value = value;
1126   ai->type = type;
1127   insert_ai (h, ai);
1128 }
1129
1130
1131 /**
1132  * Set statistic value for the peer.  Will always use our
1133  * subsystem (the argument used when "handle" was created).
1134  *
1135  * @param handle identification of the statistics service
1136  * @param name name of the statistic value
1137  * @param value new value to set
1138  * @param make_persistent should the value be kept across restarts?
1139  */
1140 void
1141 GNUNET_STATISTICS_set (struct GNUNET_STATISTICS_Handle *handle,
1142                        const char *name,
1143                        uint64_t value, int make_persistent)
1144 {
1145   if (handle == NULL)
1146     return;
1147   GNUNET_assert (GNUNET_NO == handle->do_destroy);
1148   add_setter_action (handle, name, make_persistent, value, ACTION_SET);
1149 }
1150
1151
1152 /**
1153  * Set statistic value for the peer.  Will always use our
1154  * subsystem (the argument used when "handle" was created).
1155  *
1156  * @param handle identification of the statistics service
1157  * @param name name of the statistic value
1158  * @param delta change in value (added to existing value)
1159  * @param make_persistent should the value be kept across restarts?
1160  */
1161 void
1162 GNUNET_STATISTICS_update (struct GNUNET_STATISTICS_Handle *handle,
1163                           const char *name,
1164                           int64_t delta, int make_persistent)
1165 {
1166   if (handle == NULL)
1167     return;
1168   if (delta == 0)
1169     return;
1170   GNUNET_assert (GNUNET_NO == handle->do_destroy);
1171   add_setter_action (handle, name, make_persistent,
1172                      (uint64_t) delta, ACTION_UPDATE);
1173 }
1174
1175
1176 /* end of statistics_api.c */