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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
|
/*
* libzvbi - Double linked wheel, reinvented
*
* Copyright (C) 2004 Michael H. Schimek
*
* Based on code from AleVT 1.5.1
* Copyright (C) 1998, 1999 Edgar Toernig
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: dlist.h,v 1.5 2006/01/08 05:25:31 mschimek Exp $ */
#ifndef DLIST_H
#define DLIST_H
#include <assert.h>
#include "macros.h"
#include "misc.h"
#ifndef DLIST_CONSISTENCY
# define DLIST_CONSISTENCY 0
#endif
typedef struct node node;
struct node {
node * _succ;
node * _pred;
};
vbi3_inline void
verify_ring (const node * n)
{
unsigned int counter;
const node *start;
if (!DLIST_CONSISTENCY)
return;
start = n;
counter = 0;
do {
const node *_succ = n->_succ;
assert (counter++ < 30000);
assert (n == _succ->_pred);
n = _succ;
} while (n != start);
}
vbi3_inline node *
_remove_nodes (node * before,
node * after,
node * first,
node * last,
vbi3_bool close_ring,
vbi3_bool return_ring)
{
verify_ring (before);
if (close_ring) {
before->_succ = after;
after->_pred = before;
} else {
before->_succ = NULL;
after->_pred = NULL;
}
if (return_ring) {
first->_pred = last;
last->_succ = first;
} else {
first->_pred = NULL;
last->_succ = NULL;
}
return first;
}
vbi3_inline node *
_insert_nodes (node * before,
node * after,
node * first,
node * last)
{
verify_ring (before);
first->_pred = before;
last->_succ = after;
after->_pred = last;
before->_succ = first;
return first;
}
/**
* @internal
* Adds node n to a list or ring after node a.
*/
vbi3_inline node *
insert_after (node * a,
node * n)
{
return _insert_nodes (a, a->_succ, n, n);
}
/**
* @internal
* Adds node n to a list or ring before node b.
*/
vbi3_inline node *
insert_before (node * b,
node * n)
{
return _insert_nodes (b->_pred, b, n, n);
}
/**
* @internal
* Removes node n from its list or ring.
*/
vbi3_inline node *
unlink_node (node * n)
{
return _remove_nodes (n->_pred, n->_succ, n, n, TRUE, FALSE);
}
typedef struct node list;
/**
* @internal
*
* Traverses a list. p points to the parent structure of a node. p1 is
* a pointer of same type as p, used to remember the _succ node in the
* list. This permits unlink_node(p) in the loop. Resist the temptation
* to unlink p->_succ or p->_pred. l points to the list to traverse.
* _node is the name of the node element. Example:
*
* struct mystruct { node foo; int bar; };
*
* list mylist; // assumed initialized
* struct mystruct *p, *p1;
*
* FOR_ALL_NODES (p, p1, &mylist, foo)
* do_something (p);
*/
#define FOR_ALL_NODES(p, p1, l, _node) \
for (verify_ring (l), p = PARENT ((l)->_succ, __typeof__ (* p), _node); \
p1 = PARENT (p->_node._succ, __typeof__ (* p), _node), \
&p->_node != (l); p = p1)
#define FOR_ALL_NODES_REVERSE(p, p1, l, _node) \
for (verify_ring (l), p = PARENT ((l)->_pred, __typeof__ (* p), _node); \
p1 = PARENT (p->_node._pred, __typeof__ (* p), _node), \
&p->_node != (l); p = p1)
/**
* @internal
* Destroys list l (not its nodes).
*/
vbi3_inline list *
list_destroy (list * l)
{
return _remove_nodes (l->_pred, l->_succ, l, l, FALSE, FALSE);
}
/**
* @internal
* Initializes list l.
*/
vbi3_inline list *
list_init (list * l)
{
l->_succ = l;
l->_pred = l;
return l;
}
/**
* @internal
* TRUE if node n is at head of list l.
*/
vbi3_inline vbi3_bool
is_head (const list * l,
const node * n)
{
verify_ring (l);
return (n == l->_succ);
}
/**
* @internal
* TRUE if node n is at tail of list l.
*/
vbi3_inline vbi3_bool
is_tail (const list * l,
const node * n)
{
verify_ring (l);
return (n == l->_pred);
}
/**
* @internal
* TRUE if list l is empty.
*/
vbi3_inline int
is_empty (const list * l)
{
return is_head (l, l);
}
/**
* @internal
* TRUE if node n is a member of list l.
*/
vbi3_inline vbi3_bool
is_member (const list * l,
const node * n)
{
const node *q;
verify_ring (l);
for (q = l->_succ; q != l; q = q->_succ) {
if (unlikely (q == n)) {
return TRUE;
}
}
return FALSE;
}
/**
* @internal
* Adds node n at begin of list l.
*/
vbi3_inline node *
add_head (list * l,
node * n)
{
return _insert_nodes (l, l->_succ, n, n);
}
/**
* @internal
* Adds node n at end of list l.
*/
vbi3_inline node *
add_tail (list * l,
node * n)
{
return _insert_nodes (l->_pred, l, n, n);
}
/**
* @internal
* Removes all nodes from list l2 and adds them at end of list l1.
*/
vbi3_inline node *
add_tail_list (list * l1,
list * l2)
{
node *h2 = l2->_succ;
verify_ring (l2);
if (unlikely (l2 == h2)) {
return NULL;
}
_insert_nodes (l1->_pred, l1, h2, l2->_pred);
l2->_succ = l2;
l2->_pred = l2;
return h2;
}
/**
* @internal
* Removes node n if member of list l.
*/
vbi3_inline node *
rem_node (list * l,
node * n)
{
if (is_member (l, n)) {
return unlink_node (n);
} else {
return NULL;
}
}
/**
* @internal
* Removes first node of list l, returns NULL if empty list.
*/
vbi3_inline node *
rem_head (list * l)
{
node *n = l->_succ;
if (likely (n != l)) {
return _remove_nodes (l, n->_succ, n, n, TRUE, FALSE);
} else {
return NULL;
}
}
/**
* @internal
* Removes last node of list l, returns NULL if empty list.
*/
vbi3_inline node *
rem_tail (list * l)
{
node *n = l->_pred;
if (likely (n != l)) {
return _remove_nodes (n->_pred, l, n, n, TRUE, FALSE);
} else {
return NULL;
}
}
/**
* @internal
* Returns number of nodes in list l.
*/
vbi3_inline unsigned int
list_length (list * l)
{
unsigned int count = 0;
node *n;
verify_ring (l);
for (n = l->_succ; n != l; n = n->_succ)
++count;
return count;
}
#endif /* DLIST_H */
|