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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
#ifndef TARANTOOL_RLIST_H_INCLUDED
#define TARANTOOL_RLIST_H_INCLUDED
/*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``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
* <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.
*/
#if defined(__cplusplus)
extern "C" {
#endif /* defined(__cplusplus) */
#ifndef typeof
/* TODO: 'typeof' is a GNU extension */
#define typeof __typeof__
#endif
/**
* list entry and head structure
*/
struct rlist {
struct rlist *prev;
struct rlist *next;
};
/**
* init list head (or list entry as ins't included in list)
*/
inline static void
rlist_create(struct rlist *list)
{
list->next = list;
list->prev = list;
}
/**
* add item to list
*/
inline static void
rlist_add(struct rlist *head, struct rlist *item)
{
item->prev = head;
item->next = head->next;
item->prev->next = item;
item->next->prev = item;
}
/**
* add item to list tail
*/
inline static void
rlist_add_tail(struct rlist *head, struct rlist *item)
{
item->next = head;
item->prev = head->prev;
item->prev->next = item;
item->next->prev = item;
}
/**
* delete element
*/
inline static void
rlist_del(struct rlist *item)
{
item->prev->next = item->next;
item->next->prev = item->prev;
rlist_create(item);
}
inline static struct rlist *
rlist_shift(struct rlist *head)
{
struct rlist *shift = head->next;
head->next = shift->next;
shift->next->prev = head;
shift->next = shift->prev = shift;
return shift;
}
/**
* return first element
*/
inline static struct rlist *
rlist_first(struct rlist *head)
{
return head->next;
}
/**
* return last element
*/
inline static struct rlist *
rlist_last(struct rlist *head)
{
return head->prev;
}
/**
* return next element by element
*/
inline static struct rlist *
rlist_next(struct rlist *item)
{
return item->next;
}
/**
* return previous element
*/
inline static struct rlist *
rlist_prev(struct rlist *item)
{
return item->prev;
}
/**
* return TRUE if list is empty
*/
inline static int
rlist_empty(struct rlist *item)
{
return item->next == item->prev && item->next == item;
}
/**
@brief delete from one list and add as another's head
@param to the head that will precede our entry
@param item the entry to move
*/
static inline void
rlist_move(struct rlist *to, struct rlist *item)
{
rlist_del(item);
rlist_add(to, item);
}
/**
@brief delete from one list and add_tail as another's head
@param to the head that will precede our entry
@param item the entry to move
*/
static inline void
rlist_move_tail(struct rlist *to, struct rlist *item)
{
rlist_del(item);
rlist_add_tail(to, item);
}
/**
* allocate and init head of list
*/
#define RLIST_HEAD(name) \
struct rlist name = { &(name), &(name) }
/**
* return entry by list item
*/
#define rlist_entry(item, type, member) ({ \
const typeof( ((type *)0)->member ) *__mptr = (item); \
(type *)( (char *)__mptr - ((size_t) &((type *)0)->member) ); })
/**
* return first entry
*/
#define rlist_first_entry(head, type, member) \
rlist_entry(rlist_first(head), type, member)
/**
* Remove one element from the list and return it
* @pre the list is not empty
*/
#define rlist_shift_entry(head, type, member) \
rlist_entry(rlist_shift(head), type, member) \
/**
* return last entry
* @pre the list is not empty
*/
#define rlist_last_entry(head, type, member) \
rlist_entry(rlist_last(head), type, member)
/**
* return next entry
*/
#define rlist_next_entry(item, member) \
rlist_entry(rlist_next(&(item)->member), typeof(*item), member)
/**
* return previous entry
*/
#define rlist_prev_entry(item, member) \
rlist_entry(rlist_prev(&(item)->member), typeof(*item), member)
/**
* add entry to list
*/
#define rlist_add_entry(head, item, member) \
rlist_add((head), &(item)->member)
/**
* add entry to list tail
*/
#define rlist_add_tail_entry(head, item, member) \
rlist_add_tail((head), &(item)->member)
/**
delete from one list and add as another's head
*/
#define rlist_move_entry(to, item, member) \
rlist_move((to), &((item)->member))
/**
delete from one list and add_tail as another's head
*/
#define rlist_move_tail_entry(to, item, member) \
rlist_move_tail((to), &((item)->member))
/**
* delete entry from list
*/
#define rlist_del_entry(item, member) \
rlist_del(&((item)->member))
/**
* foreach through list
*/
#define rlist_foreach(item, head) \
for (item = rlist_first(head); item != (head); item = rlist_next(item))
/**
* foreach backward through list
*/
#define rlist_foreach_reverse(item, head) \
for (item = rlist_last(head); item != (head); item = rlist_prev(item))
/**
* foreach through all list entries
*/
#define rlist_foreach_entry(item, head, member) \
for (item = rlist_first_entry((head), typeof(*item), member); \
&item->member != (head); \
item = rlist_next_entry((item), member))
/**
* foreach backward through all list entries
*/
#define rlist_foreach_entry_reverse(item, head, member) \
for (item = rlist_last_entry((head), typeof(*item), member); \
&item->member != (head); \
item = rlist_prev_entry((item), member))
#define rlist_foreach_entry_safe(item, head, member, tmp) \
for ((item) = rlist_first_entry((head), typeof(*item), member); \
&item->member != (head) && \
((tmp) = rlist_next_entry((item), member)); \
(item) = (tmp))
#if defined(__cplusplus)
} /* extern "C" */
#endif /* defined(__cplusplus) */
#endif /* TARANTOOL_RLIST_H_INCLUDED */
|