arg
[oweals/gnunet.git] / src / fs / gnunet-service-fs_pe.c
index db501b761fd008979cfe09ed098f9b5dd722b41a..6c4d3df17e7fd709c8bc7e83e8376398b24f8943 100644 (file)
  * @author Christian Grothoff
  */
 #include "platform.h"
+#include "gnunet-service-fs.h"
 #include "gnunet-service-fs_cp.h"
 #include "gnunet-service-fs_pe.h"
+#include "gnunet-service-fs_pr.h"
+
 
 /**
- * Hash map from peer identities to GNUNET_CONTAINER_Heap's with
- * pending requests as entries.
+ * Information we keep per request per peer.  This is a doubly-linked
+ * list (with head and tail in the 'struct GSF_PendingRequestData')
+ * with one entry in each heap of each 'struct PeerPlan'.  Each
+ * entry tracks information relevant for this request and this peer.
  */
-static struct GNUNET_CONTAINER_MultiHashMap *plans;
+struct GSF_RequestPlan
+{
+
+  /**
+   * This is a doubly-linked list.
+   */
+  struct GSF_RequestPlan *next;
+
+  /**
+   * This is a doubly-linked list.
+   */
+  struct GSF_RequestPlan *prev;
+
+  /**
+   * Heap node associated with this request and this peer.
+   */
+  struct GNUNET_CONTAINER_HeapNode *hn;
+
+  /**
+   * Associated pending request.
+   */
+  struct GSF_PendingRequest *pr;
+
+  /**
+   * Earliest time we'd be happy to (re)transmit this request.
+   */
+  struct GNUNET_TIME_Absolute earliest_transmission;
+
+  /**
+   * When was the last time we transmitted this request to this peer? 0 for never.
+   */
+  struct GNUNET_TIME_Absolute last_transmission;
+
+  /**
+   * Current priority for this request for this target.
+   */
+  uint64_t priority;
+
+  /**
+   * How often did we transmit this request to this peer?
+   */
+  unsigned int transmission_counter;
+
+};
 
 
 /**
- * Get the size of the request queue for the given peer.
- *
- * @param cp connected peer to query 
- * @return number of entries in this peer's request queue
+ * Transmission plan for a peer.
  */
-static struct GNUNET_CONTAINER_Heap *
-get_heap (const struct GSF_ConnectedPeer *cp)
+struct PeerPlan
 {
-  struct GNUNET_PeerIdentity id;
+  /**
+   * Heap with pending queries (struct GSF_RequestPlan), higher weights mean higher priority.
+   */
+  struct GNUNET_CONTAINER_Heap *priority_heap;
 
-  GSF_connected_peer_get_identity_ (cp, &id);
-  return GNUNET_CONTAINER_multihashmap_get (plans,
-                                           &id.hashPubKey);
-}
+  /**
+   * Heap with pending queries (struct GSF_RequestPlan), by transmission time, lowest first.
+   */
+  struct GNUNET_CONTAINER_Heap *delay_heap;
+
+  /**
+   * Current transmission request handle.
+   */
+  struct GSF_PeerTransmitHandle *pth;
+
+  /**
+   * Peer for which this is the plan.
+   */
+  struct GSF_ConnectedPeer *cp;
+
+  /**
+   * Current task for executing the plan.
+   */
+  GNUNET_SCHEDULER_TaskIdentifier task;
+};
 
 
 /**
- * Create a new query plan entry.
- *
- * @param cp peer with the entry
- * @param pr request with the entry
- * @param weight determines position of the entry in the cp queue,
- *        lower weights are earlier in the queue
+ * Hash map from peer identities to PeerPlans.
  */
