1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/string.cpp
3 // Purpose: wxString class
4 // Author: Vadim Zeitlin, Ryan Norton
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // (c) 2004 Ryan Norton <wxprojects@comcast.net>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
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
20 // ===========================================================================
21 // headers, declarations, constants
22 // ===========================================================================
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/string.h"
34 #include "wx/thread.h"
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)
55 // ---------------------------------------------------------------------------
56 // static class variables definition
57 // ---------------------------------------------------------------------------
59 #if !wxUSE_STL_BASED_WXSTRING
60 //According to STL _must_ be a -1 size_t
61 const size_t wxStringBase::npos
= (size_t) -1;
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 #if wxUSE_STL_BASED_WXSTRING
70 extern const wxChar WXDLLIMPEXP_BASE
*wxEmptyString
= _T("");
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)
81 } g_strEmpty
= { {-1, 0, 0}, wxT('\0') };
83 // empty C style string: points to 'string data' byte of g_strEmpty
84 extern const wxChar WXDLLIMPEXP_BASE
*wxEmptyString
= &g_strEmpty
.dummy
;
88 // ----------------------------------------------------------------------------
90 // ----------------------------------------------------------------------------
92 #if wxUSE_STD_IOSTREAM
96 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxString
& str
)
98 return os
<< str
.c_str();
101 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxCStrData
& str
)
103 #if wxUSE_UNICODE && !defined(__BORLANDC__)
104 return os
<< str
.AsWChar();
106 return os
<< str
.AsChar();
110 #endif // wxUSE_STD_IOSTREAM
112 // ----------------------------------------------------------------------------
114 // ----------------------------------------------------------------------------
116 // this small class is used to gather statistics for performance tuning
117 //#define WXSTRING_STATISTICS
118 #ifdef WXSTRING_STATISTICS
122 Averager(const wxChar
*sz
) { m_sz
= sz
; m_nTotal
= m_nCount
= 0; }
124 { wxPrintf("wxString: average %s = %f\n", m_sz
, ((float)m_nTotal
)/m_nCount
); }
126 void Add(size_t n
) { m_nTotal
+= n
; m_nCount
++; }
129 size_t m_nCount
, m_nTotal
;
131 } g_averageLength("allocation size"),
132 g_averageSummandLength("summand length"),
133 g_averageConcatHit("hit probability in concat"),
134 g_averageInitialLength("initial string length");
136 #define STATISTICS_ADD(av, val) g_average##av.Add(val)
138 #define STATISTICS_ADD(av, val)
139 #endif // WXSTRING_STATISTICS
141 #if !wxUSE_STL_BASED_WXSTRING
143 // ===========================================================================
144 // wxStringData class deallocation
145 // ===========================================================================
147 #if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
148 # pragma message (__FILE__ ": building with Multithreaded non DLL runtime has a performance impact on wxString!")
149 void wxStringData::Free()
155 // ===========================================================================
157 // ===========================================================================
159 // takes nLength elements of psz starting at nPos
160 void wxStringBase::InitWith(const wxChar
*psz
, size_t nPos
, size_t nLength
)
164 // if the length is not given, assume the string to be NUL terminated
165 if ( nLength
== npos
) {
166 wxASSERT_MSG( nPos
<= wxStrlen(psz
), _T("index out of bounds") );
168 nLength
= wxStrlen(psz
+ nPos
);
171 STATISTICS_ADD(InitialLength
, nLength
);
174 // trailing '\0' is written in AllocBuffer()
175 if ( !AllocBuffer(nLength
) ) {
176 wxFAIL_MSG( _T("out of memory in wxStringBase::InitWith") );
179 wxTmemcpy(m_pchData
, psz
+ nPos
, nLength
);
183 // poor man's iterators are "void *" pointers
184 wxStringBase::wxStringBase(const void *pStart
, const void *pEnd
)
186 if ( pEnd
>= pStart
)
188 InitWith((const wxChar
*)pStart
, 0,
189 (const wxChar
*)pEnd
- (const wxChar
*)pStart
);
193 wxFAIL_MSG( _T("pStart is not before pEnd") );
198 wxStringBase::wxStringBase(size_type n
, wxUniChar ch
)
204 // ---------------------------------------------------------------------------
206 // ---------------------------------------------------------------------------
208 // allocates memory needed to store a C string of length nLen
209 bool wxStringBase::AllocBuffer(size_t nLen
)
211 // allocating 0 sized buffer doesn't make sense, all empty strings should
213 wxASSERT( nLen
> 0 );
215 // make sure that we don't overflow
216 wxASSERT( nLen
< (INT_MAX
/ sizeof(wxChar
)) -
217 (sizeof(wxStringData
) + EXTRA_ALLOC
+ 1) );
219 STATISTICS_ADD(Length
, nLen
);
222 // 1) one extra character for '\0' termination
223 // 2) sizeof(wxStringData) for housekeeping info
224 wxStringData
* pData
= (wxStringData
*)
225 malloc(sizeof(wxStringData
) + (nLen
+ EXTRA_ALLOC
+ 1)*sizeof(wxChar
));
227 if ( pData
== NULL
) {
228 // allocation failures are handled by the caller
233 pData
->nDataLength
= nLen
;
234 pData
->nAllocLength
= nLen
+ EXTRA_ALLOC
;
235 m_pchData
= pData
->data(); // data starts after wxStringData
236 m_pchData
[nLen
] = wxT('\0');
240 // must be called before changing this string
241 bool wxStringBase::CopyBeforeWrite()
243 wxStringData
* pData
= GetStringData();
245 if ( pData
->IsShared() ) {
246 pData
->Unlock(); // memory not freed because shared
247 size_t nLen
= pData
->nDataLength
;
248 if ( !AllocBuffer(nLen
) ) {
249 // allocation failures are handled by the caller
252 wxTmemcpy(m_pchData
, pData
->data(), nLen
);
255 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
260 // must be called before replacing contents of this string
261 bool wxStringBase::AllocBeforeWrite(size_t nLen
)
263 wxASSERT( nLen
!= 0 ); // doesn't make any sense
265 // must not share string and must have enough space
266 wxStringData
* pData
= GetStringData();
267 if ( pData
->IsShared() || pData
->IsEmpty() ) {
268 // can't work with old buffer, get new one
270 if ( !AllocBuffer(nLen
) ) {
271 // allocation failures are handled by the caller
276 if ( nLen
> pData
->nAllocLength
) {
277 // realloc the buffer instead of calling malloc() again, this is more
279 STATISTICS_ADD(Length
, nLen
);
283 pData
= (wxStringData
*)
284 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
286 if ( pData
== NULL
) {
287 // allocation failures are handled by the caller
288 // keep previous data since reallocation failed
292 pData
->nAllocLength
= nLen
;
293 m_pchData
= pData
->data();
297 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
299 // it doesn't really matter what the string length is as it's going to be
300 // overwritten later but, for extra safety, set it to 0 for now as we may
301 // have some junk in m_pchData
302 GetStringData()->nDataLength
= 0;
307 wxStringBase
& wxStringBase::append(size_t n
, wxUniChar ch
)
309 size_type len
= length();
311 if ( !Alloc(len
+ n
) || !CopyBeforeWrite() ) {
312 wxFAIL_MSG( _T("out of memory in wxStringBase::append") );
314 GetStringData()->nDataLength
= len
+ n
;
315 m_pchData
[len
+ n
] = '\0';
316 for ( size_t i
= 0; i
< n
; ++i
)
317 m_pchData
[len
+ i
] = ch
;
321 void wxStringBase::resize(size_t nSize
, wxUniChar ch
)
323 size_t len
= length();
327 erase(begin() + nSize
, end());
329 else if ( nSize
> len
)
331 append(nSize
- len
, ch
);
333 //else: we have exactly the specified length, nothing to do
336 // allocate enough memory for nLen characters
337 bool wxStringBase::Alloc(size_t nLen
)
339 wxStringData
*pData
= GetStringData();
340 if ( pData
->nAllocLength
<= nLen
) {
341 if ( pData
->IsEmpty() ) {
344 pData
= (wxStringData
*)
345 malloc(sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
347 if ( pData
== NULL
) {
348 // allocation failure handled by caller
353 pData
->nDataLength
= 0;
354 pData
->nAllocLength
= nLen
;
355 m_pchData
= pData
->data(); // data starts after wxStringData
356 m_pchData
[0u] = wxT('\0');
358 else if ( pData
->IsShared() ) {
359 pData
->Unlock(); // memory not freed because shared
360 size_t nOldLen
= pData
->nDataLength
;
361 if ( !AllocBuffer(nLen
) ) {
362 // allocation failure handled by caller
365 // +1 to copy the terminator, too
366 memcpy(m_pchData
, pData
->data(), (nOldLen
+1)*sizeof(wxChar
));
367 GetStringData()->nDataLength
= nOldLen
;
372 pData
= (wxStringData
*)
373 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
375 if ( pData
== NULL
) {
376 // allocation failure handled by caller
377 // keep previous data since reallocation failed
381 // it's not important if the pointer changed or not (the check for this
382 // is not faster than assigning to m_pchData in all cases)
383 pData
->nAllocLength
= nLen
;
384 m_pchData
= pData
->data();
387 //else: we've already got enough
391 wxStringBase::iterator
wxStringBase::begin()
398 wxStringBase::iterator
wxStringBase::end()
402 return m_pchData
+ length();
405 wxStringBase::iterator
wxStringBase::erase(iterator it
)
407 size_type idx
= it
- begin();
409 return begin() + idx
;
412 wxStringBase
& wxStringBase::erase(size_t nStart
, size_t nLen
)
414 wxASSERT(nStart
<= length());
415 size_t strLen
= length() - nStart
;
416 // delete nLen or up to the end of the string characters
417 nLen
= strLen
< nLen
? strLen
: nLen
;
418 wxString
strTmp(c_str(), nStart
);
419 strTmp
.append(c_str() + nStart
+ nLen
, length() - nStart
- nLen
);
425 wxStringBase
& wxStringBase::insert(size_t nPos
, const wxChar
*sz
, size_t n
)
427 wxASSERT( nPos
<= length() );
429 if ( n
== npos
) n
= wxStrlen(sz
);
430 if ( n
== 0 ) return *this;
432 if ( !Alloc(length() + n
) || !CopyBeforeWrite() ) {
433 wxFAIL_MSG( _T("out of memory in wxStringBase::insert") );
436 memmove(m_pchData
+ nPos
+ n
, m_pchData
+ nPos
,
437 (length() - nPos
) * sizeof(wxChar
));
438 memcpy(m_pchData
+ nPos
, sz
, n
* sizeof(wxChar
));
439 GetStringData()->nDataLength
= length() + n
;
440 m_pchData
[length()] = '\0';
445 void wxStringBase::swap(wxStringBase
& str
)
447 wxChar
* tmp
= str
.m_pchData
;
448 str
.m_pchData
= m_pchData
;
452 size_t wxStringBase::find(const wxStringBase
& str
, size_t nStart
) const
454 // deal with the special case of empty string first
455 const size_t nLen
= length();
456 const size_t nLenOther
= str
.length();
460 // empty string is a substring of anything
466 // the other string is non empty so can't be our substring
470 wxASSERT( str
.GetStringData()->IsValid() );
471 wxASSERT( nStart
<= nLen
);
473 const wxChar
* const other
= str
.c_str();
476 const wxChar
* p
= (const wxChar
*)wxTmemchr(c_str() + nStart
,
483 while ( p
- c_str() + nLenOther
<= nLen
&& wxTmemcmp(p
, other
, nLenOther
) )
488 p
= (const wxChar
*)wxTmemchr(p
, *other
, nLen
- (p
- c_str()));
494 return p
- c_str() + nLenOther
<= nLen
? p
- c_str() : npos
;
497 size_t wxStringBase::find(const wxChar
* sz
, size_t nStart
, size_t n
) const
499 return find(wxStringBase(sz
, n
), nStart
);
502 size_t wxStringBase::find(wxUniChar ch
, size_t nStart
) const
504 wxASSERT( nStart
<= length() );
506 const wxChar
*p
= (const wxChar
*)wxTmemchr(c_str() + nStart
, ch
, length() - nStart
);
508 return p
== NULL
? npos
: p
- c_str();
511 size_t wxStringBase::rfind(const wxStringBase
& str
, size_t nStart
) const
513 wxASSERT( str
.GetStringData()->IsValid() );
514 wxASSERT( nStart
== npos
|| nStart
<= length() );
516 if ( length() >= str
.length() )
518 // avoids a corner case later
519 if ( length() == 0 && str
.length() == 0 )
522 // "top" is the point where search starts from
523 size_t top
= length() - str
.length();
525 if ( nStart
== npos
)
526 nStart
= length() - 1;
530 const wxChar
*cursor
= c_str() + top
;
533 if ( wxTmemcmp(cursor
, str
.c_str(),
536 return cursor
- c_str();
538 } while ( cursor
-- > c_str() );
544 size_t wxStringBase::rfind(const wxChar
* sz
, size_t nStart
, size_t n
) const
546 return rfind(wxStringBase(sz
, n
), nStart
);
549 size_t wxStringBase::rfind(wxUniChar ch
, size_t nStart
) const
551 if ( nStart
== npos
)
557 wxASSERT( nStart
<= length() );
560 const wxChar
*actual
;
561 for ( actual
= c_str() + ( nStart
== npos
? length() : nStart
+ 1 );
562 actual
> c_str(); --actual
)
564 if ( *(actual
- 1) == ch
)
565 return (actual
- 1) - c_str();
571 size_t wxStringBase::find_first_of(const wxChar
* sz
, size_t nStart
) const
573 wxASSERT(nStart
<= length());
575 size_t len
= wxStrlen(sz
);
578 for(i
= nStart
; i
< this->length(); ++i
)
580 if (wxTmemchr(sz
, *(c_str() + i
), len
))
584 if(i
== this->length())
590 size_t wxStringBase::find_first_of(const wxChar
* sz
, size_t nStart
,
593 return find_first_of(wxStringBase(sz
, n
), nStart
);
596 size_t wxStringBase::find_last_of(const wxChar
* sz
, size_t nStart
) const
598 if ( nStart
== npos
)
600 nStart
= length() - 1;
604 wxASSERT_MSG( nStart
<= length(),
605 _T("invalid index in find_last_of()") );
608 size_t len
= wxStrlen(sz
);
610 for ( const wxChar
*p
= c_str() + nStart
; p
>= c_str(); --p
)
612 if ( wxTmemchr(sz
, *p
, len
) )
619 size_t wxStringBase::find_last_of(const wxChar
* sz
, size_t nStart
,
622 return find_last_of(wxStringBase(sz
, n
), nStart
);
625 size_t wxStringBase::find_first_not_of(const wxChar
* sz
, size_t nStart
) const
627 if ( nStart
== npos
)
633 wxASSERT( nStart
<= length() );
636 size_t len
= wxStrlen(sz
);
639 for(i
= nStart
; i
< this->length(); ++i
)
641 if (!wxTmemchr(sz
, *(c_str() + i
), len
))
645 if(i
== this->length())
651 size_t wxStringBase::find_first_not_of(const wxChar
* sz
, size_t nStart
,
654 return find_first_not_of(wxStringBase(sz
, n
), nStart
);
657 size_t wxStringBase::find_first_not_of(wxUniChar ch
, size_t nStart
) const
659 wxASSERT( nStart
<= length() );
661 for ( const_iterator p
= begin() + nStart
; (bool)*p
; ++p
) // FIXME-DMARS
670 size_t wxStringBase::find_last_not_of(const wxChar
* sz
, size_t nStart
) const
672 if ( nStart
== npos
)
674 nStart
= length() - 1;
678 wxASSERT( nStart
<= length() );
681 size_t len
= wxStrlen(sz
);
683 for ( const wxChar
*p
= c_str() + nStart
; p
>= c_str(); --p
)
685 if ( !wxTmemchr(sz
, *p
,len
) )
692 size_t wxStringBase::find_last_not_of(const wxChar
* sz
, size_t nStart
,
695 return find_last_not_of(wxStringBase(sz
, n
), nStart
);
698 size_t wxStringBase::find_last_not_of(wxUniChar ch
, size_t nStart
) const
700 if ( nStart
== npos
)
702 nStart
= length() - 1;
706 wxASSERT( nStart
<= length() );
709 for ( const_iterator p
= begin() + nStart
; p
!= begin(); --p
)
718 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
721 wxASSERT_MSG( nStart
<= length(),
722 _T("index out of bounds in wxStringBase::replace") );
723 size_t strLen
= length() - nStart
;
724 nLen
= strLen
< nLen
? strLen
: nLen
;
727 strTmp
.reserve(length()); // micro optimisation to avoid multiple mem allocs
729 //This is kind of inefficient, but its pretty good considering...
730 //we don't want to use character access operators here because on STL
731 //it will freeze the reference count of strTmp, which means a deep copy
732 //at the end when swap is called
734 //Also, we can't use append with the full character pointer and must
735 //do it manually because this string can contain null characters
736 for(size_t i1
= 0; i1
< nStart
; ++i1
)
737 strTmp
.append(1, this->c_str()[i1
]);
739 //its safe to do the full version here because
740 //sz must be a normal c string
743 for(size_t i2
= nStart
+ nLen
; i2
< length(); ++i2
)
744 strTmp
.append(1, this->c_str()[i2
]);
750 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
751 size_t nCount
, wxUniChar ch
)
753 return replace(nStart
, nLen
, wxStringBase(nCount
, ch
).c_str());
756 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
757 const wxStringBase
& str
,
758 size_t nStart2
, size_t nLen2
)
760 return replace(nStart
, nLen
, str
.substr(nStart2
, nLen2
));
763 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
764 const wxChar
* sz
, size_t nCount
)
766 return replace(nStart
, nLen
, wxStringBase(sz
, nCount
).c_str());
769 wxStringBase
wxStringBase::substr(size_t nStart
, size_t nLen
) const
772 nLen
= length() - nStart
;
773 return wxStringBase(*this, nStart
, nLen
);
776 // assigns one string to another
777 wxStringBase
& wxStringBase::operator=(const wxStringBase
& stringSrc
)
779 wxASSERT( stringSrc
.GetStringData()->IsValid() );
781 // don't copy string over itself
782 if ( m_pchData
!= stringSrc
.m_pchData
) {
783 if ( stringSrc
.GetStringData()->IsEmpty() ) {
788 GetStringData()->Unlock();
789 m_pchData
= stringSrc
.m_pchData
;
790 GetStringData()->Lock();
797 // assigns a single character
798 wxStringBase
& wxStringBase::operator=(wxUniChar ch
)
801 if ( !AssignCopy(1, &c
) ) {
802 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(wxChar)") );
808 wxStringBase
& wxStringBase::operator=(const wxChar
*psz
)
810 if ( !AssignCopy(wxStrlen(psz
), psz
) ) {
811 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(const wxChar *)") );
816 // helper function: does real copy
817 bool wxStringBase::AssignCopy(size_t nSrcLen
, const wxChar
*pszSrcData
)
819 if ( nSrcLen
== 0 ) {
823 if ( !AllocBeforeWrite(nSrcLen
) ) {
824 // allocation failure handled by caller
827 memcpy(m_pchData
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
828 GetStringData()->nDataLength
= nSrcLen
;
829 m_pchData
[nSrcLen
] = wxT('\0');
834 // ---------------------------------------------------------------------------
835 // string concatenation
836 // ---------------------------------------------------------------------------
838 // add something to this string
839 bool wxStringBase::ConcatSelf(size_t nSrcLen
, const wxChar
*pszSrcData
,
842 STATISTICS_ADD(SummandLength
, nSrcLen
);
844 nSrcLen
= nSrcLen
< nMaxLen
? nSrcLen
: nMaxLen
;
846 // concatenating an empty string is a NOP
848 wxStringData
*pData
= GetStringData();
849 size_t nLen
= pData
->nDataLength
;
850 size_t nNewLen
= nLen
+ nSrcLen
;
852 // alloc new buffer if current is too small
853 if ( pData
->IsShared() ) {
854 STATISTICS_ADD(ConcatHit
, 0);
856 // we have to allocate another buffer
857 wxStringData
* pOldData
= GetStringData();
858 if ( !AllocBuffer(nNewLen
) ) {
859 // allocation failure handled by caller
862 memcpy(m_pchData
, pOldData
->data(), nLen
*sizeof(wxChar
));
865 else if ( nNewLen
> pData
->nAllocLength
) {
866 STATISTICS_ADD(ConcatHit
, 0);
869 // we have to grow the buffer
870 if ( capacity() < nNewLen
) {
871 // allocation failure handled by caller
876 STATISTICS_ADD(ConcatHit
, 1);
878 // the buffer is already big enough
881 // should be enough space
882 wxASSERT( nNewLen
<= GetStringData()->nAllocLength
);
884 // fast concatenation - all is done in our buffer
885 memcpy(m_pchData
+ nLen
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
887 m_pchData
[nNewLen
] = wxT('\0'); // put terminating '\0'
888 GetStringData()->nDataLength
= nNewLen
; // and fix the length
890 //else: the string to append was empty
894 #endif // !wxUSE_STL_BASED_WXSTRING
896 #if !wxUSE_STL_BASED_WXSTRING || !defined(HAVE_STD_STRING_COMPARE)
898 #if !wxUSE_STL_BASED_WXSTRING
899 #define STRINGCLASS wxStringBase
901 #define STRINGCLASS wxString
904 static inline int wxDoCmp(const wxChar
* s1
, size_t l1
,
905 const wxChar
* s2
, size_t l2
)
908 return wxTmemcmp(s1
, s2
, l1
);
911 int ret
= wxTmemcmp(s1
, s2
, l1
);
912 return ret
== 0 ? -1 : ret
;
916 int ret
= wxTmemcmp(s1
, s2
, l2
);
917 return ret
== 0 ? +1 : ret
;
921 int STRINGCLASS::compare(const wxStringBase
& str
) const
923 return ::wxDoCmp(data(), length(), str
.data(), str
.length());
926 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
927 const wxStringBase
& str
) const
929 wxASSERT(nStart
<= length());
930 size_type strLen
= length() - nStart
;
931 nLen
= strLen
< nLen
? strLen
: nLen
;
932 return ::wxDoCmp(data() + nStart
, nLen
, str
.data(), str
.length());
935 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
936 const wxStringBase
& str
,
937 size_t nStart2
, size_t nLen2
) const
939 wxASSERT(nStart
<= length());
940 wxASSERT(nStart2
<= str
.length());
941 size_type strLen
= length() - nStart
,
942 strLen2
= str
.length() - nStart2
;
943 nLen
= strLen
< nLen
? strLen
: nLen
;
944 nLen2
= strLen2
< nLen2
? strLen2
: nLen2
;
945 return ::wxDoCmp(data() + nStart
, nLen
, str
.data() + nStart2
, nLen2
);
948 int STRINGCLASS::compare(const wxChar
* sz
) const
950 size_t nLen
= wxStrlen(sz
);
951 return ::wxDoCmp(data(), length(), sz
, nLen
);
954 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
955 const wxChar
* sz
, size_t nCount
) const
957 wxASSERT(nStart
<= length());
958 size_type strLen
= length() - nStart
;
959 nLen
= strLen
< nLen
? strLen
: nLen
;
961 nCount
= wxStrlen(sz
);
963 return ::wxDoCmp(data() + nStart
, nLen
, sz
, nCount
);
968 #endif // !wxUSE_STL_BASED_WXSTRING || !defined(HAVE_STD_STRING_COMPARE)
970 // ===========================================================================
971 // wxString class core
972 // ===========================================================================
974 // ---------------------------------------------------------------------------
975 // construction and conversion
976 // ---------------------------------------------------------------------------
980 // from multibyte string
981 wxString::wxString(const char *psz
, const wxMBConv
& conv
, size_t nLength
)
984 if ( psz
&& nLength
!= 0 )
986 if ( nLength
== npos
)
992 wxWCharBuffer wbuf
= conv
.cMB2WC(psz
, nLength
, &nLenWide
);
995 assign(wbuf
, nLenWide
);
999 //Convert wxString in Unicode mode to a multi-byte string
1000 const wxCharBuffer
wxString::mb_str(const wxMBConv
& conv
) const
1002 return conv
.cWC2MB(c_str(), length() + 1 /* size, not length */, NULL
);
1010 wxString::wxString(const wchar_t *pwz
, const wxMBConv
& conv
, size_t nLength
)
1013 if ( pwz
&& nLength
!= 0 )
1015 if ( nLength
== npos
)
1021 wxCharBuffer buf
= conv
.cWC2MB(pwz
, nLength
, &nLenMB
);
1024 assign(buf
, nLenMB
);
1028 //Converts this string to a wide character string if unicode
1029 //mode is not enabled and wxUSE_WCHAR_T is enabled
1030 const wxWCharBuffer
wxString::wc_str(const wxMBConv
& conv
) const
1032 return conv
.cMB2WC(c_str(), length() + 1 /* size, not length */, NULL
);
1035 #endif // wxUSE_WCHAR_T
1037 #endif // Unicode/ANSI
1039 // shrink to minimal size (releasing extra memory)
1040 bool wxString::Shrink()
1042 wxString
tmp(begin(), end());
1044 return tmp
.length() == length();
1047 #if !wxUSE_STL_BASED_WXSTRING
1048 // get the pointer to writable buffer of (at least) nLen bytes
1049 wxChar
*wxString::DoGetWriteBuf(size_t nLen
)
1051 if ( !AllocBeforeWrite(nLen
) ) {
1052 // allocation failure handled by caller
1056 wxASSERT( GetStringData()->nRefs
== 1 );
1057 GetStringData()->Validate(false);
1062 // put string back in a reasonable state after GetWriteBuf
1063 void wxString::DoUngetWriteBuf()
1065 DoUngetWriteBuf(wxStrlen(m_pchData
));
1068 void wxString::DoUngetWriteBuf(size_t nLen
)
1070 wxStringData
* const pData
= GetStringData();
1072 wxASSERT_MSG( nLen
< pData
->nAllocLength
, _T("buffer overrun") );
1074 // the strings we store are always NUL-terminated
1075 pData
->data()[nLen
] = _T('\0');
1076 pData
->nDataLength
= nLen
;
1077 pData
->Validate(true);
1080 // deprecated compatibility code:
1081 #if WXWIN_COMPATIBILITY_2_8
1082 wxChar
*wxString::GetWriteBuf(size_t nLen
)
1084 return DoGetWriteBuf(nLen
);
1087 void wxString::UngetWriteBuf()
1092 void wxString::UngetWriteBuf(size_t nLen
)
1094 DoUngetWriteBuf(nLen
);
1096 #endif // WXWIN_COMPATIBILITY_2_8
1098 #endif // !wxUSE_STL_BASED_WXSTRING
1101 // ---------------------------------------------------------------------------
1103 // ---------------------------------------------------------------------------
1105 // all functions are inline in string.h
1107 // ---------------------------------------------------------------------------
1108 // assignment operators
1109 // ---------------------------------------------------------------------------
1113 // same as 'signed char' variant
1114 wxString
& wxString::operator=(const unsigned char* psz
)
1116 *this = (const char *)psz
;
1121 wxString
& wxString::operator=(const wchar_t *pwz
)
1132 * concatenation functions come in 5 flavours:
1134 * char + string and string + char
1135 * C str + string and string + C str
1138 wxString
operator+(const wxString
& str1
, const wxString
& str2
)
1140 #if !wxUSE_STL_BASED_WXSTRING
1141 wxASSERT( str1
.GetStringData()->IsValid() );
1142 wxASSERT( str2
.GetStringData()->IsValid() );
1151 wxString
operator+(const wxString
& str
, wxUniChar ch
)
1153 #if !wxUSE_STL_BASED_WXSTRING
1154 wxASSERT( str
.GetStringData()->IsValid() );
1163 wxString
operator+(wxUniChar ch
, const wxString
& str
)
1165 #if !wxUSE_STL_BASED_WXSTRING
1166 wxASSERT( str
.GetStringData()->IsValid() );
1175 wxString
operator+(const wxString
& str
, const wxChar
*psz
)
1177 #if !wxUSE_STL_BASED_WXSTRING
1178 wxASSERT( str
.GetStringData()->IsValid() );
1182 if ( !s
.Alloc(wxStrlen(psz
) + str
.length()) ) {
1183 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1191 wxString
operator+(const wxChar
*psz
, const wxString
& str
)
1193 #if !wxUSE_STL_BASED_WXSTRING
1194 wxASSERT( str
.GetStringData()->IsValid() );
1198 if ( !s
.Alloc(wxStrlen(psz
) + str
.length()) ) {
1199 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1207 // ===========================================================================
1208 // other common string functions
1209 // ===========================================================================
1211 int wxString::Cmp(const wxString
& s
) const
1216 int wxString::Cmp(const wxChar
* psz
) const
1218 return compare(psz
);
1221 static inline int wxDoCmpNoCase(const wxChar
* s1
, size_t l1
,
1222 const wxChar
* s2
, size_t l2
)
1228 for(i
= 0; i
< l1
; ++i
)
1230 if(wxTolower(s1
[i
]) != wxTolower(s2
[i
]))
1233 return i
== l1
? 0 : wxTolower(s1
[i
]) < wxTolower(s2
[i
]) ? -1 : 1;
1237 for(i
= 0; i
< l1
; ++i
)
1239 if(wxTolower(s1
[i
]) != wxTolower(s2
[i
]))
1242 return i
== l1
? -1 : wxTolower(s1
[i
]) < wxTolower(s2
[i
]) ? -1 : 1;
1246 for(i
= 0; i
< l2
; ++i
)
1248 if(wxTolower(s1
[i
]) != wxTolower(s2
[i
]))
1251 return i
== l2
? 1 : wxTolower(s1
[i
]) < wxTolower(s2
[i
]) ? -1 : 1;
1255 int wxString::CmpNoCase(const wxString
& s
) const
1257 return wxDoCmpNoCase(data(), length(), s
.data(), s
.length());
1260 int wxString::CmpNoCase(const wxChar
* psz
) const
1262 int nLen
= wxStrlen(psz
);
1264 return wxDoCmpNoCase(data(), length(), psz
, nLen
);
1271 #ifndef __SCHAR_MAX__
1272 #define __SCHAR_MAX__ 127
1276 wxString
wxString::FromAscii(const char *ascii
)
1279 return wxEmptyString
;
1281 size_t len
= strlen( ascii
);
1286 wxStringBuffer
buf(res
, len
);
1288 wchar_t *dest
= buf
;
1292 if ( (*dest
++ = (wchar_t)(unsigned char)*ascii
++) == L
'\0' )
1300 wxString
wxString::FromAscii(const char ascii
)
1302 // What do we do with '\0' ?
1305 res
+= (wchar_t)(unsigned char) ascii
;
1310 const wxCharBuffer
wxString::ToAscii() const
1312 // this will allocate enough space for the terminating NUL too
1313 wxCharBuffer
buffer(length());
1316 char *dest
= buffer
.data();
1318 const wchar_t *pwc
= c_str();
1321 *dest
++ = (char)(*pwc
> SCHAR_MAX
? wxT('_') : *pwc
);
1323 // the output string can't have embedded NULs anyhow, so we can safely
1324 // stop at first of them even if we do have any
1334 // extract string of length nCount starting at nFirst
1335 wxString
wxString::Mid(size_t nFirst
, size_t nCount
) const
1337 size_t nLen
= length();
1339 // default value of nCount is npos and means "till the end"
1340 if ( nCount
== npos
)
1342 nCount
= nLen
- nFirst
;
1345 // out-of-bounds requests return sensible things
1346 if ( nFirst
+ nCount
> nLen
)
1348 nCount
= nLen
- nFirst
;
1351 if ( nFirst
> nLen
)
1353 // AllocCopy() will return empty string
1354 return wxEmptyString
;
1357 wxString
dest(*this, nFirst
, nCount
);
1358 if ( dest
.length() != nCount
)
1360 wxFAIL_MSG( _T("out of memory in wxString::Mid") );
1366 // check that the string starts with prefix and return the rest of the string
1367 // in the provided pointer if it is not NULL, otherwise return false
1368 bool wxString::StartsWith(const wxChar
*prefix
, wxString
*rest
) const
1370 wxASSERT_MSG( prefix
, _T("invalid parameter in wxString::StartsWith") );
1372 // first check if the beginning of the string matches the prefix: note
1373 // that we don't have to check that we don't run out of this string as
1374 // when we reach the terminating NUL, either prefix string ends too (and
1375 // then it's ok) or we break out of the loop because there is no match
1376 const wxChar
*p
= c_str();
1379 if ( *prefix
++ != *p
++ )
1388 // put the rest of the string into provided pointer
1396 // check that the string ends with suffix and return the rest of it in the
1397 // provided pointer if it is not NULL, otherwise return false
1398 bool wxString::EndsWith(const wxChar
*suffix
, wxString
*rest
) const
1400 wxASSERT_MSG( suffix
, _T("invalid parameter in wxString::EndssWith") );
1402 int start
= length() - wxStrlen(suffix
);
1403 if ( start
< 0 || wxStrcmp(wx_str() + start
, suffix
) != 0 )
1408 // put the rest of the string into provided pointer
1409 rest
->assign(*this, 0, start
);
1416 // extract nCount last (rightmost) characters
1417 wxString
wxString::Right(size_t nCount
) const
1419 if ( nCount
> length() )
1422 wxString
dest(*this, length() - nCount
, nCount
);
1423 if ( dest
.length() != nCount
) {
1424 wxFAIL_MSG( _T("out of memory in wxString::Right") );
1429 // get all characters after the last occurence of ch
1430 // (returns the whole string if ch not found)
1431 wxString
wxString::AfterLast(wxUniChar ch
) const
1434 int iPos
= Find(ch
, true);
1435 if ( iPos
== wxNOT_FOUND
)
1438 str
= wx_str() + iPos
+ 1;
1443 // extract nCount first (leftmost) characters
1444 wxString
wxString::Left(size_t nCount
) const
1446 if ( nCount
> length() )
1449 wxString
dest(*this, 0, nCount
);
1450 if ( dest
.length() != nCount
) {
1451 wxFAIL_MSG( _T("out of memory in wxString::Left") );
1456 // get all characters before the first occurence of ch
1457 // (returns the whole string if ch not found)
1458 wxString
wxString::BeforeFirst(wxUniChar ch
) const
1460 int iPos
= Find(ch
);
1461 if ( iPos
== wxNOT_FOUND
) iPos
= length();
1462 return wxString(*this, 0, iPos
);
1465 /// get all characters before the last occurence of ch
1466 /// (returns empty string if ch not found)
1467 wxString
wxString::BeforeLast(wxUniChar ch
) const
1470 int iPos
= Find(ch
, true);
1471 if ( iPos
!= wxNOT_FOUND
&& iPos
!= 0 )
1472 str
= wxString(c_str(), iPos
);
1477 /// get all characters after the first occurence of ch
1478 /// (returns empty string if ch not found)
1479 wxString
wxString::AfterFirst(wxUniChar ch
) const
1482 int iPos
= Find(ch
);
1483 if ( iPos
!= wxNOT_FOUND
)
1484 str
= wx_str() + iPos
+ 1;
1489 // replace first (or all) occurences of some substring with another one
1490 size_t wxString::Replace(const wxChar
*szOld
,
1491 const wxChar
*szNew
, bool bReplaceAll
)
1493 // if we tried to replace an empty string we'd enter an infinite loop below
1494 wxCHECK_MSG( szOld
&& *szOld
&& szNew
, 0,
1495 _T("wxString::Replace(): invalid parameter") );
1497 size_t uiCount
= 0; // count of replacements made
1499 size_t uiOldLen
= wxStrlen(szOld
);
1500 size_t uiNewLen
= wxStrlen(szNew
);
1504 while ( this->c_str()[dwPos
] != wxT('\0') )
1506 //DO NOT USE STRSTR HERE
1507 //this string can contain embedded null characters,
1508 //so strstr will function incorrectly
1509 dwPos
= find(szOld
, dwPos
);
1510 if ( dwPos
== npos
)
1511 break; // exit the loop
1514 //replace this occurance of the old string with the new one
1515 replace(dwPos
, uiOldLen
, szNew
, uiNewLen
);
1517 //move up pos past the string that was replaced
1520 //increase replace count
1525 break; // exit the loop
1532 bool wxString::IsAscii() const
1534 const wxChar
*s
= (const wxChar
*) *this;
1536 if(!isascii(*s
)) return(false);
1542 bool wxString::IsWord() const
1544 const wxChar
*s
= (const wxChar
*) *this;
1546 if(!wxIsalpha(*s
)) return(false);
1552 bool wxString::IsNumber() const
1554 const wxChar
*s
= (const wxChar
*) *this;
1556 if ((s
[0] == wxT('-')) || (s
[0] == wxT('+'))) s
++;
1558 if(!wxIsdigit(*s
)) return(false);
1564 wxString
wxString::Strip(stripType w
) const
1567 if ( w
& leading
) s
.Trim(false);
1568 if ( w
& trailing
) s
.Trim(true);
1572 // ---------------------------------------------------------------------------
1574 // ---------------------------------------------------------------------------
1576 wxString
& wxString::MakeUpper()
1578 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1579 *it
= (wxChar
)wxToupper(*it
);
1584 wxString
& wxString::MakeLower()
1586 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1587 *it
= (wxChar
)wxTolower(*it
);
1592 // ---------------------------------------------------------------------------
1593 // trimming and padding
1594 // ---------------------------------------------------------------------------
1596 // some compilers (VC++ 6.0 not to name them) return true for a call to
1597 // isspace('ê') in the C locale which seems to be broken to me, but we have to
1598 // live with this by checking that the character is a 7 bit one - even if this
1599 // may fail to detect some spaces (I don't know if Unicode doesn't have
1600 // space-like symbols somewhere except in the first 128 chars), it is arguably
1601 // still better than trimming away accented letters
1602 inline int wxSafeIsspace(wxChar ch
) { return (ch
< 127) && wxIsspace(ch
); }
1604 // trims spaces (in the sense of isspace) from left or right side
1605 wxString
& wxString::Trim(bool bFromRight
)
1607 // first check if we're going to modify the string at all
1610 (bFromRight
&& wxSafeIsspace(GetChar(length() - 1))) ||
1611 (!bFromRight
&& wxSafeIsspace(GetChar(0u)))
1617 // find last non-space character
1618 reverse_iterator psz
= rbegin();
1619 while ( (psz
!= rend()) && wxSafeIsspace(*psz
) )
1622 // truncate at trailing space start
1623 erase(psz
.base(), end());
1627 // find first non-space character
1628 iterator psz
= begin();
1629 while ( (psz
!= end()) && wxSafeIsspace(*psz
) )
1632 // fix up data and length
1633 erase(begin(), psz
);
1640 // adds nCount characters chPad to the string from either side
1641 wxString
& wxString::Pad(size_t nCount
, wxUniChar chPad
, bool bFromRight
)
1643 wxString
s(chPad
, nCount
);
1656 // truncate the string
1657 wxString
& wxString::Truncate(size_t uiLen
)
1659 if ( uiLen
< length() )
1661 erase(begin() + uiLen
, end());
1663 //else: nothing to do, string is already short enough
1668 // ---------------------------------------------------------------------------
1669 // finding (return wxNOT_FOUND if not found and index otherwise)
1670 // ---------------------------------------------------------------------------
1673 int wxString::Find(wxUniChar ch
, bool bFromEnd
) const
1675 size_type idx
= bFromEnd
? find_last_of(ch
) : find_first_of(ch
);
1677 return (idx
== npos
) ? wxNOT_FOUND
: (int)idx
;
1680 // find a sub-string (like strstr)
1681 int wxString::Find(const wxChar
*pszSub
) const
1683 size_type idx
= find(pszSub
);
1685 return (idx
== npos
) ? wxNOT_FOUND
: (int)idx
;
1688 // ----------------------------------------------------------------------------
1689 // conversion to numbers
1690 // ----------------------------------------------------------------------------
1692 // the implementation of all the functions below is exactly the same so factor
1695 template <typename T
, typename F
>
1696 bool wxStringToIntType(const wxChar
*start
,
1701 wxCHECK_MSG( val
, false, _T("NULL output pointer") );
1702 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1709 *val
= (*func
)(start
, &end
, base
);
1711 // return true only if scan was stopped by the terminating NUL and if the
1712 // string was not empty to start with and no under/overflow occurred
1713 return !*end
&& (end
!= start
)
1715 && (errno
!= ERANGE
)
1720 bool wxString::ToLong(long *val
, int base
) const
1722 return wxStringToIntType((const wxChar
*)c_str(), val
, base
, wxStrtol
);
1725 bool wxString::ToULong(unsigned long *val
, int base
) const
1727 return wxStringToIntType((const wxChar
*)c_str(), val
, base
, wxStrtoul
);
1730 bool wxString::ToLongLong(wxLongLong_t
*val
, int base
) const
1732 #ifdef wxHAS_STRTOLL
1733 return wxStringToIntType((const wxChar
*)c_str(), val
, base
, wxStrtoll
);
1735 // TODO: implement this ourselves
1739 #endif // wxHAS_STRTOLL
1742 bool wxString::ToULongLong(wxULongLong_t
*val
, int base
) const
1744 #ifdef wxHAS_STRTOLL
1745 return wxStringToIntType((const wxChar
*)c_str(), val
, base
, wxStrtoull
);
1747 // TODO: implement this ourselves
1754 bool wxString::ToDouble(double *val
) const
1756 wxCHECK_MSG( val
, false, _T("NULL pointer in wxString::ToDouble") );
1762 const wxChar
*start
= c_str();
1764 *val
= wxStrtod(start
, &end
);
1766 // return true only if scan was stopped by the terminating NUL and if the
1767 // string was not empty to start with and no under/overflow occurred
1768 return !*end
&& (end
!= start
)
1770 && (errno
!= ERANGE
)
1775 // ---------------------------------------------------------------------------
1777 // ---------------------------------------------------------------------------
1780 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
1781 wxString
wxStringPrintfMixinBase::DoFormat(const wxChar
*format
, ...)
1783 wxString
wxString::DoFormat(const wxChar
*format
, ...)
1787 va_start(argptr
, format
);
1790 s
.PrintfV(format
, argptr
);
1798 wxString
wxString::FormatV(const wxString
& format
, va_list argptr
)
1801 s
.PrintfV(format
, argptr
);
1805 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
1806 int wxStringPrintfMixinBase::DoPrintf(const wxChar
*format
, ...)
1808 int wxString::DoPrintf(const wxChar
*format
, ...)
1812 va_start(argptr
, format
);
1814 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
1815 // get a pointer to the wxString instance; we have to use dynamic_cast<>
1816 // because it's the only cast that works safely for downcasting when
1817 // multiple inheritance is used:
1818 wxString
*str
= static_cast<wxString
*>(this);
1820 wxString
*str
= this;
1823 int iLen
= str
->PrintfV(format
, argptr
);
1830 int wxString::PrintfV(const wxString
& format
, va_list argptr
)
1836 wxStringBuffer
tmp(*this, size
+ 1);
1845 // wxVsnprintf() may modify the original arg pointer, so pass it
1848 wxVaCopy(argptrcopy
, argptr
);
1849 int len
= wxVsnprintf(buf
, size
, format
, argptrcopy
);
1852 // some implementations of vsnprintf() don't NUL terminate
1853 // the string if there is not enough space for it so
1854 // always do it manually
1855 buf
[size
] = _T('\0');
1857 // vsnprintf() may return either -1 (traditional Unix behaviour) or the
1858 // total number of characters which would have been written if the
1859 // buffer were large enough (newer standards such as Unix98)
1862 #if wxUSE_WXVSNPRINTF
1863 // we know that our own implementation of wxVsnprintf() returns -1
1864 // only for a format error - thus there's something wrong with
1865 // the user's format string
1867 #else // assume that system version only returns error if not enough space
1868 // still not enough, as we don't know how much we need, double the
1869 // current size of the buffer
1871 #endif // wxUSE_WXVSNPRINTF/!wxUSE_WXVSNPRINTF
1873 else if ( len
>= size
)
1875 #if wxUSE_WXVSNPRINTF
1876 // we know that our own implementation of wxVsnprintf() returns
1877 // size+1 when there's not enough space but that's not the size
1878 // of the required buffer!
1879 size
*= 2; // so we just double the current size of the buffer
1881 // some vsnprintf() implementations NUL-terminate the buffer and
1882 // some don't in len == size case, to be safe always add 1
1886 else // ok, there was enough space
1892 // we could have overshot
1898 // ----------------------------------------------------------------------------
1899 // misc other operations
1900 // ----------------------------------------------------------------------------
1902 // returns true if the string matches the pattern which may contain '*' and
1903 // '?' metacharacters (as usual, '?' matches any character and '*' any number
1905 bool wxString::Matches(const wxChar
*pszMask
) const
1907 // I disable this code as it doesn't seem to be faster (in fact, it seems
1908 // to be much slower) than the old, hand-written code below and using it
1909 // here requires always linking with libregex even if the user code doesn't
1911 #if 0 // wxUSE_REGEX
1912 // first translate the shell-like mask into a regex
1914 pattern
.reserve(wxStrlen(pszMask
));
1926 pattern
+= _T(".*");
1937 // these characters are special in a RE, quote them
1938 // (however note that we don't quote '[' and ']' to allow
1939 // using them for Unix shell like matching)
1940 pattern
+= _T('\\');
1944 pattern
+= *pszMask
;
1952 return wxRegEx(pattern
, wxRE_NOSUB
| wxRE_EXTENDED
).Matches(c_str());
1953 #else // !wxUSE_REGEX
1954 // TODO: this is, of course, awfully inefficient...
1956 // the char currently being checked
1957 const wxChar
*pszTxt
= c_str();
1959 // the last location where '*' matched
1960 const wxChar
*pszLastStarInText
= NULL
;
1961 const wxChar
*pszLastStarInMask
= NULL
;
1964 for ( ; *pszMask
!= wxT('\0'); pszMask
++, pszTxt
++ ) {
1965 switch ( *pszMask
) {
1967 if ( *pszTxt
== wxT('\0') )
1970 // pszTxt and pszMask will be incremented in the loop statement
1976 // remember where we started to be able to backtrack later
1977 pszLastStarInText
= pszTxt
;
1978 pszLastStarInMask
= pszMask
;
1980 // ignore special chars immediately following this one
1981 // (should this be an error?)
1982 while ( *pszMask
== wxT('*') || *pszMask
== wxT('?') )
1985 // if there is nothing more, match
1986 if ( *pszMask
== wxT('\0') )
1989 // are there any other metacharacters in the mask?
1991 const wxChar
*pEndMask
= wxStrpbrk(pszMask
, wxT("*?"));
1993 if ( pEndMask
!= NULL
) {
1994 // we have to match the string between two metachars
1995 uiLenMask
= pEndMask
- pszMask
;
1998 // we have to match the remainder of the string
1999 uiLenMask
= wxStrlen(pszMask
);
2002 wxString
strToMatch(pszMask
, uiLenMask
);
2003 const wxChar
* pMatch
= wxStrstr(pszTxt
, strToMatch
);
2004 if ( pMatch
== NULL
)
2007 // -1 to compensate "++" in the loop
2008 pszTxt
= pMatch
+ uiLenMask
- 1;
2009 pszMask
+= uiLenMask
- 1;
2014 if ( *pszMask
!= *pszTxt
)
2020 // match only if nothing left
2021 if ( *pszTxt
== wxT('\0') )
2024 // if we failed to match, backtrack if we can
2025 if ( pszLastStarInText
) {
2026 pszTxt
= pszLastStarInText
+ 1;
2027 pszMask
= pszLastStarInMask
;
2029 pszLastStarInText
= NULL
;
2031 // don't bother resetting pszLastStarInMask, it's unnecessary
2037 #endif // wxUSE_REGEX/!wxUSE_REGEX
2040 // Count the number of chars
2041 int wxString::Freq(wxUniChar ch
) const
2045 for (int i
= 0; i
< len
; i
++)
2047 if (GetChar(i
) == ch
)
2053 // convert to upper case, return the copy of the string
2054 wxString
wxString::Upper() const
2055 { wxString
s(*this); return s
.MakeUpper(); }
2057 // convert to lower case, return the copy of the string
2058 wxString
wxString::Lower() const { wxString
s(*this); return s
.MakeLower(); }
2060 // ============================================================================
2062 // ============================================================================
2064 #include "wx/arrstr.h"
2066 wxArrayString::wxArrayString(size_t sz
, const wxChar
** a
)
2071 for (size_t i
=0; i
< sz
; i
++)
2075 wxArrayString::wxArrayString(size_t sz
, const wxString
* a
)
2080 for (size_t i
=0; i
< sz
; i
++)
2086 // size increment = min(50% of current size, ARRAY_MAXSIZE_INCREMENT)
2087 #define ARRAY_MAXSIZE_INCREMENT 4096
2089 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
2090 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
2094 void wxArrayString::Init(bool autoSort
)
2099 m_autoSort
= autoSort
;
2103 wxArrayString::wxArrayString(const wxArrayString
& src
)
2105 Init(src
.m_autoSort
);
2110 // assignment operator
2111 wxArrayString
& wxArrayString::operator=(const wxArrayString
& src
)
2118 m_autoSort
= src
.m_autoSort
;
2123 void wxArrayString::Copy(const wxArrayString
& src
)
2125 if ( src
.m_nCount
> ARRAY_DEFAULT_INITIAL_SIZE
)
2126 Alloc(src
.m_nCount
);
2128 for ( size_t n
= 0; n
< src
.m_nCount
; n
++ )
2133 void wxArrayString::Grow(size_t nIncrement
)
2135 // only do it if no more place
2136 if ( (m_nSize
- m_nCount
) < nIncrement
) {
2137 // if ARRAY_DEFAULT_INITIAL_SIZE were set to 0, the initially empty would
2138 // be never resized!
2139 #if ARRAY_DEFAULT_INITIAL_SIZE == 0
2140 #error "ARRAY_DEFAULT_INITIAL_SIZE must be > 0!"
2143 if ( m_nSize
== 0 ) {
2144 // was empty, alloc some memory
2145 m_nSize
= ARRAY_DEFAULT_INITIAL_SIZE
;
2146 if (m_nSize
< nIncrement
)
2147 m_nSize
= nIncrement
;
2148 m_pItems
= new wxString
[m_nSize
];
2151 // otherwise when it's called for the first time, nIncrement would be 0
2152 // and the array would never be expanded
2153 // add 50% but not too much
2154 size_t ndefIncrement
= m_nSize
< ARRAY_DEFAULT_INITIAL_SIZE
2155 ? ARRAY_DEFAULT_INITIAL_SIZE
: m_nSize
>> 1;
2156 if ( ndefIncrement
> ARRAY_MAXSIZE_INCREMENT
)
2157 ndefIncrement
= ARRAY_MAXSIZE_INCREMENT
;
2158 if ( nIncrement
< ndefIncrement
)
2159 nIncrement
= ndefIncrement
;
2160 m_nSize
+= nIncrement
;
2161 wxString
*pNew
= new wxString
[m_nSize
];
2163 // copy data to new location
2164 for ( size_t j
= 0; j
< m_nCount
; j
++ )
2165 pNew
[j
] = m_pItems
[j
];
2167 // delete old memory (but do not release the strings!)
2168 wxDELETEA(m_pItems
);
2175 // deletes all the strings from the list
2176 void wxArrayString::Empty()
2181 // as Empty, but also frees memory
2182 void wxArrayString::Clear()
2187 wxDELETEA(m_pItems
);
2191 wxArrayString::~wxArrayString()
2193 wxDELETEA(m_pItems
);
2196 void wxArrayString::reserve(size_t nSize
)
2201 // pre-allocates memory (frees the previous data!)
2202 void wxArrayString::Alloc(size_t nSize
)
2204 // only if old buffer was not big enough
2205 if ( nSize
> m_nSize
) {
2206 wxString
*pNew
= new wxString
[nSize
];
2210 for ( size_t j
= 0; j
< m_nCount
; j
++ )
2211 pNew
[j
] = m_pItems
[j
];
2219 // minimizes the memory usage by freeing unused memory
2220 void wxArrayString::Shrink()
2222 // only do it if we have some memory to free
2223 if( m_nCount
< m_nSize
) {
2224 // allocates exactly as much memory as we need
2225 wxString
*pNew
= new wxString
[m_nCount
];
2227 // copy data to new location
2228 for ( size_t j
= 0; j
< m_nCount
; j
++ )
2229 pNew
[j
] = m_pItems
[j
];
2235 // searches the array for an item (forward or backwards)
2236 int wxArrayString::Index(const wxChar
*sz
, bool bCase
, bool bFromEnd
) const
2239 // use binary search in the sorted array
2240 wxASSERT_MSG( bCase
&& !bFromEnd
,
2241 wxT("search parameters ignored for auto sorted array") );
2250 res
= wxStrcmp(sz
, m_pItems
[i
]);
2262 // use linear search in unsorted array
2264 if ( m_nCount
> 0 ) {
2265 size_t ui
= m_nCount
;
2267 if ( m_pItems
[--ui
].IsSameAs(sz
, bCase
) )
2274 for( size_t ui
= 0; ui
< m_nCount
; ui
++ ) {
2275 if( m_pItems
[ui
].IsSameAs(sz
, bCase
) )
2284 // add item at the end
2285 size_t wxArrayString::Add(const wxString
& str
, size_t nInsert
)
2288 // insert the string at the correct position to keep the array sorted
2296 res
= str
.Cmp(m_pItems
[i
]);
2307 wxASSERT_MSG( lo
== hi
, wxT("binary search broken") );
2309 Insert(str
, lo
, nInsert
);
2316 for (size_t i
= 0; i
< nInsert
; i
++)
2319 m_pItems
[m_nCount
+ i
] = str
;
2321 size_t ret
= m_nCount
;
2322 m_nCount
+= nInsert
;
2327 // add item at the given position
2328 void wxArrayString::Insert(const wxString
& str
, size_t nIndex
, size_t nInsert
)
2330 wxCHECK_RET( nIndex
<= m_nCount
, wxT("bad index in wxArrayString::Insert") );
2331 wxCHECK_RET( m_nCount
<= m_nCount
+ nInsert
,
2332 wxT("array size overflow in wxArrayString::Insert") );
2336 for (int j
= m_nCount
- nIndex
- 1; j
>= 0; j
--)
2337 m_pItems
[nIndex
+ nInsert
+ j
] = m_pItems
[nIndex
+ j
];
2339 for (size_t i
= 0; i
< nInsert
; i
++)
2341 m_pItems
[nIndex
+ i
] = str
;
2343 m_nCount
+= nInsert
;
2346 // range insert (STL 23.2.4.3)
2348 wxArrayString::insert(iterator it
, const_iterator first
, const_iterator last
)
2350 const int idx
= it
- begin();
2355 // reset "it" since it can change inside Grow()
2358 while ( first
!= last
)
2360 it
= insert(it
, *first
);
2362 // insert returns an iterator to the last element inserted but we need
2363 // insert the next after this one, that is before the next one
2371 void wxArrayString::SetCount(size_t count
)
2376 while ( m_nCount
< count
)
2377 m_pItems
[m_nCount
++] = s
;
2380 // removes item from array (by index)
2381 void wxArrayString::RemoveAt(size_t nIndex
, size_t nRemove
)
2383 wxCHECK_RET( nIndex
< m_nCount
, wxT("bad index in wxArrayString::Remove") );
2384 wxCHECK_RET( nIndex
+ nRemove
<= m_nCount
,
2385 wxT("removing too many elements in wxArrayString::Remove") );
2387 for ( size_t j
= 0; j
< m_nCount
- nIndex
-nRemove
; j
++)
2388 m_pItems
[nIndex
+ j
] = m_pItems
[nIndex
+ nRemove
+ j
];
2390 m_nCount
-= nRemove
;
2393 // removes item from array (by value)
2394 void wxArrayString::Remove(const wxChar
*sz
)
2396 int iIndex
= Index(sz
);
2398 wxCHECK_RET( iIndex
!= wxNOT_FOUND
,
2399 wxT("removing inexistent element in wxArrayString::Remove") );
2404 void wxArrayString::assign(const_iterator first
, const_iterator last
)
2406 reserve(last
- first
);
2407 for(; first
!= last
; ++first
)
2411 // ----------------------------------------------------------------------------
2413 // ----------------------------------------------------------------------------
2415 // we can only sort one array at a time with the quick-sort based
2418 // need a critical section to protect access to gs_compareFunction and
2419 // gs_sortAscending variables
2420 static wxCriticalSection gs_critsectStringSort
;
2421 #endif // wxUSE_THREADS
2423 // function to use for string comparaison
2424 static wxArrayString::CompareFunction gs_compareFunction
= NULL
;
2426 // if we don't use the compare function, this flag tells us if we sort the
2427 // array in ascending or descending order
2428 static bool gs_sortAscending
= true;
2430 // function which is called by quick sort
2431 extern "C" int wxC_CALLING_CONV
// LINKAGEMODE
2432 wxStringCompareFunction(const void *first
, const void *second
)
2434 wxString
*strFirst
= (wxString
*)first
;
2435 wxString
*strSecond
= (wxString
*)second
;
2437 if ( gs_compareFunction
) {
2438 return gs_compareFunction(*strFirst
, *strSecond
);
2441 // maybe we should use wxStrcoll
2442 int result
= strFirst
->Cmp(*strSecond
);
2444 return gs_sortAscending
? result
: -result
;
2448 // sort array elements using passed comparaison function
2449 void wxArrayString::Sort(CompareFunction compareFunction
)
2451 wxCRIT_SECT_LOCKER(lockCmpFunc
, gs_critsectStringSort
);
2453 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2454 gs_compareFunction
= compareFunction
;
2458 // reset it to NULL so that Sort(bool) will work the next time
2459 gs_compareFunction
= NULL
;
2464 typedef int (wxC_CALLING_CONV
* wxStringCompareFn
)(const void *first
,
2465 const void *second
);
2468 void wxArrayString::Sort(CompareFunction2 compareFunction
)
2470 qsort(m_pItems
, m_nCount
, sizeof(wxString
), (wxStringCompareFn
)compareFunction
);
2473 void wxArrayString::Sort(bool reverseOrder
)
2475 Sort(reverseOrder
? wxStringSortDescending
: wxStringSortAscending
);
2478 void wxArrayString::DoSort()
2480 wxCHECK_RET( !m_autoSort
, wxT("can't use this method with sorted arrays") );
2482 qsort(m_pItems
, m_nCount
, sizeof(wxString
), wxStringCompareFunction
);
2485 bool wxArrayString::operator==(const wxArrayString
& a
) const
2487 if ( m_nCount
!= a
.m_nCount
)
2490 for ( size_t n
= 0; n
< m_nCount
; n
++ )
2492 if ( Item(n
) != a
[n
] )
2499 #endif // !wxUSE_STL
2501 int wxCMPFUNC_CONV
wxStringSortAscending(wxString
* s1
, wxString
* s2
)
2503 return s1
->Cmp(*s2
);
2506 int wxCMPFUNC_CONV
wxStringSortDescending(wxString
* s1
, wxString
* s2
)
2508 return -s1
->Cmp(*s2
);
2513 // ===========================================================================
2514 // wxJoin and wxSplit
2515 // ===========================================================================
2517 #include "wx/tokenzr.h"
2519 wxString
wxJoin(const wxArrayString
& arr
, const wxChar sep
, const wxChar escape
)
2521 size_t count
= arr
.size();
2523 return wxEmptyString
;
2527 // pre-allocate memory using the estimation of the average length of the
2528 // strings in the given array: this is very imprecise, of course, but
2529 // better than nothing
2530 str
.reserve(count
*(arr
[0].length() + arr
[count
-1].length()) / 2);
2532 if ( escape
== wxT('\0') )
2534 // escaping is disabled:
2535 for ( size_t i
= 0; i
< count
; i
++ )
2542 else // use escape character
2544 for ( size_t n
= 0; n
< count
; n
++ )
2549 for ( wxString::const_iterator i
= arr
[n
].begin(),
2554 const wxChar ch
= *i
;
2556 str
+= escape
; // escape this separator
2562 str
.Shrink(); // release extra memory if we allocated too much
2566 wxArrayString
wxSplit(const wxString
& str
, const wxChar sep
, const wxChar escape
)
2568 if ( escape
== wxT('\0') )
2570 // simple case: we don't need to honour the escape character
2571 return wxStringTokenize(str
, sep
, wxTOKEN_RET_EMPTY_ALL
);
2576 wxChar prev
= wxT('\0');
2578 for ( wxString::const_iterator i
= str
.begin(),
2583 const wxChar ch
= *i
;
2587 if ( prev
== escape
)
2589 // remove the escape character and don't consider this
2590 // occurrence of 'sep' as a real separator
2591 *curr
.rbegin() = sep
;
2593 else // real separator
2595 ret
.push_back(curr
);
2599 else // normal character
2607 // add the last token
2608 if ( !curr
.empty() || prev
== sep
)