]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: dynarray.cpp | |
3 | // Purpose: implementation of wxBaseArray class | |
4 | // Author: Vadim Zeitlin | |
3bfa4402 | 5 | // Modified by: |
c801d85f KB |
6 | // Created: 12.09.97 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
9 | // Licence: wxWindows license | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // headers | |
14 | // ============================================================================ | |
15 | ||
16 | #ifdef __GNUG__ | |
17 | #pragma implementation "dynarray.h" | |
18 | #endif | |
19 | ||
3096bd2f | 20 | #include "wx/wxprec.h" |
c801d85f KB |
21 | |
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
26 | #include "wx/dynarray.h" | |
3096bd2f | 27 | #include "wx/intl.h" |
c801d85f KB |
28 | |
29 | #include <stdlib.h> | |
3bfa4402 | 30 | #include <string.h> // for memmove |
c801d85f KB |
31 | |
32 | #ifndef max | |
33 | #define max(a, b) (((a) > (b)) ? (a) : (b)) | |
34 | #endif | |
35 | ||
36 | // ============================================================================ | |
37 | // constants | |
38 | // ============================================================================ | |
39 | ||
40 | // size increment = max(50% of current size, ARRAY_MAXSIZE_INCREMENT) | |
41 | #define ARRAY_MAXSIZE_INCREMENT 4096 | |
42 | ||
43 | // ============================================================================ | |
44 | // implementation | |
45 | // ============================================================================ | |
46 | ||
47 | // ---------------------------------------------------------------------------- | |
48 | // wxBaseArray - dynamice array of 'long's | |
49 | // ---------------------------------------------------------------------------- | |
50 | ||
51 | // ctor | |
52 | wxBaseArray::wxBaseArray() | |
53 | { | |
3093cef8 VZ |
54 | m_nSize = |
55 | m_nCount = 0; | |
c67daf87 | 56 | m_pItems = (long *) NULL; |
c801d85f KB |
57 | } |
58 | ||
59 | // copy ctor | |
60 | wxBaseArray::wxBaseArray(const wxBaseArray& src) | |
61 | { | |
3093cef8 VZ |
62 | m_nSize = // not src.m_nSize to save memory |
63 | m_nCount = src.m_nCount; | |
c801d85f | 64 | |
3093cef8 VZ |
65 | if ( m_nSize != 0 ) { |
66 | m_pItems = new long[m_nSize]; | |
67 | memcpy(m_pItems, src.m_pItems, m_nCount*sizeof(long)); | |
3bfa4402 | 68 | } |
c801d85f | 69 | else |
c67daf87 | 70 | m_pItems = (long *) NULL; |
c801d85f KB |
71 | } |
72 | ||
3bfa4402 | 73 | // assignment operator |
c801d85f KB |
74 | wxBaseArray& wxBaseArray::operator=(const wxBaseArray& src) |
75 | { | |
a3622daa | 76 | wxDELETEA(m_pItems); |
c801d85f | 77 | |
3093cef8 VZ |
78 | m_nSize = // not src.m_nSize to save memory |
79 | m_nCount = src.m_nCount; | |
c801d85f | 80 | |
3093cef8 VZ |
81 | if ( m_nSize != 0 ) { |
82 | m_pItems = new long[m_nSize]; | |
83 | memcpy(m_pItems, src.m_pItems, m_nCount*sizeof(long)); | |
3bfa4402 | 84 | } |
c801d85f | 85 | else |
c67daf87 | 86 | m_pItems = (long *) NULL; |
c801d85f | 87 | |
c801d85f KB |
88 | return *this; |
89 | } | |
90 | ||
91 | // grow the array | |
92 | void wxBaseArray::Grow() | |
93 | { | |
94 | // only do it if no more place | |
3093cef8 VZ |
95 | if( m_nCount == m_nSize ) { |
96 | if( m_nSize == 0 ) { | |
c801d85f | 97 | // was empty, alloc some memory |
3093cef8 VZ |
98 | m_nSize = WX_ARRAY_DEFAULT_INITIAL_SIZE; |
99 | m_pItems = new long[m_nSize]; | |
c801d85f KB |
100 | } |
101 | else | |
102 | { | |
103 | // add 50% but not too much | |
3093cef8 VZ |
104 | size_t nIncrement = m_nSize < WX_ARRAY_DEFAULT_INITIAL_SIZE |
105 | ? WX_ARRAY_DEFAULT_INITIAL_SIZE : m_nSize >> 1; | |
106 | if ( nIncrement > ARRAY_MAXSIZE_INCREMENT ) | |
107 | nIncrement = ARRAY_MAXSIZE_INCREMENT; | |
108 | m_nSize += nIncrement; | |
109 | long *pNew = new long[m_nSize]; | |
c801d85f KB |
110 | |
111 | // copy data to new location | |
3093cef8 | 112 | memcpy(pNew, m_pItems, m_nCount*sizeof(long)); |
c801d85f KB |
113 | delete [] m_pItems; |
114 | m_pItems = pNew; | |
115 | } | |
116 | } | |
117 | } | |
118 | ||
119 | // dtor | |
120 | wxBaseArray::~wxBaseArray() | |
121 | { | |
a3622daa | 122 | wxDELETEA(m_pItems); |
c801d85f KB |
123 | } |
124 | ||
125 | // clears the list | |
126 | void wxBaseArray::Clear() | |
127 | { | |
3093cef8 VZ |
128 | m_nSize = |
129 | m_nCount = 0; | |
c801d85f | 130 | |
a3622daa | 131 | wxDELETEA(m_pItems); |
c801d85f KB |
132 | } |
133 | ||
134 | // pre-allocates memory (frees the previous data!) | |
3093cef8 | 135 | void wxBaseArray::Alloc(size_t nSize) |
c801d85f | 136 | { |
c801d85f | 137 | // only if old buffer was not big enough |
3093cef8 | 138 | if ( nSize > m_nSize ) { |
a3622daa | 139 | wxDELETEA(m_pItems); |
3093cef8 VZ |
140 | m_pItems = new long[nSize]; |
141 | m_nSize = nSize; | |
c801d85f KB |
142 | } |
143 | ||
3093cef8 VZ |
144 | m_nCount = 0; |
145 | } | |
146 | ||
147 | // minimizes the memory usage by freeing unused memory | |
148 | void wxBaseArray::Shrink() | |
149 | { | |
150 | // only do it if we have some memory to free | |
151 | if( m_nCount < m_nSize ) { | |
152 | // allocates exactly as much memory as we need | |
153 | long *pNew = new long[m_nCount]; | |
154 | ||
155 | // copy data to new location | |
156 | memcpy(pNew, m_pItems, m_nCount*sizeof(long)); | |
157 | delete [] m_pItems; | |
158 | m_pItems = pNew; | |
159 | } | |
c801d85f KB |
160 | } |
161 | ||
162 | // searches the array for an item (forward or backwards) | |
05fafecd | 163 | int wxBaseArray::Index(long lItem, bool bFromEnd) const |
c801d85f KB |
164 | { |
165 | if ( bFromEnd ) { | |
3093cef8 VZ |
166 | if ( m_nCount > 0 ) { |
167 | size_t n = m_nCount; | |
c801d85f | 168 | do { |
3093cef8 VZ |
169 | if ( m_pItems[--n] == lItem ) |
170 | return n; | |
c801d85f | 171 | } |
3093cef8 | 172 | while ( n != 0 ); |
c801d85f KB |
173 | } |
174 | } | |
175 | else { | |
3093cef8 VZ |
176 | for( size_t n = 0; n < m_nCount; n++ ) { |
177 | if( m_pItems[n] == lItem ) | |
178 | return n; | |
c801d85f KB |
179 | } |
180 | } | |
181 | ||
3c67202d | 182 | return wxNOT_FOUND; |
c801d85f KB |
183 | } |
184 | ||
3bfa4402 | 185 | // search for an item in a sorted array (binary search) |
e99c3048 | 186 | int wxBaseArray::Index(long lItem, CMPFUNC fnCompare) const |
3bfa4402 | 187 | { |
c86f1403 | 188 | size_t i, |
3bfa4402 | 189 | lo = 0, |
3093cef8 | 190 | hi = m_nCount; |
3bfa4402 VZ |
191 | int res; |
192 | ||
193 | while ( lo < hi ) { | |
194 | i = (lo + hi)/2; | |
195 | ||
196 | res = (*fnCompare)((const void *)lItem, (const void *)m_pItems[i]); | |
197 | if ( res < 0 ) | |
198 | hi = i; | |
199 | else if ( res > 0 ) | |
200 | lo = i + 1; | |
201 | else | |
202 | return i; | |
203 | } | |
204 | ||
3c67202d | 205 | return wxNOT_FOUND; |
3bfa4402 | 206 | } |
c801d85f KB |
207 | // add item at the end |
208 | void wxBaseArray::Add(long lItem) | |
209 | { | |
210 | Grow(); | |
3093cef8 | 211 | m_pItems[m_nCount++] = lItem; |
c801d85f KB |
212 | } |
213 | ||
3bfa4402 VZ |
214 | // add item assuming the array is sorted with fnCompare function |
215 | void wxBaseArray::Add(long lItem, CMPFUNC fnCompare) | |
216 | { | |
c86f1403 | 217 | size_t i, |
3bfa4402 | 218 | lo = 0, |
3093cef8 | 219 | hi = m_nCount; |
3bfa4402 VZ |
220 | int res; |
221 | ||
222 | while ( lo < hi ) { | |
223 | i = (lo + hi)/2; | |
224 | ||
225 | res = (*fnCompare)((const void *)lItem, (const void *)m_pItems[i]); | |
226 | if ( res < 0 ) | |
227 | hi = i; | |
228 | else if ( res > 0 ) | |
229 | lo = i + 1; | |
230 | else { | |
231 | lo = hi = i; | |
232 | break; | |
233 | } | |
234 | } | |
235 | ||
236 | wxASSERT( lo == hi ); // I hope I got binary search right :-) | |
237 | ||
238 | Insert(lItem, lo); | |
239 | } | |
240 | ||
c801d85f | 241 | // add item at the given position |
3093cef8 | 242 | void wxBaseArray::Insert(long lItem, size_t nIndex) |
c801d85f | 243 | { |
223d09f6 | 244 | wxCHECK_RET( nIndex <= m_nCount, wxT("bad index in wxArray::Insert") ); |
c801d85f KB |
245 | |
246 | Grow(); | |
247 | ||
3093cef8 VZ |
248 | memmove(&m_pItems[nIndex + 1], &m_pItems[nIndex], |
249 | (m_nCount - nIndex)*sizeof(long)); | |
250 | m_pItems[nIndex] = lItem; | |
251 | m_nCount++; | |
c801d85f KB |
252 | } |
253 | ||
254 | // removes item from array (by index) | |
8a729bb8 | 255 | void wxBaseArray::RemoveAt(size_t nIndex) |
c801d85f | 256 | { |
8a729bb8 | 257 | wxCHECK_RET( nIndex <= m_nCount, wxT("bad index in wxArray::RemoveAt") ); |
c801d85f | 258 | |
3093cef8 VZ |
259 | memmove(&m_pItems[nIndex], &m_pItems[nIndex + 1], |
260 | (m_nCount - nIndex - 1)*sizeof(long)); | |
261 | m_nCount--; | |
c801d85f KB |
262 | } |
263 | ||
264 | // removes item from array (by value) | |
265 | void wxBaseArray::Remove(long lItem) | |
266 | { | |
267 | int iIndex = Index(lItem); | |
268 | ||
3c67202d | 269 | wxCHECK_RET( iIndex != wxNOT_FOUND, |
223d09f6 | 270 | wxT("removing inexistent item in wxArray::Remove") ); |
c801d85f | 271 | |
f373f197 | 272 | RemoveAt((size_t)iIndex); |
c801d85f KB |
273 | } |
274 | ||
275 | // sort array elements using passed comparaison function | |
276 | void wxBaseArray::Sort(CMPFUNC fCmp) | |
277 | { | |
3093cef8 | 278 | qsort(m_pItems, m_nCount, sizeof(long), fCmp); |
c801d85f | 279 | } |