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