]>
Commit | Line | Data |
---|---|---|
3c648a82 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/vector.h | |
3 | // Purpose: STL vector clone | |
4 | // Author: Lindsay Mathieson | |
e966f815 | 5 | // Modified by: Vaclav Slavik - make it a template |
3c648a82 | 6 | // Created: 30.07.2001 |
e966f815 VS |
7 | // Copyright: (c) 2001 Lindsay Mathieson <lindsay@mathieson.org>, |
8 | // 2007 Vaclav Slavik <vslavik@fastmail.fm> | |
65571936 | 9 | // Licence: wxWindows licence |
3c648a82 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_VECTOR_H_ | |
13 | #define _WX_VECTOR_H_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
df4aed1c | 17 | #if wxUSE_STL |
e966f815 | 18 | |
e966f815 VS |
19 | #include <vector> |
20 | #define wxVector std::vector | |
21 | ||
22 | #else // !wxUSE_STL | |
23 | ||
7df6b37a | 24 | #include "wx/utils.h" |
fc31181d | 25 | #include "wx/scopeguard.h" |
6712283c VS |
26 | #include "wx/meta/movable.h" |
27 | #include "wx/meta/if.h" | |
7df6b37a | 28 | |
c157b27e VS |
29 | #include "wx/beforestd.h" |
30 | #include <new> // for placement new | |
31 | #include "wx/afterstd.h" | |
32 | ||
6712283c VS |
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 | { | |
54742e34 | 69 | ::new(mem + i) T(old[i]); |
6712283c VS |
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 | { | |
0e82d270 | 83 | ::new(destptr) T(*sourceptr); |
6712283c VS |
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 | { | |
0e82d270 | 95 | ::new(destptr) T(*sourceptr); |
6712283c VS |
96 | sourceptr->~T(); |
97 | } | |
98 | } | |
99 | }; | |
100 | ||
101 | ||
102 | } // namespace wxPrivate | |
103 | ||
e966f815 VS |
104 | template<typename T> |
105 | class wxVector | |
3c648a82 | 106 | { |
c9faa9e9 | 107 | private: |
0c73d133 | 108 | // This cryptic expression means "typedef Ops to wxVectorMemOpsMovable if |
c9faa9e9 VS |
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 | ||
2d6c58d6 | 119 | public: |
5fd588d2 | 120 | typedef size_t size_type; |
946954d3 | 121 | typedef size_t difference_type; |
e966f815 | 122 | typedef T value_type; |
946954d3 | 123 | typedef value_type* pointer; |
df4aed1c | 124 | typedef value_type* iterator; |
0516de2c | 125 | typedef const value_type* const_iterator; |
df4aed1c | 126 | typedef value_type& reference; |
e966f815 | 127 | |
946954d3 RR |
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) { } | |
deb0c402 | 134 | |
946954d3 RR |
135 | reference operator*() const { return *m_ptr; } |
136 | pointer operator->() const { return m_ptr; } | |
deb0c402 | 137 | |
946954d3 | 138 | iterator base() const { return m_ptr; } |
deb0c402 VZ |
139 | |
140 | reverse_iterator& operator++() | |
141 | { --m_ptr; return *this; } | |
946954d3 | 142 | reverse_iterator operator++(int) |
deb0c402 VZ |
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 | ||
946954d3 | 149 | reverse_iterator operator+(difference_type n) const |
deb0c402 | 150 | { return reverse_iterator(m_ptr - n); } |
946954d3 | 151 | reverse_iterator& operator+=(difference_type n) |
deb0c402 | 152 | { m_ptr -= n; return *this; } |
946954d3 | 153 | reverse_iterator operator-(difference_type n) const |
deb0c402 | 154 | { return reverse_iterator(m_ptr + n); } |
946954d3 | 155 | reverse_iterator& operator-=(difference_type n) |
deb0c402 VZ |
156 | { m_ptr += n; return *this; } |
157 | ||
946954d3 | 158 | reference operator[](difference_type n) const |
deb0c402 VZ |
159 | { return *(*this + n); } |
160 | ||
161 | bool operator ==(const reverse_iterator& it) const | |
162 | { return m_ptr == it.m_ptr; } | |
946954d3 | 163 | bool operator !=(const reverse_iterator& it) const |
deb0c402 VZ |
164 | { return m_ptr != it.m_ptr; } |
165 | ||
946954d3 RR |
166 | private: |
167 | value_type *m_ptr; | |
168 | }; | |
169 | ||
0516de2c | 170 | wxVector() : m_size(0), m_capacity(0), m_values(NULL) {} |
e966f815 | 171 | |
f6363458 | 172 | wxVector(size_type p_size) |
e068310a | 173 | : m_size(0), m_capacity(0), m_values(NULL) |
664e5ff9 | 174 | { |
f6363458 VZ |
175 | reserve(p_size); |
176 | for ( size_t n = 0; n < p_size; n++ ) | |
664e5ff9 VZ |
177 | push_back(value_type()); |
178 | } | |
179 | ||
f6363458 | 180 | wxVector(size_type p_size, const value_type& v) |
e068310a | 181 | : m_size(0), m_capacity(0), m_values(NULL) |
664e5ff9 | 182 | { |
f6363458 VZ |
183 | reserve(p_size); |
184 | for ( size_t n = 0; n < p_size; n++ ) | |
664e5ff9 VZ |
185 | push_back(v); |
186 | } | |
187 | ||
a470957a | 188 | wxVector(const wxVector& c) : m_size(0), m_capacity(0), m_values(NULL) |
e966f815 | 189 | { |
0516de2c | 190 | Copy(c); |
e966f815 VS |
191 | } |
192 | ||
193 | ~wxVector() | |
194 | { | |
195 | clear(); | |
196 | } | |
197 | ||
dbe0872f VZ |
198 | void swap(wxVector& v) |
199 | { | |
200 | wxSwap(m_size, v.m_size); | |
201 | wxSwap(m_capacity, v.m_capacity); | |
202 | wxSwap(m_values, v.m_values); | |
203 | } | |
204 | ||
e966f815 VS |
205 | void clear() |
206 | { | |
c157b27e VS |
207 | // call destructors of stored objects: |
208 | for ( size_type i = 0; i < m_size; i++ ) | |
209 | { | |
82b6efd2 | 210 | m_values[i].~T(); |
c157b27e VS |
211 | } |
212 | ||
c9faa9e9 | 213 | Ops::Free(m_values); |
0516de2c | 214 | m_values = NULL; |
a470957a VZ |
215 | m_size = |
216 | m_capacity = 0; | |
e966f815 VS |
217 | } |
218 | ||
219 | void reserve(size_type n) | |
220 | { | |
0516de2c VS |
221 | if ( n <= m_capacity ) |
222 | return; | |
223 | ||
224 | // increase the size twice, unless we're already too big or unless | |
225 | // more is requested | |
f5851311 | 226 | // |
c157b27e | 227 | // NB: casts to size_type are needed to suppress mingw32 warnings about |
f5851311 VZ |
228 | // mixing enums and ints in the same expression |
229 | const size_type increment = m_size > 0 | |
230 | ? wxMin(m_size, (size_type)ALLOC_MAX_SIZE) | |
231 | : (size_type)ALLOC_INITIAL_SIZE; | |
0516de2c VS |
232 | if ( m_capacity + increment > n ) |
233 | n = m_capacity + increment; | |
234 | ||
c9faa9e9 | 235 | m_values = Ops::Realloc(m_values, n * sizeof(value_type), m_size); |
0516de2c | 236 | m_capacity = n; |
e966f815 VS |
237 | } |
238 | ||
e068310a VZ |
239 | void resize(size_type n) |
240 | { | |
241 | if ( n < m_size ) | |
242 | Shrink(n); | |
243 | else if ( n > m_size ) | |
244 | Extend(n, value_type()); | |
245 | } | |
246 | ||
247 | void resize(size_type n, const value_type& v) | |
248 | { | |
249 | if ( n < m_size ) | |
250 | Shrink(n); | |
251 | else if ( n > m_size ) | |
252 | Extend(n, v); | |
253 | } | |
254 | ||
e966f815 VS |
255 | size_type size() const |
256 | { | |
257 | return m_size; | |
258 | } | |
259 | ||
260 | size_type capacity() const | |
261 | { | |
262 | return m_capacity; | |
263 | } | |
264 | ||
265 | bool empty() const | |
266 | { | |
267 | return size() == 0; | |
268 | } | |
269 | ||
270 | wxVector& operator=(const wxVector& vb) | |
271 | { | |
a09307ab PC |
272 | if (this != &vb) |
273 | { | |
274 | clear(); | |
275 | Copy(vb); | |
276 | } | |
e966f815 VS |
277 | return *this; |
278 | } | |
279 | ||
0516de2c | 280 | void push_back(const value_type& v) |
e966f815 | 281 | { |
0516de2c | 282 | reserve(size() + 1); |
c157b27e VS |
283 | |
284 | // use placement new to initialize new object in preallocated place in | |
285 | // m_values and store 'v' in it: | |
286 | void* const place = m_values + m_size; | |
54742e34 | 287 | ::new(place) value_type(v); |
c157b27e VS |
288 | |
289 | // only increase m_size if the ctor didn't throw an exception; notice | |
290 | // that if it _did_ throw, everything is OK, because we only increased | |
291 | // vector's capacity so far and possibly written some data to | |
292 | // uninitialized memory at the end of m_values | |
293 | m_size++; | |
e966f815 VS |
294 | } |
295 | ||
296 | void pop_back() | |
297 | { | |
0516de2c | 298 | erase(end() - 1); |
e966f815 VS |
299 | } |
300 | ||
301 | const value_type& at(size_type idx) const | |
302 | { | |
303 | wxASSERT(idx < m_size); | |
0516de2c | 304 | return m_values[idx]; |
e966f815 VS |
305 | } |
306 | ||
307 | value_type& at(size_type idx) | |
308 | { | |
309 | wxASSERT(idx < m_size); | |
0516de2c | 310 | return m_values[idx]; |
e966f815 | 311 | } |
3c648a82 | 312 | |
e966f815 VS |
313 | const value_type& operator[](size_type idx) const { return at(idx); } |
314 | value_type& operator[](size_type idx) { return at(idx); } | |
315 | const value_type& front() const { return at(0); } | |
316 | value_type& front() { return at(0); } | |
317 | const value_type& back() const { return at(size() - 1); } | |
318 | value_type& back() { return at(size() - 1); } | |
319 | ||
0516de2c VS |
320 | const_iterator begin() const { return m_values; } |
321 | iterator begin() { return m_values; } | |
322 | const_iterator end() const { return m_values + size(); } | |
323 | iterator end() { return m_values + size(); } | |
df4aed1c | 324 | |
946954d3 RR |
325 | reverse_iterator rbegin() { return reverse_iterator(end() - 1); } |
326 | reverse_iterator rend() { return reverse_iterator(begin() - 1); } | |
327 | ||
0516de2c | 328 | iterator insert(iterator it, const value_type& v = value_type()) |
f631cd8e | 329 | { |
c157b27e VS |
330 | // NB: this must be done before reserve(), because reserve() |
331 | // invalidates iterators! | |
332 | const size_t idx = it - begin(); | |
333 | const size_t after = end() - it; | |
f631cd8e | 334 | |
0516de2c | 335 | reserve(size() + 1); |
9cf33372 | 336 | |
fc31181d VZ |
337 | // the place where the new element is going to be inserted |
338 | value_type * const place = m_values + idx; | |
339 | ||
c157b27e | 340 | // unless we're inserting at the end, move following elements out of |
0516de2c | 341 | // the way: |
c157b27e | 342 | if ( after > 0 ) |
fc31181d | 343 | Ops::MemmoveForward(place + 1, place, after); |
c157b27e | 344 | |
fc31181d VZ |
345 | // if the ctor called below throws an exception, we need to move all |
346 | // the elements back to their original positions in m_values | |
347 | wxScopeGuard moveBack = wxMakeGuard( | |
348 | Ops::MemmoveBackward, place, place + 1, after); | |
349 | if ( !after ) | |
350 | moveBack.Dismiss(); | |
351 | ||
352 | // use placement new to initialize new object in preallocated place in | |
353 | // m_values and store 'v' in it: | |
0e82d270 | 354 | ::new(place) value_type(v); |
e966f815 | 355 | |
fc31181d VZ |
356 | // now that we did successfully add the new element, increment the size |
357 | // and disable moving the items back | |
358 | moveBack.Dismiss(); | |
0516de2c | 359 | m_size++; |
3c648a82 | 360 | |
0516de2c | 361 | return begin() + idx; |
1f32f585 | 362 | } |
3c648a82 | 363 | |
0516de2c | 364 | iterator erase(iterator it) |
3c648a82 | 365 | { |
0516de2c | 366 | return erase(it, it + 1); |
1f32f585 | 367 | } |
3c648a82 | 368 | |
0516de2c | 369 | iterator erase(iterator first, iterator last) |
df4aed1c | 370 | { |
0516de2c VS |
371 | if ( first == last ) |
372 | return first; | |
373 | wxASSERT( first < end() && last <= end() ); | |
f631cd8e | 374 | |
c157b27e VS |
375 | const size_type idx = first - begin(); |
376 | const size_type count = last - first; | |
377 | const size_type after = end() - last; | |
df4aed1c | 378 | |
c157b27e VS |
379 | // erase elements by calling their destructors: |
380 | for ( iterator i = first; i < last; ++i ) | |
6712283c | 381 | i->~T(); |
0516de2c | 382 | |
c157b27e VS |
383 | // once that's done, move following elements over to the freed space: |
384 | if ( after > 0 ) | |
385 | { | |
c9faa9e9 | 386 | Ops::MemmoveBackward(m_values + idx, m_values + idx + count, after); |
c157b27e | 387 | } |
f631cd8e | 388 | |
df4aed1c | 389 | m_size -= count; |
0516de2c | 390 | |
c157b27e | 391 | return begin() + idx; |
df4aed1c | 392 | } |
0516de2c VS |
393 | |
394 | #if WXWIN_COMPATIBILITY_2_8 | |
395 | wxDEPRECATED( size_type erase(size_type n) ); | |
396 | #endif // WXWIN_COMPATIBILITY_2_8 | |
397 | ||
398 | private: | |
f9bf06ac VS |
399 | // VC6 can't compile static const int members |
400 | enum { ALLOC_INITIAL_SIZE = 16 }; | |
401 | enum { ALLOC_MAX_SIZE = 4096 }; | |
0516de2c VS |
402 | |
403 | void Copy(const wxVector& vb) | |
3c648a82 | 404 | { |
0516de2c | 405 | reserve(vb.size()); |
3c648a82 | 406 | |
0516de2c VS |
407 | for ( const_iterator i = vb.begin(); i != vb.end(); ++i ) |
408 | push_back(*i); | |
1f32f585 | 409 | } |
3c648a82 | 410 | |
e966f815 | 411 | private: |
e068310a VZ |
412 | void Shrink(size_type n) |
413 | { | |
414 | for ( size_type i = n; i < m_size; i++ ) | |
415 | m_values[i].~T(); | |
416 | m_size = n; | |
417 | } | |
418 | ||
419 | void Extend(size_type n, const value_type& v) | |
420 | { | |
421 | reserve(n); | |
422 | for ( size_type i = m_size; i < n; i++ ) | |
423 | push_back(v); | |
424 | } | |
425 | ||
e966f815 VS |
426 | size_type m_size, |
427 | m_capacity; | |
0516de2c | 428 | value_type *m_values; |
3c648a82 VZ |
429 | }; |
430 | ||
9cf33372 VS |
431 | #if WXWIN_COMPATIBILITY_2_8 |
432 | template<typename T> | |
32aa5bda | 433 | inline typename wxVector<T>::size_type wxVector<T>::erase(size_type n) |
9cf33372 | 434 | { |
0516de2c | 435 | erase(begin() + n); |
9cf33372 VS |
436 | return n; |
437 | } | |
438 | #endif // WXWIN_COMPATIBILITY_2_8 | |
439 | ||
e966f815 | 440 | #endif // wxUSE_STL/!wxUSE_STL |
5fd588d2 | 441 | |
e966f815 VS |
442 | #if WXWIN_COMPATIBILITY_2_8 |
443 | #define WX_DECLARE_VECTORBASE(obj, cls) typedef wxVector<obj> cls | |
444 | #define _WX_DECLARE_VECTOR(obj, cls, exp) WX_DECLARE_VECTORBASE(obj, cls) | |
445 | #define WX_DECLARE_VECTOR(obj, cls) WX_DECLARE_VECTORBASE(obj, cls) | |
446 | #endif // WXWIN_COMPATIBILITY_2_8 | |
3c648a82 | 447 | |
e966f815 | 448 | #endif // _WX_VECTOR_H_ |