]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/dlist.h
Move host.h from filed to src + add Project to home page
[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(int offset);
44    void init(int offset);   
45    void prepend(void *item);
46    void append(void *item);
47    void remove(void *item);
48    void *next(void *item);
49    void destroy();
50    void *first();
51    void *last();
52    void * operator new(size_t);
53    void operator delete(void *);
54 };
55
56 /*                            
57  * This allows us to do explicit initialization,
58  *   allowing us to mix C++ classes inside malloc'ed
59  *   C structures. Define before called in constructor.
60  */
61 inline void dlist::init(int offset) {
62    head = tail = NULL;
63    loffset = (int)offset;
64 }
65
66 /* Constructor */
67 inline dlist::dlist(int offset) {
68    this->init(offset);
69 }
70    
71 inline void * dlist::operator new(size_t)
72 {
73    return malloc(sizeof(dlist));
74 }
75
76 inline void dlist::operator delete(void  *item)
77 {
78    ((dlist *)item)->destroy();
79    free(item);
80 }
81  
82
83 inline void * dlist::first()
84 {
85    return head;
86 }
87
88 inline void * dlist::last()
89 {
90    return tail;
91 }