]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/dlist.h
add jobq+serial.h+priorities+recycling
[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 #define OFFSET(item,link) ((char *)link - (char *)item)
32
33 struct dlink {
34    void *next;
35    void *prev;
36 };
37
38 class dlist {
39    void *head;
40    void *tail;
41    int loffset;
42 public:
43    dlist(void *item, void *link);
44    void init(void *item, void *link);
45    void prepend(void *item);
46    void append(void *item);
47    void insert_before(void *item, void *where);
48    void insert_after(void *item, void *where);
49    void remove(void *item);
50    bool empty();
51    void *next(void *item);
52    void *prev(void *item);
53    void destroy();
54    void *first();
55    void *last();
56    void * operator new(size_t);
57    void operator delete(void *);
58 };
59
60 /*                            
61  * This allows us to do explicit initialization,
62  *   allowing us to mix C++ classes inside malloc'ed
63  *   C structures. Define before called in constructor.
64  */
65 inline void dlist::init(void *item, void *link) 
66 {
67    head = tail = NULL;
68    loffset = (char *)link - (char *)item;
69 }
70
71 /* Constructor */
72 inline dlist::dlist(void *item, void *link)
73 {
74    this->init(item, link);
75 }
76
77 inline bool dlist::empty()
78 {
79    return head == NULL;
80 }
81    
82 inline void * dlist::operator new(size_t)
83 {
84    return malloc(sizeof(dlist));
85 }
86
87 inline void dlist::operator delete(void  *item)
88 {
89    ((dlist *)item)->destroy();
90    free(item);
91 }
92  
93
94 inline void * dlist::first()
95 {
96    return head;
97 }
98
99 inline void * dlist::last()
100 {
101    return tail;
102 }