]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/alist.h
2fb63827d8bef4a293c2598f7de8ae1c19bc1d7d
[bacula/bacula] / bacula / src / lib / alist.h
1 /*
2  *   Version $Id$
3  */
4
5 /*
6    Copyright (C) 2003-2004 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    Kern Sibbald, June MMIII
24
25  */
26
27 /* 
28  * There is a lot of extra casting here to work around the fact
29  * that some compilers (Sun and Visual C++) do not accept
30  * (void *) as an lvalue on the left side of an equal.
31  *
32  * Loop var through each member of list
33  */
34 #define foreach_alist(var, list) \
35     for((*((void **)&(var))=(void*)((list)->first())); (var); (*((void **)&(var))=(void*)((list)->next())))
36
37 #ifdef the_easy_way
38 #define foreach_dlist(var, list) \
39         for((void*(var))=(list)->first(); (var); (void *(var))=(list)->next(var)); )
40 #endif
41
42
43 /* Second arg of init */
44 enum {
45   owned_by_alist = true,
46   not_owned_by_alist = false
47 };
48
49 /* 
50  * Array list -- much like a simplified STL vector
51  *   array of pointers to inserted items
52  */
53 class alist : public SMARTALLOC {
54    void **items;
55    int num_items;
56    int max_items;
57    int num_grow;
58    int cur_item;
59    bool own_items;
60    void grow_list(void);
61 public:
62    alist(int num = 1, bool own=true);
63    void init(int num = 1, bool own=true);
64    void append(void *item);
65    void prepend(void *item);
66    void *remove(int index);
67    void *get(int index);
68    bool empty() const;
69    void *prev();
70    void *next();
71    void *first();
72    void *last();
73    void * operator [](int index) const;
74    int size() const;
75    void destroy();
76    void grow(int num);
77 };
78
79 inline void * alist::operator [](int index) const {
80    if (index < 0 || index >= num_items) {
81       return NULL;
82    }
83    return items[index];
84 }
85
86 inline bool alist::empty() const
87 {
88    return num_items == 0;
89 }
90
91 /*                            
92  * This allows us to do explicit initialization,
93  *   allowing us to mix C++ classes inside malloc'ed
94  *   C structures. Define before called in constructor.
95  */
96 inline void alist::init(int num, bool own) {
97    items = NULL;
98    num_items = 0;
99    max_items = 0;
100    num_grow = num;
101    own_items = own;
102 }
103
104 /* Constructor */
105 inline alist::alist(int num, bool own) {
106    this->init(num, own);
107 }
108    
109
110
111 /* Current size of list */
112 inline int alist::size() const 
113 {
114    return num_items;
115 }
116
117 /* How much to grow by each time */
118 inline void alist::grow(int num) 
119 {
120    num_grow = num;
121 }
122
123