-void
-GSF_plan_add_ (const struct GSF_ConnectedPeer *cp,
-              struct GSF_PendingRequest *pr,
-              GNUNET_CONTAINER_HeapCostType weight)
-{
-  struct GNUNET_PeerIdentity id;
-  struct GNUNET_CONTAINER_Heap *h;
+static struct GNUNET_CONTAINER_MultiHashMap *plans;
 
-  GSF_connected_peer_get_identity_ (cp, &id);
-  h = GNUNET_CONTAINER_multihashmap_get (plans,
-                                        &id.hashPubKey);
-  if (NULL == h)
-    {
-      h = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
-      GNUNET_CONTAINER_multihashmap_put (plans,
-                                        &id.hashPubKey,
-                                        h,
-                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
-    }
-  GNUNET_CONTAINER_heap_insert (h,
-                               pr,
-                               weight);
-}
+/**
+ * Sum of all transmission counters (equals total delay for all plan entries).
+ */
+static unsigned long long total_delay;
+
+/**
+ * Number of plan entries.
+ */
+static unsigned long long plan_count;
 
 
 /**
- * Notify the plan about a peer being no longer available;
- * destroy all entries associated with this peer.
+ * Figure out when and how to transmit to the given peer.
  *
- * @param cp connected peer 
+ * @param cls the 'struct GSF_ConnectedPeer' for transmission
+ * @param tc scheduler context
  */
-void
-GSF_plan_notify_peer_disconnect_ (const struct GSF_ConnectedPeer *cp)
-{
-  struct GNUNET_PeerIdentity id;
-  struct GNUNET_CONTAINER_Heap *h;
-
-  GSF_connected_peer_get_identity_ (cp, &id);
-  h = GNUNET_CONTAINER_multihashmap_get (plans,
-                                        &id.hashPubKey);
-  GNUNET_CONTAINER_multihashmap_remove (plans,
-                                       &id.hashPubKey,
-                                       h);
-  GNUNET_CONTAINER_heap_destroy (h);
-}
+static void
+schedule_peer_transmission (void *cls,
+                           const struct GNUNET_SCHEDULER_TaskContext *tc);
 
 
 /**
- * Closure for 'find_request'.
+ * Insert the given request plan into the heap with the appropriate weight.
+ *
+ * @param pp associated peer's plan
+ * @param rp request to plan
  */
-struct FindRequestClosure
+static void
+plan (struct PeerPlan *pp,
+      struct GSF_RequestPlan *rp)
 {
-  /**
-   * Place to store the node that was found (NULL for none).
-   */
-  struct GNUNET_CONTAINER_HeapNode *node;
-
-  /**
-   * Value we're looking for
-   */
-  const struct GSF_PendingRequest *pr;
-};
+  struct GSF_PendingRequestData *prd;
+  struct GNUNET_TIME_Relative delay;
+
+  GNUNET_STATISTICS_set (GSF_stats,
+                        gettext_noop ("# average retransmission delay (ms)"),
+                        total_delay * 1000LL / plan_count,
+                        GNUNET_NO);
+  prd = GSF_pending_request_get_data_ (rp->pr);
+  // FIXME: calculate 'rp->earliest_transmission'!
+  // FIXME: claculate 'rp->priority'!  
+  delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
+                                        rp->transmission_counter);
+  rp->earliest_transmission 
+    = GNUNET_TIME_relative_to_absolute (delay);
+#if DEBUG_FS
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+             "Earliest (re)transmission for `%s' in %us\n",
+             GNUNET_h2s (&prd->query),
+             rp->transmission_counter);
+#endif 
+
+  GNUNET_assert (rp->hn == NULL);
+  if (GNUNET_TIME_absolute_get_remaining (rp->earliest_transmission).rel_value == 0)
+    rp->hn = GNUNET_CONTAINER_heap_insert (pp->priority_heap,
+                                          rp,
+                                          rp->priority);
+  else
+    rp->hn = GNUNET_CONTAINER_heap_insert (pp->delay_heap,
+                                          rp,
+                                          rp->earliest_transmission.abs_value);
+  if (GNUNET_SCHEDULER_NO_TASK != pp->task)
+    GNUNET_SCHEDULER_cancel (pp->task);
+  pp->task = GNUNET_SCHEDULER_add_now (&schedule_peer_transmission, pp);
+}
 
 
 /**
- * Find a heap node where the value matches the
- * pending request given in the closure.
+ * Function called to get a message for transmission.
  *
- * @param cls the 'struct FindRequestClosure'
- * @param node heap structure we're looking for on a match
- * @param element the pending request stored in the heap
- * @param cost weight of the request
- * @return GNUNET_YES to continue looking
+ * @param cls closure
+ * @param buf_size number of bytes available in buf
+ * @param buf where to copy the message, NULL on error (peer disconnect)
+ * @return number of bytes copied to 'buf', can be 0 (without indicating an error)
  */
