-
Notifications
You must be signed in to change notification settings - Fork 3
/
dlist.h
155 lines (141 loc) · 4.89 KB
/
dlist.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
* Double linked list implementation
*
* Authors: Simon Kuenzer <[email protected]>
*
*
* Copyright (c) 2013-2017, NEC Europe Ltd., NEC Corporation All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef _DLIST_H_
#define _DLIST_H_
#include <stdint.h>
#include <errno.h>
#include "likely.h"
struct dlist_el {
void *next;
void *prev;
};
#define dlist_el(dlname) \
struct dlist_el (dlname)
struct dlist_head {
void *first;
void *last;
};
#define dlist_head(dlname) \
struct dlist_head (dlname)
#define dlist_init_head(head)\
do { \
(head).first = NULL; \
(head).last = NULL; \
} while (0)
#define dlist_init_el(el, dlname) /* optional as long as */ \
/* dlist_is_linked() is not used */ \
do { \
(el)->dlname.next = NULL; \
(el)->dlname.prev = NULL; \
} while (0)
#define dlist_is_empty(head) \
((head).first == NULL)
#define dlist_next_el(el, dlname) \
((typeof((el))) (el)->dlname.next)
#define dlist_prev_el(el, dlname) \
((typeof((el))) (el)->dlname.prev)
#define dlist_first_el(head, eltype) \
((eltype *) ((head).first))
#define dlist_last_el(head, eltype) \
((eltype *) ((head).last))
/* Note: This function only supports checking if an element is linked into
* a specific list. It will fail as soon as the element is linked to a
* different list (with same dlname) than checked against */
#define dlist_is_linked(el, head, dlname) /* requires dlist_init_el() */ \
(((el)->dlname.prev != NULL || (el)->dlname.next != NULL) || \
((head).first == (el) || (head).last == (el)))
#define dlist_unlink(el, head, dlname) \
do { \
/* element part of this list? (brief check,
* works only if element is at the beginning
* or at the end of the list) */ \
BUG_ON(!(el)->dlname.prev && (head).first != (el)); \
BUG_ON(!(el)->dlname.next && (head).last != (el)); \
\
if ((el)->dlname.prev) { \
((typeof((el))) (el)->dlname.prev)->dlname.next = (el)->dlname.next; \
} else { \
(head).first = (el)->dlname.next; \
} \
if ((el)->dlname.next) { \
((typeof((el))) (el)->dlname.next)->dlname.prev = (el)->dlname.prev; \
} else { \
(head).last = (el)->dlname.prev; \
} \
dlist_init_el((el), dlname); \
} while(0)
#define dlist_foreach(el, head, dlname) \
for((el) = ((typeof((el))) (head).first); \
(el) != NULL; \
(el) = dlist_next_el((el), dlname))
#define dlist_foreach_reverse(el, head, dlname) \
for((el) = ((typeof((el))) (head).last); \
(el) != NULL; \
(el) = dlist_prev_el((el), dlname))
#define dlist_append(el, head, dlname) \
do { \
if (dlist_is_empty((head))) { \
(head).first = (el); \
(el)->dlname.prev = NULL; \
} else { \
((typeof((el))) (head).last)->dlname.next = (el); \
(el)->dlname.prev = (head).last; \
} \
(el)->dlname.next = NULL; \
(head).last = (el); \
} while(0)
#define dlist_relink_tail(el, head, dlname) \
do { \
dlist_unlink((el), (head), dlname); \
dlist_append((el), (head), dlname); \
} while(0)
#define dlist_prepend(el, head, dlname) \
do { \
if (dlist_is_empty((head))) { \
(head).last = (el); \
(el)->dlname.next = NULL; \
} else { \
((typeof((el))) (head).first)->dlname.prev = (el); \
(el)->dlname.next = (head).first; \
} \
(el)->dlname.prev = NULL; \
(head).first = (el); \
} while(0)
#define dlist_relink_head(el, head, dlname) \
do { \
dlist_unlink((el), (head), dlname); \
dlist_prepend((el), (head), dlname); \
} while(0)
#endif /* _DLIST_H_ */