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!
103 wxSTD istream
& operator>>(wxSTD istream
& is
, wxString
& WXUNUSED(str
))
108 streambuf
*sb
= is
.rdbuf();
111 int ch
= sb
->sbumpc ();
113 is
.setstate(ios::eofbit
);
116 else if ( isspace(ch
) ) {
128 if ( str
.length() == 0 )
129 is
.setstate(ios::failbit
);
134 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxString
& str
)
140 #endif // wxUSE_STD_IOSTREAM
142 // ----------------------------------------------------------------------------
144 // ----------------------------------------------------------------------------
146 // this small class is used to gather statistics for performance tuning
147 //#define WXSTRING_STATISTICS
148 #ifdef WXSTRING_STATISTICS
152 Averager(const wxChar
*sz
) { m_sz
= sz
; m_nTotal
= m_nCount
= 0; }
154 { wxPrintf("wxString: average %s = %f\n", m_sz
, ((float)m_nTotal
)/m_nCount
); }
156 void Add(size_t n
) { m_nTotal
+= n
; m_nCount
++; }
159 size_t m_nCount
, m_nTotal
;
161 } g_averageLength("allocation size"),
162 g_averageSummandLength("summand length"),
163 g_averageConcatHit("hit probability in concat"),
164 g_averageInitialLength("initial string length");
166 #define STATISTICS_ADD(av, val) g_average##av.Add(val)
168 #define STATISTICS_ADD(av, val)
169 #endif // WXSTRING_STATISTICS
171 // ===========================================================================
172 // wxStringData class deallocation
173 // ===========================================================================
175 #if defined(__VISUALC__) && defined(_MT) && !defined(_DLL)
176 # pragma message (__FILE__ ": building with Multithreaded non DLL runtime has a performance impact on wxString!")
177 void wxStringData::Free()
185 // ===========================================================================
187 // ===========================================================================
189 // takes nLength elements of psz starting at nPos
190 void wxStringBase::InitWith(const wxChar
*psz
, size_t nPos
, size_t nLength
)
194 // if the length is not given, assume the string to be NUL terminated
195 if ( nLength
== npos
) {
196 wxASSERT_MSG( nPos
<= wxStrlen(psz
), _T("index out of bounds") );
198 nLength
= wxStrlen(psz
+ nPos
);
201 STATISTICS_ADD(InitialLength
, nLength
);
204 // trailing '\0' is written in AllocBuffer()
205 if ( !AllocBuffer(nLength
) ) {
206 wxFAIL_MSG( _T("out of memory in wxStringBase::InitWith") );
209 memcpy(m_pchData
, psz
+ nPos
, nLength
*sizeof(wxChar
));
213 // poor man's iterators are "void *" pointers
214 wxStringBase::wxStringBase(const void *pStart
, const void *pEnd
)
216 InitWith((const wxChar
*)pStart
, 0,
217 (const wxChar
*)pEnd
- (const wxChar
*)pStart
);
220 wxStringBase::wxStringBase(size_type n
, wxChar ch
)
226 // ---------------------------------------------------------------------------
228 // ---------------------------------------------------------------------------
230 // allocates memory needed to store a C string of length nLen
231 bool wxStringBase::AllocBuffer(size_t nLen
)
233 // allocating 0 sized buffer doesn't make sense, all empty strings should
235 wxASSERT( nLen
> 0 );
237 // make sure that we don't overflow
238 wxASSERT( nLen
< (INT_MAX
/ sizeof(wxChar
)) -
239 (sizeof(wxStringData
) + EXTRA_ALLOC
+ 1) );
241 STATISTICS_ADD(Length
, nLen
);
244 // 1) one extra character for '\0' termination
245 // 2) sizeof(wxStringData) for housekeeping info
246 wxStringData
* pData
= (wxStringData
*)
247 malloc(sizeof(wxStringData
) + (nLen
+ EXTRA_ALLOC
+ 1)*sizeof(wxChar
));
249 if ( pData
== NULL
) {
250 // allocation failures are handled by the caller
255 pData
->nDataLength
= nLen
;
256 pData
->nAllocLength
= nLen
+ EXTRA_ALLOC
;
257 m_pchData
= pData
->data(); // data starts after wxStringData
258 m_pchData
[nLen
] = wxT('\0');
262 // must be called before changing this string
263 bool wxStringBase::CopyBeforeWrite()
265 wxStringData
* pData
= GetStringData();
267 if ( pData
->IsShared() ) {
268 pData
->Unlock(); // memory not freed because shared
269 size_t nLen
= pData
->nDataLength
;
270 if ( !AllocBuffer(nLen
) ) {
271 // allocation failures are handled by the caller
274 memcpy(m_pchData
, pData
->data(), nLen
*sizeof(wxChar
));
277 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
282 // must be called before replacing contents of this string
283 bool wxStringBase::AllocBeforeWrite(size_t nLen
)
285 wxASSERT( nLen
!= 0 ); // doesn't make any sense
287 // must not share string and must have enough space
288 wxStringData
* pData
= GetStringData();
289 if ( pData
->IsShared() || pData
->IsEmpty() ) {
290 // can't work with old buffer, get new one
292 if ( !AllocBuffer(nLen
) ) {
293 // allocation failures are handled by the caller
298 if ( nLen
> pData
->nAllocLength
) {
299 // realloc the buffer instead of calling malloc() again, this is more
301 STATISTICS_ADD(Length
, nLen
);
305 pData
= (wxStringData
*)
306 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
308 if ( pData
== NULL
) {
309 // allocation failures are handled by the caller
310 // keep previous data since reallocation failed
314 pData
->nAllocLength
= nLen
;
315 m_pchData
= pData
->data();
318 // now we have enough space, just update the string length
319 pData
->nDataLength
= nLen
;
322 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
327 wxStringBase
& wxStringBase::append(size_t n
, wxChar ch
)
329 size_type len
= length();
331 if ( !CopyBeforeWrite() || !Alloc(len
+ n
) ) {
332 wxFAIL_MSG( _T("out of memory in wxStringBase::append") );
334 GetStringData()->nDataLength
= len
+ n
;
335 m_pchData
[len
+ n
] = '\0';
336 for ( size_t i
= 0; i
< n
; ++i
)
337 m_pchData
[len
+ i
] = ch
;
341 void wxStringBase::resize(size_t nSize
, wxChar ch
)
343 size_t len
= length();
347 erase(begin() + nSize
, end());
349 else if ( nSize
> len
)
351 append(nSize
- len
, ch
);
353 //else: we have exactly the specified length, nothing to do
356 // allocate enough memory for nLen characters
357 bool wxStringBase::Alloc(size_t nLen
)
359 wxStringData
*pData
= GetStringData();
360 if ( pData
->nAllocLength
<= nLen
) {
361 if ( pData
->IsEmpty() ) {
364 wxStringData
* pData
= (wxStringData
*)
365 malloc(sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
367 if ( pData
== NULL
) {
368 // allocation failure handled by caller
373 pData
->nDataLength
= 0;
374 pData
->nAllocLength
= nLen
;
375 m_pchData
= pData
->data(); // data starts after wxStringData
376 m_pchData
[0u] = wxT('\0');
378 else if ( pData
->IsShared() ) {
379 pData
->Unlock(); // memory not freed because shared
380 size_t nOldLen
= pData
->nDataLength
;
381 if ( !AllocBuffer(nLen
) ) {
382 // allocation failure handled by caller
385 memcpy(m_pchData
, pData
->data(), nOldLen
*sizeof(wxChar
));
390 pData
= (wxStringData
*)
391 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
393 if ( pData
== NULL
) {
394 // allocation failure handled by caller
395 // keep previous data since reallocation failed
399 // it's not important if the pointer changed or not (the check for this
400 // is not faster than assigning to m_pchData in all cases)
401 pData
->nAllocLength
= nLen
;
402 m_pchData
= pData
->data();
405 //else: we've already got enough
409 wxStringBase::iterator
wxStringBase::erase(iterator it
)
411 size_type idx
= it
- begin();
413 return begin() + idx
;
416 wxStringBase
& wxStringBase::erase(size_t nStart
, size_t nLen
)
418 wxASSERT(nStart
<= length());
419 size_t strLen
= length() - nStart
;
420 // delete nLen or up to the end of the string characters
421 nLen
= strLen
< nLen
? strLen
: nLen
;
422 wxString
strTmp(c_str(), nStart
);
423 strTmp
.append(c_str() + nStart
+ nLen
, length() - nStart
- nLen
);
429 wxStringBase
& wxStringBase::insert(size_t nPos
, const wxChar
*sz
, size_t n
)
431 wxASSERT( nPos
<= length() );
433 if ( n
== npos
) n
= wxStrlen(sz
);
434 if ( n
== 0 ) return *this;
436 if ( !CopyBeforeWrite() || !Alloc(length() + n
) ) {
437 wxFAIL_MSG( _T("out of memory in wxStringBase::insert") );
440 memmove(m_pchData
+ nPos
+ n
, m_pchData
+ nPos
,
441 (length() - nPos
) * sizeof(wxChar
));
442 memcpy(m_pchData
+ nPos
, sz
, n
* sizeof(wxChar
));
443 GetStringData()->nDataLength
= length() + n
;
444 m_pchData
[length()] = '\0';
449 void wxStringBase::swap(wxStringBase
& str
)
451 wxChar
* tmp
= str
.m_pchData
;
452 str
.m_pchData
= m_pchData
;
456 size_t wxStringBase::find(const wxStringBase
& str
, size_t nStart
) const
458 wxASSERT( str
.GetStringData()->IsValid() );
459 wxASSERT( nStart
<= length() );
461 const wxChar
*p
= wxStrstr(c_str() + nStart
, str
.c_str());
463 return p
== NULL
? npos
: p
- c_str();
466 size_t wxStringBase::find(const wxChar
* sz
, size_t nStart
, size_t n
) const
468 return find(wxStringBase(sz
, n
), nStart
);
471 size_t wxStringBase::find(wxChar ch
, size_t nStart
) const
473 wxASSERT( nStart
<= length() );
475 const wxChar
*p
= wxStrchr(c_str() + nStart
, ch
);
477 return p
== NULL
? npos
: p
- c_str();
480 size_t wxStringBase::rfind(const wxStringBase
& str
, size_t nStart
) const
482 wxASSERT( str
.GetStringData()->IsValid() );
483 wxASSERT( nStart
== npos
|| nStart
<= length() );
485 // TODO could be made much quicker than that
486 const wxChar
*p
= c_str() + (nStart
== npos
? length() : nStart
);
487 while ( p
>= c_str() + str
.length() ) {
488 if ( wxStrncmp(p
- str
.length(), str
.c_str(), str
.length()) == 0 )
489 return p
- str
.length() - c_str();
496 size_t wxStringBase::rfind(const wxChar
* sz
, size_t nStart
, size_t n
) const
498 return rfind(wxStringBase(sz
, n
), nStart
);
501 size_t wxStringBase::rfind(wxChar ch
, size_t nStart
) const
503 if ( nStart
== npos
)
509 wxASSERT( nStart
<= length() );
512 const wxChar
*actual
;
513 for ( actual
= c_str() + ( nStart
== npos
? length() : nStart
+ 1 );
514 actual
> c_str(); --actual
)
516 if ( *(actual
- 1) == ch
)
517 return (actual
- 1) - c_str();
523 size_t wxStringBase::find_first_of(const wxChar
* sz
, size_t nStart
) const
525 const wxChar
*start
= c_str() + nStart
;
526 const wxChar
*firstOf
= wxStrpbrk(start
, sz
);
528 return firstOf
- c_str();
533 size_t wxStringBase::find_last_of(const wxChar
* sz
, size_t nStart
) const
535 if ( nStart
== npos
)
541 wxASSERT_MSG( nStart
<= length(),
542 _T("invalid index in find_last_of()") );
545 for ( const wxChar
*p
= c_str() + nStart
- 1; p
>= c_str(); p
-- )
547 if ( wxStrchr(sz
, *p
) )
554 size_t wxStringBase::find_first_not_of(const wxChar
* sz
, size_t nStart
) const
556 if ( nStart
== npos
)
562 wxASSERT( nStart
<= length() );
565 size_t nAccept
= wxStrspn(c_str() + nStart
, sz
);
566 if ( nAccept
>= length() - nStart
)
572 size_t wxStringBase::find_first_not_of(wxChar ch
, size_t nStart
) const
574 wxASSERT( nStart
<= length() );
576 for ( const wxChar
*p
= c_str() + nStart
; *p
; p
++ )
585 size_t wxStringBase::find_last_not_of(const wxChar
* sz
, size_t nStart
) const
587 if ( nStart
== npos
)
593 wxASSERT( nStart
<= length() );
596 for ( const wxChar
*p
= c_str() + nStart
- 1; p
>= c_str(); p
-- )
598 if ( !wxStrchr(sz
, *p
) )
605 size_t wxStringBase::find_last_not_of(wxChar ch
, size_t nStart
) const
607 if ( nStart
== npos
)
613 wxASSERT( nStart
<= length() );
616 for ( const wxChar
*p
= c_str() + nStart
- 1; p
>= c_str(); p
-- )
625 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
628 wxASSERT_MSG( nStart
<= length(),
629 _T("index out of bounds in wxStringBase::replace") );
630 size_t strLen
= length() - nStart
;
631 nLen
= strLen
< nLen
? strLen
: nLen
;
634 strTmp
.reserve(length()); // micro optimisation to avoid multiple mem allocs
637 strTmp
.append(c_str(), nStart
);
639 strTmp
.append(c_str() + nStart
+ nLen
);
645 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
646 size_t nCount
, wxChar ch
)
648 return replace(nStart
, nLen
, wxStringBase(ch
, nCount
).c_str());
651 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
652 const wxStringBase
& str
,
653 size_t nStart2
, size_t nLen2
)
655 return replace(nStart
, nLen
, str
.substr(nStart2
, nLen2
));
658 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
659 const wxChar
* sz
, size_t nCount
)
661 return replace(nStart
, nLen
, wxStringBase(sz
, nCount
).c_str());
664 wxStringBase
wxStringBase::substr(size_t nStart
, size_t nLen
) const
667 nLen
= length() - nStart
;
668 return wxStringBase(*this, nStart
, nLen
);
671 // assigns one string to another
672 wxStringBase
& wxStringBase::operator=(const wxStringBase
& stringSrc
)
674 wxASSERT( stringSrc
.GetStringData()->IsValid() );
676 // don't copy string over itself
677 if ( m_pchData
!= stringSrc
.m_pchData
) {
678 if ( stringSrc
.GetStringData()->IsEmpty() ) {
683 GetStringData()->Unlock();
684 m_pchData
= stringSrc
.m_pchData
;
685 GetStringData()->Lock();
692 // assigns a single character
693 wxStringBase
& wxStringBase::operator=(wxChar ch
)
695 if ( !AssignCopy(1, &ch
) ) {
696 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(wxChar)") );
702 wxStringBase
& wxStringBase::operator=(const wxChar
*psz
)
704 if ( !AssignCopy(wxStrlen(psz
), psz
) ) {
705 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(const wxChar *)") );
710 // helper function: does real copy
711 bool wxStringBase::AssignCopy(size_t nSrcLen
, const wxChar
*pszSrcData
)
713 if ( nSrcLen
== 0 ) {
717 if ( !AllocBeforeWrite(nSrcLen
) ) {
718 // allocation failure handled by caller
721 memcpy(m_pchData
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
722 GetStringData()->nDataLength
= nSrcLen
;
723 m_pchData
[nSrcLen
] = wxT('\0');
728 // ---------------------------------------------------------------------------
729 // string concatenation
730 // ---------------------------------------------------------------------------
732 // add something to this string
733 bool wxStringBase::ConcatSelf(size_t nSrcLen
, const wxChar
*pszSrcData
,
736 STATISTICS_ADD(SummandLength
, nSrcLen
);
738 nSrcLen
= nSrcLen
< nMaxLen
? nSrcLen
: nMaxLen
;
740 // concatenating an empty string is a NOP
742 wxStringData
*pData
= GetStringData();
743 size_t nLen
= pData
->nDataLength
;
744 size_t nNewLen
= nLen
+ nSrcLen
;
746 // alloc new buffer if current is too small
747 if ( pData
->IsShared() ) {
748 STATISTICS_ADD(ConcatHit
, 0);
750 // we have to allocate another buffer
751 wxStringData
* pOldData
= GetStringData();
752 if ( !AllocBuffer(nNewLen
) ) {
753 // allocation failure handled by caller
756 memcpy(m_pchData
, pOldData
->data(), nLen
*sizeof(wxChar
));
759 else if ( nNewLen
> pData
->nAllocLength
) {
760 STATISTICS_ADD(ConcatHit
, 0);
763 // we have to grow the buffer
764 if ( capacity() < nNewLen
) {
765 // allocation failure handled by caller
770 STATISTICS_ADD(ConcatHit
, 1);
772 // the buffer is already big enough
775 // should be enough space
776 wxASSERT( nNewLen
<= GetStringData()->nAllocLength
);
778 // fast concatenation - all is done in our buffer
779 memcpy(m_pchData
+ nLen
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
781 m_pchData
[nNewLen
] = wxT('\0'); // put terminating '\0'
782 GetStringData()->nDataLength
= nNewLen
; // and fix the length
784 //else: the string to append was empty
788 // ---------------------------------------------------------------------------
789 // simple sub-string extraction
790 // ---------------------------------------------------------------------------
792 // helper function: clone the data attached to this string
793 bool wxStringBase::AllocCopy(wxString
& dest
, int nCopyLen
, int nCopyIndex
) const
795 if ( nCopyLen
== 0 ) {
799 if ( !dest
.AllocBuffer(nCopyLen
) ) {
800 // allocation failure handled by caller
803 memcpy(dest
.m_pchData
, m_pchData
+ nCopyIndex
, nCopyLen
*sizeof(wxChar
));
810 #if !wxUSE_STL || !defined(HAVE_STD_STRING_COMPARE)
813 #define STRINGCLASS wxStringBase
815 #define STRINGCLASS wxString
818 static inline int wxDoCmp(const wxChar
* s1
, size_t l1
,
819 const wxChar
* s2
, size_t l2
)
822 return wxStrncmp(s1
, s2
, l1
);
825 int ret
= wxStrncmp(s1
, s2
, l1
);
826 return ret
== 0 ? -1 : ret
;
830 int ret
= wxStrncmp(s1
, s2
, l2
);
831 return ret
== 0 ? +1 : ret
;
834 wxFAIL
; // must never get there
835 return 0; // quiet compilers
840 int STRINGCLASS::compare(const wxStringBase
& str
) const
842 return ::wxDoCmp(data(), length(), str
.data(), str
.length());
847 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
848 const wxStringBase
& str
) const
850 wxASSERT(nStart
<= length());
851 size_type strLen
= length() - nStart
;
852 nLen
= strLen
< nLen
? strLen
: nLen
;
853 return ::wxDoCmp(data() + nStart
, nLen
, str
.data(), str
.length());
856 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
857 const wxStringBase
& str
,
858 size_t nStart2
, size_t nLen2
) const
860 wxASSERT(nStart
<= length());
861 wxASSERT(nStart2
<= str
.length());
862 size_type strLen
= length() - nStart
,
863 strLen2
= str
.length() - nStart2
;
864 nLen
= strLen
< nLen
? strLen
: nLen
;
865 nLen2
= strLen2
< nLen2
? strLen2
: nLen2
;
866 return ::wxDoCmp(data() + nStart
, nLen
, str
.data() + nStart2
, nLen2
);
871 int STRINGCLASS::compare(const wxChar
* sz
) const
873 size_t nLen
= wxStrlen(sz
);
874 return ::wxDoCmp(data(), length(), sz
, nLen
);
879 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
880 const wxChar
* sz
, size_t nCount
) const
882 wxASSERT(nStart
<= length());
883 size_type strLen
= length() - nStart
;
884 nLen
= strLen
< nLen
? strLen
: nLen
;
886 nCount
= wxStrlen(sz
);
888 return ::wxDoCmp(data() + nStart
, nLen
, sz
, nCount
);
893 #endif // !wxUSE_STL || !defined(HAVE_STD_STRING_COMPARE)
895 // ===========================================================================
896 // wxString class core
897 // ===========================================================================
899 // ---------------------------------------------------------------------------
901 // ---------------------------------------------------------------------------
905 // from multibyte string
906 wxString::wxString(const char *psz
, wxMBConv
& conv
, size_t nLength
)
908 // first get the size of the buffer we need
912 // calculate the needed size ourselves or use the provided one
913 nLen
= nLength
== npos
? conv
.MB2WC(NULL
, psz
, 0) : nLength
;
917 // nothing to convert
922 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) )
926 wxFAIL_MSG( _T("out of memory in wxString::wxString") );
930 wxWCharBuffer
buf(nLen
+ 1);
931 // MB2WC wants the buffer size, not the string length hence +1
932 nLen
= conv
.MB2WC(buf
.data(), psz
, nLen
+ 1);
934 if ( nLen
!= (size_t)-1 )
936 // initialized ok, set the real length as nLength specified by
937 // the caller could be greater than the real string length
938 assign(buf
.data(), nLen
);
941 //else: the conversion failed -- leave the string empty (what else?)
950 wxString::wxString(const wchar_t *pwz
, wxMBConv
& conv
, size_t nLength
)
952 // first get the size of the buffer we need
956 // calculate the needed size ourselves or use the provided one
957 nLen
= nLength
== npos
? conv
.WC2MB(NULL
, pwz
, 0) : nLength
;
961 // nothing to convert
966 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) )
970 wxFAIL_MSG( _T("out of memory in wxString::wxString") );
974 wxCharBuffer
buf(nLen
);
975 // WC2MB wants the buffer size, not the string length
976 if ( conv
.WC2MB(buf
.data(), pwz
, nLen
+ 1) != (size_t)-1 )
979 assign(buf
.data(), nLen
);
982 //else: the conversion failed -- leave the string empty (what else?)
988 #endif // wxUSE_WCHAR_T
990 #endif // Unicode/ANSI
992 // shrink to minimal size (releasing extra memory)
993 bool wxString::Shrink()
995 wxString
tmp(begin(), end());
997 return tmp
.length() == length();
1001 // get the pointer to writable buffer of (at least) nLen bytes
1002 wxChar
*wxString::GetWriteBuf(size_t nLen
)
1004 if ( !AllocBeforeWrite(nLen
) ) {
1005 // allocation failure handled by caller
1009 wxASSERT( GetStringData()->nRefs
== 1 );
1010 GetStringData()->Validate(FALSE
);
1015 // put string back in a reasonable state after GetWriteBuf
1016 void wxString::UngetWriteBuf()
1018 GetStringData()->nDataLength
= wxStrlen(m_pchData
);
1019 GetStringData()->Validate(TRUE
);
1022 void wxString::UngetWriteBuf(size_t nLen
)
1024 GetStringData()->nDataLength
= nLen
;
1025 GetStringData()->Validate(TRUE
);
1029 // ---------------------------------------------------------------------------
1031 // ---------------------------------------------------------------------------
1033 // all functions are inline in string.h
1035 // ---------------------------------------------------------------------------
1036 // assignment operators
1037 // ---------------------------------------------------------------------------
1041 // same as 'signed char' variant
1042 wxString
& wxString::operator=(const unsigned char* psz
)
1044 *this = (const char *)psz
;
1049 wxString
& wxString::operator=(const wchar_t *pwz
)
1060 * concatenation functions come in 5 flavours:
1062 * char + string and string + char
1063 * C str + string and string + C str
1066 wxString
operator+(const wxString
& str1
, const wxString
& str2
)
1069 wxASSERT( str1
.GetStringData()->IsValid() );
1070 wxASSERT( str2
.GetStringData()->IsValid() );
1079 wxString
operator+(const wxString
& str
, wxChar ch
)
1082 wxASSERT( str
.GetStringData()->IsValid() );
1091 wxString
operator+(wxChar ch
, const wxString
& str
)
1094 wxASSERT( str
.GetStringData()->IsValid() );
1103 wxString
operator+(const wxString
& str
, const wxChar
*psz
)
1106 wxASSERT( str
.GetStringData()->IsValid() );
1110 if ( !s
.Alloc(wxStrlen(psz
) + str
.Len()) ) {
1111 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1119 wxString
operator+(const wxChar
*psz
, const wxString
& str
)
1122 wxASSERT( str
.GetStringData()->IsValid() );
1126 if ( !s
.Alloc(wxStrlen(psz
) + str
.Len()) ) {
1127 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1135 // ===========================================================================
1136 // other common string functions
1137 // ===========================================================================
1141 wxString
wxString::FromAscii(const char *ascii
)
1144 return wxEmptyString
;
1146 size_t len
= strlen( ascii
);
1151 wxStringBuffer
buf(res
, len
);
1153 wchar_t *dest
= buf
;
1157 if ( (*dest
++ = (wchar_t)(unsigned char)*ascii
++) == L
'\0' )
1165 wxString
wxString::FromAscii(const char ascii
)
1167 // What do we do with '\0' ?
1170 res
+= (wchar_t)(unsigned char) ascii
;
1175 const wxCharBuffer
wxString::ToAscii() const
1177 // this will allocate enough space for the terminating NUL too
1178 wxCharBuffer
buffer(length());
1180 signed char *dest
= (signed char *)buffer
.data();
1182 const wchar_t *pwc
= c_str();
1185 *dest
++ = *pwc
> SCHAR_MAX
? '_' : *pwc
;
1187 // the output string can't have embedded NULs anyhow, so we can safely
1188 // stop at first of them even if we do have any
1198 // extract string of length nCount starting at nFirst
1199 wxString
wxString::Mid(size_t nFirst
, size_t nCount
) const
1201 size_t nLen
= length();
1203 // default value of nCount is npos and means "till the end"
1204 if ( nCount
== npos
)
1206 nCount
= nLen
- nFirst
;
1209 // out-of-bounds requests return sensible things
1210 if ( nFirst
+ nCount
> nLen
)
1212 nCount
= nLen
- nFirst
;
1215 if ( nFirst
> nLen
)
1217 // AllocCopy() will return empty string
1221 wxString
dest(*this, nFirst
, nCount
);
1222 if ( dest
.length() != nCount
) {
1223 wxFAIL_MSG( _T("out of memory in wxString::Mid") );
1229 // check that the string starts with prefix and return the rest of the string
1230 // in the provided pointer if it is not NULL, otherwise return FALSE
1231 bool wxString::StartsWith(const wxChar
*prefix
, wxString
*rest
) const
1233 wxASSERT_MSG( prefix
, _T("invalid parameter in wxString::StartsWith") );
1235 // first check if the beginning of the string matches the prefix: note
1236 // that we don't have to check that we don't run out of this string as
1237 // when we reach the terminating NUL, either prefix string ends too (and
1238 // then it's ok) or we break out of the loop because there is no match
1239 const wxChar
*p
= c_str();
1242 if ( *prefix
++ != *p
++ )
1251 // put the rest of the string into provided pointer
1258 // extract nCount last (rightmost) characters
1259 wxString
wxString::Right(size_t nCount
) const
1261 if ( nCount
> length() )
1264 wxString
dest(*this, length() - nCount
, nCount
);
1265 if ( dest
.length() != nCount
) {
1266 wxFAIL_MSG( _T("out of memory in wxString::Right") );
1271 // get all characters after the last occurence of ch
1272 // (returns the whole string if ch not found)
1273 wxString
wxString::AfterLast(wxChar ch
) const
1276 int iPos
= Find(ch
, TRUE
);
1277 if ( iPos
== wxNOT_FOUND
)
1280 str
= c_str() + iPos
+ 1;
1285 // extract nCount first (leftmost) characters
1286 wxString
wxString::Left(size_t nCount
) const
1288 if ( nCount
> length() )
1291 wxString
dest(*this, 0, nCount
);
1292 if ( dest
.length() != nCount
) {
1293 wxFAIL_MSG( _T("out of memory in wxString::Left") );
1298 // get all characters before the first occurence of ch
1299 // (returns the whole string if ch not found)
1300 wxString
wxString::BeforeFirst(wxChar ch
) const
1302 int iPos
= Find(ch
);
1303 if ( iPos
== wxNOT_FOUND
) iPos
= length();
1304 return wxString(*this, 0, iPos
);
1307 /// get all characters before the last occurence of ch
1308 /// (returns empty string if ch not found)
1309 wxString
wxString::BeforeLast(wxChar ch
) const
1312 int iPos
= Find(ch
, TRUE
);
1313 if ( iPos
!= wxNOT_FOUND
&& iPos
!= 0 )
1314 str
= wxString(c_str(), iPos
);
1319 /// get all characters after the first occurence of ch
1320 /// (returns empty string if ch not found)
1321 wxString
wxString::AfterFirst(wxChar ch
) const
1324 int iPos
= Find(ch
);
1325 if ( iPos
!= wxNOT_FOUND
)
1326 str
= c_str() + iPos
+ 1;
1331 // replace first (or all) occurences of some substring with another one
1333 wxString::Replace(const wxChar
*szOld
, const wxChar
*szNew
, bool bReplaceAll
)
1335 // if we tried to replace an empty string we'd enter an infinite loop below
1336 wxCHECK_MSG( szOld
&& *szOld
&& szNew
, 0,
1337 _T("wxString::Replace(): invalid parameter") );
1339 size_t uiCount
= 0; // count of replacements made
1341 size_t uiOldLen
= wxStrlen(szOld
);
1344 const wxChar
*pCurrent
= c_str();
1345 const wxChar
*pSubstr
;
1346 while ( *pCurrent
!= wxT('\0') ) {
1347 pSubstr
= wxStrstr(pCurrent
, szOld
);
1348 if ( pSubstr
== NULL
) {
1349 // strTemp is unused if no replacements were made, so avoid the copy
1353 strTemp
+= pCurrent
; // copy the rest
1354 break; // exit the loop
1357 // take chars before match
1358 size_type len
= strTemp
.length();
1359 strTemp
.append(pCurrent
, pSubstr
- pCurrent
);
1360 if ( strTemp
.length() != (size_t)(len
+ pSubstr
- pCurrent
) ) {
1361 wxFAIL_MSG( _T("out of memory in wxString::Replace") );
1365 pCurrent
= pSubstr
+ uiOldLen
; // restart after match
1370 if ( !bReplaceAll
) {
1371 strTemp
+= pCurrent
; // copy the rest
1372 break; // exit the loop
1377 // only done if there were replacements, otherwise would have returned above
1383 bool wxString::IsAscii() const
1385 const wxChar
*s
= (const wxChar
*) *this;
1387 if(!isascii(*s
)) return(FALSE
);
1393 bool wxString::IsWord() const
1395 const wxChar
*s
= (const wxChar
*) *this;
1397 if(!wxIsalpha(*s
)) return(FALSE
);
1403 bool wxString::IsNumber() const
1405 const wxChar
*s
= (const wxChar
*) *this;
1407 if ((s
[0] == '-') || (s
[0] == '+')) s
++;
1409 if(!wxIsdigit(*s
)) return(FALSE
);
1415 wxString
wxString::Strip(stripType w
) const
1418 if ( w
& leading
) s
.Trim(FALSE
);
1419 if ( w
& trailing
) s
.Trim(TRUE
);
1423 // ---------------------------------------------------------------------------
1425 // ---------------------------------------------------------------------------
1427 wxString
& wxString::MakeUpper()
1429 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1430 *it
= (wxChar
)wxToupper(*it
);
1435 wxString
& wxString::MakeLower()
1437 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1438 *it
= (wxChar
)wxTolower(*it
);
1443 // ---------------------------------------------------------------------------
1444 // trimming and padding
1445 // ---------------------------------------------------------------------------
1447 // some compilers (VC++ 6.0 not to name them) return TRUE for a call to
1448 // isspace('ê') in the C locale which seems to be broken to me, but we have to
1449 // live with this by checking that the character is a 7 bit one - even if this
1450 // may fail to detect some spaces (I don't know if Unicode doesn't have
1451 // space-like symbols somewhere except in the first 128 chars), it is arguably
1452 // still better than trimming away accented letters
1453 inline int wxSafeIsspace(wxChar ch
) { return (ch
< 127) && wxIsspace(ch
); }
1455 // trims spaces (in the sense of isspace) from left or right side
1456 wxString
& wxString::Trim(bool bFromRight
)
1458 // first check if we're going to modify the string at all
1461 (bFromRight
&& wxSafeIsspace(GetChar(Len() - 1))) ||
1462 (!bFromRight
&& wxSafeIsspace(GetChar(0u)))
1468 // find last non-space character
1469 iterator psz
= begin() + length() - 1;
1470 while ( wxSafeIsspace(*psz
) && (psz
>= begin()) )
1473 // truncate at trailing space start
1479 // find first non-space character
1480 iterator psz
= begin();
1481 while ( wxSafeIsspace(*psz
) )
1484 // fix up data and length
1485 erase(begin(), psz
);
1492 // adds nCount characters chPad to the string from either side
1493 wxString
& wxString::Pad(size_t nCount
, wxChar chPad
, bool bFromRight
)
1495 wxString
s(chPad
, nCount
);
1508 // truncate the string
1509 wxString
& wxString::Truncate(size_t uiLen
)
1511 if ( uiLen
< Len() ) {
1512 erase(begin() + uiLen
, end());
1514 //else: nothing to do, string is already short enough
1519 // ---------------------------------------------------------------------------
1520 // finding (return wxNOT_FOUND if not found and index otherwise)
1521 // ---------------------------------------------------------------------------
1524 int wxString::Find(wxChar ch
, bool bFromEnd
) const
1526 size_type idx
= bFromEnd
? find_last_of(ch
) : find_first_of(ch
);
1528 return (idx
== npos
) ? wxNOT_FOUND
: (int)idx
;
1531 // find a sub-string (like strstr)
1532 int wxString::Find(const wxChar
*pszSub
) const
1534 size_type idx
= find(pszSub
);
1536 return (idx
== npos
) ? wxNOT_FOUND
: (int)idx
;
1539 // ----------------------------------------------------------------------------
1540 // conversion to numbers
1541 // ----------------------------------------------------------------------------
1543 bool wxString::ToLong(long *val
, int base
) const
1545 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToLong") );
1546 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1548 const wxChar
*start
= c_str();
1550 *val
= wxStrtol(start
, &end
, base
);
1552 // return TRUE only if scan was stopped by the terminating NUL and if the
1553 // string was not empty to start with
1554 return !*end
&& (end
!= start
);
1557 bool wxString::ToULong(unsigned long *val
, int base
) const
1559 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToULong") );
1560 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1562 const wxChar
*start
= c_str();
1564 *val
= wxStrtoul(start
, &end
, base
);
1566 // return TRUE only if scan was stopped by the terminating NUL and if the
1567 // string was not empty to start with
1568 return !*end
&& (end
!= start
);
1571 bool wxString::ToDouble(double *val
) const
1573 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToDouble") );
1575 const wxChar
*start
= c_str();
1577 *val
= wxStrtod(start
, &end
);
1579 // return TRUE only if scan was stopped by the terminating NUL and if the
1580 // string was not empty to start with
1581 return !*end
&& (end
!= start
);
1584 // ---------------------------------------------------------------------------
1586 // ---------------------------------------------------------------------------
1589 wxString
wxString::Format(const wxChar
*pszFormat
, ...)
1592 va_start(argptr
, pszFormat
);
1595 s
.PrintfV(pszFormat
, argptr
);
1603 wxString
wxString::FormatV(const wxChar
*pszFormat
, va_list argptr
)
1606 s
.PrintfV(pszFormat
, argptr
);
1610 int wxString::Printf(const wxChar
*pszFormat
, ...)
1613 va_start(argptr
, pszFormat
);
1615 int iLen
= PrintfV(pszFormat
, argptr
);
1622 int wxString::PrintfV(const wxChar
* pszFormat
, va_list argptr
)
1630 wxStringBuffer
tmp(*this, size
+ 1);
1639 len
= wxVsnprintf(buf
, size
, pszFormat
, argptr
);
1641 // some implementations of vsnprintf() don't NUL terminate
1642 // the string if there is not enough space for it so
1643 // always do it manually
1644 buf
[size
] = _T('\0');
1649 // ok, there was enough space
1653 // still not enough, double it again
1657 // we could have overshot
1663 // ----------------------------------------------------------------------------
1664 // misc other operations
1665 // ----------------------------------------------------------------------------
1667 // returns TRUE if the string matches the pattern which may contain '*' and
1668 // '?' metacharacters (as usual, '?' matches any character and '*' any number
1670 bool wxString::Matches(const wxChar
*pszMask
) const
1672 // I disable this code as it doesn't seem to be faster (in fact, it seems
1673 // to be much slower) than the old, hand-written code below and using it
1674 // here requires always linking with libregex even if the user code doesn't
1676 #if 0 // wxUSE_REGEX
1677 // first translate the shell-like mask into a regex
1679 pattern
.reserve(wxStrlen(pszMask
));
1691 pattern
+= _T(".*");
1702 // these characters are special in a RE, quote them
1703 // (however note that we don't quote '[' and ']' to allow
1704 // using them for Unix shell like matching)
1705 pattern
+= _T('\\');
1709 pattern
+= *pszMask
;
1717 return wxRegEx(pattern
, wxRE_NOSUB
| wxRE_EXTENDED
).Matches(c_str());
1718 #else // !wxUSE_REGEX
1719 // TODO: this is, of course, awfully inefficient...
1721 // the char currently being checked
1722 const wxChar
*pszTxt
= c_str();
1724 // the last location where '*' matched
1725 const wxChar
*pszLastStarInText
= NULL
;
1726 const wxChar
*pszLastStarInMask
= NULL
;
1729 for ( ; *pszMask
!= wxT('\0'); pszMask
++, pszTxt
++ ) {
1730 switch ( *pszMask
) {
1732 if ( *pszTxt
== wxT('\0') )
1735 // pszTxt and pszMask will be incremented in the loop statement
1741 // remember where we started to be able to backtrack later
1742 pszLastStarInText
= pszTxt
;
1743 pszLastStarInMask
= pszMask
;
1745 // ignore special chars immediately following this one
1746 // (should this be an error?)
1747 while ( *pszMask
== wxT('*') || *pszMask
== wxT('?') )
1750 // if there is nothing more, match
1751 if ( *pszMask
== wxT('\0') )
1754 // are there any other metacharacters in the mask?
1756 const wxChar
*pEndMask
= wxStrpbrk(pszMask
, wxT("*?"));
1758 if ( pEndMask
!= NULL
) {
1759 // we have to match the string between two metachars
1760 uiLenMask
= pEndMask
- pszMask
;
1763 // we have to match the remainder of the string
1764 uiLenMask
= wxStrlen(pszMask
);
1767 wxString
strToMatch(pszMask
, uiLenMask
);
1768 const wxChar
* pMatch
= wxStrstr(pszTxt
, strToMatch
);
1769 if ( pMatch
== NULL
)
1772 // -1 to compensate "++" in the loop
1773 pszTxt
= pMatch
+ uiLenMask
- 1;
1774 pszMask
+= uiLenMask
- 1;
1779 if ( *pszMask
!= *pszTxt
)
1785 // match only if nothing left
1786 if ( *pszTxt
== wxT('\0') )
1789 // if we failed to match, backtrack if we can
1790 if ( pszLastStarInText
) {
1791 pszTxt
= pszLastStarInText
+ 1;
1792 pszMask
= pszLastStarInMask
;
1794 pszLastStarInText
= NULL
;
1796 // don't bother resetting pszLastStarInMask, it's unnecessary
1802 #endif // wxUSE_REGEX/!wxUSE_REGEX
1805 // Count the number of chars
1806 int wxString::Freq(wxChar ch
) const
1810 for (int i
= 0; i
< len
; i
++)
1812 if (GetChar(i
) == ch
)
1818 // convert to upper case, return the copy of the string
1819 wxString
wxString::Upper() const
1820 { wxString
s(*this); return s
.MakeUpper(); }
1822 // convert to lower case, return the copy of the string
1823 wxString
wxString::Lower() const { wxString
s(*this); return s
.MakeLower(); }
1825 int wxString::sprintf(const wxChar
*pszFormat
, ...)
1828 va_start(argptr
, pszFormat
);
1829 int iLen
= PrintfV(pszFormat
, argptr
);
1834 // ============================================================================
1836 // ============================================================================
1838 #include "wx/arrstr.h"
1842 // size increment = min(50% of current size, ARRAY_MAXSIZE_INCREMENT)
1843 #define ARRAY_MAXSIZE_INCREMENT 4096
1845 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
1846 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
1849 #define STRING(p) ((wxString *)(&(p)))
1852 void wxArrayString::Init(bool autoSort
)
1856 m_pItems
= (wxChar
**) NULL
;
1857 m_autoSort
= autoSort
;
1861 wxArrayString::wxArrayString(const wxArrayString
& src
)
1863 Init(src
.m_autoSort
);
1868 // assignment operator
1869 wxArrayString
& wxArrayString::operator=(const wxArrayString
& src
)
1876 m_autoSort
= src
.m_autoSort
;
1881 void wxArrayString::Copy(const wxArrayString
& src
)
1883 if ( src
.m_nCount
> ARRAY_DEFAULT_INITIAL_SIZE
)
1884 Alloc(src
.m_nCount
);
1886 for ( size_t n
= 0; n
< src
.m_nCount
; n
++ )
1891 void wxArrayString::Grow(size_t nIncrement
)
1893 // only do it if no more place
1894 if ( (m_nSize
- m_nCount
) < nIncrement
) {
1895 // if ARRAY_DEFAULT_INITIAL_SIZE were set to 0, the initially empty would
1896 // be never resized!
1897 #if ARRAY_DEFAULT_INITIAL_SIZE == 0
1898 #error "ARRAY_DEFAULT_INITIAL_SIZE must be > 0!"
1901 if ( m_nSize
== 0 ) {
1902 // was empty, alloc some memory
1903 m_nSize
= ARRAY_DEFAULT_INITIAL_SIZE
;
1904 if (m_nSize
< nIncrement
)
1905 m_nSize
= nIncrement
;
1906 m_pItems
= new wxChar
*[m_nSize
];
1909 // otherwise when it's called for the first time, nIncrement would be 0
1910 // and the array would never be expanded
1911 // add 50% but not too much
1912 size_t ndefIncrement
= m_nSize
< ARRAY_DEFAULT_INITIAL_SIZE
1913 ? ARRAY_DEFAULT_INITIAL_SIZE
: m_nSize
>> 1;
1914 if ( ndefIncrement
> ARRAY_MAXSIZE_INCREMENT
)
1915 ndefIncrement
= ARRAY_MAXSIZE_INCREMENT
;
1916 if ( nIncrement
< ndefIncrement
)
1917 nIncrement
= ndefIncrement
;
1918 m_nSize
+= nIncrement
;
1919 wxChar
**pNew
= new wxChar
*[m_nSize
];
1921 // copy data to new location
1922 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
1924 // delete old memory (but do not release the strings!)
1925 wxDELETEA(m_pItems
);
1932 void wxArrayString::Free()
1934 for ( size_t n
= 0; n
< m_nCount
; n
++ ) {
1935 STRING(m_pItems
[n
])->GetStringData()->Unlock();
1939 // deletes all the strings from the list
1940 void wxArrayString::Empty()
1947 // as Empty, but also frees memory
1948 void wxArrayString::Clear()
1955 wxDELETEA(m_pItems
);
1959 wxArrayString::~wxArrayString()
1963 wxDELETEA(m_pItems
);
1966 void wxArrayString::reserve(size_t nSize
)
1971 // pre-allocates memory (frees the previous data!)
1972 void wxArrayString::Alloc(size_t nSize
)
1974 // only if old buffer was not big enough
1975 if ( nSize
> m_nSize
) {
1977 wxDELETEA(m_pItems
);
1978 m_pItems
= new wxChar
*[nSize
];
1985 // minimizes the memory usage by freeing unused memory
1986 void wxArrayString::Shrink()
1988 // only do it if we have some memory to free
1989 if( m_nCount
< m_nSize
) {
1990 // allocates exactly as much memory as we need
1991 wxChar
**pNew
= new wxChar
*[m_nCount
];
1993 // copy data to new location
1994 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
2000 #if WXWIN_COMPATIBILITY_2_4
2002 // return a wxString[] as required for some control ctors.
2003 wxString
* wxArrayString::GetStringArray() const
2005 wxString
*array
= 0;
2009 array
= new wxString
[m_nCount
];
2010 for( size_t i
= 0; i
< m_nCount
; i
++ )
2011 array
[i
] = m_pItems
[i
];
2017 #endif // WXWIN_COMPATIBILITY_2_4
2019 // searches the array for an item (forward or backwards)
2020 int wxArrayString::Index(const wxChar
*sz
, bool bCase
, bool bFromEnd
) const
2023 // use binary search in the sorted array
2024 wxASSERT_MSG( bCase
&& !bFromEnd
,
2025 wxT("search parameters ignored for auto sorted array") );
2034 res
= wxStrcmp(sz
, m_pItems
[i
]);
2046 // use linear search in unsorted array
2048 if ( m_nCount
> 0 ) {
2049 size_t ui
= m_nCount
;
2051 if ( STRING(m_pItems
[--ui
])->IsSameAs(sz
, bCase
) )
2058 for( size_t ui
= 0; ui
< m_nCount
; ui
++ ) {
2059 if( STRING(m_pItems
[ui
])->IsSameAs(sz
, bCase
) )
2068 // add item at the end
2069 size_t wxArrayString::Add(const wxString
& str
, size_t nInsert
)
2072 // insert the string at the correct position to keep the array sorted
2080 res
= wxStrcmp(str
, m_pItems
[i
]);
2091 wxASSERT_MSG( lo
== hi
, wxT("binary search broken") );
2093 Insert(str
, lo
, nInsert
);
2098 wxASSERT( str
.GetStringData()->IsValid() );
2102 for (size_t i
= 0; i
< nInsert
; i
++)
2104 // the string data must not be deleted!
2105 str
.GetStringData()->Lock();
2108 m_pItems
[m_nCount
+ i
] = (wxChar
*)str
.c_str(); // const_cast
2110 size_t ret
= m_nCount
;
2111 m_nCount
+= nInsert
;
2116 // add item at the given position
2117 void wxArrayString::Insert(const wxString
& str
, size_t nIndex
, size_t nInsert
)
2119 wxASSERT( str
.GetStringData()->IsValid() );
2121 wxCHECK_RET( nIndex
<= m_nCount
, wxT("bad index in wxArrayString::Insert") );
2122 wxCHECK_RET( m_nCount
<= m_nCount
+ nInsert
,
2123 wxT("array size overflow in wxArrayString::Insert") );
2127 memmove(&m_pItems
[nIndex
+ nInsert
], &m_pItems
[nIndex
],
2128 (m_nCount
- nIndex
)*sizeof(wxChar
*));
2130 for (size_t i
= 0; i
< nInsert
; i
++)
2132 str
.GetStringData()->Lock();
2133 m_pItems
[nIndex
+ i
] = (wxChar
*)str
.c_str();
2135 m_nCount
+= nInsert
;
2139 void wxArrayString::SetCount(size_t count
)
2144 while ( m_nCount
< count
)
2145 m_pItems
[m_nCount
++] = (wxChar
*)s
.c_str();
2148 // removes item from array (by index)
2149 void wxArrayString::RemoveAt(size_t nIndex
, size_t nRemove
)
2151 wxCHECK_RET( nIndex
< m_nCount
, wxT("bad index in wxArrayString::Remove") );
2152 wxCHECK_RET( nIndex
+ nRemove
<= m_nCount
,
2153 wxT("removing too many elements in wxArrayString::Remove") );
2156 for (size_t i
= 0; i
< nRemove
; i
++)
2157 Item(nIndex
+ i
).GetStringData()->Unlock();
2159 memmove(&m_pItems
[nIndex
], &m_pItems
[nIndex
+ nRemove
],
2160 (m_nCount
- nIndex
- nRemove
)*sizeof(wxChar
*));
2161 m_nCount
-= nRemove
;
2164 // removes item from array (by value)
2165 void wxArrayString::Remove(const wxChar
*sz
)
2167 int iIndex
= Index(sz
);
2169 wxCHECK_RET( iIndex
!= wxNOT_FOUND
,
2170 wxT("removing inexistent element in wxArrayString::Remove") );
2175 // ----------------------------------------------------------------------------
2177 // ----------------------------------------------------------------------------
2179 // we can only sort one array at a time with the quick-sort based
2182 // need a critical section to protect access to gs_compareFunction and
2183 // gs_sortAscending variables
2184 static wxCriticalSection
*gs_critsectStringSort
= NULL
;
2186 // call this before the value of the global sort vars is changed/after
2187 // you're finished with them
2188 #define START_SORT() wxASSERT( !gs_critsectStringSort ); \
2189 gs_critsectStringSort = new wxCriticalSection; \
2190 gs_critsectStringSort->Enter()
2191 #define END_SORT() gs_critsectStringSort->Leave(); \
2192 delete gs_critsectStringSort; \
2193 gs_critsectStringSort = NULL
2195 #define START_SORT()
2197 #endif // wxUSE_THREADS
2199 // function to use for string comparaison
2200 static wxArrayString::CompareFunction gs_compareFunction
= NULL
;
2202 // if we don't use the compare function, this flag tells us if we sort the
2203 // array in ascending or descending order
2204 static bool gs_sortAscending
= TRUE
;
2206 // function which is called by quick sort
2207 extern "C" int wxC_CALLING_CONV
// LINKAGEMODE
2208 wxStringCompareFunction(const void *first
, const void *second
)
2210 wxString
*strFirst
= (wxString
*)first
;
2211 wxString
*strSecond
= (wxString
*)second
;
2213 if ( gs_compareFunction
) {
2214 return gs_compareFunction(*strFirst
, *strSecond
);
2217 // maybe we should use wxStrcoll
2218 int result
= wxStrcmp(strFirst
->c_str(), strSecond
->c_str());
2220 return gs_sortAscending
? result
: -result
;
2224 // sort array elements using passed comparaison function
2225 void wxArrayString::Sort(CompareFunction compareFunction
)
2229 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2230 gs_compareFunction
= compareFunction
;
2234 // reset it to NULL so that Sort(bool) will work the next time
2235 gs_compareFunction
= NULL
;
2240 typedef int (wxC_CALLING_CONV
* wxStringCompareFn
)(const void *first
, const void *second
);
2242 void wxArrayString::Sort(CompareFunction2 compareFunction
)
2244 qsort(m_pItems
, m_nCount
, sizeof(wxChar
*), (wxStringCompareFn
)compareFunction
);
2247 void wxArrayString::Sort(bool reverseOrder
)
2249 Sort(reverseOrder
? wxStringSortDescending
: wxStringSortAscending
);
2252 void wxArrayString::DoSort()
2254 wxCHECK_RET( !m_autoSort
, wxT("can't use this method with sorted arrays") );
2256 // just sort the pointers using qsort() - of course it only works because
2257 // wxString() *is* a pointer to its data
2258 qsort(m_pItems
, m_nCount
, sizeof(wxChar
*), wxStringCompareFunction
);
2261 bool wxArrayString::operator==(const wxArrayString
& a
) const
2263 if ( m_nCount
!= a
.m_nCount
)
2266 for ( size_t n
= 0; n
< m_nCount
; n
++ )
2268 if ( Item(n
) != a
[n
] )
2275 #endif // !wxUSE_STL
2277 int wxStringSortAscending(wxString
* s1
, wxString
* s2
)
2279 return wxStrcmp(s1
->c_str(), s2
->c_str());
2282 int wxStringSortDescending(wxString
* s1
, wxString
* s2
)
2284 return -wxStrcmp(s1
->c_str(), s2
->c_str());