gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r26815 - gnunet/src/testbed


From: gnunet
Subject: [GNUnet-SVN] r26815 - gnunet/src/testbed
Date: Tue, 9 Apr 2013 11:40:00 +0200

Author: harsha
Date: 2013-04-09 11:40:00 +0200 (Tue, 09 Apr 2013)
New Revision: 26815

Modified:
   gnunet/src/testbed/testbed_api_operations.c
   gnunet/src/testbed/testbed_api_operations.h
Log:
- no starving


Modified: gnunet/src/testbed/testbed_api_operations.c
===================================================================
--- gnunet/src/testbed/testbed_api_operations.c 2013-04-09 08:22:42 UTC (rev 
26814)
+++ gnunet/src/testbed/testbed_api_operations.c 2013-04-09 09:40:00 UTC (rev 
26815)
@@ -71,6 +71,17 @@
   struct QueueEntry *tail;
 
   /**
+   * DLL head for the wait queue.  Operations which are waiting for this
+   * operation queue are put here
+   */
+  struct QueueEntry *wq_head;
+
+  /**
+   * DLL tail for the wait queue.
+   */
+  struct QueueEntry *wq_tail;
+
+  /**
    * Number of operations that are currently active in this queue.
    */
   unsigned int active;
@@ -159,6 +170,12 @@
   struct OperationQueue **queues;
 
   /**
+   * Array of operation queue entries corresponding to this operation in
+   * operation queues for this operation
+   */
+  struct QueueEntry **qentries;
+
+  /**
    * Array of number of resources an operation need from each queue. The 
numbers
    * in this array should correspond to the queues array
    */
@@ -265,6 +282,48 @@
 }
 
 
+void
+wq_add (struct GNUNET_TESTBED_Operation *op)
+{
+  struct QueueEntry *entry;
+  struct OperationQueue *opq;
+  unsigned int cnt;
+
+  GNUNET_assert (OP_STATE_WAITING == op->state);
+  GNUNET_assert (NULL == op->qentries);
+  for (cnt = 0; cnt < op->nqueues;)
+  {
+    opq = op->queues[cnt];
+    entry = GNUNET_malloc (sizeof (struct QueueEntry));
+    entry->op = op;
+    entry->nres = op->nres[cnt];
+    GNUNET_CONTAINER_DLL_insert_tail (opq->wq_head, opq->wq_tail, entry);
+    GNUNET_array_append (op->qentries, cnt, entry); /* increments cnt */
+  }
+}
+
+
+void
+wq_remove (struct GNUNET_TESTBED_Operation *op)
+{
+  struct QueueEntry *entry;
+  struct OperationQueue *opq;
+  unsigned int cnt;
+
+  GNUNET_assert (OP_STATE_WAITING == op->state);
+  GNUNET_assert (NULL != op->qentries);
+  for (cnt = 0; cnt < op->nqueues; cnt ++)
+  {
+    opq = op->queues[cnt];
+    entry = op->qentries[cnt];
+    GNUNET_CONTAINER_DLL_remove (opq->wq_head, opq->wq_tail, entry);
+    GNUNET_free (entry);
+  }
+  GNUNET_free (op->qentries);
+  op->qentries = NULL;
+}
+
+
 /**
  * Checks for the readiness of an operation and schedules a operation start 
task
  *
@@ -276,15 +335,17 @@
   unsigned int i;
 
   GNUNET_assert (NULL == op->rq_entry);
+  GNUNET_assert (OP_STATE_WAITING == op->state);
   for (i = 0; i < op->nqueues; i++)
   {
     GNUNET_assert (0 < op->nres[i]);
     if ((op->queues[i]->active + op->nres[i]) > op->queues[i]->max_active)
       return;
   }
+  wq_remove (op);
   for (i = 0; i < op->nqueues; i++)
     op->queues[i]->active += op->nres[i];
-  op->state = OP_STATE_READY;
+  op->state = OP_STATE_READY;  
   rq_add (op);
 }
 
@@ -304,6 +365,7 @@
   for (i = 0; i < op->nqueues; i++)
     op->queues[i]->active--;
   op->state = OP_STATE_WAITING;
+  wq_add (op);
 }
 
 
@@ -420,27 +482,27 @@
  * waiting for the operation to become active.
  *
  * @param queue queue to add the operation to
- * @param operation operation to add to the queue
+ * @param op operation to add to the queue
  * @param nres the number of units of the resources of queue needed by the
  *          operation. Should be greater than 0.
  */
 void
 GNUNET_TESTBED_operation_queue_insert2_ (struct OperationQueue *queue,
-                                         struct GNUNET_TESTBED_Operation
-                                         *operation, unsigned int nres)
+                                         struct GNUNET_TESTBED_Operation *op,
+                                         unsigned int nres)
 {
   struct QueueEntry *entry;
   unsigned int qsize;
 
   GNUNET_assert (0 < nres);
   entry = GNUNET_malloc (sizeof (struct QueueEntry));
-  entry->op = operation;
+  entry->op = op;
   entry->nres = nres;
   GNUNET_CONTAINER_DLL_insert_tail (queue->head, queue->tail, entry);
-  qsize = operation->nqueues;
-  GNUNET_array_append (operation->queues, operation->nqueues, queue);
-  GNUNET_array_append (operation->nres, qsize, nres);
-  GNUNET_assert (qsize == operation->nqueues);
+  qsize = op->nqueues;
+  GNUNET_array_append (op->queues, op->nqueues, queue);
+  GNUNET_array_append (op->nres, qsize, nres);
+  GNUNET_assert (qsize == op->nqueues);
 }
 
 