-static int
-find_request (void *cls,
-             struct GNUNET_CONTAINER_HeapNode *node,
-             void *element,
-             GNUNET_CONTAINER_HeapCostType cost)
+static size_t 
+transmit_message_callback (void *cls,
+                          size_t buf_size,
+                          void *buf)
 {
-  struct FindRequestClosure *frc = cls;
-  struct GSF_PendingRequest *pr = element;
+  struct PeerPlan *pp = cls;
+  struct GSF_RequestPlan *rp;
+  size_t msize;
 
-  if (pr == frc->pr)
+  pp->pth = NULL;
+  if (NULL == buf)
+    {
+      /* failed, try again... */
+      pp->task = GNUNET_SCHEDULER_add_now (&schedule_peer_transmission, pp);
+      return 0;
+    }
+  rp = GNUNET_CONTAINER_heap_peek (pp->priority_heap);
+  if (NULL == rp)
     {
-      frc->node = node;
-      return GNUNET_NO;
+      pp->task = GNUNET_SCHEDULER_add_now (&schedule_peer_transmission, pp);
+      return 0;
     }
-  return GNUNET_YES;
+  msize = GSF_pending_request_get_message_ (rp->pr, buf_size, buf);
+  if (msize > buf_size)
+    {
+      /* buffer to small (message changed), try again */
+      pp->task = GNUNET_SCHEDULER_add_now (&schedule_peer_transmission, pp);
+      return 0;
+    }
+  /* remove from root, add again elsewhere... */
+  GNUNET_assert (rp == GNUNET_CONTAINER_heap_remove_root (pp->priority_heap));
+  rp->hn = NULL;
+  rp->last_transmission = GNUNET_TIME_absolute_get ();
+  rp->transmission_counter++;
+  total_delay++;
+#if DEBUG_FS
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+             "Executing plan %p executed %u times, planning retransmission\n",
+             rp,
+             rp->transmission_counter);
+#endif    
+  plan (pp, rp);
+  GNUNET_STATISTICS_update (GSF_stats,
+                           gettext_noop ("# queries messages sent to other peers"),
+                           1,
+                           GNUNET_NO);
+  return msize;
 }
 
 
 /**
- * Remove the given request from all heaps. * 
+ * Figure out when and how to transmit to the given peer.
  *
- * @param cls 'struct GSF_PendingRequest' to purge
- * @param key identity of the peer we're currently looking at (unused)
- * @param value request heap for the given peer to search for the 'cls'
- * @return GNUNET_OK (continue iteration)
+ * @param cls the 'struct PeerPlan'
+ * @param tc scheduler context
  */
-static int
-remove_request (void *cls,
-               const GNUNET_HashCode *key,
-               void *value)
+static void
+schedule_peer_transmission (void *cls,
+                           const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
-  const struct GSF_PendingRequest *pr = cls;
-  struct GNUNET_CONTAINER_Heap *h = value;
-  struct FindRequestClosure frc;
+  struct PeerPlan *pp = cls;
+  struct GSF_RequestPlan *rp;
+  size_t msize;
 
-  frc.pr = pr;
-  do
+  pp->task = GNUNET_SCHEDULER_NO_TASK;
+  if (pp->pth != NULL)
+    {
+      GSF_peer_transmit_cancel_ (pp->pth);
+      pp->pth = NULL;
+    }
+  /* move ready requests to priority queue */
+  while ( (NULL != (rp = GNUNET_CONTAINER_heap_peek (pp->delay_heap))) &&
+         (GNUNET_TIME_absolute_get_remaining (rp->earliest_transmission).rel_value == 0) )
     {
-      frc.node = NULL;
-      GNUNET_CONTAINER_heap_iterate (h, &find_request, &frc);
-      if (frc.node != NULL)
-       GNUNET_CONTAINER_heap_remove_node (h, frc.node);
+      GNUNET_assert (rp == GNUNET_CONTAINER_heap_remove_root (pp->delay_heap));
+      rp->hn = GNUNET_CONTAINER_heap_insert (pp->priority_heap,
+                                            rp, 
+                                            rp->priority);                                     
+    }   
+  if (0 == GNUNET_CONTAINER_heap_get_size (pp->priority_heap))
+    {
+      /* priority heap (still) empty, check for delay... */
+      rp = GNUNET_CONTAINER_heap_peek (pp->delay_heap);
+      if (NULL == rp)
+       {
+#if DEBUG_FS
+         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                     "No active requests for plan %p.\n",
+                     pp);
+#endif
+         return; /* both queues empty */
+       }
+#if DEBUG_FS
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                 "Sleeping for %llu ms before retrying requests on plan %p.\n",
+                 (unsigned long long) GNUNET_TIME_absolute_get_remaining (rp->earliest_transmission).rel_value,
+                 pp);
+#endif
+      pp->task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining (rp->earliest_transmission),
+                                              &schedule_peer_transmission,
+                                              pp);
+      return;
     }
