tor_queue.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. /* $OpenBSD: queue.h,v 1.36 2012/04/11 13:29:14 naddy Exp $ */
  2. /* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */
  3. /*
  4. * Copyright (c) 1991, 1993
  5. * The Regents of the University of California. All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of the University nor the names of its contributors
  16. * may be used to endorse or promote products derived from this software
  17. * without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  20. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  23. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29. * SUCH DAMAGE.
  30. *
  31. * @(#)queue.h 8.5 (Berkeley) 8/20/94
  32. */
  33. #ifndef TOR_QUEUE_H_
  34. #define TOR_QUEUE_H_
  35. /*
  36. * This file defines five types of data structures: singly-linked lists,
  37. * lists, simple queues, tail queues, and circular queues.
  38. *
  39. *
  40. * A singly-linked list is headed by a single forward pointer. The elements
  41. * are singly linked for minimum space and pointer manipulation overhead at
  42. * the expense of O(n) removal for arbitrary elements. New elements can be
  43. * added to the list after an existing element or at the head of the list.
  44. * Elements being removed from the head of the list should use the explicit
  45. * macro for this purpose for optimum efficiency. A singly-linked list may
  46. * only be traversed in the forward direction. Singly-linked lists are ideal
  47. * for applications with large datasets and few or no removals or for
  48. * implementing a LIFO queue.
  49. *
  50. * A list is headed by a single forward pointer (or an array of forward
  51. * pointers for a hash table header). The elements are doubly linked
  52. * so that an arbitrary element can be removed without a need to
  53. * traverse the list. New elements can be added to the list before
  54. * or after an existing element or at the head of the list. A list
  55. * may only be traversed in the forward direction.
  56. *
  57. * A simple queue is headed by a pair of pointers, one the head of the
  58. * list and the other to the tail of the list. The elements are singly
  59. * linked to save space, so elements can only be removed from the
  60. * head of the list. New elements can be added to the list before or after
  61. * an existing element, at the head of the list, or at the end of the
  62. * list. A simple queue may only be traversed in the forward direction.
  63. *
  64. * A tail queue is headed by a pair of pointers, one to the head of the
  65. * list and the other to the tail of the list. The elements are doubly
  66. * linked so that an arbitrary element can be removed without a need to
  67. * traverse the list. New elements can be added to the list before or
  68. * after an existing element, at the head of the list, or at the end of
  69. * the list. A tail queue may be traversed in either direction.
  70. *
  71. * A circle queue is headed by a pair of pointers, one to the head of the
  72. * list and the other to the tail of the list. The elements are doubly
  73. * linked so that an arbitrary element can be removed without a need to
  74. * traverse the list. New elements can be added to the list before or after
  75. * an existing element, at the head of the list, or at the end of the list.
  76. * A circle queue may be traversed in either direction, but has a more
  77. * complex end of list detection.
  78. *
  79. * For details on the use of these macros, see the queue(3) manual page.
  80. */
  81. #if defined(QUEUE_MACRO_DEBUG) || (defined(_KERNEL) && defined(DIAGNOSTIC))
  82. #define TOR_Q_INVALIDATE_(a) (a) = ((void *)-1)
  83. #else
  84. #define TOR_Q_INVALIDATE_(a)
  85. #endif
  86. /*
  87. * Singly-linked List definitions.
  88. */
  89. #define TOR_SLIST_HEAD(name, type) \
  90. struct name { \
  91. struct type *slh_first; /* first element */ \
  92. }
  93. #define TOR_SLIST_HEAD_INITIALIZER(head) \
  94. { NULL }
  95. #define TOR_SLIST_ENTRY(type) \
  96. struct { \
  97. struct type *sle_next; /* next element */ \
  98. }
  99. /*
  100. * Singly-linked List access methods.
  101. */
  102. #define TOR_SLIST_FIRST(head) ((head)->slh_first)
  103. #define TOR_SLIST_END(head) NULL
  104. /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */
  105. #define TOR_SLIST_EMPTY(head) ((SLIST_FIRST(head) == TOR_SLIST_END(head)) || 0)
  106. #define TOR_SLIST_NEXT(elm, field) ((elm)->field.sle_next)
  107. #define TOR_SLIST_FOREACH(var, head, field) \
  108. for((var) = TOR_SLIST_FIRST(head); \
  109. (var) != TOR_SLIST_END(head); \
  110. (var) = TOR_SLIST_NEXT(var, field))
  111. #define TOR_SLIST_FOREACH_SAFE(var, head, field, tvar) \
  112. for ((var) = TOR_SLIST_FIRST(head); \
  113. (var) && ((tvar) = TOR_SLIST_NEXT(var, field), 1); \
  114. (var) = (tvar))
  115. /*
  116. * Singly-linked List functions.
  117. */
  118. #define TOR_SLIST_INIT(head) { \
  119. TOR_SLIST_FIRST(head) = TOR_SLIST_END(head); \
  120. }
  121. #define TOR_SLIST_INSERT_AFTER(slistelm, elm, field) do { \
  122. (elm)->field.sle_next = (slistelm)->field.sle_next; \
  123. (slistelm)->field.sle_next = (elm); \
  124. } while (0)
  125. #define TOR_SLIST_INSERT_HEAD(head, elm, field) do { \
  126. (elm)->field.sle_next = (head)->slh_first; \
  127. (head)->slh_first = (elm); \
  128. } while (0)
  129. #define TOR_SLIST_REMOVE_AFTER(elm, field) do { \
  130. (elm)->field.sle_next = (elm)->field.sle_next->field.sle_next; \
  131. } while (0)
  132. #define TOR_SLIST_REMOVE_HEAD(head, field) do { \
  133. (head)->slh_first = (head)->slh_first->field.sle_next; \
  134. } while (0)
  135. #define TOR_SLIST_REMOVE(head, elm, type, field) do { \
  136. if ((head)->slh_first == (elm)) { \
  137. TOR_SLIST_REMOVE_HEAD((head), field); \
  138. } else { \
  139. struct type *curelm = (head)->slh_first; \
  140. \
  141. while (curelm->field.sle_next != (elm)) \
  142. curelm = curelm->field.sle_next; \
  143. curelm->field.sle_next = \
  144. curelm->field.sle_next->field.sle_next; \
  145. TOR_Q_INVALIDATE_((elm)->field.sle_next); \
  146. } \
  147. } while (0)
  148. /*
  149. * List definitions.
  150. */
  151. #define TOR_LIST_HEAD(name, type) \
  152. struct name { \
  153. struct type *lh_first; /* first element */ \
  154. }
  155. #define TOR_LIST_HEAD_INITIALIZER(head) \
  156. { NULL }
  157. #define TOR_LIST_ENTRY(type) \
  158. struct { \
  159. struct type *le_next; /* next element */ \
  160. struct type **le_prev; /* address of previous next element */ \
  161. }
  162. /*
  163. * List access methods
  164. */
  165. #define TOR_LIST_FIRST(head) ((head)->lh_first)
  166. #define TOR_LIST_END(head) NULL
  167. /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */
  168. #define TOR_LIST_EMPTY(head) \
  169. ((TOR_LIST_FIRST(head) == TOR_LIST_END(head)) || 0)
  170. #define TOR_LIST_NEXT(elm, field) ((elm)->field.le_next)
  171. #define TOR_LIST_FOREACH(var, head, field) \
  172. for((var) = TOR_LIST_FIRST(head); \
  173. (var)!= TOR_LIST_END(head); \
  174. (var) = TOR_LIST_NEXT(var, field))
  175. #define TOR_LIST_FOREACH_SAFE(var, head, field, tvar) \
  176. for ((var) = TOR_LIST_FIRST(head); \
  177. (var) && ((tvar) = TOR_LIST_NEXT(var, field), 1); \
  178. (var) = (tvar))
  179. /*
  180. * List functions.
  181. */
  182. #define TOR_LIST_INIT(head) do { \
  183. TOR_LIST_FIRST(head) = TOR_LIST_END(head); \
  184. } while (0)
  185. #define TOR_LIST_INSERT_AFTER(listelm, elm, field) do { \
  186. if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
  187. (listelm)->field.le_next->field.le_prev = \
  188. &(elm)->field.le_next; \
  189. (listelm)->field.le_next = (elm); \
  190. (elm)->field.le_prev = &(listelm)->field.le_next; \
  191. } while (0)
  192. #define TOR_LIST_INSERT_BEFORE(listelm, elm, field) do { \
  193. (elm)->field.le_prev = (listelm)->field.le_prev; \
  194. (elm)->field.le_next = (listelm); \
  195. *(listelm)->field.le_prev = (elm); \
  196. (listelm)->field.le_prev = &(elm)->field.le_next; \
  197. } while (0)
  198. #define TOR_LIST_INSERT_HEAD(head, elm, field) do { \
  199. if (((elm)->field.le_next = (head)->lh_first) != NULL) \
  200. (head)->lh_first->field.le_prev = &(elm)->field.le_next;\
  201. (head)->lh_first = (elm); \
  202. (elm)->field.le_prev = &(head)->lh_first; \
  203. } while (0)
  204. #define TOR_LIST_REMOVE(elm, field) do { \
  205. if ((elm)->field.le_next != NULL) \
  206. (elm)->field.le_next->field.le_prev = \
  207. (elm)->field.le_prev; \
  208. *(elm)->field.le_prev = (elm)->field.le_next; \
  209. TOR_Q_INVALIDATE_((elm)->field.le_prev); \
  210. TOR_Q_INVALIDATE_((elm)->field.le_next); \
  211. } while (0)
  212. #define TOR_LIST_REPLACE(elm, elm2, field) do { \
  213. if (((elm2)->field.le_next = (elm)->field.le_next) != NULL) \
  214. (elm2)->field.le_next->field.le_prev = \
  215. &(elm2)->field.le_next; \
  216. (elm2)->field.le_prev = (elm)->field.le_prev; \
  217. *(elm2)->field.le_prev = (elm2); \
  218. TOR_Q_INVALIDATE_((elm)->field.le_prev); \
  219. TOR_Q_INVALIDATE_((elm)->field.le_next); \
  220. } while (0)
  221. /*
  222. * Simple queue definitions.
  223. */
  224. #define TOR_SIMPLEQ_HEAD(name, type) \
  225. struct name { \
  226. struct type *sqh_first; /* first element */ \
  227. struct type **sqh_last; /* addr of last next element */ \
  228. }
  229. #define TOR_SIMPLEQ_HEAD_INITIALIZER(head) \
  230. { NULL, &(head).sqh_first }
  231. #define TOR_SIMPLEQ_ENTRY(type) \
  232. struct { \
  233. struct type *sqe_next; /* next element */ \
  234. }
  235. /*
  236. * Simple queue access methods.
  237. */
  238. #define TOR_SIMPLEQ_FIRST(head) ((head)->sqh_first)
  239. #define TOR_SIMPLEQ_END(head) NULL
  240. /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */
  241. #define TOR_SIMPLEQ_EMPTY(head) \
  242. ((TOR_SIMPLEQ_FIRST(head) == TOR_SIMPLEQ_END(head)) || 0)
  243. #define TOR_SIMPLEQ_NEXT(elm, field) ((elm)->field.sqe_next)
  244. #define TOR_SIMPLEQ_FOREACH(var, head, field) \
  245. for((var) = TOR_SIMPLEQ_FIRST(head); \
  246. (var) != TOR_SIMPLEQ_END(head); \
  247. (var) = TOR_SIMPLEQ_NEXT(var, field))
  248. #define TOR_SIMPLEQ_FOREACH_SAFE(var, head, field, tvar) \
  249. for ((var) = TOR_SIMPLEQ_FIRST(head); \
  250. (var) && ((tvar) = TOR_SIMPLEQ_NEXT(var, field), 1); \
  251. (var) = (tvar))
  252. /*
  253. * Simple queue functions.
  254. */
  255. #define TOR_SIMPLEQ_INIT(head) do { \
  256. (head)->sqh_first = NULL; \
  257. (head)->sqh_last = &(head)->sqh_first; \
  258. } while (0)
  259. #define TOR_SIMPLEQ_INSERT_HEAD(head, elm, field) do { \
  260. if (((elm)->field.sqe_next = (head)->sqh_first) == NULL) \
  261. (head)->sqh_last = &(elm)->field.sqe_next; \
  262. (head)->sqh_first = (elm); \
  263. } while (0)
  264. #define TOR_SIMPLEQ_INSERT_TAIL(head, elm, field) do { \
  265. (elm)->field.sqe_next = NULL; \
  266. *(head)->sqh_last = (elm); \
  267. (head)->sqh_last = &(elm)->field.sqe_next; \
  268. } while (0)
  269. #define TOR_SIMPLEQ_INSERT_AFTER(head, listelm, elm, field) do { \
  270. if (((elm)->field.sqe_next = (listelm)->field.sqe_next) == NULL)\
  271. (head)->sqh_last = &(elm)->field.sqe_next; \
  272. (listelm)->field.sqe_next = (elm); \
  273. } while (0)
  274. #define TOR_SIMPLEQ_REMOVE_HEAD(head, field) do { \
  275. if (((head)->sqh_first = (head)->sqh_first->field.sqe_next) == NULL) \
  276. (head)->sqh_last = &(head)->sqh_first; \
  277. } while (0)
  278. #define TOR_SIMPLEQ_REMOVE_AFTER(head, elm, field) do { \
  279. if (((elm)->field.sqe_next = (elm)->field.sqe_next->field.sqe_next) \
  280. == NULL) \
  281. (head)->sqh_last = &(elm)->field.sqe_next; \
  282. } while (0)
  283. /*
  284. * Tail queue definitions.
  285. */
  286. #define TOR_TAILQ_HEAD(name, type) \
  287. struct name { \
  288. struct type *tqh_first; /* first element */ \
  289. struct type **tqh_last; /* addr of last next element */ \
  290. }
  291. #define TOR_TAILQ_HEAD_INITIALIZER(head) \
  292. { NULL, &(head).tqh_first }
  293. #define TOR_TAILQ_ENTRY(type) \
  294. struct { \
  295. struct type *tqe_next; /* next element */ \
  296. struct type **tqe_prev; /* address of previous next element */ \
  297. }
  298. /*
  299. * tail queue access methods
  300. */
  301. #define TOR_TAILQ_FIRST(head) ((head)->tqh_first)
  302. #define TOR_TAILQ_END(head) NULL
  303. #define TOR_TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
  304. #define TOR_TAILQ_LAST(head, headname) \
  305. (*(((struct headname *)((head)->tqh_last))->tqh_last))
  306. /* XXX */
  307. #define TOR_TAILQ_PREV(elm, headname, field) \
  308. (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last))
  309. /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */
  310. #define TOR_TAILQ_EMPTY(head) \
  311. ((TOR_TAILQ_FIRST(head) == TOR_TAILQ_END(head)) || 0)
  312. #define TOR_TAILQ_FOREACH(var, head, field) \
  313. for((var) = TOR_TAILQ_FIRST(head); \
  314. (var) != TOR_TAILQ_END(head); \
  315. (var) = TOR_TAILQ_NEXT(var, field))
  316. #define TOR_TAILQ_FOREACH_SAFE(var, head, field, tvar) \
  317. for ((var) = TOR_TAILQ_FIRST(head); \
  318. (var) != TOR_TAILQ_END(head) && \
  319. ((tvar) = TOR_TAILQ_NEXT(var, field), 1); \
  320. (var) = (tvar))
  321. #define TOR_TAILQ_FOREACH_REVERSE(var, head, headname, field) \
  322. for((var) = TOR_TAILQ_LAST(head, headname); \
  323. (var) != TOR_TAILQ_END(head); \
  324. (var) = TOR_TAILQ_PREV(var, headname, field))
  325. #define TOR_TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, tvar) \
  326. for ((var) = TOR_TAILQ_LAST(head, headname); \
  327. (var) != TOR_TAILQ_END(head) && \
  328. ((tvar) = TOR_TAILQ_PREV(var, headname, field), 1); \
  329. (var) = (tvar))
  330. /*
  331. * Tail queue functions.
  332. */
  333. #define TOR_TAILQ_INIT(head) do { \
  334. (head)->tqh_first = NULL; \
  335. (head)->tqh_last = &(head)->tqh_first; \
  336. } while (0)
  337. #define TOR_TAILQ_INSERT_HEAD(head, elm, field) do { \
  338. if (((elm)->field.tqe_next = (head)->tqh_first) != NULL) \
  339. (head)->tqh_first->field.tqe_prev = \
  340. &(elm)->field.tqe_next; \
  341. else \
  342. (head)->tqh_last = &(elm)->field.tqe_next; \
  343. (head)->tqh_first = (elm); \
  344. (elm)->field.tqe_prev = &(head)->tqh_first; \
  345. } while (0)
  346. #define TOR_TAILQ_INSERT_TAIL(head, elm, field) do { \
  347. (elm)->field.tqe_next = NULL; \
  348. (elm)->field.tqe_prev = (head)->tqh_last; \
  349. *(head)->tqh_last = (elm); \
  350. (head)->tqh_last = &(elm)->field.tqe_next; \
  351. } while (0)
  352. #define TOR_TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \
  353. if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\
  354. (elm)->field.tqe_next->field.tqe_prev = \
  355. &(elm)->field.tqe_next; \
  356. else \
  357. (head)->tqh_last = &(elm)->field.tqe_next; \
  358. (listelm)->field.tqe_next = (elm); \
  359. (elm)->field.tqe_prev = &(listelm)->field.tqe_next; \
  360. } while (0)
  361. #define TOR_TAILQ_INSERT_BEFORE(listelm, elm, field) do { \
  362. (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \
  363. (elm)->field.tqe_next = (listelm); \
  364. *(listelm)->field.tqe_prev = (elm); \
  365. (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \
  366. } while (0)
  367. #define TOR_TAILQ_REMOVE(head, elm, field) do { \
  368. if (((elm)->field.tqe_next) != NULL) \
  369. (elm)->field.tqe_next->field.tqe_prev = \
  370. (elm)->field.tqe_prev; \
  371. else \
  372. (head)->tqh_last = (elm)->field.tqe_prev; \
  373. *(elm)->field.tqe_prev = (elm)->field.tqe_next; \
  374. TOR_Q_INVALIDATE_((elm)->field.tqe_prev); \
  375. TOR_Q_INVALIDATE_((elm)->field.tqe_next); \
  376. } while (0)
  377. #define TOR_TAILQ_REPLACE(head, elm, elm2, field) do { \
  378. if (((elm2)->field.tqe_next = (elm)->field.tqe_next) != NULL) \
  379. (elm2)->field.tqe_next->field.tqe_prev = \
  380. &(elm2)->field.tqe_next; \
  381. else \
  382. (head)->tqh_last = &(elm2)->field.tqe_next; \
  383. (elm2)->field.tqe_prev = (elm)->field.tqe_prev; \
  384. *(elm2)->field.tqe_prev = (elm2); \
  385. TOR_Q_INVALIDATE_((elm)->field.tqe_prev); \
  386. TOR_Q_INVALIDATE_((elm)->field.tqe_next); \
  387. } while (0)
  388. /*
  389. * Circular queue definitions.
  390. */
  391. #define TOR_CIRCLEQ_HEAD(name, type) \
  392. struct name { \
  393. struct type *cqh_first; /* first element */ \
  394. struct type *cqh_last; /* last element */ \
  395. }
  396. #define TOR_CIRCLEQ_HEAD_INITIALIZER(head) \
  397. { TOR_CIRCLEQ_END(&head), TOR_CIRCLEQ_END(&head) }
  398. #define TOR_CIRCLEQ_ENTRY(type) \
  399. struct { \
  400. struct type *cqe_next; /* next element */ \
  401. struct type *cqe_prev; /* previous element */ \
  402. }
  403. /*
  404. * Circular queue access methods
  405. */
  406. #define TOR_CIRCLEQ_FIRST(head) ((head)->cqh_first)
  407. #define TOR_CIRCLEQ_LAST(head) ((head)->cqh_last)
  408. #define TOR_CIRCLEQ_END(head) ((void *)(head))
  409. #define TOR_CIRCLEQ_NEXT(elm, field) ((elm)->field.cqe_next)
  410. #define TOR_CIRCLEQ_PREV(elm, field) ((elm)->field.cqe_prev)
  411. /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */
  412. #define TOR_CIRCLEQ_EMPTY(head) \
  413. ((TOR_CIRCLEQ_FIRST(head) == TOR_CIRCLEQ_END(head)) || 0)
  414. #define TOR_CIRCLEQ_FOREACH(var, head, field) \
  415. for((var) = TOR_CIRCLEQ_FIRST(head); \
  416. (var) != TOR_CIRCLEQ_END(head); \
  417. (var) = TOR_CIRCLEQ_NEXT(var, field))
  418. #define TOR_CIRCLEQ_FOREACH_SAFE(var, head, field, tvar) \
  419. for ((var) = TOR_CIRCLEQ_FIRST(head); \
  420. (var) != TOR_CIRCLEQ_END(head) && \
  421. ((tvar) = TOR_CIRCLEQ_NEXT(var, field), 1); \
  422. (var) = (tvar))
  423. #define TOR_CIRCLEQ_FOREACH_REVERSE(var, head, field) \
  424. for((var) = TOR_CIRCLEQ_LAST(head); \
  425. (var) != TOR_CIRCLEQ_END(head); \
  426. (var) = TOR_CIRCLEQ_PREV(var, field))
  427. #define TOR_CIRCLEQ_FOREACH_REVERSE_SAFE(var, head, headname, field, tvar) \
  428. for ((var) = TOR_CIRCLEQ_LAST(head, headname); \
  429. (var) != TOR_CIRCLEQ_END(head) && \
  430. ((tvar) = TOR_CIRCLEQ_PREV(var, headname, field), 1); \
  431. (var) = (tvar))
  432. /*
  433. * Circular queue functions.
  434. */
  435. #define TOR_CIRCLEQ_INIT(head) do { \
  436. (head)->cqh_first = TOR_CIRCLEQ_END(head); \
  437. (head)->cqh_last = TOR_CIRCLEQ_END(head); \
  438. } while (0)
  439. #define TOR_CIRCLEQ_INSERT_AFTER(head, listelm, elm, field) do { \
  440. (elm)->field.cqe_next = (listelm)->field.cqe_next; \
  441. (elm)->field.cqe_prev = (listelm); \
  442. if ((listelm)->field.cqe_next == TOR_CIRCLEQ_END(head)) \
  443. (head)->cqh_last = (elm); \
  444. else \
  445. (listelm)->field.cqe_next->field.cqe_prev = (elm); \
  446. (listelm)->field.cqe_next = (elm); \
  447. } while (0)
  448. #define TOR_CIRCLEQ_INSERT_BEFORE(head, listelm, elm, field) do { \
  449. (elm)->field.cqe_next = (listelm); \
  450. (elm)->field.cqe_prev = (listelm)->field.cqe_prev; \
  451. if ((listelm)->field.cqe_prev == TOR_CIRCLEQ_END(head)) \
  452. (head)->cqh_first = (elm); \
  453. else \
  454. (listelm)->field.cqe_prev->field.cqe_next = (elm); \
  455. (listelm)->field.cqe_prev = (elm); \
  456. } while (0)
  457. #define TOR_CIRCLEQ_INSERT_HEAD(head, elm, field) do { \
  458. (elm)->field.cqe_next = (head)->cqh_first; \
  459. (elm)->field.cqe_prev = TOR_CIRCLEQ_END(head); \
  460. if ((head)->cqh_last == TOR_CIRCLEQ_END(head)) \
  461. (head)->cqh_last = (elm); \
  462. else \
  463. (head)->cqh_first->field.cqe_prev = (elm); \
  464. (head)->cqh_first = (elm); \
  465. } while (0)
  466. #define TOR_CIRCLEQ_INSERT_TAIL(head, elm, field) do { \
  467. (elm)->field.cqe_next = TOR_CIRCLEQ_END(head); \
  468. (elm)->field.cqe_prev = (head)->cqh_last; \
  469. if ((head)->cqh_first == TOR_CIRCLEQ_END(head)) \
  470. (head)->cqh_first = (elm); \
  471. else \
  472. (head)->cqh_last->field.cqe_next = (elm); \
  473. (head)->cqh_last = (elm); \
  474. } while (0)
  475. #define TOR_CIRCLEQ_REMOVE(head, elm, field) do { \
  476. if ((elm)->field.cqe_next == TOR_CIRCLEQ_END(head)) \
  477. (head)->cqh_last = (elm)->field.cqe_prev; \
  478. else \
  479. (elm)->field.cqe_next->field.cqe_prev = \
  480. (elm)->field.cqe_prev; \
  481. if ((elm)->field.cqe_prev == TOR_CIRCLEQ_END(head)) \
  482. (head)->cqh_first = (elm)->field.cqe_next; \
  483. else \
  484. (elm)->field.cqe_prev->field.cqe_next = \
  485. (elm)->field.cqe_next; \
  486. TOR_Q_INVALIDATE_((elm)->field.cqe_prev); \
  487. TOR_Q_INVALIDATE_((elm)->field.cqe_next); \
  488. } while (0)
  489. #define TOR_CIRCLEQ_REPLACE(head, elm, elm2, field) do { \
  490. if (((elm2)->field.cqe_next = (elm)->field.cqe_next) == \
  491. TOR_CIRCLEQ_END(head)) \
  492. (head).cqh_last = (elm2); \
  493. else \
  494. (elm2)->field.cqe_next->field.cqe_prev = (elm2); \
  495. if (((elm2)->field.cqe_prev = (elm)->field.cqe_prev) == \
  496. TOR_CIRCLEQ_END(head)) \
  497. (head).cqh_first = (elm2); \
  498. else \
  499. (elm2)->field.cqe_prev->field.cqe_next = (elm2); \
  500. TOR_Q_INVALIDATE_((elm)->field.cqe_prev); \
  501. TOR_Q_INVALIDATE_((elm)->field.cqe_next); \
  502. } while (0)
  503. #endif /* !_SYS_QUEUE_H_ */