-simplify
[oweals/gnunet.git] / src / consensus / gnunet-consensus.c
index ef067ea34c0c028252517471c98b9ab50199c4c5..d8c1b14eee8173d739219d0307230f786a8ef18e 100644 (file)
 
 /**
  * @file consensus/gnunet-consensus.c
- * @brief 
+ * @brief profiling tool for gnunet-consensus
  * @author Florian Dold
  */
 #include "platform.h"
+#include "gnunet_common.h"
 #include "gnunet_util_lib.h"
 #include "gnunet_consensus_service.h"
+#include "gnunet_testbed_service.h"
 
+static unsigned int num_peers = 2;
 
+static unsigned int replication = 1;
+
+static unsigned int num_values = 5;
+
+static struct GNUNET_TIME_Relative conclude_timeout;
+
+static struct GNUNET_CONSENSUS_Handle **consensus_handles;
+
+static struct GNUNET_TESTBED_Operation **testbed_operations;
+
+static unsigned int num_connected_handles;
+
+static struct GNUNET_TESTBED_Peer **peers;
+
+static struct GNUNET_PeerIdentity *peer_ids;
+
+static unsigned int num_retrieved_peer_ids;
+
+static struct GNUNET_HashCode session_id;
+
+static unsigned int peers_done = 0;
 
 
 /**
- * Called when a new element was received from another peer, or an error occured.
+ * Signature of the event handler function called by the
+ * respective event controller.
  *
- * May deliver duplicate values.
+ * @param cls closure
+ * @param event information about the event
+ */
+static void
+controller_cb(void *cls,
+              const struct GNUNET_TESTBED_EventInformation *event)
+{
+  GNUNET_assert (0);
+}
+
+static void
+destroy (void *cls, const struct GNUNET_SCHEDULER_TaskContext *ctx)
+{
+  struct GNUNET_CONSENSUS_Handle *consensus;
+  consensus = cls;
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "destroying consensus\n");
+  GNUNET_CONSENSUS_destroy (consensus);
+  peers_done++;
+  if (peers_done == num_peers)
+  {
+    int i;
+    for (i = 0; i < num_peers; i++)
+      GNUNET_TESTBED_operation_done (testbed_operations[i]);
+    GNUNET_SCHEDULER_shutdown ();
+  }
+}
+
+
+/**
+ * Called when a conclusion was successful.
  *
- * Elements given to a consensus operation by the local peer are NOT given
- * to this callback.
+ * @param cls closure, the consensus handle
+ * @return GNUNET_YES if more consensus groups should be offered, GNUNET_NO if not
+ */
+static void
+conclude_cb (void *cls)
+{
+  GNUNET_SCHEDULER_add_now (destroy, cls);
+}
+
+
+static void
+generate_indices (int *indices)
+{
+  int j;
+  j = 0;
+  while (j < replication)
+  {
+    int n;
+    int k;
+    int repeat;
+    n = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
+    repeat = GNUNET_NO;
+    for (k = 0; k < j; k++)
+      if (indices[k] == n)
+      {
+        repeat = GNUNET_YES;
+        break;
+      }
+    if (GNUNET_NO == repeat)
+      indices[j++] = n;
+  }
+}
+
+
+static void
+do_consensus ()
+{
+  int unique_indices[replication];
+  int i;
+
+  for (i = 0; i < num_values; i++)
+  {
+    int j;
+    struct GNUNET_HashCode *val;
+    struct GNUNET_CONSENSUS_Element *element;
+    generate_indices(unique_indices);
+
+    val = GNUNET_malloc (sizeof *val);
+    GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK, val);
+
+    element = GNUNET_malloc (sizeof *element);
+    element->data = val;
+    element->size = sizeof *val;
+
+    for (j = 0; j < replication; j++)
+    {
+      int cid;
+      cid = unique_indices[j];
+      GNUNET_CONSENSUS_insert (consensus_handles[cid], element, NULL, NULL);
+    }
+  }
+
+  for (i = 0; i < num_peers; i++)
+    GNUNET_CONSENSUS_conclude (consensus_handles[i], conclude_timeout, conclude_cb, consensus_handles[i]);
+}
+
+
+/**
+ * Callback to be called when a service connect operation is completed
+ *
+ * @param cls the callback closure from functions generating an operation
+ * @param op the operation that has been finished
+ * @param ca_result the service handle returned from GNUNET_TESTBED_ConnectAdapter()
+ * @param emsg error message in case the operation has failed; will be NULL if
+ *          operation has executed successfully.
+ */
+static void
+connect_complete (void *cls,
+                  struct GNUNET_TESTBED_Operation *op,
+                  void *ca_result,
+                  const char *emsg)
+{
+  struct GNUNET_CONSENSUS_Handle **chp;
+
+  if (NULL != emsg)
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "testbed connect emsg: %s\n", emsg);
+    GNUNET_assert (0);
+  }
+
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "connect complete\n");
+
+  chp = (struct GNUNET_CONSENSUS_Handle **) cls;
+  *chp = (struct GNUNET_CONSENSUS_Handle *) ca_result;
+  num_connected_handles++;
+
+  if (num_connected_handles == num_peers)
+  {
+    do_consensus ();
+  }
+}
+
+
+static void
+new_element_cb (void *cls,
+                const struct GNUNET_CONSENSUS_Element *element)
+{
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "received new element\n");
+}
+
+
+/**
+ * Adapter function called to establish a connection to
+ * a service.
  *
  * @param cls closure
- * @param element new element, NULL on error
- * @return GNUNET_OK if the valid is well-formed and should be added to the consensus,
- *         GNUNET_SYSERR if the element should be ignored and not be propagated
+ * @param cfg configuration of the peer to connect to; will be available until
+ *          GNUNET_TESTBED_operation_done() is called on the operation returned
+ *          from GNUNET_TESTBED_service_connect()
+ * @return service handle to return in 'op_result', NULL on error
  */
