139448d91d08312fdafa0f7469843c094ff707e9
[oweals/gnunet.git] / src / testbed / testbed_api_operations.c
1 /*
2       This file is part of GNUnet
3       (C) 2008--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 testbed/testbed_api_operations.c
23  * @brief functions to manage operation queues
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "testbed_api_operations.h"
28
29
30 /**
31  * An entry in the operation queue
32  */
33 struct QueueEntry
34 {
35   /**
36    * The next DLL pointer
37    */
38   struct QueueEntry *next;
39
40   /**
41    * The prev DLL pointer
42    */
43   struct QueueEntry *prev;
44
45   /**
46    * The operation this entry holds
47    */
48   struct GNUNET_TESTBED_Operation *op;
49
50   /**
51    * How many units of resources does the operation need
52    */
53   unsigned int nres;
54 };
55
56
57 /**
58  * Queue of operations where we can only support a certain
59  * number of concurrent operations of a particular type.
60  */
61 struct OperationQueue
62 {
63  /**
64    * The head of the operation queue
65    */
66   struct QueueEntry *head;
67
68   /**
69    * The tail of the operation queue
70    */
71   struct QueueEntry *tail;
72
73   /**
74    * Number of operations that are currently active in this queue.
75    */
76   unsigned int active;
77
78   /**
79    * Max number of operations which can be active at any time in this queue
80    */
81   unsigned int max_active;
82
83 };
84
85
86 /**
87  * Operation state
88  */
89 enum OperationState
90 {
91   /**
92    * The operation is just created and is in initial state
93    */
94   OP_STATE_INIT,
95   
96   /**
97    * The operation is currently waiting for resources
98    */
99   OP_STATE_WAITING,
100   
101   /**
102    * The operation is ready to be started
103    */
104   OP_STATE_READY,
105   
106   /**
107    * The operation has started
108    */
109   OP_STATE_STARTED
110 };
111
112
113 /**
114  * Opaque handle to an abstract operation to be executed by the testing framework.
115  */
116 struct GNUNET_TESTBED_Operation
117 {
118   /**
119    * Function to call when we have the resources to begin the operation.
120    */
121   OperationStart start;
122
123   /**
124    * Function to call to clean up after the operation (which may or may
125    * not have been started yet).
126    */
127   OperationRelease release;
128
129   /**
130    * Closure for callbacks.
131    */
132   void *cb_cls;
133
134   /**
135    * Array of operation queues this Operation belongs to.
136    */
137   struct OperationQueue **queues;
138
139   /**
140    * Array of number resources an operation need from each queue. This numbers
141    * in this array should correspond to the queues array
142    */
143   unsigned int *nres;
144
145   /**
146    * The id of the task which calls OperationStart for this operation
147    */
148   GNUNET_SCHEDULER_TaskIdentifier start_task_id;
149
150   /**
151    * Number of queues in the operation queues array
152    */
153   unsigned int nqueues;
154
155   /**
156    * The state of the operation
157    */
158   enum OperationState state;
159
160 };
161
162
163 /**
164  * Task for calling OperationStart on operation
165  *
166  * @param cls the Operation
167  * @param tc the TaskContext from scheduler
168  */
169 static void
170 call_start (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
171 {
172   struct GNUNET_TESTBED_Operation *op = cls;
173
174   op->start_task_id = GNUNET_SCHEDULER_NO_TASK;
175   op->state = OP_STATE_STARTED;
176   if (NULL != op->start)
177     op->start (op->cb_cls);
178 }
179
180
181 /**
182  * Checks for the readiness of an operation and schedules a operation start task
183  *
184  * @param op the operation
185  */
186 static void
187 check_readiness (struct GNUNET_TESTBED_Operation *op)
188 {
189   unsigned int i;
190
191   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == op->start_task_id);
192   for (i = 0; i < op->nqueues; i++)
193   {
194     GNUNET_assert (0 < op->nres[i]);
195     if ((op->queues[i]->active + op->nres[i]) > op->queues[i]->max_active)
196       return;
197   }
198   for (i = 0; i < op->nqueues; i++)
199     op->queues[i]->active += op->nres[i];
200   op->state = OP_STATE_READY;
201   op->start_task_id = GNUNET_SCHEDULER_add_now (&call_start, op);
202 }
203
204
205 /**
206  * Defers a ready to be executed operation back to waiting
207  *
208  * @param op the operation to defer
209  */
210 static void
211 defer (struct GNUNET_TESTBED_Operation *op)
212 {
213   unsigned int i;
214
215   GNUNET_assert (OP_STATE_READY == op->state);
216   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != op->start_task_id);
217   GNUNET_SCHEDULER_cancel (op->start_task_id);
218   op->start_task_id = GNUNET_SCHEDULER_NO_TASK;
219   for (i = 0; i < op->nqueues; i++)
220     op->queues[i]->active--;
221   op->state = OP_STATE_WAITING;
222 }
223
224
225 /**
226  * Create an 'operation' to be performed.
227  *
228  * @param cls closure for the callbacks
229  * @param start function to call to start the operation
230  * @param release function to call to close down the operation
231  * @return handle to the operation
232  */
233 struct GNUNET_TESTBED_Operation *
234 GNUNET_TESTBED_operation_create_ (void *cls, OperationStart start,
235                                   OperationRelease release)
236 {
237   struct GNUNET_TESTBED_Operation *op;
238
239   op = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Operation));
240   op->start = start;
241   op->state = OP_STATE_INIT;
242   op->release = release;
243   op->cb_cls = cls;
244   op->start_task_id = GNUNET_SCHEDULER_NO_TASK;
245   return op;
246 }
247
248
249 /**
250  * Create an operation queue.
251  *
252  * @param max_active maximum number of operations in this
253  *        queue that can be active in parallel at the same time
254  * @return handle to the queue
255  */
256 struct OperationQueue *
257 GNUNET_TESTBED_operation_queue_create_ (unsigned int max_active)
258 {
259   struct OperationQueue *queue;
260
261   queue = GNUNET_malloc (sizeof (struct OperationQueue));
262   queue->max_active = max_active;
263   return queue;
264 }
265
266
267 /**
268  * Destroy an operation queue.  The queue MUST be empty
269  * at this time.
270  *
271  * @param queue queue to destroy
272  */
273 void
274 GNUNET_TESTBED_operation_queue_destroy_ (struct OperationQueue *queue)
275 {
276   GNUNET_break (NULL == queue->head);
277   GNUNET_break (NULL == queue->tail);
278   GNUNET_free (queue);
279 }
280
281
282 /**
283  * Function to reset the maximum number of operations in the given queue. If
284  * max_active is lesser than the number of currently active operations, the
285  * active operations are not stopped immediately.
286  *
287  * @param queue the operation queue which has to be modified
288  * @param max_active the new maximum number of active operations
289  */
290 void
291 GNUNET_TESTBED_operation_queue_reset_max_active_ (struct OperationQueue *queue,
292                                                   unsigned int max_active)
293 {
294   struct QueueEntry *entry;
295   
296   queue->max_active = max_active;
297   /* if (queue->active >= queue->max_active) */
298   /*   return; */
299
300   entry = queue->head;
301   while ( (queue->active > queue->max_active) &&
302           (NULL != entry))
303   {
304     if (entry->op->state == OP_STATE_READY)
305       defer (entry->op);
306     entry = entry->next;
307   }
308
309   entry = queue->head;
310   while ( (NULL != entry) &&
311           (queue->active < queue->max_active) )
312   {
313     if (OP_STATE_WAITING == entry->op->state)
314       check_readiness (entry->op);
315     entry = entry->next;
316   }
317 }
318
319
320 /**
321  * Add an operation to a queue.  An operation can be in multiple queues at
322  * once. Once the operation is inserted into all the queues
323  * GNUNET_TESTBED_operation_begin_wait_() has to be called to actually start
324  * waiting for the operation to become active.
325  *
326  * @param queue queue to add the operation to
327  * @param operation operation to add to the queue
328  * @param nres the number of units of the resources of queue needed by the
329  *          operation. Should be greater than 0.
330  */
331 void
332 GNUNET_TESTBED_operation_queue_insert2_ (struct OperationQueue *queue,
333                                          struct GNUNET_TESTBED_Operation
334                                          *operation,
335                                          unsigned int nres)
336 {
337   struct QueueEntry *entry;
338   unsigned int qsize;
339
340   GNUNET_assert (0 < nres);
341   entry = GNUNET_malloc (sizeof (struct QueueEntry));
342   entry->op = operation;
343   entry->nres = nres;
344   GNUNET_CONTAINER_DLL_insert_tail (queue->head, queue->tail, entry);
345   qsize = operation->nqueues;
346   GNUNET_array_append (operation->queues, operation->nqueues, queue);
347   GNUNET_array_append (operation->nres, qsize, nres);
348   GNUNET_assert (qsize == operation->nqueues);
349 }
350
351
352 /**
353  * Add an operation to a queue.  An operation can be in multiple queues at
354  * once. Once the operation is inserted into all the queues
355  * GNUNET_TESTBED_operation_begin_wait_() has to be called to actually start
356  * waiting for the operation to become active. The operation is assumed to take
357  * 1 queue resource. Use GNUNET_TESTBED_operation_queue_insert2_() if it
358  * requires more than 1
359  *
360  * @param queue queue to add the operation to
361  * @param operation operation to add to the queue
362  */
363 void
364 GNUNET_TESTBED_operation_queue_insert_ (struct OperationQueue *queue,
365                                         struct GNUNET_TESTBED_Operation
366                                         *operation)
367 {
368   return GNUNET_TESTBED_operation_queue_insert2_ (queue, operation, 1);
369 }
370
371
372 /**
373  * Marks the given operation as waiting on the queues.  Once all queues permit
374  * the operation to become active, the operation will be activated.  The actual
375  * activation will occur in a separate task (thus allowing multiple queue
376  * insertions to be made without having the first one instantly trigger the
377  * operation if the first queue has sufficient resources).
378  *
379  * @param operation the operation to marks as waiting
380  */
381 void
382 GNUNET_TESTBED_operation_begin_wait_ (struct GNUNET_TESTBED_Operation
383                                       *operation)
384 {
385   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == operation->start_task_id);
386   operation->state = OP_STATE_WAITING;
387   check_readiness (operation);
388 }
389
390
391 /**
392  * Remove an operation from a queue.  This can be because the
393  * oeration was active and has completed (and the resources have
394  * been released), or because the operation was cancelled and
395  * thus scheduling the operation is no longer required.
396  *
397  * @param queue queue to add the operation to
398  * @param operation operation to add to the queue
399  */
400 void
401 GNUNET_TESTBED_operation_queue_remove_ (struct OperationQueue *queue,
402                                         struct GNUNET_TESTBED_Operation
403                                         *operation)
404 {
405   struct QueueEntry *entry;
406   struct QueueEntry *entry2;
407
408   for (entry = queue->head; NULL != entry; entry = entry->next)
409     if (entry->op == operation)
410       break;
411   GNUNET_assert (NULL != entry);
412   GNUNET_assert (0 < entry->nres);
413   switch (operation->state)
414   {
415   case OP_STATE_INIT:
416   case OP_STATE_WAITING:
417     break;
418   case OP_STATE_READY:
419   case OP_STATE_STARTED:
420     GNUNET_assert (0 != queue->active);
421     GNUNET_assert (queue->active >= entry->nres);
422     queue->active -= entry->nres;
423     break;
424   }
425   entry2 = entry->next;
426   GNUNET_CONTAINER_DLL_remove (queue->head, queue->tail, entry);
427   GNUNET_free (entry);
428   for (; NULL != entry2; entry2 = entry2->next)
429     if (OP_STATE_WAITING == entry2->op->state)
430       break;
431   if (NULL == entry2)
432     return;
433   check_readiness (entry2->op);
434 }
435
436
437 /**
438  * An operation is 'done' (was cancelled or finished); remove
439  * it from the queues and release associated resources.
440  *
441  * @param operation operation that finished
442  */
443 void
444 GNUNET_TESTBED_operation_release_ (struct GNUNET_TESTBED_Operation *operation)
445 {
446   unsigned int i;
447
448   if (GNUNET_SCHEDULER_NO_TASK != operation->start_task_id)
449   {
450     GNUNET_SCHEDULER_cancel (operation->start_task_id);
451     operation->start_task_id = GNUNET_SCHEDULER_NO_TASK;
452   }
453   for (i = 0; i < operation->nqueues; i++)
454     GNUNET_TESTBED_operation_queue_remove_ (operation->queues[i], operation);
455   GNUNET_free (operation->queues);
456   GNUNET_free (operation->nres);
457   if (NULL != operation->release)
458     operation->release (operation->cb_cls);
459   GNUNET_free (operation);
460 }
461
462
463 /* end of testbed_api_operations.c */