]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/dlist.h
d6bd8e6590f88d0198c878ea075174f0433032a2
[bacula/bacula] / bacula / src / lib / dlist.h
1 /*
2  *   Version $Id$
3  */
4
5 /*
6    Copyright (C) 2000-2003 Kern Sibbald and John Walker
7
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.
12
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.
17
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,
21    MA 02111-1307, USA.
22
23  */
24
25 /* ========================================================================
26  * 
27  *   Doubly linked list  -- dlist
28  *
29  */
30
31 /* In case you want to specifically specify the offset to the link */
32 #define OFFSET(item, link) ((char *)(link) - (char *)(item))
33 /* 
34  * There is a lot of extra casting here to work around the fact
35  * that some compilers (Sun and Visual C++) do not accept
36  * (void *) as an lvalue on the left side of an equal.
37  *
38  * Loop var through each member of list
39  */
40 #define foreach_dlist(var, list) \
41     for((var)=NULL; (*((void **)&(var))=(void*)((list)->next(var))); )
42
43 #ifdef the_old_way
44 #define foreach_dlist(var, list) \
45         for((var)=NULL; (((void *)(var))=(list)->next(var)); )
46 #endif
47
48 struct dlink {
49    void *next;
50    void *prev;
51 };
52
53
54 class dlist {
55    void *head;
56    void *tail;
57    int loffset;
58    int num_items;
59 public:
60    dlist(void *item, void *link);
61    void init(void *item, void *link);
62    void prepend(void *item);
63    void append(void *item);
64    void insert_before(void *item, void *where);
65    void insert_after(void *item, void *where);
66    void *dlist::binary_insert(void *item, int compare(void *item1, void *item2));
67    void remove(void *item);
68    bool empty();
69    int  size();
70    void *next(void *item);
71    void *prev(void *item);
72    void destroy();
73    void *first();
74    void *last();
75    void * operator new(size_t);
76    void operator delete(void *);
77 };
78
79 /*                            
80  * This allows us to do explicit initialization,
81  *   allowing us to mix C++ classes inside malloc'ed
82  *   C structures. Define before called in constructor.
83  */
84 inline void dlist::init(void *item, void *link) 
85 {
86    head = tail = NULL;
87    loffset = (char *)link - (char *)item;
88    num_items = 0;
89 }
90
91 /* Constructor */
92 inline dlist::dlist(void *item, void *link)
93 {
94    this->init(item, link);
95 }
96
97 inline bool dlist::empty()
98 {
99    return head == NULL;
100 }
101
102 inline int dlist::size()
103 {
104    return num_items;
105 }
106
107    
108 inline void * dlist::operator new(size_t)
109 {
110    return malloc(sizeof(dlist));
111 }
112
113 inline void dlist::operator delete(void  *item)
114 {
115    ((dlist *)item)->destroy();
116    free(item);
117 }
118  
119
120 inline void * dlist::first()
121 {
122    return head;
123 }
124
125 inline void * dlist::last()
126 {
127    return tail;
128 }