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 memcpy(m_pchData
, psz
+ nPos
, nLength
*sizeof(wxChar
));
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 memcpy(m_pchData
, pData
->data(), nLen
*sizeof(wxChar
));
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() );
477 const wxChar
*p
= wxStrstr(c_str() + nStart
, str
.c_str());
479 return p
== NULL
? npos
: p
- c_str();
482 size_t wxStringBase::find(const wxChar
* sz
, size_t nStart
, size_t n
) const
484 return find(wxStringBase(sz
, n
), nStart
);
487 size_t wxStringBase::find(wxChar ch
, size_t nStart
) const
489 wxASSERT( nStart
<= length() );
491 const wxChar
*p
= wxStrchr(c_str() + nStart
, ch
);
493 return p
== NULL
? npos
: p
- c_str();
496 size_t wxStringBase::rfind(const wxStringBase
& str
, size_t nStart
) const
498 wxASSERT( str
.GetStringData()->IsValid() );
499 wxASSERT( nStart
== npos
|| nStart
<= length() );
501 if ( length() >= str
.length() )
503 // avoids a corner case later
504 if ( length() == 0 && str
.length() == 0 )
507 // "top" is the point where search starts from
508 size_t top
= length() - str
.length();
510 if ( nStart
== npos
)
511 nStart
= length() - 1;
515 const wxChar
*cursor
= c_str() + top
;
518 if ( memcmp(cursor
, str
.c_str(),
519 str
.length() * sizeof(wxChar
)) == 0 )
521 return cursor
- c_str();
523 } while ( cursor
-- > c_str() );
529 size_t wxStringBase::rfind(const wxChar
* sz
, size_t nStart
, size_t n
) const
531 return rfind(wxStringBase(sz
, n
), nStart
);
534 size_t wxStringBase::rfind(wxChar ch
, size_t nStart
) const
536 if ( nStart
== npos
)
542 wxASSERT( nStart
<= length() );
545 const wxChar
*actual
;
546 for ( actual
= c_str() + ( nStart
== npos
? length() : nStart
+ 1 );
547 actual
> c_str(); --actual
)
549 if ( *(actual
- 1) == ch
)
550 return (actual
- 1) - c_str();
556 size_t wxStringBase::find_first_of(const wxChar
* sz
, size_t nStart
) const
558 const wxChar
*start
= c_str() + nStart
;
559 const wxChar
*firstOf
= wxStrpbrk(start
, sz
);
561 return firstOf
- c_str();
566 size_t wxStringBase::find_first_of(const wxChar
* sz
, size_t nStart
,
569 return find_first_of(wxStringBase(sz
, n
), nStart
);
572 size_t wxStringBase::find_last_of(const wxChar
* sz
, size_t nStart
) const
574 if ( nStart
== npos
)
576 nStart
= length() - 1;
580 wxASSERT_MSG( nStart
<= length(),
581 _T("invalid index in find_last_of()") );
584 for ( const wxChar
*p
= c_str() + nStart
; p
>= c_str(); --p
)
586 if ( wxStrchr(sz
, *p
) )
593 size_t wxStringBase::find_last_of(const wxChar
* sz
, size_t nStart
,
596 return find_last_of(wxStringBase(sz
, n
), nStart
);
599 size_t wxStringBase::find_first_not_of(const wxChar
* sz
, size_t nStart
) const
601 if ( nStart
== npos
)
607 wxASSERT( nStart
<= length() );
610 size_t nAccept
= wxStrspn(c_str() + nStart
, sz
);
611 if ( nAccept
>= length() - nStart
)
614 return nStart
+ nAccept
;
617 size_t wxStringBase::find_first_not_of(const wxChar
* sz
, size_t nStart
,
620 return find_first_not_of(wxStringBase(sz
, n
), nStart
);
623 size_t wxStringBase::find_first_not_of(wxChar ch
, size_t nStart
) const
625 wxASSERT( nStart
<= length() );
627 for ( const wxChar
*p
= c_str() + nStart
; *p
; p
++ )
636 size_t wxStringBase::find_last_not_of(const wxChar
* sz
, size_t nStart
) const
638 if ( nStart
== npos
)
640 nStart
= length() - 1;
644 wxASSERT( nStart
<= length() );
647 for ( const wxChar
*p
= c_str() + nStart
; p
>= c_str(); --p
)
649 if ( !wxStrchr(sz
, *p
) )
656 size_t wxStringBase::find_last_not_of(const wxChar
* sz
, size_t nStart
,
659 return find_last_not_of(wxStringBase(sz
, n
), nStart
);
662 size_t wxStringBase::find_last_not_of(wxChar ch
, size_t nStart
) const
664 if ( nStart
== npos
)
666 nStart
= length() - 1;
670 wxASSERT( nStart
<= length() );
673 for ( const wxChar
*p
= c_str() + nStart
; p
>= c_str(); --p
)
682 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
685 wxASSERT_MSG( nStart
<= length(),
686 _T("index out of bounds in wxStringBase::replace") );
687 size_t strLen
= length() - nStart
;
688 nLen
= strLen
< nLen
? strLen
: nLen
;
691 strTmp
.reserve(length()); // micro optimisation to avoid multiple mem allocs
694 strTmp
.append(c_str(), nStart
);
696 strTmp
.append(c_str() + nStart
+ nLen
);
702 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
703 size_t nCount
, wxChar ch
)
705 return replace(nStart
, nLen
, wxStringBase(ch
, nCount
).c_str());
708 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
709 const wxStringBase
& str
,
710 size_t nStart2
, size_t nLen2
)
712 return replace(nStart
, nLen
, str
.substr(nStart2
, nLen2
));
715 wxStringBase
& wxStringBase::replace(size_t nStart
, size_t nLen
,
716 const wxChar
* sz
, size_t nCount
)
718 return replace(nStart
, nLen
, wxStringBase(sz
, nCount
).c_str());
721 wxStringBase
wxStringBase::substr(size_t nStart
, size_t nLen
) const
724 nLen
= length() - nStart
;
725 return wxStringBase(*this, nStart
, nLen
);
728 // assigns one string to another
729 wxStringBase
& wxStringBase::operator=(const wxStringBase
& stringSrc
)
731 wxASSERT( stringSrc
.GetStringData()->IsValid() );
733 // don't copy string over itself
734 if ( m_pchData
!= stringSrc
.m_pchData
) {
735 if ( stringSrc
.GetStringData()->IsEmpty() ) {
740 GetStringData()->Unlock();
741 m_pchData
= stringSrc
.m_pchData
;
742 GetStringData()->Lock();
749 // assigns a single character
750 wxStringBase
& wxStringBase::operator=(wxChar ch
)
752 if ( !AssignCopy(1, &ch
) ) {
753 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(wxChar)") );
759 wxStringBase
& wxStringBase::operator=(const wxChar
*psz
)
761 if ( !AssignCopy(wxStrlen(psz
), psz
) ) {
762 wxFAIL_MSG( _T("out of memory in wxStringBase::operator=(const wxChar *)") );
767 // helper function: does real copy
768 bool wxStringBase::AssignCopy(size_t nSrcLen
, const wxChar
*pszSrcData
)
770 if ( nSrcLen
== 0 ) {
774 if ( !AllocBeforeWrite(nSrcLen
) ) {
775 // allocation failure handled by caller
778 memcpy(m_pchData
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
779 GetStringData()->nDataLength
= nSrcLen
;
780 m_pchData
[nSrcLen
] = wxT('\0');
785 // ---------------------------------------------------------------------------
786 // string concatenation
787 // ---------------------------------------------------------------------------
789 // add something to this string
790 bool wxStringBase::ConcatSelf(size_t nSrcLen
, const wxChar
*pszSrcData
,
793 STATISTICS_ADD(SummandLength
, nSrcLen
);
795 nSrcLen
= nSrcLen
< nMaxLen
? nSrcLen
: nMaxLen
;
797 // concatenating an empty string is a NOP
799 wxStringData
*pData
= GetStringData();
800 size_t nLen
= pData
->nDataLength
;
801 size_t nNewLen
= nLen
+ nSrcLen
;
803 // alloc new buffer if current is too small
804 if ( pData
->IsShared() ) {
805 STATISTICS_ADD(ConcatHit
, 0);
807 // we have to allocate another buffer
808 wxStringData
* pOldData
= GetStringData();
809 if ( !AllocBuffer(nNewLen
) ) {
810 // allocation failure handled by caller
813 memcpy(m_pchData
, pOldData
->data(), nLen
*sizeof(wxChar
));
816 else if ( nNewLen
> pData
->nAllocLength
) {
817 STATISTICS_ADD(ConcatHit
, 0);
820 // we have to grow the buffer
821 if ( capacity() < nNewLen
) {
822 // allocation failure handled by caller
827 STATISTICS_ADD(ConcatHit
, 1);
829 // the buffer is already big enough
832 // should be enough space
833 wxASSERT( nNewLen
<= GetStringData()->nAllocLength
);
835 // fast concatenation - all is done in our buffer
836 memcpy(m_pchData
+ nLen
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
838 m_pchData
[nNewLen
] = wxT('\0'); // put terminating '\0'
839 GetStringData()->nDataLength
= nNewLen
; // and fix the length
841 //else: the string to append was empty
845 // ---------------------------------------------------------------------------
846 // simple sub-string extraction
847 // ---------------------------------------------------------------------------
849 // helper function: clone the data attached to this string
850 bool wxStringBase::AllocCopy(wxString
& dest
, int nCopyLen
, int nCopyIndex
) const
852 if ( nCopyLen
== 0 ) {
856 if ( !dest
.AllocBuffer(nCopyLen
) ) {
857 // allocation failure handled by caller
860 memcpy(dest
.m_pchData
, m_pchData
+ nCopyIndex
, nCopyLen
*sizeof(wxChar
));
867 #if !wxUSE_STL || !defined(HAVE_STD_STRING_COMPARE)
870 #define STRINGCLASS wxStringBase
872 #define STRINGCLASS wxString
875 static inline int wxDoCmp(const wxChar
* s1
, size_t l1
,
876 const wxChar
* s2
, size_t l2
)
879 return wxStrncmp(s1
, s2
, l1
);
882 int ret
= wxStrncmp(s1
, s2
, l1
);
883 return ret
== 0 ? -1 : ret
;
887 int ret
= wxStrncmp(s1
, s2
, l2
);
888 return ret
== 0 ? +1 : ret
;
891 wxFAIL
; // must never get there
892 return 0; // quiet compilers
897 int STRINGCLASS::compare(const wxStringBase
& str
) const
899 return ::wxDoCmp(data(), length(), str
.data(), str
.length());
904 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
905 const wxStringBase
& str
) const
907 wxASSERT(nStart
<= length());
908 size_type strLen
= length() - nStart
;
909 nLen
= strLen
< nLen
? strLen
: nLen
;
910 return ::wxDoCmp(data() + nStart
, nLen
, str
.data(), str
.length());
913 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
914 const wxStringBase
& str
,
915 size_t nStart2
, size_t nLen2
) const
917 wxASSERT(nStart
<= length());
918 wxASSERT(nStart2
<= str
.length());
919 size_type strLen
= length() - nStart
,
920 strLen2
= str
.length() - nStart2
;
921 nLen
= strLen
< nLen
? strLen
: nLen
;
922 nLen2
= strLen2
< nLen2
? strLen2
: nLen2
;
923 return ::wxDoCmp(data() + nStart
, nLen
, str
.data() + nStart2
, nLen2
);
928 int STRINGCLASS::compare(const wxChar
* sz
) const
930 size_t nLen
= wxStrlen(sz
);
931 return ::wxDoCmp(data(), length(), sz
, nLen
);
936 int STRINGCLASS::compare(size_t nStart
, size_t nLen
,
937 const wxChar
* sz
, size_t nCount
) const
939 wxASSERT(nStart
<= length());
940 size_type strLen
= length() - nStart
;
941 nLen
= strLen
< nLen
? strLen
: nLen
;
943 nCount
= wxStrlen(sz
);
945 return ::wxDoCmp(data() + nStart
, nLen
, sz
, nCount
);
950 #endif // !wxUSE_STL || !defined(HAVE_STD_STRING_COMPARE)
952 // ===========================================================================
953 // wxString class core
954 // ===========================================================================
956 // ---------------------------------------------------------------------------
958 // ---------------------------------------------------------------------------
962 // from multibyte string
963 wxString::wxString(const char *psz
, wxMBConv
& conv
, size_t nLength
)
965 // if nLength != npos, then we have to make a NULL-terminated copy
966 // of first nLength bytes of psz first because the input buffer to MB2WC
967 // must always be NULL-terminated:
968 wxCharBuffer
inBuf((const char *)NULL
);
971 wxCharBuffer
tmp(nLength
);
972 memcpy(tmp
.data(), psz
, nLength
);
973 tmp
.data()[nLength
] = '\0';
978 // first get the size of the buffer we need
982 // calculate the needed size ourselves or use the provided one
983 nLen
= conv
.MB2WC(NULL
, psz
, 0);
987 // nothing to convert
992 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) )
996 wxFAIL_MSG( _T("out of memory in wxString::wxString") );
1000 wxWCharBuffer
buf(nLen
);
1001 // MB2WC wants the buffer size, not the string length hence +1
1002 nLen
= conv
.MB2WC(buf
.data(), psz
, nLen
+ 1);
1004 if ( nLen
!= (size_t)-1 )
1006 // initialized ok, set the real length as nLength specified by
1007 // the caller could be greater than the real string length
1008 assign(buf
.data(), nLen
);
1011 //else: the conversion failed -- leave the string empty (what else?)
1020 wxString::wxString(const wchar_t *pwz
, wxMBConv
& conv
, size_t nLength
)
1022 // if nLength != npos, then we have to make a NULL-terminated copy
1023 // of first nLength chars of psz first because the input buffer to WC2MB
1024 // must always be NULL-terminated:
1025 wxWCharBuffer
inBuf((const wchar_t *)NULL
);
1026 if (nLength
!= npos
)
1028 wxWCharBuffer
tmp(nLength
);
1029 memcpy(tmp
.data(), pwz
, nLength
* sizeof(wchar_t));
1030 tmp
.data()[nLength
] = '\0';
1035 // first get the size of the buffer we need
1039 // calculate the needed size ourselves or use the provided one
1040 nLen
= conv
.WC2MB(NULL
, pwz
, 0);
1044 // nothing to convert
1049 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) )
1053 wxFAIL_MSG( _T("out of memory in wxString::wxString") );
1057 wxCharBuffer
buf(nLen
);
1058 // WC2MB wants the buffer size, not the string length
1059 if ( conv
.WC2MB(buf
.data(), pwz
, nLen
+ 1) != (size_t)-1 )
1062 assign(buf
.data(), nLen
);
1065 //else: the conversion failed -- leave the string empty (what else?)
1071 #endif // wxUSE_WCHAR_T
1073 #endif // Unicode/ANSI
1075 // shrink to minimal size (releasing extra memory)
1076 bool wxString::Shrink()
1078 wxString
tmp(begin(), end());
1080 return tmp
.length() == length();
1084 // get the pointer to writable buffer of (at least) nLen bytes
1085 wxChar
*wxString::GetWriteBuf(size_t nLen
)
1087 if ( !AllocBeforeWrite(nLen
) ) {
1088 // allocation failure handled by caller
1092 wxASSERT( GetStringData()->nRefs
== 1 );
1093 GetStringData()->Validate(FALSE
);
1098 // put string back in a reasonable state after GetWriteBuf
1099 void wxString::UngetWriteBuf()
1101 GetStringData()->nDataLength
= wxStrlen(m_pchData
);
1102 GetStringData()->Validate(TRUE
);
1105 void wxString::UngetWriteBuf(size_t nLen
)
1107 GetStringData()->nDataLength
= nLen
;
1108 GetStringData()->Validate(TRUE
);
1112 // ---------------------------------------------------------------------------
1114 // ---------------------------------------------------------------------------
1116 // all functions are inline in string.h
1118 // ---------------------------------------------------------------------------
1119 // assignment operators
1120 // ---------------------------------------------------------------------------
1124 // same as 'signed char' variant
1125 wxString
& wxString::operator=(const unsigned char* psz
)
1127 *this = (const char *)psz
;
1132 wxString
& wxString::operator=(const wchar_t *pwz
)
1143 * concatenation functions come in 5 flavours:
1145 * char + string and string + char
1146 * C str + string and string + C str
1149 wxString
operator+(const wxString
& str1
, const wxString
& str2
)
1152 wxASSERT( str1
.GetStringData()->IsValid() );
1153 wxASSERT( str2
.GetStringData()->IsValid() );
1162 wxString
operator+(const wxString
& str
, wxChar ch
)
1165 wxASSERT( str
.GetStringData()->IsValid() );
1174 wxString
operator+(wxChar ch
, const wxString
& str
)
1177 wxASSERT( str
.GetStringData()->IsValid() );
1186 wxString
operator+(const wxString
& str
, const wxChar
*psz
)
1189 wxASSERT( str
.GetStringData()->IsValid() );
1193 if ( !s
.Alloc(wxStrlen(psz
) + str
.Len()) ) {
1194 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1202 wxString
operator+(const wxChar
*psz
, const wxString
& str
)
1205 wxASSERT( str
.GetStringData()->IsValid() );
1209 if ( !s
.Alloc(wxStrlen(psz
) + str
.Len()) ) {
1210 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
1218 // ===========================================================================
1219 // other common string functions
1220 // ===========================================================================
1224 wxString
wxString::FromAscii(const char *ascii
)
1227 return wxEmptyString
;
1229 size_t len
= strlen( ascii
);
1234 wxStringBuffer
buf(res
, len
);
1236 wchar_t *dest
= buf
;
1240 if ( (*dest
++ = (wchar_t)(unsigned char)*ascii
++) == L
'\0' )
1248 wxString
wxString::FromAscii(const char ascii
)
1250 // What do we do with '\0' ?
1253 res
+= (wchar_t)(unsigned char) ascii
;
1258 const wxCharBuffer
wxString::ToAscii() const
1260 // this will allocate enough space for the terminating NUL too
1261 wxCharBuffer
buffer(length());
1263 signed char *dest
= (signed char *)buffer
.data();
1265 const wchar_t *pwc
= c_str();
1268 *dest
++ = *pwc
> SCHAR_MAX
? '_' : *pwc
;
1270 // the output string can't have embedded NULs anyhow, so we can safely
1271 // stop at first of them even if we do have any
1281 // extract string of length nCount starting at nFirst
1282 wxString
wxString::Mid(size_t nFirst
, size_t nCount
) const
1284 size_t nLen
= length();
1286 // default value of nCount is npos and means "till the end"
1287 if ( nCount
== npos
)
1289 nCount
= nLen
- nFirst
;
1292 // out-of-bounds requests return sensible things
1293 if ( nFirst
+ nCount
> nLen
)
1295 nCount
= nLen
- nFirst
;
1298 if ( nFirst
> nLen
)
1300 // AllocCopy() will return empty string
1304 wxString
dest(*this, nFirst
, nCount
);
1305 if ( dest
.length() != nCount
) {
1306 wxFAIL_MSG( _T("out of memory in wxString::Mid") );
1312 // check that the string starts with prefix and return the rest of the string
1313 // in the provided pointer if it is not NULL, otherwise return FALSE
1314 bool wxString::StartsWith(const wxChar
*prefix
, wxString
*rest
) const
1316 wxASSERT_MSG( prefix
, _T("invalid parameter in wxString::StartsWith") );
1318 // first check if the beginning of the string matches the prefix: note
1319 // that we don't have to check that we don't run out of this string as
1320 // when we reach the terminating NUL, either prefix string ends too (and
1321 // then it's ok) or we break out of the loop because there is no match
1322 const wxChar
*p
= c_str();
1325 if ( *prefix
++ != *p
++ )
1334 // put the rest of the string into provided pointer
1341 // extract nCount last (rightmost) characters
1342 wxString
wxString::Right(size_t nCount
) const
1344 if ( nCount
> length() )
1347 wxString
dest(*this, length() - nCount
, nCount
);
1348 if ( dest
.length() != nCount
) {
1349 wxFAIL_MSG( _T("out of memory in wxString::Right") );
1354 // get all characters after the last occurence of ch
1355 // (returns the whole string if ch not found)
1356 wxString
wxString::AfterLast(wxChar ch
) const
1359 int iPos
= Find(ch
, TRUE
);
1360 if ( iPos
== wxNOT_FOUND
)
1363 str
= c_str() + iPos
+ 1;
1368 // extract nCount first (leftmost) characters
1369 wxString
wxString::Left(size_t nCount
) const
1371 if ( nCount
> length() )
1374 wxString
dest(*this, 0, nCount
);
1375 if ( dest
.length() != nCount
) {
1376 wxFAIL_MSG( _T("out of memory in wxString::Left") );
1381 // get all characters before the first occurence of ch
1382 // (returns the whole string if ch not found)
1383 wxString
wxString::BeforeFirst(wxChar ch
) const
1385 int iPos
= Find(ch
);
1386 if ( iPos
== wxNOT_FOUND
) iPos
= length();
1387 return wxString(*this, 0, iPos
);
1390 /// get all characters before the last occurence of ch
1391 /// (returns empty string if ch not found)
1392 wxString
wxString::BeforeLast(wxChar ch
) const
1395 int iPos
= Find(ch
, TRUE
);
1396 if ( iPos
!= wxNOT_FOUND
&& iPos
!= 0 )
1397 str
= wxString(c_str(), iPos
);
1402 /// get all characters after the first occurence of ch
1403 /// (returns empty string if ch not found)
1404 wxString
wxString::AfterFirst(wxChar ch
) const
1407 int iPos
= Find(ch
);
1408 if ( iPos
!= wxNOT_FOUND
)
1409 str
= c_str() + iPos
+ 1;
1414 // replace first (or all) occurences of some substring with another one
1416 wxString::Replace(const wxChar
*szOld
, const wxChar
*szNew
, bool bReplaceAll
)
1418 // if we tried to replace an empty string we'd enter an infinite loop below
1419 wxCHECK_MSG( szOld
&& *szOld
&& szNew
, 0,
1420 _T("wxString::Replace(): invalid parameter") );
1422 size_t uiCount
= 0; // count of replacements made
1424 size_t uiOldLen
= wxStrlen(szOld
);
1427 const wxChar
*pCurrent
= c_str();
1428 const wxChar
*pSubstr
;
1429 while ( *pCurrent
!= wxT('\0') ) {
1430 pSubstr
= wxStrstr(pCurrent
, szOld
);
1431 if ( pSubstr
== NULL
) {
1432 // strTemp is unused if no replacements were made, so avoid the copy
1436 strTemp
+= pCurrent
; // copy the rest
1437 break; // exit the loop
1440 // take chars before match
1441 size_type len
= strTemp
.length();
1442 strTemp
.append(pCurrent
, pSubstr
- pCurrent
);
1443 if ( strTemp
.length() != (size_t)(len
+ pSubstr
- pCurrent
) ) {
1444 wxFAIL_MSG( _T("out of memory in wxString::Replace") );
1448 pCurrent
= pSubstr
+ uiOldLen
; // restart after match
1453 if ( !bReplaceAll
) {
1454 strTemp
+= pCurrent
; // copy the rest
1455 break; // exit the loop
1460 // only done if there were replacements, otherwise would have returned above
1466 bool wxString::IsAscii() const
1468 const wxChar
*s
= (const wxChar
*) *this;
1470 if(!isascii(*s
)) return(FALSE
);
1476 bool wxString::IsWord() const
1478 const wxChar
*s
= (const wxChar
*) *this;
1480 if(!wxIsalpha(*s
)) return(FALSE
);
1486 bool wxString::IsNumber() const
1488 const wxChar
*s
= (const wxChar
*) *this;
1490 if ((s
[0] == '-') || (s
[0] == '+')) s
++;
1492 if(!wxIsdigit(*s
)) return(FALSE
);
1498 wxString
wxString::Strip(stripType w
) const
1501 if ( w
& leading
) s
.Trim(FALSE
);
1502 if ( w
& trailing
) s
.Trim(TRUE
);
1506 // ---------------------------------------------------------------------------
1508 // ---------------------------------------------------------------------------
1510 wxString
& wxString::MakeUpper()
1512 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1513 *it
= (wxChar
)wxToupper(*it
);
1518 wxString
& wxString::MakeLower()
1520 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1521 *it
= (wxChar
)wxTolower(*it
);
1526 // ---------------------------------------------------------------------------
1527 // trimming and padding
1528 // ---------------------------------------------------------------------------
1530 // some compilers (VC++ 6.0 not to name them) return TRUE for a call to
1531 // isspace('ê') in the C locale which seems to be broken to me, but we have to
1532 // live with this by checking that the character is a 7 bit one - even if this
1533 // may fail to detect some spaces (I don't know if Unicode doesn't have
1534 // space-like symbols somewhere except in the first 128 chars), it is arguably
1535 // still better than trimming away accented letters
1536 inline int wxSafeIsspace(wxChar ch
) { return (ch
< 127) && wxIsspace(ch
); }
1538 // trims spaces (in the sense of isspace) from left or right side
1539 wxString
& wxString::Trim(bool bFromRight
)
1541 // first check if we're going to modify the string at all
1544 (bFromRight
&& wxSafeIsspace(GetChar(Len() - 1))) ||
1545 (!bFromRight
&& wxSafeIsspace(GetChar(0u)))
1551 // find last non-space character
1552 iterator psz
= begin() + length() - 1;
1553 while ( wxSafeIsspace(*psz
) && (psz
>= begin()) )
1556 // truncate at trailing space start
1562 // find first non-space character
1563 iterator psz
= begin();
1564 while ( wxSafeIsspace(*psz
) )
1567 // fix up data and length
1568 erase(begin(), psz
);
1575 // adds nCount characters chPad to the string from either side
1576 wxString
& wxString::Pad(size_t nCount
, wxChar chPad
, bool bFromRight
)
1578 wxString
s(chPad
, nCount
);
1591 // truncate the string
1592 wxString
& wxString::Truncate(size_t uiLen
)
1594 if ( uiLen
< Len() ) {
1595 erase(begin() + uiLen
, end());
1597 //else: nothing to do, string is already short enough
1602 // ---------------------------------------------------------------------------
1603 // finding (return wxNOT_FOUND if not found and index otherwise)
1604 // ---------------------------------------------------------------------------
1607 int wxString::Find(wxChar ch
, bool bFromEnd
) const
1609 size_type idx
= bFromEnd
? find_last_of(ch
) : find_first_of(ch
);
1611 return (idx
== npos
) ? wxNOT_FOUND
: (int)idx
;
1614 // find a sub-string (like strstr)
1615 int wxString::Find(const wxChar
*pszSub
) const
1617 size_type idx
= find(pszSub
);
1619 return (idx
== npos
) ? wxNOT_FOUND
: (int)idx
;
1622 // ----------------------------------------------------------------------------
1623 // conversion to numbers
1624 // ----------------------------------------------------------------------------
1626 bool wxString::ToLong(long *val
, int base
) const
1628 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToLong") );
1629 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1631 const wxChar
*start
= c_str();
1633 *val
= wxStrtol(start
, &end
, base
);
1635 // return TRUE only if scan was stopped by the terminating NUL and if the
1636 // string was not empty to start with
1637 return !*end
&& (end
!= start
);
1640 bool wxString::ToULong(unsigned long *val
, int base
) const
1642 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToULong") );
1643 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1645 const wxChar
*start
= c_str();
1647 *val
= wxStrtoul(start
, &end
, base
);
1649 // return TRUE only if scan was stopped by the terminating NUL and if the
1650 // string was not empty to start with
1651 return !*end
&& (end
!= start
);
1654 bool wxString::ToDouble(double *val
) const
1656 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToDouble") );
1658 const wxChar
*start
= c_str();
1660 *val
= wxStrtod(start
, &end
);
1662 // return TRUE only if scan was stopped by the terminating NUL and if the
1663 // string was not empty to start with
1664 return !*end
&& (end
!= start
);
1667 // ---------------------------------------------------------------------------
1669 // ---------------------------------------------------------------------------
1672 wxString
wxString::Format(const wxChar
*pszFormat
, ...)
1675 va_start(argptr
, pszFormat
);
1678 s
.PrintfV(pszFormat
, argptr
);
1686 wxString
wxString::FormatV(const wxChar
*pszFormat
, va_list argptr
)
1689 s
.PrintfV(pszFormat
, argptr
);
1693 int wxString::Printf(const wxChar
*pszFormat
, ...)
1696 va_start(argptr
, pszFormat
);
1698 int iLen
= PrintfV(pszFormat
, argptr
);
1705 int wxString::PrintfV(const wxChar
* pszFormat
, va_list argptr
)
1713 wxStringBuffer
tmp(*this, size
+ 1);
1722 len
= wxVsnprintf(buf
, size
, pszFormat
, argptr
);
1724 // some implementations of vsnprintf() don't NUL terminate
1725 // the string if there is not enough space for it so
1726 // always do it manually
1727 buf
[size
] = _T('\0');
1730 // vsnprintf() may return either -1 (traditional Unix behaviour) or the
1731 // total number of characters which would have been written if the
1732 // buffer were large enough
1733 if ( len
>= 0 && len
<= size
)
1735 // ok, there was enough space
1739 // still not enough, double it again
1743 // we could have overshot
1749 // ----------------------------------------------------------------------------
1750 // misc other operations
1751 // ----------------------------------------------------------------------------
1753 // returns TRUE if the string matches the pattern which may contain '*' and
1754 // '?' metacharacters (as usual, '?' matches any character and '*' any number
1756 bool wxString::Matches(const wxChar
*pszMask
) const
1758 // I disable this code as it doesn't seem to be faster (in fact, it seems
1759 // to be much slower) than the old, hand-written code below and using it
1760 // here requires always linking with libregex even if the user code doesn't
1762 #if 0 // wxUSE_REGEX
1763 // first translate the shell-like mask into a regex
1765 pattern
.reserve(wxStrlen(pszMask
));
1777 pattern
+= _T(".*");
1788 // these characters are special in a RE, quote them
1789 // (however note that we don't quote '[' and ']' to allow
1790 // using them for Unix shell like matching)
1791 pattern
+= _T('\\');
1795 pattern
+= *pszMask
;
1803 return wxRegEx(pattern
, wxRE_NOSUB
| wxRE_EXTENDED
).Matches(c_str());
1804 #else // !wxUSE_REGEX
1805 // TODO: this is, of course, awfully inefficient...
1807 // the char currently being checked
1808 const wxChar
*pszTxt
= c_str();
1810 // the last location where '*' matched
1811 const wxChar
*pszLastStarInText
= NULL
;
1812 const wxChar
*pszLastStarInMask
= NULL
;
1815 for ( ; *pszMask
!= wxT('\0'); pszMask
++, pszTxt
++ ) {
1816 switch ( *pszMask
) {
1818 if ( *pszTxt
== wxT('\0') )
1821 // pszTxt and pszMask will be incremented in the loop statement
1827 // remember where we started to be able to backtrack later
1828 pszLastStarInText
= pszTxt
;
1829 pszLastStarInMask
= pszMask
;
1831 // ignore special chars immediately following this one
1832 // (should this be an error?)
1833 while ( *pszMask
== wxT('*') || *pszMask
== wxT('?') )
1836 // if there is nothing more, match
1837 if ( *pszMask
== wxT('\0') )
1840 // are there any other metacharacters in the mask?
1842 const wxChar
*pEndMask
= wxStrpbrk(pszMask
, wxT("*?"));
1844 if ( pEndMask
!= NULL
) {
1845 // we have to match the string between two metachars
1846 uiLenMask
= pEndMask
- pszMask
;
1849 // we have to match the remainder of the string
1850 uiLenMask
= wxStrlen(pszMask
);
1853 wxString
strToMatch(pszMask
, uiLenMask
);
1854 const wxChar
* pMatch
= wxStrstr(pszTxt
, strToMatch
);
1855 if ( pMatch
== NULL
)
1858 // -1 to compensate "++" in the loop
1859 pszTxt
= pMatch
+ uiLenMask
- 1;
1860 pszMask
+= uiLenMask
- 1;
1865 if ( *pszMask
!= *pszTxt
)
1871 // match only if nothing left
1872 if ( *pszTxt
== wxT('\0') )
1875 // if we failed to match, backtrack if we can
1876 if ( pszLastStarInText
) {
1877 pszTxt
= pszLastStarInText
+ 1;
1878 pszMask
= pszLastStarInMask
;
1880 pszLastStarInText
= NULL
;
1882 // don't bother resetting pszLastStarInMask, it's unnecessary
1888 #endif // wxUSE_REGEX/!wxUSE_REGEX
1891 // Count the number of chars
1892 int wxString::Freq(wxChar ch
) const
1896 for (int i
= 0; i
< len
; i
++)
1898 if (GetChar(i
) == ch
)
1904 // convert to upper case, return the copy of the string
1905 wxString
wxString::Upper() const
1906 { wxString
s(*this); return s
.MakeUpper(); }
1908 // convert to lower case, return the copy of the string
1909 wxString
wxString::Lower() const { wxString
s(*this); return s
.MakeLower(); }
1911 int wxString::sprintf(const wxChar
*pszFormat
, ...)
1914 va_start(argptr
, pszFormat
);
1915 int iLen
= PrintfV(pszFormat
, argptr
);
1920 // ============================================================================
1922 // ============================================================================
1924 #include "wx/arrstr.h"
1928 // size increment = min(50% of current size, ARRAY_MAXSIZE_INCREMENT)
1929 #define ARRAY_MAXSIZE_INCREMENT 4096
1931 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
1932 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
1935 #define STRING(p) ((wxString *)(&(p)))
1938 void wxArrayString::Init(bool autoSort
)
1942 m_pItems
= (wxChar
**) NULL
;
1943 m_autoSort
= autoSort
;
1947 wxArrayString::wxArrayString(const wxArrayString
& src
)
1949 Init(src
.m_autoSort
);
1954 // assignment operator
1955 wxArrayString
& wxArrayString::operator=(const wxArrayString
& src
)
1962 m_autoSort
= src
.m_autoSort
;
1967 void wxArrayString::Copy(const wxArrayString
& src
)
1969 if ( src
.m_nCount
> ARRAY_DEFAULT_INITIAL_SIZE
)
1970 Alloc(src
.m_nCount
);
1972 for ( size_t n
= 0; n
< src
.m_nCount
; n
++ )
1977 void wxArrayString::Grow(size_t nIncrement
)
1979 // only do it if no more place
1980 if ( (m_nSize
- m_nCount
) < nIncrement
) {
1981 // if ARRAY_DEFAULT_INITIAL_SIZE were set to 0, the initially empty would
1982 // be never resized!
1983 #if ARRAY_DEFAULT_INITIAL_SIZE == 0
1984 #error "ARRAY_DEFAULT_INITIAL_SIZE must be > 0!"
1987 if ( m_nSize
== 0 ) {
1988 // was empty, alloc some memory
1989 m_nSize
= ARRAY_DEFAULT_INITIAL_SIZE
;
1990 if (m_nSize
< nIncrement
)
1991 m_nSize
= nIncrement
;
1992 m_pItems
= new wxChar
*[m_nSize
];
1995 // otherwise when it's called for the first time, nIncrement would be 0
1996 // and the array would never be expanded
1997 // add 50% but not too much
1998 size_t ndefIncrement
= m_nSize
< ARRAY_DEFAULT_INITIAL_SIZE
1999 ? ARRAY_DEFAULT_INITIAL_SIZE
: m_nSize
>> 1;
2000 if ( ndefIncrement
> ARRAY_MAXSIZE_INCREMENT
)
2001 ndefIncrement
= ARRAY_MAXSIZE_INCREMENT
;
2002 if ( nIncrement
< ndefIncrement
)
2003 nIncrement
= ndefIncrement
;
2004 m_nSize
+= nIncrement
;
2005 wxChar
**pNew
= new wxChar
*[m_nSize
];
2007 // copy data to new location
2008 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
2010 // delete old memory (but do not release the strings!)
2011 wxDELETEA(m_pItems
);
2018 void wxArrayString::Free()
2020 for ( size_t n
= 0; n
< m_nCount
; n
++ ) {
2021 STRING(m_pItems
[n
])->GetStringData()->Unlock();
2025 // deletes all the strings from the list
2026 void wxArrayString::Empty()
2033 // as Empty, but also frees memory
2034 void wxArrayString::Clear()
2041 wxDELETEA(m_pItems
);
2045 wxArrayString::~wxArrayString()
2049 wxDELETEA(m_pItems
);
2052 void wxArrayString::reserve(size_t nSize
)
2057 // pre-allocates memory (frees the previous data!)
2058 void wxArrayString::Alloc(size_t nSize
)
2060 // only if old buffer was not big enough
2061 if ( nSize
> m_nSize
) {
2063 wxDELETEA(m_pItems
);
2064 m_pItems
= new wxChar
*[nSize
];
2071 // minimizes the memory usage by freeing unused memory
2072 void wxArrayString::Shrink()
2074 // only do it if we have some memory to free
2075 if( m_nCount
< m_nSize
) {
2076 // allocates exactly as much memory as we need
2077 wxChar
**pNew
= new wxChar
*[m_nCount
];
2079 // copy data to new location
2080 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
2086 #if WXWIN_COMPATIBILITY_2_4
2088 // return a wxString[] as required for some control ctors.
2089 wxString
* wxArrayString::GetStringArray() const
2091 wxString
*array
= 0;
2095 array
= new wxString
[m_nCount
];
2096 for( size_t i
= 0; i
< m_nCount
; i
++ )
2097 array
[i
] = m_pItems
[i
];
2103 #endif // WXWIN_COMPATIBILITY_2_4
2105 // searches the array for an item (forward or backwards)
2106 int wxArrayString::Index(const wxChar
*sz
, bool bCase
, bool bFromEnd
) const
2109 // use binary search in the sorted array
2110 wxASSERT_MSG( bCase
&& !bFromEnd
,
2111 wxT("search parameters ignored for auto sorted array") );
2120 res
= wxStrcmp(sz
, m_pItems
[i
]);
2132 // use linear search in unsorted array
2134 if ( m_nCount
> 0 ) {
2135 size_t ui
= m_nCount
;
2137 if ( STRING(m_pItems
[--ui
])->IsSameAs(sz
, bCase
) )
2144 for( size_t ui
= 0; ui
< m_nCount
; ui
++ ) {
2145 if( STRING(m_pItems
[ui
])->IsSameAs(sz
, bCase
) )
2154 // add item at the end
2155 size_t wxArrayString::Add(const wxString
& str
, size_t nInsert
)
2158 // insert the string at the correct position to keep the array sorted
2166 res
= wxStrcmp(str
, m_pItems
[i
]);
2177 wxASSERT_MSG( lo
== hi
, wxT("binary search broken") );
2179 Insert(str
, lo
, nInsert
);
2184 wxASSERT( str
.GetStringData()->IsValid() );
2188 for (size_t i
= 0; i
< nInsert
; i
++)
2190 // the string data must not be deleted!
2191 str
.GetStringData()->Lock();
2194 m_pItems
[m_nCount
+ i
] = (wxChar
*)str
.c_str(); // const_cast
2196 size_t ret
= m_nCount
;
2197 m_nCount
+= nInsert
;
2202 // add item at the given position
2203 void wxArrayString::Insert(const wxString
& str
, size_t nIndex
, size_t nInsert
)
2205 wxASSERT( str
.GetStringData()->IsValid() );
2207 wxCHECK_RET( nIndex
<= m_nCount
, wxT("bad index in wxArrayString::Insert") );
2208 wxCHECK_RET( m_nCount
<= m_nCount
+ nInsert
,
2209 wxT("array size overflow in wxArrayString::Insert") );
2213 memmove(&m_pItems
[nIndex
+ nInsert
], &m_pItems
[nIndex
],
2214 (m_nCount
- nIndex
)*sizeof(wxChar
*));
2216 for (size_t i
= 0; i
< nInsert
; i
++)
2218 str
.GetStringData()->Lock();
2219 m_pItems
[nIndex
+ i
] = (wxChar
*)str
.c_str();
2221 m_nCount
+= nInsert
;
2224 // range insert (STL 23.2.4.3)
2226 wxArrayString::insert(iterator it
, const_iterator first
, const_iterator last
)
2228 const int idx
= it
- begin();
2233 // reset "it" since it can change inside Grow()
2236 while ( first
!= last
)
2238 it
= insert(it
, *first
);
2240 // insert returns an iterator to the last element inserted but we need
2241 // insert the next after this one, that is before the next one
2249 void wxArrayString::SetCount(size_t count
)
2254 while ( m_nCount
< count
)
2255 m_pItems
[m_nCount
++] = (wxChar
*)s
.c_str();
2258 // removes item from array (by index)
2259 void wxArrayString::RemoveAt(size_t nIndex
, size_t nRemove
)
2261 wxCHECK_RET( nIndex
< m_nCount
, wxT("bad index in wxArrayString::Remove") );
2262 wxCHECK_RET( nIndex
+ nRemove
<= m_nCount
,
2263 wxT("removing too many elements in wxArrayString::Remove") );
2266 for (size_t i
= 0; i
< nRemove
; i
++)
2267 Item(nIndex
+ i
).GetStringData()->Unlock();
2269 memmove(&m_pItems
[nIndex
], &m_pItems
[nIndex
+ nRemove
],
2270 (m_nCount
- nIndex
- nRemove
)*sizeof(wxChar
*));
2271 m_nCount
-= nRemove
;
2274 // removes item from array (by value)
2275 void wxArrayString::Remove(const wxChar
*sz
)
2277 int iIndex
= Index(sz
);
2279 wxCHECK_RET( iIndex
!= wxNOT_FOUND
,
2280 wxT("removing inexistent element in wxArrayString::Remove") );
2285 void wxArrayString::assign(const_iterator first
, const_iterator last
)
2287 reserve(last
- first
);
2288 for(; first
!= last
; ++first
)
2292 // ----------------------------------------------------------------------------
2294 // ----------------------------------------------------------------------------
2296 // we can only sort one array at a time with the quick-sort based
2299 // need a critical section to protect access to gs_compareFunction and
2300 // gs_sortAscending variables
2301 static wxCriticalSection
*gs_critsectStringSort
= NULL
;
2303 // call this before the value of the global sort vars is changed/after
2304 // you're finished with them
2305 #define START_SORT() wxASSERT( !gs_critsectStringSort ); \
2306 gs_critsectStringSort = new wxCriticalSection; \
2307 gs_critsectStringSort->Enter()
2308 #define END_SORT() gs_critsectStringSort->Leave(); \
2309 delete gs_critsectStringSort; \
2310 gs_critsectStringSort = NULL
2312 #define START_SORT()
2314 #endif // wxUSE_THREADS
2316 // function to use for string comparaison
2317 static wxArrayString::CompareFunction gs_compareFunction
= NULL
;
2319 // if we don't use the compare function, this flag tells us if we sort the
2320 // array in ascending or descending order
2321 static bool gs_sortAscending
= TRUE
;
2323 // function which is called by quick sort
2324 extern "C" int wxC_CALLING_CONV
// LINKAGEMODE
2325 wxStringCompareFunction(const void *first
, const void *second
)
2327 wxString
*strFirst
= (wxString
*)first
;
2328 wxString
*strSecond
= (wxString
*)second
;
2330 if ( gs_compareFunction
) {
2331 return gs_compareFunction(*strFirst
, *strSecond
);
2334 // maybe we should use wxStrcoll
2335 int result
= wxStrcmp(strFirst
->c_str(), strSecond
->c_str());
2337 return gs_sortAscending
? result
: -result
;
2341 // sort array elements using passed comparaison function
2342 void wxArrayString::Sort(CompareFunction compareFunction
)
2346 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2347 gs_compareFunction
= compareFunction
;
2351 // reset it to NULL so that Sort(bool) will work the next time
2352 gs_compareFunction
= NULL
;
2357 typedef int (wxC_CALLING_CONV
* wxStringCompareFn
)(const void *first
, const void *second
);
2359 void wxArrayString::Sort(CompareFunction2 compareFunction
)
2361 qsort(m_pItems
, m_nCount
, sizeof(wxChar
*), (wxStringCompareFn
)compareFunction
);
2364 void wxArrayString::Sort(bool reverseOrder
)
2366 Sort(reverseOrder
? wxStringSortDescending
: wxStringSortAscending
);
2369 void wxArrayString::DoSort()
2371 wxCHECK_RET( !m_autoSort
, wxT("can't use this method with sorted arrays") );
2373 // just sort the pointers using qsort() - of course it only works because
2374 // wxString() *is* a pointer to its data
2375 qsort(m_pItems
, m_nCount
, sizeof(wxChar
*), wxStringCompareFunction
);
2378 bool wxArrayString::operator==(const wxArrayString
& a
) const
2380 if ( m_nCount
!= a
.m_nCount
)
2383 for ( size_t n
= 0; n
< m_nCount
; n
++ )
2385 if ( Item(n
) != a
[n
] )
2392 #endif // !wxUSE_STL
2394 int wxCMPFUNC_CONV
wxStringSortAscending(wxString
* s1
, wxString
* s2
)
2396 return wxStrcmp(s1
->c_str(), s2
->c_str());
2399 int wxCMPFUNC_CONV
wxStringSortDescending(wxString
* s1
, wxString
* s2
)
2401 return -wxStrcmp(s1
->c_str(), s2
->c_str());