-static int
-cb (void *cls,
-    struct GNUNET_CONSENSUS_Element *element)
+static void *
+connect_adapter (void *cls,
+                 const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
-  return 0;
+  struct GNUNET_CONSENSUS_Handle *consensus;
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "connect adapter, %d peers\n", num_peers);
+  consensus = GNUNET_CONSENSUS_create (cfg, num_peers, peer_ids, &session_id, new_element_cb, NULL);
+  GNUNET_assert (NULL != consensus);
+  return consensus;
+}
+
+
+/**
+ * Adapter function called to destroy a connection to
+ * a service.
+ *
+ * @param cls closure
+ * @param op_result service handle returned from the connect adapter
+ */
+static void
+disconnect_adapter(void *cls, void *op_result)
+{
+  /* FIXME: what to do here? */
+}
+
+
+/**
+ * Callback to be called when the requested peer information is available
+ *
+ * @param cb_cls the closure from GNUNET_TETSBED_peer_get_information()
+ * @param op the operation this callback corresponds to
+ * @param pinfo the result; will be NULL if the operation has failed
+ * @param emsg error message if the operation has failed; will be NULL if the
+ *          operation is successfull
+ */
+static void
+peer_info_cb (void *cb_cls,
+              struct GNUNET_TESTBED_Operation *op,
+              const struct GNUNET_TESTBED_PeerInformation *pinfo,
+              const char *emsg)
+{
+  struct GNUNET_PeerIdentity *p;
+  int i;
+
+  GNUNET_assert (NULL == emsg);
+
+  p = (struct GNUNET_PeerIdentity *) cb_cls;
+
+  if (pinfo->pit == GNUNET_TESTBED_PIT_IDENTITY)
+  {
+    *p = *pinfo->result.id;
+    num_retrieved_peer_ids++;
+    if (num_retrieved_peer_ids == num_peers)
+      for (i = 0; i < num_peers; i++)
+        testbed_operations[i] =
+            GNUNET_TESTBED_service_connect (NULL, peers[i], "consensus", connect_complete, &consensus_handles[i],
+                                            connect_adapter, disconnect_adapter, NULL);
+  }
+  else
+  {
+    GNUNET_assert (0);
+  }
 }
 
 
