-do not run tests if disabled
[oweals/gnunet.git] / src / set / gnunet-set-profiler.c
1 /*
2       This file is part of GNUnet
3       (C) 2013 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 3, 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 set/gnunet-set-profiler.c
23  * @brief profiling tool for set
24  * @author Florian Dold
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_set_service.h"
29 #include "gnunet_testbed_service.h"
30
31
32 static int ret;
33
34 static unsigned int num_a = 5;
35 static unsigned int num_b = 5;
36 static unsigned int num_c = 20;
37
38 static char *op_str = "union";
39
40 const static struct GNUNET_CONFIGURATION_Handle *config;
41
42 struct SetInfo
43 {
44   char *id;
45   struct GNUNET_SET_Handle *set;
46   struct GNUNET_SET_OperationHandle *oh;
47   struct GNUNET_CONTAINER_MultiHashMap *sent;
48   struct GNUNET_CONTAINER_MultiHashMap *received;
49   int done;
50 } info1, info2;
51
52 static struct GNUNET_CONTAINER_MultiHashMap *common_sent;
53
54 static struct GNUNET_HashCode app_id;
55
56 static struct GNUNET_PeerIdentity local_peer;
57
58 static struct GNUNET_SET_ListenHandle *set_listener;
59
60
61 static int
62 map_remove_iterator (void *cls,
63                      const struct GNUNET_HashCode *key,
64                      void *value)
65 {
66   struct GNUNET_CONTAINER_MultiHashMap *m = cls;
67   int ret;
68
69   GNUNET_assert (NULL != key);
70
71   ret = GNUNET_CONTAINER_multihashmap_remove (m, key, NULL);
72   if (GNUNET_OK != ret)
73     printf ("spurious element\n");
74   return GNUNET_YES;
75
76 }
77
78
79 static void
80 check_all_done (void)
81 {
82   if (info1.done == GNUNET_NO || info2.done == GNUNET_NO)
83     return;
84
85   GNUNET_CONTAINER_multihashmap_iterate (info1.received, map_remove_iterator, info2.sent);
86   GNUNET_CONTAINER_multihashmap_iterate (info2.received, map_remove_iterator, info1.sent);
87
88   printf ("set a: %d missing elements\n", GNUNET_CONTAINER_multihashmap_size (info1.sent));
89   printf ("set b: %d missing elements\n", GNUNET_CONTAINER_multihashmap_size (info2.sent));
90
91   GNUNET_SCHEDULER_shutdown ();
92 }
93
94
95 static void
96 set_result_cb (void *cls,
97                  const struct GNUNET_SET_Element *element,
98                  enum GNUNET_SET_Status status)
99 {
100   struct SetInfo *info = cls;
101
102   GNUNET_assert (GNUNET_NO == info->done);
103   switch (status)
104   {
105     case GNUNET_SET_STATUS_DONE:
106     case GNUNET_SET_STATUS_HALF_DONE:
107       info->done = GNUNET_YES;
108       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "set %s done\n", info->id);
109       check_all_done ();
110       info->oh = NULL;
111       return;
112     case GNUNET_SET_STATUS_FAILURE:
113       info->oh = NULL;
114       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "failure\n");
115       GNUNET_SCHEDULER_shutdown ();
116       return;
117     case GNUNET_SET_STATUS_OK:
118       break;
119     default:
120       GNUNET_assert (0);
121   }
122
123   if (element->size != sizeof (struct GNUNET_HashCode))
124   {
125     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "wrong element size: %u\n", element->size);
126     GNUNET_assert (0);
127   }
128
129   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "set %s: got element (%s)\n",
130               info->id, GNUNET_h2s (element->data));
131   GNUNET_assert (NULL != element->data);
132   GNUNET_CONTAINER_multihashmap_put (info->received,
133                                      element->data, NULL,
134                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
135 }
136
137
138 static void
139 set_listen_cb (void *cls,
140                const struct GNUNET_PeerIdentity *other_peer,
141                const struct GNUNET_MessageHeader *context_msg,
142                struct GNUNET_SET_Request *request)
143 {
144   if (NULL == request)
145   {
146     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "listener failed\n");
147     return;
148   }
149   GNUNET_assert (NULL == info2.oh);
150   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "set listen cb called\n");
151   info2.oh = GNUNET_SET_accept (request, GNUNET_SET_RESULT_ADDED,
152                                set_result_cb, &info2);
153   GNUNET_SET_commit (info2.oh, info2.set);
154 }
155
156
157
158 static int
159 set_insert_iterator (void *cls,
160                      const struct GNUNET_HashCode *key,
161                      void *value)
162 {
163   struct GNUNET_SET_Handle *set = cls;
164   struct GNUNET_SET_Element *el;
165
166   el = GNUNET_malloc (sizeof *el + sizeof *key);
167   el->type = 0;
168   memcpy (&el[1], key, sizeof *key);
169   el->data = &el[1];
170   el->size = sizeof *key;
171   GNUNET_SET_add_element (set, el, NULL, NULL);
172   GNUNET_free (el);
173   return GNUNET_YES;
174 }
175
176
177 static void
178 handle_shutdown (void *cls,
179                  const struct GNUNET_SCHEDULER_TaskContext *tc)
180 {
181   if (NULL != set_listener)
182   {
183     GNUNET_SET_listen_cancel (set_listener);
184     set_listener = NULL;
185   }
186   if (NULL != info1.oh)
187   {
188     GNUNET_SET_operation_cancel (info1.oh);
189     info1.oh = NULL;
190   }
191   if (NULL != info2.oh)
192   {
193     GNUNET_SET_operation_cancel (info2.oh);
194     info2.oh = NULL;
195   }
196   if (NULL != info1.set)
197   {
198     GNUNET_SET_destroy (info1.set);
199     info1.set = NULL;
200   }
201   if (NULL != info2.set)
202   {
203     GNUNET_SET_destroy (info2.set);
204     info2.set = NULL;
205   }
206 }
207
208 static void
209 run (void *cls, char *const *args, const char *cfgfile,
210      const struct GNUNET_CONFIGURATION_Handle *cfg)
211 {
212   unsigned int i;
213   struct GNUNET_HashCode hash;
214
215   config = cfg;
216
217   if (GNUNET_OK != GNUNET_CRYPTO_get_peer_identity (cfg, &local_peer))
218   {
219     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "could not retrieve host identity\n");
220     ret = 0;
221     return;
222   }
223
224   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, handle_shutdown, NULL);
225
226   info1.id = "a";
227   info2.id = "b";
228
229   info1.sent = GNUNET_CONTAINER_multihashmap_create (num_a+1, GNUNET_NO);
230   info2.sent = GNUNET_CONTAINER_multihashmap_create (num_b+1, GNUNET_NO);
231   common_sent = GNUNET_CONTAINER_multihashmap_create (num_c+1, GNUNET_NO);
232
233   info1.received = GNUNET_CONTAINER_multihashmap_create (num_a+1, GNUNET_NO);
234   info2.received = GNUNET_CONTAINER_multihashmap_create (num_b+1, GNUNET_NO);
235
236   for (i = 0; i < num_a; i++)
237   {
238     GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_STRONG, &hash);
239     GNUNET_CONTAINER_multihashmap_put (info1.sent, &hash, NULL,
240                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
241   }
242
243   for (i = 0; i < num_b; i++)
244   {
245     GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_STRONG, &hash);
246     GNUNET_CONTAINER_multihashmap_put (info2.sent, &hash, NULL,
247                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
248   }
249
250   for (i = 0; i < num_c; i++)
251   {
252     GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_STRONG, &hash);
253     GNUNET_CONTAINER_multihashmap_put (common_sent, &hash, NULL,
254                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
255   }
256
257   /* use last hash for app id */
258   app_id = hash;
259
260   /* FIXME: also implement intersection etc. */
261   info1.set = GNUNET_SET_create (config, GNUNET_SET_OPERATION_UNION);
262   info2.set = GNUNET_SET_create (config, GNUNET_SET_OPERATION_UNION);
263
264   GNUNET_CONTAINER_multihashmap_iterate (info1.sent, set_insert_iterator, info1.set);
265   GNUNET_CONTAINER_multihashmap_iterate (info2.sent, set_insert_iterator, info2.set);
266   GNUNET_CONTAINER_multihashmap_iterate (common_sent, set_insert_iterator, info1.set);
267   GNUNET_CONTAINER_multihashmap_iterate (common_sent, set_insert_iterator, info2.set);
268
269   set_listener = GNUNET_SET_listen (config, GNUNET_SET_OPERATION_UNION,
270                                     &app_id, set_listen_cb, NULL);
271
272   info1.oh = GNUNET_SET_prepare (&local_peer, &app_id, NULL,
273                                  GNUNET_SET_RESULT_ADDED,
274                                  set_result_cb, &info1);
275   GNUNET_SET_commit (info1.oh, info1.set);
276   GNUNET_SET_destroy (info1.set);
277   info1.set = NULL;
278 }
279
280
281 int
282 main (int argc, char **argv)
283 {
284    static const struct GNUNET_GETOPT_CommandLineOption options[] = {
285       { 'A', "num-first", NULL,
286         gettext_noop ("number of values"),
287         GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_a },
288       { 'B', "num-second", NULL,
289         gettext_noop ("number of values"),
290         GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_b },
291       { 'C', "num-common", NULL,
292         gettext_noop ("number of values"),
293         GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_c },
294       { 'x', "operation", NULL,
295         gettext_noop ("oeration to execute"),
296         GNUNET_YES, &GNUNET_GETOPT_set_string, &op_str },
297       GNUNET_GETOPT_OPTION_END
298   };
299   GNUNET_PROGRAM_run (argc, argv, "gnunet-set-profiler",
300                       "help",
301                       options, &run, NULL);
302   return ret;
303 }
304