regex profiler
[oweals/gnunet.git] / src / mesh / gnunet-regex-profiler.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011, 2012 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 regex/gnunet-regex-profiler.c
23  * @brief Regex profiler for testing distributed regex use.
24  * @author Bart Polot
25  * @author Max Szengel
26  */
27
28 #include <string.h>
29
30 #include "platform.h"
31 #include "gnunet_applications.h"
32 #include "gnunet_util_lib.h"
33 #include "gnunet_mesh_service.h"
34 #include "gnunet_stream_lib.h"
35 #include "gnunet_testbed_service.h"
36
37 /**
38  * DLL of operations
39  */
40 struct DLLOperation
41 {
42   /**
43    * The testbed operation handle
44    */
45   struct GNUNET_TESTBED_Operation *op;
46
47   /**
48    * Closure
49    */
50   void *cls;
51
52   /**
53    * The next pointer for DLL
54    */
55   struct DLLOperation *next;
56
57   /**
58    * The prev pointer for DLL
59    */
60   struct DLLOperation *prev;
61 };
62
63
64 /**
65  * Available states during profiling
66  */
67 enum State
68 {
69   /**
70    * Initial state
71    */
72   STATE_INIT = 0,
73
74   /**
75    * Starting slaves
76    */
77   STATE_SLAVES_STARTING,
78
79   /**
80    * Creating peers
81    */
82   STATE_PEERS_CREATING,
83
84   /**
85    * Starting peers
86    */
87   STATE_PEERS_STARTING,
88
89   /**
90    * Linking peers
91    */
92   STATE_PEERS_LINKING,
93
94   /**
95    * Destroying peers; we can do this as the controller takes care of stopping a
96    * peer if it is running
97    */
98   STATE_PEERS_DESTROYING
99 };
100
101
102 /**
103  * An array of hosts loaded from the hostkeys file
104  */
105 static struct GNUNET_TESTBED_Host **hosts;
106
107 /**
108  * Peer handles.
109  */
110 struct Peer
111 {
112   /**
113    * The actual testbed peer handle.
114    */
115   struct GNUNET_TESTBED_Peer *peer_handle;
116
117   /**
118    * Peer's mesh handle.
119    */
120   struct GNUNET_MESH_Handle *mesh_handle;
121
122   /**
123    * Host on which the peer is running.
124    */
125   struct GNUNET_TESTBED_Host *host_handle;
126
127   /**
128    * Testbed operation handle.
129    */
130   struct GNUNET_TESTBED_Operation *op_handle;
131 };
132
133 /**
134  * Array of peer handles used to pass to
135  * GNUNET_TESTBED_overlay_configure_topology
136  */
137 struct GNUNET_TESTBED_Peer **peer_handles;
138
139 /**
140  * The array of peers; we fill this as the peers are given to us by the testbed
141  */
142 static struct Peer *peers;
143
144 /**
145  * Host registration handle
146  */
147 static struct GNUNET_TESTBED_HostRegistrationHandle *reg_handle;
148
149 /**
150  * Handle to the master controller process
151  */
152 struct GNUNET_TESTBED_ControllerProc *mc_proc;
153
154 /**
155  * Handle to the master controller
156  */
157 struct GNUNET_TESTBED_Controller *mc;
158
159 /**
160  * Handle to global configuration
161  */
162 struct GNUNET_CONFIGURATION_Handle *cfg;
163
164 /**
165  * Head of the operations list
166  */
167 struct DLLOperation *dll_op_head;
168
169 /**
170  * Tail of the operations list
171  */
172 struct DLLOperation *dll_op_tail;
173
174 /**
175  * Peer linking - topology operation
176  */
177 struct GNUNET_TESTBED_Operation *topology_op;
178
179 /**
180  * Abort task identifier
181  */
182 static GNUNET_SCHEDULER_TaskIdentifier abort_task;
183
184 /**
185  * Host registration task identifier
186  */
187 static GNUNET_SCHEDULER_TaskIdentifier register_hosts_task;
188
189 /**
190  * Global event mask for all testbed events
191  */
192 uint64_t event_mask;
193
194 /**
195  * The starting time of a profiling step
196  */
197 struct GNUNET_TIME_Absolute prof_start_time;
198
199 /**
200  * Duration profiling step has taken
201  */
202 struct GNUNET_TIME_Relative prof_time;
203
204 /**
205  * Current peer id
206  */
207 unsigned int peer_id;
208
209 /**
210  * Number of peers to be started by the profiler
211  */
212 static unsigned int num_peers;
213
214 /**
215  * Number of hosts in the hosts array
216  */
217 static unsigned int num_hosts;
218
219 /**
220  * Number of random links to be established between peers
221  */
222 static unsigned int num_links;
223
224 /**
225  * Global testing status
226  */
227 static int result;
228
229 /**
230  * current state of profiling
231  */
232 enum State state;
233
234
235 /**
236  * Shutdown nicely
237  *
238  * @param cls NULL
239  * @param tc the task context
240  */
241 static void
242 do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
243 {
244   struct DLLOperation *dll_op;
245   unsigned int nhost;
246
247   if (GNUNET_SCHEDULER_NO_TASK != abort_task)
248     GNUNET_SCHEDULER_cancel (abort_task);
249   if (GNUNET_SCHEDULER_NO_TASK != register_hosts_task)
250     GNUNET_SCHEDULER_cancel (register_hosts_task);
251   if (NULL != reg_handle)
252     GNUNET_TESTBED_cancel_registration (reg_handle);
253   if (NULL != topology_op)
254     GNUNET_TESTBED_operation_cancel (topology_op);
255   for (nhost = 0; nhost < num_hosts; nhost++)
256     if (NULL != hosts[nhost])
257       GNUNET_TESTBED_host_destroy (hosts[nhost]);
258   GNUNET_free_non_null (hosts);
259   while (NULL != (dll_op = dll_op_head))
260   {
261     GNUNET_TESTBED_operation_cancel (dll_op->op);
262     GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
263     GNUNET_free (dll_op);
264   }
265   if (NULL != mc)
266     GNUNET_TESTBED_controller_disconnect (mc);
267   if (NULL != mc_proc)
268     GNUNET_TESTBED_controller_stop (mc_proc);
269   if (NULL != cfg)
270     GNUNET_CONFIGURATION_destroy (cfg);
271
272   //FIXME       GNUNET_MESH_disconnect (peers[i].mesh_handle);
273
274   GNUNET_SCHEDULER_shutdown (); /* Stop scheduler to shutdown testbed run */
275 }
276
277
278 /**
279  * abort task to run on test timed out
280  *
281  * @param cls NULL
282  * @param tc the task context
283  */
284 static void
285 do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
286 {
287   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Aborting\n");
288   abort_task = GNUNET_SCHEDULER_NO_TASK;
289   result = GNUNET_SYSERR;
290   GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
291 }
292
293
294 /**
295  * Method called whenever another peer has added us to a tunnel
296  * the other peer initiated.
297  * Only called (once) upon reception of data with a message type which was
298  * subscribed to in GNUNET_MESH_connect. A call to GNUNET_MESH_tunnel_destroy
299  * causes te tunnel to be ignored and no further notifications are sent about
300  * the same tunnel.
301  *
302  * @param cls closure
303  * @param tunnel new handle to the tunnel
304  * @param initiator peer that started the tunnel
305  * @param atsi performance information for the tunnel
306  * @return initial tunnel context for the tunnel
307  *         (can be NULL -- that's not an error)
308  */
309 void *
310 mesh_inbound_tunnel_handler (void *cls, struct GNUNET_MESH_Tunnel *tunnel,
311                              const struct GNUNET_PeerIdentity *initiator,
312                              const struct GNUNET_ATS_Information *atsi)
313 {
314   return NULL;
315 }
316
317
318 /**
319  * Function called whenever an inbound tunnel is destroyed.  Should clean up
320  * any associated state.  This function is NOT called if the client has
321  * explicitly asked for the tunnel to be destroyed using
322  * GNUNET_MESH_tunnel_destroy. It must NOT call GNUNET_MESH_tunnel_destroy on
323  * the tunnel.
324  *
325  * @param cls closure (set from GNUNET_MESH_connect)
326  * @param tunnel connection to the other end (henceforth invalid)
327  * @param tunnel_ctx place where local state associated
328  *                   with the tunnel is stored
329  */
330 void
331 mesh_tunnel_end_handler (void *cls, const struct GNUNET_MESH_Tunnel *tunnel,
332                          void *tunnel_ctx)
333 {
334
335 }
336
337
338 /**
339  * Mesh connect callback.
340  *
341  * @param cls internal peer id.
342  * @param op operation handle.
343  * @param ca_result connect adapter result.
344  * @param emsg error message.
345  */
346 void
347 mesh_connect_cb (void *cls, struct GNUNET_TESTBED_Operation *op,
348                  void *ca_result, const char *emsg)
349 {
350   struct Peer *peer = (struct Peer *) cls;
351
352   if (NULL != emsg)
353   {
354     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Mesh connect failed: %s\n", emsg);
355     GNUNET_assert (0);
356   }
357
358   GNUNET_assert (peer->op_handle == op);
359   GNUNET_assert (peer->mesh_handle == ca_result);
360
361   GNUNET_TESTBED_operation_done (op);
362
363   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "mesh connect callback for peer\n");
364
365   //GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
366 }
367
368
369 /**
370  * Mesh connect adapter.
371  *
372  * @param cls not used.
373  * @param cfg configuration handle.
374  *
375  * @return
376  */
377 void *
378 mesh_ca (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
379 {
380
381   struct Peer *peer = (struct Peer *) cls;
382
383   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "mesh connect adapter\n");
384
385   static struct GNUNET_MESH_MessageHandler handlers[] = {
386     {NULL, 0, 0}
387   };
388
389   static GNUNET_MESH_ApplicationType apptypes[] = {
390     GNUNET_APPLICATION_TYPE_END
391   };
392
393   peer->mesh_handle =
394       GNUNET_MESH_connect (cfg, cls, &mesh_inbound_tunnel_handler,
395                            &mesh_tunnel_end_handler, handlers, apptypes);
396
397   return peer->mesh_handle;
398 }
399
400
401 /**
402  * Adapter function called to destroy a connection to
403  * the mesh service
404  *
405  * @param cls closure
406  * @param op_result service handle returned from the connect adapter
407  */
408 void
409 mesh_da (void *cls, void *op_result)
410 {
411   struct Peer *peer = (struct Peer *) cls;
412
413   GNUNET_assert (peer->mesh_handle == op_result);
414
415   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "mesh disconnect adapter\n");
416 }
417
418
419 /**
420  * Functions of this signature are called when a peer has been successfully
421  * started or stopped.
422  *
423  * @param cls the closure from GNUNET_TESTBED_peer_start/stop()
424  * @param emsg NULL on success; otherwise an error description
425  */
426 static void
427 peer_churn_cb (void *cls, const char *emsg)
428 {
429   struct DLLOperation *dll_op = cls;
430   struct GNUNET_TESTBED_Operation *op;
431   static unsigned int started_peers;
432   unsigned int peer_cnt;
433
434   op = dll_op->op;
435   GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
436   GNUNET_free (dll_op);
437   if (NULL != emsg)
438   {
439     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
440          _("An operation has failed while starting peers\n"));
441     GNUNET_TESTBED_operation_done (op);
442     GNUNET_SCHEDULER_cancel (abort_task);
443     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
444     return;
445   }
446   GNUNET_TESTBED_operation_done (op);
447   if (++started_peers == num_peers)
448   {
449     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
450     printf ("All peers started successfully in %.2f seconds\n",
451             ((double) prof_time.rel_value) / 1000.00);
452     result = GNUNET_OK;
453     if (0 == num_links)
454     {
455       GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
456       return;
457     }
458
459     peer_handles = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Peer *) * num_peers);
460     for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
461       peer_handles[peer_cnt] = peers[peer_cnt].peer_handle;
462
463     state = STATE_PEERS_LINKING;
464     /* Do overlay connect */
465     prof_start_time = GNUNET_TIME_absolute_get ();
466     topology_op =
467         GNUNET_TESTBED_overlay_configure_topology (NULL, num_peers, peer_handles,
468                                                    GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI,
469                                                    num_links);
470     if (NULL == topology_op)
471     {
472       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
473                   "Cannot create topology, op handle was NULL\n");
474       GNUNET_assert (0);
475     }
476   }
477 }
478
479
480 /**
481  * Functions of this signature are called when a peer has been successfully
482  * created
483  *
484  * @param cls the closure from GNUNET_TESTBED_peer_create()
485  * @param peer the handle for the created peer; NULL on any error during
486  *          creation
487  * @param emsg NULL if peer is not NULL; else MAY contain the error description
488  */
489 static void
490 peer_create_cb (void *cls, struct GNUNET_TESTBED_Peer *peer, const char *emsg)
491 {
492   struct DLLOperation *dll_op = cls;
493   struct Peer *peer_ptr;
494   static unsigned int created_peers;
495   unsigned int peer_cnt;
496
497   if (NULL != emsg)
498   {
499     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
500          _("Creating a peer failed. Error: %s\n"), emsg);
501     GNUNET_TESTBED_operation_done (dll_op->op);
502     GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
503     GNUNET_free (dll_op);
504     GNUNET_SCHEDULER_cancel (abort_task);
505     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
506     return;
507   }
508
509   peer_ptr = dll_op->cls;
510   GNUNET_assert (NULL == peer_ptr->peer_handle);
511   peer_ptr->peer_handle = peer;
512   GNUNET_TESTBED_operation_done (dll_op->op);
513   GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
514   GNUNET_free (dll_op);
515
516   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %i created on host %s\n",
517               created_peers,
518               GNUNET_TESTBED_host_get_hostname (peer_ptr->host_handle));
519
520   if (++created_peers == num_peers)
521   {
522     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
523     printf ("All peers created successfully in %.2f seconds\n",
524             ((double) prof_time.rel_value) / 1000.00);
525     /* Now peers are to be started */
526     state = STATE_PEERS_STARTING;
527     prof_start_time = GNUNET_TIME_absolute_get ();
528     for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
529     {
530       dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
531       dll_op->op = GNUNET_TESTBED_peer_start (dll_op, peers[peer_cnt].peer_handle,
532                                               &peer_churn_cb, dll_op);
533       GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
534     }
535   }
536 }
537
538
539 /**
540  * Controller event callback
541  *
542  * @param cls NULL
543  * @param event the controller event
544  */
545 static void
546 controller_event_cb (void *cls,
547                      const struct GNUNET_TESTBED_EventInformation *event)
548 {
549   struct DLLOperation *dll_op;
550   struct GNUNET_TESTBED_Operation *op;
551
552   switch (state)
553   {
554   case STATE_SLAVES_STARTING:
555     switch (event->type)
556     {
557     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
558       {
559         static unsigned int slaves_started;
560         unsigned int peer_cnt;
561
562         dll_op = event->details.operation_finished.op_cls;
563         GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
564         GNUNET_free (dll_op);
565         op = event->details.operation_finished.operation;
566         if (NULL != event->details.operation_finished.emsg)
567         {
568           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
569                _("An operation has failed while starting slaves\n"));
570           GNUNET_TESTBED_operation_done (op);
571           GNUNET_SCHEDULER_cancel (abort_task);
572           abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
573           return;
574         }
575         GNUNET_TESTBED_operation_done (op);
576         /* Proceed to start peers */
577         if (++slaves_started == num_hosts - 1)
578         {
579           printf ("All slaves started successfully\n");
580           state = STATE_PEERS_CREATING;
581           prof_start_time = GNUNET_TIME_absolute_get ();
582           peers = GNUNET_malloc (sizeof (struct Peer) * num_peers);
583           for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
584           {
585             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating peer %i on host %s\n",
586                         peer_cnt,
587                         GNUNET_TESTBED_host_get_hostname (hosts[peer_cnt % num_hosts]));
588
589             peers[peer_cnt].host_handle = hosts[peer_cnt % num_hosts];
590
591             dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
592             dll_op->cls = &peers[peer_cnt];
593             dll_op->op = GNUNET_TESTBED_peer_create (mc,
594                                                      hosts[peer_cnt % num_hosts],
595                                                      cfg,
596                                                      &peer_create_cb,
597                                                      dll_op);
598             GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
599           }
600         }
601       }
602       break;
603     default:
604       GNUNET_assert (0);
605     }
606     break;
607   case STATE_PEERS_STARTING:
608     switch (event->type)
609     {
610     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
611       /* Control reaches here when peer start fails */
612     case GNUNET_TESTBED_ET_PEER_START:
613       /* we handle peer starts in peer_churn_cb */
614       break;
615     default:
616       GNUNET_assert (0);
617     }
618     break;
619   case STATE_PEERS_LINKING:
620    switch (event->type)
621     {
622     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
623       /* Control reaches here when a peer linking operation fails */
624       if (NULL != event->details.operation_finished.emsg)
625       {
626         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
627              _("An operation has failed while linking\n"));
628         GNUNET_SCHEDULER_cancel (abort_task);
629         abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
630       }
631       break;
632     case GNUNET_TESTBED_ET_CONNECT:
633       {
634         static unsigned int established_links;
635         unsigned int peer_cnt;
636
637         if (0 == established_links)
638           printf ("Establishing links\n .");
639         else
640         {
641           printf (".");
642           fflush (stdout);
643         }
644         if (++established_links == num_links)
645         {
646           prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
647           printf ("\n%u links established in %.2f seconds\n",
648                   num_links, ((double) prof_time.rel_value) / 1000.00);
649           result = GNUNET_OK;
650           GNUNET_free (peer_handles);
651           printf ("\nConnecting to mesh service...\n");
652           for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
653           {
654             peers[peer_cnt].op_handle = GNUNET_TESTBED_service_connect (NULL,
655                                                                         peers[peer_cnt].peer_handle,
656                                                                         "mesh",
657                                                                         &mesh_connect_cb,
658                                                                         &peers[peer_cnt],
659                                                                         &mesh_ca,
660                                                                         &mesh_da,
661                                                                         &peers[peer_cnt]);
662           }
663         }
664       }
665       break;
666     default:
667       GNUNET_assert (0);
668     }
669     break;
670   default:
671     GNUNET_assert (0);
672   }
673 }
674
675
676 /**
677  * Task to register all hosts available in the global host list
678  *
679  * @param cls NULL
680  * @param tc the scheduler task context
681  */
682 static void
683 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
684
685
686 /**
687  * Callback which will be called to after a host registration succeeded or failed
688  *
689  * @param cls the closure
690  * @param emsg the error message; NULL if host registration is successful
691  */
692 static void
693 host_registration_completion (void *cls, const char *emsg)
694 {
695   reg_handle = NULL;
696   if (NULL != emsg)
697   {
698     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
699                 _("Host registration failed for a host. Error: %s\n"), emsg);
700     GNUNET_SCHEDULER_cancel (abort_task);
701     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
702     return;
703   }
704   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
705 }
706
707
708 /**
709  * Task to register all hosts available in the global host list
710  *
711  * @param cls NULL
712  * @param tc the scheduler task context
713  */
714 static void
715 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
716 {
717   struct DLLOperation *dll_op;
718   static unsigned int reg_host;
719   unsigned int slave;
720
721   register_hosts_task = GNUNET_SCHEDULER_NO_TASK;
722   if (reg_host == num_hosts - 1)
723   {
724     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
725                 "All hosts successfully registered\n");
726     /* Start slaves */
727     state = STATE_SLAVES_STARTING;
728     for (slave = 1; slave < num_hosts; slave++)
729     {
730       dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
731       dll_op->op = GNUNET_TESTBED_controller_link (dll_op,
732                                                    mc,
733                                                    hosts[slave],
734                                                    hosts[0],
735                                                    cfg,
736                                                    GNUNET_YES);
737       GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
738     }
739     return;
740   }
741   reg_handle = GNUNET_TESTBED_register_host (mc, hosts[++reg_host],
742                                              host_registration_completion,
743                                              NULL);
744 }
745
746
747 /**
748  * Callback to signal successfull startup of the controller process
749  *
750  * @param cls the closure from GNUNET_TESTBED_controller_start()
751  * @param cfg the configuration with which the controller has been started;
752  *          NULL if status is not GNUNET_OK
753  * @param status GNUNET_OK if the startup is successfull; GNUNET_SYSERR if not,
754  *          GNUNET_TESTBED_controller_stop() shouldn't be called in this case
755  */
756 static void
757 status_cb (void *cls, const struct GNUNET_CONFIGURATION_Handle *config, int status)
758 {
759   GNUNET_SCHEDULER_cancel (abort_task);
760   if (GNUNET_OK != status)
761   {
762     mc_proc = NULL;
763     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
764     return;
765   }
766   event_mask = 0;
767   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_START);
768   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_STOP);
769   event_mask |= (1LL << GNUNET_TESTBED_ET_CONNECT);
770   event_mask |= (1LL << GNUNET_TESTBED_ET_DISCONNECT);
771   event_mask |= (1LL << GNUNET_TESTBED_ET_OPERATION_FINISHED);
772   mc = GNUNET_TESTBED_controller_connect (config, hosts[0], event_mask,
773                                           &controller_event_cb, NULL);
774   if (NULL == mc)
775   {
776     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
777                 _("Unable to connect to master controller -- Check config\n"));
778     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
779     return;
780   }
781   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
782   abort_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
783                                              &do_abort, NULL);
784 }
785
786
787 /**
788  * Main function that will be run by the scheduler.
789  *
790  * @param cls closure
791  * @param args remaining command-line arguments
792  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
793  * @param config configuration
794  */
795 static void
796 run (void *cls, char *const *args, const char *cfgfile,
797      const struct GNUNET_CONFIGURATION_Handle *config)
798 {
799   unsigned int nhost;
800
801   if (NULL == args[0])
802   {
803     fprintf (stderr, _("No hosts-file specified on command line\n"));
804     return;
805   }
806   if (0 == num_peers)
807   {
808     result = GNUNET_OK;
809     return;
810   }
811   num_hosts = GNUNET_TESTBED_hosts_load_from_file (args[0], &hosts);
812   if (0 == num_hosts)
813   {
814     fprintf (stderr, _("No hosts loaded. Need at least one host\n"));
815     return;
816   }
817   for (nhost = 0; nhost < num_hosts; nhost++)
818   {
819     if (GNUNET_YES != GNUNET_TESTBED_is_host_habitable (hosts[nhost]))
820     {
821       fprintf (stderr, _("Host %s cannot start testbed\n"),
822                          GNUNET_TESTBED_host_get_hostname (hosts[nhost]));
823       break;
824     }
825   }
826   if (num_hosts != nhost)
827   {
828     fprintf (stderr, _("Exiting\n"));
829     GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
830     return;
831   }
832   if (NULL == config)
833   {
834     fprintf (stderr, _("No configuration file given. Exiting\n"));
835     GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
836     return;
837   }
838
839   cfg = GNUNET_CONFIGURATION_dup (config);
840   mc_proc =
841       GNUNET_TESTBED_controller_start (GNUNET_TESTBED_host_get_hostname
842                                        (hosts[0]),
843                                        hosts[0],
844                                        cfg,
845                                        status_cb,
846                                        NULL);
847   abort_task =
848       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
849                                     (GNUNET_TIME_UNIT_SECONDS, 5), &do_abort,
850                                     NULL);
851 }
852
853
854 /**
855  * Main function.
856  *
857  * @return 0 on success
858  */
859 int
860 main (int argc, char *const *argv)
861 {
862   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
863     { 'p', "num-peers", "COUNT",
864       gettext_noop ("create COUNT number of peers"),
865       GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_peers },
866     { 'n', "num-links", "COUNT",
867       gettext_noop ("create COUNT number of random links"),
868       GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_links },
869     GNUNET_GETOPT_OPTION_END
870   };
871   int ret;
872
873   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
874     return 2;
875
876   result = GNUNET_SYSERR;
877   ret =
878       GNUNET_PROGRAM_run (argc, argv, "gnunet-regex-profiler [OPTIONS] hosts-file",
879                           _("Profiler for regex/mesh"),
880                           options, &run, NULL);
881   if (GNUNET_OK != ret)
882     return ret;
883   if (GNUNET_OK != result)
884     return 1;
885   return 0;
886 }