-  while (NULL != frc.node);
-  return GNUNET_OK;
+  /* process from priority heap */
+  rp = GNUNET_CONTAINER_heap_peek (pp->priority_heap);
+#if DEBUG_FS > 1
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+             "Executing query plan %p\n",
+             rp);
+#endif    
+  GNUNET_assert (NULL != rp);
+  msize = GSF_pending_request_get_message_ (rp->pr, 0, NULL);
+  pp->pth = GSF_peer_transmit_ (pp->cp,
+                               GNUNET_YES,
+                               rp->priority,
+                               GNUNET_TIME_UNIT_FOREVER_REL,
+                               msize,
+                               &transmit_message_callback,
+                               pp);
+  GNUNET_assert (NULL != pp->pth);
 }
 
 
 /**
- * Notify the plan about a request being done; destroy all entries
- * associated with this request.  Note that this implementation is
- * currently terribly inefficient (O(n)) and could instead be done in
- * O(1).  But for now, I first want to see it work correctly...
+ * Create a new query plan entry.
  *
- * @param pr request that is done
+ * @param cp peer with the entry
+ * @param pr request with the entry
  */
 void
-GSF_plan_notify_request_done_ (const struct GSF_PendingRequest *pr)
+GSF_plan_add_ (struct GSF_ConnectedPeer *cp,
+              struct GSF_PendingRequest *pr)
 {
-  GNUNET_CONTAINER_multihashmap_iterate (plans,
-                                        &remove_request,
-                                        (void*) pr);
+  struct GNUNET_PeerIdentity id;
+  struct PeerPlan *pp;
+  struct GSF_PendingRequestData *prd;
+  struct GSF_RequestPlan *rp;
+
+  GNUNET_assert (NULL != cp);
+  GSF_connected_peer_get_identity_ (cp, &id);
+  pp = GNUNET_CONTAINER_multihashmap_get (plans,
+                                         &id.hashPubKey);
+  if (NULL == pp)
+    {
+      pp = GNUNET_malloc (sizeof (struct PeerPlan));
+      pp->priority_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MAX);
+      pp->delay_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
+      pp->cp = cp;
+      GNUNET_CONTAINER_multihashmap_put (plans,
+                                        &id.hashPubKey,
+                                        pp,
+                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
+    }
+  prd = GSF_pending_request_get_data_ (pr);
+  plan_count++;
+  GNUNET_STATISTICS_update (GSF_stats,
+                           gettext_noop ("# query plan entries"),
+                           1,
+                           GNUNET_NO);
+  rp = GNUNET_malloc (sizeof (struct GSF_RequestPlan));
+#if DEBUG_FS
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+             "Planning transmission of query `%s' to peer `%s' (%p)\n",
+             GNUNET_h2s (&prd->query),
+             GNUNET_i2s (&id), 
+             rp);
+#endif    
+  rp->pr = pr;
+  GNUNET_CONTAINER_DLL_insert (prd->rp_head,
+                              prd->rp_tail,
+                              rp);
+  plan (pp, rp);
 }
 
 
 /**
- * Get the lowest-weight entry for the respective peer
- * from the plan.  Removes the entry from the plan's queue.
+ * Notify the plan about a peer being no longer available;
+ * destroy all entries associated with this peer.
  *
- * @param cp connected peer to query for the next request
- * @return NULL if the queue for this peer is empty
+ * @param cp connected peer 
  */
