aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed_api_testbed.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-08-29 14:56:18 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-08-29 14:56:18 +0000
commitfa9f6519c54407e0750626bf440fe522e62cc683 (patch)
treef7412d6c1c2cdb07ffe6063deeeb6d80d934d470 /src/testbed/testbed_api_testbed.c
parent5adda020824f33ee1c5f27f3709c7311a6c3bcf1 (diff)
downloadgnunet-fa9f6519c54407e0750626bf440fe522e62cc683.tar.gz
gnunet-fa9f6519c54407e0750626bf440fe522e62cc683.zip
checkpoint save for testbed_run
Diffstat (limited to 'src/testbed/testbed_api_testbed.c')
-rw-r--r--src/testbed/testbed_api_testbed.c245
1 files changed, 231 insertions, 14 deletions
diff --git a/src/testbed/testbed_api_testbed.c b/src/testbed/testbed_api_testbed.c
index 6311806cc..fd0bbfaa8 100644
--- a/src/testbed/testbed_api_testbed.c
+++ b/src/testbed/testbed_api_testbed.c
@@ -22,10 +22,16 @@
22 * @file testbed/testbed_api_testbed.c 22 * @file testbed/testbed_api_testbed.c
23 * @brief high-level testbed management 23 * @brief high-level testbed management
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 * @author Sree Harsha Totakura
25 */ 26 */
26#include "platform.h" 27#include "platform.h"
27#include "gnunet_testbed_service.h" 28#include "gnunet_testbed_service.h"
28 29
30/**
31 * Generic loggins shorthand
32 */
33#define LOG(kind,...) \
34 GNUNET_log_from (kind, "testbed-api", __VA_ARGS__)
29 35
30/** 36/**
31 * Opaque handle to an abstract operation to be executed by the testing framework. 37 * Opaque handle to an abstract operation to be executed by the testing framework.
@@ -37,6 +43,130 @@ struct GNUNET_TESTBED_Testbed
37 43
38 44
39/** 45/**
46 * DLL of operations
47 */
48struct DLLOperation
49{
50 /**
51 * The testbed operation handle
52 */
53 struct GNUNET_TESTBED_Operation *op;
54
55 /**
56 * Context information for GNUNET_TESTBED_run()
57 */
58 struct RunContext *rc;
59
60 /**
61 * The next pointer for DLL
62 */
63 struct DLLOperation *next;
64
65 /**
66 * The prev pointer for DLL
67 */
68 struct DLLOperation *prev;
69};
70
71
72/**
73 * DLL of peers
74 */
75struct DLLPeer
76{
77 /**
78 * Handle to testbed peer
79 */
80 struct GNUNET_TESTBED_Peer *peer;
81
82 /**
83 * The next pointer for DLL
84 */
85 struct DLLPeer *next;
86
87 /**
88 * The pre pointer for DLL
89 */
90 struct DLLPeer *prev;
91};
92
93
94/**
95 * Context information for GNUNET_TESTBED_run()
96 */
97struct RunContext
98{
99 /**
100 * The controller handle
101 */
102 struct GNUNET_TESTBED_Controller *c;
103
104 /**
105 * Handle to the host on which the controller runs
106 */
107 struct GNUNET_TESTBED_Host *h;
108
109 /**
110 * The handle to the controller process
111 */
112 struct GNUNET_TESTBED_ControllerProc *cproc;
113
114 /**
115 * The callback to use as controller callback
116 */
117 GNUNET_TESTBED_ControllerCallback cc;
118
119 /**
120 * The pointer to the controller callback
121 */
122 void *cc_cls;
123
124 /**
125 * Master task to call when testbed initialization is done
126 */
127 GNUNET_SCHEDULER_Task master;
128
129 /**
130 * The closure for the master task
131 */
132 void *master_cls;
133
134 /**
135 * The head element of DLL operations
136 */
137 struct DLLOperation *dll_op_head;
138
139 /**
140 * The tail element of DLL operations
141 */
142 struct DLLOperation *dll_op_tail;
143
144 /**
145 * The head element of DLL peers
146 */
147 struct DLLPeer *dll_peer_head;
148
149 /**
150 * The tail element of DLL peers
151 */
152 struct DLLPeer *dll_peer_tail;
153
154 /**
155 * The event mask for the controller
156 */
157 uint64_t event_mask;
158
159 /**
160 * number of peers to start
161 */
162 unsigned int num_peers;
163
164};
165
166
167
168
169/**
40 * Configure and run a testbed using the given 170 * Configure and run a testbed using the given
41 * master controller on 'num_hosts' starting 171 * master controller on 'num_hosts' starting
42 * 'num_peers' using the given peer configuration. 172 * 'num_peers' using the given peer configuration.
@@ -85,12 +215,12 @@ GNUNET_TESTBED_create_va (struct GNUNET_TESTBED_Controller *controller,
85 */ 215 */
86struct GNUNET_TESTBED_Testbed * 216struct GNUNET_TESTBED_Testbed *
87GNUNET_TESTBED_create (struct GNUNET_TESTBED_Controller *controller, 217GNUNET_TESTBED_create (struct GNUNET_TESTBED_Controller *controller,
88 unsigned int num_hosts, 218 unsigned int num_hosts,
89 struct GNUNET_TESTBED_Host **hosts, 219 struct GNUNET_TESTBED_Host **hosts,
90 unsigned int num_peers, 220 unsigned int num_peers,
91 const struct GNUNET_CONFIGURATION_Handle *peer_cfg, 221 const struct GNUNET_CONFIGURATION_Handle *peer_cfg,
92 enum GNUNET_TESTBED_TopologyOption underlay_topology, 222 enum GNUNET_TESTBED_TopologyOption underlay_topology,
93 ...) 223 ...)
94{ 224{
95 GNUNET_break (0); 225 GNUNET_break (0);
96 return NULL; 226 return NULL;
@@ -110,6 +240,77 @@ GNUNET_TESTBED_destroy (struct GNUNET_TESTBED_Testbed *testbed)
110} 240}
111 241
112 242
243/**
244 * Functions of this signature are called when a peer has been successfully
245 * created
246 *
247 * @param cls the closure from GNUNET_TESTBED_peer_create()
248 * @param peer the handle for the created peer; NULL on any error during
249 * creation
250 * @param emsg NULL if peer is not NULL; else MAY contain the error description
251 */
252static void
253peer_create_cb (void *cls, struct GNUNET_TESTBED_Peer *peer, const char *emsg)
254{
255 struct DLLOperation *dll_op = cls;
256 struct RunContext *rc;
257 struct DLLPeer *dll_peer;
258
259 GNUNET_assert (NULL != dll_op);
260 rc = dll_op->rc;
261 GNUNET_assert (NULL != rc);
262 GNUNET_CONTAINER_DLL_remove (rc->dll_op_head, rc->dll_op_tail, dll_op);
263 GNUNET_TESTBED_operation_done (dll_op->op);
264 GNUNET_free (dll_op);
265 if (NULL == peer)
266 {
267 if (NULL != emsg)
268 LOG (GNUNET_ERROR_TYPE_WARNING, "Error while creating a peer: %s\n", emsg);
269 return;
270 }
271 dll_peer = GNUNET_malloc (sizeof (struct DLLPeer));
272 dll_peer->peer = peer;
273 GNUNET_CONTAINER_DLL_insert_tail (rc->dll_peer_head, rc->dll_peer_tail,
274 dll_peer);
275}
276
277
278
279/**
280 * Callback to signal successfull startup of the controller process
281 *
282 * @param cls the closure from GNUNET_TESTBED_controller_start()
283 * @param cfg the configuration with which the controller has been started;
284 * NULL if status is not GNUNET_OK
285 * @param status GNUNET_OK if the startup is successfull; GNUNET_SYSERR if not,
286 * GNUNET_TESTBED_controller_stop() shouldn't be called in this case
287 */
288static void
289controller_status_cb (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg,
290 int status)
291{
292 struct RunContext *rc = cls;
293 struct DLLOperation *dll_op;
294 unsigned int peer;
295
296 if (status != GNUNET_OK)
297 {
298 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Testbed startup failed\n");
299 return;
300 }
301 rc->c = GNUNET_TESTBED_controller_connect (cfg, rc->h, rc->event_mask, rc->cc,
302 rc->cc_cls);
303 GNUNET_assert (NULL != rc->c);
304 for (peer = 0; peer < rc->num_peers; peer++)
305 {
306 dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
307 dll_op->rc = rc;
308 dll_op->op = GNUNET_TESTBED_peer_create (rc->c, rc->h, cfg, peer_create_cb,
309 dll_op);
310 GNUNET_CONTAINER_DLL_insert_tail (rc->dll_op_head, rc->dll_op_tail, dll_op);
311 }
312}
313
113 314
114/** 315/**
115 * Convenience method for running a testbed with 316 * Convenience method for running a testbed with
@@ -137,15 +338,31 @@ GNUNET_TESTBED_destroy (struct GNUNET_TESTBED_Testbed *testbed)
137 */ 338 */
138void 339void
139GNUNET_TESTBED_run (const char *host_filename, 340GNUNET_TESTBED_run (const char *host_filename,
140 const struct GNUNET_CONFIGURATION_Handle *cfg, 341 const struct GNUNET_CONFIGURATION_Handle *cfg,
141 unsigned int num_peers, 342 unsigned int num_peers,
142 uint64_t event_mask, 343 uint64_t event_mask,
143 GNUNET_TESTBED_ControllerCallback cc, 344 GNUNET_TESTBED_ControllerCallback cc,
144 void *cc_cls, 345 void *cc_cls,
145 GNUNET_SCHEDULER_Task master, 346 GNUNET_SCHEDULER_Task master,
146 void *master_cls) 347 void *master_cls)
147{ 348{
148 GNUNET_break (0); 349 struct RunContext *rc;
350
351 rc = GNUNET_malloc (sizeof (struct RunContext));
352 GNUNET_break (NULL != host_filename); /* Currently we do not support host
353 files */
354 host_filename = NULL;
355 rc->h = GNUNET_TESTBED_host_create (NULL, NULL, 0);
356 GNUNET_assert (NULL != rc->h);
357 rc->cproc = GNUNET_TESTBED_controller_start ("127.0.0.1", rc->h, cfg,
358 &controller_status_cb, rc);
359 GNUNET_assert (NULL != rc->cproc);
360 rc->num_peers = num_peers;
361 rc->event_mask = event_mask;
362 rc->cc = cc;
363 rc->cc_cls = cc_cls;
364 rc->master = master;
365 rc->master_cls = master_cls;
149} 366}
150 367
151 368