glitch in the license text detected by hyazinthe, thank you!
[oweals/gnunet.git] / src / fs / gnunet-service-fs_pe.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2011 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14 */
15
16 /**
17  * @file fs/gnunet-service-fs_pe.c
18  * @brief API to manage query plan
19  * @author Christian Grothoff
20  */
21 #include "platform.h"
22 #include "gnunet-service-fs.h"
23 #include "gnunet-service-fs_cp.h"
24 #include "gnunet-service-fs_pe.h"
25 #include "gnunet-service-fs_pr.h"
26
27 /**
28  * Collect an instane number of statistics?  May cause excessive IPC.
29  */
30 #define INSANE_STATISTICS GNUNET_NO
31
32 /**
33  * List of GSF_PendingRequests this request plan
34  * participates with.
35  */
36 struct PendingRequestList;
37
38 /**
39  * Transmission plan for a peer.
40  */
41 struct PeerPlan;
42
43
44 /**
45  * M:N binding of plans to pending requests.
46  * Each pending request can be in a number of plans,
47  * and each plan can have a number of pending requests.
48  * Objects of this type indicate a mapping of a plan to
49  * a particular pending request.
50  *
51  * The corresponding head and tail of the "PE" MDLL
52  * are stored in a `struct GSF_RequestPlan`. (We need
53  * to be able to lookup all pending requests corresponding
54  * to a given plan entry.)
55  *
56  * Similarly head and tail of the "PR" MDLL are stored
57  * with the `struct GSF_PendingRequest`.  (We need
58  * to be able to lookup all plan entries corresponding
59  * to a given pending request.)
60  */
61 struct GSF_PendingRequestPlanBijection
62 {
63
64   /**
65    * This is a doubly-linked list.
66    */
67   struct GSF_PendingRequestPlanBijection *next_PR;
68
69   /**
70    * This is a doubly-linked list.
71    */
72   struct GSF_PendingRequestPlanBijection *prev_PR;
73
74   /**
75    * This is a doubly-linked list.
76    */
77   struct GSF_PendingRequestPlanBijection *next_PE;
78
79   /**
80    * This is a doubly-linked list.
81    */
82   struct GSF_PendingRequestPlanBijection *prev_PE;
83
84   /**
85    * Associated request plan (tells us one of the peers that
86    * we plan to forward the request to).
87    */
88   struct GSF_RequestPlan *rp;
89
90   /**
91    * Associated pending request (identifies request details
92    * and one of the origins of the request).
93    */
94   struct GSF_PendingRequest *pr;
95
96 };
97
98
99 /**
100  * Information we keep per request per peer.  This is a doubly-linked
101  * list (with head and tail in the `struct GSF_PendingRequestData`)
102  * with one entry in each heap of each `struct PeerPlan`.  Each
103  * entry tracks information relevant for this request and this peer.
104  */
105 struct GSF_RequestPlan
106 {
107
108   /**
109    * This is a doubly-linked list.
110    */
111   struct GSF_RequestPlan *next;
112
113   /**
114    * This is a doubly-linked list.
115    */
116   struct GSF_RequestPlan *prev;
117
118   /**
119    * Heap node associated with this request and this peer.
120    */
121   struct GNUNET_CONTAINER_HeapNode *hn;
122
123   /**
124    * The transmission plan for a peer that this request is associated with.
125    */
126   struct PeerPlan *pp;
127
128   /**
129    * Head of list of associated pending requests.  This tells us
130    * which incoming requests from other peers this plan entry
131    * corresponds to.
132    */
133   struct GSF_PendingRequestPlanBijection *pe_head;
134
135   /**
136    * Tail of list of associated pending requests.
137    */
138   struct GSF_PendingRequestPlanBijection *pe_tail;
139
140   /**
141    * Earliest time we'd be happy to (re)transmit this request.
142    */
143   struct GNUNET_TIME_Absolute earliest_transmission;
144
145   /**
146    * When was the last time we transmitted this request to this peer? 0 for never.
147    */
148   struct GNUNET_TIME_Absolute last_transmission;
149
150   /**
151    * Current priority for this request for this target.
152    */
153   uint64_t priority;
154
155   /**
156    * How often did we transmit this request to this peer?
157    */
158   unsigned int transmission_counter;
159
160 };
161
162
163 /**
164  * Transmission plan for a peer.
165  */
166 struct PeerPlan
167 {
168   /**
169    * Heap with pending queries (`struct GSF_RequestPlan`), higher weights mean higher priority.
170    */
171   struct GNUNET_CONTAINER_Heap *priority_heap;
172
173   /**
174    * Heap with pending queries (`struct GSF_RequestPlan`), by transmission time, lowest first.
175    */
176   struct GNUNET_CONTAINER_Heap *delay_heap;
177
178   /**
179    * Map of queries to plan entries.  All entries in the @e priority_heap
180    * or @e delay_heap should be in the @e plan_map.  Note that it is
181    * possible for the @e plan_map to have multiple entries for the same
182    * query.
183    */
184   struct GNUNET_CONTAINER_MultiHashMap *plan_map;
185
186   /**
187    * Peer for which this is the plan.
188    */
189   struct GSF_ConnectedPeer *cp;
190
191   /**
192    * Current task for executing the plan.
193    */
194   struct GNUNET_SCHEDULER_Task *task;
195
196   /**
197    * Current message under transmission for the plan.
198    */
199   struct GNUNET_MQ_Envelope *env;
200
201 };
202
203
204 /**
205  * Hash map from peer identities to PeerPlans.
206  */
207 static struct GNUNET_CONTAINER_MultiPeerMap *plans;
208
209 /**
210  * Sum of all transmission counters (equals total delay for all plan entries).
211  */
212 static unsigned long long total_delay;
213
214 /**
215  * Number of plan entries.
216  */
217 static unsigned long long plan_count;
218
219
220 /**
221  * Return the query (key in the plan_map) for the given request plan.
222  * Note that this key may change as there can be multiple pending
223  * requests for the same key and we just return _one_ of them; this
224  * particular one might complete while another one might still be
225  * active, hence the lifetime of the returned hash code is NOT
226  * necessarily identical to that of the `struct GSF_RequestPlan`
227  * given.
228  *
229  * @param rp a request plan
230  * @return the associated query
231  */
232 static const struct GNUNET_HashCode *
233 get_rp_key (struct GSF_RequestPlan *rp)
234 {
235   return &GSF_pending_request_get_data_ (rp->pe_head->pr)->query;
236 }
237
238
239 /**
240  * Insert the given request plan into the heap with the appropriate weight.
241  *
242  * @param pp associated peer's plan
243  * @param rp request to plan
244  */
245 static void
246 plan (struct PeerPlan *pp,
247       struct GSF_RequestPlan *rp)
248 {
249 #define N ((double)128.0)
250   /**
251    * Running average delay we currently impose.
252    */
253   static double avg_delay;
254
255   struct GSF_PendingRequestData *prd;
256   struct GNUNET_TIME_Relative delay;
257
258   GNUNET_assert (rp->pp == pp);
259   GNUNET_STATISTICS_set (GSF_stats,
260                          gettext_noop ("# average retransmission delay (ms)"),
261                          total_delay * 1000LL / plan_count, GNUNET_NO);
262   prd = GSF_pending_request_get_data_ (rp->pe_head->pr);
263
264   if (rp->transmission_counter < 8)
265     delay =
266         GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
267                                        rp->transmission_counter);
268   else if (rp->transmission_counter < 32)
269     delay =
270         GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
271                                        8 +
272                                        (1LL << (rp->transmission_counter - 8)));
273   else
274     delay =
275         GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
276                                        8 + (1LL << 24));
277   delay.rel_value_us =
278     GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
279                               delay.rel_value_us + 1);
280   /* Add 0.01 to avg_delay to avoid division-by-zero later */
281   avg_delay = (((avg_delay * (N - 1.0)) + delay.rel_value_us) / N) + 0.01;
282
283   /*
284    * For the priority, we need to consider a few basic rules:
285    * 1) if we just started requesting (delay is small), we should
286    * virtually always have a priority of zero.
287    * 2) for requests with average latency, our priority should match
288    * the average priority observed on the network
289    * 3) even the longest-running requests should not be WAY out of
290    * the observed average (thus we bound by a factor of 2)
291    * 4) we add +1 to the observed average priority to avoid everyone
292    * staying put at zero (2 * 0 = 0...).
293    *
294    * Using the specific calculation below, we get:
295    *
296    * delay = 0 => priority = 0;
297    * delay = avg delay => priority = running-average-observed-priority;
298    * delay >> avg_delay => priority = 2 * running-average-observed-priority;
299    *
300    * which satisfies all of the rules above.
301    *
302    * Note: M_PI_4 = PI/4 = arctan(1)
303    */
304   rp->priority =
305       round ((GSF_current_priorities +
306               1.0) * atan (delay.rel_value_us / avg_delay)) / M_PI_4;
307   /* Note: usage of 'round' and 'atan' requires -lm */
308
309   if (rp->transmission_counter != 0)
310     delay.rel_value_us += TTL_DECREMENT * 1000;
311   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
312               "Considering (re)transmission number %u in %s\n",
313               (unsigned int) rp->transmission_counter,
314               GNUNET_STRINGS_relative_time_to_string (delay,
315                                                       GNUNET_YES));
316   rp->earliest_transmission = GNUNET_TIME_relative_to_absolute (delay);
317   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
318               "Earliest (re)transmission for `%s' in %us\n",
319               GNUNET_h2s (&prd->query),
320               rp->transmission_counter);
321   GNUNET_assert (rp->hn == NULL);
322   if (0 == GNUNET_TIME_absolute_get_remaining (rp->earliest_transmission).rel_value_us)
323     rp->hn = GNUNET_CONTAINER_heap_insert (pp->priority_heap,
324                                            rp,
325                                            rp->priority);
326   else
327     rp->hn =
328         GNUNET_CONTAINER_heap_insert (pp->delay_heap,
329                                       rp,
330                                       rp->earliest_transmission.abs_value_us);
331   GNUNET_assert (GNUNET_YES ==
332                  GNUNET_CONTAINER_multihashmap_contains_value (pp->plan_map,
333                                                                get_rp_key (rp),
334                                                                rp));
335 #undef N
336 }
337
338
339 /**
340  * Get the pending request with the highest TTL from the given plan.
341  *
342  * @param rp plan to investigate
343  * @return pending request with highest TTL
344  */
345 struct GSF_PendingRequest *
346 get_latest (const struct GSF_RequestPlan *rp)
347 {
348   struct GSF_PendingRequest *ret;
349   struct GSF_PendingRequestPlanBijection *bi;
350   const struct GSF_PendingRequestData *rprd;
351   const struct GSF_PendingRequestData *prd;
352
353   bi = rp->pe_head;
354   if (NULL == bi)
355     return NULL; /* should never happen */
356   ret = bi->pr;
357   rprd = GSF_pending_request_get_data_ (ret);
358   for (bi = bi->next_PE; NULL != bi; bi = bi->next_PE)
359   {
360     GNUNET_break (GNUNET_YES ==
361                   GSF_pending_request_test_active_ (bi->pr));
362     prd = GSF_pending_request_get_data_ (bi->pr);
363     if (prd->ttl.abs_value_us > rprd->ttl.abs_value_us)
364     {
365       ret = bi->pr;
366       rprd = prd;
367     }
368   }
369   return ret;
370 }
371
372
373 /**
374  * Figure out when and how to transmit to the given peer.
375  *
376  * @param cls the `struct PeerPlan`
377  */
378 static void
379 schedule_peer_transmission (void *cls)
380 {
381   struct PeerPlan *pp = cls;
382   struct GSF_RequestPlan *rp;
383   struct GNUNET_TIME_Relative delay;
384
385   if (NULL != pp->task)
386   {
387     pp->task = NULL;
388   }
389   else
390   {
391     GNUNET_assert (NULL != pp->env);
392     pp->env = NULL;
393   }
394   /* move ready requests to priority queue */
395   while ((NULL != (rp = GNUNET_CONTAINER_heap_peek (pp->delay_heap))) &&
396          (0 == GNUNET_TIME_absolute_get_remaining
397           (rp->earliest_transmission).rel_value_us))
398   {
399     GNUNET_assert (rp == GNUNET_CONTAINER_heap_remove_root (pp->delay_heap));
400     rp->hn = GNUNET_CONTAINER_heap_insert (pp->priority_heap,
401                                            rp,
402                                            rp->priority);
403   }
404   if (0 == GNUNET_CONTAINER_heap_get_size (pp->priority_heap))
405   {
406     /* priority heap (still) empty, check for delay... */
407     rp = GNUNET_CONTAINER_heap_peek (pp->delay_heap);
408     if (NULL == rp)
409     {
410       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
411                   "No active requests for plan %p.\n",
412                   pp);
413       return;                   /* both queues empty */
414     }
415     delay = GNUNET_TIME_absolute_get_remaining (rp->earliest_transmission);
416     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
417                 "Sleeping for %s before retrying requests on plan %p.\n",
418                 GNUNET_STRINGS_relative_time_to_string (delay,
419                                                         GNUNET_YES),
420                 pp);
421     GNUNET_STATISTICS_set (GSF_stats,
422                            gettext_noop ("# delay heap timeout (ms)"),
423                            delay.rel_value_us / 1000LL, GNUNET_NO);
424
425     pp->task
426       = GNUNET_SCHEDULER_add_at (rp->earliest_transmission,
427                                  &schedule_peer_transmission,
428                                  pp);
429     return;
430   }
431 #if INSANE_STATISTICS
432   GNUNET_STATISTICS_update (GSF_stats,
433                             gettext_noop ("# query plans executed"),
434                             1,
435                             GNUNET_NO);
436 #endif
437   /* process from priority heap */
438   rp = GNUNET_CONTAINER_heap_remove_root (pp->priority_heap);
439   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
440               "Executing query plan %p\n",
441               rp);
442   GNUNET_assert (NULL != rp);
443   rp->hn = NULL;
444   rp->last_transmission = GNUNET_TIME_absolute_get ();
445   rp->transmission_counter++;
446   total_delay++;
447   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
448               "Executing plan %p executed %u times, planning retransmission\n",
449               rp,
450               rp->transmission_counter);
451   GNUNET_assert (NULL == pp->env);
452   pp->env = GSF_pending_request_get_message_ (get_latest (rp));
453   GNUNET_MQ_notify_sent (pp->env,
454                          &schedule_peer_transmission,
455                          pp);
456   GSF_peer_transmit_ (pp->cp,
457                       GNUNET_YES,
458                       rp->priority,
459                       pp->env);
460   GNUNET_STATISTICS_update (GSF_stats,
461                             gettext_noop ("# query messages sent to other peers"),
462                             1,
463                             GNUNET_NO);
464   plan (pp,
465         rp);
466 }
467
468
469 /**
470  * Closure for merge_pr().
471  */
472 struct MergeContext
473 {
474
475   /**
476    * Request we are trying to merge.
477    */
478   struct GSF_PendingRequest *pr;
479
480   /**
481    * Set to #GNUNET_YES if we succeeded to merge.
482    */
483   int merged;
484
485 };
486
487
488 /**
489  * Iterator that checks if an equivalent request is already
490  * present for this peer.
491  *
492  * @param cls closure
493  * @param query the query
494  * @param element request plan stored at the node
495  * @return #GNUNET_YES if we should continue to iterate,
496  *         #GNUNET_NO if not (merge success)
497  */
498 static int
499 merge_pr (void *cls,
500           const struct GNUNET_HashCode *query,
501           void *element)
502 {
503   struct MergeContext *mpr = cls;
504   struct GSF_RequestPlan *rp = element;
505   struct GSF_PendingRequestData *prd;
506   struct GSF_PendingRequestPlanBijection *bi;
507   struct GSF_PendingRequest *latest;
508
509   GNUNET_break (GNUNET_YES ==
510                 GSF_pending_request_test_active_ (mpr->pr));
511   if (GNUNET_OK !=
512       GSF_pending_request_is_compatible_ (mpr->pr,
513                                           rp->pe_head->pr))
514     return GNUNET_YES;
515   /* merge new request with existing request plan */
516   bi = GNUNET_new (struct GSF_PendingRequestPlanBijection);
517   bi->rp = rp;
518   bi->pr = mpr->pr;
519   prd = GSF_pending_request_get_data_ (mpr->pr);
520   GNUNET_CONTAINER_MDLL_insert (PR,
521                                 prd->pr_head,
522                                 prd->pr_tail,
523                                 bi);
524   GNUNET_CONTAINER_MDLL_insert (PE,
525                                 rp->pe_head,
526                                 rp->pe_tail,
527                                 bi);
528   mpr->merged = GNUNET_YES;
529 #if INSANE_STATISTICS
530   GNUNET_STATISTICS_update (GSF_stats,
531                             gettext_noop ("# requests merged"),
532                             1,
533                             GNUNET_NO);
534 #endif
535   latest = get_latest (rp);
536   if (GSF_pending_request_get_data_ (latest)->ttl.abs_value_us <
537       prd->ttl.abs_value_us)
538   {
539 #if INSANE_STATISTICS
540     GNUNET_STATISTICS_update (GSF_stats,
541                               gettext_noop ("# requests refreshed"),
542                               1,
543                               GNUNET_NO);
544 #endif
545     rp->transmission_counter = 0;       /* reset */
546   }
547   return GNUNET_NO;
548 }
549
550
551 /**
552  * Create a new query plan entry.
553  *
554  * @param cp peer with the entry
555  * @param pr request with the entry
556  */
557 void
558 GSF_plan_add_ (struct GSF_ConnectedPeer *cp,
559                struct GSF_PendingRequest *pr)
560 {
561   const struct GNUNET_PeerIdentity *id;
562   struct PeerPlan *pp;
563   struct GSF_PendingRequestData *prd;
564   struct GSF_RequestPlan *rp;
565   struct GSF_PendingRequestPlanBijection *bi;
566   struct MergeContext mpc;
567
568   GNUNET_assert (GNUNET_YES ==
569                  GSF_pending_request_test_active_ (pr));
570   GNUNET_assert (NULL != cp);
571   id = GSF_connected_peer_get_identity2_ (cp);
572   pp = GNUNET_CONTAINER_multipeermap_get (plans, id);
573   if (NULL == pp)
574   {
575     pp = GNUNET_new (struct PeerPlan);
576     pp->plan_map = GNUNET_CONTAINER_multihashmap_create (128, GNUNET_NO);
577     pp->priority_heap =
578         GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MAX);
579     pp->delay_heap =
580         GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
581     pp->cp = cp;
582     GNUNET_assert (GNUNET_OK ==
583                    GNUNET_CONTAINER_multipeermap_put (plans,
584                                                       id,
585                                                       pp,
586                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
587     pp->task = GNUNET_SCHEDULER_add_now (&schedule_peer_transmission,
588                                          pp);
589   }
590   mpc.merged = GNUNET_NO;
591   mpc.pr = pr;
592   prd = GSF_pending_request_get_data_ (pr);
593   GNUNET_CONTAINER_multihashmap_get_multiple (pp->plan_map,
594                                               &prd->query,
595                                               &merge_pr,
596                                               &mpc);
597   if (GNUNET_NO != mpc.merged)
598     return;
599   plan_count++;
600   GNUNET_STATISTICS_update (GSF_stats,
601                             gettext_noop ("# query plan entries"),
602                             1,
603                             GNUNET_NO);
604   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
605               "Planning transmission of query `%s' to peer `%s'\n",
606               GNUNET_h2s (&prd->query),
607               GNUNET_i2s (id));
608   rp = GNUNET_new (struct GSF_RequestPlan);
609   bi = GNUNET_new (struct GSF_PendingRequestPlanBijection);
610   bi->rp = rp;
611   bi->pr = pr;
612   GNUNET_CONTAINER_MDLL_insert (PR,
613                                 prd->pr_head,
614                                 prd->pr_tail,
615                                 bi);
616   GNUNET_CONTAINER_MDLL_insert (PE,
617                                 rp->pe_head,
618                                 rp->pe_tail,
619                                 bi);
620   rp->pp = pp;
621   GNUNET_assert (GNUNET_YES ==
622                  GNUNET_CONTAINER_multihashmap_put (pp->plan_map,
623                                                     get_rp_key (rp),
624                                                     rp,
625                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
626   plan (pp,
627         rp);
628 }
629
630
631 /**
632  * Notify the plan about a peer being no longer available;
633  * destroy all entries associated with this peer.
634  *
635  * @param cp connected peer
636  */
637 void
638 GSF_plan_notify_peer_disconnect_ (const struct GSF_ConnectedPeer *cp)
639 {
640   const struct GNUNET_PeerIdentity *id;
641   struct PeerPlan *pp;
642   struct GSF_RequestPlan *rp;
643   struct GSF_PendingRequestData *prd;
644   struct GSF_PendingRequestPlanBijection *bi;
645
646   id = GSF_connected_peer_get_identity2_ (cp);
647   pp = GNUNET_CONTAINER_multipeermap_get (plans, id);
648   if (NULL == pp)
649     return;                     /* nothing was ever planned for this peer */
650   GNUNET_assert (GNUNET_YES ==
651                  GNUNET_CONTAINER_multipeermap_remove (plans, id,
652                                                        pp));
653   if (NULL != pp->task)
654   {
655     GNUNET_SCHEDULER_cancel (pp->task);
656     pp->task = NULL;
657   }
658   while (NULL != (rp = GNUNET_CONTAINER_heap_remove_root (pp->priority_heap)))
659   {
660     GNUNET_break (GNUNET_YES ==
661                   GNUNET_CONTAINER_multihashmap_remove (pp->plan_map,
662                                                         get_rp_key (rp),
663                                                         rp));
664     while (NULL != (bi = rp->pe_head))
665     {
666       GNUNET_CONTAINER_MDLL_remove (PE,
667                                     rp->pe_head,
668                                     rp->pe_tail,
669                                     bi);
670       prd = GSF_pending_request_get_data_ (bi->pr);
671       GNUNET_CONTAINER_MDLL_remove (PR,
672                                     prd->pr_head,
673                                     prd->pr_tail,
674                                     bi);
675       GNUNET_free (bi);
676     }
677     plan_count--;
678     GNUNET_free (rp);
679   }
680   GNUNET_CONTAINER_heap_destroy (pp->priority_heap);
681   while (NULL != (rp = GNUNET_CONTAINER_heap_remove_root (pp->delay_heap)))
682   {
683     GNUNET_break (GNUNET_YES ==
684                   GNUNET_CONTAINER_multihashmap_remove (pp->plan_map,
685                                                         get_rp_key (rp),
686                                                         rp));
687     while (NULL != (bi = rp->pe_head))
688     {
689       prd = GSF_pending_request_get_data_ (bi->pr);
690       GNUNET_CONTAINER_MDLL_remove (PE,
691                                     rp->pe_head,
692                                     rp->pe_tail,
693                                     bi);
694       GNUNET_CONTAINER_MDLL_remove (PR,
695                                     prd->pr_head,
696                                     prd->pr_tail,
697                                     bi);
698       GNUNET_free (bi);
699     }
700     plan_count--;
701     GNUNET_free (rp);
702   }
703   GNUNET_STATISTICS_set (GSF_stats,
704                          gettext_noop ("# query plan entries"),
705                          plan_count,
706                          GNUNET_NO);
707   GNUNET_CONTAINER_heap_destroy (pp->delay_heap);
708   GNUNET_CONTAINER_multihashmap_destroy (pp->plan_map);
709   GNUNET_free (pp);
710 }
711
712
713 /**
714  * Get the last transmission attempt time for the request plan list
715  * referenced by @a pr_head, that was sent to @a sender
716  *
717  * @param pr_head request plan reference list to check.
718  * @param sender the peer that we've sent the request to.
719  * @param result the timestamp to fill, set to #GNUNET_TIME_UNIT_FOREVER_ABS if never transmitted
720  * @return #GNUNET_YES if @a result was changed, #GNUNET_NO otherwise.
721  */
722 int
723 GSF_request_plan_reference_get_last_transmission_ (struct GSF_PendingRequestPlanBijection *pr_head,
724                                                    struct GSF_ConnectedPeer *sender,
725                                                    struct GNUNET_TIME_Absolute *result)
726 {
727   struct GSF_PendingRequestPlanBijection *bi;
728
729   for (bi = pr_head; NULL != bi; bi = bi->next_PR)
730   {
731     if (bi->rp->pp->cp == sender)
732     {
733       if (0 == bi->rp->last_transmission.abs_value_us)
734         *result = GNUNET_TIME_UNIT_FOREVER_ABS;
735       else
736         *result = bi->rp->last_transmission;
737       return GNUNET_YES;
738     }
739   }
740   return GNUNET_NO;
741 }
742
743
744 /**
745  * Notify the plan about a request being done; destroy all entries
746  * associated with this request.
747  *
748  * @param pr request that is done
749  */
750 void
751 GSF_plan_notify_request_done_ (struct GSF_PendingRequest *pr)
752 {
753   struct GSF_RequestPlan *rp;
754   struct GSF_PendingRequestData *prd;
755   struct GSF_PendingRequestPlanBijection *bi;
756
757   prd = GSF_pending_request_get_data_ (pr);
758   while (NULL != (bi = prd->pr_head))
759   {
760     rp = bi->rp;
761     GNUNET_CONTAINER_MDLL_remove (PR,
762                                   prd->pr_head,
763                                   prd->pr_tail,
764                                   bi);
765     GNUNET_CONTAINER_MDLL_remove (PE,
766                                   rp->pe_head,
767                                   rp->pe_tail,
768                                   bi);
769     GNUNET_assert (bi->pr == pr);
770     if (NULL == rp->pe_head)
771     {
772       GNUNET_CONTAINER_heap_remove_node (rp->hn);
773       plan_count--;
774       GNUNET_break (GNUNET_YES ==
775                     GNUNET_CONTAINER_multihashmap_remove (rp->pp->plan_map,
776                                                           &prd->query,
777                                                           rp));
778       GNUNET_free (rp);
779     }
780     GNUNET_free (bi);
781   }
782   GNUNET_STATISTICS_set (GSF_stats,
783                          gettext_noop ("# query plan entries"),
784                          plan_count,
785                          GNUNET_NO);
786 }
787
788
789 /**
790  * Initialize plan subsystem.
791  */
792 void
793 GSF_plan_init ()
794 {
795   plans = GNUNET_CONTAINER_multipeermap_create (256,
796                                                 GNUNET_YES);
797 }
798
799
800 /**
801  * Shutdown plan subsystem.
802  */
803 void
804 GSF_plan_done ()
805 {
806   GNUNET_assert (0 == GNUNET_CONTAINER_multipeermap_size (plans));
807   GNUNET_CONTAINER_multipeermap_destroy (plans);
808 }
809
810
811
812 /* end of gnunet-service-fs_pe.h */