1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxString class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
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;
65 const size_t wxStringBase::npos
= wxSTRING_MAXLEN
;
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
74 extern const wxChar WXDLLIMPEXP_BASE
*wxEmptyString
= _T("");
78 // for an empty string, GetStringData() will return this address: this
79 // structure has the same layout as wxStringData and it's data() method will
80 // return the empty string (dummy pointer)
85 } g_strEmpty
= { {-1, 0, 0}, wxT('\0') };
87 // empty C style string: points to 'string data' byte of g_strEmpty
88 extern const wxChar WXDLLIMPEXP_BASE
*wxEmptyString
= &g_strEmpty
.dummy
;
92 // ----------------------------------------------------------------------------
94 // ----------------------------------------------------------------------------
96 #if wxUSE_STD_IOSTREAM
98 // MS Visual C++ version 5.0 provides the new STL headers as well as the old
101 // ATTN: you can _not_ use both of these in the same program!
105 wxSTD istream
& operator>>(wxSTD istream
& is
, wxString
& WXUNUSED(str
))
110 streambuf
*sb
= is
.rdbuf();
113 int ch
= sb
->sbumpc ();
115 is
.setstate(ios::eofbit
);
118 else if ( isspace(ch
) ) {
130 if ( str
.length() == 0 )
131 is
.setstate(ios::failbit
);
136 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxString
& str
)
142 #endif // wxUSE_STD_IOSTREAM
144 // ----------------------------------------------------------------------------
146 // ----------------------------------------------------------------------------
148 // this small class is used to gather statistics for performance tuning
149 //#define WXSTRING_STATISTICS
150 #ifdef WXSTRING_STATISTICS
154 Averager(const wxChar
*sz
) { m_sz
= sz
; m_nTotal
= m_nCount
= 0; }
156 { wxPrintf("wxString: average %s = %f\n", m_sz
, ((float)m_nTotal
)/m_nCount
); }
158 void Add(size_t n
) { m_nTotal
+= n
; m_nCount
++; }
161 size_t m_nCount
, m_nTotal
;
163 } g_averageLength("allocation size"),
164 g_averageSummandLength("summand length"),
165 g_averageConcatHit("hit probability in concat"),
166 g_averageInitialLength("initial string length");
168 #define STATISTICS_ADD(av, val) g_average##av.Add(val)
170 #define STATISTICS_ADD(av, val)
171 #endif // WXSTRING_STATISTICS
175 // ===========================================================================
176 // wxStringData class deallocation
177 // ===========================================================================
179 #if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
180 # pragma message (__FILE__ ": building with Multithreaded non DLL runtime has a performance impact on wxString!")
181 void wxStringData::Free()
187 // ===========================================================================
189 // ===========================================================================
191 // takes nLength elements of psz starting at nPos
192 void wxStringBase::InitWith(const wxChar
*psz
, size_t nPos
, size_t nLength
)
196 // if the length is not given, assume the string to be NUL terminated
197 if ( nLength
== npos
) {
198 wxASSERT_MSG( nPos
<= wxStrlen(psz
), _T("index out of bounds") );
200 nLength
= wxStrlen(psz
+ nPos
);
203 STATISTICS_ADD(InitialLength
, nLength
);
206 // trailing '\0' is written in AllocBuffer()
207 if ( !AllocBuffer(nLength
) ) {
208 wxFAIL_MSG( _T("out of memory in wxStringBase::InitWith") );
211 wxMemcpy(m_pchData
, psz
+ nPos
, nLength
);
215 // poor man's iterators are "void *" pointers
216 wxStringBase::wxStringBase(const void *pStart
, const void *pEnd
)
218 InitWith((const wxChar
*)pStart
, 0,
219 (const wxChar
*)pEnd
- (const wxChar
*)pStart
);
222 wxStringBase::wxStringBase(size_type n
, wxChar ch
)
228 // ---------------------------------------------------------------------------
230 // ---------------------------------------------------------------------------
232 // allocates memory needed to store a C string of length nLen
233 bool wxStringBase::AllocBuffer(size_t nLen
)
235 // allocating 0 sized buffer doesn't make sense, all empty strings should
237 wxASSERT( nLen
> 0 );
239 // make sure that we don't overflow
240 wxASSERT( nLen
< (INT_MAX
/ sizeof(wxChar
)) -
241 (sizeof(wxStringData
) + EXTRA_ALLOC
+ 1) );
243 STATISTICS_ADD(Length
, nLen
);
246 // 1) one extra character for '\0' termination
247 // 2) sizeof(wxStringData) for housekeeping info
248 wxStringData
* pData
= (wxStringData
*)
249 malloc(sizeof(wxStringData
) + (nLen
+ EXTRA_ALLOC
+ 1)*sizeof(wxChar
));
251 if ( pData
== NULL
) {
252 // allocation failures are handled by the caller
257 pData
->nDataLength
= nLen
;
258 pData
->nAllocLength
= nLen
+ EXTRA_ALLOC
;
259 m_pchData
= pData
->data(); // data starts after wxStringData
260 m_pchData
[nLen
] = wxT('\0');
264 // must be called before changing this string
265 bool wxStringBase::CopyBeforeWrite()
267 wxStringData
* pData
= GetStringData();
269 if ( pData
->IsShared() ) {
270 pData
->Unlock(); // memory not freed because shared
271 size_t nLen
= pData
->nDataLength
;
272 if ( !AllocBuffer(nLen
) ) {
273 // allocation failures are handled by the caller
276 wxMemcpy(m_pchData
, pData
->data(), nLen
);
279 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
284 // must be called before replacing contents of this string
285 bool wxStringBase::AllocBeforeWrite(size_t nLen
)
287 wxASSERT( nLen
!= 0 ); // doesn't make any sense
289 // must not share string and must have enough space
290 wxStringData
* pData
= GetStringData();
291 if ( pData
->IsShared() || pData
->IsEmpty() ) {
292 // can't work with old buffer, get new one
294 if ( !AllocBuffer(nLen
) ) {
295 // allocation failures are handled by the caller
300 if ( nLen
> pData
->nAllocLength
) {
301 // realloc the buffer instead of calling malloc() again, this is more
303 STATISTICS_ADD(Length
, nLen
);
307 pData
= (wxStringData
*)
308 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
310 if ( pData
== NULL
) {
311 // allocation failures are handled by the caller
312 // keep previous data since reallocation failed
316 pData
->nAllocLength
= nLen
;
317 m_pchData
= pData
->data();
320 // now we have enough space, just update the string length
321 pData
->nDataLength
= nLen
;
324 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
329 wxStringBase
& wxStringBase::append(size_t n
, wxChar ch
)
331 size_type len
= length();
333 if ( !CopyBeforeWrite() || !Alloc(len
+ n
) ) {
334 wxFAIL_MSG( _T("out of memory in wxStringBase::append") );
336 GetStringData()->nDataLength
= len
+ n
;
337 m_pchData
[len
+ n
] = '\0';
338 for ( size_t i
= 0; i
< n
; ++i
)
339 m_pchData
[len
+ i
] = ch
;
343 void wxStringBase::resize(size_t nSize
, wxChar ch
)
345 size_t len
= length();
349 erase(begin() + nSize
, end());
351 else if ( nSize
> len
)
353 append(nSize
- len
, ch
);
355 //else: we have exactly the specified length, nothing to do
358 // allocate enough memory for nLen characters
359 bool wxStringBase::Alloc(size_t nLen
)
361 wxStringData
*pData
= GetStringData();
362 if ( pData
->nAllocLength
<= nLen
) {
363 if ( pData
->IsEmpty() ) {
366 wxStringData
* pData
= (wxStringData
*)
367 malloc(sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
369 if ( pData
== NULL
) {
370 // allocation failure handled by caller
375 pData
->nDataLength
= 0;
376 pData
->nAllocLength
= nLen
;
377 m_pchData
= pData
->data(); // data starts after wxStringData
378 m_pchData
[0u] = wxT('\0');
380 else if ( pData
->IsShared() ) {
381 pData
->Unlock(); // memory not freed because shared
382 size_t nOldLen
= pData
->nDataLength
;
383 if ( !AllocBuffer(nLen
) ) {
384 // allocation failure handled by caller
387 memcpy(m_pchData
, pData
->data(), nOldLen
*sizeof(wxChar
));
392 pData
= (wxStringData
*)
393 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
395 if ( pData
== NULL
) {
396 // allocation failure handled by caller
397 // keep previous data since reallocation failed
401 // it's not important if the pointer changed or not (the check for this
402 // is not faster than assigning to m_pchData in all cases)
403 pData
->nAllocLength
= nLen
;
404 m_pchData
= pData
->data();
407 //else: we've already got enough
411 wxStringBase::iterator
wxStringBase::begin()
418 wxStringBase::iterator
wxStringBase::end()
422 return m_pchData
+ length();
425 wxStringBase::iterator
wxStringBase::erase(iterator it
)
427 size_type idx
= it
- begin();
429 return begin() + idx
;
432 wxStringBase
& wxStringBase::erase(size_t nStart
, size_t nLen
)
434 wxASSERT(nStart
<= length());
435 size_t strLen
= length() - nStart
;
436 // delete nLen or up to the end of the string characters
437 nLen
= strLen
< nLen
? strLen
: nLen
;
438 wxString
strTmp(c_str(), nStart
);
439 strTmp
.append(c_str() + nStart
+ nLen
, length() - nStart
- nLen
);
445 wxStringBase
& wxStringBase::insert(size_t nPos
, const wxChar
*sz
, size_t n
)
447 wxASSERT( nPos
<= length() );
449 if ( n
== npos
) n
= wxStrlen(sz
);
450 if ( n
== 0 ) return *this;
452 if ( !CopyBeforeWrite() || !Alloc(length() + n
) ) {
453 wxFAIL_MSG( _T("out of memory in wxStringBase::insert") );
456 memmove(m_pchData
+ nPos
+ n
, m_pchData
+ nPos
,
457 (length() - nPos
) * sizeof(wxChar
));
458 memcpy(m_pchData
+ nPos
, sz
, n
* sizeof(wxChar
));
459 GetStringData()->nDataLength
= length() + n
;
460 m_pchData
[length()] = '\0';
465 void wxStringBase::swap(wxStringBase
& str
)
467 wxChar
* tmp
= str
.m_pchData
;
468 str
.m_pchData
= m_pchData
;
472 size_t wxStringBase::find(const wxStringBase
& str
, size_t nStart
) const
474 wxASSERT( str
.GetStringData()->IsValid() );
475 wxASSERT( nStart
<= length() );
478 const wxChar
* p
= (const wxChar
*)wxMemchr(c_str() + nStart
,
485 while(p
- c_str() + str
.length() <= length() &&
486 wxMemcmp(p
, str
.c_str(), str
.length()) )
489 p
= (const wxChar
*)wxMemchr(++p
,
491 length() - (p
- c_str()));
497 return (p
- c_str() + str
.length() <= length()) ? p
- c_str() : npos
;
500 size_t wxStringBase::find(const wxChar
* sz
, size_t nStart
, size_t n
) const
502 return find(wxStringBase(sz
, n
), nStart
);
505 size_t wxStringBase::find(wxChar ch
, size_t nStart
) const
507 wxASSERT( nStart
<= length() );
509 const wxChar
*p
= (const wxChar
*)wxMemchr(c_str() + nStart
, ch
, length() - nStart
);
511 return p
== NULL
? npos
: p
- c_str();
514 size_t wxStringBase::rfind(const wxStringBase
& str
, size_t nStart
) const
516 wxASSERT( str
.GetStringData()->IsValid() );
517 wxASSERT( nStart
== npos
|| nStart
<= length() );
519 if ( length() >= str
.length() )
521 // avoids a corner case later
522 if ( length() == 0 && str
.length() == 0 )
525 // "top" is the point where search starts from
526 size_t top
= length() - str
.length();
528 if ( nStart
== npos
)
529 nStart
= length() - 1;
533 const wxChar
*cursor
= c_str() + top
;
536 if ( wxMemcmp(cursor
, str
.c_str(),
539 return cursor
- c_str();
541 } while ( cursor
-- > c_str() );
547 size_t wxStringBase::rfind(const wxChar
* sz
, size_t nStart
, size_t n
) const
549 return rfind(wxStringBase(sz
, n
), nStart
);
552 size_t wxStringBase::rfind(wxChar ch
, size_t nStart
) const
554 if ( nStart
== npos
)
560 wxASSERT( nStart
<= length() );
563 const wxChar
*actual
;
564 for ( actual
= c_str() + ( nStart
== npos
? length() : nStart
+ 1 );
565 actual
> c_str(); --actual
)
567 if ( *(actual
- 1) == ch
)
568 return (actual
- 1) - c_str();
574 size_t wxStringBase::find_first_of(const wxChar
* sz
, size_t nStart
) const
576 wxASSERT(nStart
<= length());
578 size_t len
= wxStrlen(sz
);
581 for(i
= nStart
; i
< this->length(); ++i
)
583 if (wxMemchr(sz
, *(c_str() + i
), len
))
587 if(i
== this->length())
593 size_t wxStringBase::find_first_of(const wxChar
* sz
, size_t nStart
,
596 return find_first_of(wxStringBase(sz
, n
), nStart
);
599 size_t wxStringBase::find_last_of(const wxChar
* sz
, size_t nStart
) const
601 if ( nStart
== npos
)
603 nStart
= length() - 1;
607 wxASSERT_MSG( nStart
<= length(),
608 _T("invalid index in find_last_of()") );
611 size_t len
= wxStrlen(sz
);
613 for ( const wxChar
*p
= c_str() + nStart
; p
>= c_str(); --p
)
615 if ( wxMemchr(sz
, *p
, len
) )
622 size_t wxStringBase::find_last_of(const wxChar
* sz
, size_t nStart
,
625 return find_last_of(wxStringBase(sz
, n
), nStart
);
628 size_t wxStringBase::find_first_not_of(const wxChar
* sz
, size_t nStart
) const
630 if ( nStart
== npos
)
636 wxASSERT( nStart
<= length() );
639 size_t len
= wxStrlen(sz
);
642 for(i
= nStart
; i
< this->length(); ++i
)
644 if (!wxMemchr(sz
, *(c_str() + i
), len
))
648 if(i
== this->length())
654 size_t wxStringBase::find_first_not_of(const wxChar
* sz
, size_t nStart
,
657 return find_first_not_of(wxStringBase(sz
, n
), nStart
);
660 size_t wxStringBase::find_first_not_of(wxChar ch
, size_t nStart
) const
662 wxASSERT( nStart
<= length() );
664 for ( const wxChar
*p
= c_str() + nStart
; *p
; p
++ )
673 size_t wxStringBase::find_last_not_of(const wxChar
* sz
, size_t nStart
) const
675 if ( nStart
== npos
)
677 nStart
= length() - 1;
681 wxASSERT( nStart
<= length() );
684 size_t len
= wxStrlen(sz
);
686 for ( const wxChar
*p
= c_str() + nStart
; p
>= c_str(); --p
)
688 if ( !wxMemchr(sz
, *p
,len
) )
695 size_t wxStringBase::find_last_not_of(const wxChar
* sz
, size_t nStart
,
698 return find_last_not_of(wxStringBase(sz
, n
), nStart
);
701 size_t wxStringBase::find_last_not_of(wxChar ch
, size_t nStart
) const
703 if ( nStart
== npos
)
705 nStart
= length() - 1;
709 wxASSERT( nStart
<= length() );
712 for ( const wxChar
*p
= c_str() + nStart
; p
>= c_str(); --p
)
721 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
724 wxASSERT_MSG( nStart
<= length(),
725 _T("index out of bounds in wxStringBase::replace") );
726 size_t strLen
= length() - nStart
;
727 nLen
= strLen
< nLen
? strLen
: nLen
;
730 strTmp
.reserve(length()); // micro optimisation to avoid multiple mem allocs
733 strTmp
.append(c_str(), nStart
);
735 strTmp
.append(c_str() + nStart
+ nLen
);
741 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
742 size_t nCount
, wxChar ch
)
744 return replace(nStart
, nLen
, wxStringBase(nCount
, ch
).c_str());
747 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
748 const wxStringBase
& str
,
749 size_t nStart2
, size_t nLen2
)
751 return replace(nStart
, nLen
, str
.substr(nStart2
, nLen2
));
754 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
755 const wxChar
* sz
, size_t nCount
)
757 return replace(nStart
, nLen
, wxStringBase(sz
, nCount
).c_str());
760 wxStringBase
wxStringBase::substr(size_t nStart
, size_t nLen
) const
763 nLen
= length() - nStart
;
764 return wxStringBase(*this, nStart
, nLen
);
767 // assigns one string to another
768 wxStringBase
& wxStringBase::operator=(const wxStringBase
& stringSrc
)
770 wxASSERT( stringSrc
.GetStringData()->IsValid() );
772 // don't copy string over itself
773 if ( m_pchData
!= stringSrc
.m_pchData
) {
774 if ( stringSrc
.GetStringData()->IsEmpty() ) {
779 GetStringData()->Unlock();
780 m_pchData
= stringSrc
.m_pchData
;
781 GetStringData()->Lock();
788 // assigns a single character
789 wxStringBase
& wxStringBase::operator=(wxChar ch
)
791 if ( !AssignCopy(1, &ch
) ) {
792 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(wxChar)") );
798 wxStringBase
& wxStringBase::operator=(const wxChar
*psz
)
800 if ( !AssignCopy(wxStrlen(psz
), psz
) ) {
801 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(const wxChar *)") );
806 // helper function: does real copy
807 bool wxStringBase::AssignCopy(size_t nSrcLen
, const wxChar
*pszSrcData
)
809 if ( nSrcLen
== 0 ) {
813 if ( !AllocBeforeWrite(nSrcLen
) ) {
814 // allocation failure handled by caller
817 memcpy(m_pchData
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
818 GetStringData()->nDataLength
= nSrcLen
;
819 m_pchData
[nSrcLen
] = wxT('\0');
824 // ---------------------------------------------------------------------------
825 // string concatenation
826 // ---------------------------------------------------------------------------
828 // add something to this string
829 bool wxStringBase::ConcatSelf(size_t nSrcLen
, const wxChar
*pszSrcData
,
832 STATISTICS_ADD(SummandLength
, nSrcLen
);
834 nSrcLen
= nSrcLen
< nMaxLen
? nSrcLen
: nMaxLen
;
836 // concatenating an empty string is a NOP
838 wxStringData
*pData
= GetStringData();
839 size_t nLen
= pData
->nDataLength
;
840 size_t nNewLen
= nLen
+ nSrcLen
;
842 // alloc new buffer if current is too small
843 if ( pData
->IsShared() ) {
844 STATISTICS_ADD(ConcatHit
, 0);
846 // we have to allocate another buffer
847 wxStringData
* pOldData
= GetStringData();
848 if ( !AllocBuffer(nNewLen
) ) {
849 // allocation failure handled by caller
852 memcpy(m_pchData
, pOldData
->data(), nLen
*sizeof(wxChar
));
855 else if ( nNewLen
> pData
->nAllocLength
) {
856 STATISTICS_ADD(ConcatHit
, 0);
859 // we have to grow the buffer
860 if ( capacity() < nNewLen
) {
861 // allocation failure handled by caller
866 STATISTICS_ADD(ConcatHit
, 1);
868 // the buffer is already big enough
871 // should be enough space
872 wxASSERT( nNewLen
<= GetStringData()->nAllocLength
);
874 // fast concatenation - all is done in our buffer
875 memcpy(m_pchData
+ nLen
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
877 m_pchData
[nNewLen
] = wxT('\0'); // put terminating '\0'
878 GetStringData()->nDataLength
= nNewLen
; // and fix the length
880 //else: the string to append was empty
884 // ---------------------------------------------------------------------------
885 // simple sub-string extraction
886 // ---------------------------------------------------------------------------
888 // helper function: clone the data attached to this string
889 bool wxStringBase::AllocCopy(wxString
& dest
, int nCopyLen
, int nCopyIndex
) const
891 if ( nCopyLen
== 0 ) {
895 if ( !dest
.AllocBuffer(nCopyLen
) ) {
896 // allocation failure handled by caller
899 memcpy(dest
.m_pchData
, m_pchData
+ nCopyIndex
, nCopyLen
*sizeof(wxChar
));
906 #if !wxUSE_STL || !defined(HAVE_STD_STRING_COMPARE)
909 #define STRINGCLASS wxStringBase
911 #define STRINGCLASS wxString
914 static inline int wxDoCmp(const wxChar
* s1
, size_t l1
,
915 const wxChar
* s2
, size_t l2
)
918 return wxMemcmp(s1
, s2
, l1
);
921 int ret
= wxMemcmp(s1
, s2
, l1
);
922 return ret
== 0 ? -1 : ret
;
926 int ret
= wxMemcmp(s1
, s2
, l2
);
927 return ret
== 0 ? +1 : ret
;
930 wxFAIL
; // must never get there
931 return 0; // quiet compilers
934 int STRINGCLASS::compare(const wxStringBase
& str
) const
936 return ::wxDoCmp(data(), length(), str
.data(), str
.length());
939 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
940 const wxStringBase
& str
) const
942 wxASSERT(nStart
<= length());
943 size_type strLen
= length() - nStart
;
944 nLen
= strLen
< nLen
? strLen
: nLen
;
945 return ::wxDoCmp(data() + nStart
, nLen
, str
.data(), str
.length());
948 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
949 const wxStringBase
& str
,
950 size_t nStart2
, size_t nLen2
) const
952 wxASSERT(nStart
<= length());
953 wxASSERT(nStart2
<= str
.length());
954 size_type strLen
= length() - nStart
,
955 strLen2
= str
.length() - nStart2
;
956 nLen
= strLen
< nLen
? strLen
: nLen
;
957 nLen2
= strLen2
< nLen2
? strLen2
: nLen2
;
958 return ::wxDoCmp(data() + nStart
, nLen
, str
.data() + nStart2
, nLen2
);
961 int STRINGCLASS::compare(const wxChar
* sz
) const
963 size_t nLen
= wxStrlen(sz
);
964 return ::wxDoCmp(data(), length(), sz
, nLen
);
967 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
968 const wxChar
* sz
, size_t nCount
) const
970 wxASSERT(nStart
<= length());
971 size_type strLen
= length() - nStart
;
972 nLen
= strLen
< nLen
? strLen
: nLen
;
974 nCount
= wxStrlen(sz
);
976 return ::wxDoCmp(data() + nStart
, nLen
, sz
, nCount
);
981 #endif // !wxUSE_STL || !defined(HAVE_STD_STRING_COMPARE)
983 // ===========================================================================
984 // wxString class core
985 // ===========================================================================
987 // ---------------------------------------------------------------------------
988 // common conversion routines
989 // ---------------------------------------------------------------------------
993 //Convert a wide character string of a specified length
994 //to a multi-byte character string, ignoring intermittent null characters
995 //returns the actual length of the string
996 inline size_t wxMbstr(char* szBuffer
, const wchar_t* szString
,
997 size_t nStringLen
, wxMBConv
& conv
)
999 const wchar_t* szEnd
= szString
+ nStringLen
+ 1;
1000 const wchar_t* szPos
= szString
;
1001 const wchar_t* szStart
= szPos
;
1003 size_t nActualLength
= 0;
1005 //Convert the string until the length() is reached, continuing the
1006 //loop every time a null character is reached
1007 while(szPos
!= szEnd
)
1009 wxASSERT(szPos
< szEnd
); //something is _really_ screwed up if this rings true
1011 //Get the length of the current (sub)string
1012 size_t nLen
= conv
.WC2MB(NULL
, szPos
, 0);
1014 // wxASSERT(nLen != (size_t)-1); //should not be true! If it is system wctomb could be bad
1016 nActualLength
+= nLen
+ 1;
1018 wxASSERT(nActualLength
<= (nStringLen
<<1) + 1); //If this is true it means buffer overflow
1020 //Convert the current (sub)string
1021 if ( nLen
== (size_t)-1 ||
1022 conv
.WC2MB(&szBuffer
[szPos
- szStart
], szPos
, nLen
+ 1) == (size_t)-1 )
1024 //error - return empty buffer
1025 wxFAIL_MSG(wxT("Error converting wide-character string to a multi-byte string"));
1030 //Increment to next (sub)string
1031 //Note that we have to use wxWcslen here instead of nLen
1032 //here because XX2XX gives us the size of the output buffer,
1033 //not neccessarly the length of the string
1034 szPos
+= wxWcslen(szPos
) + 1;
1037 return nActualLength
- 1; //success - return actual length
1040 //Convert a multi-byte character string of a specified length
1041 //to a wide character string, ignoring intermittent null characters
1042 //returns the actual length
1043 inline size_t wxWcstr( wchar_t* szBuffer
, const char* szString
,
1044 size_t nStringLen
, wxMBConv
& conv
)
1046 const char* szEnd
= szString
+ nStringLen
+ 1;
1047 const char* szPos
= szString
;
1048 const char* szStart
= szPos
;
1050 size_t nActualLength
= 0;
1052 //Convert the string until the length() is reached, continuing the
1053 //loop every time a null character is reached
1054 while(szPos
!= szEnd
)
1056 wxASSERT(szPos
< szEnd
); //something is _really_ screwed up if this rings true
1058 //Get the length of the current (sub)string
1059 size_t nLen
= conv
.MB2WC(NULL
, szPos
, 0);
1061 // wxASSERT(nLen != (size_t)-1); //If true, conversion was invalid, or system mbtowc could be bad
1063 nActualLength
+= nLen
+ 1;
1065 wxASSERT(nActualLength
<= nStringLen
+ 1); //If this is true it means buffer overflow
1067 //Convert the current (sub)string
1068 if ( nLen
== (size_t)-1 ||
1069 conv
.MB2WC(&szBuffer
[szPos
- szStart
], szPos
, nLen
+ 1) == (size_t)-1 )
1071 //error - return empty buffer
1072 wxFAIL_MSG(wxT("Error converting multi-byte string to a wide-character string"));
1077 //Increment to next (sub)string
1078 //Note that we have to use strlen here instead of nLen
1079 //here because XX2XX gives us the size of the output buffer,
1080 //not neccessarly the length of the string
1081 szPos
+= strlen(szPos
) + 1;
1084 return nActualLength
- 1; //success - return actual length
1087 #endif //wxUSE_WCHAR_T
1089 // ---------------------------------------------------------------------------
1090 // construction and conversion
1091 // ---------------------------------------------------------------------------
1095 // from multibyte string
1096 wxString::wxString(const char *psz
, wxMBConv
& conv
, size_t nLength
)
1098 // if nLength != npos, then we have to make a NULL-terminated copy
1099 // of first nLength bytes of psz first because the input buffer to MB2WC
1100 // must always be NULL-terminated:
1101 wxCharBuffer
inBuf((const char *)NULL
);
1102 if (nLength
!= npos
)
1104 wxASSERT( psz
!= NULL
);
1105 wxCharBuffer
tmp(nLength
);
1106 memcpy(tmp
.data(), psz
, nLength
);
1107 tmp
.data()[nLength
] = '\0';
1112 // first get the size of the buffer we need
1116 // calculate the needed size ourselves or use the provided one
1117 if (nLength
== npos
)
1124 // nothing to convert
1129 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) )
1131 //When converting mb->wc it never inflates to more characters than the length
1132 wxStringBufferLength
internalBuffer(*this, nLen
+ 1);
1134 //Do the actual conversion & Set the length of the buffer
1135 internalBuffer
.SetLength(
1136 wxWcstr(internalBuffer
, psz
, nLen
, conv
)
1139 wxWCharBuffer buffer(nLen + 1);
1141 //Convert the string
1142 size_t nActualLength = wxWcstr(buffer.data(), psz, nLen, conv);
1143 if ( !Alloc(nActualLength + 1) )
1145 wxFAIL_MSG(wxT("Out of memory in wxString"));
1150 assign(buffer.data(), nActualLength);
1156 //Convert wxString in Unicode mode to a multi-byte string
1157 const wxCharBuffer
wxString::mb_str(wxMBConv
& conv
) const
1159 //*4 is the worst case - for UTF8
1160 wxCharBuffer
buffer((length() << 2) + 1);
1162 //Do the actual conversion (will return a blank string on error)
1163 wxMbstr(buffer
.data(), (*this).c_str(), length(), conv
);
1172 wxString::wxString(const wchar_t *pwz
, wxMBConv
& conv
, size_t nLength
)
1174 // if nLength != npos, then we have to make a NULL-terminated copy
1175 // of first nLength chars of psz first because the input buffer to WC2MB
1176 // must always be NULL-terminated:
1177 wxWCharBuffer
inBuf((const wchar_t *)NULL
);
1178 if (nLength
!= npos
)
1180 wxASSERT( pwz
!= NULL
);
1181 wxWCharBuffer
tmp(nLength
);
1182 memcpy(tmp
.data(), pwz
, nLength
* sizeof(wchar_t));
1183 tmp
.data()[nLength
] = '\0';
1188 // first get the size of the buffer we need
1192 // calculate the needed size ourselves or use the provided one
1193 if (nLength
== npos
)
1194 nLen
= wxWcslen(pwz
);
1200 // nothing to convert
1205 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) )
1207 //*4 is the worst case - for UTF8
1208 wxStringBufferLength
internalBuffer(*this, (nLen
<< 2) + 1);
1210 //Do the actual conversion & Set the length of the buffer
1211 internalBuffer
.SetLength(
1212 wxMbstr(internalBuffer
, pwz
, nLen
, conv
)
1217 //Converts this string to a wide character string if unicode
1218 //mode is not enabled and wxUSE_WCHAR_T is enabled
1219 const wxWCharBuffer
wxString::wc_str(wxMBConv
& conv
) const
1221 //mb->wc never inflates to more than the length
1222 wxWCharBuffer
buffer(length() + 1);
1224 //Do the actual conversion (will return a blank string on error)
1225 wxWcstr(buffer
.data(), (*this).c_str(), length(), conv
);
1230 #endif // wxUSE_WCHAR_T
1232 #endif // Unicode/ANSI
1234 // shrink to minimal size (releasing extra memory)
1235 bool wxString::Shrink()
1237 wxString
tmp(begin(), end());
1239 return tmp
.length() == length();
1243 // get the pointer to writable buffer of (at least) nLen bytes
1244 wxChar
*wxString::GetWriteBuf(size_t nLen
)
1246 if ( !AllocBeforeWrite(nLen
) ) {
1247 // allocation failure handled by caller
1251 wxASSERT( GetStringData()->nRefs
== 1 );
1252 GetStringData()->Validate(false);
1257 // put string back in a reasonable state after GetWriteBuf
1258 void wxString::UngetWriteBuf()
1260 GetStringData()->nDataLength
= wxStrlen(m_pchData
);
1261 GetStringData()->Validate(true);
1264 void wxString::UngetWriteBuf(size_t nLen
)
1266 GetStringData()->nDataLength
= nLen
;
1267 GetStringData()->Validate(true);
1271 // ---------------------------------------------------------------------------
1273 // ---------------------------------------------------------------------------
1275 // all functions are inline in string.h
1277 // ---------------------------------------------------------------------------
1278 // assignment operators
1279 // ---------------------------------------------------------------------------
1283 // same as 'signed char' variant
1284 wxString
& wxString::operator=(const unsigned char* psz
)
1286 *this = (const char *)psz
;
1291 wxString
& wxString::operator=(const wchar_t *pwz
)
1302 * concatenation functions come in 5 flavours:
1304 * char + string and string + char
1305 * C str + string and string + C str
1308 wxString
operator+(const wxString
& str1
, const wxString
& str2
)
1311 wxASSERT( str1
.GetStringData()->IsValid() );
1312 wxASSERT( str2
.GetStringData()->IsValid() );
1321 wxString
operator+(const wxString
& str
, wxChar ch
)
1324 wxASSERT( str
.GetStringData()->IsValid() );
1333 wxString
operator+(wxChar ch
, const wxString
& str
)
1336 wxASSERT( str
.GetStringData()->IsValid() );
1345 wxString
operator+(const wxString
& str
, const wxChar
*psz
)
1348 wxASSERT( str
.GetStringData()->IsValid() );
1352 if ( !s
.Alloc(wxStrlen(psz
) + str
.Len()) ) {
1353 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1361 wxString
operator+(const wxChar
*psz
, const wxString
& str
)
1364 wxASSERT( str
.GetStringData()->IsValid() );
1368 if ( !s
.Alloc(wxStrlen(psz
) + str
.Len()) ) {
1369 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1377 // ===========================================================================
1378 // other common string functions
1379 // ===========================================================================
1381 int wxString::Cmp(const wxString
& s
) const
1386 int wxString::Cmp(const wxChar
* psz
) const
1388 return compare(psz
);
1391 static inline int wxDoCmpNoCase(const wxChar
* s1
, size_t l1
,
1392 const wxChar
* s2
, size_t l2
)
1398 for(i
= 0; i
< l1
; ++i
)
1400 if(wxTolower(s1
[i
]) != wxTolower(s2
[i
]))
1403 return i
== l1
? 0 : s1
[i
] < s2
[i
] ? -1 : 1;
1407 for(i
= 0; i
< l1
; ++i
)
1409 if(wxTolower(s1
[i
]) != wxTolower(s2
[i
]))
1412 return i
== l1
? -1 : s1
[i
] < s2
[i
] ? -1 : 1;
1416 for(i
= 0; i
< l2
; ++i
)
1418 if(wxTolower(s1
[i
]) != wxTolower(s2
[i
]))
1421 return i
== l2
? 1 : s1
[i
] < s2
[i
] ? -1 : 1;
1424 wxFAIL
; // must never get there
1425 return 0; // quiet compilers
1428 int wxString::CmpNoCase(const wxString
& s
) const
1430 return wxDoCmpNoCase(data(), length(), s
.data(), s
.length());
1433 int wxString::CmpNoCase(const wxChar
* psz
) const
1435 int nLen
= wxStrlen(psz
);
1437 return wxDoCmpNoCase(data(), length(), psz
, nLen
);
1444 #ifndef __SCHAR_MAX__
1445 #define __SCHAR_MAX__ 127
1449 wxString
wxString::FromAscii(const char *ascii
)
1452 return wxEmptyString
;
1454 size_t len
= strlen( ascii
);
1459 wxStringBuffer
buf(res
, len
);
1461 wchar_t *dest
= buf
;
1465 if ( (*dest
++ = (wchar_t)(unsigned char)*ascii
++) == L
'\0' )
1473 wxString
wxString::FromAscii(const char ascii
)
1475 // What do we do with '\0' ?
1478 res
+= (wchar_t)(unsigned char) ascii
;
1483 const wxCharBuffer
wxString::ToAscii() const
1485 // this will allocate enough space for the terminating NUL too
1486 wxCharBuffer
buffer(length());
1488 signed char *dest
= (signed char *)buffer
.data();
1490 const wchar_t *pwc
= c_str();
1493 *dest
++ = *pwc
> SCHAR_MAX
? wxT('_') : *pwc
;
1495 // the output string can't have embedded NULs anyhow, so we can safely
1496 // stop at first of them even if we do have any
1506 // extract string of length nCount starting at nFirst
1507 wxString
wxString::Mid(size_t nFirst
, size_t nCount
) const
1509 size_t nLen
= length();
1511 // default value of nCount is npos and means "till the end"
1512 if ( nCount
== npos
)
1514 nCount
= nLen
- nFirst
;
1517 // out-of-bounds requests return sensible things
1518 if ( nFirst
+ nCount
> nLen
)
1520 nCount
= nLen
- nFirst
;
1523 if ( nFirst
> nLen
)
1525 // AllocCopy() will return empty string
1529 wxString
dest(*this, nFirst
, nCount
);
1530 if ( dest
.length() != nCount
) {
1531 wxFAIL_MSG( _T("out of memory in wxString::Mid") );
1537 // check that the string starts with prefix and return the rest of the string
1538 // in the provided pointer if it is not NULL, otherwise return false
1539 bool wxString::StartsWith(const wxChar
*prefix
, wxString
*rest
) const
1541 wxASSERT_MSG( prefix
, _T("invalid parameter in wxString::StartsWith") );
1543 // first check if the beginning of the string matches the prefix: note
1544 // that we don't have to check that we don't run out of this string as
1545 // when we reach the terminating NUL, either prefix string ends too (and
1546 // then it's ok) or we break out of the loop because there is no match
1547 const wxChar
*p
= c_str();
1550 if ( *prefix
++ != *p
++ )
1559 // put the rest of the string into provided pointer
1566 // extract nCount last (rightmost) characters
1567 wxString
wxString::Right(size_t nCount
) const
1569 if ( nCount
> length() )
1572 wxString
dest(*this, length() - nCount
, nCount
);
1573 if ( dest
.length() != nCount
) {
1574 wxFAIL_MSG( _T("out of memory in wxString::Right") );
1579 // get all characters after the last occurence of ch
1580 // (returns the whole string if ch not found)
1581 wxString
wxString::AfterLast(wxChar ch
) const
1584 int iPos
= Find(ch
, true);
1585 if ( iPos
== wxNOT_FOUND
)
1588 str
= c_str() + iPos
+ 1;
1593 // extract nCount first (leftmost) characters
1594 wxString
wxString::Left(size_t nCount
) const
1596 if ( nCount
> length() )
1599 wxString
dest(*this, 0, nCount
);
1600 if ( dest
.length() != nCount
) {
1601 wxFAIL_MSG( _T("out of memory in wxString::Left") );
1606 // get all characters before the first occurence of ch
1607 // (returns the whole string if ch not found)
1608 wxString
wxString::BeforeFirst(wxChar ch
) const
1610 int iPos
= Find(ch
);
1611 if ( iPos
== wxNOT_FOUND
) iPos
= length();
1612 return wxString(*this, 0, iPos
);
1615 /// get all characters before the last occurence of ch
1616 /// (returns empty string if ch not found)
1617 wxString
wxString::BeforeLast(wxChar ch
) const
1620 int iPos
= Find(ch
, true);
1621 if ( iPos
!= wxNOT_FOUND
&& iPos
!= 0 )
1622 str
= wxString(c_str(), iPos
);
1627 /// get all characters after the first occurence of ch
1628 /// (returns empty string if ch not found)
1629 wxString
wxString::AfterFirst(wxChar ch
) const
1632 int iPos
= Find(ch
);
1633 if ( iPos
!= wxNOT_FOUND
)
1634 str
= c_str() + iPos
+ 1;
1639 // replace first (or all) occurences of some substring with another one
1641 wxString::Replace(const wxChar
*szOld
, const wxChar
*szNew
, bool bReplaceAll
)
1643 // if we tried to replace an empty string we'd enter an infinite loop below
1644 wxCHECK_MSG( szOld
&& *szOld
&& szNew
, 0,
1645 _T("wxString::Replace(): invalid parameter") );
1647 size_t uiCount
= 0; // count of replacements made
1649 size_t uiOldLen
= wxStrlen(szOld
);
1652 const wxChar
*pCurrent
= c_str();
1653 const wxChar
*pSubstr
;
1654 while ( *pCurrent
!= wxT('\0') ) {
1655 pSubstr
= wxStrstr(pCurrent
, szOld
);
1656 if ( pSubstr
== NULL
) {
1657 // strTemp is unused if no replacements were made, so avoid the copy
1661 strTemp
+= pCurrent
; // copy the rest
1662 break; // exit the loop
1665 // take chars before match
1666 size_type len
= strTemp
.length();
1667 strTemp
.append(pCurrent
, pSubstr
- pCurrent
);
1668 if ( strTemp
.length() != (size_t)(len
+ pSubstr
- pCurrent
) ) {
1669 wxFAIL_MSG( _T("out of memory in wxString::Replace") );
1673 pCurrent
= pSubstr
+ uiOldLen
; // restart after match
1678 if ( !bReplaceAll
) {
1679 strTemp
+= pCurrent
; // copy the rest
1680 break; // exit the loop
1685 // only done if there were replacements, otherwise would have returned above
1691 bool wxString::IsAscii() const
1693 const wxChar
*s
= (const wxChar
*) *this;
1695 if(!isascii(*s
)) return(false);
1701 bool wxString::IsWord() const
1703 const wxChar
*s
= (const wxChar
*) *this;
1705 if(!wxIsalpha(*s
)) return(false);
1711 bool wxString::IsNumber() const
1713 const wxChar
*s
= (const wxChar
*) *this;
1715 if ((s
[0] == wxT('-')) || (s
[0] == wxT('+'))) s
++;
1717 if(!wxIsdigit(*s
)) return(false);
1723 wxString
wxString::Strip(stripType w
) const
1726 if ( w
& leading
) s
.Trim(false);
1727 if ( w
& trailing
) s
.Trim(true);
1731 // ---------------------------------------------------------------------------
1733 // ---------------------------------------------------------------------------
1735 wxString
& wxString::MakeUpper()
1737 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1738 *it
= (wxChar
)wxToupper(*it
);
1743 wxString
& wxString::MakeLower()
1745 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1746 *it
= (wxChar
)wxTolower(*it
);
1751 // ---------------------------------------------------------------------------
1752 // trimming and padding
1753 // ---------------------------------------------------------------------------
1755 // some compilers (VC++ 6.0 not to name them) return true for a call to
1756 // isspace('ê') in the C locale which seems to be broken to me, but we have to
1757 // live with this by checking that the character is a 7 bit one - even if this
1758 // may fail to detect some spaces (I don't know if Unicode doesn't have
1759 // space-like symbols somewhere except in the first 128 chars), it is arguably
1760 // still better than trimming away accented letters
1761 inline int wxSafeIsspace(wxChar ch
) { return (ch
< 127) && wxIsspace(ch
); }
1763 // trims spaces (in the sense of isspace) from left or right side
1764 wxString
& wxString::Trim(bool bFromRight
)
1766 // first check if we're going to modify the string at all
1769 (bFromRight
&& wxSafeIsspace(GetChar(Len() - 1))) ||
1770 (!bFromRight
&& wxSafeIsspace(GetChar(0u)))
1776 // find last non-space character
1777 iterator psz
= begin() + length() - 1;
1778 while ( wxSafeIsspace(*psz
) && (psz
>= begin()) )
1781 // truncate at trailing space start
1787 // find first non-space character
1788 iterator psz
= begin();
1789 while ( wxSafeIsspace(*psz
) )
1792 // fix up data and length
1793 erase(begin(), psz
);
1800 // adds nCount characters chPad to the string from either side
1801 wxString
& wxString::Pad(size_t nCount
, wxChar chPad
, bool bFromRight
)
1803 wxString
s(chPad
, nCount
);
1816 // truncate the string
1817 wxString
& wxString::Truncate(size_t uiLen
)
1819 if ( uiLen
< Len() ) {
1820 erase(begin() + uiLen
, end());
1822 //else: nothing to do, string is already short enough
1827 // ---------------------------------------------------------------------------
1828 // finding (return wxNOT_FOUND if not found and index otherwise)
1829 // ---------------------------------------------------------------------------
1832 int wxString::Find(wxChar ch
, bool bFromEnd
) const
1834 size_type idx
= bFromEnd
? find_last_of(ch
) : find_first_of(ch
);
1836 return (idx
== npos
) ? wxNOT_FOUND
: (int)idx
;
1839 // find a sub-string (like strstr)
1840 int wxString::Find(const wxChar
*pszSub
) const
1842 size_type idx
= find(pszSub
);
1844 return (idx
== npos
) ? wxNOT_FOUND
: (int)idx
;
1847 // ----------------------------------------------------------------------------
1848 // conversion to numbers
1849 // ----------------------------------------------------------------------------
1851 bool wxString::ToLong(long *val
, int base
) const
1853 wxCHECK_MSG( val
, false, _T("NULL pointer in wxString::ToLong") );
1854 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1856 const wxChar
*start
= c_str();
1858 *val
= wxStrtol(start
, &end
, base
);
1860 // return true only if scan was stopped by the terminating NUL and if the
1861 // string was not empty to start with
1862 return !*end
&& (end
!= start
);
1865 bool wxString::ToULong(unsigned long *val
, int base
) const
1867 wxCHECK_MSG( val
, false, _T("NULL pointer in wxString::ToULong") );
1868 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1870 const wxChar
*start
= c_str();
1872 *val
= wxStrtoul(start
, &end
, base
);
1874 // return true only if scan was stopped by the terminating NUL and if the
1875 // string was not empty to start with
1876 return !*end
&& (end
!= start
);
1879 bool wxString::ToDouble(double *val
) const
1881 wxCHECK_MSG( val
, false, _T("NULL pointer in wxString::ToDouble") );
1883 const wxChar
*start
= c_str();
1885 *val
= wxStrtod(start
, &end
);
1887 // return true only if scan was stopped by the terminating NUL and if the
1888 // string was not empty to start with
1889 return !*end
&& (end
!= start
);
1892 // ---------------------------------------------------------------------------
1894 // ---------------------------------------------------------------------------
1897 wxString
wxString::Format(const wxChar
*pszFormat
, ...)
1900 va_start(argptr
, pszFormat
);
1903 s
.PrintfV(pszFormat
, argptr
);
1911 wxString
wxString::FormatV(const wxChar
*pszFormat
, va_list argptr
)
1914 s
.PrintfV(pszFormat
, argptr
);
1918 int wxString::Printf(const wxChar
*pszFormat
, ...)
1921 va_start(argptr
, pszFormat
);
1923 int iLen
= PrintfV(pszFormat
, argptr
);
1930 int wxString::PrintfV(const wxChar
* pszFormat
, va_list argptr
)
1938 wxStringBuffer
tmp(*this, size
+ 1);
1947 // wxVsnprintf() may modify the original arg pointer, so pass it
1950 wxVaCopy(argptrcopy
, argptr
);
1951 len
= wxVsnprintf(buf
, size
, pszFormat
, argptrcopy
);
1954 // some implementations of vsnprintf() don't NUL terminate
1955 // the string if there is not enough space for it so
1956 // always do it manually
1957 buf
[size
] = _T('\0');
1960 // vsnprintf() may return either -1 (traditional Unix behaviour) or the
1961 // total number of characters which would have been written if the
1962 // buffer were large enough
1963 if ( len
>= 0 && len
<= size
)
1965 // ok, there was enough space
1969 // still not enough, double it again
1973 // we could have overshot
1979 // ----------------------------------------------------------------------------
1980 // misc other operations
1981 // ----------------------------------------------------------------------------
1983 // returns true if the string matches the pattern which may contain '*' and
1984 // '?' metacharacters (as usual, '?' matches any character and '*' any number
1986 bool wxString::Matches(const wxChar
*pszMask
) const
1988 // I disable this code as it doesn't seem to be faster (in fact, it seems
1989 // to be much slower) than the old, hand-written code below and using it
1990 // here requires always linking with libregex even if the user code doesn't
1992 #if 0 // wxUSE_REGEX
1993 // first translate the shell-like mask into a regex
1995 pattern
.reserve(wxStrlen(pszMask
));
2007 pattern
+= _T(".*");
2018 // these characters are special in a RE, quote them
2019 // (however note that we don't quote '[' and ']' to allow
2020 // using them for Unix shell like matching)
2021 pattern
+= _T('\\');
2025 pattern
+= *pszMask
;
2033 return wxRegEx(pattern
, wxRE_NOSUB
| wxRE_EXTENDED
).Matches(c_str());
2034 #else // !wxUSE_REGEX
2035 // TODO: this is, of course, awfully inefficient...
2037 // the char currently being checked
2038 const wxChar
*pszTxt
= c_str();
2040 // the last location where '*' matched
2041 const wxChar
*pszLastStarInText
= NULL
;
2042 const wxChar
*pszLastStarInMask
= NULL
;
2045 for ( ; *pszMask
!= wxT('\0'); pszMask
++, pszTxt
++ ) {
2046 switch ( *pszMask
) {
2048 if ( *pszTxt
== wxT('\0') )
2051 // pszTxt and pszMask will be incremented in the loop statement
2057 // remember where we started to be able to backtrack later
2058 pszLastStarInText
= pszTxt
;
2059 pszLastStarInMask
= pszMask
;
2061 // ignore special chars immediately following this one
2062 // (should this be an error?)
2063 while ( *pszMask
== wxT('*') || *pszMask
== wxT('?') )
2066 // if there is nothing more, match
2067 if ( *pszMask
== wxT('\0') )
2070 // are there any other metacharacters in the mask?
2072 const wxChar
*pEndMask
= wxStrpbrk(pszMask
, wxT("*?"));
2074 if ( pEndMask
!= NULL
) {
2075 // we have to match the string between two metachars
2076 uiLenMask
= pEndMask
- pszMask
;
2079 // we have to match the remainder of the string
2080 uiLenMask
= wxStrlen(pszMask
);
2083 wxString
strToMatch(pszMask
, uiLenMask
);
2084 const wxChar
* pMatch
= wxStrstr(pszTxt
, strToMatch
);
2085 if ( pMatch
== NULL
)
2088 // -1 to compensate "++" in the loop
2089 pszTxt
= pMatch
+ uiLenMask
- 1;
2090 pszMask
+= uiLenMask
- 1;
2095 if ( *pszMask
!= *pszTxt
)
2101 // match only if nothing left
2102 if ( *pszTxt
== wxT('\0') )
2105 // if we failed to match, backtrack if we can
2106 if ( pszLastStarInText
) {
2107 pszTxt
= pszLastStarInText
+ 1;
2108 pszMask
= pszLastStarInMask
;
2110 pszLastStarInText
= NULL
;
2112 // don't bother resetting pszLastStarInMask, it's unnecessary
2118 #endif // wxUSE_REGEX/!wxUSE_REGEX
2121 // Count the number of chars
2122 int wxString::Freq(wxChar ch
) const
2126 for (int i
= 0; i
< len
; i
++)
2128 if (GetChar(i
) == ch
)
2134 // convert to upper case, return the copy of the string
2135 wxString
wxString::Upper() const
2136 { wxString
s(*this); return s
.MakeUpper(); }
2138 // convert to lower case, return the copy of the string
2139 wxString
wxString::Lower() const { wxString
s(*this); return s
.MakeLower(); }
2141 int wxString::sprintf(const wxChar
*pszFormat
, ...)
2144 va_start(argptr
, pszFormat
);
2145 int iLen
= PrintfV(pszFormat
, argptr
);
2150 // ============================================================================
2152 // ============================================================================
2154 #include "wx/arrstr.h"
2158 // size increment = min(50% of current size, ARRAY_MAXSIZE_INCREMENT)
2159 #define ARRAY_MAXSIZE_INCREMENT 4096
2161 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
2162 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
2165 #define STRING(p) ((wxString *)(&(p)))
2168 void wxArrayString::Init(bool autoSort
)
2172 m_pItems
= (wxChar
**) NULL
;
2173 m_autoSort
= autoSort
;
2177 wxArrayString::wxArrayString(const wxArrayString
& src
)
2179 Init(src
.m_autoSort
);
2184 // assignment operator
2185 wxArrayString
& wxArrayString::operator=(const wxArrayString
& src
)
2192 m_autoSort
= src
.m_autoSort
;
2197 void wxArrayString::Copy(const wxArrayString
& src
)
2199 if ( src
.m_nCount
> ARRAY_DEFAULT_INITIAL_SIZE
)
2200 Alloc(src
.m_nCount
);
2202 for ( size_t n
= 0; n
< src
.m_nCount
; n
++ )
2207 void wxArrayString::Grow(size_t nIncrement
)
2209 // only do it if no more place
2210 if ( (m_nSize
- m_nCount
) < nIncrement
) {
2211 // if ARRAY_DEFAULT_INITIAL_SIZE were set to 0, the initially empty would
2212 // be never resized!
2213 #if ARRAY_DEFAULT_INITIAL_SIZE == 0
2214 #error "ARRAY_DEFAULT_INITIAL_SIZE must be > 0!"
2217 if ( m_nSize
== 0 ) {
2218 // was empty, alloc some memory
2219 m_nSize
= ARRAY_DEFAULT_INITIAL_SIZE
;
2220 if (m_nSize
< nIncrement
)
2221 m_nSize
= nIncrement
;
2222 m_pItems
= new wxChar
*[m_nSize
];
2225 // otherwise when it's called for the first time, nIncrement would be 0
2226 // and the array would never be expanded
2227 // add 50% but not too much
2228 size_t ndefIncrement
= m_nSize
< ARRAY_DEFAULT_INITIAL_SIZE
2229 ? ARRAY_DEFAULT_INITIAL_SIZE
: m_nSize
>> 1;
2230 if ( ndefIncrement
> ARRAY_MAXSIZE_INCREMENT
)
2231 ndefIncrement
= ARRAY_MAXSIZE_INCREMENT
;
2232 if ( nIncrement
< ndefIncrement
)
2233 nIncrement
= ndefIncrement
;
2234 m_nSize
+= nIncrement
;
2235 wxChar
**pNew
= new wxChar
*[m_nSize
];
2237 // copy data to new location
2238 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
2240 // delete old memory (but do not release the strings!)
2241 wxDELETEA(m_pItems
);
2248 void wxArrayString::Free()
2250 for ( size_t n
= 0; n
< m_nCount
; n
++ ) {
2251 STRING(m_pItems
[n
])->GetStringData()->Unlock();
2255 // deletes all the strings from the list
2256 void wxArrayString::Empty()
2263 // as Empty, but also frees memory
2264 void wxArrayString::Clear()
2271 wxDELETEA(m_pItems
);
2275 wxArrayString::~wxArrayString()
2279 wxDELETEA(m_pItems
);
2282 void wxArrayString::reserve(size_t nSize
)
2287 // pre-allocates memory (frees the previous data!)
2288 void wxArrayString::Alloc(size_t nSize
)
2290 // only if old buffer was not big enough
2291 if ( nSize
> m_nSize
) {
2293 wxDELETEA(m_pItems
);
2294 m_pItems
= new wxChar
*[nSize
];
2301 // minimizes the memory usage by freeing unused memory
2302 void wxArrayString::Shrink()
2304 // only do it if we have some memory to free
2305 if( m_nCount
< m_nSize
) {
2306 // allocates exactly as much memory as we need
2307 wxChar
**pNew
= new wxChar
*[m_nCount
];
2309 // copy data to new location
2310 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
2316 #if WXWIN_COMPATIBILITY_2_4
2318 // return a wxString[] as required for some control ctors.
2319 wxString
* wxArrayString::GetStringArray() const
2321 wxString
*array
= 0;
2325 array
= new wxString
[m_nCount
];
2326 for( size_t i
= 0; i
< m_nCount
; i
++ )
2327 array
[i
] = m_pItems
[i
];
2333 #endif // WXWIN_COMPATIBILITY_2_4
2335 // searches the array for an item (forward or backwards)
2336 int wxArrayString::Index(const wxChar
*sz
, bool bCase
, bool bFromEnd
) const
2339 // use binary search in the sorted array
2340 wxASSERT_MSG( bCase
&& !bFromEnd
,
2341 wxT("search parameters ignored for auto sorted array") );
2350 res
= wxStrcmp(sz
, m_pItems
[i
]);
2362 // use linear search in unsorted array
2364 if ( m_nCount
> 0 ) {
2365 size_t ui
= m_nCount
;
2367 if ( STRING(m_pItems
[--ui
])->IsSameAs(sz
, bCase
) )
2374 for( size_t ui
= 0; ui
< m_nCount
; ui
++ ) {
2375 if( STRING(m_pItems
[ui
])->IsSameAs(sz
, bCase
) )
2384 // add item at the end
2385 size_t wxArrayString::Add(const wxString
& str
, size_t nInsert
)
2388 // insert the string at the correct position to keep the array sorted
2396 res
= str
.Cmp(m_pItems
[i
]);
2407 wxASSERT_MSG( lo
== hi
, wxT("binary search broken") );
2409 Insert(str
, lo
, nInsert
);
2414 wxASSERT( str
.GetStringData()->IsValid() );
2418 for (size_t i
= 0; i
< nInsert
; i
++)
2420 // the string data must not be deleted!
2421 str
.GetStringData()->Lock();
2424 m_pItems
[m_nCount
+ i
] = (wxChar
*)str
.c_str(); // const_cast
2426 size_t ret
= m_nCount
;
2427 m_nCount
+= nInsert
;
2432 // add item at the given position
2433 void wxArrayString::Insert(const wxString
& str
, size_t nIndex
, size_t nInsert
)
2435 wxASSERT( str
.GetStringData()->IsValid() );
2437 wxCHECK_RET( nIndex
<= m_nCount
, wxT("bad index in wxArrayString::Insert") );
2438 wxCHECK_RET( m_nCount
<= m_nCount
+ nInsert
,
2439 wxT("array size overflow in wxArrayString::Insert") );
2443 memmove(&m_pItems
[nIndex
+ nInsert
], &m_pItems
[nIndex
],
2444 (m_nCount
- nIndex
)*sizeof(wxChar
*));
2446 for (size_t i
= 0; i
< nInsert
; i
++)
2448 str
.GetStringData()->Lock();
2449 m_pItems
[nIndex
+ i
] = (wxChar
*)str
.c_str();
2451 m_nCount
+= nInsert
;
2454 // range insert (STL 23.2.4.3)
2456 wxArrayString::insert(iterator it
, const_iterator first
, const_iterator last
)
2458 const int idx
= it
- begin();
2463 // reset "it" since it can change inside Grow()
2466 while ( first
!= last
)
2468 it
= insert(it
, *first
);
2470 // insert returns an iterator to the last element inserted but we need
2471 // insert the next after this one, that is before the next one
2479 void wxArrayString::SetCount(size_t count
)
2484 while ( m_nCount
< count
)
2485 m_pItems
[m_nCount
++] = (wxChar
*)s
.c_str();
2488 // removes item from array (by index)
2489 void wxArrayString::RemoveAt(size_t nIndex
, size_t nRemove
)
2491 wxCHECK_RET( nIndex
< m_nCount
, wxT("bad index in wxArrayString::Remove") );
2492 wxCHECK_RET( nIndex
+ nRemove
<= m_nCount
,
2493 wxT("removing too many elements in wxArrayString::Remove") );
2496 for (size_t i
= 0; i
< nRemove
; i
++)
2497 Item(nIndex
+ i
).GetStringData()->Unlock();
2499 memmove(&m_pItems
[nIndex
], &m_pItems
[nIndex
+ nRemove
],
2500 (m_nCount
- nIndex
- nRemove
)*sizeof(wxChar
*));
2501 m_nCount
-= nRemove
;
2504 // removes item from array (by value)
2505 void wxArrayString::Remove(const wxChar
*sz
)
2507 int iIndex
= Index(sz
);
2509 wxCHECK_RET( iIndex
!= wxNOT_FOUND
,
2510 wxT("removing inexistent element in wxArrayString::Remove") );
2515 void wxArrayString::assign(const_iterator first
, const_iterator last
)
2517 reserve(last
- first
);
2518 for(; first
!= last
; ++first
)
2522 // ----------------------------------------------------------------------------
2524 // ----------------------------------------------------------------------------
2526 // we can only sort one array at a time with the quick-sort based
2529 // need a critical section to protect access to gs_compareFunction and
2530 // gs_sortAscending variables
2531 static wxCriticalSection
*gs_critsectStringSort
= NULL
;
2533 // call this before the value of the global sort vars is changed/after
2534 // you're finished with them
2535 #define START_SORT() wxASSERT( !gs_critsectStringSort ); \
2536 gs_critsectStringSort = new wxCriticalSection; \
2537 gs_critsectStringSort->Enter()
2538 #define END_SORT() gs_critsectStringSort->Leave(); \
2539 delete gs_critsectStringSort; \
2540 gs_critsectStringSort = NULL
2542 #define START_SORT()
2544 #endif // wxUSE_THREADS
2546 // function to use for string comparaison
2547 static wxArrayString::CompareFunction gs_compareFunction
= NULL
;
2549 // if we don't use the compare function, this flag tells us if we sort the
2550 // array in ascending or descending order
2551 static bool gs_sortAscending
= true;
2553 // function which is called by quick sort
2554 extern "C" int wxC_CALLING_CONV
// LINKAGEMODE
2555 wxStringCompareFunction(const void *first
, const void *second
)
2557 wxString
*strFirst
= (wxString
*)first
;
2558 wxString
*strSecond
= (wxString
*)second
;
2560 if ( gs_compareFunction
) {
2561 return gs_compareFunction(*strFirst
, *strSecond
);
2564 // maybe we should use wxStrcoll
2565 int result
= strFirst
->Cmp(*strSecond
);
2567 return gs_sortAscending
? result
: -result
;
2571 // sort array elements using passed comparaison function
2572 void wxArrayString::Sort(CompareFunction compareFunction
)
2576 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2577 gs_compareFunction
= compareFunction
;
2581 // reset it to NULL so that Sort(bool) will work the next time
2582 gs_compareFunction
= NULL
;
2587 typedef int (wxC_CALLING_CONV
* wxStringCompareFn
)(const void *first
, const void *second
);
2589 void wxArrayString::Sort(CompareFunction2 compareFunction
)
2591 qsort(m_pItems
, m_nCount
, sizeof(wxChar
*), (wxStringCompareFn
)compareFunction
);
2594 void wxArrayString::Sort(bool reverseOrder
)
2596 Sort(reverseOrder
? wxStringSortDescending
: wxStringSortAscending
);
2599 void wxArrayString::DoSort()
2601 wxCHECK_RET( !m_autoSort
, wxT("can't use this method with sorted arrays") );
2603 // just sort the pointers using qsort() - of course it only works because
2604 // wxString() *is* a pointer to its data
2605 qsort(m_pItems
, m_nCount
, sizeof(wxChar
*), wxStringCompareFunction
);
2608 bool wxArrayString::operator==(const wxArrayString
& a
) const
2610 if ( m_nCount
!= a
.m_nCount
)
2613 for ( size_t n
= 0; n
< m_nCount
; n
++ )
2615 if ( Item(n
) != a
[n
] )
2622 #endif // !wxUSE_STL
2624 int wxCMPFUNC_CONV
wxStringSortAscending(wxString
* s1
, wxString
* s2
)
2626 return s1
->Cmp(*s2
);
2629 int wxCMPFUNC_CONV
wxStringSortDescending(wxString
* s1
, wxString
* s2
)
2631 return -s1
->Cmp(*s2
);