source: mainline/kernel/generic/include/adt/list.h@ b0c2075

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since b0c2075 was feeac0d, checked in by Jiri Svoboda <jiri@…>, 12 years ago

Simplify use of list_foreach.

  • Property mode set to 100644
File size: 8.5 KB
Line 
1/*
2 * Copyright (c) 2001-2004 Jakub Jermar
3 * Copyright (c) 2013 Jiri Svoboda
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - 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 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/** @addtogroup genericadt
31 * @{
32 */
33/** @file
34 */
35
36#ifndef KERN_LIST_H_
37#define KERN_LIST_H_
38
39#include <typedefs.h>
40#include <trace.h>
41
42/** Doubly linked list link. */
43typedef struct link {
44 struct link *prev; /**< Pointer to the previous item in the list. */
45 struct link *next; /**< Pointer to the next item in the list. */
46} link_t;
47
48/** Doubly linked list. */
49typedef struct list {
50 link_t head; /**< List head. Does not have any data. */
51} list_t;
52
53/** Declare and initialize statically allocated list.
54 *
55 * @param name Name of the new statically allocated list.
56 *
57 */
58#define LIST_INITIALIZE(name) \
59 list_t name = { \
60 .head = { \
61 .prev = &(name).head, \
62 .next = &(name).head \
63 } \
64 }
65
66#define list_get_instance(link, type, member) \
67 ((type *) (((void *)(link)) - list_link_to_void(&(((type *) NULL)->member))))
68
69#define list_foreach(list, member, itype, iterator) \
70 for (itype *iterator = NULL; iterator == NULL; iterator =(itype *)1) \
71 for (link_t *_link = (list).head.next; \
72 iterator = list_get_instance(_link, itype, member), \
73 _link != &(list).head; _link = _link->next)
74
75#define assert_link_not_used(link) \
76 ASSERT(((link)->prev == NULL) && ((link)->next == NULL))
77
78/** Initialize doubly-linked circular list link
79 *
80 * Initialize doubly-linked list link.
81 *
82 * @param link Pointer to link_t structure to be initialized.
83 *
84 */
85NO_TRACE static inline void link_initialize(link_t *link)
86{
87 link->prev = NULL;
88 link->next = NULL;
89}
90
91/** Initialize doubly-linked circular list
92 *
93 * Initialize doubly-linked circular list.
94 *
95 * @param list Pointer to list_t structure.
96 *
97 */
98NO_TRACE static inline void list_initialize(list_t *list)
99{
100 list->head.prev = &list->head;
101 list->head.next = &list->head;
102}
103
104/** Insert item before another item in doubly-linked circular list.
105 *
106 */
107static inline void list_insert_before(link_t *lnew, link_t *lold)
108{
109 lnew->next = lold;
110 lnew->prev = lold->prev;
111 lold->prev->next = lnew;
112 lold->prev = lnew;
113}
114
115/** Insert item after another item in doubly-linked circular list.
116 *
117 */
118static inline void list_insert_after(link_t *lnew, link_t *lold)
119{
120 lnew->prev = lold;
121 lnew->next = lold->next;
122 lold->next->prev = lnew;
123 lold->next = lnew;
124}
125
126/** Add item to the beginning of doubly-linked circular list
127 *
128 * Add item to the beginning of doubly-linked circular list.
129 *
130 * @param link Pointer to link_t structure to be added.
131 * @param list Pointer to list_t structure.
132 *
133 */
134NO_TRACE static inline void list_prepend(link_t *link, list_t *list)
135{
136 list_insert_after(link, &list->head);
137}
138
139/** Add item to the end of doubly-linked circular list
140 *
141 * Add item to the end of doubly-linked circular list.
142 *
143 * @param link Pointer to link_t structure to be added.
144 * @param list Pointer to list_t structure.
145 *
146 */
147NO_TRACE static inline void list_append(link_t *link, list_t *list)
148{
149 list_insert_before(link, &list->head);
150}
151
152/** Remove item from doubly-linked circular list
153 *
154 * Remove item from doubly-linked circular list.
155 *
156 * @param link Pointer to link_t structure to be removed from the list
157 * it is contained in.
158 *
159 */
160NO_TRACE static inline void list_remove(link_t *link)
161{
162 if ((link->prev != NULL) && (link->next != NULL)) {
163 link->next->prev = link->prev;
164 link->prev->next = link->next;
165 }
166
167 link_initialize(link);
168}
169
170/** Query emptiness of doubly-linked circular list
171 *
172 * Query emptiness of doubly-linked circular list.
173 *
174 * @param list Pointer to lins_t structure.
175 *
176 */
177NO_TRACE static inline int list_empty(const list_t *list)
178{
179 return (list->head.next == &list->head);
180}
181
182/** Get first item in list.
183 *
184 * @param list Pointer to list_t structure.
185 *
186 * @return Head item of the list.
187 * @return NULL if the list is empty.
188 */
189static inline link_t *list_first(const list_t *list)
190{
191 return ((list->head.next == &list->head) ? NULL : list->head.next);
192}
193
194/** Get last item in list.
195 *
196 * @param list Pointer to list_t structure.
197 *
198 * @return Head item of the list.
199 * @return NULL if the list is empty.
200 */
201static inline link_t *list_last(list_t *list)
202{
203 return ((list->head.prev == &list->head) ? NULL : list->head.prev);
204}
205
206/** Get next item in list.
207 *
208 * @param link Current item link
209 * @param list List containing @a link
210 *
211 * @return Next item or NULL if @a link is the last item.
212 */
213static inline link_t *list_next(link_t *link, const list_t *list)
214{
215 return (link->next == &list->head) ? NULL : link->next;
216}
217
218/** Get previous item in list.
219 *
220 * @param link Current item link
221 * @param list List containing @a link
222 *
223 * @return Previous item or NULL if @a link is the first item.
224 */
225static inline link_t *list_prev(link_t *link, const list_t *list)
226{
227 return (link->prev == &list->head) ? NULL : link->prev;
228}
229
230/** Split or concatenate headless doubly-linked circular list
231 *
232 * Split or concatenate headless doubly-linked circular list.
233 *
234 * Note that the algorithm works both directions:
235 * concatenates splitted lists and splits concatenated lists.
236 *
237 * @param part1 Pointer to link_t structure leading the first
238 * (half of the headless) list.
239 * @param part2 Pointer to link_t structure leading the second
240 * (half of the headless) list.
241 *
242 */
243NO_TRACE static inline void headless_list_split_or_concat(link_t *part1, link_t *part2)
244{
245 part1->prev->next = part2;
246 part2->prev->next = part1;
247
248 link_t *hlp = part1->prev;
249
250 part1->prev = part2->prev;
251 part2->prev = hlp;
252}
253
254/** Split headless doubly-linked circular list
255 *
256 * Split headless doubly-linked circular list.
257 *
258 * @param part1 Pointer to link_t structure leading
259 * the first half of the headless list.
260 * @param part2 Pointer to link_t structure leading
261 * the second half of the headless list.
262 *
263 */
264NO_TRACE static inline void headless_list_split(link_t *part1, link_t *part2)
265{
266 headless_list_split_or_concat(part1, part2);
267}
268
269/** Concatenate two headless doubly-linked circular lists
270 *
271 * Concatenate two headless doubly-linked circular lists.
272 *
273 * @param part1 Pointer to link_t structure leading
274 * the first headless list.
275 * @param part2 Pointer to link_t structure leading
276 * the second headless list.
277 *
278 */
279NO_TRACE static inline void headless_list_concat(link_t *part1, link_t *part2)
280{
281 headless_list_split_or_concat(part1, part2);
282}
283
284/** Get n-th item in a list.
285 *
286 * @param list Pointer to link_t structure representing the list.
287 * @param n Item number (indexed from zero).
288 *
289 * @return n-th item of the list.
290 * @return NULL if no n-th item found.
291 *
292 */
293static inline link_t *list_nth(list_t *list, unsigned int n)
294{
295 unsigned int cnt = 0;
296 link_t *link;
297
298 link = list_first(list);
299 while (link != NULL) {
300 if (cnt == n)
301 return link;
302
303 cnt++;
304 link = list_next(link, list);
305 }
306
307 return NULL;
308}
309
310/** Verify that argument type is a pointer to link_t (at compile time).
311 *
312 * This can be used to check argument type in a macro.
313 */
314static inline const void *list_link_to_void(const link_t *link)
315{
316 return link;
317}
318
319extern int list_member(const link_t *, const list_t *);
320extern void list_concat(list_t *, list_t *);
321extern unsigned int list_count(const list_t *);
322
323#endif
324
325/** @}
326 */
Note: See TracBrowser for help on using the repository browser.