-improve UDP logging
[oweals/gnunet.git] / src / rps / gnunet-service-rps_sampler.c
index d182894c00e434ea3322e7922b53195df8a95b53..89dbb4dacf7ef330719110c0a9709ad44a06363d 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (C)
+     Copyright (C)
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -32,7 +32,7 @@
 #include <math.h>
 #include <inttypes.h>
 
-#define LOG(kind, ...) GNUNET_log(kind, __VA_ARGS__)
+#define LOG(kind, ...) GNUNET_log_from(kind,"rps-sampler",__VA_ARGS__)
 
 // multiple 'clients'?
 
@@ -77,15 +77,31 @@ struct RPS_SamplerElement
    */
   struct GNUNET_HashCode peer_id_hash;
 
+
   /**
    * Time of last request.
    */
-  struct GNUNET_TIME_Absolute last_request;
-  
+  struct GNUNET_TIME_Absolute last_client_request;
+
   /**
    * Flag that indicates that we are not holding a valid PeerID right now.
    */
   enum RPS_SamplerEmpty is_empty;
+
+  /**
+   * 'Birth'
+   */
+  struct GNUNET_TIME_Absolute birth;
+
+  /**
+   * How many times a PeerID was put in this sampler.
+   */
+  uint32_t num_peers;
+
+  /**
+   * How many times this sampler changed the peer_id.
+   */
+  uint32_t num_change;
 };
 
 /**
@@ -105,11 +121,11 @@ struct RPS_Sampler
   struct RPS_SamplerElement **sampler_elements;
 
   /**
-   * Index to a sampler element.
+   * Max time a round takes
    *
-   * Gets cycled on every hist_request.
+   * Used in the context of RPS
    */
-  uint64_t sampler_elem_index;
+  struct GNUNET_TIME_Relative max_round_interval;
 
   /**
    * Callback to be called when a peer gets inserted into a sampler.
@@ -133,9 +149,86 @@ struct RPS_Sampler
 };
 
 /**
- * Global sampler variable.
+ * Closure to _get_n_rand_peers_ready_cb()
+ */
+struct NRandPeersReadyCls
+{
+  /**
+   * Number of peers we are waiting for.
+   */
+  uint32_t num_peers;
+
+  /**
+   * Number of peers we currently have.
+   */
+  uint32_t cur_num_peers;
+
+  /**
+   * Pointer to the array holding the ids.
+   */
+  struct GNUNET_PeerIdentity *ids;
+
+  /**
+   * Callback to be called when all ids are available.
+   */
+  RPS_sampler_n_rand_peers_ready_cb callback;
+
+  /**
+   * Closure given to the callback
+   */
+  void *cls;
+};
+
+/**
+ * Callback that is called from _get_rand_peer() when the PeerID is ready.
+ *
+ * @param cls the closure given alongside this function.
+ * @param id the PeerID that was returned
  */
-struct RPS_Sampler *sampler;
+typedef void
+(*RPS_sampler_rand_peer_ready_cont) (void *cls,
+        const struct GNUNET_PeerIdentity *id);
+
+/**
+ * Closure to #RPS_sampler_get_rand_peer()
+ */
+struct GetPeerCls
+{
+  /** DLL */
+  struct GetPeerCls *next;
+  struct GetPeerCls *prev;
+
+  /**
+   * The sampler this function operates on.
+   */
+  struct RPS_Sampler *sampler;
+
+  /**
+   * The task for this function.
+   */
+  struct GNUNET_SCHEDULER_Task *get_peer_task;
+
+  /**
+   * The callback
+   */
+  RPS_sampler_rand_peer_ready_cont cont;
+
+  /**
+   * The closure to the callback
+   */
+  void *cont_cls;
+
+  /**
+   * The address of the id to be stored at
+   */
+  struct GNUNET_PeerIdentity *id;
+};
+
+
+///**
+// * Global sampler variable.
+// */
+//struct RPS_Sampler *sampler;
 
 
 /**
@@ -156,7 +249,45 @@ static size_t max_size;
 /**
  * Inedex to the sampler element that is the next to be returned
  */
