]>
Commit | Line | Data |
---|---|---|
df5168c4 MB |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: include/wx/arrstr.h | |
3 | // Purpose: wxArrayString class | |
4 | // Author: Mattia Barbon and Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 07/07/03 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
65571936 | 9 | // Licence: wxWindows licence |
df5168c4 MB |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_ARRSTR_H | |
13 | #define _WX_ARRSTR_H | |
14 | ||
15 | #include "wx/defs.h" | |
16 | #include "wx/string.h" | |
17 | ||
eae4425d JS |
18 | WXDLLIMPEXP_BASE int wxCMPFUNC_CONV wxStringSortAscending(wxString*, wxString*); |
19 | WXDLLIMPEXP_BASE int wxCMPFUNC_CONV wxStringSortDescending(wxString*, wxString*); | |
df5168c4 MB |
20 | |
21 | #if wxUSE_STL | |
22 | ||
23 | #include "wx/dynarray.h" | |
24 | ||
39318636 | 25 | typedef int (wxCMPFUNC_CONV *CMPFUNCwxString)(wxString*, wxString*); |
f700f98c MB |
26 | typedef wxString _wxArraywxBaseArrayStringBase; |
27 | _WX_DECLARE_BASEARRAY_2(_wxArraywxBaseArrayStringBase, wxBaseArrayStringBase, | |
28 | wxArray_SortFunction<wxString>, | |
29 | class WXDLLIMPEXP_BASE); | |
4629016d | 30 | WX_DEFINE_USER_EXPORTED_TYPEARRAY(wxString, wxArrayStringBase, |
116270c6 | 31 | wxBaseArrayStringBase, WXDLLIMPEXP_BASE); |
4629016d | 32 | _WX_DEFINE_SORTED_TYPEARRAY_2(wxString, wxSortedArrayStringBase, |
df5168c4 MB |
33 | wxBaseArrayStringBase, = wxStringSortAscending, |
34 | class WXDLLIMPEXP_BASE, CMPFUNCwxString); | |
35 | ||
36 | class WXDLLIMPEXP_BASE wxArrayString : public wxArrayStringBase | |
37 | { | |
38 | public: | |
4e75b65f MB |
39 | // type of function used by wxArrayString::Sort() |
40 | typedef int (wxCMPFUNC_CONV *CompareFunction)(const wxString& first, | |
41 | const wxString& second); | |
42 | ||
df5168c4 MB |
43 | wxArrayString() { } |
44 | wxArrayString(const wxArrayString& a) : wxArrayStringBase(a) { } | |
d44d0cbd JS |
45 | wxArrayString(size_t sz, const wxChar** a); |
46 | wxArrayString(size_t sz, const wxString* a); | |
2da2f941 | 47 | |
86501081 | 48 | int Index(const wxString& str, bool bCase = true, bool bFromEnd = false) const; |
4e75b65f MB |
49 | |
50 | void Sort(bool reverseOrder = false); | |
51 | void Sort(CompareFunction function); | |
14baddc9 | 52 | void Sort(CMPFUNCwxString function) { wxArrayStringBase::Sort(function); } |
555d0d7e MB |
53 | |
54 | size_t Add(const wxString& string, size_t copies = 1) | |
55 | { | |
56 | wxArrayStringBase::Add(string, copies); | |
57 | return size() - copies; | |
58 | } | |
6580df1b | 59 | }; |
df5168c4 MB |
60 | |
61 | class WXDLLIMPEXP_BASE wxSortedArrayString : public wxSortedArrayStringBase | |
62 | { | |
63 | public: | |
64 | wxSortedArrayString() : wxSortedArrayStringBase(wxStringSortAscending) | |
65 | { } | |
66 | wxSortedArrayString(const wxSortedArrayString& array) | |
67 | : wxSortedArrayStringBase(array) | |
68 | { } | |
69 | wxSortedArrayString(const wxArrayString& src) | |
70 | : wxSortedArrayStringBase(wxStringSortAscending) | |
71 | { | |
72 | reserve(src.size()); | |
73 | ||
74 | for ( size_t n = 0; n < src.size(); n++ ) | |
75 | Add(src[n]); | |
76 | } | |
2da2f941 | 77 | |
86501081 | 78 | int Index(const wxString& str, bool bCase = true, bool bFromEnd = false) const; |
df5168c4 MB |
79 | }; |
80 | ||
81 | #else // if !wxUSE_STL | |
82 | ||
df5168c4 MB |
83 | class WXDLLIMPEXP_BASE wxArrayString |
84 | { | |
85 | public: | |
86 | // type of function used by wxArrayString::Sort() | |
39318636 | 87 | typedef int (wxCMPFUNC_CONV *CompareFunction)(const wxString& first, |
df5168c4 MB |
88 | const wxString& second); |
89 | // type of function used by wxArrayString::Sort(), for compatibility with | |
90 | // wxArray | |
39318636 | 91 | typedef int (wxCMPFUNC_CONV *CompareFunction2)(wxString* first, |
df5168c4 MB |
92 | wxString* second); |
93 | ||
94 | // constructors and destructor | |
95 | // default ctor | |
584ad2a3 MB |
96 | wxArrayString() { Init(false); } |
97 | // if autoSort is true, the array is always sorted (in alphabetical order) | |
df5168c4 MB |
98 | // |
99 | // NB: the reason for using int and not bool is that like this we can avoid | |
100 | // using this ctor for implicit conversions from "const char *" (which | |
101 | // we'd like to be implicitly converted to wxString instead!) | |
102 | // | |
103 | // of course, using explicit would be even better - if all compilers | |
104 | // supported it... | |
584ad2a3 | 105 | wxArrayString(int autoSort) { Init(autoSort != 0); } |
d44d0cbd JS |
106 | // C string array ctor |
107 | wxArrayString(size_t sz, const wxChar** a); | |
108 | // wxString string array ctor | |
109 | wxArrayString(size_t sz, const wxString* a); | |
df5168c4 MB |
110 | // copy ctor |
111 | wxArrayString(const wxArrayString& array); | |
112 | // assignment operator | |
113 | wxArrayString& operator=(const wxArrayString& src); | |
114 | // not virtual, this class should not be derived from | |
115 | ~wxArrayString(); | |
116 | ||
117 | // memory management | |
118 | // empties the list, but doesn't release memory | |
119 | void Empty(); | |
120 | // empties the list and releases memory | |
121 | void Clear(); | |
122 | // preallocates memory for given number of items | |
123 | void Alloc(size_t nCount); | |
124 | // minimzes the memory usage (by freeing all extra memory) | |
125 | void Shrink(); | |
126 | ||
127 | // simple accessors | |
128 | // number of elements in the array | |
129 | size_t GetCount() const { return m_nCount; } | |
130 | // is it empty? | |
131 | bool IsEmpty() const { return m_nCount == 0; } | |
132 | // number of elements in the array (GetCount is preferred API) | |
133 | size_t Count() const { return m_nCount; } | |
134 | ||
135 | // items access (range checking is done in debug version) | |
136 | // get item at position uiIndex | |
137 | wxString& Item(size_t nIndex) const | |
138 | { | |
139 | wxASSERT_MSG( nIndex < m_nCount, | |
140 | _T("wxArrayString: index out of bounds") ); | |
141 | ||
b7452b3a | 142 | return m_pItems[nIndex]; |
df5168c4 MB |
143 | } |
144 | ||
145 | // same as Item() | |
146 | wxString& operator[](size_t nIndex) const { return Item(nIndex); } | |
147 | // get last item | |
148 | wxString& Last() const | |
149 | { | |
150 | wxASSERT_MSG( !IsEmpty(), | |
151 | _T("wxArrayString: index out of bounds") ); | |
b4a980f4 | 152 | return Item(GetCount() - 1); |
df5168c4 MB |
153 | } |
154 | ||
df5168c4 MB |
155 | |
156 | // item management | |
157 | // Search the element in the array, starting from the beginning if | |
584ad2a3 | 158 | // bFromEnd is false or from end otherwise. If bCase, comparison is case |
df5168c4 MB |
159 | // sensitive (default). Returns index of the first item matched or |
160 | // wxNOT_FOUND | |
86501081 | 161 | int Index (const wxString& str, bool bCase = true, bool bFromEnd = false) const; |
df5168c4 MB |
162 | // add new element at the end (if the array is not sorted), return its |
163 | // index | |
164 | size_t Add(const wxString& str, size_t nInsert = 1); | |
165 | // add new element at given position | |
166 | void Insert(const wxString& str, size_t uiIndex, size_t nInsert = 1); | |
167 | // expand the array to have count elements | |
168 | void SetCount(size_t count); | |
169 | // remove first item matching this value | |
170 | void Remove(const wxChar *sz); | |
171 | // remove item by index | |
df5168c4 MB |
172 | void RemoveAt(size_t nIndex, size_t nRemove = 1); |
173 | ||
174 | // sorting | |
175 | // sort array elements in alphabetical order (or reversed alphabetical | |
584ad2a3 MB |
176 | // order if reverseOrder parameter is true) |
177 | void Sort(bool reverseOrder = false); | |
df5168c4 MB |
178 | // sort array elements using specified comparaison function |
179 | void Sort(CompareFunction compareFunction); | |
180 | void Sort(CompareFunction2 compareFunction); | |
181 | ||
182 | // comparison | |
183 | // compare two arrays case sensitively | |
184 | bool operator==(const wxArrayString& a) const; | |
185 | // compare two arrays case sensitively | |
186 | bool operator!=(const wxArrayString& a) const { return !(*this == a); } | |
187 | ||
188 | // STL-like interface | |
189 | typedef wxString value_type; | |
190 | typedef value_type* pointer; | |
191 | typedef const value_type* const_pointer; | |
192 | typedef value_type* iterator; | |
193 | typedef const value_type* const_iterator; | |
194 | typedef value_type& reference; | |
195 | typedef const value_type& const_reference; | |
196 | typedef int difference_type; | |
197 | typedef size_t size_type; | |
198 | ||
3c7896fd | 199 | // TODO: this code duplicates the one in dynarray.h |
df5168c4 MB |
200 | class reverse_iterator |
201 | { | |
37589419 MB |
202 | typedef wxString value_type; |
203 | typedef value_type* pointer; | |
204 | typedef value_type& reference; | |
df5168c4 MB |
205 | typedef reverse_iterator itor; |
206 | friend itor operator+(int o, const itor& it); | |
207 | friend itor operator+(const itor& it, int o); | |
208 | friend itor operator-(const itor& it, int o); | |
209 | friend difference_type operator -(const itor& i1, const itor& i2); | |
210 | public: | |
211 | pointer m_ptr; | |
212 | reverse_iterator() : m_ptr(NULL) { } | |
213 | reverse_iterator(pointer ptr) : m_ptr(ptr) { } | |
214 | reverse_iterator(const itor& it) : m_ptr(it.m_ptr) { } | |
215 | reference operator*() const { return *m_ptr; } | |
216 | pointer operator->() const { return m_ptr; } | |
60d8e886 VZ |
217 | itor& operator++() { --m_ptr; return *this; } |
218 | const itor operator++(int) | |
df5168c4 | 219 | { reverse_iterator tmp = *this; --m_ptr; return tmp; } |
60d8e886 VZ |
220 | itor& operator--() { ++m_ptr; return *this; } |
221 | const itor operator--(int) { itor tmp = *this; ++m_ptr; return tmp; } | |
222 | bool operator ==(const itor& it) const { return m_ptr == it.m_ptr; } | |
223 | bool operator !=(const itor& it) const { return m_ptr != it.m_ptr; } | |
df5168c4 MB |
224 | }; |
225 | ||
226 | class const_reverse_iterator | |
227 | { | |
37589419 MB |
228 | typedef wxString value_type; |
229 | typedef const value_type* pointer; | |
230 | typedef const value_type& reference; | |
df5168c4 MB |
231 | typedef const_reverse_iterator itor; |
232 | friend itor operator+(int o, const itor& it); | |
233 | friend itor operator+(const itor& it, int o); | |
234 | friend itor operator-(const itor& it, int o); | |
235 | friend difference_type operator -(const itor& i1, const itor& i2); | |
236 | public: | |
237 | pointer m_ptr; | |
238 | const_reverse_iterator() : m_ptr(NULL) { } | |
239 | const_reverse_iterator(pointer ptr) : m_ptr(ptr) { } | |
240 | const_reverse_iterator(const itor& it) : m_ptr(it.m_ptr) { } | |
241 | const_reverse_iterator(const reverse_iterator& it) : m_ptr(it.m_ptr) { } | |
242 | reference operator*() const { return *m_ptr; } | |
243 | pointer operator->() const { return m_ptr; } | |
60d8e886 VZ |
244 | itor& operator++() { --m_ptr; return *this; } |
245 | const itor operator++(int) | |
df5168c4 | 246 | { itor tmp = *this; --m_ptr; return tmp; } |
60d8e886 VZ |
247 | itor& operator--() { ++m_ptr; return *this; } |
248 | const itor operator--(int) { itor tmp = *this; ++m_ptr; return tmp; } | |
249 | bool operator ==(const itor& it) const { return m_ptr == it.m_ptr; } | |
250 | bool operator !=(const itor& it) const { return m_ptr != it.m_ptr; } | |
df5168c4 MB |
251 | }; |
252 | ||
584ad2a3 MB |
253 | wxArrayString(const_iterator first, const_iterator last) |
254 | { Init(false); assign(first, last); } | |
255 | wxArrayString(size_type n, const_reference v) { Init(false); assign(n, v); } | |
df5168c4 MB |
256 | void assign(const_iterator first, const_iterator last); |
257 | void assign(size_type n, const_reference v) | |
258 | { clear(); Add(v, n); } | |
259 | reference back() { return *(end() - 1); } | |
260 | const_reference back() const { return *(end() - 1); } | |
b7452b3a VS |
261 | iterator begin() { return m_pItems; } |
262 | const_iterator begin() const { return m_pItems; } | |
df5168c4 MB |
263 | size_type capacity() const { return m_nSize; } |
264 | void clear() { Clear(); } | |
265 | bool empty() const { return IsEmpty(); } | |
266 | iterator end() { return begin() + GetCount(); } | |
267 | const_iterator end() const { return begin() + GetCount(); } | |
268 | iterator erase(iterator first, iterator last) | |
269 | { | |
270 | size_t idx = first - begin(); | |
271 | RemoveAt(idx, last - first); | |
272 | return begin() + idx; | |
273 | } | |
274 | iterator erase(iterator it) { return erase(it, it + 1); } | |
275 | reference front() { return *begin(); } | |
276 | const_reference front() const { return *begin(); } | |
277 | void insert(iterator it, size_type n, const_reference v) | |
278 | { Insert(v, it - begin(), n); } | |
279 | iterator insert(iterator it, const_reference v = value_type()) | |
280 | { size_t idx = it - begin(); Insert(v, idx); return begin() + idx; } | |
281 | void insert(iterator it, const_iterator first, const_iterator last); | |
282 | size_type max_size() const { return INT_MAX; } | |
283 | void pop_back() { RemoveAt(GetCount() - 1); } | |
284 | void push_back(const_reference v) { Add(v); } | |
285 | reverse_iterator rbegin() { return reverse_iterator(end() - 1); } | |
286 | const_reverse_iterator rbegin() const; | |
287 | reverse_iterator rend() { return reverse_iterator(begin() - 1); } | |
288 | const_reverse_iterator rend() const; | |
289 | void reserve(size_type n) /* base::reserve*/; | |
290 | void resize(size_type n, value_type v = value_type()); | |
291 | size_type size() const { return GetCount(); } | |
292 | ||
293 | protected: | |
294 | void Init(bool autoSort); // common part of all ctors | |
295 | void Copy(const wxArrayString& src); // copies the contents of another array | |
296 | ||
297 | private: | |
298 | void Grow(size_t nIncrement = 0); // makes array bigger if needed | |
df5168c4 MB |
299 | |
300 | void DoSort(); // common part of all Sort() variants | |
301 | ||
302 | size_t m_nSize, // current size of the array | |
303 | m_nCount; // current number of elements | |
304 | ||
b7452b3a | 305 | wxString *m_pItems; // pointer to data |
df5168c4 | 306 | |
584ad2a3 | 307 | bool m_autoSort; // if true, keep the array always sorted |
df5168c4 MB |
308 | }; |
309 | ||
310 | class WXDLLIMPEXP_BASE wxSortedArrayString : public wxArrayString | |
311 | { | |
312 | public: | |
584ad2a3 | 313 | wxSortedArrayString() : wxArrayString(true) |
df5168c4 | 314 | { } |
584ad2a3 | 315 | wxSortedArrayString(const wxArrayString& array) : wxArrayString(true) |
df5168c4 MB |
316 | { Copy(array); } |
317 | }; | |
318 | ||
319 | #endif // !wxUSE_STL | |
320 | ||
584ad2a3 MB |
321 | // this class provides a temporary wxString* from a |
322 | // wxArrayString | |
323 | class WXDLLIMPEXP_BASE wxCArrayString | |
324 | { | |
325 | public: | |
326 | wxCArrayString( const wxArrayString& array ) | |
327 | : m_array( array ), m_strings( NULL ) | |
328 | { } | |
329 | ~wxCArrayString() { delete[] m_strings; } | |
330 | ||
331 | size_t GetCount() const { return m_array.GetCount(); } | |
332 | wxString* GetStrings() | |
333 | { | |
334 | if( m_strings ) return m_strings; | |
335 | size_t count = m_array.GetCount(); | |
336 | m_strings = new wxString[count]; | |
337 | for( size_t i = 0; i < count; ++i ) | |
338 | m_strings[i] = m_array[i]; | |
339 | return m_strings; | |
340 | } | |
341 | private: | |
342 | const wxArrayString& m_array; | |
343 | wxString* m_strings; | |
344 | }; | |
345 | ||
abbb59e8 VZ |
346 | |
347 | // ---------------------------------------------------------------------------- | |
348 | // helper functions for working with arrays | |
349 | // ---------------------------------------------------------------------------- | |
350 | ||
351 | // by default, these functions use the escape character to escape the | |
352 | // separators occuring inside the string to be joined, this can be disabled by | |
353 | // passing '\0' as escape | |
354 | ||
355 | WXDLLIMPEXP_BASE wxString wxJoin(const wxArrayString& arr, | |
356 | const wxChar sep, | |
357 | const wxChar escape = wxT('\\')); | |
358 | ||
359 | WXDLLIMPEXP_BASE wxArrayString wxSplit(const wxString& str, | |
360 | const wxChar sep, | |
361 | const wxChar escape = wxT('\\')); | |
362 | ||
363 | #endif // _WX_ARRSTR_H |