]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/vector.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: STL vector clone
4 // Author: Lindsay Mathieson
5 // Modified by: Vaclav Slavik - make it a template
7 // Copyright: (c) 2001 Lindsay Mathieson <lindsay@mathieson.org>,
8 // 2007 Vaclav Slavik <vslavik@fastmail.fm>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
20 #define wxVector std::vector
25 #include "wx/meta/movable.h"
26 #include "wx/meta/if.h"
28 #include "wx/beforestd.h"
29 #include <new> // for placement new
30 #include "wx/afterstd.h"
35 // These templates encapsulate memory operations for use by wxVector; there are
36 // two implementations, both in generic way for any C++ types and as an
37 // optimized version for "movable" types that uses realloc() and memmove().
39 // version for movable types:
41 struct wxVectorMemOpsMovable
43 static void Free(T
* array
)
46 static T
* Realloc(T
* old
, size_t newCapacity
, size_t WXUNUSED(occupiedSize
))
47 { return (T
*)realloc(old
, newCapacity
* sizeof(T
)); }
49 static void MemmoveBackward(T
* dest
, T
* source
, size_t count
)
50 { memmove(dest
, source
, count
* sizeof(T
)); }
52 static void MemmoveForward(T
* dest
, T
* source
, size_t count
)
53 { memmove(dest
, source
, count
* sizeof(T
)); }
56 // generic version for non-movable types:
58 struct wxVectorMemOpsGeneric
60 static void Free(T
* array
)
61 { ::operator delete(array
); }
63 static T
* Realloc(T
* old
, size_t newCapacity
, size_t occupiedSize
)
65 T
*mem
= (T
*)::operator new(newCapacity
* sizeof(T
));
66 for ( size_t i
= 0; i
< occupiedSize
; i
++ )
68 new(mem
+ i
) T(old
[i
]);
71 ::operator delete(old
);
75 static void MemmoveBackward(T
* dest
, T
* source
, size_t count
)
77 wxASSERT( dest
< source
);
79 T
* sourceptr
= source
;
80 for ( size_t i
= count
; i
> 0; --i
, ++destptr
, ++sourceptr
)
82 new(destptr
) T(*sourceptr
);
87 static void MemmoveForward(T
* dest
, T
* source
, size_t count
)
89 wxASSERT( dest
> source
);
90 T
* destptr
= dest
+ count
- 1;
91 T
* sourceptr
= source
+ count
- 1;
92 for ( size_t i
= count
; i
> 0; --i
, --destptr
, --sourceptr
)
94 new(destptr
) T(*sourceptr
);
101 } // namespace wxPrivate
107 // This cryptic expression means "typedef Ops to wxVectorMemOpsMovable if
108 // type T is movable type, otherwise to wxVectorMemOpsGeneric".
110 // Note that we use typedef instead of privately deriving from this (which
111 // would allowed us to omit "Ops::" prefixes below) to keep VC6 happy,
112 // it can't compile code that derives from wxIf<...>::value.
113 typedef typename wxIf
< wxIsMovable
<T
>::value
,
114 wxPrivate::wxVectorMemOpsMovable
<T
>,
115 wxPrivate::wxVectorMemOpsGeneric
<T
> >::value
119 typedef size_t size_type
;
120 typedef size_t difference_type
;
121 typedef T value_type
;
122 typedef value_type
* pointer
;
123 typedef value_type
* iterator
;
124 typedef const value_type
* const_iterator
;
125 typedef value_type
& reference
;
127 class reverse_iterator
130 reverse_iterator() : m_ptr(NULL
) { }
131 wxEXPLICIT
reverse_iterator(iterator it
) : m_ptr(it
) { }
132 reverse_iterator(const reverse_iterator
& it
) : m_ptr(it
.m_ptr
) { }
134 reference
operator*() const { return *m_ptr
; }
135 pointer
operator->() const { return m_ptr
; }
137 iterator
base() const { return m_ptr
; }
139 reverse_iterator
& operator++()
140 { --m_ptr
; return *this; }
141 reverse_iterator
operator++(int)
142 { reverse_iterator tmp
= *this; --m_ptr
; return tmp
; }
143 reverse_iterator
& operator--()
144 { ++m_ptr
; return *this; }
145 reverse_iterator
operator--(int)
146 { reverse_iterator tmp
= *this; ++m_ptr
; return tmp
; }
148 reverse_iterator
operator+(difference_type n
) const
149 { return reverse_iterator(m_ptr
- n
); }
150 reverse_iterator
& operator+=(difference_type n
)
151 { return m_ptr
-= n
; return *this; }
152 reverse_iterator
operator-(difference_type n
) const
153 { return reverse_iterator(m_ptr
+ n
); }
154 reverse_iterator
& operator-=(difference_type n
)
155 { return m_ptr
+= n
; return *this; }
157 reference
operator[](difference_type n
) const
158 { return *(*this + n
); }
160 bool operator ==(const reverse_iterator
& it
) const
161 { return m_ptr
== it
.m_ptr
; }
162 bool operator !=(const reverse_iterator
& it
) const
163 { return m_ptr
!= it
.m_ptr
; }
169 wxVector() : m_size(0), m_capacity(0), m_values(NULL
) {}
171 wxVector(const wxVector
& c
) : m_size(0), m_capacity(0), m_values(NULL
)
183 // call destructors of stored objects:
184 for ( size_type i
= 0; i
< m_size
; i
++ )
195 void reserve(size_type n
)
197 if ( n
<= m_capacity
)
200 // increase the size twice, unless we're already too big or unless
203 // NB: casts to size_type are needed to suppress mingw32 warnings about
204 // mixing enums and ints in the same expression
205 const size_type increment
= m_size
> 0
206 ? wxMin(m_size
, (size_type
)ALLOC_MAX_SIZE
)
207 : (size_type
)ALLOC_INITIAL_SIZE
;
208 if ( m_capacity
+ increment
> n
)
209 n
= m_capacity
+ increment
;
211 m_values
= Ops::Realloc(m_values
, n
* sizeof(value_type
), m_size
);
215 size_type
size() const
220 size_type
capacity() const
230 wxVector
& operator=(const wxVector
& vb
)
237 void push_back(const value_type
& v
)
241 // use placement new to initialize new object in preallocated place in
242 // m_values and store 'v' in it:
243 void* const place
= m_values
+ m_size
;
244 new(place
) value_type(v
);
246 // only increase m_size if the ctor didn't throw an exception; notice
247 // that if it _did_ throw, everything is OK, because we only increased
248 // vector's capacity so far and possibly written some data to
249 // uninitialized memory at the end of m_values
258 const value_type
& at(size_type idx
) const
260 wxASSERT(idx
< m_size
);
261 return m_values
[idx
];
264 value_type
& at(size_type idx
)
266 wxASSERT(idx
< m_size
);
267 return m_values
[idx
];
270 const value_type
& operator[](size_type idx
) const { return at(idx
); }
271 value_type
& operator[](size_type idx
) { return at(idx
); }
272 const value_type
& front() const { return at(0); }
273 value_type
& front() { return at(0); }
274 const value_type
& back() const { return at(size() - 1); }
275 value_type
& back() { return at(size() - 1); }
277 const_iterator
begin() const { return m_values
; }
278 iterator
begin() { return m_values
; }
279 const_iterator
end() const { return m_values
+ size(); }
280 iterator
end() { return m_values
+ size(); }
282 reverse_iterator
rbegin() { return reverse_iterator(end() - 1); }
283 reverse_iterator
rend() { return reverse_iterator(begin() - 1); }
285 iterator
insert(iterator it
, const value_type
& v
= value_type())
287 // NB: this must be done before reserve(), because reserve()
288 // invalidates iterators!
289 const size_t idx
= it
- begin();
290 const size_t after
= end() - it
;
294 // unless we're inserting at the end, move following elements out of
298 Ops::MemmoveForward(m_values
+ idx
+ 1, m_values
+ idx
, after
);
305 // use placement new to initialize new object in preallocated place
306 // in m_values and store 'v' in it:
307 void* const place
= m_values
+ idx
;
308 new(place
) value_type(v
);
313 // if the ctor threw an exception, we need to move all the elements
314 // back to their original positions in m_values
317 Ops::MemmoveBackward(m_values
+ idx
, m_values
+ idx
+ 1, after
);
320 throw; // rethrow the exception
322 #endif // wxUSE_EXCEPTIONS
324 // increment m_size only if ctor didn't throw -- if it did, we'll be
325 // left with m_values larger than necessary, but number of elements will
329 return begin() + idx
;
332 iterator
erase(iterator it
)
334 return erase(it
, it
+ 1);
337 iterator
erase(iterator first
, iterator last
)
341 wxASSERT( first
< end() && last
<= end() );
343 const size_type idx
= first
- begin();
344 const size_type count
= last
- first
;
345 const size_type after
= end() - last
;
347 // erase elements by calling their destructors:
348 for ( iterator i
= first
; i
< last
; ++i
)
351 // once that's done, move following elements over to the freed space:
354 Ops::MemmoveBackward(m_values
+ idx
, m_values
+ idx
+ count
, after
);
359 return begin() + idx
;
362 #if WXWIN_COMPATIBILITY_2_8
363 wxDEPRECATED( size_type
erase(size_type n
) );
364 #endif // WXWIN_COMPATIBILITY_2_8
367 // VC6 can't compile static const int members
368 enum { ALLOC_INITIAL_SIZE
= 16 };
369 enum { ALLOC_MAX_SIZE
= 4096 };
371 void Copy(const wxVector
& vb
)
375 for ( const_iterator i
= vb
.begin(); i
!= vb
.end(); ++i
)
382 value_type
*m_values
;
385 #if WXWIN_COMPATIBILITY_2_8
387 inline typename wxVector
<T
>::size_type wxVector
<T
>::erase(size_type n
)
392 #endif // WXWIN_COMPATIBILITY_2_8
394 #endif // wxUSE_STL/!wxUSE_STL
396 #if WXWIN_COMPATIBILITY_2_8
397 #define WX_DECLARE_VECTORBASE(obj, cls) typedef wxVector<obj> cls
398 #define _WX_DECLARE_VECTOR(obj, cls, exp) WX_DECLARE_VECTORBASE(obj, cls)
399 #define WX_DECLARE_VECTOR(obj, cls) WX_DECLARE_VECTORBASE(obj, cls)
400 #endif // WXWIN_COMPATIBILITY_2_8
402 #endif // _WX_VECTOR_H_