-static uint64_t client_get_index;
+static uint32_t client_get_index;
+
+
+/** FIXME document */
+struct GetPeerCls *gpc_head;
+struct GetPeerCls *gpc_tail;
+
+
+/**
+ * Callback to _get_rand_peer() used by _get_n_rand_peers().
+ *
+ * Checks whether all n peers are available. If they are,
+ * give those back.
+ */
+  void
+check_n_peers_ready (void *cls,
+    const struct GNUNET_PeerIdentity *id)
+{
+  struct NRandPeersReadyCls *n_peers_cls;
+
+  n_peers_cls = (struct NRandPeersReadyCls *) cls;
+
+  n_peers_cls->cur_num_peers++;
+  LOG (GNUNET_ERROR_TYPE_DEBUG,
+      "Got %" PRIX32 ". of %" PRIX32 " peers\n",
+      n_peers_cls->cur_num_peers, n_peers_cls->num_peers);
+
+  if (n_peers_cls->num_peers == n_peers_cls->cur_num_peers)
+  { /* All peers are ready -- return those to the client */
+    GNUNET_assert (NULL != n_peers_cls->callback);
+
+    LOG (GNUNET_ERROR_TYPE_DEBUG,
+        "returning %" PRIX32 " peers to the client\n",
+        n_peers_cls->num_peers);
+    n_peers_cls->callback (n_peers_cls->cls, n_peers_cls->ids, n_peers_cls->num_peers);
+
+    GNUNET_free (n_peers_cls);
+  }
+}
 
 
 /**
@@ -174,13 +305,11 @@ RPS_sampler_elem_reinit (struct RPS_SamplerElement *sampler_el)
                              &(sampler_el->auth_key.key),
                              GNUNET_CRYPTO_HASH_LENGTH);
 
-  sampler_el->last_request = GNUNET_TIME_UNIT_FOREVER_ABS;
-
-  /* We might want to keep the previous peer */
+  sampler_el->last_client_request = GNUNET_TIME_UNIT_FOREVER_ABS;
 
-  //GNUNET_CRYPTO_hmac(&sampler_el->auth_key, sampler_el->peer_id,
-  //                   sizeof(struct GNUNET_PeerIdentity),
-  //                   &sampler_el->peer_id_hash);
+  sampler_el->birth = GNUNET_TIME_absolute_get ();
+  sampler_el->num_peers = 0;
+  sampler_el->num_change = 0;
 }
 
 
@@ -196,32 +325,39 @@ RPS_sampler_elem_reinit (struct RPS_SamplerElement *sampler_el)
 RPS_sampler_elem_create (void)
 {
   struct RPS_SamplerElement *s;
-  
+
   s = GNUNET_new (struct RPS_SamplerElement);
 
   RPS_sampler_elem_reinit (s);
-  LOG (GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: initialised with empty PeerID\n");
+  LOG (GNUNET_ERROR_TYPE_DEBUG, "initialised with empty PeerID\n");
 
   return s;
 }
 
 
 /**
- * Input an PeerID into the given sampler.
+ * Input an PeerID into the given sampler element.
+ *
+ * @param sampler the sampler the @a s_elem belongs to.
+ *                Needed to know the 
  */
-  static void
-RPS_sampler_elem_next (struct RPS_SamplerElement *s_elem, const struct GNUNET_PeerIdentity *other,
-    RPS_sampler_insert_cb insert_cb, void *insert_cls,
-    RPS_sampler_remove_cb remove_cb, void *remove_cls)
+static void
+RPS_sampler_elem_next (struct RPS_SamplerElement *s_elem,
+                       struct RPS_Sampler *sampler,
+                       const struct GNUNET_PeerIdentity *other,
+                       RPS_sampler_insert_cb insert_cb, void *insert_cls,
+                       RPS_sampler_remove_cb remove_cb, void *remove_cls)
 {
   struct GNUNET_HashCode other_hash;
 
-  if ( 0 == GNUNET_CRYPTO_cmp_peer_identity(other, &(s_elem->peer_id)) )
+  s_elem->num_peers++;
+
+  if ( 0 == GNUNET_CRYPTO_cmp_peer_identity (other, &(s_elem->peer_id)) )
   {
-    LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER:          Got PeerID %s\n",
-        GNUNET_i2s(other));
-    LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Have already PeerID %s\n",
-        GNUNET_i2s(&(s_elem->peer_id)));
+    LOG (GNUNET_ERROR_TYPE_DEBUG, "         Got PeerID %s\n",
+        GNUNET_i2s (other));
+    LOG (GNUNET_ERROR_TYPE_DEBUG, "Have already PeerID %s\n",
+        GNUNET_i2s (&(s_elem->peer_id)));
   }
   else
   {
@@ -231,48 +367,48 @@ RPS_sampler_elem_next (struct RPS_SamplerElement *s_elem, const struct GNUNET_Pe
         &other_hash);
 
     if ( EMPTY == s_elem->is_empty )
-    { // Or whatever is a valid way to say
-      // "we have no PeerID at the moment"
-      LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Got PeerID %s; Simply accepting (was empty previously).\n",
+    {
+      LOG (GNUNET_ERROR_TYPE_DEBUG, "Got PeerID %s; Simply accepting (was empty previously).\n",
           GNUNET_i2s(other));
       s_elem->peer_id = *other;
-      //s_elem->peer_id = other;
       s_elem->peer_id_hash = other_hash;
-      if (NULL != sampler->insert_cb)
-      {
-        sampler->insert_cb(sampler->insert_cls, &(s_elem->peer_id));
-      }
+
+      if (NULL != insert_cb)
+        insert_cb (insert_cls, sampler, &(s_elem->peer_id));
+
+      s_elem->num_change++;
     }
-    else if ( 0 > GNUNET_CRYPTO_hash_cmp(&other_hash, &s_elem->peer_id_hash) )
+    else if ( 0 > GNUNET_CRYPTO_hash_cmp (&other_hash, &s_elem->peer_id_hash) )
     {
-      LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER:            Got PeerID %s\n",
-          GNUNET_i2s(other));
-      LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Discarding old PeerID %s\n",
-          GNUNET_i2s(&s_elem->peer_id));
+      LOG (GNUNET_ERROR_TYPE_DEBUG, "           Got PeerID %s\n",
+          GNUNET_i2s (other));
+      LOG (GNUNET_ERROR_TYPE_DEBUG, "Discarding old PeerID %s\n",
+          GNUNET_i2s (&s_elem->peer_id));
 
-      if ( NULL != sampler->remove_cb )
+      if ( NULL != remove_cb )
       {
-        LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Removing old PeerID %s with the remove callback.\n",
-            GNUNET_i2s(&s_elem->peer_id));
-        sampler->remove_cb(sampler->remove_cls, &s_elem->peer_id);
+        LOG (GNUNET_ERROR_TYPE_DEBUG, "Removing old PeerID %s with the remove callback.\n",
+            GNUNET_i2s (&s_elem->peer_id));
+        remove_cb (remove_cls, sampler, &s_elem->peer_id);
       }
 
