]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/dlist.h
Implement state file and save/restore last_jobs list
[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 remove(void *item);
67    bool empty();
68    int  size();
69    void *next(void *item);
70    void *prev(void *item);
71    void destroy();
72    void *first();
73    void *last();
74    void * operator new(size_t);
75    void operator delete(void *);
76 };
77
78 /*                            
79  * This allows us to do explicit initialization,
80  *   allowing us to mix C++ classes inside malloc'ed
81  *   C structures. Define before called in constructor.
82  */
83 inline void dlist::init(void *item, void *link) 
84 {
85    head = tail = NULL;
86    loffset = (char *)link - (char *)item;
87    num_items = 0;
88 }
89
90 /* Constructor */
91 inline dlist::dlist(void *item, void *link)
92 {
93    this->init(item, link);
94 }
95
96 inline bool dlist::empty()
97 {
98    return head == NULL;
99 }
100
101 inline int dlist::size()
102 {
103    return num_items;
104 }
105
106    
107 inline void * dlist::operator new(size_t)
108 {
109    return malloc(sizeof(dlist));
110 }
111
112 inline void dlist::operator delete(void  *item)
113 {
114    ((dlist *)item)->destroy();
115    free(item);
116 }
117  
118
119 inline void * dlist::first()
120 {
121    return head;
122 }
123
124 inline void * dlist::last()
125 {
126    return tail;
127 }