+/**
+ * Signature of a main function for a testcase.
+ *
+ * @param cls closure
+ * @param num_peers number of peers in 'peers'
+ * @param started_peers handle to peers run in the testbed.  NULL upon timeout (see
+ *          GNUNET_TESTBED_test_run()).
+ * @param links_succeeded the number of overlay link connection attempts that
+ *          succeeded
+ * @param links_failed the number of overlay link connection attempts that
+ *          failed
+ */
+static void
+test_master (void *cls,
+             unsigned int num_peers,
+             struct GNUNET_TESTBED_Peer **started_peers,
+             unsigned int links_succeeded,
+             unsigned int links_failed)
+{
+  int i;
+
+  GNUNET_log_setup ("gnunet-consensus", "INFO", NULL);
+
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "test master\n");
+
+
+  peers = started_peers;
+
+  peer_ids = GNUNET_malloc (num_peers * sizeof (struct GNUNET_PeerIdentity));
+
+  consensus_handles = GNUNET_malloc (num_peers * sizeof (struct ConsensusHandle *));
+  testbed_operations = GNUNET_malloc (num_peers * sizeof (struct ConsensusHandle *));
+
+  for (i = 0; i < num_peers; i++)
+    GNUNET_TESTBED_peer_get_information (peers[i],
+                                         GNUNET_TESTBED_PIT_IDENTITY,
+                                         peer_info_cb,
+                                         &peer_ids[i]);
+}
 
 static void
 run (void *cls, char *const *args, const char *cfgfile,
      const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
-  static struct GNUNET_PeerIdentity pid;
-  static struct GNUNET_HashCode sid;
-  
-  GNUNET_CONSENSUS_create (cfg,
-                          1, &pid,
-                          &sid,
-                          &cb, NULL);
-  
+  static char *session_str = "gnunet-consensus/test";
+
+  if (num_peers < replication)
+  {
+    fprintf (stderr, "k must be <=n\n");
+    return;
+  }
+
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "running gnunet-consensus\n");
+
+  GNUNET_CRYPTO_hash (session_str, strlen(session_str), &session_id);
+
+  (void) GNUNET_TESTBED_test_run ("gnunet-consensus",
+                                  cfgfile,
+                                  num_peers,
+                                  0,
+                                  controller_cb,
+                                  NULL,
+                                  test_master,
+                                  NULL);
 }
 
 
@@ -71,10 +346,24 @@ int
 main (int argc, char **argv)
 {
    static const struct GNUNET_GETOPT_CommandLineOption options[] = {
-        GNUNET_GETOPT_OPTION_END
-   };
-  GNUNET_PROGRAM_run (argc, argv, "gnunet-consensus",
+      { 'n', "num-peers", NULL,
+        gettext_noop ("number of peers in consensus"),
+        GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_peers },
+      { 'k', "value-replication", NULL,
+        gettext_noop ("how many peers receive one value?"),
+        GNUNET_YES, &GNUNET_GETOPT_set_uint, &replication },
+      { 'x', "num-values", NULL,
+        gettext_noop ("number of values"),
+        GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_values },
+      { 't', "timeout", NULL,
+        gettext_noop ("consensus timeout"),
+        GNUNET_YES, &GNUNET_GETOPT_set_relative_time, &conclude_timeout },
+      GNUNET_GETOPT_OPTION_END
+  };
+  conclude_timeout = GNUNET_TIME_UNIT_SECONDS;
+  GNUNET_PROGRAM_run2 (argc, argv, "gnunet-consensus",
                      "help",
-                     options, &run, NULL);
+                     options, &run, NULL, GNUNET_YES);
   return 0;
 }
+