gdb/common/queue.h - gdb

Macros defined

Source code

  1. /* General queue data structure for GDB, the GNU debugger.

  2.    Copyright (C) 2012-2015 Free Software Foundation, Inc.

  3.    This file is part of GDB.

  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. #ifndef QUEUE_H
  15. #define QUEUE_H

  16. /* These macros implement functions and structs for a general queue.
  17.    Macro 'DEFINE_QUEUE_P(TYPEDEF)' is to define the new queue type for
  18.    TYPEDEF', and macro 'DECLARE_QUEUE_P' is to declare external queue
  19.    APIs.  The character P indicates TYPEDEF is a pointer (P).  The
  20.    counterpart on object (O) and integer (I) are not implemented.

  21.    An example of their use would be,

  22.    typedef struct foo
  23.    {} *foo_p;

  24.    DEFINE_QUEUE_P (foo_p);
  25.    // A pointer to a queue of foo pointers.  FOO_XFREE is a destructor
  26.    // function for foo instances in queue.
  27.    QUEUE(foo_p) *foo_queue = QUEUE_alloc (foo_p, foo_xfree);

  28.    foo_p foo_var_p;
  29.    // Enqueue and Dequeue
  30.    QUEUE_enque (foo_p, foo_queue, foo_var_p);
  31.    foo_var_p = QUEUE_deque (foo_p, foo_queue);

  32.    static int visit_foo (QUEUE (foo_p) *q, QUEUE_ITER (foo_p) *iter,
  33.                         foo_p f, void *data)
  34.    {
  35.      return 1;
  36.    }
  37.    // Iterate over queue.
  38.    QUEUE_iterate (foo_p, foo_queue, visit_foo, &param);

  39.    QUEUE_free (foo_p, foo_queue);  // Free queue.  */

  40. /* Typical enqueue operation.  Put V into queue Q.  */
  41. #define QUEUE_enque(TYPE, Q, V) queue_ ## TYPE ## _enque ((Q), (V))

  42. /* Typical dequeue operation.  Return head element of queue Q and
  43.    remove it.  Q must not be empty.  */
  44. #define QUEUE_deque(TYPE, Q) queue_ ## TYPE ## _deque (Q)

  45. /* Return the head element, but don't remove it from the queue.
  46.    Q must not be empty.  */
  47. #define QUEUE_peek(TYPE, Q) queue_ ## TYPE ## _peek (Q)

  48. /* Return true if queue Q is empty.  */
  49. #define QUEUE_is_empty(TYPE, Q) queue_ ## TYPE ## _is_empty (Q)

  50. /* Allocate memory for queue.  FREE_FUNC is a function to release the
  51.    data put in each queue element.  */
  52. #define QUEUE_alloc(TYPE, FREE_FUNC) queue_ ## TYPE ## _alloc (FREE_FUNC)

  53. /* Length of queue Q.  */
  54. #define QUEUE_length(TYPE, Q) queue_ ## TYPE ## _length (Q)

  55. /* Free queue Q.  Q's free_func is called once for each element.  */
  56. #define QUEUE_free(TYPE, Q) queue_ ## TYPE ## _free (Q)

  57. /* Iterate over elements in the queue Q and call function OPERATE on
  58.    each element.  It is allowed to remove element by OPERATE.  OPERATE
  59.    returns false to terminate the iteration and true to continue the
  60.    iteration.  Return false if iteration is terminated by function
  61.    OPERATE, otherwise return true.  */
  62. #define QUEUE_iterate(TYPE, Q, OPERATE, PARAM)        \
  63.   queue_ ## TYPE ## _iterate ((Q), (OPERATE), (PARAM))

  64. /* Remove the element per the state of iterator ITER from queue Q.
  65.    Leave the caller to release the data in the queue element.  */
  66. #define QUEUE_remove_elem(TYPE, Q, ITER) \
  67.   queue_ ## TYPE ## _remove_elem ((Q), (ITER))

  68. /* Define a new queue implementation.  */

  69. #define QUEUE(TYPE) struct queue_ ## TYPE
  70. #define QUEUE_ELEM(TYPE) struct queue_elem_ ## TYPE
  71. #define QUEUE_ITER(TYPE) struct queue_iter_ ## TYPE
  72. #define QUEUE_ITER_FUNC(TYPE) queue_ ## TYPE ## _operate_func

  73. #define DEFINE_QUEUE_P(TYPE)                        \
  74. QUEUE_ELEM (TYPE)                                \
  75. {                                                \
  76.   QUEUE_ELEM (TYPE) *next;                        \
  77.                                                 \
  78.   TYPE data;                                        \
  79. };                                                \
  80.                                                 \
  81. /* Queue iterator.  */                                \
  82. QUEUE_ITER (TYPE)                                \
  83. {                                                \
  84.   /* The current element during traverse.  */        \
  85.   QUEUE_ELEM (TYPE) *p;                        \
  86.   /* The previous element of P.  */                \
  87.   QUEUE_ELEM (TYPE) *prev;                        \
  88. };                                                \
  89.                                                 \
  90. QUEUE(TYPE)                                        \
  91. {                                                \
  92.   /*  The head and tail of the queue.  */        \
  93.   QUEUE_ELEM (TYPE) *head;                        \
  94.   QUEUE_ELEM (TYPE) *tail;                        \
  95.   /* Function to release the data put in each        \
  96.      queue element.  */                        \
  97.   void (*free_func) (TYPE);                        \
  98. };                                                \
  99.                                                 \
  100. void                                                                        \
  101. queue_ ## TYPE ## _enque (QUEUE (TYPE) *q, TYPE v)                        \
  102. {                                                                        \
  103.   QUEUE_ELEM (TYPE) *p                                                        \
  104.     = xmalloc (sizeof (QUEUE_ELEM (TYPE)));                                \
  105.                                                                         \
  106.   gdb_assert (q != NULL);                                                \
  107.   p->data = v;                                                                \
  108.   p->next = NULL;                                                        \
  109.   if (q->tail == NULL)                                                        \
  110.     {                                                                        \
  111.       q->tail = p;                                                        \
  112.       q->head = p;                                                        \
  113.     }                                                                        \
  114.   else                                                                        \
  115.     {                                                                        \
  116.       q->tail->next = p;                                                \
  117.       q->tail = p;                                                        \
  118.     }                                                                        \
  119. }                                                                        \
  120.                                                                         \
  121. TYPE                                                                        \
  122. queue_ ## TYPE ## _deque (QUEUE (TYPE) *q)                                \
  123. {                                                                        \
  124.   QUEUE_ELEM (TYPE) *p;                                                \
  125.   TYPE v;                                                                \
  126.                                                                         \
  127.   gdb_assert (q != NULL);                                                \
  128.   p = q->head;                                                                \
  129.   gdb_assert (p != NULL);                                                \
  130.                                                                         \
  131.   if (q->head == q->tail)                                                \
  132.     {                                                                        \
  133.       q->head = NULL;                                                        \
  134.       q->tail = NULL;                                                        \
  135.     }                                                                        \
  136.   else                                                                        \
  137.     q->head = q->head->next;                                                \
  138.                                                                         \
  139.   v = p->data;                                                                \
  140.                                                                         \
  141.   xfree (p);                                                                \
  142.   return v;                                                                \
  143. }                                                                        \
  144.                                                                         \
  145. TYPE                                                                        \
  146. queue_ ## TYPE ## _peek (QUEUE (TYPE) *q)                                \
  147. {                                                                        \
  148.   gdb_assert (q != NULL);                                                \
  149.   gdb_assert (q->head != NULL);                                        \
  150.   return q->head->data;                                                \
  151. }                                                                        \
  152.                                                                         \
  153. int                                                                        \
  154. queue_ ## TYPE ## _is_empty (QUEUE (TYPE) *q)                                \
  155. {                                                                        \
  156.   gdb_assert (q != NULL);                                                \
  157.   return q->head == NULL;                                                \
  158. }                                                                        \
  159.                                                                         \
  160. void                                                                        \
  161. queue_ ## TYPE ## _remove_elem (QUEUE (TYPE) *q,                        \
  162.                                 QUEUE_ITER (TYPE) *iter)                \
  163. {                                                                        \
  164.   gdb_assert (q != NULL);                                                \
  165.   gdb_assert (iter != NULL && iter->p != NULL);                        \
  166.                                                                         \
  167.   if (iter->p == q->head || iter->p == q->tail)                        \
  168.     {                                                                        \
  169.       if (iter->p == q->head)                                                \
  170.         q->head = iter->p->next;                                        \
  171.       if (iter->p == q->tail)                                                \
  172.         q->tail = iter->prev;                                                \
  173.     }                                                                        \
  174.   else                                                                        \
  175.     iter->prev->next = iter->p->next;                                        \
  176.                                                                         \
  177.   xfree (iter->p);                                                        \
  178.   /* Indicate that ITER->p has been deleted from QUEUE q.  */                \
  179.   iter->p = NULL;                                                        \
  180. }                                                                        \
  181.                                                                         \
  182. int                                                                        \
  183. queue_ ## TYPE ## _iterate (QUEUE (TYPE) *q,                                \
  184.                             QUEUE_ITER_FUNC (TYPE) operate,                \
  185.                             void *data)                                \
  186. {                                                                        \
  187.   QUEUE_ELEM (TYPE) *next = NULL;                                        \
  188.   QUEUE_ITER (TYPE) iter = { NULL, NULL };                                \
  189.                                                                         \
  190.   gdb_assert (q != NULL);                                                \
  191.                                                                         \
  192.   for (iter.p = q->head; iter.p != NULL; iter.p = next)                \
  193.     {                                                                        \
  194.       next = iter.p->next;                                                \
  195.       if (!operate (q, &iter, iter.p->data, data))                        \
  196.         return 0;                                                        \
  197.       /* ITER.P was not deleted by function OPERATE.  */                \
  198.       if (iter.p != NULL)                                                \
  199.         iter.prev = iter.p;                                                \
  200.     }                                                                        \
  201.   return 1;                                                                \
  202. }                                                                        \
  203.                                                                         \
  204. QUEUE (TYPE) *                                                                \
  205. queue_ ## TYPE ## _alloc (void (*free_func) (TYPE))                        \
  206. {                                                                        \
  207.   QUEUE (TYPE) *q;                                                        \
  208.                                                                         \
  209.   q = (QUEUE (TYPE) *) xmalloc (sizeof (QUEUE (TYPE)));                \
  210.   q->head = NULL;                                                        \
  211.   q->tail = NULL;                                                        \
  212.   q->free_func = free_func;                                                \
  213.   return q;                                                                \
  214. }                                                                        \
  215.                                                                         \
  216. int                                                                        \
  217. queue_ ## TYPE ## _length (QUEUE (TYPE) *q)                                \
  218. {                                                                        \
  219.   QUEUE_ELEM (TYPE) *p;                                                \
  220.   int len = 0;                                                                \
  221.                                                                         \
  222.   gdb_assert (q != NULL);                                                \
  223.                                                                         \
  224.   for (p = q->head; p != NULL; p = p->next)                                \
  225.     len++;                                                                \
  226.                                                                         \
  227.   return len;                                                                \
  228. }                                                                        \
  229.                                                                         \
  230. void                                                                        \
  231. queue_ ## TYPE ## _free (QUEUE (TYPE) *q)                                \
  232. {                                                                        \
  233.   QUEUE_ELEM (TYPE) *p, *next;                                                \
  234.                                                                         \
  235.   gdb_assert (q != NULL);                                                \
  236.                                                                         \
  237.   for (p = q->head; p != NULL; p = next)                                \
  238.     {                                                                        \
  239.       next = p->next;                                                        \
  240.       if (q->free_func)                                                \
  241.         q->free_func (p->data);                                        \
  242.       xfree (p);                                                        \
  243.     }                                                                        \
  244.   xfree (q);                                                                \
  245. }                                                                        \

  246. /* External declarations for queue functions.  */
  247. #define DECLARE_QUEUE_P(TYPE)                                        \
  248. QUEUE (TYPE);                                                        \
  249. QUEUE_ELEM (TYPE);                                                \
  250. QUEUE_ITER (TYPE);                                                \
  251. extern void                                                        \
  252.   queue_ ## TYPE ## _enque (QUEUE (TYPE) *q, TYPE v);                \
  253. extern TYPE                                                        \
  254.   queue_ ## TYPE ## _deque (QUEUE (TYPE) *q);                        \
  255. extern int queue_ ## TYPE ## _is_empty (QUEUE (TYPE) *q);        \
  256. extern QUEUE (TYPE) *                                                \
  257.   queue_ ## TYPE ## _alloc (void (*free_func) (TYPE));                \
  258. extern int queue_ ## TYPE ## _length (QUEUE (TYPE) *q);        \
  259. extern TYPE                                                        \
  260.   queue_ ## TYPE ## _peek (QUEUE (TYPE) *q);                        \
  261. extern void queue_ ## TYPE ## _free (QUEUE (TYPE) *q);                \
  262. typedef int QUEUE_ITER_FUNC(TYPE) (QUEUE (TYPE) *,                \
  263.                                    QUEUE_ITER (TYPE) *,        \
  264.                                    TYPE,                        \
  265.                                    void *);                        \
  266. extern int                                                        \
  267.   queue_ ## TYPE ## _iterate (QUEUE (TYPE) *q,                        \
  268.                               QUEUE_ITER_FUNC (TYPE) operate,        \
  269.                               void *);                                \
  270. extern void                                                        \
  271.   queue_ ## TYPE ## _remove_elem (QUEUE (TYPE) *q,                \
  272.                                   QUEUE_ITER (TYPE) *iter);        \

  273. #endif /* QUEUE_H */