]>
git.proxmox.com Git - mirror_frr.git/blob - lib/linklist.h
2 * Copyright (C) 1997, 2000 Kunihiro Ishiguro
4 * This file is part of GNU Zebra.
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
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.
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
21 #ifndef _ZEBRA_LINKLIST_H
22 #define _ZEBRA_LINKLIST_H
24 /* listnodes must always contain data to be valid. Adding an empty node
25 * to a list is invalid
28 struct listnode
*next
;
29 struct listnode
*prev
;
31 /* private member, use getdata() to retrieve, do not access directly */
36 struct listnode
*head
;
37 struct listnode
*tail
;
39 /* invariant: count is the number of listnodes in the list */
43 * Returns -1 if val1 < val2, 0 if equal?, 1 if val1 > val2.
44 * Used as definition of sorted for listnode_add_sort
46 int (*cmp
)(void *val1
, void *val2
);
48 /* callback to free user-owned data when listnode is deleted. supplying
49 * this callback is very much encouraged!
51 void (*del
)(void *val
);
54 #define listnextnode(X) ((X) ? ((X)->next) : NULL)
55 #define listnextnode_unchecked(X) ((X)->next)
56 #define listhead(X) ((X) ? ((X)->head) : NULL)
57 #define listtail(X) ((X) ? ((X)->tail) : NULL)
58 #define listcount(X) ((X)->count)
59 #define list_isempty(X) ((X)->head == NULL && (X)->tail == NULL)
60 /* return X->data only if X and X->data are not NULL */
61 #define listgetdata(X) (assert(X), assert((X)->data != NULL), (X)->data)
64 * Create a new linked list.
67 * the created linked list
69 extern struct list
*list_new(void);
72 * Add a new element to the tail of a list.
82 extern void listnode_add(struct list
*list
, void *data
);
85 * Insert a new element into a list with insertion sort.
87 * If list->cmp is set, this function is used to determine the position to
88 * insert the new element. If it is not set, this function is equivalent to
99 extern void listnode_add_sort(struct list
*list
, void *val
);
102 * Insert a new element into a list after another element.
110 * listnode to insert after
116 * pointer to newly created listnode that contains the inserted data
118 extern struct listnode
*listnode_add_after(struct list
*list
,
119 struct listnode
*pp
, void *data
);
122 * Insert a new element into a list before another element.
130 * listnode to insert before
136 * pointer to newly created listnode that contains the inserted data
138 extern struct listnode
*listnode_add_before(struct list
*list
,
139 struct listnode
*pp
, void *data
);
142 * Move a node to the tail of a list.
150 * node to move to tail
152 extern void listnode_move_to_tail(struct list
*list
, struct listnode
*node
);
155 * Delete an element from a list.
163 * data to insert into list
165 extern void listnode_delete(struct list
*list
, void *data
);
168 * Find the listnode corresponding to an element in a list.
177 * pointer to listnode storing the given data if found, NULL otherwise
179 extern struct listnode
*listnode_lookup(struct list
*list
, void *data
);
182 * Retrieve the element at the head of a list.
188 * data at head of list, or NULL if list is empty
190 extern void *listnode_head(struct list
*list
);
201 extern struct list
*list_dup(struct list
*l
);
204 * Sort a list in place.
206 * The sorting algorithm used is quicksort. Runtimes are equivalent to those of
207 * quicksort plus N. The sort is not stable.
209 * For portability reasons, the comparison function takes a pointer to pointer
210 * to void. This pointer should be dereferenced to get the actual data pointer.
211 * It is always safe to do this.
217 * comparison function for quicksort. Should return less than, equal to or
218 * greater than zero if the first argument is less than, equal to or greater
219 * than the second argument.
221 extern void list_sort(struct list
*list
,
222 int (*cmp
)(const void **, const void **));
225 * The usage of list_delete is being transitioned to pass in
226 * the double pointer to remove use after free's.
227 * list_free usage is deprecated, it leads to memory leaks
228 * of the linklist nodes. Please use list_delete_and_null
230 * In Oct of 2018, rename list_delete_and_null to list_delete
231 * and remove list_delete_original and the list_delete #define
232 * Additionally remove list_free entirely
234 #if defined(VERSION_TYPE_DEV) && CONFDATE > 20181001
235 CPP_NOTICE("list_delete without double pointer is deprecated, please fixup")
239 * Delete a list and NULL its pointer.
241 * If non-null, list->del is called with each data element.
244 * pointer to list pointer; this will be set to NULL after the list has been
247 extern void list_delete_and_null(struct list
**plist
);
252 * If non-null, list->del is called with each data element.
255 * pointer to list pointer
257 extern void list_delete_original(struct list
*list
);
258 #define list_delete(X) \
259 list_delete_original((X)) \
260 CPP_WARN("Please transition to using list_delete_and_null")
261 #define list_free(X) \
262 list_delete_original((X)) \
263 CPP_WARN("Please transition tousing list_delete_and_null")
266 * Delete all nodes from a list without deleting the list itself.
268 * If non-null, list->del is called with each data element.
273 extern void list_delete_all_node(struct list
*list
);
276 * Delete a node from a list.
278 * list->del is not called with the data associated with the node.
288 extern void list_delete_node(struct list
*list
, struct listnode
*node
);
291 * Append a list to an existing list.
293 * Runtime is O(N) where N = listcount(add).
301 extern void list_add_list(struct list
*list
, struct list
*add
);
303 /* List iteration macro.
304 * Usage: for (ALL_LIST_ELEMENTS (...) { ... }
305 * It is safe to delete the listnode using this macro.
307 #define ALL_LIST_ELEMENTS(list, node, nextnode, data) \
308 (node) = listhead(list), ((data) = NULL); \
310 && ((data) = listgetdata(node), (nextnode) = node->next, 1); \
311 (node) = (nextnode), ((data) = NULL)
313 /* read-only list iteration macro.
314 * Usage: as per ALL_LIST_ELEMENTS, but not safe to delete the listnode Only
315 * use this macro when it is *immediately obvious* the listnode is not
316 * deleted in the body of the loop. Does not have forward-reference overhead
319 #define ALL_LIST_ELEMENTS_RO(list, node, data) \
320 (node) = listhead(list), ((data) = NULL); \
321 (node) != NULL && ((data) = listgetdata(node), 1); \
322 (node) = listnextnode(node), ((data) = NULL)
324 /* these *do not* cleanup list nodes and referenced data, as the functions
325 * do - these macros simply {de,at}tach a listnode from/to a list.
328 /* List node attach macro. */
329 #define LISTNODE_ATTACH(L, N) \
331 (N)->prev = (L)->tail; \
333 if ((L)->head == NULL) \
336 (L)->tail->next = (N); \
341 /* List node detach macro. */
342 #define LISTNODE_DETACH(L, N) \
345 (N)->prev->next = (N)->next; \
347 (L)->head = (N)->next; \
349 (N)->next->prev = (N)->prev; \
351 (L)->tail = (N)->prev; \
355 #endif /* _ZEBRA_LINKLIST_H */