Class Reference for E1039 Core & Analysis Software
PHPointerList.h
Go to the documentation of this file.
1 #ifndef PHPOINTERLIST_H__
2 #define PHPOINTERLIST_H__
3 
4 // Purpose: a template list of pointers
5 //
6 // Description:
7 // - The items are held internally as an array of type T.
8 // - The list is initialized with a maximum size of 2
9 // per default, or with the number given as constructor
10 // argument.
11 // - If this size is exceeded in the append() function,
12 // the array is allocated anew with double size and the
13 // old list is copied into this new one.
14 // - clear() sets the number of items to zero.
15 // - clearAndDestroy() does the same AND deletes all items.
16 // - The [] operator always performs a bound-check.
17 // - removeLast() returns the pointer to the last item in the
18 // array and decrements size by one.
19 // - removeAt(i) returns the pointer at position i and rearranges
20 // the internal list. This can cost PERFORMANCE in your application.
21 // - The output operator '<<' is overloaded for this class.
22 // Therefore class T for which the PHPointerList is insantiated must
23 // also have an overloaded output operator.
24 //
25 // Author: Matthias Messer
26 
27 #include "phool.h"
28 #include "PHNode.h"
29 
30 #include <iostream>
31 
32 template <class T>
34 {
35 
36 public:
37  PHPointerList(size_t = 2);
40  virtual ~PHPointerList();
41 
42 public:
43  T* operator[](size_t) const;
44  void clear();
46  size_t length() const;
47  T* removeLast();
48  T* removeAt(size_t);
50  PHBoolean insertAt(T*, size_t);
51 
52 private:
53  PHBoolean grow(size_t = 0);
54 
55 private:
56  T** items;
57  size_t maxNItems;
58  size_t nItems;
59 };
60 
61 // Implementation of member functions
62 template<class T>
64 {
65  maxNItems = initialSize;
66  items = new T*[maxNItems];
67  nItems = 0;
68 }
69 
70 template<class T>
72 {
73  *this = l;
74 }
75 
76 template<class T>
79 {
80  if(this != &l){
81  maxNItems = l.maxNItems;
82  grow(l.maxNItems);
83  nItems = l.length();
84  for (size_t i=0; i<nItems; ++i)
85  {
86  items[i] = l[i];
87  }
88  }
89  return *this;
90 }
91 
92 template<class T>
94 {
95  // This deletes the internal list of pointers and NOT the actual objects.
96  delete [] items;
97 }
98 
99 template<class T>
100 PHBoolean
101 PHPointerList<T>::grow(size_t newSize)
102 {
103  if (newSize == 0)
104  {
105  newSize = maxNItems * 2;
106  }
107  T** buffer = items;
108  items = new T*[newSize];
109  if (items)
110  {
111  for (size_t i=0; i<maxNItems; ++i)
112  {
113  items[i] = buffer[i];
114  }
115  delete [] buffer;
116  maxNItems = newSize;
117  }
118  else
119  {
120  std::cout << "PHPointerList<T>::grow: Out of memory?" << std::endl;
121  return False;
122  }
123 
124  return True;
125 }
126 
127 template<class T> inline T* PHPointerList<T>::operator[](size_t i) const
128 {
129  if (i < nItems)
130  {
131  return items[i];
132  }
133  else
134  {
135  std::cout << "PHPointerList<T>::operator[]: nItems exceeded" << std::endl;
136  return 0;
137  }
138 }
139 
140 template<class T>
141 inline PHBoolean
143 {
144  if (nItems < maxNItems)
145  {
146  items[nItems] = item;
147  ++nItems;
148  return True;
149  }
150  else
151  {
152  if (grow())
153  {
154  items[nItems] = item;
155  ++nItems;
156  return True;
157  }
158  else
159  {
160  std::cout << "PHPointerList<T>::append: max nItems exceeded" << std::endl;
161  return False;
162  }
163  }
164 }
165 
166 template<class T>
167 inline PHBoolean
168 PHPointerList<T>::insertAt(T* item, size_t pos)
169 {
170  // This function inserts item at pos in the internal list
171  if (pos > nItems)
172  {
173  std::cout << "PHPointerList<T>::insertAt: insert beyond nItems" << std::endl;
174  return False;
175  }
176 
177  // Append is used here as a convenient way to let the list grow, if necessary.
178  append(item);
179 
180  // Now all items are shifted upwards in the list by one, starting at pos.
181  for (size_t i=nItems; i>pos; --i)
182  {
183  items[i] = items[i-1];
184  }
185 
186  items[pos] = item;
187 
188  return True;
189 }
190 
191 template<class T>
192 inline void
194 {
195  nItems = 0;
196  items[nItems] = 0;
197 }
198 
199 template<class T>
200 inline void
202 {
203  for (size_t i=0; i<nItems; ++i)
204  {
205  delete items[i];
206  }
207  nItems = 0;
208  items[nItems] = 0;
209 }
210 
211 template<class T>
212 inline size_t
214 {
215  return nItems;
216 }
217 
218 template<class T>
219 inline T*
221 {
222  if (nItems > 0)
223  {
224  return items[nItems--];
225  }
226  else
227  {
228  std::cout << "PHPointerList<T>::removeLast: no items in list" << std::endl;
229  return 0;
230  }
231 }
232 
233 template<class T>
234 inline T*
236 {
237  if (i > nItems)
238  {
239  return 0;
240  }
241 
242  T *item = items[i];
243 
244  for (size_t j=i; j<nItems-1; ++j)
245  {
246  items[j] = items[j+1];
247  }
248  --nItems;
249 
250  return item;
251 }
252 
253 // Implementation of external functions.
254 template<class T>
255 std::ostream &
256 operator << (std::ostream & stream , const PHPointerList<T> & thislist)
257 {
258  for (size_t i=0; i<thislist.length(); ++i)
259  {
260  stream << *(thislist[i]) << std::endl;
261  }
262 
263  return stream;
264 }
265 
266 #endif /* __PHPOINTERLIST_H__ */
std::ostream & operator<<(std::ostream &stream, const PHPointerList< T > &thislist)
size_t length() const
T * operator[](size_t) const
virtual ~PHPointerList()
Definition: PHPointerList.h:93
PHPointerList(size_t=2)
Definition: PHPointerList.h:63
void clearAndDestroy()
PHPointerList(const PHPointerList< T > &)
Definition: PHPointerList.h:71
T * removeAt(size_t)
PHBoolean insertAt(T *, size_t)
PHPointerList< T > & operator=(const PHPointerList< T > &)
Definition: PHPointerList.h:78
PHBoolean append(T *)
int PHBoolean
Definition: phool.h:13
static const int True
Definition: phool.h:10
static const int False
Definition: phool.h:9