-      memcpy(&s_elem->peer_id, other, sizeof(struct GNUNET_PeerIdentity));
-      //s_elem->peer_id = other;
+      s_elem->peer_id = *other;
       s_elem->peer_id_hash = other_hash;
 
-      if ( NULL != sampler->insert_cb )
+      if ( NULL != insert_cb )
       {
-        LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Inserting new PeerID %s with the insert callback.\n",
-            GNUNET_i2s(&s_elem->peer_id));
-        sampler->insert_cb(sampler->insert_cls, &s_elem->peer_id);
+        LOG (GNUNET_ERROR_TYPE_DEBUG, "Inserting new PeerID %s with the insert callback.\n",
+            GNUNET_i2s (&s_elem->peer_id));
+        insert_cb (insert_cls, sampler, &s_elem->peer_id);
       }
+
+      s_elem->num_change++;
     }
     else
     {
-      LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER:         Got PeerID %s\n",
+      LOG (GNUNET_ERROR_TYPE_DEBUG, "        Got PeerID %s\n",
           GNUNET_i2s(other));
-      LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Keeping old PeerID %s\n",
+      LOG (GNUNET_ERROR_TYPE_DEBUG, "Keeping old PeerID %s\n",
           GNUNET_i2s(&s_elem->peer_id));
     }
   }
@@ -280,16 +416,30 @@ RPS_sampler_elem_next (struct RPS_SamplerElement *s_elem, const struct GNUNET_Pe
 }
 
 
+/**
+ * Get the size of the sampler.
+ *
+ * @param sampler the sampler to return the size of.
+ * @return the size of the sampler
+ */
+unsigned int
+RPS_sampler_get_size (struct RPS_Sampler *sampler)
+{
+  return sampler->sampler_size;
+}
+
+
 /**
  * Grow or shrink the size of the sampler.
  *
+ * @param sampler the sampler to resize.
  * @param new_size the new size of the sampler
  */