-struct GSF_PendingRequest *
-GSF_plan_get_ (const struct GSF_ConnectedPeer *cp)
+void
+GSF_plan_notify_peer_disconnect_ (const struct GSF_ConnectedPeer *cp)
 {
-  struct GNUNET_CONTAINER_Heap *h;
+  struct GNUNET_PeerIdentity id;
+  struct PeerPlan *pp;
+  struct GSF_RequestPlan *rp;
+  struct GSF_PendingRequestData *prd;
 
-  h = get_heap (cp);
-  if (NULL == h)
-    return NULL;
-  return GNUNET_CONTAINER_heap_remove_root (h);
+  GSF_connected_peer_get_identity_ (cp, &id);
+  pp = GNUNET_CONTAINER_multihashmap_get (plans,
+                                         &id.hashPubKey);
+  if (NULL == pp)
+    return; /* nothing was ever planned for this peer */
+  GNUNET_CONTAINER_multihashmap_remove (plans,
+                                       &id.hashPubKey,
+                                       pp);
+  if (NULL != pp->pth)
+    GSF_peer_transmit_cancel_ (pp->pth);
+  if (GNUNET_SCHEDULER_NO_TASK != pp->task)
+    {
+      GNUNET_SCHEDULER_cancel (pp->task);
+      pp->task = GNUNET_SCHEDULER_NO_TASK;
+    }
+  while (NULL != (rp = GNUNET_CONTAINER_heap_remove_root (pp->priority_heap)))
+    {
+      prd = GSF_pending_request_get_data_ (rp->pr);
+      GNUNET_CONTAINER_DLL_remove (prd->rp_head,
+                                  prd->rp_tail,
+                                  rp);
+      plan_count--;
+      GNUNET_free (rp);
+    }
+  GNUNET_CONTAINER_heap_destroy (pp->priority_heap);
+  while (NULL != (rp = GNUNET_CONTAINER_heap_remove_root (pp->delay_heap)))
+    {
+      prd = GSF_pending_request_get_data_ (rp->pr);
+      GNUNET_CONTAINER_DLL_remove (prd->rp_head,
+                                  prd->rp_tail,
+                                  rp);
+      plan_count--;
+      GNUNET_free (rp);
+    }
+  GNUNET_STATISTICS_set (GSF_stats,
+                        gettext_noop ("# query plan entries"),
+                        plan_count,
+                        GNUNET_NO);
+
+  GNUNET_CONTAINER_heap_destroy (pp->delay_heap);
+  GNUNET_free (pp);
 }
 
 
 /**
- * Get the size of the request queue for the given peer.
+ * Notify the plan about a request being done; destroy all entries
+ * associated with this request.
  *
- * @param cp connected peer to query 
- * @return number of entries in this peer's request queue
+ * @param pr request that is done
  */
-unsigned int
-GSF_plan_size_ (const struct GSF_ConnectedPeer *cp)
+void
+GSF_plan_notify_request_done_ (struct GSF_PendingRequest *pr)
 {
-  struct GNUNET_CONTAINER_Heap *h;
+  struct GSF_RequestPlan *rp;
+  struct GSF_PendingRequestData *prd;
 
-  h = get_heap (cp);
-  if (NULL == h)
-    return 0;
-  return GNUNET_CONTAINER_heap_get_size (h);
+  prd = GSF_pending_request_get_data_ (pr);
+  while (NULL != (rp = prd->rp_head))
+    {
+      GNUNET_CONTAINER_heap_remove_node (rp->hn);
+      GNUNET_CONTAINER_DLL_remove (prd->rp_head,
+                                  prd->rp_tail,
+                                  rp);
+      plan_count--;
+      GNUNET_free (rp);
+    }
+  GNUNET_STATISTICS_set (GSF_stats,
+                        gettext_noop ("# query plan entries"),
+                        plan_count,
+                        GNUNET_NO);  
 }
 
 
-
 /**
  * Initialize plan subsystem.
  */