1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxString class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "string.h"
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
23 // ===========================================================================
24 // headers, declarations, constants
25 // ===========================================================================
27 // For compilers that support precompilation, includes "wx.h".
28 #include "wx/wxprec.h"
36 #include "wx/string.h"
38 #include "wx/thread.h"
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)
54 // ---------------------------------------------------------------------------
55 // static class variables definition
56 // ---------------------------------------------------------------------------
58 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
59 // must define this static for VA or else you get multiply defined symbols
61 const unsigned int wxSTRING_MAXLEN
= UINT_MAX
- 100;
64 #ifdef wxSTD_STRING_COMPATIBILITY
65 const size_t wxString::npos
= wxSTRING_MAXLEN
;
66 #endif // wxSTD_STRING_COMPATIBILITY
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 // for an empty string, GetStringData() will return this address: this
73 // structure has the same layout as wxStringData and it's data() method will
74 // return the empty string (dummy pointer)
79 } g_strEmpty
= { {-1, 0, 0}, wxT('\0') };
81 // empty C style string: points to 'string data' byte of g_strEmpty
82 extern const wxChar WXDLLEXPORT
*wxEmptyString
= &g_strEmpty
.dummy
;
84 // ----------------------------------------------------------------------------
86 // ----------------------------------------------------------------------------
88 #if defined(wxSTD_STRING_COMPATIBILITY) && wxUSE_STD_IOSTREAM
90 // MS Visual C++ version 5.0 provides the new STL headers as well as the old
93 // ATTN: you can _not_ use both of these in the same program!
95 wxSTD istream
& operator>>(wxSTD istream
& is
, wxString
& WXUNUSED(str
))
100 streambuf
*sb
= is
.rdbuf();
103 int ch
= sb
->sbumpc ();
105 is
.setstate(ios::eofbit
);
108 else if ( isspace(ch
) ) {
120 if ( str
.length() == 0 )
121 is
.setstate(ios::failbit
);
126 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxString
& str
)
132 #endif //std::string compatibility
134 // ----------------------------------------------------------------------------
136 // ----------------------------------------------------------------------------
138 // this small class is used to gather statistics for performance tuning
139 //#define WXSTRING_STATISTICS
140 #ifdef WXSTRING_STATISTICS
144 Averager(const wxChar
*sz
) { m_sz
= sz
; m_nTotal
= m_nCount
= 0; }
146 { wxPrintf("wxString: average %s = %f\n", m_sz
, ((float)m_nTotal
)/m_nCount
); }
148 void Add(size_t n
) { m_nTotal
+= n
; m_nCount
++; }
151 size_t m_nCount
, m_nTotal
;
153 } g_averageLength("allocation size"),
154 g_averageSummandLength("summand length"),
155 g_averageConcatHit("hit probability in concat"),
156 g_averageInitialLength("initial string length");
158 #define STATISTICS_ADD(av, val) g_average##av.Add(val)
160 #define STATISTICS_ADD(av, val)
161 #endif // WXSTRING_STATISTICS
163 // ===========================================================================
164 // wxString class core
165 // ===========================================================================
167 // ---------------------------------------------------------------------------
169 // ---------------------------------------------------------------------------
171 // constructs string of <nLength> copies of character <ch>
172 wxString::wxString(wxChar ch
, size_t nLength
)
177 if ( !AllocBuffer(nLength
) ) {
178 wxFAIL_MSG( _T("out of memory in wxString::wxString") );
183 // memset only works on chars
184 for ( size_t n
= 0; n
< nLength
; n
++ )
187 memset(m_pchData
, ch
, nLength
);
192 // takes nLength elements of psz starting at nPos
193 void wxString::InitWith(const wxChar
*psz
, size_t nPos
, size_t nLength
)
197 // if the length is not given, assume the string to be NUL terminated
198 if ( nLength
== wxSTRING_MAXLEN
) {
199 wxASSERT_MSG( nPos
<= wxStrlen(psz
), _T("index out of bounds") );
201 nLength
= wxStrlen(psz
+ nPos
);
204 STATISTICS_ADD(InitialLength
, nLength
);
207 // trailing '\0' is written in AllocBuffer()
208 if ( !AllocBuffer(nLength
) ) {
209 wxFAIL_MSG( _T("out of memory in wxString::InitWith") );
212 memcpy(m_pchData
, psz
+ nPos
, nLength
*sizeof(wxChar
));
216 #ifdef wxSTD_STRING_COMPATIBILITY
218 // poor man's iterators are "void *" pointers
219 wxString::wxString(const void *pStart
, const void *pEnd
)
221 InitWith((const wxChar
*)pStart
, 0,
222 (const wxChar
*)pEnd
- (const wxChar
*)pStart
);
225 #endif //std::string compatibility
229 // from multibyte string
230 wxString::wxString(const char *psz
, wxMBConv
& conv
, size_t nLength
)
232 // first get necessary size
233 size_t nLen
= psz
? conv
.MB2WC((wchar_t *) NULL
, psz
, 0) : 0;
235 // nLength is number of *Unicode* characters here!
236 if ((nLen
!= (size_t)-1) && (nLen
> nLength
))
240 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) ) {
241 if ( !AllocBuffer(nLen
) ) {
242 wxFAIL_MSG( _T("out of memory in wxString::wxString") );
245 conv
.MB2WC(m_pchData
, psz
, nLen
);
256 wxString::wxString(const wchar_t *pwz
, wxMBConv
& conv
, size_t nLength
)
258 // first get necessary size
262 if (nLength
== wxSTRING_MAXLEN
)
263 nLen
= conv
.WC2MB((char *) NULL
, pwz
, 0);
269 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) ) {
270 if ( !AllocBuffer(nLen
) ) {
271 wxFAIL_MSG( _T("out of memory in wxString::wxString") );
274 conv
.WC2MB(m_pchData
, pwz
, nLen
);
280 #endif // wxUSE_WCHAR_T
282 #endif // Unicode/ANSI
284 // ---------------------------------------------------------------------------
286 // ---------------------------------------------------------------------------
288 // allocates memory needed to store a C string of length nLen
289 bool wxString::AllocBuffer(size_t nLen
)
291 // allocating 0 sized buffer doesn't make sense, all empty strings should
293 wxASSERT( nLen
> 0 );
295 // make sure that we don't overflow
296 wxASSERT( nLen
< (INT_MAX
/ sizeof(wxChar
)) -
297 (sizeof(wxStringData
) + EXTRA_ALLOC
+ 1) );
299 STATISTICS_ADD(Length
, nLen
);
302 // 1) one extra character for '\0' termination
303 // 2) sizeof(wxStringData) for housekeeping info
304 wxStringData
* pData
= (wxStringData
*)
305 malloc(sizeof(wxStringData
) + (nLen
+ EXTRA_ALLOC
+ 1)*sizeof(wxChar
));
307 if ( pData
== NULL
) {
308 // allocation failures are handled by the caller
313 pData
->nDataLength
= nLen
;
314 pData
->nAllocLength
= nLen
+ EXTRA_ALLOC
;
315 m_pchData
= pData
->data(); // data starts after wxStringData
316 m_pchData
[nLen
] = wxT('\0');
320 // must be called before changing this string
321 bool wxString::CopyBeforeWrite()
323 wxStringData
* pData
= GetStringData();
325 if ( pData
->IsShared() ) {
326 pData
->Unlock(); // memory not freed because shared
327 size_t nLen
= pData
->nDataLength
;
328 if ( !AllocBuffer(nLen
) ) {
329 // allocation failures are handled by the caller
332 memcpy(m_pchData
, pData
->data(), nLen
*sizeof(wxChar
));
335 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
340 // must be called before replacing contents of this string
341 bool wxString::AllocBeforeWrite(size_t nLen
)
343 wxASSERT( nLen
!= 0 ); // doesn't make any sense
345 // must not share string and must have enough space
346 wxStringData
* pData
= GetStringData();
347 if ( pData
->IsShared() || pData
->IsEmpty() ) {
348 // can't work with old buffer, get new one
350 if ( !AllocBuffer(nLen
) ) {
351 // allocation failures are handled by the caller
356 if ( nLen
> pData
->nAllocLength
) {
357 // realloc the buffer instead of calling malloc() again, this is more
359 STATISTICS_ADD(Length
, nLen
);
363 pData
= (wxStringData
*)
364 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
366 if ( pData
== NULL
) {
367 // allocation failures are handled by the caller
368 // keep previous data since reallocation failed
372 pData
->nAllocLength
= nLen
;
373 m_pchData
= pData
->data();
376 // now we have enough space, just update the string length
377 pData
->nDataLength
= nLen
;
380 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
385 // allocate enough memory for nLen characters
386 bool wxString::Alloc(size_t nLen
)
388 wxStringData
*pData
= GetStringData();
389 if ( pData
->nAllocLength
<= nLen
) {
390 if ( pData
->IsEmpty() ) {
393 wxStringData
* pData
= (wxStringData
*)
394 malloc(sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
396 if ( pData
== NULL
) {
397 // allocation failure handled by caller
402 pData
->nDataLength
= 0;
403 pData
->nAllocLength
= nLen
;
404 m_pchData
= pData
->data(); // data starts after wxStringData
405 m_pchData
[0u] = wxT('\0');
407 else if ( pData
->IsShared() ) {
408 pData
->Unlock(); // memory not freed because shared
409 size_t nOldLen
= pData
->nDataLength
;
410 if ( !AllocBuffer(nLen
) ) {
411 // allocation failure handled by caller
414 memcpy(m_pchData
, pData
->data(), nOldLen
*sizeof(wxChar
));
419 pData
= (wxStringData
*)
420 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
422 if ( pData
== NULL
) {
423 // allocation failure handled by caller
424 // keep previous data since reallocation failed
428 // it's not important if the pointer changed or not (the check for this
429 // is not faster than assigning to m_pchData in all cases)
430 pData
->nAllocLength
= nLen
;
431 m_pchData
= pData
->data();
434 //else: we've already got enough
438 // shrink to minimal size (releasing extra memory)
439 bool wxString::Shrink()
441 wxStringData
*pData
= GetStringData();
443 size_t nLen
= pData
->nDataLength
;
444 void *p
= realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
447 wxFAIL_MSG( _T("out of memory reallocating wxString data") );
448 // keep previous data since reallocation failed
454 // contrary to what one might believe, some realloc() implementation do
455 // move the memory block even when its size is reduced
456 pData
= (wxStringData
*)p
;
458 m_pchData
= pData
->data();
461 pData
->nAllocLength
= nLen
;
466 // get the pointer to writable buffer of (at least) nLen bytes
467 wxChar
*wxString::GetWriteBuf(size_t nLen
)
469 if ( !AllocBeforeWrite(nLen
) ) {
470 // allocation failure handled by caller
474 wxASSERT( GetStringData()->nRefs
== 1 );
475 GetStringData()->Validate(FALSE
);
480 // put string back in a reasonable state after GetWriteBuf
481 void wxString::UngetWriteBuf()
483 GetStringData()->nDataLength
= wxStrlen(m_pchData
);
484 GetStringData()->Validate(TRUE
);
487 void wxString::UngetWriteBuf(size_t nLen
)
489 GetStringData()->nDataLength
= nLen
;
490 GetStringData()->Validate(TRUE
);
493 // ---------------------------------------------------------------------------
495 // ---------------------------------------------------------------------------
497 // all functions are inline in string.h
499 // ---------------------------------------------------------------------------
500 // assignment operators
501 // ---------------------------------------------------------------------------
503 // helper function: does real copy
504 bool wxString::AssignCopy(size_t nSrcLen
, const wxChar
*pszSrcData
)
506 if ( nSrcLen
== 0 ) {
510 if ( !AllocBeforeWrite(nSrcLen
) ) {
511 // allocation failure handled by caller
514 memcpy(m_pchData
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
515 GetStringData()->nDataLength
= nSrcLen
;
516 m_pchData
[nSrcLen
] = wxT('\0');
521 // assigns one string to another
522 wxString
& wxString::operator=(const wxString
& stringSrc
)
524 wxASSERT( stringSrc
.GetStringData()->IsValid() );
526 // don't copy string over itself
527 if ( m_pchData
!= stringSrc
.m_pchData
) {
528 if ( stringSrc
.GetStringData()->IsEmpty() ) {
533 GetStringData()->Unlock();
534 m_pchData
= stringSrc
.m_pchData
;
535 GetStringData()->Lock();
542 // assigns a single character
543 wxString
& wxString::operator=(wxChar ch
)
545 if ( !AssignCopy(1, &ch
) ) {
546 wxFAIL_MSG( _T("out of memory in wxString::operator=(wxChar)") );
553 wxString
& wxString::operator=(const wxChar
*psz
)
555 if ( !AssignCopy(wxStrlen(psz
), psz
) ) {
556 wxFAIL_MSG( _T("out of memory in wxString::operator=(const wxChar *)") );
563 // same as 'signed char' variant
564 wxString
& wxString::operator=(const unsigned char* psz
)
566 *this = (const char *)psz
;
571 wxString
& wxString::operator=(const wchar_t *pwz
)
581 // ---------------------------------------------------------------------------
582 // string concatenation
583 // ---------------------------------------------------------------------------
585 // add something to this string
586 bool wxString::ConcatSelf(int nSrcLen
, const wxChar
*pszSrcData
)
588 STATISTICS_ADD(SummandLength
, nSrcLen
);
590 // concatenating an empty string is a NOP
592 wxStringData
*pData
= GetStringData();
593 size_t nLen
= pData
->nDataLength
;
594 size_t nNewLen
= nLen
+ nSrcLen
;
596 // alloc new buffer if current is too small
597 if ( pData
->IsShared() ) {
598 STATISTICS_ADD(ConcatHit
, 0);
600 // we have to allocate another buffer
601 wxStringData
* pOldData
= GetStringData();
602 if ( !AllocBuffer(nNewLen
) ) {
603 // allocation failure handled by caller
606 memcpy(m_pchData
, pOldData
->data(), nLen
*sizeof(wxChar
));
609 else if ( nNewLen
> pData
->nAllocLength
) {
610 STATISTICS_ADD(ConcatHit
, 0);
612 // we have to grow the buffer
613 if ( !Alloc(nNewLen
) ) {
614 // allocation failure handled by caller
619 STATISTICS_ADD(ConcatHit
, 1);
621 // the buffer is already big enough
624 // should be enough space
625 wxASSERT( nNewLen
<= GetStringData()->nAllocLength
);
627 // fast concatenation - all is done in our buffer
628 memcpy(m_pchData
+ nLen
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
630 m_pchData
[nNewLen
] = wxT('\0'); // put terminating '\0'
631 GetStringData()->nDataLength
= nNewLen
; // and fix the length
633 //else: the string to append was empty
638 * concatenation functions come in 5 flavours:
640 * char + string and string + char
641 * C str + string and string + C str
644 wxString
operator+(const wxString
& str1
, const wxString
& str2
)
646 wxASSERT( str1
.GetStringData()->IsValid() );
647 wxASSERT( str2
.GetStringData()->IsValid() );
655 wxString
operator+(const wxString
& str
, wxChar ch
)
657 wxASSERT( str
.GetStringData()->IsValid() );
665 wxString
operator+(wxChar ch
, const wxString
& str
)
667 wxASSERT( str
.GetStringData()->IsValid() );
675 wxString
operator+(const wxString
& str
, const wxChar
*psz
)
677 wxASSERT( str
.GetStringData()->IsValid() );
680 if ( !s
.Alloc(wxStrlen(psz
) + str
.Len()) ) {
681 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
689 wxString
operator+(const wxChar
*psz
, const wxString
& str
)
691 wxASSERT( str
.GetStringData()->IsValid() );
694 if ( !s
.Alloc(wxStrlen(psz
) + str
.Len()) ) {
695 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
703 // ===========================================================================
704 // other common string functions
705 // ===========================================================================
709 wxString
wxString::FromAscii(const char *ascii
)
712 return wxEmptyString
;
714 size_t len
= strlen( ascii
);
719 wxStringBuffer
buf(res
, len
);
725 if ( (*dest
++ = (wchar_t)(unsigned char)*ascii
++) == L
'\0' )
733 const wxCharBuffer
wxString::ToAscii() const
735 // this will allocate enough space for the terminating NUL too
736 wxCharBuffer
buffer(length());
738 signed char *dest
= (signed char *)buffer
.data();
740 const wchar_t *pwc
= c_str();
743 *dest
++ = *pwc
> SCHAR_MAX
? '_' : *pwc
;
745 // the output string can't have embedded NULs anyhow, so we can safely
746 // stop at first of them even if we do have any
756 // ---------------------------------------------------------------------------
757 // simple sub-string extraction
758 // ---------------------------------------------------------------------------
760 // helper function: clone the data attached to this string
761 bool wxString::AllocCopy(wxString
& dest
, int nCopyLen
, int nCopyIndex
) const
763 if ( nCopyLen
== 0 ) {
767 if ( !dest
.AllocBuffer(nCopyLen
) ) {
768 // allocation failure handled by caller
771 memcpy(dest
.m_pchData
, m_pchData
+ nCopyIndex
, nCopyLen
*sizeof(wxChar
));
776 // extract string of length nCount starting at nFirst
777 wxString
wxString::Mid(size_t nFirst
, size_t nCount
) const
779 wxStringData
*pData
= GetStringData();
780 size_t nLen
= pData
->nDataLength
;
782 // default value of nCount is wxSTRING_MAXLEN and means "till the end"
783 if ( nCount
== wxSTRING_MAXLEN
)
785 nCount
= nLen
- nFirst
;
788 // out-of-bounds requests return sensible things
789 if ( nFirst
+ nCount
> nLen
)
791 nCount
= nLen
- nFirst
;
796 // AllocCopy() will return empty string
801 if ( !AllocCopy(dest
, nCount
, nFirst
) ) {
802 wxFAIL_MSG( _T("out of memory in wxString::Mid") );
808 // check that the tring starts with prefix and return the rest of the string
809 // in the provided pointer if it is not NULL, otherwise return FALSE
810 bool wxString::StartsWith(const wxChar
*prefix
, wxString
*rest
) const
812 wxASSERT_MSG( prefix
, _T("invalid parameter in wxString::StartsWith") );
814 // first check if the beginning of the string matches the prefix: note
815 // that we don't have to check that we don't run out of this string as
816 // when we reach the terminating NUL, either prefix string ends too (and
817 // then it's ok) or we break out of the loop because there is no match
818 const wxChar
*p
= c_str();
821 if ( *prefix
++ != *p
++ )
830 // put the rest of the string into provided pointer
837 // extract nCount last (rightmost) characters
838 wxString
wxString::Right(size_t nCount
) const
840 if ( nCount
> (size_t)GetStringData()->nDataLength
)
841 nCount
= GetStringData()->nDataLength
;
844 if ( !AllocCopy(dest
, nCount
, GetStringData()->nDataLength
- nCount
) ) {
845 wxFAIL_MSG( _T("out of memory in wxString::Right") );
850 // get all characters after the last occurence of ch
851 // (returns the whole string if ch not found)
852 wxString
wxString::AfterLast(wxChar ch
) const
855 int iPos
= Find(ch
, TRUE
);
856 if ( iPos
== wxNOT_FOUND
)
859 str
= c_str() + iPos
+ 1;
864 // extract nCount first (leftmost) characters
865 wxString
wxString::Left(size_t nCount
) const
867 if ( nCount
> (size_t)GetStringData()->nDataLength
)
868 nCount
= GetStringData()->nDataLength
;
871 if ( !AllocCopy(dest
, nCount
, 0) ) {
872 wxFAIL_MSG( _T("out of memory in wxString::Left") );
877 // get all characters before the first occurence of ch
878 // (returns the whole string if ch not found)
879 wxString
wxString::BeforeFirst(wxChar ch
) const
882 for ( const wxChar
*pc
= m_pchData
; *pc
!= wxT('\0') && *pc
!= ch
; pc
++ )
888 /// get all characters before the last occurence of ch
889 /// (returns empty string if ch not found)
890 wxString
wxString::BeforeLast(wxChar ch
) const
893 int iPos
= Find(ch
, TRUE
);
894 if ( iPos
!= wxNOT_FOUND
&& iPos
!= 0 )
895 str
= wxString(c_str(), iPos
);
900 /// get all characters after the first occurence of ch
901 /// (returns empty string if ch not found)
902 wxString
wxString::AfterFirst(wxChar ch
) const
906 if ( iPos
!= wxNOT_FOUND
)
907 str
= c_str() + iPos
+ 1;
912 // replace first (or all) occurences of some substring with another one
913 size_t wxString::Replace(const wxChar
*szOld
, const wxChar
*szNew
, bool bReplaceAll
)
915 size_t uiCount
= 0; // count of replacements made
917 size_t uiOldLen
= wxStrlen(szOld
);
920 const wxChar
*pCurrent
= m_pchData
;
921 const wxChar
*pSubstr
;
922 while ( *pCurrent
!= wxT('\0') ) {
923 pSubstr
= wxStrstr(pCurrent
, szOld
);
924 if ( pSubstr
== NULL
) {
925 // strTemp is unused if no replacements were made, so avoid the copy
929 strTemp
+= pCurrent
; // copy the rest
930 break; // exit the loop
933 // take chars before match
934 if ( !strTemp
.ConcatSelf(pSubstr
- pCurrent
, pCurrent
) ) {
935 wxFAIL_MSG( _T("out of memory in wxString::Replace") );
939 pCurrent
= pSubstr
+ uiOldLen
; // restart after match
944 if ( !bReplaceAll
) {
945 strTemp
+= pCurrent
; // copy the rest
946 break; // exit the loop
951 // only done if there were replacements, otherwise would have returned above
957 bool wxString::IsAscii() const
959 const wxChar
*s
= (const wxChar
*) *this;
961 if(!isascii(*s
)) return(FALSE
);
967 bool wxString::IsWord() const
969 const wxChar
*s
= (const wxChar
*) *this;
971 if(!wxIsalpha(*s
)) return(FALSE
);
977 bool wxString::IsNumber() const
979 const wxChar
*s
= (const wxChar
*) *this;
981 if ((s
[0] == '-') || (s
[0] == '+')) s
++;
983 if(!wxIsdigit(*s
)) return(FALSE
);
989 wxString
wxString::Strip(stripType w
) const
992 if ( w
& leading
) s
.Trim(FALSE
);
993 if ( w
& trailing
) s
.Trim(TRUE
);
997 // ---------------------------------------------------------------------------
999 // ---------------------------------------------------------------------------
1001 wxString
& wxString::MakeUpper()
1003 if ( !CopyBeforeWrite() ) {
1004 wxFAIL_MSG( _T("out of memory in wxString::MakeUpper") );
1008 for ( wxChar
*p
= m_pchData
; *p
; p
++ )
1009 *p
= (wxChar
)wxToupper(*p
);
1014 wxString
& wxString::MakeLower()
1016 if ( !CopyBeforeWrite() ) {
1017 wxFAIL_MSG( _T("out of memory in wxString::MakeLower") );
1021 for ( wxChar
*p
= m_pchData
; *p
; p
++ )
1022 *p
= (wxChar
)wxTolower(*p
);
1027 // ---------------------------------------------------------------------------
1028 // trimming and padding
1029 // ---------------------------------------------------------------------------
1031 // some compilers (VC++ 6.0 not to name them) return TRUE for a call to
1032 // isspace('ê') in the C locale which seems to be broken to me, but we have to
1033 // live with this by checking that the character is a 7 bit one - even if this
1034 // may fail to detect some spaces (I don't know if Unicode doesn't have
1035 // space-like symbols somewhere except in the first 128 chars), it is arguably
1036 // still better than trimming away accented letters
1037 inline int wxSafeIsspace(wxChar ch
) { return (ch
< 127) && wxIsspace(ch
); }
1039 // trims spaces (in the sense of isspace) from left or right side
1040 wxString
& wxString::Trim(bool bFromRight
)
1042 // first check if we're going to modify the string at all
1045 (bFromRight
&& wxSafeIsspace(GetChar(Len() - 1))) ||
1046 (!bFromRight
&& wxSafeIsspace(GetChar(0u)))
1050 // ok, there is at least one space to trim
1051 if ( !CopyBeforeWrite() ) {
1052 wxFAIL_MSG( _T("out of memory in wxString::Trim") );
1058 // find last non-space character
1059 wxChar
*psz
= m_pchData
+ GetStringData()->nDataLength
- 1;
1060 while ( wxSafeIsspace(*psz
) && (psz
>= m_pchData
) )
1063 // truncate at trailing space start
1065 GetStringData()->nDataLength
= psz
- m_pchData
;
1069 // find first non-space character
1070 const wxChar
*psz
= m_pchData
;
1071 while ( wxSafeIsspace(*psz
) )
1074 // fix up data and length
1075 int nDataLength
= GetStringData()->nDataLength
- (psz
- (const wxChar
*) m_pchData
);
1076 memmove(m_pchData
, psz
, (nDataLength
+ 1)*sizeof(wxChar
));
1077 GetStringData()->nDataLength
= nDataLength
;
1084 // adds nCount characters chPad to the string from either side
1085 wxString
& wxString::Pad(size_t nCount
, wxChar chPad
, bool bFromRight
)
1087 wxString
s(chPad
, nCount
);
1100 // truncate the string
1101 wxString
& wxString::Truncate(size_t uiLen
)
1103 if ( uiLen
< Len() ) {
1104 if ( !CopyBeforeWrite() ) {
1105 wxFAIL_MSG( _T("out of memory in wxString::Truncate") );
1109 *(m_pchData
+ uiLen
) = wxT('\0');
1110 GetStringData()->nDataLength
= uiLen
;
1112 //else: nothing to do, string is already short enough
1117 // ---------------------------------------------------------------------------
1118 // finding (return wxNOT_FOUND if not found and index otherwise)
1119 // ---------------------------------------------------------------------------
1122 int wxString::Find(wxChar ch
, bool bFromEnd
) const
1124 const wxChar
*psz
= bFromEnd
? wxStrrchr(m_pchData
, ch
) : wxStrchr(m_pchData
, ch
);
1126 return (psz
== NULL
) ? wxNOT_FOUND
: psz
- (const wxChar
*) m_pchData
;
1129 // find a sub-string (like strstr)
1130 int wxString::Find(const wxChar
*pszSub
) const
1132 const wxChar
*psz
= wxStrstr(m_pchData
, pszSub
);
1134 return (psz
== NULL
) ? wxNOT_FOUND
: psz
- (const wxChar
*) m_pchData
;
1137 // ----------------------------------------------------------------------------
1138 // conversion to numbers
1139 // ----------------------------------------------------------------------------
1141 bool wxString::ToLong(long *val
, int base
) const
1143 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToLong") );
1144 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1146 const wxChar
*start
= c_str();
1148 *val
= wxStrtol(start
, &end
, base
);
1150 // return TRUE only if scan was stopped by the terminating NUL and if the
1151 // string was not empty to start with
1152 return !*end
&& (end
!= start
);
1155 bool wxString::ToULong(unsigned long *val
, int base
) const
1157 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToULong") );
1158 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1160 const wxChar
*start
= c_str();
1162 *val
= wxStrtoul(start
, &end
, base
);
1164 // return TRUE only if scan was stopped by the terminating NUL and if the
1165 // string was not empty to start with
1166 return !*end
&& (end
!= start
);
1169 bool wxString::ToDouble(double *val
) const
1171 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToDouble") );
1173 const wxChar
*start
= c_str();
1175 *val
= wxStrtod(start
, &end
);
1177 // return TRUE only if scan was stopped by the terminating NUL and if the
1178 // string was not empty to start with
1179 return !*end
&& (end
!= start
);
1182 // ---------------------------------------------------------------------------
1184 // ---------------------------------------------------------------------------
1187 wxString
wxString::Format(const wxChar
*pszFormat
, ...)
1190 va_start(argptr
, pszFormat
);
1193 s
.PrintfV(pszFormat
, argptr
);
1201 wxString
wxString::FormatV(const wxChar
*pszFormat
, va_list argptr
)
1204 s
.PrintfV(pszFormat
, argptr
);
1208 int wxString::Printf(const wxChar
*pszFormat
, ...)
1211 va_start(argptr
, pszFormat
);
1213 int iLen
= PrintfV(pszFormat
, argptr
);
1220 int wxString::PrintfV(const wxChar
* pszFormat
, va_list argptr
)
1225 wxChar
*buf
= GetWriteBuf(size
+ 1);
1232 int len
= wxVsnprintf(buf
, size
, pszFormat
, argptr
);
1234 // some implementations of vsnprintf() don't NUL terminate the string
1235 // if there is not enough space for it so always do it manually
1236 buf
[size
] = _T('\0');
1242 // ok, there was enough space
1246 // still not enough, double it again
1250 // we could have overshot
1256 // ----------------------------------------------------------------------------
1257 // misc other operations
1258 // ----------------------------------------------------------------------------
1260 // returns TRUE if the string matches the pattern which may contain '*' and
1261 // '?' metacharacters (as usual, '?' matches any character and '*' any number
1263 bool wxString::Matches(const wxChar
*pszMask
) const
1265 // I disable this code as it doesn't seem to be faster (in fact, it seems
1266 // to be much slower) than the old, hand-written code below and using it
1267 // here requires always linking with libregex even if the user code doesn't
1269 #if 0 // wxUSE_REGEX
1270 // first translate the shell-like mask into a regex
1272 pattern
.reserve(wxStrlen(pszMask
));
1284 pattern
+= _T(".*");
1295 // these characters are special in a RE, quote them
1296 // (however note that we don't quote '[' and ']' to allow
1297 // using them for Unix shell like matching)
1298 pattern
+= _T('\\');
1302 pattern
+= *pszMask
;
1310 return wxRegEx(pattern
, wxRE_NOSUB
| wxRE_EXTENDED
).Matches(c_str());
1311 #else // !wxUSE_REGEX
1312 // TODO: this is, of course, awfully inefficient...
1314 // the char currently being checked
1315 const wxChar
*pszTxt
= c_str();
1317 // the last location where '*' matched
1318 const wxChar
*pszLastStarInText
= NULL
;
1319 const wxChar
*pszLastStarInMask
= NULL
;
1322 for ( ; *pszMask
!= wxT('\0'); pszMask
++, pszTxt
++ ) {
1323 switch ( *pszMask
) {
1325 if ( *pszTxt
== wxT('\0') )
1328 // pszTxt and pszMask will be incremented in the loop statement
1334 // remember where we started to be able to backtrack later
1335 pszLastStarInText
= pszTxt
;
1336 pszLastStarInMask
= pszMask
;
1338 // ignore special chars immediately following this one
1339 // (should this be an error?)
1340 while ( *pszMask
== wxT('*') || *pszMask
== wxT('?') )
1343 // if there is nothing more, match
1344 if ( *pszMask
== wxT('\0') )
1347 // are there any other metacharacters in the mask?
1349 const wxChar
*pEndMask
= wxStrpbrk(pszMask
, wxT("*?"));
1351 if ( pEndMask
!= NULL
) {
1352 // we have to match the string between two metachars
1353 uiLenMask
= pEndMask
- pszMask
;
1356 // we have to match the remainder of the string
1357 uiLenMask
= wxStrlen(pszMask
);
1360 wxString
strToMatch(pszMask
, uiLenMask
);
1361 const wxChar
* pMatch
= wxStrstr(pszTxt
, strToMatch
);
1362 if ( pMatch
== NULL
)
1365 // -1 to compensate "++" in the loop
1366 pszTxt
= pMatch
+ uiLenMask
- 1;
1367 pszMask
+= uiLenMask
- 1;
1372 if ( *pszMask
!= *pszTxt
)
1378 // match only if nothing left
1379 if ( *pszTxt
== wxT('\0') )
1382 // if we failed to match, backtrack if we can
1383 if ( pszLastStarInText
) {
1384 pszTxt
= pszLastStarInText
+ 1;
1385 pszMask
= pszLastStarInMask
;
1387 pszLastStarInText
= NULL
;
1389 // don't bother resetting pszLastStarInMask, it's unnecessary
1395 #endif // wxUSE_REGEX/!wxUSE_REGEX
1398 // Count the number of chars
1399 int wxString::Freq(wxChar ch
) const
1403 for (int i
= 0; i
< len
; i
++)
1405 if (GetChar(i
) == ch
)
1411 // convert to upper case, return the copy of the string
1412 wxString
wxString::Upper() const
1413 { wxString
s(*this); return s
.MakeUpper(); }
1415 // convert to lower case, return the copy of the string
1416 wxString
wxString::Lower() const { wxString
s(*this); return s
.MakeLower(); }
1418 int wxString::sprintf(const wxChar
*pszFormat
, ...)
1421 va_start(argptr
, pszFormat
);
1422 int iLen
= PrintfV(pszFormat
, argptr
);
1427 // ---------------------------------------------------------------------------
1428 // standard C++ library string functions
1429 // ---------------------------------------------------------------------------
1431 #ifdef wxSTD_STRING_COMPATIBILITY
1433 void wxString::resize(size_t nSize
, wxChar ch
)
1435 size_t len
= length();
1441 else if ( nSize
> len
)
1443 *this += wxString(ch
, nSize
- len
);
1445 //else: we have exactly the specified length, nothing to do
1448 void wxString::swap(wxString
& str
)
1450 // this is slightly less efficient than fiddling with m_pchData directly,
1451 // but it is still quite efficient as we don't copy the string here because
1452 // ref count always stays positive
1458 wxString
& wxString::insert(size_t nPos
, const wxString
& str
)
1460 wxASSERT( str
.GetStringData()->IsValid() );
1461 wxASSERT( nPos
<= Len() );
1463 if ( !str
.IsEmpty() ) {
1465 wxChar
*pc
= strTmp
.GetWriteBuf(Len() + str
.Len());
1466 wxStrncpy(pc
, c_str(), nPos
);
1467 wxStrcpy(pc
+ nPos
, str
);
1468 wxStrcpy(pc
+ nPos
+ str
.Len(), c_str() + nPos
);
1469 strTmp
.UngetWriteBuf();
1476 size_t wxString::find(const wxString
& str
, size_t nStart
) const
1478 wxASSERT( str
.GetStringData()->IsValid() );
1479 wxASSERT( nStart
<= Len() );
1481 const wxChar
*p
= wxStrstr(c_str() + nStart
, str
);
1483 return p
== NULL
? npos
: p
- c_str();
1486 // VC++ 1.5 can't cope with the default argument in the header.
1487 #if !defined(__VISUALC__) || defined(__WIN32__)
1488 size_t wxString::find(const wxChar
* sz
, size_t nStart
, size_t n
) const
1490 return find(wxString(sz
, n
), nStart
);
1494 // Gives a duplicate symbol (presumably a case-insensitivity problem)
1495 #if !defined(__BORLANDC__)
1496 size_t wxString::find(wxChar ch
, size_t nStart
) const
1498 wxASSERT( nStart
<= Len() );
1500 const wxChar
*p
= wxStrchr(c_str() + nStart
, ch
);
1502 return p
== NULL
? npos
: p
- c_str();
1506 size_t wxString::rfind(const wxString
& str
, size_t nStart
) const
1508 wxASSERT( str
.GetStringData()->IsValid() );
1509 wxASSERT( nStart
== npos
|| nStart
<= Len() );
1511 // TODO could be made much quicker than that
1512 const wxChar
*p
= c_str() + (nStart
== npos
? Len() : nStart
);
1513 while ( p
>= c_str() + str
.Len() ) {
1514 if ( wxStrncmp(p
- str
.Len(), str
, str
.Len()) == 0 )
1515 return p
- str
.Len() - c_str();
1522 // VC++ 1.5 can't cope with the default argument in the header.
1523 #if !defined(__VISUALC__) || defined(__WIN32__)
1524 size_t wxString::rfind(const wxChar
* sz
, size_t nStart
, size_t n
) const
1526 return rfind(wxString(sz
, n
== npos
? wxSTRING_MAXLEN
: n
), nStart
);
1529 size_t wxString::rfind(wxChar ch
, size_t nStart
) const
1531 if ( nStart
== npos
)
1537 wxASSERT( nStart
<= Len() );
1540 const wxChar
*p
= wxStrrchr(c_str(), ch
);
1545 size_t result
= p
- c_str();
1546 return ( result
> nStart
) ? npos
: result
;
1550 size_t wxString::find_first_of(const wxChar
* sz
, size_t nStart
) const
1552 const wxChar
*start
= c_str() + nStart
;
1553 const wxChar
*firstOf
= wxStrpbrk(start
, sz
);
1555 return firstOf
- c_str();
1560 size_t wxString::find_last_of(const wxChar
* sz
, size_t nStart
) const
1562 if ( nStart
== npos
)
1568 wxASSERT( nStart
<= Len() );
1571 for ( const wxChar
*p
= c_str() + length() - 1; p
>= c_str(); p
-- )
1573 if ( wxStrchr(sz
, *p
) )
1580 size_t wxString::find_first_not_of(const wxChar
* sz
, size_t nStart
) const
1582 if ( nStart
== npos
)
1588 wxASSERT( nStart
<= Len() );
1591 size_t nAccept
= wxStrspn(c_str() + nStart
, sz
);
1592 if ( nAccept
>= length() - nStart
)
1598 size_t wxString::find_first_not_of(wxChar ch
, size_t nStart
) const
1600 wxASSERT( nStart
<= Len() );
1602 for ( const wxChar
*p
= c_str() + nStart
; *p
; p
++ )
1611 size_t wxString::find_last_not_of(const wxChar
* sz
, size_t nStart
) const
1613 if ( nStart
== npos
)
1619 wxASSERT( nStart
<= Len() );
1622 for ( const wxChar
*p
= c_str() + nStart
- 1; p
>= c_str(); p
-- )
1624 if ( !wxStrchr(sz
, *p
) )
1631 size_t wxString::find_last_not_of(wxChar ch
, size_t nStart
) const
1633 if ( nStart
== npos
)
1639 wxASSERT( nStart
<= Len() );
1642 for ( const wxChar
*p
= c_str() + nStart
- 1; p
>= c_str(); p
-- )
1651 wxString
& wxString::erase(size_t nStart
, size_t nLen
)
1653 wxString
strTmp(c_str(), nStart
);
1654 if ( nLen
!= npos
) {
1655 wxASSERT( nStart
+ nLen
<= Len() );
1657 strTmp
.append(c_str() + nStart
+ nLen
);
1664 wxString
& wxString::replace(size_t nStart
, size_t nLen
, const wxChar
*sz
)
1666 wxASSERT_MSG( nStart
+ nLen
<= Len(),
1667 _T("index out of bounds in wxString::replace") );
1670 strTmp
.Alloc(Len()); // micro optimisation to avoid multiple mem allocs
1673 strTmp
.append(c_str(), nStart
);
1674 strTmp
<< sz
<< c_str() + nStart
+ nLen
;
1680 wxString
& wxString::replace(size_t nStart
, size_t nLen
, size_t nCount
, wxChar ch
)
1682 return replace(nStart
, nLen
, wxString(ch
, nCount
));
1685 wxString
& wxString::replace(size_t nStart
, size_t nLen
,
1686 const wxString
& str
, size_t nStart2
, size_t nLen2
)
1688 return replace(nStart
, nLen
, str
.substr(nStart2
, nLen2
));
1691 wxString
& wxString::replace(size_t nStart
, size_t nLen
,
1692 const wxChar
* sz
, size_t nCount
)
1694 return replace(nStart
, nLen
, wxString(sz
, nCount
));
1697 #endif //std::string compatibility
1699 // ============================================================================
1701 // ============================================================================
1703 // size increment = min(50% of current size, ARRAY_MAXSIZE_INCREMENT)
1704 #define ARRAY_MAXSIZE_INCREMENT 4096
1706 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
1707 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
1710 #define STRING(p) ((wxString *)(&(p)))
1713 void wxArrayString::Init(bool autoSort
)
1717 m_pItems
= (wxChar
**) NULL
;
1718 m_autoSort
= autoSort
;
1722 wxArrayString::wxArrayString(const wxArrayString
& src
)
1724 Init(src
.m_autoSort
);
1729 // assignment operator
1730 wxArrayString
& wxArrayString::operator=(const wxArrayString
& src
)
1737 m_autoSort
= src
.m_autoSort
;
1742 void wxArrayString::Copy(const wxArrayString
& src
)
1744 if ( src
.m_nCount
> ARRAY_DEFAULT_INITIAL_SIZE
)
1745 Alloc(src
.m_nCount
);
1747 for ( size_t n
= 0; n
< src
.m_nCount
; n
++ )
1752 void wxArrayString::Grow(size_t nIncrement
)
1754 // only do it if no more place
1755 if ( m_nCount
== m_nSize
) {
1756 // if ARRAY_DEFAULT_INITIAL_SIZE were set to 0, the initially empty would
1757 // be never resized!
1758 #if ARRAY_DEFAULT_INITIAL_SIZE == 0
1759 #error "ARRAY_DEFAULT_INITIAL_SIZE must be > 0!"
1762 if ( m_nSize
== 0 ) {
1763 // was empty, alloc some memory
1764 m_nSize
= ARRAY_DEFAULT_INITIAL_SIZE
;
1765 m_pItems
= new wxChar
*[m_nSize
];
1768 // otherwise when it's called for the first time, nIncrement would be 0
1769 // and the array would never be expanded
1770 // add 50% but not too much
1771 size_t ndefIncrement
= m_nSize
< ARRAY_DEFAULT_INITIAL_SIZE
1772 ? ARRAY_DEFAULT_INITIAL_SIZE
: m_nSize
>> 1;
1773 if ( ndefIncrement
> ARRAY_MAXSIZE_INCREMENT
)
1774 ndefIncrement
= ARRAY_MAXSIZE_INCREMENT
;
1775 if ( nIncrement
< ndefIncrement
)
1776 nIncrement
= ndefIncrement
;
1777 m_nSize
+= nIncrement
;
1778 wxChar
**pNew
= new wxChar
*[m_nSize
];
1780 // copy data to new location
1781 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
1783 // delete old memory (but do not release the strings!)
1784 wxDELETEA(m_pItems
);
1791 void wxArrayString::Free()
1793 for ( size_t n
= 0; n
< m_nCount
; n
++ ) {
1794 STRING(m_pItems
[n
])->GetStringData()->Unlock();
1798 // deletes all the strings from the list
1799 void wxArrayString::Empty()
1806 // as Empty, but also frees memory
1807 void wxArrayString::Clear()
1814 wxDELETEA(m_pItems
);
1818 wxArrayString::~wxArrayString()
1822 wxDELETEA(m_pItems
);
1825 // pre-allocates memory (frees the previous data!)
1826 void wxArrayString::Alloc(size_t nSize
)
1828 // only if old buffer was not big enough
1829 if ( nSize
> m_nSize
) {
1831 wxDELETEA(m_pItems
);
1832 m_pItems
= new wxChar
*[nSize
];
1839 // minimizes the memory usage by freeing unused memory
1840 void wxArrayString::Shrink()
1842 // only do it if we have some memory to free
1843 if( m_nCount
< m_nSize
) {
1844 // allocates exactly as much memory as we need
1845 wxChar
**pNew
= new wxChar
*[m_nCount
];
1847 // copy data to new location
1848 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
1854 // return a wxString[] as required for some control ctors.
1855 wxString
* wxArrayString::GetStringArray() const
1857 wxString
*array
= 0;
1861 array
= new wxString
[m_nCount
];
1862 for( size_t i
= 0; i
< m_nCount
; i
++ )
1863 array
[i
] = m_pItems
[i
];
1869 // searches the array for an item (forward or backwards)
1870 int wxArrayString::Index(const wxChar
*sz
, bool bCase
, bool bFromEnd
) const
1873 // use binary search in the sorted array
1874 wxASSERT_MSG( bCase
&& !bFromEnd
,
1875 wxT("search parameters ignored for auto sorted array") );
1884 res
= wxStrcmp(sz
, m_pItems
[i
]);
1896 // use linear search in unsorted array
1898 if ( m_nCount
> 0 ) {
1899 size_t ui
= m_nCount
;
1901 if ( STRING(m_pItems
[--ui
])->IsSameAs(sz
, bCase
) )
1908 for( size_t ui
= 0; ui
< m_nCount
; ui
++ ) {
1909 if( STRING(m_pItems
[ui
])->IsSameAs(sz
, bCase
) )
1918 // add item at the end
1919 size_t wxArrayString::Add(const wxString
& str
, size_t nInsert
)
1922 // insert the string at the correct position to keep the array sorted
1930 res
= wxStrcmp(str
, m_pItems
[i
]);
1941 wxASSERT_MSG( lo
== hi
, wxT("binary search broken") );
1943 Insert(str
, lo
, nInsert
);
1948 wxASSERT( str
.GetStringData()->IsValid() );
1952 for (size_t i
= 0; i
< nInsert
; i
++)
1954 // the string data must not be deleted!
1955 str
.GetStringData()->Lock();
1958 m_pItems
[m_nCount
+ i
] = (wxChar
*)str
.c_str(); // const_cast
1960 size_t ret
= m_nCount
;
1961 m_nCount
+= nInsert
;
1966 // add item at the given position
1967 void wxArrayString::Insert(const wxString
& str
, size_t nIndex
, size_t nInsert
)
1969 wxASSERT( str
.GetStringData()->IsValid() );
1971 wxCHECK_RET( nIndex
<= m_nCount
, wxT("bad index in wxArrayString::Insert") );
1972 wxCHECK_RET( m_nCount
<= m_nCount
+ nInsert
,
1973 wxT("array size overflow in wxArrayString::Insert") );
1977 memmove(&m_pItems
[nIndex
+ nInsert
], &m_pItems
[nIndex
],
1978 (m_nCount
- nIndex
)*sizeof(wxChar
*));
1980 for (size_t i
= 0; i
< nInsert
; i
++)
1982 str
.GetStringData()->Lock();
1983 m_pItems
[nIndex
+ i
] = (wxChar
*)str
.c_str();
1985 m_nCount
+= nInsert
;
1989 void wxArrayString::SetCount(size_t count
)
1994 while ( m_nCount
< count
)
1995 m_pItems
[m_nCount
++] = (wxChar
*)s
.c_str();
1998 // removes item from array (by index)
1999 void wxArrayString::Remove(size_t nIndex
, size_t nRemove
)
2001 wxCHECK_RET( nIndex
< m_nCount
, wxT("bad index in wxArrayString::Remove") );
2002 wxCHECK_RET( nIndex
+ nRemove
<= m_nCount
,
2003 wxT("removing too many elements in wxArrayString::Remove") );
2006 for (size_t i
= 0; i
< nRemove
; i
++)
2007 Item(nIndex
+ i
).GetStringData()->Unlock();
2009 memmove(&m_pItems
[nIndex
], &m_pItems
[nIndex
+ nRemove
],
2010 (m_nCount
- nIndex
- nRemove
)*sizeof(wxChar
*));
2011 m_nCount
-= nRemove
;
2014 // removes item from array (by value)
2015 void wxArrayString::Remove(const wxChar
*sz
)
2017 int iIndex
= Index(sz
);
2019 wxCHECK_RET( iIndex
!= wxNOT_FOUND
,
2020 wxT("removing inexistent element in wxArrayString::Remove") );
2025 // ----------------------------------------------------------------------------
2027 // ----------------------------------------------------------------------------
2029 // we can only sort one array at a time with the quick-sort based
2032 // need a critical section to protect access to gs_compareFunction and
2033 // gs_sortAscending variables
2034 static wxCriticalSection
*gs_critsectStringSort
= NULL
;
2036 // call this before the value of the global sort vars is changed/after
2037 // you're finished with them
2038 #define START_SORT() wxASSERT( !gs_critsectStringSort ); \
2039 gs_critsectStringSort = new wxCriticalSection; \
2040 gs_critsectStringSort->Enter()
2041 #define END_SORT() gs_critsectStringSort->Leave(); \
2042 delete gs_critsectStringSort; \
2043 gs_critsectStringSort = NULL
2045 #define START_SORT()
2047 #endif // wxUSE_THREADS
2049 // function to use for string comparaison
2050 static wxArrayString::CompareFunction gs_compareFunction
= NULL
;
2052 // if we don't use the compare function, this flag tells us if we sort the
2053 // array in ascending or descending order
2054 static bool gs_sortAscending
= TRUE
;
2056 // function which is called by quick sort
2057 extern "C" int LINKAGEMODE
2058 wxStringCompareFunction(const void *first
, const void *second
)
2060 wxString
*strFirst
= (wxString
*)first
;
2061 wxString
*strSecond
= (wxString
*)second
;
2063 if ( gs_compareFunction
) {
2064 return gs_compareFunction(*strFirst
, *strSecond
);
2067 // maybe we should use wxStrcoll
2068 int result
= wxStrcmp(strFirst
->c_str(), strSecond
->c_str());
2070 return gs_sortAscending
? result
: -result
;
2074 // sort array elements using passed comparaison function
2075 void wxArrayString::Sort(CompareFunction compareFunction
)
2079 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2080 gs_compareFunction
= compareFunction
;
2084 // reset it to NULL so that Sort(bool) will work the next time
2085 gs_compareFunction
= NULL
;
2090 void wxArrayString::Sort(bool reverseOrder
)
2094 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2095 gs_sortAscending
= !reverseOrder
;
2102 void wxArrayString::DoSort()
2104 wxCHECK_RET( !m_autoSort
, wxT("can't use this method with sorted arrays") );
2106 // just sort the pointers using qsort() - of course it only works because
2107 // wxString() *is* a pointer to its data
2108 qsort(m_pItems
, m_nCount
, sizeof(wxChar
*), wxStringCompareFunction
);
2111 bool wxArrayString::operator==(const wxArrayString
& a
) const
2113 if ( m_nCount
!= a
.m_nCount
)
2116 for ( size_t n
= 0; n
< m_nCount
; n
++ )
2118 if ( Item(n
) != a
[n
] )