6 Copyright (C) 2000-2003 Kern Sibbald and John Walker
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License as
10 published by the Free Software Foundation; either version 2 of
11 the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public
19 License along with this program; if not, write to the Free
20 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 /* ========================================================================
27 * Doubly linked list -- dlist
31 /* In case you want to specifically specify the offset to the link */
32 #define OFFSET(item, link) ((char *)(link) - (char *)(item))
35 * Loop var through each member of list
37 #define foreach_dlist(var, list) \
38 for((var)=NULL; ((void *)(var))=(list)->next((var)); )
51 dlist(void *item, void *link);
52 void init(void *item, void *link);
53 void prepend(void *item);
54 void append(void *item);
55 void insert_before(void *item, void *where);
56 void insert_after(void *item, void *where);
57 void remove(void *item);
60 void *next(void *item);
61 void *prev(void *item);
65 void * operator new(size_t);
66 void operator delete(void *);
70 * This allows us to do explicit initialization,
71 * allowing us to mix C++ classes inside malloc'ed
72 * C structures. Define before called in constructor.
74 inline void dlist::init(void *item, void *link)
77 loffset = (char *)link - (char *)item;
82 inline dlist::dlist(void *item, void *link)
84 this->init(item, link);
87 inline bool dlist::empty()
92 inline int dlist::size()
98 inline void * dlist::operator new(size_t)
100 return malloc(sizeof(dlist));
103 inline void dlist::operator delete(void *item)
105 ((dlist *)item)->destroy();
110 inline void * dlist::first()
115 inline void * dlist::last()