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