@@ -453,14 +515,13 @@
  * requires more than 1
  *
  * @param queue queue to add the operation to
- * @param operation operation to add to the queue
+ * @param op operation to add to the queue
  */
 void
 GNUNET_TESTBED_operation_queue_insert_ (struct OperationQueue *queue,
-                                        struct GNUNET_TESTBED_Operation
-                                        *operation)
+                                        struct GNUNET_TESTBED_Operation *op)
 {
-  return GNUNET_TESTBED_operation_queue_insert2_ (queue, operation, 1);
+  return GNUNET_TESTBED_operation_queue_insert2_ (queue, op, 1);
 }
 
 
@@ -471,15 +532,15 @@
  * insertions to be made without having the first one instantly trigger the
  * operation if the first queue has sufficient resources).
  *
- * @param operation the operation to marks as waiting
+ * @param op the operation to marks as waiting
  */
 void
-GNUNET_TESTBED_operation_begin_wait_ (struct GNUNET_TESTBED_Operation
-                                      *operation)
+GNUNET_TESTBED_operation_begin_wait_ (struct GNUNET_TESTBED_Operation *op)
 {
-  GNUNET_assert (NULL == operation->rq_entry);
-  operation->state = OP_STATE_WAITING;
-  check_readiness (operation);
+  GNUNET_assert (NULL == op->rq_entry);
+  op->state = OP_STATE_WAITING;
+  wq_add (op);
+  check_readiness (op);
 }
 
 
@@ -490,22 +551,21 @@
  * thus scheduling the operation is no longer required.
  *
  * @param queue queue to add the operation to
- * @param operation operation to add to the queue
+ * @param op operation to add to the queue
  */
 void
 GNUNET_TESTBED_operation_queue_remove_ (struct OperationQueue *queue,
                                         struct GNUNET_TESTBED_Operation
-                                        *operation)
+                                        *op)
 {
   struct QueueEntry *entry;
-  struct QueueEntry *entry2;
 
   for (entry = queue->head; NULL != entry; entry = entry->next)
-    if (entry->op == operation)
+    if (entry->op == op)
       break;
   GNUNET_assert (NULL != entry);
   GNUNET_assert (0 < entry->nres);
-  switch (operation->state)
+  switch (op->state)
   {
   case OP_STATE_INIT:
   case OP_STATE_WAITING:
@@ -517,15 +577,12 @@
     queue->active -= entry->nres;
     break;
   }
-  entry2 = entry->next;
   GNUNET_CONTAINER_DLL_remove (queue->head, queue->tail, entry);
   GNUNET_free (entry);
-  for (; NULL != entry2; entry2 = entry2->next)
-    if (OP_STATE_WAITING == entry2->op->state)
-      break;
-  if (NULL == entry2)
+  entry = queue->wq_head;
+  if (NULL == entry)
     return;
-  check_readiness (entry2->op);
+  check_readiness (entry->op);
 }
 
 
