llist.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #ifndef foollistfoo
  2. #define foollistfoo
  3. /***
  4. This file is part of avahi.
  5. avahi is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU Lesser General Public License as
  7. published by the Free Software Foundation; either version 2.1 of the
  8. License, or (at your option) any later version.
  9. avahi is distributed in the hope that it will be useful, but WITHOUT
  10. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
  12. Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with avahi; if not, write to the Free Software
  15. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  16. USA.
  17. ***/
  18. /** \file llist.h A simple macro based linked list implementation */
  19. #include <assert.h>
  20. #include <avahi-common/cdecl.h>
  21. AVAHI_C_DECL_BEGIN
  22. /** The head of the linked list. Use this in the structure that shall
  23. * contain the head of the linked list */
  24. #define AVAHI_LLIST_HEAD(t,name) t *name
  25. /** The pointers in the linked list's items. Use this in the item structure */
  26. #define AVAHI_LLIST_FIELDS(t,name) t *name##_next, *name##_prev
  27. /** Initialize the list's head */
  28. #define AVAHI_LLIST_HEAD_INIT(t,head) do { (head) = NULL; } while(0)
  29. /** Initialize a list item */
  30. #define AVAHI_LLIST_INIT(t,name,item) do { \
  31. t *_item = (item); \
  32. assert(_item); \
  33. _item->name##_prev = _item->name##_next = NULL; \
  34. } while(0)
  35. /** Prepend an item to the list */
  36. #define AVAHI_LLIST_PREPEND(t,name,head,item) do { \
  37. t **_head = &(head), *_item = (item); \
  38. assert(_item); \
  39. if ((_item->name##_next = *_head)) \
  40. _item->name##_next->name##_prev = _item; \
  41. _item->name##_prev = NULL; \
  42. *_head = _item; \
  43. } while (0)
  44. /** Remove an item from the list */
  45. #define AVAHI_LLIST_REMOVE(t,name,head,item) do { \
  46. t **_head = &(head), *_item = (item); \
  47. assert(_item); \
  48. if (_item->name##_next) \
  49. _item->name##_next->name##_prev = _item->name##_prev; \
  50. if (_item->name##_prev) \
  51. _item->name##_prev->name##_next = _item->name##_next; \
  52. else {\
  53. assert(*_head == _item); \
  54. *_head = _item->name##_next; \
  55. } \
  56. _item->name##_next = _item->name##_prev = NULL; \
  57. } while(0)
  58. AVAHI_C_DECL_END
  59. #endif