-  void
-RPS_sampler_resize (unsigned int new_size)
+static void
+sampler_resize (struct RPS_Sampler *sampler, unsigned int new_size)
 {
   unsigned int old_size;
-  uint64_t i;
+  uint32_t i;
   struct RPS_SamplerElement **rem_list;
 
   // TODO check min and max size
@@ -304,46 +454,74 @@ RPS_sampler_resize (unsigned int new_size)
         &sampler->sampler_elements[new_size],
         (old_size - new_size) * sizeof (struct RPS_SamplerElement *));
 
-    LOG (GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Shrinking sampler %d -> %d\n", old_size, new_size);
+    LOG (GNUNET_ERROR_TYPE_DEBUG, "Shrinking sampler %d -> %d\n", old_size, new_size);
     GNUNET_array_grow (sampler->sampler_elements, sampler->sampler_size, new_size);
     LOG (GNUNET_ERROR_TYPE_DEBUG,
-        "SAMPLER: sampler->sampler_elements now points to %p\n",
+        "sampler->sampler_elements now points to %p\n",
         sampler->sampler_elements);
 
     for (i = 0 ; i < old_size - new_size ; i++)
     {/* Remove unneeded rest */
-      LOG (GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Removing %" PRIX64 ". sampler\n", i);
+      LOG (GNUNET_ERROR_TYPE_DEBUG, "Removing %" PRIX32 ". sampler\n", i);
       if (NULL != sampler->remove_cb)
-        sampler->remove_cb (sampler->remove_cls, &rem_list[i]->peer_id);
+        sampler->remove_cb (sampler->remove_cls, sampler, &rem_list[i]->peer_id);
       GNUNET_free (rem_list[i]);
     }
+    GNUNET_free (rem_list);
   }
   else if (old_size < new_size)
   { /* Growing */
-    LOG (GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Growing sampler %d -> %d\n", old_size, new_size);
+    LOG (GNUNET_ERROR_TYPE_DEBUG, "Growing sampler %d -> %d\n", old_size, new_size);
     GNUNET_array_grow (sampler->sampler_elements, sampler->sampler_size, new_size);
     LOG (GNUNET_ERROR_TYPE_DEBUG,
-        "SAMPLER: sampler->sampler_elements now points to %p\n",
+        "sampler->sampler_elements now points to %p\n",
         sampler->sampler_elements);
 
     for ( i = old_size ; i < new_size ; i++ )
     { /* Add new sampler elements */
       sampler->sampler_elements[i] = RPS_sampler_elem_create ();
       if (NULL != sampler->insert_cb)
-        sampler->insert_cb (sampler->insert_cls, &sampler->sampler_elements[i]->peer_id);
+        sampler->insert_cb (sampler->insert_cls, sampler, &sampler->sampler_elements[i]->peer_id);
       LOG (GNUNET_ERROR_TYPE_DEBUG,
-          "SAMPLER: Added %" PRIX64 ". sampler, now pointing to %p, contains %s\n",
+          "Added %" PRIX32 ". sampler, now pointing to %p, contains %s\n",
           i, &sampler->sampler_elements[i], GNUNET_i2s (&sampler->sampler_elements[i]->peer_id));
     }
   }
   else
   {
-    LOG (GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Size remains the same -- nothing to do\n");
+    LOG (GNUNET_ERROR_TYPE_DEBUG, "Size remains the same -- nothing to do\n");
     return;
   }
 
-  GNUNET_assert(sampler->sampler_size == new_size);
-  LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Finished growing/shrinking.\n"); // remove
+  GNUNET_assert (sampler->sampler_size == new_size);
+  LOG (GNUNET_ERROR_TYPE_DEBUG, "Finished growing/shrinking.\n"); // remove
+}
+
+
+/**
+ * Grow or shrink the size of the sampler.
+ *
+ * @param sampler the sampler to resize.
+ * @param new_size the new size of the sampler
+ */
+void
+RPS_sampler_resize (struct RPS_Sampler *sampler, unsigned int new_size)
+{
+  GNUNET_assert (0 < new_size);
+  sampler_resize (sampler, new_size);
+}
+
+
+/**
+ * Empty the sampler.
+ *
+ * @param sampler the sampler to empty.
+ * @param new_size the new size of the sampler
+ */
+static void
+sampler_empty (struct RPS_Sampler *sampler)
+{
+  sampler_resize (sampler, 0);
 }
 
 
@@ -351,57 +529,61 @@ RPS_sampler_resize (unsigned int new_size)
  * Initialise a tuple of sampler elements.
  *
  * @param init_size the size the sampler is initialised with
- * @param id with which all newly created sampler elements are initialised
- * @param ins_cb the callback that will be called on every PeerID that is 
+ * @param ins_cb the callback that will be called on every PeerID that is
  *               newly inserted into a sampler element
  * @param ins_cls the closure given to #ins_cb
  * @param rem_cb the callback that will be called on every PeerID that is
  *               removed from a sampler element
  * @param rem_cls the closure given to #rem_cb
+ * @return a handle to a sampler that consists of sampler elements.
  */
-  void
-RPS_sampler_init (size_t init_size, const struct GNUNET_PeerIdentity *id,
+struct RPS_Sampler *
+RPS_sampler_init (size_t init_size,
+    struct GNUNET_TIME_Relative max_round_interval,
     RPS_sampler_insert_cb ins_cb, void *ins_cls,
     RPS_sampler_remove_cb rem_cb, void *rem_cls)
 {
-  //struct RPS_Sampler *sampler;
-  //uint64_t i;
+  struct RPS_Sampler *sampler;
+  //uint32_t i;
 
   /* Initialise context around extended sampler */
   min_size = 10; // TODO make input to _samplers_init()
   max_size = 1000; // TODO make input to _samplers_init()
-  GNUNET_new_array (64, struct GNUNET_TIME_Relative);
 
   sampler = GNUNET_new (struct RPS_Sampler);
   sampler->sampler_size = 0;
   sampler->sampler_elements = NULL;
+  sampler->max_round_interval = max_round_interval;
   sampler->insert_cb = ins_cb;
   sampler->insert_cls = ins_cls;
   sampler->remove_cb = rem_cb;
   sampler->remove_cls = rem_cls;
   //sampler->sampler_elements = GNUNET_new_array(init_size, struct GNUNET_PeerIdentity);
   //GNUNET_array_grow (sampler->sampler_elements, sampler->sampler_size, min_size);
-  RPS_sampler_resize (init_size);
-  RPS_sampler_update_list (id); // no super nice desing but ok for the moment
+  RPS_sampler_resize (sampler, init_size);
 
   client_get_index = 0;
 
   //GNUNET_assert (init_size == sampler->sampler_size);
+  return sampler;
 }
 
 
 /**
  * A fuction to update every sampler in the given list
  *
+ * @param sampler the sampler to update.
  * @param id the PeerID that is put in the sampler
  */
   void
-RPS_sampler_update_list (const struct GNUNET_PeerIdentity *id)
+RPS_sampler_update (struct RPS_Sampler *sampler,
+                    const struct GNUNET_PeerIdentity *id)
 {
-  uint64_t i;
+  uint32_t i;
 
   for ( i = 0 ; i < sampler->sampler_size ; i++ )
-    RPS_sampler_elem_next (sampler->sampler_elements[i], id,
+    RPS_sampler_elem_next (sampler->sampler_elements[i],
+        sampler, id,
         sampler->insert_cb, sampler->insert_cls,
         sampler->remove_cb, sampler->remove_cls);
 }
@@ -412,18 +594,20 @@ RPS_sampler_update_list (const struct GNUNET_PeerIdentity *id)
  *
  * Used to get rid of a PeerID.
  *
+ * @param sampler the sampler to reinitialise a sampler element in.
  * @param id the id of the sampler elements to update.
  */
   void
-RPS_sampler_reinitialise_by_value (const struct GNUNET_PeerIdentity *id)
+RPS_sampler_reinitialise_by_value (struct RPS_Sampler *sampler,
+                                   const struct GNUNET_PeerIdentity *id)
 {
-  uint64_t i;
+  uint32_t i;
 
   for ( i = 0 ; i < sampler->sampler_size ; i++ )
   {
     if ( 0 == GNUNET_CRYPTO_cmp_peer_identity(id, &(sampler->sampler_elements[i]->peer_id)) )
     {
-      LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Reinitialising sampler\n");
+      LOG (GNUNET_ERROR_TYPE_DEBUG, "Reinitialising sampler\n");
       RPS_sampler_elem_reinit (sampler->sampler_elements[i]);
     }
   }
@@ -437,65 +621,38 @@ RPS_sampler_reinitialise_by_value (const struct GNUNET_PeerIdentity *id)
  * corrsponding peer to the client.
  * Only used internally
  */
-  const struct GNUNET_PeerIdentity * 
-RPS_sampler_get_rand_peer_ ()
+static void
+sampler_get_rand_peer2 (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
-  uint64_t r_index;
-  const struct GNUNET_PeerIdentity *peer; // do we have to malloc that?
+  struct GetPeerCls *gpc = (struct GetPeerCls *) cls;
+  uint32_t r_index;
 
-  // TODO implement extra logic
+  gpc->get_peer_task = NULL;
+  GNUNET_CONTAINER_DLL_remove (gpc_head, gpc_tail, gpc);
+  if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
+    return;
 
   /**;
    * Choose the r_index of the peer we want to return
    * at random from the interval of the gossip list
    */
-  r_index = GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG,
-      sampler->sampler_size);
-
-  //if ( EMPTY == sampler->sampler_elements[r_index]->is_empty )
-  //  // TODO schedule for later
-  //  peer = NULL;
-  //else
-    peer = &(sampler->sampler_elements[r_index]->peer_id);
-  sampler->sampler_elements[r_index]->last_request = GNUNET_TIME_absolute_get();
-  LOG(GNUNET_ERROR_TYPE_DEBUG, "Sgrp: Returning PeerID %s\n", GNUNET_i2s(peer));
-
-  return peer;
-}
-
+  r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
+      gpc->sampler->sampler_size);
 
-/**
- * Get n random peers out of the sampled peers.
- *
- * We might want to reinitialise this sampler after giving the
- * corrsponding peer to the client.
- * Random with or without consumption?
- * Only used internally
- */
-  const struct GNUNET_PeerIdentity *
-RPS_sampler_get_n_rand_peers_ (uint64_t n)
-{
-  if ( 0 == sampler->sampler_size )
+  if ( EMPTY == gpc->sampler->sampler_elements[r_index]->is_empty )
   {
-    LOG (GNUNET_ERROR_TYPE_DEBUG,
-        "Sgrp: List empty - Returning NULL\n");
-    return NULL;
+    gpc->get_peer_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply(
+                                                                   GNUNET_TIME_UNIT_SECONDS,
+                                                                   .1),
+                                                       &sampler_get_rand_peer2,
+                                                       cls);
+    return;
   }
-  else
-  {
-    // TODO check if we have too much (distinct) sampled peers
-    // If we are not ready yet maybe schedule for later
-    struct GNUNET_PeerIdentity *peers;
-    uint64_t i;
 
-    peers = GNUNET_malloc (n * sizeof(struct GNUNET_PeerIdentity));
+  *gpc->id = gpc->sampler->sampler_elements[r_index]->peer_id;
 
-    for ( i = 0 ; i < n ; i++ ) {
-      //peers[i] = RPS_sampler_get_rand_peer_(sampler->sampler_elements);
-      memcpy (&peers[i], RPS_sampler_get_rand_peer_ (), sizeof (struct GNUNET_PeerIdentity));
-    }
-    return peers;
-  }
+  gpc->cont (gpc->cont_cls, gpc->id);
+  GNUNET_free (gpc);
 }
 
 
@@ -504,23 +661,96 @@ RPS_sampler_get_n_rand_peers_ (uint64_t n)
  *
  * We might want to reinitialise this sampler after giving the
  * corrsponding peer to the client.
- *
- * @return a random PeerID of the PeerIDs previously put into the sampler.
  */
-  const struct GNUNET_PeerIdentity * 
-RPS_sampler_get_rand_peer ()
+static void
+sampler_get_rand_peer (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
-  struct GNUNET_PeerIdentity *peer;
-
-  // use _get_rand_peer_ ?
-  peer = GNUNET_new (struct GNUNET_PeerIdentity);
-  *peer = sampler->sampler_elements[client_get_index]->peer_id;
-  RPS_sampler_elem_reinit (sampler->sampler_elements[client_get_index]);
-  if ( client_get_index == sampler->sampler_size )
-    client_get_index = 0;
+  struct GetPeerCls *gpc = (struct GetPeerCls *) cls;
+  struct GNUNET_PeerIdentity tmp_id;
+  struct RPS_SamplerElement *s_elem;
+  struct GNUNET_TIME_Relative last_request_diff;
+  uint32_t tmp_client_get_index;
+
+  gpc->get_peer_task = NULL;
+  GNUNET_CONTAINER_DLL_remove (gpc_head, gpc_tail, gpc);
+  if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
+    return;
+
+  LOG (GNUNET_ERROR_TYPE_DEBUG, "Single peer was requested\n");
+
+
+  /* Store the next #client_get_index to check whether we cycled over the whole list */
+  if (0 < client_get_index)
+    tmp_client_get_index = client_get_index - 1;
   else
-    client_get_index++;
-  return peer;
+    tmp_client_get_index = gpc->sampler->sampler_size - 1;
+
+  LOG (GNUNET_ERROR_TYPE_DEBUG,
+      "sched for later if index reaches %" PRIX32 " (sampler size: %" PRIX32 ").\n",
+      tmp_client_get_index, gpc->sampler->sampler_size);
+
+  do
+  { /* Get first non empty sampler */
+    if (tmp_client_get_index == client_get_index)
+    {
+      LOG (GNUNET_ERROR_TYPE_DEBUG, "reached tmp_index %" PRIX32 ".\n",
+           client_get_index);
+      GNUNET_assert (NULL == gpc->get_peer_task);
+      gpc->get_peer_task =
+        GNUNET_SCHEDULER_add_delayed (gpc->sampler->max_round_interval,
+                                      &sampler_get_rand_peer, cls);
+      return;
+    }
+
+    tmp_id = gpc->sampler->sampler_elements[client_get_index]->peer_id;
+    RPS_sampler_elem_reinit (gpc->sampler->sampler_elements[client_get_index]);
+    RPS_sampler_elem_next (gpc->sampler->sampler_elements[client_get_index],
+                           gpc->sampler, &tmp_id, NULL, NULL, NULL, NULL);
+
+    /* Cycle the #client_get_index one step further */
+    if ( client_get_index == gpc->sampler->sampler_size - 1 )
+      client_get_index = 0;
+    else
+      client_get_index++;
+
+    LOG (GNUNET_ERROR_TYPE_DEBUG, "incremented index to %" PRIX32 ".\n",
+         client_get_index);
+  } while (EMPTY == gpc->sampler->sampler_elements[client_get_index]->is_empty);
+
+  s_elem = gpc->sampler->sampler_elements[client_get_index];
+  *gpc->id = s_elem->peer_id;
+
+  /* Check whether we may use this sampler to give it back to the client */
+  if (GNUNET_TIME_UNIT_FOREVER_ABS.abs_value_us != s_elem->last_client_request.abs_value_us)
+  {
+    last_request_diff =
+      GNUNET_TIME_absolute_get_difference (s_elem->last_client_request,
+                                           GNUNET_TIME_absolute_get ());
+    /* We're not going to give it back now if it was
+     * already requested by a client this round */
+    if (last_request_diff.rel_value_us < gpc->sampler->max_round_interval.rel_value_us)
+    {
+      LOG (GNUNET_ERROR_TYPE_DEBUG,
+          "Last client request on this sampler was less than max round interval ago -- scheduling for later\n");
+      ///* How many time remains untile the next round has started? */
+      //inv_last_request_diff =
+      //  GNUNET_TIME_absolute_get_difference (last_request_diff,
+      //                                       sampler->max_round_interval);
+      // add a little delay
+      /* Schedule it one round later */
+      GNUNET_assert (NULL == gpc->get_peer_task);
+      gpc->get_peer_task =
+        GNUNET_SCHEDULER_add_delayed (gpc->sampler->max_round_interval,
+                                      &sampler_get_rand_peer, cls);
+      return;
+    }
+    // TODO add other reasons to wait here
+  }
+
+  s_elem->last_client_request = GNUNET_TIME_absolute_get ();
+
+  gpc->cont (gpc->cont_cls, gpc->id);
+  GNUNET_free (gpc);
 }
 
 
@@ -531,35 +761,52 @@ RPS_sampler_get_rand_peer ()
  * corrsponding peer to the client.
  * Random with or without consumption?
  *
- * @return n random PeerIDs of the PeerIDs previously put into the sampler.
+ * @param sampler the sampler to get peers from.
+ * @param cb callback that will be called once the ids are ready.
+ * @param cls closure given to @a cb
+ * @param for_client #GNUNET_YES if result is used for client,
+ *                   #GNUNET_NO if used internally
+ * @param num_peers the number of peers requested
  */
-  const struct GNUNET_PeerIdentity *
-RPS_sampler_get_n_rand_peers (uint64_t n)
+  void
+RPS_sampler_get_n_rand_peers (struct RPS_Sampler *sampler,
+                              RPS_sampler_n_rand_peers_ready_cb cb,
+                              void *cls, uint32_t num_peers, int for_client)
 {
-  // use _get_rand_peers_ ?
-  if ( 0 == sampler->sampler_size )
-  {
-    LOG (GNUNET_ERROR_TYPE_DEBUG,
-        "Sgrp: List empty - Returning NULL\n");
-    return NULL;
-  }
-  else
+  GNUNET_assert (0 != sampler->sampler_size);
+
+  // TODO check if we have too much (distinct) sampled peers
+  uint32_t i;
+  struct NRandPeersReadyCls *cb_cls;
+  struct GetPeerCls *gpc;
+
+  cb_cls = GNUNET_new (struct NRandPeersReadyCls);
+  cb_cls->num_peers = num_peers;
+  cb_cls->cur_num_peers = 0;
+  cb_cls->ids = GNUNET_new_array (num_peers, struct GNUNET_PeerIdentity);
+  cb_cls->callback = cb;
+  cb_cls->cls = cls;
+
+  LOG (GNUNET_ERROR_TYPE_DEBUG,
+      "Scheduling requests for %" PRIX32 " peers\n", num_peers);
+
+  for ( i = 0 ; i < num_peers ; i++ )
   {
-    // TODO check if we have too much (distinct) sampled peers
-    // If we are not ready yet maybe schedule for later
-    struct GNUNET_PeerIdentity *peers;
-    const struct GNUNET_PeerIdentity *peer;
-    uint64_t i;
-
-    peers = GNUNET_malloc (n * sizeof (struct GNUNET_PeerIdentity));
-
-    for ( i = 0 ; i < n ; i++ ) {
-      //peers[i] = RPS_sampler_get_rand_peer_(sampler->sampler_elements);
-      peer = RPS_sampler_get_rand_peer ();
-      memcpy (&peers[i], peer, sizeof (struct GNUNET_PeerIdentity));
-      //GNUNET_free (peer);
-    }
-    return peers;
+    gpc = GNUNET_new (struct GetPeerCls);
+    gpc->sampler = sampler;
+    gpc->cont = check_n_peers_ready;
+    gpc->cont_cls = cb_cls;
+    gpc->id = &cb_cls->ids[i];
+
+    // maybe add a little delay
+    if (GNUNET_YES == for_client)
+      gpc->get_peer_task = GNUNET_SCHEDULER_add_now (&sampler_get_rand_peer, gpc);
+    else if (GNUNET_NO == for_client)
+      gpc->get_peer_task = GNUNET_SCHEDULER_add_now (&sampler_get_rand_peer2, gpc);
+    else
+      GNUNET_abort ();
+
+    GNUNET_CONTAINER_DLL_insert (gpc_head, gpc_tail, gpc);
   }
 }
 
@@ -567,20 +814,22 @@ RPS_sampler_get_n_rand_peers (uint64_t n)
 /**
  * Counts how many Samplers currently hold a given PeerID.
  *
+ * @param sampler the sampler to count ids in.
  * @param id the PeerID to count.
  *
  * @return the number of occurrences of id.
  */
-  uint64_t
-RPS_sampler_count_id (const struct GNUNET_PeerIdentity *id)
+  uint32_t
+RPS_sampler_count_id (struct RPS_Sampler *sampler,
+                      const struct GNUNET_PeerIdentity *id)
 {
-  uint64_t count;
-  uint64_t i;
+  uint32_t count;
+  uint32_t i;
 
   count = 0;
   for ( i = 0 ; i < sampler->sampler_size ; i++ )
   {
-    if ( 0 == GNUNET_CRYPTO_cmp_peer_identity (&sampler->sampler_elements[i]->peer_id, id) 
+    if ( 0 == GNUNET_CRYPTO_cmp_peer_identity (&sampler->sampler_elements[i]->peer_id, id)
         && EMPTY != sampler->sampler_elements[i]->is_empty)
       count++;
   }
@@ -592,10 +841,19 @@ RPS_sampler_count_id (const struct GNUNET_PeerIdentity *id)
  * Cleans the sampler.
  */
   void
-RPS_sampler_destroy ()
+RPS_sampler_destroy (struct RPS_Sampler *sampler)
 {
-  RPS_sampler_resize (0);
-  GNUNET_array_grow (sampler->sampler_elements, sampler->sampler_size, 0);
+  struct GetPeerCls *i;
+
+  for (i = gpc_head; NULL != i; i = gpc_head)
+  {
+    GNUNET_CONTAINER_DLL_remove (gpc_head, gpc_tail, i);
+    GNUNET_SCHEDULER_cancel (i->get_peer_task);
+    GNUNET_free (i);
+  }
+
+  sampler_empty (sampler);
+  GNUNET_free (sampler);
 }
 
 /* end of gnunet-service-rps.c */