]> git.proxmox.com Git - mirror_frr.git/blob - lib/linklist.h
*: reindent
[mirror_frr.git] / lib / linklist.h
1 /* Generic linked list
2 * Copyright (C) 1997, 2000 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef _ZEBRA_LINKLIST_H
22 #define _ZEBRA_LINKLIST_H
23
24 /* listnodes must always contain data to be valid. Adding an empty node
25 * to a list is invalid
26 */
27 struct listnode {
28 struct listnode *next;
29 struct listnode *prev;
30
31 /* private member, use getdata() to retrieve, do not access directly */
32 void *data;
33 };
34
35 struct list {
36 struct listnode *head;
37 struct listnode *tail;
38
39 /* invariant: count is the number of listnodes in the list */
40 unsigned int count;
41
42 /*
43 * Returns -1 if val1 < val2, 0 if equal?, 1 if val1 > val2.
44 * Used as definition of sorted for listnode_add_sort
45 */
46 int (*cmp)(void *val1, void *val2);
47
48 /* callback to free user-owned data when listnode is deleted. supplying
49 * this callback is very much encouraged!
50 */
51 void (*del)(void *val);
52 };
53
54 #define listnextnode(X) ((X) ? ((X)->next) : NULL)
55 #define listhead(X) ((X) ? ((X)->head) : NULL)
56 #define listtail(X) ((X) ? ((X)->tail) : NULL)
57 #define listcount(X) ((X)->count)
58 #define list_isempty(X) ((X)->head == NULL && (X)->tail == NULL)
59 #define listgetdata(X) (assert((X)->data != NULL), (X)->data)
60
61 /* Prototypes. */
62 extern struct list *
63 list_new(void); /* encouraged: set list.del callback on new lists */
64 extern void list_free(struct list *);
65
66 extern void listnode_add(struct list *, void *);
67 extern void listnode_add_sort(struct list *, void *);
68 extern struct listnode *listnode_add_after(struct list *, struct listnode *,
69 void *);
70 extern struct listnode *listnode_add_before(struct list *, struct listnode *,
71 void *);
72 extern void listnode_move_to_tail(struct list *, struct listnode *);
73 extern void listnode_delete(struct list *, void *);
74 extern struct listnode *listnode_lookup(struct list *, void *);
75 extern void *listnode_head(struct list *);
76
77 extern void list_delete(struct list *);
78 extern void list_delete_all_node(struct list *);
79
80 /* For ospfd and ospf6d. */
81 extern void list_delete_node(struct list *, struct listnode *);
82
83 /* For ospf_spf.c */
84 extern void list_add_list(struct list *, struct list *);
85
86 /* List iteration macro.
87 * Usage: for (ALL_LIST_ELEMENTS (...) { ... }
88 * It is safe to delete the listnode using this macro.
89 */
90 #define ALL_LIST_ELEMENTS(list, node, nextnode, data) \
91 (node) = listhead(list), ((data) = NULL); \
92 (node) != NULL \
93 && ((data) = listgetdata(node), (nextnode) = node->next, 1); \
94 (node) = (nextnode), ((data) = NULL)
95
96 /* read-only list iteration macro.
97 * Usage: as per ALL_LIST_ELEMENTS, but not safe to delete the listnode Only
98 * use this macro when it is *immediately obvious* the listnode is not
99 * deleted in the body of the loop. Does not have forward-reference overhead
100 * of previous macro.
101 */
102 #define ALL_LIST_ELEMENTS_RO(list, node, data) \
103 (node) = listhead(list), ((data) = NULL); \
104 (node) != NULL && ((data) = listgetdata(node), 1); \
105 (node) = listnextnode(node), ((data) = NULL)
106
107 /* these *do not* cleanup list nodes and referenced data, as the functions
108 * do - these macros simply {de,at}tach a listnode from/to a list.
109 */
110
111 /* List node attach macro. */
112 #define LISTNODE_ATTACH(L, N) \
113 do { \
114 (N)->prev = (L)->tail; \
115 (N)->next = NULL; \
116 if ((L)->head == NULL) \
117 (L)->head = (N); \
118 else \
119 (L)->tail->next = (N); \
120 (L)->tail = (N); \
121 (L)->count++; \
122 } while (0)
123
124 /* List node detach macro. */
125 #define LISTNODE_DETACH(L, N) \
126 do { \
127 if ((N)->prev) \
128 (N)->prev->next = (N)->next; \
129 else \
130 (L)->head = (N)->next; \
131 if ((N)->next) \
132 (N)->next->prev = (N)->prev; \
133 else \
134 (L)->tail = (N)->prev; \
135 (L)->count--; \
136 } while (0)
137
138 #endif /* _ZEBRA_LINKLIST_H */