1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: implementation of wxBaseArray class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
17 #pragma implementation "dynarray.h"
20 #include "wx/wxprec.h"
26 #include "wx/dynarray.h"
30 #include <string.h> // for memmove
33 #define max(a, b) (((a) > (b)) ? (a) : (b))
36 // we cast the value to long from which we cast it to void * in IndexForInsert:
37 // this can't work if the pointers are not big enough
38 wxCOMPILE_TIME_ASSERT( sizeof(long) <= sizeof(void *),
39 wxArraySizeOfPtrLessSizeOfLong
); // < 32 symbols
41 // ============================================================================
43 // ============================================================================
45 // size increment = max(50% of current size, ARRAY_MAXSIZE_INCREMENT)
46 #define ARRAY_MAXSIZE_INCREMENT 4096
48 // ============================================================================
50 // ============================================================================
52 // ----------------------------------------------------------------------------
53 // wxBaseArray - dynamic array of 'T's
54 // ----------------------------------------------------------------------------
56 #define _WX_DEFINE_BASEARRAY(T, name) \
62 m_pItems = (T *)NULL; \
66 name::name(const name& src) \
68 m_nSize = /* not src.m_nSize to save memory */ \
69 m_nCount = src.m_nCount; \
71 if ( m_nSize != 0 ) { \
72 m_pItems = new T[m_nSize]; \
73 /* only copy if allocation succeeded */ \
75 memcpy(m_pItems, src.m_pItems, m_nCount*sizeof(T)); \
82 m_pItems = (T *) NULL; \
85 /* assignment operator */ \
86 name& name::operator=(const name& src) \
88 wxDELETEA(m_pItems); \
90 m_nSize = /* not src.m_nSize to save memory */ \
91 m_nCount = src.m_nCount; \
93 if ( m_nSize != 0 ){ \
94 m_pItems = new T[m_nSize]; \
95 /* only copy if allocation succeeded */ \
97 memcpy(m_pItems, src.m_pItems, m_nCount*sizeof(T)); \
104 m_pItems = (T *) NULL; \
109 /* grow the array */ \
110 void name::Grow(size_t nIncrement) \
112 /* only do it if no more place */ \
113 if( (m_nCount == m_nSize) || ((m_nSize - m_nCount) < nIncrement) ) { \
114 if( m_nSize == 0 ) { \
115 /* was empty, determine initial size */ \
116 size_t size = WX_ARRAY_DEFAULT_INITIAL_SIZE; \
117 if (size < nIncrement) size = nIncrement; \
118 /* allocate some memory */ \
119 m_pItems = new T[size]; \
120 /* only grow if allocation succeeded */ \
127 /* add at least 50% but not too much */ \
128 size_t ndefIncrement = m_nSize < WX_ARRAY_DEFAULT_INITIAL_SIZE \
129 ? WX_ARRAY_DEFAULT_INITIAL_SIZE : m_nSize >> 1; \
130 if ( ndefIncrement > ARRAY_MAXSIZE_INCREMENT ) \
131 ndefIncrement = ARRAY_MAXSIZE_INCREMENT; \
132 if ( nIncrement < ndefIncrement ) \
133 nIncrement = ndefIncrement; \
134 T *pNew = new T[m_nSize + nIncrement]; \
135 /* only grow if allocation succeeded */ \
137 m_nSize += nIncrement; \
138 /* copy data to new location */ \
139 memcpy(pNew, m_pItems, m_nCount*sizeof(T)); \
140 delete [] m_pItems; \
150 wxDELETEA(m_pItems); \
153 /* clears the list */ \
159 wxDELETEA(m_pItems); \
162 /* pre-allocates memory (frees the previous data!) */ \
163 void name::Alloc(size_t nSize) \
165 /* only if old buffer was not big enough */ \
166 if ( nSize > m_nSize ) { \
167 wxDELETEA(m_pItems); \
169 m_pItems = new T[nSize]; \
170 /* only alloc if allocation succeeded */ \
179 /* minimizes the memory usage by freeing unused memory */ \
180 void name::Shrink() \
182 /* only do it if we have some memory to free */ \
183 if( m_nCount < m_nSize ) { \
184 /* allocates exactly as much memory as we need */ \
185 T *pNew = new T[m_nCount]; \
186 /* only shrink if allocation succeeded */ \
188 /* copy data to new location */ \
189 memcpy(pNew, m_pItems, m_nCount*sizeof(T)); \
190 delete [] m_pItems; \
196 /* searches the array for an item (forward or backwards) */ \
197 int name::Index(T lItem, bool bFromEnd) const \
200 if ( m_nCount > 0 ) { \
201 size_t n = m_nCount; \
203 if ( m_pItems[--n] == lItem ) \
210 for( size_t n = 0; n < m_nCount; n++ ) { \
211 if( m_pItems[n] == lItem ) \
216 return wxNOT_FOUND; \
219 /* search for a place to insert item into sorted array (binary search) */ \
220 size_t name::IndexForInsert(T lItem, CMPFUNC fnCompare) const \
227 while ( lo < hi ) { \
230 res = (*fnCompare)((const void *)(long)lItem, \
231 (const void *)(long)(m_pItems[i])); \
234 else if ( res > 0 ) \
245 /* search for an item in a sorted array (binary search) */ \
246 int name::Index(T lItem, CMPFUNC fnCompare) const \
248 size_t n = IndexForInsert(lItem, fnCompare); \
250 return n < m_nCount && m_pItems[n] == lItem ? (int)n : wxNOT_FOUND; \
253 /* add item at the end */ \
254 void name::Add(T lItem, size_t nInsert) \
259 for (size_t i = 0; i < nInsert; i++) \
260 m_pItems[m_nCount++] = lItem; \
263 /* add item assuming the array is sorted with fnCompare function */ \
264 void name::Add(T lItem, CMPFUNC fnCompare) \
266 Insert(lItem, IndexForInsert(lItem, fnCompare)); \
269 /* add item at the given position */ \
270 void name::Insert(T lItem, size_t nIndex, size_t nInsert) \
272 wxCHECK_RET( nIndex <= m_nCount, wxT("bad index in wxArray::Insert") ); \
273 wxCHECK_RET( m_nCount <= m_nCount + nInsert, \
274 wxT("array size overflow in wxArray::Insert") ); \
280 memmove(&m_pItems[nIndex + nInsert], &m_pItems[nIndex], \
281 (m_nCount - nIndex)*sizeof(T)); \
282 for (size_t i = 0; i < nInsert; i++) \
283 m_pItems[nIndex + i] = lItem; \
284 m_nCount += nInsert; \
287 /* removes item from array (by index) */ \
288 void name::RemoveAt(size_t nIndex, size_t nRemove) \
290 wxCHECK_RET( nIndex < m_nCount, wxT("bad index in wxArray::RemoveAt") ); \
291 wxCHECK_RET( nIndex + nRemove <= m_nCount, \
292 wxT("removing too many elements in wxArray::RemoveAt") ); \
294 memmove(&m_pItems[nIndex], &m_pItems[nIndex + nRemove], \
295 (m_nCount - nIndex - nRemove)*sizeof(T)); \
296 m_nCount -= nRemove; \
299 /* removes item from array (by value) */ \
300 void name::Remove(T lItem) \
302 int iIndex = Index(lItem); \
304 wxCHECK_RET( iIndex != wxNOT_FOUND, \
305 wxT("removing inexistent item in wxArray::Remove") ); \
307 RemoveAt((size_t)iIndex); \
310 /* sort array elements using passed comparaison function */ \
311 void name::Sort(CMPFUNC fCmp) \
313 qsort(m_pItems, m_nCount, sizeof(T), fCmp); \
316 _WX_DEFINE_BASEARRAY(const void *, wxBaseArrayPtrVoid
)
317 _WX_DEFINE_BASEARRAY(short, wxBaseArrayShort
)
318 _WX_DEFINE_BASEARRAY(int, wxBaseArrayInt
)
319 _WX_DEFINE_BASEARRAY(long, wxBaseArrayLong
)
320 //_WX_DEFINE_BASEARRAY(double, wxBaseArrayDouble)