]> git.saurik.com Git - wxWidgets.git/blob - include/wx/vector.h
add more flexible and safer template Connect() overloads (#10000)
[wxWidgets.git] / include / wx / vector.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/vector.h
3 // Purpose: STL vector clone
4 // Author: Lindsay Mathieson
5 // Modified by: Vaclav Slavik - make it a template
6 // Created: 30.07.2001
7 // Copyright: (c) 2001 Lindsay Mathieson <lindsay@mathieson.org>,
8 // 2007 Vaclav Slavik <vslavik@fastmail.fm>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_VECTOR_H_
13 #define _WX_VECTOR_H_
14
15 #include "wx/defs.h"
16
17 #if wxUSE_STL
18
19 #include <vector>
20 #define wxVector std::vector
21
22 #else // !wxUSE_STL
23
24 #include "wx/utils.h"
25 #include "wx/scopeguard.h"
26 #include "wx/meta/movable.h"
27 #include "wx/meta/if.h"
28
29 #include "wx/beforestd.h"
30 #include <new> // for placement new
31 #include "wx/afterstd.h"
32
33 namespace wxPrivate
34 {
35
36 // These templates encapsulate memory operations for use by wxVector; there are
37 // two implementations, both in generic way for any C++ types and as an
38 // optimized version for "movable" types that uses realloc() and memmove().
39
40 // version for movable types:
41 template<typename T>
42 struct wxVectorMemOpsMovable
43 {
44 static void Free(T* array)
45 { free(array); }
46
47 static T* Realloc(T* old, size_t newCapacity, size_t WXUNUSED(occupiedSize))
48 { return (T*)realloc(old, newCapacity * sizeof(T)); }
49
50 static void MemmoveBackward(T* dest, T* source, size_t count)
51 { memmove(dest, source, count * sizeof(T)); }
52
53 static void MemmoveForward(T* dest, T* source, size_t count)
54 { memmove(dest, source, count * sizeof(T)); }
55 };
56
57 // generic version for non-movable types:
58 template<typename T>
59 struct wxVectorMemOpsGeneric
60 {
61 static void Free(T* array)
62 { ::operator delete(array); }
63
64 static T* Realloc(T* old, size_t newCapacity, size_t occupiedSize)
65 {
66 T *mem = (T*)::operator new(newCapacity * sizeof(T));
67 for ( size_t i = 0; i < occupiedSize; i++ )
68 {
69 ::new(mem + i) T(old[i]);
70 old[i].~T();
71 }
72 ::operator delete(old);
73 return mem;
74 }
75
76 static void MemmoveBackward(T* dest, T* source, size_t count)
77 {
78 wxASSERT( dest < source );
79 T* destptr = dest;
80 T* sourceptr = source;
81 for ( size_t i = count; i > 0; --i, ++destptr, ++sourceptr )
82 {
83 ::new(destptr) T(*sourceptr);
84 sourceptr->~T();
85 }
86 }
87
88 static void MemmoveForward(T* dest, T* source, size_t count)
89 {
90 wxASSERT( dest > source );
91 T* destptr = dest + count - 1;
92 T* sourceptr = source + count - 1;
93 for ( size_t i = count; i > 0; --i, --destptr, --sourceptr )
94 {
95 ::new(destptr) T(*sourceptr);
96 sourceptr->~T();
97 }
98 }
99 };
100
101
102 } // namespace wxPrivate
103
104 template<typename T>
105 class wxVector
106 {
107 private:
108 // This cryptic expression means "typedef Ops to wxVectorMemOpsMovable if
109 // type T is movable type, otherwise to wxVectorMemOpsGeneric".
110 //
111 // Note that we use typedef instead of privately deriving from this (which
112 // would allowed us to omit "Ops::" prefixes below) to keep VC6 happy,
113 // it can't compile code that derives from wxIf<...>::value.
114 typedef typename wxIf< wxIsMovable<T>::value,
115 wxPrivate::wxVectorMemOpsMovable<T>,
116 wxPrivate::wxVectorMemOpsGeneric<T> >::value
117 Ops;
118
119 public:
120 typedef size_t size_type;
121 typedef size_t difference_type;
122 typedef T value_type;
123 typedef value_type* pointer;
124 typedef value_type* iterator;
125 typedef const value_type* const_iterator;
126 typedef value_type& reference;
127
128 class reverse_iterator
129 {
130 public:
131 reverse_iterator() : m_ptr(NULL) { }
132 wxEXPLICIT reverse_iterator(iterator it) : m_ptr(it) { }
133 reverse_iterator(const reverse_iterator& it) : m_ptr(it.m_ptr) { }
134
135 reference operator*() const { return *m_ptr; }
136 pointer operator->() const { return m_ptr; }
137
138 iterator base() const { return m_ptr; }
139
140 reverse_iterator& operator++()
141 { --m_ptr; return *this; }
142 reverse_iterator operator++(int)
143 { reverse_iterator tmp = *this; --m_ptr; return tmp; }
144 reverse_iterator& operator--()
145 { ++m_ptr; return *this; }
146 reverse_iterator operator--(int)
147 { reverse_iterator tmp = *this; ++m_ptr; return tmp; }
148
149 reverse_iterator operator+(difference_type n) const
150 { return reverse_iterator(m_ptr - n); }
151 reverse_iterator& operator+=(difference_type n)
152 { m_ptr -= n; return *this; }
153 reverse_iterator operator-(difference_type n) const
154 { return reverse_iterator(m_ptr + n); }
155 reverse_iterator& operator-=(difference_type n)
156 { m_ptr += n; return *this; }
157
158 reference operator[](difference_type n) const
159 { return *(*this + n); }
160
161 bool operator ==(const reverse_iterator& it) const
162 { return m_ptr == it.m_ptr; }
163 bool operator !=(const reverse_iterator& it) const
164 { return m_ptr != it.m_ptr; }
165
166 private:
167 value_type *m_ptr;
168 };
169
170 wxVector() : m_size(0), m_capacity(0), m_values(NULL) {}
171
172 wxVector(size_type size)
173 : m_size(0), m_capacity(0), m_values(NULL)
174 {
175 reserve(size);
176 for ( size_t n = 0; n < size; n++ )
177 push_back(value_type());
178 }
179
180 wxVector(size_type size, const value_type& v)
181 : m_size(0), m_capacity(0), m_values(NULL)
182 {
183 reserve(size);
184 for ( size_t n = 0; n < size; n++ )
185 push_back(v);
186 }
187
188 wxVector(const wxVector& c) : m_size(0), m_capacity(0), m_values(NULL)
189 {
190 Copy(c);
191 }
192
193 ~wxVector()
194 {
195 clear();
196 }
197
198 void clear()
199 {
200 // call destructors of stored objects:
201 for ( size_type i = 0; i < m_size; i++ )
202 {
203 m_values[i].~T();
204 }
205
206 Ops::Free(m_values);
207 m_values = NULL;
208 m_size =
209 m_capacity = 0;
210 }
211
212 void reserve(size_type n)
213 {
214 if ( n <= m_capacity )
215 return;
216
217 // increase the size twice, unless we're already too big or unless
218 // more is requested
219 //
220 // NB: casts to size_type are needed to suppress mingw32 warnings about
221 // mixing enums and ints in the same expression
222 const size_type increment = m_size > 0
223 ? wxMin(m_size, (size_type)ALLOC_MAX_SIZE)
224 : (size_type)ALLOC_INITIAL_SIZE;
225 if ( m_capacity + increment > n )
226 n = m_capacity + increment;
227
228 m_values = Ops::Realloc(m_values, n * sizeof(value_type), m_size);
229 m_capacity = n;
230 }
231
232 void resize(size_type n)
233 {
234 if ( n < m_size )
235 Shrink(n);
236 else if ( n > m_size )
237 Extend(n, value_type());
238 }
239
240 void resize(size_type n, const value_type& v)
241 {
242 if ( n < m_size )
243 Shrink(n);
244 else if ( n > m_size )
245 Extend(n, v);
246 }
247
248 size_type size() const
249 {
250 return m_size;
251 }
252
253 size_type capacity() const
254 {
255 return m_capacity;
256 }
257
258 bool empty() const
259 {
260 return size() == 0;
261 }
262
263 wxVector& operator=(const wxVector& vb)
264 {
265 if (this != &vb)
266 {
267 clear();
268 Copy(vb);
269 }
270 return *this;
271 }
272
273 void push_back(const value_type& v)
274 {
275 reserve(size() + 1);
276
277 // use placement new to initialize new object in preallocated place in
278 // m_values and store 'v' in it:
279 void* const place = m_values + m_size;
280 ::new(place) value_type(v);
281
282 // only increase m_size if the ctor didn't throw an exception; notice
283 // that if it _did_ throw, everything is OK, because we only increased
284 // vector's capacity so far and possibly written some data to
285 // uninitialized memory at the end of m_values
286 m_size++;
287 }
288
289 void pop_back()
290 {
291 erase(end() - 1);
292 }
293
294 const value_type& at(size_type idx) const
295 {
296 wxASSERT(idx < m_size);
297 return m_values[idx];
298 }
299
300 value_type& at(size_type idx)
301 {
302 wxASSERT(idx < m_size);
303 return m_values[idx];
304 }
305
306 const value_type& operator[](size_type idx) const { return at(idx); }
307 value_type& operator[](size_type idx) { return at(idx); }
308 const value_type& front() const { return at(0); }
309 value_type& front() { return at(0); }
310 const value_type& back() const { return at(size() - 1); }
311 value_type& back() { return at(size() - 1); }
312
313 const_iterator begin() const { return m_values; }
314 iterator begin() { return m_values; }
315 const_iterator end() const { return m_values + size(); }
316 iterator end() { return m_values + size(); }
317
318 reverse_iterator rbegin() { return reverse_iterator(end() - 1); }
319 reverse_iterator rend() { return reverse_iterator(begin() - 1); }
320
321 iterator insert(iterator it, const value_type& v = value_type())
322 {
323 // NB: this must be done before reserve(), because reserve()
324 // invalidates iterators!
325 const size_t idx = it - begin();
326 const size_t after = end() - it;
327
328 reserve(size() + 1);
329
330 // the place where the new element is going to be inserted
331 value_type * const place = m_values + idx;
332
333 // unless we're inserting at the end, move following elements out of
334 // the way:
335 if ( after > 0 )
336 Ops::MemmoveForward(place + 1, place, after);
337
338 // if the ctor called below throws an exception, we need to move all
339 // the elements back to their original positions in m_values
340 wxScopeGuard moveBack = wxMakeGuard(
341 Ops::MemmoveBackward, place, place + 1, after);
342 if ( !after )
343 moveBack.Dismiss();
344
345 // use placement new to initialize new object in preallocated place in
346 // m_values and store 'v' in it:
347 ::new(place) value_type(v);
348
349 // now that we did successfully add the new element, increment the size
350 // and disable moving the items back
351 moveBack.Dismiss();
352 m_size++;
353
354 return begin() + idx;
355 }
356
357 iterator erase(iterator it)
358 {
359 return erase(it, it + 1);
360 }
361
362 iterator erase(iterator first, iterator last)
363 {
364 if ( first == last )
365 return first;
366 wxASSERT( first < end() && last <= end() );
367
368 const size_type idx = first - begin();
369 const size_type count = last - first;
370 const size_type after = end() - last;
371
372 // erase elements by calling their destructors:
373 for ( iterator i = first; i < last; ++i )
374 i->~T();
375
376 // once that's done, move following elements over to the freed space:
377 if ( after > 0 )
378 {
379 Ops::MemmoveBackward(m_values + idx, m_values + idx + count, after);
380 }
381
382 m_size -= count;
383
384 return begin() + idx;
385 }
386
387 #if WXWIN_COMPATIBILITY_2_8
388 wxDEPRECATED( size_type erase(size_type n) );
389 #endif // WXWIN_COMPATIBILITY_2_8
390
391 private:
392 // VC6 can't compile static const int members
393 enum { ALLOC_INITIAL_SIZE = 16 };
394 enum { ALLOC_MAX_SIZE = 4096 };
395
396 void Copy(const wxVector& vb)
397 {
398 reserve(vb.size());
399
400 for ( const_iterator i = vb.begin(); i != vb.end(); ++i )
401 push_back(*i);
402 }
403
404 private:
405 void Shrink(size_type n)
406 {
407 for ( size_type i = n; i < m_size; i++ )
408 m_values[i].~T();
409 m_size = n;
410 }
411
412 void Extend(size_type n, const value_type& v)
413 {
414 reserve(n);
415 for ( size_type i = m_size; i < n; i++ )
416 push_back(v);
417 }
418
419 size_type m_size,
420 m_capacity;
421 value_type *m_values;
422 };
423
424 #if WXWIN_COMPATIBILITY_2_8
425 template<typename T>
426 inline typename wxVector<T>::size_type wxVector<T>::erase(size_type n)
427 {
428 erase(begin() + n);
429 return n;
430 }
431 #endif // WXWIN_COMPATIBILITY_2_8
432
433 #endif // wxUSE_STL/!wxUSE_STL
434
435 #if WXWIN_COMPATIBILITY_2_8
436 #define WX_DECLARE_VECTORBASE(obj, cls) typedef wxVector<obj> cls
437 #define _WX_DECLARE_VECTOR(obj, cls, exp) WX_DECLARE_VECTORBASE(obj, cls)
438 #define WX_DECLARE_VECTOR(obj, cls) WX_DECLARE_VECTORBASE(obj, cls)
439 #endif // WXWIN_COMPATIBILITY_2_8
440
441 #endif // _WX_VECTOR_H_