]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/alist.h
2e43d564dd29bc9bfa7076b38d1e238fa7b6b498
[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_alist(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    ~alist();
64    void init(int num = 1, bool own=true);
65    void append(void *item);
66    void prepend(void *item);
67    void *remove(int index);
68    void *get(int index);
69    bool empty() const;
70    void *prev();
71    void *next();
72    void *first();
73    void *last();
74    void * operator [](int index) const;
75    int size() const;
76    void destroy();
77    void grow(int num);
78 };
79
80 inline void * alist::operator [](int index) const {
81    if (index < 0 || index >= num_items) {
82       return NULL;
83    }
84    return items[index];
85 }
86
87 inline bool alist::empty() const
88 {
89    return num_items == 0;
90 }
91
92 /*                            
93  * This allows us to do explicit initialization,
94  *   allowing us to mix C++ classes inside malloc'ed
95  *   C structures. Define before called in constructor.
96  */
97 inline void alist::init(int num, bool own) {
98    items = NULL;
99    num_items = 0;
100    max_items = 0;
101    num_grow = num;
102    own_items = own;
103 }
104
105 /* Constructor */
106 inline alist::alist(int num, bool own) {
107    init(num, own);
108 }
109
110 /* Destructor */
111 inline alist::~alist() {
112    destroy();
113 }
114    
115
116
117 /* Current size of list */
118 inline int alist::size() const 
119 {
120    return num_items;
121 }
122
123 /* How much to grow by each time */
124 inline void alist::grow(int num) 
125 {
126    num_grow = num;
127 }