@@ -533,22 +590,32 @@
  * An operation is 'done' (was cancelled or finished); remove
  * it from the queues and release associated resources.
  *
- * @param operation operation that finished
+ * @param op operation that finished
  */
 void
-GNUNET_TESTBED_operation_release_ (struct GNUNET_TESTBED_Operation *operation)
+GNUNET_TESTBED_operation_release_ (struct GNUNET_TESTBED_Operation *op)
 {
   unsigned int i;
 
-  if (OP_STATE_READY == operation->state)
-    rq_remove (operation);
-  for (i = 0; i < operation->nqueues; i++)
-    GNUNET_TESTBED_operation_queue_remove_ (operation->queues[i], operation);
-  GNUNET_free (operation->queues);
-  GNUNET_free (operation->nres);
-  if (NULL != operation->release)
-    operation->release (operation->cb_cls);
-  GNUNET_free (operation);
+  switch (op->state)
+  {
+  case OP_STATE_READY:
+    rq_remove (op);
+    break;
+  case OP_STATE_WAITING:
+    wq_remove (op);
+    break;
+  case OP_STATE_STARTED:
+  case OP_STATE_INIT:
+    break;
+  }
+  for (i = 0; i < op->nqueues; i++)
+    GNUNET_TESTBED_operation_queue_remove_ (op->queues[i], op);
+  GNUNET_free (op->queues);
+  GNUNET_free (op->nres);
+  if (NULL != op->release)
+    op->release (op->cb_cls);
+  GNUNET_free (op);
 }
 
 

Modified: gnunet/src/testbed/testbed_api_operations.h
===================================================================
--- gnunet/src/testbed/testbed_api_operations.h 2013-04-09 08:22:42 UTC (rev 
26814)
+++ gnunet/src/testbed/testbed_api_operations.h 2013-04-09 09:40:00 UTC (rev 
26815)
@@ -89,14 +89,14 @@
  * waiting for the operation to become active.
  *
  * @param queue queue to add the operation to
- * @param operation operation to add to the queue
+ * @param op operation to add to the queue
  * @param nres the number of units of the resources of queue needed by the
  *          operation. Should be greater than 0.
  */
 void
 GNUNET_TESTBED_operation_queue_insert2_ (struct OperationQueue *queue,
-                                         struct GNUNET_TESTBED_Operation
-                                         *operation, unsigned int nres);
+                                         struct GNUNET_TESTBED_Operation *op,
+                                         unsigned int nres);
 
 
 /**
@@ -106,12 +106,11 @@
  * waiting for the operation to become active.
  *
  * @param queue queue to add the operation to
- * @param operation operation to add to the queue
+ * @param op operation to add to the queue
  */
 void
 GNUNET_TESTBED_operation_queue_insert_ (struct OperationQueue *queue,
-                                        struct GNUNET_TESTBED_Operation
-                                        *operation);
+                                        struct GNUNET_TESTBED_Operation *op);
 
 
 /**
@@ -121,11 +120,10 @@
  * insertions to be made without having the first one instantly trigger the
  * operation if the first queue has sufficient resources).
  *
- * @param operation the operation to marks as waiting
+ * @param op the operation to marks as waiting
  */
 void
-GNUNET_TESTBED_operation_begin_wait_ (struct GNUNET_TESTBED_Operation
-                                      *operation);
+GNUNET_TESTBED_operation_begin_wait_ (struct GNUNET_TESTBED_Operation *op);
 
 
 /**
@@ -135,12 +133,11 @@
  * thus scheduling the operation is no longer required.
  *
  * @param queue queue to add the operation to
- * @param operation operation to add to the queue
+ * @param op operation to add to the queue
  */
 void
 GNUNET_TESTBED_operation_queue_remove_ (struct OperationQueue *queue,
-                                        struct GNUNET_TESTBED_Operation
-                                        *operation);
+                                        struct GNUNET_TESTBED_Operation *op);
 
 
 
@@ -187,10 +184,10 @@
  * An operation is 'done' (was cancelled or finished); remove
  * it from the queues and release associated resources.
  *
- * @param operation operation that finished
+ * @param op operation that finished
  */
 void
-GNUNET_TESTBED_operation_release_ (struct GNUNET_TESTBED_Operation *operation);
+GNUNET_TESTBED_operation_release_ (struct GNUNET_TESTBED_Operation *op);
 
 
 #endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]