]> git.saurik.com Git - wxWidgets.git/blob - src/common/string.cpp
extracted OnSize() body in a new DoLayout() method so that it can be called from...
[wxWidgets.git] / src / common / string.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: string.cpp
3 // Purpose: wxString class
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 29/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "string.h"
14 #endif
15
16 /*
17 * About ref counting:
18 * 1) all empty strings use g_strEmpty, nRefs = -1 (set in Init())
19 * 2) AllocBuffer() sets nRefs to 1, Lock() increments it by one
20 * 3) Unlock() decrements nRefs and frees memory if it goes to 0
21 */
22
23 // ===========================================================================
24 // headers, declarations, constants
25 // ===========================================================================
26
27 // For compilers that support precompilation, includes "wx.h".
28 #include "wx/wxprec.h"
29
30 #ifdef __BORLANDC__
31 #pragma hdrstop
32 #endif
33
34 #ifndef WX_PRECOMP
35 #include "wx/defs.h"
36 #include "wx/string.h"
37 #include "wx/intl.h"
38 #include "wx/thread.h"
39 #endif
40
41 #include <ctype.h>
42 #include <string.h>
43 #include <stdlib.h>
44
45 #ifdef __SALFORDC__
46 #include <clib.h>
47 #endif
48
49 // allocating extra space for each string consumes more memory but speeds up
50 // the concatenation operations (nLen is the current string's length)
51 // NB: EXTRA_ALLOC must be >= 0!
52 #define EXTRA_ALLOC (19 - nLen % 16)
53
54 // ---------------------------------------------------------------------------
55 // static class variables definition
56 // ---------------------------------------------------------------------------
57
58 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
59 // must define this static for VA or else you get multiply defined symbols
60 // everywhere
61 const unsigned int wxSTRING_MAXLEN = UINT_MAX - 100;
62 #endif // Visual Age
63
64 #if !wxUSE_STL
65 const size_t wxStringBase::npos = wxSTRING_MAXLEN;
66 #endif
67
68 // ----------------------------------------------------------------------------
69 // static data
70 // ----------------------------------------------------------------------------
71
72 #if wxUSE_STL
73
74 extern const wxChar WXDLLIMPEXP_BASE *wxEmptyString = _T("");
75
76 #else
77
78 // for an empty string, GetStringData() will return this address: this
79 // structure has the same layout as wxStringData and it's data() method will
80 // return the empty string (dummy pointer)
81 static const struct
82 {
83 wxStringData data;
84 wxChar dummy;
85 } g_strEmpty = { {-1, 0, 0}, wxT('\0') };
86
87 // empty C style string: points to 'string data' byte of g_strEmpty
88 extern const wxChar WXDLLIMPEXP_BASE *wxEmptyString = &g_strEmpty.dummy;
89
90 #endif
91
92 // ----------------------------------------------------------------------------
93 // global functions
94 // ----------------------------------------------------------------------------
95
96 #if wxUSE_STD_IOSTREAM
97
98 // MS Visual C++ version 5.0 provides the new STL headers as well as the old
99 // iostream ones.
100 //
101 // ATTN: you can _not_ use both of these in the same program!
102
103 #include <iostream>
104
105 wxSTD istream& operator>>(wxSTD istream& is, wxString& WXUNUSED(str))
106 {
107 #if 0
108 int w = is.width(0);
109 if ( is.ipfx(0) ) {
110 streambuf *sb = is.rdbuf();
111 str.erase();
112 while ( true ) {
113 int ch = sb->sbumpc ();
114 if ( ch == EOF ) {
115 is.setstate(ios::eofbit);
116 break;
117 }
118 else if ( isspace(ch) ) {
119 sb->sungetc();
120 break;
121 }
122
123 str += ch;
124 if ( --w == 1 )
125 break;
126 }
127 }
128
129 is.isfx();
130 if ( str.length() == 0 )
131 is.setstate(ios::failbit);
132 #endif
133 return is;
134 }
135
136 wxSTD ostream& operator<<(wxSTD ostream& os, const wxString& str)
137 {
138 os << str.c_str();
139 return os;
140 }
141
142 #endif // wxUSE_STD_IOSTREAM
143
144 // ----------------------------------------------------------------------------
145 // private classes
146 // ----------------------------------------------------------------------------
147
148 // this small class is used to gather statistics for performance tuning
149 //#define WXSTRING_STATISTICS
150 #ifdef WXSTRING_STATISTICS
151 class Averager
152 {
153 public:
154 Averager(const wxChar *sz) { m_sz = sz; m_nTotal = m_nCount = 0; }
155 ~Averager()
156 { wxPrintf("wxString: average %s = %f\n", m_sz, ((float)m_nTotal)/m_nCount); }
157
158 void Add(size_t n) { m_nTotal += n; m_nCount++; }
159
160 private:
161 size_t m_nCount, m_nTotal;
162 const wxChar *m_sz;
163 } g_averageLength("allocation size"),
164 g_averageSummandLength("summand length"),
165 g_averageConcatHit("hit probability in concat"),
166 g_averageInitialLength("initial string length");
167
168 #define STATISTICS_ADD(av, val) g_average##av.Add(val)
169 #else
170 #define STATISTICS_ADD(av, val)
171 #endif // WXSTRING_STATISTICS
172
173 #if !wxUSE_STL
174
175 // ===========================================================================
176 // wxStringData class deallocation
177 // ===========================================================================
178
179 #if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
180 # pragma message (__FILE__ ": building with Multithreaded non DLL runtime has a performance impact on wxString!")
181 void wxStringData::Free()
182 {
183 free(this);
184 }
185 #endif
186
187 // ===========================================================================
188 // wxStringBase
189 // ===========================================================================
190
191 // takes nLength elements of psz starting at nPos
192 void wxStringBase::InitWith(const wxChar *psz, size_t nPos, size_t nLength)
193 {
194 Init();
195
196 // if the length is not given, assume the string to be NUL terminated
197 if ( nLength == npos ) {
198 wxASSERT_MSG( nPos <= wxStrlen(psz), _T("index out of bounds") );
199
200 nLength = wxStrlen(psz + nPos);
201 }
202
203 STATISTICS_ADD(InitialLength, nLength);
204
205 if ( nLength > 0 ) {
206 // trailing '\0' is written in AllocBuffer()
207 if ( !AllocBuffer(nLength) ) {
208 wxFAIL_MSG( _T("out of memory in wxStringBase::InitWith") );
209 return;
210 }
211 memcpy(m_pchData, psz + nPos, nLength*sizeof(wxChar));
212 }
213 }
214
215 // poor man's iterators are "void *" pointers
216 wxStringBase::wxStringBase(const void *pStart, const void *pEnd)
217 {
218 InitWith((const wxChar *)pStart, 0,
219 (const wxChar *)pEnd - (const wxChar *)pStart);
220 }
221
222 wxStringBase::wxStringBase(size_type n, wxChar ch)
223 {
224 Init();
225 append(n, ch);
226 }
227
228 // ---------------------------------------------------------------------------
229 // memory allocation
230 // ---------------------------------------------------------------------------
231
232 // allocates memory needed to store a C string of length nLen
233 bool wxStringBase::AllocBuffer(size_t nLen)
234 {
235 // allocating 0 sized buffer doesn't make sense, all empty strings should
236 // reuse g_strEmpty
237 wxASSERT( nLen > 0 );
238
239 // make sure that we don't overflow
240 wxASSERT( nLen < (INT_MAX / sizeof(wxChar)) -
241 (sizeof(wxStringData) + EXTRA_ALLOC + 1) );
242
243 STATISTICS_ADD(Length, nLen);
244
245 // allocate memory:
246 // 1) one extra character for '\0' termination
247 // 2) sizeof(wxStringData) for housekeeping info
248 wxStringData* pData = (wxStringData*)
249 malloc(sizeof(wxStringData) + (nLen + EXTRA_ALLOC + 1)*sizeof(wxChar));
250
251 if ( pData == NULL ) {
252 // allocation failures are handled by the caller
253 return false;
254 }
255
256 pData->nRefs = 1;
257 pData->nDataLength = nLen;
258 pData->nAllocLength = nLen + EXTRA_ALLOC;
259 m_pchData = pData->data(); // data starts after wxStringData
260 m_pchData[nLen] = wxT('\0');
261 return true;
262 }
263
264 // must be called before changing this string
265 bool wxStringBase::CopyBeforeWrite()
266 {
267 wxStringData* pData = GetStringData();
268
269 if ( pData->IsShared() ) {
270 pData->Unlock(); // memory not freed because shared
271 size_t nLen = pData->nDataLength;
272 if ( !AllocBuffer(nLen) ) {
273 // allocation failures are handled by the caller
274 return false;
275 }
276 memcpy(m_pchData, pData->data(), nLen*sizeof(wxChar));
277 }
278
279 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
280
281 return true;
282 }
283
284 // must be called before replacing contents of this string
285 bool wxStringBase::AllocBeforeWrite(size_t nLen)
286 {
287 wxASSERT( nLen != 0 ); // doesn't make any sense
288
289 // must not share string and must have enough space
290 wxStringData* pData = GetStringData();
291 if ( pData->IsShared() || pData->IsEmpty() ) {
292 // can't work with old buffer, get new one
293 pData->Unlock();
294 if ( !AllocBuffer(nLen) ) {
295 // allocation failures are handled by the caller
296 return false;
297 }
298 }
299 else {
300 if ( nLen > pData->nAllocLength ) {
301 // realloc the buffer instead of calling malloc() again, this is more
302 // efficient
303 STATISTICS_ADD(Length, nLen);
304
305 nLen += EXTRA_ALLOC;
306
307 pData = (wxStringData*)
308 realloc(pData, sizeof(wxStringData) + (nLen + 1)*sizeof(wxChar));
309
310 if ( pData == NULL ) {
311 // allocation failures are handled by the caller
312 // keep previous data since reallocation failed
313 return false;
314 }
315
316 pData->nAllocLength = nLen;
317 m_pchData = pData->data();
318 }
319
320 // now we have enough space, just update the string length
321 pData->nDataLength = nLen;
322 }
323
324 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
325
326 return true;
327 }
328
329 wxStringBase& wxStringBase::append(size_t n, wxChar ch)
330 {
331 size_type len = length();
332
333 if ( !CopyBeforeWrite() || !Alloc(len + n) ) {
334 wxFAIL_MSG( _T("out of memory in wxStringBase::append") );
335 }
336 GetStringData()->nDataLength = len + n;
337 m_pchData[len + n] = '\0';
338 for ( size_t i = 0; i < n; ++i )
339 m_pchData[len + i] = ch;
340 return *this;
341 }
342
343 void wxStringBase::resize(size_t nSize, wxChar ch)
344 {
345 size_t len = length();
346
347 if ( nSize < len )
348 {
349 erase(begin() + nSize, end());
350 }
351 else if ( nSize > len )
352 {
353 append(nSize - len, ch);
354 }
355 //else: we have exactly the specified length, nothing to do
356 }
357
358 // allocate enough memory for nLen characters
359 bool wxStringBase::Alloc(size_t nLen)
360 {
361 wxStringData *pData = GetStringData();
362 if ( pData->nAllocLength <= nLen ) {
363 if ( pData->IsEmpty() ) {
364 nLen += EXTRA_ALLOC;
365
366 wxStringData* pData = (wxStringData*)
367 malloc(sizeof(wxStringData) + (nLen + 1)*sizeof(wxChar));
368
369 if ( pData == NULL ) {
370 // allocation failure handled by caller
371 return false;
372 }
373
374 pData->nRefs = 1;
375 pData->nDataLength = 0;
376 pData->nAllocLength = nLen;
377 m_pchData = pData->data(); // data starts after wxStringData
378 m_pchData[0u] = wxT('\0');
379 }
380 else if ( pData->IsShared() ) {
381 pData->Unlock(); // memory not freed because shared
382 size_t nOldLen = pData->nDataLength;
383 if ( !AllocBuffer(nLen) ) {
384 // allocation failure handled by caller
385 return false;
386 }
387 memcpy(m_pchData, pData->data(), nOldLen*sizeof(wxChar));
388 }
389 else {
390 nLen += EXTRA_ALLOC;
391
392 pData = (wxStringData *)
393 realloc(pData, sizeof(wxStringData) + (nLen + 1)*sizeof(wxChar));
394
395 if ( pData == NULL ) {
396 // allocation failure handled by caller
397 // keep previous data since reallocation failed
398 return false;
399 }
400
401 // it's not important if the pointer changed or not (the check for this
402 // is not faster than assigning to m_pchData in all cases)
403 pData->nAllocLength = nLen;
404 m_pchData = pData->data();
405 }
406 }
407 //else: we've already got enough
408 return true;
409 }
410
411 wxStringBase::iterator wxStringBase::begin()
412 {
413 if (length() > 0)
414 CopyBeforeWrite();
415 return m_pchData;
416 }
417
418 wxStringBase::iterator wxStringBase::end()
419 {
420 if (length() > 0)
421 CopyBeforeWrite();
422 return m_pchData + length();
423 }
424
425 wxStringBase::iterator wxStringBase::erase(iterator it)
426 {
427 size_type idx = it - begin();
428 erase(idx, 1);
429 return begin() + idx;
430 }
431
432 wxStringBase& wxStringBase::erase(size_t nStart, size_t nLen)
433 {
434 wxASSERT(nStart <= length());
435 size_t strLen = length() - nStart;
436 // delete nLen or up to the end of the string characters
437 nLen = strLen < nLen ? strLen : nLen;
438 wxString strTmp(c_str(), nStart);
439 strTmp.append(c_str() + nStart + nLen, length() - nStart - nLen);
440
441 swap(strTmp);
442 return *this;
443 }
444
445 wxStringBase& wxStringBase::insert(size_t nPos, const wxChar *sz, size_t n)
446 {
447 wxASSERT( nPos <= length() );
448
449 if ( n == npos ) n = wxStrlen(sz);
450 if ( n == 0 ) return *this;
451
452 if ( !CopyBeforeWrite() || !Alloc(length() + n) ) {
453 wxFAIL_MSG( _T("out of memory in wxStringBase::insert") );
454 }
455
456 memmove(m_pchData + nPos + n, m_pchData + nPos,
457 (length() - nPos) * sizeof(wxChar));
458 memcpy(m_pchData + nPos, sz, n * sizeof(wxChar));
459 GetStringData()->nDataLength = length() + n;
460 m_pchData[length()] = '\0';
461
462 return *this;
463 }
464
465 void wxStringBase::swap(wxStringBase& str)
466 {
467 wxChar* tmp = str.m_pchData;
468 str.m_pchData = m_pchData;
469 m_pchData = tmp;
470 }
471
472 size_t wxStringBase::find(const wxStringBase& str, size_t nStart) const
473 {
474 wxASSERT( str.GetStringData()->IsValid() );
475 wxASSERT( nStart <= length() );
476
477 const wxChar *p = wxStrstr(c_str() + nStart, str.c_str());
478
479 return p == NULL ? npos : p - c_str();
480 }
481
482 size_t wxStringBase::find(const wxChar* sz, size_t nStart, size_t n) const
483 {
484 return find(wxStringBase(sz, n), nStart);
485 }
486
487 size_t wxStringBase::find(wxChar ch, size_t nStart) const
488 {
489 wxASSERT( nStart <= length() );
490
491 const wxChar *p = wxStrchr(c_str() + nStart, ch);
492
493 return p == NULL ? npos : p - c_str();
494 }
495
496 size_t wxStringBase::rfind(const wxStringBase& str, size_t nStart) const
497 {
498 wxASSERT( str.GetStringData()->IsValid() );
499 wxASSERT( nStart == npos || nStart <= length() );
500
501 if ( length() >= str.length() )
502 {
503 // avoids a corner case later
504 if ( length() == 0 && str.length() == 0 )
505 return 0;
506
507 // "top" is the point where search starts from
508 size_t top = length() - str.length();
509
510 if ( nStart == npos )
511 nStart = length() - 1;
512 if ( nStart < top )
513 top = nStart;
514
515 const wxChar *cursor = c_str() + top;
516 do
517 {
518 if ( memcmp(cursor, str.c_str(),
519 str.length() * sizeof(wxChar)) == 0 )
520 {
521 return cursor - c_str();
522 }
523 } while ( cursor-- > c_str() );
524 }
525
526 return npos;
527 }
528
529 size_t wxStringBase::rfind(const wxChar* sz, size_t nStart, size_t n) const
530 {
531 return rfind(wxStringBase(sz, n), nStart);
532 }
533
534 size_t wxStringBase::rfind(wxChar ch, size_t nStart) const
535 {
536 if ( nStart == npos )
537 {
538 nStart = length();
539 }
540 else
541 {
542 wxASSERT( nStart <= length() );
543 }
544
545 const wxChar *actual;
546 for ( actual = c_str() + ( nStart == npos ? length() : nStart + 1 );
547 actual > c_str(); --actual )
548 {
549 if ( *(actual - 1) == ch )
550 return (actual - 1) - c_str();
551 }
552
553 return npos;
554 }
555
556 size_t wxStringBase::find_first_of(const wxChar* sz, size_t nStart) const
557 {
558 const wxChar *start = c_str() + nStart;
559 const wxChar *firstOf = wxStrpbrk(start, sz);
560 if ( firstOf )
561 return firstOf - c_str();
562 else
563 return npos;
564 }
565
566 size_t wxStringBase::find_first_of(const wxChar* sz, size_t nStart,
567 size_t n) const
568 {
569 return find_first_of(wxStringBase(sz, n), nStart);
570 }
571
572 size_t wxStringBase::find_last_of(const wxChar* sz, size_t nStart) const
573 {
574 if ( nStart == npos )
575 {
576 nStart = length() - 1;
577 }
578 else
579 {
580 wxASSERT_MSG( nStart <= length(),
581 _T("invalid index in find_last_of()") );
582 }
583
584 for ( const wxChar *p = c_str() + nStart; p >= c_str(); --p )
585 {
586 if ( wxStrchr(sz, *p) )
587 return p - c_str();
588 }
589
590 return npos;
591 }
592
593 size_t wxStringBase::find_last_of(const wxChar* sz, size_t nStart,
594 size_t n) const
595 {
596 return find_last_of(wxStringBase(sz, n), nStart);
597 }
598
599 size_t wxStringBase::find_first_not_of(const wxChar* sz, size_t nStart) const
600 {
601 if ( nStart == npos )
602 {
603 nStart = length();
604 }
605 else
606 {
607 wxASSERT( nStart <= length() );
608 }
609
610 size_t nAccept = wxStrspn(c_str() + nStart, sz);
611 if ( nAccept >= length() - nStart )
612 return npos;
613 else
614 return nStart + nAccept;
615 }
616
617 size_t wxStringBase::find_first_not_of(const wxChar* sz, size_t nStart,
618 size_t n) const
619 {
620 return find_first_not_of(wxStringBase(sz, n), nStart);
621 }
622
623 size_t wxStringBase::find_first_not_of(wxChar ch, size_t nStart) const
624 {
625 wxASSERT( nStart <= length() );
626
627 for ( const wxChar *p = c_str() + nStart; *p; p++ )
628 {
629 if ( *p != ch )
630 return p - c_str();
631 }
632
633 return npos;
634 }
635
636 size_t wxStringBase::find_last_not_of(const wxChar* sz, size_t nStart) const
637 {
638 if ( nStart == npos )
639 {
640 nStart = length() - 1;
641 }
642 else
643 {
644 wxASSERT( nStart <= length() );
645 }
646
647 for ( const wxChar *p = c_str() + nStart; p >= c_str(); --p )
648 {
649 if ( !wxStrchr(sz, *p) )
650 return p - c_str();
651 }
652
653 return npos;
654 }
655
656 size_t wxStringBase::find_last_not_of(const wxChar* sz, size_t nStart,
657 size_t n) const
658 {
659 return find_last_not_of(wxStringBase(sz, n), nStart);
660 }
661
662 size_t wxStringBase::find_last_not_of(wxChar ch, size_t nStart) const
663 {
664 if ( nStart == npos )
665 {
666 nStart = length() - 1;
667 }
668 else
669 {
670 wxASSERT( nStart <= length() );
671 }
672
673 for ( const wxChar *p = c_str() + nStart; p >= c_str(); --p )
674 {
675 if ( *p != ch )
676 return p - c_str();
677 }
678
679 return npos;
680 }
681
682 wxStringBase& wxStringBase::replace(size_t nStart, size_t nLen,
683 const wxChar *sz)
684 {
685 wxASSERT_MSG( nStart <= length(),
686 _T("index out of bounds in wxStringBase::replace") );
687 size_t strLen = length() - nStart;
688 nLen = strLen < nLen ? strLen : nLen;
689
690 wxStringBase strTmp;
691 strTmp.reserve(length()); // micro optimisation to avoid multiple mem allocs
692
693 if ( nStart != 0 )
694 strTmp.append(c_str(), nStart);
695 strTmp.append(sz);
696 strTmp.append(c_str() + nStart + nLen);
697
698 swap(strTmp);
699 return *this;
700 }
701
702 wxStringBase& wxStringBase::replace(size_t nStart, size_t nLen,
703 size_t nCount, wxChar ch)
704 {
705 return replace(nStart, nLen, wxStringBase(ch, nCount).c_str());
706 }
707
708 wxStringBase& wxStringBase::replace(size_t nStart, size_t nLen,
709 const wxStringBase& str,
710 size_t nStart2, size_t nLen2)
711 {
712 return replace(nStart, nLen, str.substr(nStart2, nLen2));
713 }
714
715 wxStringBase& wxStringBase::replace(size_t nStart, size_t nLen,
716 const wxChar* sz, size_t nCount)
717 {
718 return replace(nStart, nLen, wxStringBase(sz, nCount).c_str());
719 }
720
721 wxStringBase wxStringBase::substr(size_t nStart, size_t nLen) const
722 {
723 if ( nLen == npos )
724 nLen = length() - nStart;
725 return wxStringBase(*this, nStart, nLen);
726 }
727
728 // assigns one string to another
729 wxStringBase& wxStringBase::operator=(const wxStringBase& stringSrc)
730 {
731 wxASSERT( stringSrc.GetStringData()->IsValid() );
732
733 // don't copy string over itself
734 if ( m_pchData != stringSrc.m_pchData ) {
735 if ( stringSrc.GetStringData()->IsEmpty() ) {
736 Reinit();
737 }
738 else {
739 // adjust references
740 GetStringData()->Unlock();
741 m_pchData = stringSrc.m_pchData;
742 GetStringData()->Lock();
743 }
744 }
745
746 return *this;
747 }
748
749 // assigns a single character
750 wxStringBase& wxStringBase::operator=(wxChar ch)
751 {
752 if ( !AssignCopy(1, &ch) ) {
753 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(wxChar)") );
754 }
755 return *this;
756 }
757
758 // assigns C string
759 wxStringBase& wxStringBase::operator=(const wxChar *psz)
760 {
761 if ( !AssignCopy(wxStrlen(psz), psz) ) {
762 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(const wxChar *)") );
763 }
764 return *this;
765 }
766
767 // helper function: does real copy
768 bool wxStringBase::AssignCopy(size_t nSrcLen, const wxChar *pszSrcData)
769 {
770 if ( nSrcLen == 0 ) {
771 Reinit();
772 }
773 else {
774 if ( !AllocBeforeWrite(nSrcLen) ) {
775 // allocation failure handled by caller
776 return false;
777 }
778 memcpy(m_pchData, pszSrcData, nSrcLen*sizeof(wxChar));
779 GetStringData()->nDataLength = nSrcLen;
780 m_pchData[nSrcLen] = wxT('\0');
781 }
782 return true;
783 }
784
785 // ---------------------------------------------------------------------------
786 // string concatenation
787 // ---------------------------------------------------------------------------
788
789 // add something to this string
790 bool wxStringBase::ConcatSelf(size_t nSrcLen, const wxChar *pszSrcData,
791 size_t nMaxLen)
792 {
793 STATISTICS_ADD(SummandLength, nSrcLen);
794
795 nSrcLen = nSrcLen < nMaxLen ? nSrcLen : nMaxLen;
796
797 // concatenating an empty string is a NOP
798 if ( nSrcLen > 0 ) {
799 wxStringData *pData = GetStringData();
800 size_t nLen = pData->nDataLength;
801 size_t nNewLen = nLen + nSrcLen;
802
803 // alloc new buffer if current is too small
804 if ( pData->IsShared() ) {
805 STATISTICS_ADD(ConcatHit, 0);
806
807 // we have to allocate another buffer
808 wxStringData* pOldData = GetStringData();
809 if ( !AllocBuffer(nNewLen) ) {
810 // allocation failure handled by caller
811 return false;
812 }
813 memcpy(m_pchData, pOldData->data(), nLen*sizeof(wxChar));
814 pOldData->Unlock();
815 }
816 else if ( nNewLen > pData->nAllocLength ) {
817 STATISTICS_ADD(ConcatHit, 0);
818
819 reserve(nNewLen);
820 // we have to grow the buffer
821 if ( capacity() < nNewLen ) {
822 // allocation failure handled by caller
823 return false;
824 }
825 }
826 else {
827 STATISTICS_ADD(ConcatHit, 1);
828
829 // the buffer is already big enough
830 }
831
832 // should be enough space
833 wxASSERT( nNewLen <= GetStringData()->nAllocLength );
834
835 // fast concatenation - all is done in our buffer
836 memcpy(m_pchData + nLen, pszSrcData, nSrcLen*sizeof(wxChar));
837
838 m_pchData[nNewLen] = wxT('\0'); // put terminating '\0'
839 GetStringData()->nDataLength = nNewLen; // and fix the length
840 }
841 //else: the string to append was empty
842 return true;
843 }
844
845 // ---------------------------------------------------------------------------
846 // simple sub-string extraction
847 // ---------------------------------------------------------------------------
848
849 // helper function: clone the data attached to this string
850 bool wxStringBase::AllocCopy(wxString& dest, int nCopyLen, int nCopyIndex) const
851 {
852 if ( nCopyLen == 0 ) {
853 dest.Init();
854 }
855 else {
856 if ( !dest.AllocBuffer(nCopyLen) ) {
857 // allocation failure handled by caller
858 return false;
859 }
860 memcpy(dest.m_pchData, m_pchData + nCopyIndex, nCopyLen*sizeof(wxChar));
861 }
862 return true;
863 }
864
865 #endif // !wxUSE_STL
866
867 #if !wxUSE_STL || !defined(HAVE_STD_STRING_COMPARE)
868
869 #if !wxUSE_STL
870 #define STRINGCLASS wxStringBase
871 #else
872 #define STRINGCLASS wxString
873 #endif
874
875 static inline int wxDoCmp(const wxChar* s1, size_t l1,
876 const wxChar* s2, size_t l2)
877 {
878 if( l1 == l2 )
879 return wxStrncmp(s1, s2, l1);
880 else if( l1 < l2 )
881 {
882 int ret = wxStrncmp(s1, s2, l1);
883 return ret == 0 ? -1 : ret;
884 }
885 else if( l1 > l2 )
886 {
887 int ret = wxStrncmp(s1, s2, l2);
888 return ret == 0 ? +1 : ret;
889 }
890
891 wxFAIL; // must never get there
892 return 0; // quiet compilers
893 }
894
895 #if wxUSE_STL
896
897 int STRINGCLASS::compare(const wxStringBase& str) const
898 {
899 return ::wxDoCmp(data(), length(), str.data(), str.length());
900 }
901
902 #endif
903
904 int STRINGCLASS::compare(size_t nStart, size_t nLen,
905 const wxStringBase& str) const
906 {
907 wxASSERT(nStart <= length());
908 size_type strLen = length() - nStart;
909 nLen = strLen < nLen ? strLen : nLen;
910 return ::wxDoCmp(data() + nStart, nLen, str.data(), str.length());
911 }
912
913 int STRINGCLASS::compare(size_t nStart, size_t nLen,
914 const wxStringBase& str,
915 size_t nStart2, size_t nLen2) const
916 {
917 wxASSERT(nStart <= length());
918 wxASSERT(nStart2 <= str.length());
919 size_type strLen = length() - nStart,
920 strLen2 = str.length() - nStart2;
921 nLen = strLen < nLen ? strLen : nLen;
922 nLen2 = strLen2 < nLen2 ? strLen2 : nLen2;
923 return ::wxDoCmp(data() + nStart, nLen, str.data() + nStart2, nLen2);
924 }
925
926 #if wxUSE_STL
927
928 int STRINGCLASS::compare(const wxChar* sz) const
929 {
930 size_t nLen = wxStrlen(sz);
931 return ::wxDoCmp(data(), length(), sz, nLen);
932 }
933
934 #endif
935
936 int STRINGCLASS::compare(size_t nStart, size_t nLen,
937 const wxChar* sz, size_t nCount) const
938 {
939 wxASSERT(nStart <= length());
940 size_type strLen = length() - nStart;
941 nLen = strLen < nLen ? strLen : nLen;
942 if( nCount == npos )
943 nCount = wxStrlen(sz);
944
945 return ::wxDoCmp(data() + nStart, nLen, sz, nCount);
946 }
947
948 #undef STRINGCLASS
949
950 #endif // !wxUSE_STL || !defined(HAVE_STD_STRING_COMPARE)
951
952 // ===========================================================================
953 // wxString class core
954 // ===========================================================================
955
956 // ---------------------------------------------------------------------------
957 // construction
958 // ---------------------------------------------------------------------------
959
960 #if wxUSE_UNICODE
961
962 // from multibyte string
963 wxString::wxString(const char *psz, wxMBConv& conv, size_t nLength)
964 {
965 // if nLength != npos, then we have to make a NULL-terminated copy
966 // of first nLength bytes of psz first because the input buffer to MB2WC
967 // must always be NULL-terminated:
968 wxCharBuffer inBuf((const char *)NULL);
969 if (nLength != npos)
970 {
971 wxASSERT( psz != NULL );
972 wxCharBuffer tmp(nLength);
973 memcpy(tmp.data(), psz, nLength);
974 tmp.data()[nLength] = '\0';
975 inBuf = tmp;
976 psz = inBuf.data();
977 }
978
979 // first get the size of the buffer we need
980 size_t nLen;
981 if ( psz )
982 {
983 // calculate the needed size ourselves or use the provided one
984 nLen = conv.MB2WC(NULL, psz, 0);
985 }
986 else
987 {
988 // nothing to convert
989 nLen = 0;
990 }
991
992 // anything to do?
993 if ( (nLen != 0) && (nLen != (size_t)-1) )
994 {
995 if ( !Alloc(nLen) )
996 {
997 wxFAIL_MSG( _T("out of memory in wxString::wxString") );
998 }
999 else
1000 {
1001 wxWCharBuffer buf(nLen);
1002 // MB2WC wants the buffer size, not the string length hence +1
1003 nLen = conv.MB2WC(buf.data(), psz, nLen + 1);
1004
1005 if ( nLen != (size_t)-1 )
1006 {
1007 // initialized ok, set the real length as nLength specified by
1008 // the caller could be greater than the real string length
1009 assign(buf.data(), nLen);
1010 return;
1011 }
1012 //else: the conversion failed -- leave the string empty (what else?)
1013 }
1014 }
1015 }
1016
1017 #else // ANSI
1018
1019 #if wxUSE_WCHAR_T
1020 // from wide string
1021 wxString::wxString(const wchar_t *pwz, wxMBConv& conv, size_t nLength)
1022 {
1023 // if nLength != npos, then we have to make a NULL-terminated copy
1024 // of first nLength chars of psz first because the input buffer to WC2MB
1025 // must always be NULL-terminated:
1026 wxWCharBuffer inBuf((const wchar_t *)NULL);
1027 if (nLength != npos)
1028 {
1029 wxASSERT( pwz != NULL );
1030 wxWCharBuffer tmp(nLength);
1031 memcpy(tmp.data(), pwz, nLength * sizeof(wchar_t));
1032 tmp.data()[nLength] = '\0';
1033 inBuf = tmp;
1034 pwz = inBuf.data();
1035 }
1036
1037 // first get the size of the buffer we need
1038 size_t nLen;
1039 if ( pwz )
1040 {
1041 // calculate the needed size ourselves or use the provided one
1042 nLen = conv.WC2MB(NULL, pwz, 0);
1043 }
1044 else
1045 {
1046 // nothing to convert
1047 nLen = 0;
1048 }
1049
1050 // anything to do?
1051 if ( (nLen != 0) && (nLen != (size_t)-1) )
1052 {
1053 if ( !Alloc(nLen) )
1054 {
1055 wxFAIL_MSG( _T("out of memory in wxString::wxString") );
1056 }
1057 else
1058 {
1059 wxCharBuffer buf(nLen);
1060 // WC2MB wants the buffer size, not the string length
1061 if ( conv.WC2MB(buf.data(), pwz, nLen + 1) != (size_t)-1 )
1062 {
1063 // initialized ok
1064 assign(buf.data(), nLen);
1065 return;
1066 }
1067 //else: the conversion failed -- leave the string empty (what else?)
1068 }
1069 }
1070
1071 // leave empty
1072 }
1073 #endif // wxUSE_WCHAR_T
1074
1075 #endif // Unicode/ANSI
1076
1077 // shrink to minimal size (releasing extra memory)
1078 bool wxString::Shrink()
1079 {
1080 wxString tmp(begin(), end());
1081 swap(tmp);
1082 return tmp.length() == length();
1083 }
1084
1085 #if !wxUSE_STL
1086 // get the pointer to writable buffer of (at least) nLen bytes
1087 wxChar *wxString::GetWriteBuf(size_t nLen)
1088 {
1089 if ( !AllocBeforeWrite(nLen) ) {
1090 // allocation failure handled by caller
1091 return NULL;
1092 }
1093
1094 wxASSERT( GetStringData()->nRefs == 1 );
1095 GetStringData()->Validate(false);
1096
1097 return m_pchData;
1098 }
1099
1100 // put string back in a reasonable state after GetWriteBuf
1101 void wxString::UngetWriteBuf()
1102 {
1103 GetStringData()->nDataLength = wxStrlen(m_pchData);
1104 GetStringData()->Validate(true);
1105 }
1106
1107 void wxString::UngetWriteBuf(size_t nLen)
1108 {
1109 GetStringData()->nDataLength = nLen;
1110 GetStringData()->Validate(true);
1111 }
1112 #endif
1113
1114 // ---------------------------------------------------------------------------
1115 // data access
1116 // ---------------------------------------------------------------------------
1117
1118 // all functions are inline in string.h
1119
1120 // ---------------------------------------------------------------------------
1121 // assignment operators
1122 // ---------------------------------------------------------------------------
1123
1124 #if !wxUSE_UNICODE
1125
1126 // same as 'signed char' variant
1127 wxString& wxString::operator=(const unsigned char* psz)
1128 {
1129 *this = (const char *)psz;
1130 return *this;
1131 }
1132
1133 #if wxUSE_WCHAR_T
1134 wxString& wxString::operator=(const wchar_t *pwz)
1135 {
1136 wxString str(pwz);
1137 swap(str);
1138 return *this;
1139 }
1140 #endif
1141
1142 #endif
1143
1144 /*
1145 * concatenation functions come in 5 flavours:
1146 * string + string
1147 * char + string and string + char
1148 * C str + string and string + C str
1149 */
1150
1151 wxString operator+(const wxString& str1, const wxString& str2)
1152 {
1153 #if !wxUSE_STL
1154 wxASSERT( str1.GetStringData()->IsValid() );
1155 wxASSERT( str2.GetStringData()->IsValid() );
1156 #endif
1157
1158 wxString s = str1;
1159 s += str2;
1160
1161 return s;
1162 }
1163
1164 wxString operator+(const wxString& str, wxChar ch)
1165 {
1166 #if !wxUSE_STL
1167 wxASSERT( str.GetStringData()->IsValid() );
1168 #endif
1169
1170 wxString s = str;
1171 s += ch;
1172
1173 return s;
1174 }
1175
1176 wxString operator+(wxChar ch, const wxString& str)
1177 {
1178 #if !wxUSE_STL
1179 wxASSERT( str.GetStringData()->IsValid() );
1180 #endif
1181
1182 wxString s = ch;
1183 s += str;
1184
1185 return s;
1186 }
1187
1188 wxString operator+(const wxString& str, const wxChar *psz)
1189 {
1190 #if !wxUSE_STL
1191 wxASSERT( str.GetStringData()->IsValid() );
1192 #endif
1193
1194 wxString s;
1195 if ( !s.Alloc(wxStrlen(psz) + str.Len()) ) {
1196 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1197 }
1198 s = str;
1199 s += psz;
1200
1201 return s;
1202 }
1203
1204 wxString operator+(const wxChar *psz, const wxString& str)
1205 {
1206 #if !wxUSE_STL
1207 wxASSERT( str.GetStringData()->IsValid() );
1208 #endif
1209
1210 wxString s;
1211 if ( !s.Alloc(wxStrlen(psz) + str.Len()) ) {
1212 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1213 }
1214 s = psz;
1215 s += str;
1216
1217 return s;
1218 }
1219
1220 // ===========================================================================
1221 // other common string functions
1222 // ===========================================================================
1223
1224 #if wxUSE_UNICODE
1225
1226 #ifdef __MWERKS__
1227 #ifndef __SCHAR_MAX__
1228 #define __SCHAR_MAX__ 127
1229 #endif
1230 #endif
1231
1232 wxString wxString::FromAscii(const char *ascii)
1233 {
1234 if (!ascii)
1235 return wxEmptyString;
1236
1237 size_t len = strlen( ascii );
1238 wxString res;
1239
1240 if ( len )
1241 {
1242 wxStringBuffer buf(res, len);
1243
1244 wchar_t *dest = buf;
1245
1246 for ( ;; )
1247 {
1248 if ( (*dest++ = (wchar_t)(unsigned char)*ascii++) == L'\0' )
1249 break;
1250 }
1251 }
1252
1253 return res;
1254 }
1255
1256 wxString wxString::FromAscii(const char ascii)
1257 {
1258 // What do we do with '\0' ?
1259
1260 wxString res;
1261 res += (wchar_t)(unsigned char) ascii;
1262
1263 return res;
1264 }
1265
1266 const wxCharBuffer wxString::ToAscii() const
1267 {
1268 // this will allocate enough space for the terminating NUL too
1269 wxCharBuffer buffer(length());
1270
1271 signed char *dest = (signed char *)buffer.data();
1272
1273 const wchar_t *pwc = c_str();
1274 for ( ;; )
1275 {
1276 *dest++ = *pwc > SCHAR_MAX ? '_' : *pwc;
1277
1278 // the output string can't have embedded NULs anyhow, so we can safely
1279 // stop at first of them even if we do have any
1280 if ( !*pwc++ )
1281 break;
1282 }
1283
1284 return buffer;
1285 }
1286
1287 #endif // Unicode
1288
1289 // extract string of length nCount starting at nFirst
1290 wxString wxString::Mid(size_t nFirst, size_t nCount) const
1291 {
1292 size_t nLen = length();
1293
1294 // default value of nCount is npos and means "till the end"
1295 if ( nCount == npos )
1296 {
1297 nCount = nLen - nFirst;
1298 }
1299
1300 // out-of-bounds requests return sensible things
1301 if ( nFirst + nCount > nLen )
1302 {
1303 nCount = nLen - nFirst;
1304 }
1305
1306 if ( nFirst > nLen )
1307 {
1308 // AllocCopy() will return empty string
1309 nCount = 0;
1310 }
1311
1312 wxString dest(*this, nFirst, nCount);
1313 if ( dest.length() != nCount ) {
1314 wxFAIL_MSG( _T("out of memory in wxString::Mid") );
1315 }
1316
1317 return dest;
1318 }
1319
1320 // check that the string starts with prefix and return the rest of the string
1321 // in the provided pointer if it is not NULL, otherwise return false
1322 bool wxString::StartsWith(const wxChar *prefix, wxString *rest) const
1323 {
1324 wxASSERT_MSG( prefix, _T("invalid parameter in wxString::StartsWith") );
1325
1326 // first check if the beginning of the string matches the prefix: note
1327 // that we don't have to check that we don't run out of this string as
1328 // when we reach the terminating NUL, either prefix string ends too (and
1329 // then it's ok) or we break out of the loop because there is no match
1330 const wxChar *p = c_str();
1331 while ( *prefix )
1332 {
1333 if ( *prefix++ != *p++ )
1334 {
1335 // no match
1336 return false;
1337 }
1338 }
1339
1340 if ( rest )
1341 {
1342 // put the rest of the string into provided pointer
1343 *rest = p;
1344 }
1345
1346 return true;
1347 }
1348
1349 // extract nCount last (rightmost) characters
1350 wxString wxString::Right(size_t nCount) const
1351 {
1352 if ( nCount > length() )
1353 nCount = length();
1354
1355 wxString dest(*this, length() - nCount, nCount);
1356 if ( dest.length() != nCount ) {
1357 wxFAIL_MSG( _T("out of memory in wxString::Right") );
1358 }
1359 return dest;
1360 }
1361
1362 // get all characters after the last occurence of ch
1363 // (returns the whole string if ch not found)
1364 wxString wxString::AfterLast(wxChar ch) const
1365 {
1366 wxString str;
1367 int iPos = Find(ch, true);
1368 if ( iPos == wxNOT_FOUND )
1369 str = *this;
1370 else
1371 str = c_str() + iPos + 1;
1372
1373 return str;
1374 }
1375
1376 // extract nCount first (leftmost) characters
1377 wxString wxString::Left(size_t nCount) const
1378 {
1379 if ( nCount > length() )
1380 nCount = length();
1381
1382 wxString dest(*this, 0, nCount);
1383 if ( dest.length() != nCount ) {
1384 wxFAIL_MSG( _T("out of memory in wxString::Left") );
1385 }
1386 return dest;
1387 }
1388
1389 // get all characters before the first occurence of ch
1390 // (returns the whole string if ch not found)
1391 wxString wxString::BeforeFirst(wxChar ch) const
1392 {
1393 int iPos = Find(ch);
1394 if ( iPos == wxNOT_FOUND ) iPos = length();
1395 return wxString(*this, 0, iPos);
1396 }
1397
1398 /// get all characters before the last occurence of ch
1399 /// (returns empty string if ch not found)
1400 wxString wxString::BeforeLast(wxChar ch) const
1401 {
1402 wxString str;
1403 int iPos = Find(ch, true);
1404 if ( iPos != wxNOT_FOUND && iPos != 0 )
1405 str = wxString(c_str(), iPos);
1406
1407 return str;
1408 }
1409
1410 /// get all characters after the first occurence of ch
1411 /// (returns empty string if ch not found)
1412 wxString wxString::AfterFirst(wxChar ch) const
1413 {
1414 wxString str;
1415 int iPos = Find(ch);
1416 if ( iPos != wxNOT_FOUND )
1417 str = c_str() + iPos + 1;
1418
1419 return str;
1420 }
1421
1422 // replace first (or all) occurences of some substring with another one
1423 size_t
1424 wxString::Replace(const wxChar *szOld, const wxChar *szNew, bool bReplaceAll)
1425 {
1426 // if we tried to replace an empty string we'd enter an infinite loop below
1427 wxCHECK_MSG( szOld && *szOld && szNew, 0,
1428 _T("wxString::Replace(): invalid parameter") );
1429
1430 size_t uiCount = 0; // count of replacements made
1431
1432 size_t uiOldLen = wxStrlen(szOld);
1433
1434 wxString strTemp;
1435 const wxChar *pCurrent = c_str();
1436 const wxChar *pSubstr;
1437 while ( *pCurrent != wxT('\0') ) {
1438 pSubstr = wxStrstr(pCurrent, szOld);
1439 if ( pSubstr == NULL ) {
1440 // strTemp is unused if no replacements were made, so avoid the copy
1441 if ( uiCount == 0 )
1442 return 0;
1443
1444 strTemp += pCurrent; // copy the rest
1445 break; // exit the loop
1446 }
1447 else {
1448 // take chars before match
1449 size_type len = strTemp.length();
1450 strTemp.append(pCurrent, pSubstr - pCurrent);
1451 if ( strTemp.length() != (size_t)(len + pSubstr - pCurrent) ) {
1452 wxFAIL_MSG( _T("out of memory in wxString::Replace") );
1453 return 0;
1454 }
1455 strTemp += szNew;
1456 pCurrent = pSubstr + uiOldLen; // restart after match
1457
1458 uiCount++;
1459
1460 // stop now?
1461 if ( !bReplaceAll ) {
1462 strTemp += pCurrent; // copy the rest
1463 break; // exit the loop
1464 }
1465 }
1466 }
1467
1468 // only done if there were replacements, otherwise would have returned above
1469 swap(strTemp);
1470
1471 return uiCount;
1472 }
1473
1474 bool wxString::IsAscii() const
1475 {
1476 const wxChar *s = (const wxChar*) *this;
1477 while(*s){
1478 if(!isascii(*s)) return(false);
1479 s++;
1480 }
1481 return(true);
1482 }
1483
1484 bool wxString::IsWord() const
1485 {
1486 const wxChar *s = (const wxChar*) *this;
1487 while(*s){
1488 if(!wxIsalpha(*s)) return(false);
1489 s++;
1490 }
1491 return(true);
1492 }
1493
1494 bool wxString::IsNumber() const
1495 {
1496 const wxChar *s = (const wxChar*) *this;
1497 if (wxStrlen(s))
1498 if ((s[0] == '-') || (s[0] == '+')) s++;
1499 while(*s){
1500 if(!wxIsdigit(*s)) return(false);
1501 s++;
1502 }
1503 return(true);
1504 }
1505
1506 wxString wxString::Strip(stripType w) const
1507 {
1508 wxString s = *this;
1509 if ( w & leading ) s.Trim(false);
1510 if ( w & trailing ) s.Trim(true);
1511 return s;
1512 }
1513
1514 // ---------------------------------------------------------------------------
1515 // case conversion
1516 // ---------------------------------------------------------------------------
1517
1518 wxString& wxString::MakeUpper()
1519 {
1520 for ( iterator it = begin(), en = end(); it != en; ++it )
1521 *it = (wxChar)wxToupper(*it);
1522
1523 return *this;
1524 }
1525
1526 wxString& wxString::MakeLower()
1527 {
1528 for ( iterator it = begin(), en = end(); it != en; ++it )
1529 *it = (wxChar)wxTolower(*it);
1530
1531 return *this;
1532 }
1533
1534 // ---------------------------------------------------------------------------
1535 // trimming and padding
1536 // ---------------------------------------------------------------------------
1537
1538 // some compilers (VC++ 6.0 not to name them) return true for a call to
1539 // isspace('ê') in the C locale which seems to be broken to me, but we have to
1540 // live with this by checking that the character is a 7 bit one - even if this
1541 // may fail to detect some spaces (I don't know if Unicode doesn't have
1542 // space-like symbols somewhere except in the first 128 chars), it is arguably
1543 // still better than trimming away accented letters
1544 inline int wxSafeIsspace(wxChar ch) { return (ch < 127) && wxIsspace(ch); }
1545
1546 // trims spaces (in the sense of isspace) from left or right side
1547 wxString& wxString::Trim(bool bFromRight)
1548 {
1549 // first check if we're going to modify the string at all
1550 if ( !IsEmpty() &&
1551 (
1552 (bFromRight && wxSafeIsspace(GetChar(Len() - 1))) ||
1553 (!bFromRight && wxSafeIsspace(GetChar(0u)))
1554 )
1555 )
1556 {
1557 if ( bFromRight )
1558 {
1559 // find last non-space character
1560 iterator psz = begin() + length() - 1;
1561 while ( wxSafeIsspace(*psz) && (psz >= begin()) )
1562 psz--;
1563
1564 // truncate at trailing space start
1565 *++psz = wxT('\0');
1566 erase(psz, end());
1567 }
1568 else
1569 {
1570 // find first non-space character
1571 iterator psz = begin();
1572 while ( wxSafeIsspace(*psz) )
1573 psz++;
1574
1575 // fix up data and length
1576 erase(begin(), psz);
1577 }
1578 }
1579
1580 return *this;
1581 }
1582
1583 // adds nCount characters chPad to the string from either side
1584 wxString& wxString::Pad(size_t nCount, wxChar chPad, bool bFromRight)
1585 {
1586 wxString s(chPad, nCount);
1587
1588 if ( bFromRight )
1589 *this += s;
1590 else
1591 {
1592 s += *this;
1593 swap(s);
1594 }
1595
1596 return *this;
1597 }
1598
1599 // truncate the string
1600 wxString& wxString::Truncate(size_t uiLen)
1601 {
1602 if ( uiLen < Len() ) {
1603 erase(begin() + uiLen, end());
1604 }
1605 //else: nothing to do, string is already short enough
1606
1607 return *this;
1608 }
1609
1610 // ---------------------------------------------------------------------------
1611 // finding (return wxNOT_FOUND if not found and index otherwise)
1612 // ---------------------------------------------------------------------------
1613
1614 // find a character
1615 int wxString::Find(wxChar ch, bool bFromEnd) const
1616 {
1617 size_type idx = bFromEnd ? find_last_of(ch) : find_first_of(ch);
1618
1619 return (idx == npos) ? wxNOT_FOUND : (int)idx;
1620 }
1621
1622 // find a sub-string (like strstr)
1623 int wxString::Find(const wxChar *pszSub) const
1624 {
1625 size_type idx = find(pszSub);
1626
1627 return (idx == npos) ? wxNOT_FOUND : (int)idx;
1628 }
1629
1630 // ----------------------------------------------------------------------------
1631 // conversion to numbers
1632 // ----------------------------------------------------------------------------
1633
1634 bool wxString::ToLong(long *val, int base) const
1635 {
1636 wxCHECK_MSG( val, false, _T("NULL pointer in wxString::ToLong") );
1637 wxASSERT_MSG( !base || (base > 1 && base <= 36), _T("invalid base") );
1638
1639 const wxChar *start = c_str();
1640 wxChar *end;
1641 *val = wxStrtol(start, &end, base);
1642
1643 // return true only if scan was stopped by the terminating NUL and if the
1644 // string was not empty to start with
1645 return !*end && (end != start);
1646 }
1647
1648 bool wxString::ToULong(unsigned long *val, int base) const
1649 {
1650 wxCHECK_MSG( val, false, _T("NULL pointer in wxString::ToULong") );
1651 wxASSERT_MSG( !base || (base > 1 && base <= 36), _T("invalid base") );
1652
1653 const wxChar *start = c_str();
1654 wxChar *end;
1655 *val = wxStrtoul(start, &end, base);
1656
1657 // return true only if scan was stopped by the terminating NUL and if the
1658 // string was not empty to start with
1659 return !*end && (end != start);
1660 }
1661
1662 bool wxString::ToDouble(double *val) const
1663 {
1664 wxCHECK_MSG( val, false, _T("NULL pointer in wxString::ToDouble") );
1665
1666 const wxChar *start = c_str();
1667 wxChar *end;
1668 *val = wxStrtod(start, &end);
1669
1670 // return true only if scan was stopped by the terminating NUL and if the
1671 // string was not empty to start with
1672 return !*end && (end != start);
1673 }
1674
1675 // ---------------------------------------------------------------------------
1676 // formatted output
1677 // ---------------------------------------------------------------------------
1678
1679 /* static */
1680 wxString wxString::Format(const wxChar *pszFormat, ...)
1681 {
1682 va_list argptr;
1683 va_start(argptr, pszFormat);
1684
1685 wxString s;
1686 s.PrintfV(pszFormat, argptr);
1687
1688 va_end(argptr);
1689
1690 return s;
1691 }
1692
1693 /* static */
1694 wxString wxString::FormatV(const wxChar *pszFormat, va_list argptr)
1695 {
1696 wxString s;
1697 s.PrintfV(pszFormat, argptr);
1698 return s;
1699 }
1700
1701 int wxString::Printf(const wxChar *pszFormat, ...)
1702 {
1703 va_list argptr;
1704 va_start(argptr, pszFormat);
1705
1706 int iLen = PrintfV(pszFormat, argptr);
1707
1708 va_end(argptr);
1709
1710 return iLen;
1711 }
1712
1713 int wxString::PrintfV(const wxChar* pszFormat, va_list argptr)
1714 {
1715 int size = 1024;
1716 int len;
1717
1718 for ( ;; )
1719 {
1720 {
1721 wxStringBuffer tmp(*this, size + 1);
1722 wxChar* buf = tmp;
1723
1724 if ( !buf )
1725 {
1726 // out of memory
1727 return -1;
1728 }
1729
1730 len = wxVsnprintf(buf, size, pszFormat, argptr);
1731
1732 // some implementations of vsnprintf() don't NUL terminate
1733 // the string if there is not enough space for it so
1734 // always do it manually
1735 buf[size] = _T('\0');
1736 }
1737
1738 // vsnprintf() may return either -1 (traditional Unix behaviour) or the
1739 // total number of characters which would have been written if the
1740 // buffer were large enough
1741 if ( len >= 0 && len <= size )
1742 {
1743 // ok, there was enough space
1744 break;
1745 }
1746
1747 // still not enough, double it again
1748 size *= 2;
1749 }
1750
1751 // we could have overshot
1752 Shrink();
1753
1754 return Len();
1755 }
1756
1757 // ----------------------------------------------------------------------------
1758 // misc other operations
1759 // ----------------------------------------------------------------------------
1760
1761 // returns true if the string matches the pattern which may contain '*' and
1762 // '?' metacharacters (as usual, '?' matches any character and '*' any number
1763 // of them)
1764 bool wxString::Matches(const wxChar *pszMask) const
1765 {
1766 // I disable this code as it doesn't seem to be faster (in fact, it seems
1767 // to be much slower) than the old, hand-written code below and using it
1768 // here requires always linking with libregex even if the user code doesn't
1769 // use it
1770 #if 0 // wxUSE_REGEX
1771 // first translate the shell-like mask into a regex
1772 wxString pattern;
1773 pattern.reserve(wxStrlen(pszMask));
1774
1775 pattern += _T('^');
1776 while ( *pszMask )
1777 {
1778 switch ( *pszMask )
1779 {
1780 case _T('?'):
1781 pattern += _T('.');
1782 break;
1783
1784 case _T('*'):
1785 pattern += _T(".*");
1786 break;
1787
1788 case _T('^'):
1789 case _T('.'):
1790 case _T('$'):
1791 case _T('('):
1792 case _T(')'):
1793 case _T('|'):
1794 case _T('+'):
1795 case _T('\\'):
1796 // these characters are special in a RE, quote them
1797 // (however note that we don't quote '[' and ']' to allow
1798 // using them for Unix shell like matching)
1799 pattern += _T('\\');
1800 // fall through
1801
1802 default:
1803 pattern += *pszMask;
1804 }
1805
1806 pszMask++;
1807 }
1808 pattern += _T('$');
1809
1810 // and now use it
1811 return wxRegEx(pattern, wxRE_NOSUB | wxRE_EXTENDED).Matches(c_str());
1812 #else // !wxUSE_REGEX
1813 // TODO: this is, of course, awfully inefficient...
1814
1815 // the char currently being checked
1816 const wxChar *pszTxt = c_str();
1817
1818 // the last location where '*' matched
1819 const wxChar *pszLastStarInText = NULL;
1820 const wxChar *pszLastStarInMask = NULL;
1821
1822 match:
1823 for ( ; *pszMask != wxT('\0'); pszMask++, pszTxt++ ) {
1824 switch ( *pszMask ) {
1825 case wxT('?'):
1826 if ( *pszTxt == wxT('\0') )
1827 return false;
1828
1829 // pszTxt and pszMask will be incremented in the loop statement
1830
1831 break;
1832
1833 case wxT('*'):
1834 {
1835 // remember where we started to be able to backtrack later
1836 pszLastStarInText = pszTxt;
1837 pszLastStarInMask = pszMask;
1838
1839 // ignore special chars immediately following this one
1840 // (should this be an error?)
1841 while ( *pszMask == wxT('*') || *pszMask == wxT('?') )
1842 pszMask++;
1843
1844 // if there is nothing more, match
1845 if ( *pszMask == wxT('\0') )
1846 return true;
1847
1848 // are there any other metacharacters in the mask?
1849 size_t uiLenMask;
1850 const wxChar *pEndMask = wxStrpbrk(pszMask, wxT("*?"));
1851
1852 if ( pEndMask != NULL ) {
1853 // we have to match the string between two metachars
1854 uiLenMask = pEndMask - pszMask;
1855 }
1856 else {
1857 // we have to match the remainder of the string
1858 uiLenMask = wxStrlen(pszMask);
1859 }
1860
1861 wxString strToMatch(pszMask, uiLenMask);
1862 const wxChar* pMatch = wxStrstr(pszTxt, strToMatch);
1863 if ( pMatch == NULL )
1864 return false;
1865
1866 // -1 to compensate "++" in the loop
1867 pszTxt = pMatch + uiLenMask - 1;
1868 pszMask += uiLenMask - 1;
1869 }
1870 break;
1871
1872 default:
1873 if ( *pszMask != *pszTxt )
1874 return false;
1875 break;
1876 }
1877 }
1878
1879 // match only if nothing left
1880 if ( *pszTxt == wxT('\0') )
1881 return true;
1882
1883 // if we failed to match, backtrack if we can
1884 if ( pszLastStarInText ) {
1885 pszTxt = pszLastStarInText + 1;
1886 pszMask = pszLastStarInMask;
1887
1888 pszLastStarInText = NULL;
1889
1890 // don't bother resetting pszLastStarInMask, it's unnecessary
1891
1892 goto match;
1893 }
1894
1895 return false;
1896 #endif // wxUSE_REGEX/!wxUSE_REGEX
1897 }
1898
1899 // Count the number of chars
1900 int wxString::Freq(wxChar ch) const
1901 {
1902 int count = 0;
1903 int len = Len();
1904 for (int i = 0; i < len; i++)
1905 {
1906 if (GetChar(i) == ch)
1907 count ++;
1908 }
1909 return count;
1910 }
1911
1912 // convert to upper case, return the copy of the string
1913 wxString wxString::Upper() const
1914 { wxString s(*this); return s.MakeUpper(); }
1915
1916 // convert to lower case, return the copy of the string
1917 wxString wxString::Lower() const { wxString s(*this); return s.MakeLower(); }
1918
1919 int wxString::sprintf(const wxChar *pszFormat, ...)
1920 {
1921 va_list argptr;
1922 va_start(argptr, pszFormat);
1923 int iLen = PrintfV(pszFormat, argptr);
1924 va_end(argptr);
1925 return iLen;
1926 }
1927
1928 // ============================================================================
1929 // ArrayString
1930 // ============================================================================
1931
1932 #include "wx/arrstr.h"
1933
1934 #if !wxUSE_STL
1935
1936 // size increment = min(50% of current size, ARRAY_MAXSIZE_INCREMENT)
1937 #define ARRAY_MAXSIZE_INCREMENT 4096
1938
1939 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
1940 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
1941 #endif
1942
1943 #define STRING(p) ((wxString *)(&(p)))
1944
1945 // ctor
1946 void wxArrayString::Init(bool autoSort)
1947 {
1948 m_nSize =
1949 m_nCount = 0;
1950 m_pItems = (wxChar **) NULL;
1951 m_autoSort = autoSort;
1952 }
1953
1954 // copy ctor
1955 wxArrayString::wxArrayString(const wxArrayString& src)
1956 {
1957 Init(src.m_autoSort);
1958
1959 *this = src;
1960 }
1961
1962 // assignment operator
1963 wxArrayString& wxArrayString::operator=(const wxArrayString& src)
1964 {
1965 if ( m_nSize > 0 )
1966 Clear();
1967
1968 Copy(src);
1969
1970 m_autoSort = src.m_autoSort;
1971
1972 return *this;
1973 }
1974
1975 void wxArrayString::Copy(const wxArrayString& src)
1976 {
1977 if ( src.m_nCount > ARRAY_DEFAULT_INITIAL_SIZE )
1978 Alloc(src.m_nCount);
1979
1980 for ( size_t n = 0; n < src.m_nCount; n++ )
1981 Add(src[n]);
1982 }
1983
1984 // grow the array
1985 void wxArrayString::Grow(size_t nIncrement)
1986 {
1987 // only do it if no more place
1988 if ( (m_nSize - m_nCount) < nIncrement ) {
1989 // if ARRAY_DEFAULT_INITIAL_SIZE were set to 0, the initially empty would
1990 // be never resized!
1991 #if ARRAY_DEFAULT_INITIAL_SIZE == 0
1992 #error "ARRAY_DEFAULT_INITIAL_SIZE must be > 0!"
1993 #endif
1994
1995 if ( m_nSize == 0 ) {
1996 // was empty, alloc some memory
1997 m_nSize = ARRAY_DEFAULT_INITIAL_SIZE;
1998 if (m_nSize < nIncrement)
1999 m_nSize = nIncrement;
2000 m_pItems = new wxChar *[m_nSize];
2001 }
2002 else {
2003 // otherwise when it's called for the first time, nIncrement would be 0
2004 // and the array would never be expanded
2005 // add 50% but not too much
2006 size_t ndefIncrement = m_nSize < ARRAY_DEFAULT_INITIAL_SIZE
2007 ? ARRAY_DEFAULT_INITIAL_SIZE : m_nSize >> 1;
2008 if ( ndefIncrement > ARRAY_MAXSIZE_INCREMENT )
2009 ndefIncrement = ARRAY_MAXSIZE_INCREMENT;
2010 if ( nIncrement < ndefIncrement )
2011 nIncrement = ndefIncrement;
2012 m_nSize += nIncrement;
2013 wxChar **pNew = new wxChar *[m_nSize];
2014
2015 // copy data to new location
2016 memcpy(pNew, m_pItems, m_nCount*sizeof(wxChar *));
2017
2018 // delete old memory (but do not release the strings!)
2019 wxDELETEA(m_pItems);
2020
2021 m_pItems = pNew;
2022 }
2023 }
2024 }
2025
2026 void wxArrayString::Free()
2027 {
2028 for ( size_t n = 0; n < m_nCount; n++ ) {
2029 STRING(m_pItems[n])->GetStringData()->Unlock();
2030 }
2031 }
2032
2033 // deletes all the strings from the list
2034 void wxArrayString::Empty()
2035 {
2036 Free();
2037
2038 m_nCount = 0;
2039 }
2040
2041 // as Empty, but also frees memory
2042 void wxArrayString::Clear()
2043 {
2044 Free();
2045
2046 m_nSize =
2047 m_nCount = 0;
2048
2049 wxDELETEA(m_pItems);
2050 }
2051
2052 // dtor
2053 wxArrayString::~wxArrayString()
2054 {
2055 Free();
2056
2057 wxDELETEA(m_pItems);
2058 }
2059
2060 void wxArrayString::reserve(size_t nSize)
2061 {
2062 Alloc(nSize);
2063 }
2064
2065 // pre-allocates memory (frees the previous data!)
2066 void wxArrayString::Alloc(size_t nSize)
2067 {
2068 // only if old buffer was not big enough
2069 if ( nSize > m_nSize ) {
2070 Free();
2071 wxDELETEA(m_pItems);
2072 m_pItems = new wxChar *[nSize];
2073 m_nSize = nSize;
2074 }
2075
2076 m_nCount = 0;
2077 }
2078
2079 // minimizes the memory usage by freeing unused memory
2080 void wxArrayString::Shrink()
2081 {
2082 // only do it if we have some memory to free
2083 if( m_nCount < m_nSize ) {
2084 // allocates exactly as much memory as we need
2085 wxChar **pNew = new wxChar *[m_nCount];
2086
2087 // copy data to new location
2088 memcpy(pNew, m_pItems, m_nCount*sizeof(wxChar *));
2089 delete [] m_pItems;
2090 m_pItems = pNew;
2091 }
2092 }
2093
2094 #if WXWIN_COMPATIBILITY_2_4
2095
2096 // return a wxString[] as required for some control ctors.
2097 wxString* wxArrayString::GetStringArray() const
2098 {
2099 wxString *array = 0;
2100
2101 if( m_nCount > 0 )
2102 {
2103 array = new wxString[m_nCount];
2104 for( size_t i = 0; i < m_nCount; i++ )
2105 array[i] = m_pItems[i];
2106 }
2107
2108 return array;
2109 }
2110
2111 #endif // WXWIN_COMPATIBILITY_2_4
2112
2113 // searches the array for an item (forward or backwards)
2114 int wxArrayString::Index(const wxChar *sz, bool bCase, bool bFromEnd) const
2115 {
2116 if ( m_autoSort ) {
2117 // use binary search in the sorted array
2118 wxASSERT_MSG( bCase && !bFromEnd,
2119 wxT("search parameters ignored for auto sorted array") );
2120
2121 size_t i,
2122 lo = 0,
2123 hi = m_nCount;
2124 int res;
2125 while ( lo < hi ) {
2126 i = (lo + hi)/2;
2127
2128 res = wxStrcmp(sz, m_pItems[i]);
2129 if ( res < 0 )
2130 hi = i;
2131 else if ( res > 0 )
2132 lo = i + 1;
2133 else
2134 return i;
2135 }
2136
2137 return wxNOT_FOUND;
2138 }
2139 else {
2140 // use linear search in unsorted array
2141 if ( bFromEnd ) {
2142 if ( m_nCount > 0 ) {
2143 size_t ui = m_nCount;
2144 do {
2145 if ( STRING(m_pItems[--ui])->IsSameAs(sz, bCase) )
2146 return ui;
2147 }
2148 while ( ui != 0 );
2149 }
2150 }
2151 else {
2152 for( size_t ui = 0; ui < m_nCount; ui++ ) {
2153 if( STRING(m_pItems[ui])->IsSameAs(sz, bCase) )
2154 return ui;
2155 }
2156 }
2157 }
2158
2159 return wxNOT_FOUND;
2160 }
2161
2162 // add item at the end
2163 size_t wxArrayString::Add(const wxString& str, size_t nInsert)
2164 {
2165 if ( m_autoSort ) {
2166 // insert the string at the correct position to keep the array sorted
2167 size_t i,
2168 lo = 0,
2169 hi = m_nCount;
2170 int res;
2171 while ( lo < hi ) {
2172 i = (lo + hi)/2;
2173
2174 res = wxStrcmp(str, m_pItems[i]);
2175 if ( res < 0 )
2176 hi = i;
2177 else if ( res > 0 )
2178 lo = i + 1;
2179 else {
2180 lo = hi = i;
2181 break;
2182 }
2183 }
2184
2185 wxASSERT_MSG( lo == hi, wxT("binary search broken") );
2186
2187 Insert(str, lo, nInsert);
2188
2189 return (size_t)lo;
2190 }
2191 else {
2192 wxASSERT( str.GetStringData()->IsValid() );
2193
2194 Grow(nInsert);
2195
2196 for (size_t i = 0; i < nInsert; i++)
2197 {
2198 // the string data must not be deleted!
2199 str.GetStringData()->Lock();
2200
2201 // just append
2202 m_pItems[m_nCount + i] = (wxChar *)str.c_str(); // const_cast
2203 }
2204 size_t ret = m_nCount;
2205 m_nCount += nInsert;
2206 return ret;
2207 }
2208 }
2209
2210 // add item at the given position
2211 void wxArrayString::Insert(const wxString& str, size_t nIndex, size_t nInsert)
2212 {
2213 wxASSERT( str.GetStringData()->IsValid() );
2214
2215 wxCHECK_RET( nIndex <= m_nCount, wxT("bad index in wxArrayString::Insert") );
2216 wxCHECK_RET( m_nCount <= m_nCount + nInsert,
2217 wxT("array size overflow in wxArrayString::Insert") );
2218
2219 Grow(nInsert);
2220
2221 memmove(&m_pItems[nIndex + nInsert], &m_pItems[nIndex],
2222 (m_nCount - nIndex)*sizeof(wxChar *));
2223
2224 for (size_t i = 0; i < nInsert; i++)
2225 {
2226 str.GetStringData()->Lock();
2227 m_pItems[nIndex + i] = (wxChar *)str.c_str();
2228 }
2229 m_nCount += nInsert;
2230 }
2231
2232 // range insert (STL 23.2.4.3)
2233 void
2234 wxArrayString::insert(iterator it, const_iterator first, const_iterator last)
2235 {
2236 const int idx = it - begin();
2237
2238 // grow it once
2239 Grow(last - first);
2240
2241 // reset "it" since it can change inside Grow()
2242 it = begin() + idx;
2243
2244 while ( first != last )
2245 {
2246 it = insert(it, *first);
2247
2248 // insert returns an iterator to the last element inserted but we need
2249 // insert the next after this one, that is before the next one
2250 ++it;
2251
2252 ++first;
2253 }
2254 }
2255
2256 // expand the array
2257 void wxArrayString::SetCount(size_t count)
2258 {
2259 Alloc(count);
2260
2261 wxString s;
2262 while ( m_nCount < count )
2263 m_pItems[m_nCount++] = (wxChar *)s.c_str();
2264 }
2265
2266 // removes item from array (by index)
2267 void wxArrayString::RemoveAt(size_t nIndex, size_t nRemove)
2268 {
2269 wxCHECK_RET( nIndex < m_nCount, wxT("bad index in wxArrayString::Remove") );
2270 wxCHECK_RET( nIndex + nRemove <= m_nCount,
2271 wxT("removing too many elements in wxArrayString::Remove") );
2272
2273 // release our lock
2274 for (size_t i = 0; i < nRemove; i++)
2275 Item(nIndex + i).GetStringData()->Unlock();
2276
2277 memmove(&m_pItems[nIndex], &m_pItems[nIndex + nRemove],
2278 (m_nCount - nIndex - nRemove)*sizeof(wxChar *));
2279 m_nCount -= nRemove;
2280 }
2281
2282 // removes item from array (by value)
2283 void wxArrayString::Remove(const wxChar *sz)
2284 {
2285 int iIndex = Index(sz);
2286
2287 wxCHECK_RET( iIndex != wxNOT_FOUND,
2288 wxT("removing inexistent element in wxArrayString::Remove") );
2289
2290 RemoveAt(iIndex);
2291 }
2292
2293 void wxArrayString::assign(const_iterator first, const_iterator last)
2294 {
2295 reserve(last - first);
2296 for(; first != last; ++first)
2297 push_back(*first);
2298 }
2299
2300 // ----------------------------------------------------------------------------
2301 // sorting
2302 // ----------------------------------------------------------------------------
2303
2304 // we can only sort one array at a time with the quick-sort based
2305 // implementation
2306 #if wxUSE_THREADS
2307 // need a critical section to protect access to gs_compareFunction and
2308 // gs_sortAscending variables
2309 static wxCriticalSection *gs_critsectStringSort = NULL;
2310
2311 // call this before the value of the global sort vars is changed/after
2312 // you're finished with them
2313 #define START_SORT() wxASSERT( !gs_critsectStringSort ); \
2314 gs_critsectStringSort = new wxCriticalSection; \
2315 gs_critsectStringSort->Enter()
2316 #define END_SORT() gs_critsectStringSort->Leave(); \
2317 delete gs_critsectStringSort; \
2318 gs_critsectStringSort = NULL
2319 #else // !threads
2320 #define START_SORT()
2321 #define END_SORT()
2322 #endif // wxUSE_THREADS
2323
2324 // function to use for string comparaison
2325 static wxArrayString::CompareFunction gs_compareFunction = NULL;
2326
2327 // if we don't use the compare function, this flag tells us if we sort the
2328 // array in ascending or descending order
2329 static bool gs_sortAscending = true;
2330
2331 // function which is called by quick sort
2332 extern "C" int wxC_CALLING_CONV // LINKAGEMODE
2333 wxStringCompareFunction(const void *first, const void *second)
2334 {
2335 wxString *strFirst = (wxString *)first;
2336 wxString *strSecond = (wxString *)second;
2337
2338 if ( gs_compareFunction ) {
2339 return gs_compareFunction(*strFirst, *strSecond);
2340 }
2341 else {
2342 // maybe we should use wxStrcoll
2343 int result = wxStrcmp(strFirst->c_str(), strSecond->c_str());
2344
2345 return gs_sortAscending ? result : -result;
2346 }
2347 }
2348
2349 // sort array elements using passed comparaison function
2350 void wxArrayString::Sort(CompareFunction compareFunction)
2351 {
2352 START_SORT();
2353
2354 wxASSERT( !gs_compareFunction ); // must have been reset to NULL
2355 gs_compareFunction = compareFunction;
2356
2357 DoSort();
2358
2359 // reset it to NULL so that Sort(bool) will work the next time
2360 gs_compareFunction = NULL;
2361
2362 END_SORT();
2363 }
2364
2365 typedef int (wxC_CALLING_CONV * wxStringCompareFn)(const void *first, const void *second);
2366
2367 void wxArrayString::Sort(CompareFunction2 compareFunction)
2368 {
2369 qsort(m_pItems, m_nCount, sizeof(wxChar *), (wxStringCompareFn)compareFunction);
2370 }
2371
2372 void wxArrayString::Sort(bool reverseOrder)
2373 {
2374 Sort(reverseOrder ? wxStringSortDescending : wxStringSortAscending);
2375 }
2376
2377 void wxArrayString::DoSort()
2378 {
2379 wxCHECK_RET( !m_autoSort, wxT("can't use this method with sorted arrays") );
2380
2381 // just sort the pointers using qsort() - of course it only works because
2382 // wxString() *is* a pointer to its data
2383 qsort(m_pItems, m_nCount, sizeof(wxChar *), wxStringCompareFunction);
2384 }
2385
2386 bool wxArrayString::operator==(const wxArrayString& a) const
2387 {
2388 if ( m_nCount != a.m_nCount )
2389 return false;
2390
2391 for ( size_t n = 0; n < m_nCount; n++ )
2392 {
2393 if ( Item(n) != a[n] )
2394 return false;
2395 }
2396
2397 return true;
2398 }
2399
2400 #endif // !wxUSE_STL
2401
2402 int wxCMPFUNC_CONV wxStringSortAscending(wxString* s1, wxString* s2)
2403 {
2404 return wxStrcmp(s1->c_str(), s2->c_str());
2405 }
2406
2407 int wxCMPFUNC_CONV wxStringSortDescending(wxString* s1, wxString* s2)
2408 {
2409 return -wxStrcmp(s1->c_str(), s2->c_str());
2410 }