1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxString class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "string.h"
18 * 1) all empty strings use g_strEmpty, nRefs = -1 (set in Init())
19 * 2) AllocBuffer() sets nRefs to 1, Lock() increments it by one
20 * 3) Unlock() decrements nRefs and frees memory if it goes to 0
23 // ===========================================================================
24 // headers, declarations, constants
25 // ===========================================================================
27 // For compilers that support precompilation, includes "wx.h".
28 #include "wx/wxprec.h"
36 #include "wx/string.h"
38 #include "wx/thread.h"
50 #include <wchar.h> // for wcsrtombs(), see comments where it's used
53 #ifdef WXSTRING_IS_WXOBJECT
54 IMPLEMENT_DYNAMIC_CLASS(wxString
, wxObject
)
55 #endif //WXSTRING_IS_WXOBJECT
58 #undef wxUSE_EXPERIMENTAL_PRINTF
59 #define wxUSE_EXPERIMENTAL_PRINTF 1
62 // allocating extra space for each string consumes more memory but speeds up
63 // the concatenation operations (nLen is the current string's length)
64 // NB: EXTRA_ALLOC must be >= 0!
65 #define EXTRA_ALLOC (19 - nLen % 16)
67 // ---------------------------------------------------------------------------
68 // static class variables definition
69 // ---------------------------------------------------------------------------
71 #ifdef wxSTD_STRING_COMPATIBILITY
72 const size_t wxString::npos
= wxSTRING_MAXLEN
;
73 #endif // wxSTD_STRING_COMPATIBILITY
75 // ----------------------------------------------------------------------------
77 // ----------------------------------------------------------------------------
79 // for an empty string, GetStringData() will return this address: this
80 // structure has the same layout as wxStringData and it's data() method will
81 // return the empty string (dummy pointer)
86 } g_strEmpty
= { {-1, 0, 0}, wxT('\0') };
88 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
89 // must define this static for VA or else you get multiply defined symbols everywhere
90 const unsigned int wxSTRING_MAXLEN
= UINT_MAX
- 100;
94 // empty C style string: points to 'string data' byte of g_strEmpty
95 extern const wxChar WXDLLEXPORT
*wxEmptyString
= &g_strEmpty
.dummy
;
97 // ----------------------------------------------------------------------------
98 // conditional compilation
99 // ----------------------------------------------------------------------------
101 #if !defined(__WXSW__) && wxUSE_UNICODE
102 #ifdef wxUSE_EXPERIMENTAL_PRINTF
103 #undef wxUSE_EXPERIMENTAL_PRINTF
105 #define wxUSE_EXPERIMENTAL_PRINTF 1
108 // we want to find out if the current platform supports vsnprintf()-like
109 // function: for Unix this is done with configure, for Windows we test the
110 // compiler explicitly.
112 // FIXME currently, this is only for ANSI (!Unicode) strings, so we call this
113 // function wxVsnprintfA (A for ANSI), should also find one for Unicode
114 // strings in Unicode build
116 #if defined(__VISUALC__) || (defined(__MINGW32__) && wxUSE_NORLANDER_HEADERS)
117 #define wxVsnprintfA _vsnprintf
120 #ifdef HAVE_VSNPRINTF
121 #define wxVsnprintfA vsnprintf
123 #endif // Windows/!Windows
126 // in this case we'll use vsprintf() (which is ANSI and thus should be
127 // always available), but it's unsafe because it doesn't check for buffer
128 // size - so give a warning
129 #define wxVsnprintfA(buf, len, format, arg) vsprintf(buf, format, arg)
131 #if defined(__VISUALC__)
132 #pragma message("Using sprintf() because no snprintf()-like function defined")
133 #elif defined(__GNUG__) && !defined(__UNIX__)
134 #warning "Using sprintf() because no snprintf()-like function defined"
135 #elif defined(__MWERKS__)
136 #warning "Using sprintf() because no snprintf()-like function defined"
138 #endif // no vsnprintf
141 // AIX has vsnprintf, but there's no prototype in the system headers.
142 extern "C" int vsnprintf(char* str
, size_t n
, const char* format
, va_list ap
);
145 // ----------------------------------------------------------------------------
147 // ----------------------------------------------------------------------------
149 #if defined(wxSTD_STRING_COMPATIBILITY) && wxUSE_STD_IOSTREAM
151 // MS Visual C++ version 5.0 provides the new STL headers as well as the old
154 // ATTN: you can _not_ use both of these in the same program!
156 istream
& operator>>(istream
& is
, wxString
& WXUNUSED(str
))
161 streambuf
*sb
= is
.rdbuf();
164 int ch
= sb
->sbumpc ();
166 is
.setstate(ios::eofbit
);
169 else if ( isspace(ch
) ) {
181 if ( str
.length() == 0 )
182 is
.setstate(ios::failbit
);
187 ostream
& operator<<(ostream
& os
, const wxString
& str
)
193 #endif //std::string compatibility
195 extern int WXDLLEXPORT
wxVsnprintf(wxChar
*buf
, size_t len
,
196 const wxChar
*format
, va_list argptr
)
199 // FIXME should use wvsnprintf() or whatever if it's available
201 int iLen
= s
.PrintfV(format
, argptr
);
204 wxStrncpy(buf
, s
.c_str(), iLen
);
209 // vsnprintf() will not terminate the string with '\0' if there is not
210 // enough place, but we want the string to always be NUL terminated
211 int rc
= wxVsnprintfA(buf
, len
- 1, format
, argptr
);
218 #endif // Unicode/ANSI
221 extern int WXDLLEXPORT
wxSnprintf(wxChar
*buf
, size_t len
,
222 const wxChar
*format
, ...)
225 va_start(argptr
, format
);
227 int iLen
= wxVsnprintf(buf
, len
, format
, argptr
);
234 // ----------------------------------------------------------------------------
236 // ----------------------------------------------------------------------------
238 // this small class is used to gather statistics for performance tuning
239 //#define WXSTRING_STATISTICS
240 #ifdef WXSTRING_STATISTICS
244 Averager(const char *sz
) { m_sz
= sz
; m_nTotal
= m_nCount
= 0; }
246 { printf("wxString: average %s = %f\n", m_sz
, ((float)m_nTotal
)/m_nCount
); }
248 void Add(size_t n
) { m_nTotal
+= n
; m_nCount
++; }
251 size_t m_nCount
, m_nTotal
;
253 } g_averageLength("allocation size"),
254 g_averageSummandLength("summand length"),
255 g_averageConcatHit("hit probability in concat"),
256 g_averageInitialLength("initial string length");
258 #define STATISTICS_ADD(av, val) g_average##av.Add(val)
260 #define STATISTICS_ADD(av, val)
261 #endif // WXSTRING_STATISTICS
263 // ===========================================================================
264 // wxString class core
265 // ===========================================================================
267 // ---------------------------------------------------------------------------
269 // ---------------------------------------------------------------------------
271 // constructs string of <nLength> copies of character <ch>
272 wxString::wxString(wxChar ch
, size_t nLength
)
277 AllocBuffer(nLength
);
280 // memset only works on char
281 for (size_t n
=0; n
<nLength
; n
++) m_pchData
[n
] = ch
;
283 memset(m_pchData
, ch
, nLength
);
288 // takes nLength elements of psz starting at nPos
289 void wxString::InitWith(const wxChar
*psz
, size_t nPos
, size_t nLength
)
293 // if the length is not given, assume the string to be NUL terminated
294 if ( nLength
== wxSTRING_MAXLEN
) {
295 wxASSERT_MSG( nPos
<= wxStrlen(psz
), _T("index out of bounds") );
297 nLength
= wxStrlen(psz
+ nPos
);
300 STATISTICS_ADD(InitialLength
, nLength
);
303 // trailing '\0' is written in AllocBuffer()
304 AllocBuffer(nLength
);
305 memcpy(m_pchData
, psz
+ nPos
, nLength
*sizeof(wxChar
));
309 #ifdef wxSTD_STRING_COMPATIBILITY
311 // poor man's iterators are "void *" pointers
312 wxString::wxString(const void *pStart
, const void *pEnd
)
314 InitWith((const wxChar
*)pStart
, 0,
315 (const wxChar
*)pEnd
- (const wxChar
*)pStart
);
318 #endif //std::string compatibility
322 // from multibyte string
323 wxString::wxString(const char *psz
, wxMBConv
& conv
, size_t nLength
)
325 // first get necessary size
326 size_t nLen
= psz
? conv
.MB2WC((wchar_t *) NULL
, psz
, 0) : 0;
328 // nLength is number of *Unicode* characters here!
329 if ((nLen
!= (size_t)-1) && (nLen
> nLength
))
333 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) ) {
335 conv
.MB2WC(m_pchData
, psz
, nLen
);
346 wxString::wxString(const wchar_t *pwz
, wxMBConv
& conv
)
348 // first get necessary size
349 size_t nLen
= pwz
? conv
.WC2MB((char *) NULL
, pwz
, 0) : 0;
352 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) ) {
354 conv
.WC2MB(m_pchData
, pwz
, nLen
);
360 #endif // wxUSE_WCHAR_T
362 #endif // Unicode/ANSI
364 // ---------------------------------------------------------------------------
366 // ---------------------------------------------------------------------------
368 // allocates memory needed to store a C string of length nLen
369 void wxString::AllocBuffer(size_t nLen
)
371 // allocating 0 sized buffer doesn't make sense, all empty strings should
373 wxASSERT( nLen
> 0 );
375 // make sure that we don't overflow
376 wxASSERT( nLen
< (INT_MAX
/ sizeof(wxChar
)) -
377 (sizeof(wxStringData
) + EXTRA_ALLOC
+ 1) );
379 STATISTICS_ADD(Length
, nLen
);
382 // 1) one extra character for '\0' termination
383 // 2) sizeof(wxStringData) for housekeeping info
384 wxStringData
* pData
= (wxStringData
*)
385 malloc(sizeof(wxStringData
) + (nLen
+ EXTRA_ALLOC
+ 1)*sizeof(wxChar
));
387 pData
->nDataLength
= nLen
;
388 pData
->nAllocLength
= nLen
+ EXTRA_ALLOC
;
389 m_pchData
= pData
->data(); // data starts after wxStringData
390 m_pchData
[nLen
] = wxT('\0');
393 // must be called before changing this string
394 void wxString::CopyBeforeWrite()
396 wxStringData
* pData
= GetStringData();
398 if ( pData
->IsShared() ) {
399 pData
->Unlock(); // memory not freed because shared
400 size_t nLen
= pData
->nDataLength
;
402 memcpy(m_pchData
, pData
->data(), nLen
*sizeof(wxChar
));
405 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
408 // must be called before replacing contents of this string
409 void wxString::AllocBeforeWrite(size_t nLen
)
411 wxASSERT( nLen
!= 0 ); // doesn't make any sense
413 // must not share string and must have enough space
414 wxStringData
* pData
= GetStringData();
415 if ( pData
->IsShared() || pData
->IsEmpty() ) {
416 // can't work with old buffer, get new one
421 if ( nLen
> pData
->nAllocLength
) {
422 // realloc the buffer instead of calling malloc() again, this is more
424 STATISTICS_ADD(Length
, nLen
);
428 wxStringData
*pDataOld
= pData
;
429 pData
= (wxStringData
*)
430 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
435 // FIXME we're going to crash...
439 pData
->nAllocLength
= nLen
;
440 m_pchData
= pData
->data();
443 // now we have enough space, just update the string length
444 pData
->nDataLength
= nLen
;
447 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
450 // allocate enough memory for nLen characters
451 void wxString::Alloc(size_t nLen
)
453 wxStringData
*pData
= GetStringData();
454 if ( pData
->nAllocLength
<= nLen
) {
455 if ( pData
->IsEmpty() ) {
458 wxStringData
* pData
= (wxStringData
*)
459 malloc(sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
461 pData
->nDataLength
= 0;
462 pData
->nAllocLength
= nLen
;
463 m_pchData
= pData
->data(); // data starts after wxStringData
464 m_pchData
[0u] = wxT('\0');
466 else if ( pData
->IsShared() ) {
467 pData
->Unlock(); // memory not freed because shared
468 size_t nOldLen
= pData
->nDataLength
;
470 memcpy(m_pchData
, pData
->data(), nOldLen
*sizeof(wxChar
));
475 wxStringData
*pDataOld
= pData
;
476 wxStringData
*p
= (wxStringData
*)
477 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
483 // FIXME what to do on memory error?
487 // it's not important if the pointer changed or not (the check for this
488 // is not faster than assigning to m_pchData in all cases)
489 p
->nAllocLength
= nLen
;
490 m_pchData
= p
->data();
493 //else: we've already got enough
496 // shrink to minimal size (releasing extra memory)
497 void wxString::Shrink()
499 wxStringData
*pData
= GetStringData();
501 // this variable is unused in release build, so avoid the compiler warning
502 // by just not declaring it
506 realloc(pData
, sizeof(wxStringData
) + (pData
->nDataLength
+ 1)*sizeof(wxChar
));
508 // we rely on a reasonable realloc() implementation here - so far I haven't
509 // seen any which wouldn't behave like this
511 wxASSERT( p
!= NULL
); // can't free memory?
512 wxASSERT( p
== pData
); // we're decrementing the size - block shouldn't move!
515 // get the pointer to writable buffer of (at least) nLen bytes
516 wxChar
*wxString::GetWriteBuf(size_t nLen
)
518 AllocBeforeWrite(nLen
);
520 wxASSERT( GetStringData()->nRefs
== 1 );
521 GetStringData()->Validate(FALSE
);
526 // put string back in a reasonable state after GetWriteBuf
527 void wxString::UngetWriteBuf()
529 GetStringData()->nDataLength
= wxStrlen(m_pchData
);
530 GetStringData()->Validate(TRUE
);
533 void wxString::UngetWriteBuf(size_t nLen
)
535 GetStringData()->nDataLength
= nLen
;
536 GetStringData()->Validate(TRUE
);
539 // ---------------------------------------------------------------------------
541 // ---------------------------------------------------------------------------
543 // all functions are inline in string.h
545 // ---------------------------------------------------------------------------
546 // assignment operators
547 // ---------------------------------------------------------------------------
549 // helper function: does real copy
550 void wxString::AssignCopy(size_t nSrcLen
, const wxChar
*pszSrcData
)
552 if ( nSrcLen
== 0 ) {
556 AllocBeforeWrite(nSrcLen
);
557 memcpy(m_pchData
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
558 GetStringData()->nDataLength
= nSrcLen
;
559 m_pchData
[nSrcLen
] = wxT('\0');
563 // assigns one string to another
564 wxString
& wxString::operator=(const wxString
& stringSrc
)
566 wxASSERT( stringSrc
.GetStringData()->IsValid() );
568 // don't copy string over itself
569 if ( m_pchData
!= stringSrc
.m_pchData
) {
570 if ( stringSrc
.GetStringData()->IsEmpty() ) {
575 GetStringData()->Unlock();
576 m_pchData
= stringSrc
.m_pchData
;
577 GetStringData()->Lock();
584 // assigns a single character
585 wxString
& wxString::operator=(wxChar ch
)
592 wxString
& wxString::operator=(const wxChar
*psz
)
594 AssignCopy(wxStrlen(psz
), psz
);
600 // same as 'signed char' variant
601 wxString
& wxString::operator=(const unsigned char* psz
)
603 *this = (const char *)psz
;
608 wxString
& wxString::operator=(const wchar_t *pwz
)
618 // ---------------------------------------------------------------------------
619 // string concatenation
620 // ---------------------------------------------------------------------------
622 // add something to this string
623 void wxString::ConcatSelf(int nSrcLen
, const wxChar
*pszSrcData
)
625 STATISTICS_ADD(SummandLength
, nSrcLen
);
627 // concatenating an empty string is a NOP
629 wxStringData
*pData
= GetStringData();
630 size_t nLen
= pData
->nDataLength
;
631 size_t nNewLen
= nLen
+ nSrcLen
;
633 // alloc new buffer if current is too small
634 if ( pData
->IsShared() ) {
635 STATISTICS_ADD(ConcatHit
, 0);
637 // we have to allocate another buffer
638 wxStringData
* pOldData
= GetStringData();
639 AllocBuffer(nNewLen
);
640 memcpy(m_pchData
, pOldData
->data(), nLen
*sizeof(wxChar
));
643 else if ( nNewLen
> pData
->nAllocLength
) {
644 STATISTICS_ADD(ConcatHit
, 0);
646 // we have to grow the buffer
650 STATISTICS_ADD(ConcatHit
, 1);
652 // the buffer is already big enough
655 // should be enough space
656 wxASSERT( nNewLen
<= GetStringData()->nAllocLength
);
658 // fast concatenation - all is done in our buffer
659 memcpy(m_pchData
+ nLen
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
661 m_pchData
[nNewLen
] = wxT('\0'); // put terminating '\0'
662 GetStringData()->nDataLength
= nNewLen
; // and fix the length
664 //else: the string to append was empty
668 * concatenation functions come in 5 flavours:
670 * char + string and string + char
671 * C str + string and string + C str
674 wxString
operator+(const wxString
& string1
, const wxString
& string2
)
676 wxASSERT( string1
.GetStringData()->IsValid() );
677 wxASSERT( string2
.GetStringData()->IsValid() );
679 wxString s
= string1
;
685 wxString
operator+(const wxString
& string
, wxChar ch
)
687 wxASSERT( string
.GetStringData()->IsValid() );
695 wxString
operator+(wxChar ch
, const wxString
& string
)
697 wxASSERT( string
.GetStringData()->IsValid() );
705 wxString
operator+(const wxString
& string
, const wxChar
*psz
)
707 wxASSERT( string
.GetStringData()->IsValid() );
710 s
.Alloc(wxStrlen(psz
) + string
.Len());
717 wxString
operator+(const wxChar
*psz
, const wxString
& string
)
719 wxASSERT( string
.GetStringData()->IsValid() );
722 s
.Alloc(wxStrlen(psz
) + string
.Len());
729 // ===========================================================================
730 // other common string functions
731 // ===========================================================================
733 // ---------------------------------------------------------------------------
734 // simple sub-string extraction
735 // ---------------------------------------------------------------------------
737 // helper function: clone the data attached to this string
738 void wxString::AllocCopy(wxString
& dest
, int nCopyLen
, int nCopyIndex
) const
740 if ( nCopyLen
== 0 ) {
744 dest
.AllocBuffer(nCopyLen
);
745 memcpy(dest
.m_pchData
, m_pchData
+ nCopyIndex
, nCopyLen
*sizeof(wxChar
));
749 // extract string of length nCount starting at nFirst
750 wxString
wxString::Mid(size_t nFirst
, size_t nCount
) const
752 wxStringData
*pData
= GetStringData();
753 size_t nLen
= pData
->nDataLength
;
755 // default value of nCount is wxSTRING_MAXLEN and means "till the end"
756 if ( nCount
== wxSTRING_MAXLEN
)
758 nCount
= nLen
- nFirst
;
761 // out-of-bounds requests return sensible things
762 if ( nFirst
+ nCount
> nLen
)
764 nCount
= nLen
- nFirst
;
769 // AllocCopy() will return empty string
774 AllocCopy(dest
, nCount
, nFirst
);
779 // check that the tring starts with prefix and return the rest of the string
780 // in the provided pointer if it is not NULL, otherwise return FALSE
781 bool wxString::StartsWith(const wxChar
*prefix
, wxString
*rest
) const
783 wxASSERT_MSG( prefix
, _T("invalid parameter in wxString::StartsWith") );
785 // first check if the beginning of the string matches the prefix: note
786 // that we don't have to check that we don't run out of this string as
787 // when we reach the terminating NUL, either prefix string ends too (and
788 // then it's ok) or we break out of the loop because there is no match
789 const wxChar
*p
= c_str();
792 if ( *prefix
++ != *p
++ )
801 // put the rest of the string into provided pointer
808 // extract nCount last (rightmost) characters
809 wxString
wxString::Right(size_t nCount
) const
811 if ( nCount
> (size_t)GetStringData()->nDataLength
)
812 nCount
= GetStringData()->nDataLength
;
815 AllocCopy(dest
, nCount
, GetStringData()->nDataLength
- nCount
);
819 // get all characters after the last occurence of ch
820 // (returns the whole string if ch not found)
821 wxString
wxString::AfterLast(wxChar ch
) const
824 int iPos
= Find(ch
, TRUE
);
825 if ( iPos
== wxNOT_FOUND
)
828 str
= c_str() + iPos
+ 1;
833 // extract nCount first (leftmost) characters
834 wxString
wxString::Left(size_t nCount
) const
836 if ( nCount
> (size_t)GetStringData()->nDataLength
)
837 nCount
= GetStringData()->nDataLength
;
840 AllocCopy(dest
, nCount
, 0);
844 // get all characters before the first occurence of ch
845 // (returns the whole string if ch not found)
846 wxString
wxString::BeforeFirst(wxChar ch
) const
849 for ( const wxChar
*pc
= m_pchData
; *pc
!= wxT('\0') && *pc
!= ch
; pc
++ )
855 /// get all characters before the last occurence of ch
856 /// (returns empty string if ch not found)
857 wxString
wxString::BeforeLast(wxChar ch
) const
860 int iPos
= Find(ch
, TRUE
);
861 if ( iPos
!= wxNOT_FOUND
&& iPos
!= 0 )
862 str
= wxString(c_str(), iPos
);
867 /// get all characters after the first occurence of ch
868 /// (returns empty string if ch not found)
869 wxString
wxString::AfterFirst(wxChar ch
) const
873 if ( iPos
!= wxNOT_FOUND
)
874 str
= c_str() + iPos
+ 1;
879 // replace first (or all) occurences of some substring with another one
880 size_t wxString::Replace(const wxChar
*szOld
, const wxChar
*szNew
, bool bReplaceAll
)
882 size_t uiCount
= 0; // count of replacements made
884 size_t uiOldLen
= wxStrlen(szOld
);
887 const wxChar
*pCurrent
= m_pchData
;
888 const wxChar
*pSubstr
;
889 while ( *pCurrent
!= wxT('\0') ) {
890 pSubstr
= wxStrstr(pCurrent
, szOld
);
891 if ( pSubstr
== NULL
) {
892 // strTemp is unused if no replacements were made, so avoid the copy
896 strTemp
+= pCurrent
; // copy the rest
897 break; // exit the loop
900 // take chars before match
901 strTemp
.ConcatSelf(pSubstr
- pCurrent
, pCurrent
);
903 pCurrent
= pSubstr
+ uiOldLen
; // restart after match
908 if ( !bReplaceAll
) {
909 strTemp
+= pCurrent
; // copy the rest
910 break; // exit the loop
915 // only done if there were replacements, otherwise would have returned above
921 bool wxString::IsAscii() const
923 const wxChar
*s
= (const wxChar
*) *this;
925 if(!isascii(*s
)) return(FALSE
);
931 bool wxString::IsWord() const
933 const wxChar
*s
= (const wxChar
*) *this;
935 if(!wxIsalpha(*s
)) return(FALSE
);
941 bool wxString::IsNumber() const
943 const wxChar
*s
= (const wxChar
*) *this;
945 if ((s
[0] == '-') || (s
[0] == '+')) s
++;
947 if(!wxIsdigit(*s
)) return(FALSE
);
953 wxString
wxString::Strip(stripType w
) const
956 if ( w
& leading
) s
.Trim(FALSE
);
957 if ( w
& trailing
) s
.Trim(TRUE
);
961 // ---------------------------------------------------------------------------
963 // ---------------------------------------------------------------------------
965 wxString
& wxString::MakeUpper()
969 for ( wxChar
*p
= m_pchData
; *p
; p
++ )
970 *p
= (wxChar
)wxToupper(*p
);
975 wxString
& wxString::MakeLower()
979 for ( wxChar
*p
= m_pchData
; *p
; p
++ )
980 *p
= (wxChar
)wxTolower(*p
);
985 // ---------------------------------------------------------------------------
986 // trimming and padding
987 // ---------------------------------------------------------------------------
989 // trims spaces (in the sense of isspace) from left or right side
990 wxString
& wxString::Trim(bool bFromRight
)
992 // first check if we're going to modify the string at all
995 (bFromRight
&& wxIsspace(GetChar(Len() - 1))) ||
996 (!bFromRight
&& wxIsspace(GetChar(0u)))
1000 // ok, there is at least one space to trim
1005 // find last non-space character
1006 wxChar
*psz
= m_pchData
+ GetStringData()->nDataLength
- 1;
1007 while ( wxIsspace(*psz
) && (psz
>= m_pchData
) )
1010 // truncate at trailing space start
1012 GetStringData()->nDataLength
= psz
- m_pchData
;
1016 // find first non-space character
1017 const wxChar
*psz
= m_pchData
;
1018 while ( wxIsspace(*psz
) )
1021 // fix up data and length
1022 int nDataLength
= GetStringData()->nDataLength
- (psz
- (const wxChar
*) m_pchData
);
1023 memmove(m_pchData
, psz
, (nDataLength
+ 1)*sizeof(wxChar
));
1024 GetStringData()->nDataLength
= nDataLength
;
1031 // adds nCount characters chPad to the string from either side
1032 wxString
& wxString::Pad(size_t nCount
, wxChar chPad
, bool bFromRight
)
1034 wxString
s(chPad
, nCount
);
1047 // truncate the string
1048 wxString
& wxString::Truncate(size_t uiLen
)
1050 if ( uiLen
< Len() ) {
1053 *(m_pchData
+ uiLen
) = wxT('\0');
1054 GetStringData()->nDataLength
= uiLen
;
1056 //else: nothing to do, string is already short enough
1061 // ---------------------------------------------------------------------------
1062 // finding (return wxNOT_FOUND if not found and index otherwise)
1063 // ---------------------------------------------------------------------------
1066 int wxString::Find(wxChar ch
, bool bFromEnd
) const
1068 const wxChar
*psz
= bFromEnd
? wxStrrchr(m_pchData
, ch
) : wxStrchr(m_pchData
, ch
);
1070 return (psz
== NULL
) ? wxNOT_FOUND
: psz
- (const wxChar
*) m_pchData
;
1073 // find a sub-string (like strstr)
1074 int wxString::Find(const wxChar
*pszSub
) const
1076 const wxChar
*psz
= wxStrstr(m_pchData
, pszSub
);
1078 return (psz
== NULL
) ? wxNOT_FOUND
: psz
- (const wxChar
*) m_pchData
;
1081 // ----------------------------------------------------------------------------
1082 // conversion to numbers
1083 // ----------------------------------------------------------------------------
1085 bool wxString::ToLong(long *val
) const
1087 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToLong") );
1089 const wxChar
*start
= c_str();
1091 *val
= wxStrtol(start
, &end
, 10);
1093 // return TRUE only if scan was stopped by the terminating NUL and if the
1094 // string was not empty to start with
1095 return !*end
&& (end
!= start
);
1098 bool wxString::ToULong(unsigned long *val
) const
1100 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToULong") );
1102 const wxChar
*start
= c_str();
1104 *val
= wxStrtoul(start
, &end
, 10);
1106 // return TRUE only if scan was stopped by the terminating NUL and if the
1107 // string was not empty to start with
1108 return !*end
&& (end
!= start
);
1111 bool wxString::ToDouble(double *val
) const
1113 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToDouble") );
1115 const wxChar
*start
= c_str();
1117 *val
= wxStrtod(start
, &end
);
1119 // return TRUE only if scan was stopped by the terminating NUL and if the
1120 // string was not empty to start with
1121 return !*end
&& (end
!= start
);
1124 // ---------------------------------------------------------------------------
1126 // ---------------------------------------------------------------------------
1129 wxString
wxString::Format(const wxChar
*pszFormat
, ...)
1132 va_start(argptr
, pszFormat
);
1135 s
.PrintfV(pszFormat
, argptr
);
1143 wxString
wxString::FormatV(const wxChar
*pszFormat
, va_list argptr
)
1146 s
.Printf(pszFormat
, argptr
);
1150 int wxString::Printf(const wxChar
*pszFormat
, ...)
1153 va_start(argptr
, pszFormat
);
1155 int iLen
= PrintfV(pszFormat
, argptr
);
1162 int wxString::PrintfV(const wxChar
* pszFormat
, va_list argptr
)
1164 #if wxUSE_EXPERIMENTAL_PRINTF
1165 // the new implementation
1167 // buffer to avoid dynamic memory allocation each time for small strings
1168 char szScratch
[1024];
1171 for (size_t n
= 0; pszFormat
[n
]; n
++)
1172 if (pszFormat
[n
] == wxT('%')) {
1173 static char s_szFlags
[256] = "%";
1175 bool adj_left
= FALSE
, in_prec
= FALSE
,
1176 prec_dot
= FALSE
, done
= FALSE
;
1178 size_t min_width
= 0, max_width
= wxSTRING_MAXLEN
;
1180 #define CHECK_PREC if (in_prec && !prec_dot) { s_szFlags[flagofs++] = '.'; prec_dot = TRUE; }
1181 switch (pszFormat
[++n
]) {
1195 s_szFlags
[flagofs
++] = pszFormat
[n
];
1200 s_szFlags
[flagofs
++] = pszFormat
[n
];
1207 // dot will be auto-added to s_szFlags if non-negative number follows
1212 s_szFlags
[flagofs
++] = pszFormat
[n
];
1217 s_szFlags
[flagofs
++] = pszFormat
[n
];
1223 s_szFlags
[flagofs
++] = pszFormat
[n
];
1228 s_szFlags
[flagofs
++] = pszFormat
[n
];
1232 int len
= va_arg(argptr
, int);
1239 adj_left
= !adj_left
;
1240 s_szFlags
[flagofs
++] = '-';
1245 flagofs
+= ::sprintf(s_szFlags
+flagofs
,"%d",len
);
1248 case wxT('1'): case wxT('2'): case wxT('3'):
1249 case wxT('4'): case wxT('5'): case wxT('6'):
1250 case wxT('7'): case wxT('8'): case wxT('9'):
1254 while ((pszFormat
[n
]>=wxT('0')) && (pszFormat
[n
]<=wxT('9'))) {
1255 s_szFlags
[flagofs
++] = pszFormat
[n
];
1256 len
= len
*10 + (pszFormat
[n
] - wxT('0'));
1259 if (in_prec
) max_width
= len
;
1260 else min_width
= len
;
1261 n
--; // the main loop pre-increments n again
1271 s_szFlags
[flagofs
++] = pszFormat
[n
];
1272 s_szFlags
[flagofs
] = '\0';
1274 int val
= va_arg(argptr
, int);
1275 ::sprintf(szScratch
, s_szFlags
, val
);
1277 else if (ilen
== -1) {
1278 short int val
= va_arg(argptr
, short int);
1279 ::sprintf(szScratch
, s_szFlags
, val
);
1281 else if (ilen
== 1) {
1282 long int val
= va_arg(argptr
, long int);
1283 ::sprintf(szScratch
, s_szFlags
, val
);
1285 else if (ilen
== 2) {
1286 #if SIZEOF_LONG_LONG
1287 long long int val
= va_arg(argptr
, long long int);
1288 ::sprintf(szScratch
, s_szFlags
, val
);
1290 long int val
= va_arg(argptr
, long int);
1291 ::sprintf(szScratch
, s_szFlags
, val
);
1294 else if (ilen
== 3) {
1295 size_t val
= va_arg(argptr
, size_t);
1296 ::sprintf(szScratch
, s_szFlags
, val
);
1298 *this += wxString(szScratch
);
1307 s_szFlags
[flagofs
++] = pszFormat
[n
];
1308 s_szFlags
[flagofs
] = '\0';
1310 long double val
= va_arg(argptr
, long double);
1311 ::sprintf(szScratch
, s_szFlags
, val
);
1313 double val
= va_arg(argptr
, double);
1314 ::sprintf(szScratch
, s_szFlags
, val
);
1316 *this += wxString(szScratch
);
1321 void *val
= va_arg(argptr
, void *);
1323 s_szFlags
[flagofs
++] = pszFormat
[n
];
1324 s_szFlags
[flagofs
] = '\0';
1325 ::sprintf(szScratch
, s_szFlags
, val
);
1326 *this += wxString(szScratch
);
1332 wxChar val
= va_arg(argptr
, int);
1333 // we don't need to honor padding here, do we?
1340 // wx extension: we'll let %hs mean non-Unicode strings
1341 char *val
= va_arg(argptr
, char *);
1343 // ASCII->Unicode constructor handles max_width right
1344 wxString
s(val
, wxConvLibc
, max_width
);
1346 size_t len
= wxSTRING_MAXLEN
;
1348 for (len
= 0; val
[len
] && (len
<max_width
); len
++);
1349 } else val
= wxT("(null)");
1350 wxString
s(val
, len
);
1352 if (s
.Len() < min_width
)
1353 s
.Pad(min_width
- s
.Len(), wxT(' '), adj_left
);
1356 wxChar
*val
= va_arg(argptr
, wxChar
*);
1357 size_t len
= wxSTRING_MAXLEN
;
1359 for (len
= 0; val
[len
] && (len
<max_width
); len
++);
1360 } else val
= wxT("(null)");
1361 wxString
s(val
, len
);
1362 if (s
.Len() < min_width
)
1363 s
.Pad(min_width
- s
.Len(), wxT(' '), adj_left
);
1370 int *val
= va_arg(argptr
, int *);
1373 else if (ilen
== -1) {
1374 short int *val
= va_arg(argptr
, short int *);
1377 else if (ilen
>= 1) {
1378 long int *val
= va_arg(argptr
, long int *);
1384 if (wxIsalpha(pszFormat
[n
]))
1385 // probably some flag not taken care of here yet
1386 s_szFlags
[flagofs
++] = pszFormat
[n
];
1389 *this += wxT('%'); // just to pass the glibc tst-printf.c
1397 } else *this += pszFormat
[n
];
1400 // buffer to avoid dynamic memory allocation each time for small strings
1401 char szScratch
[1024];
1403 // NB: wxVsnprintf() may return either less than the buffer size or -1 if
1404 // there is not enough place depending on implementation
1405 int iLen
= wxVsnprintfA(szScratch
, WXSIZEOF(szScratch
), pszFormat
, argptr
);
1407 // the whole string is in szScratch
1411 bool outOfMemory
= FALSE
;
1412 int size
= 2*WXSIZEOF(szScratch
);
1413 while ( !outOfMemory
) {
1414 char *buf
= GetWriteBuf(size
);
1416 iLen
= wxVsnprintfA(buf
, size
, pszFormat
, argptr
);
1423 // ok, there was enough space
1427 // still not enough, double it again
1431 if ( outOfMemory
) {
1436 #endif // wxUSE_EXPERIMENTAL_PRINTF/!wxUSE_EXPERIMENTAL_PRINTF
1441 // ----------------------------------------------------------------------------
1442 // misc other operations
1443 // ----------------------------------------------------------------------------
1445 // returns TRUE if the string matches the pattern which may contain '*' and
1446 // '?' metacharacters (as usual, '?' matches any character and '*' any number
1448 bool wxString::Matches(const wxChar
*pszMask
) const
1450 // check char by char
1451 const wxChar
*pszTxt
;
1452 for ( pszTxt
= c_str(); *pszMask
!= wxT('\0'); pszMask
++, pszTxt
++ ) {
1453 switch ( *pszMask
) {
1455 if ( *pszTxt
== wxT('\0') )
1458 // pszText and pszMask will be incremented in the loop statement
1464 // ignore special chars immediately following this one
1465 while ( *pszMask
== wxT('*') || *pszMask
== wxT('?') )
1468 // if there is nothing more, match
1469 if ( *pszMask
== wxT('\0') )
1472 // are there any other metacharacters in the mask?
1474 const wxChar
*pEndMask
= wxStrpbrk(pszMask
, wxT("*?"));
1476 if ( pEndMask
!= NULL
) {
1477 // we have to match the string between two metachars
1478 uiLenMask
= pEndMask
- pszMask
;
1481 // we have to match the remainder of the string
1482 uiLenMask
= wxStrlen(pszMask
);
1485 wxString
strToMatch(pszMask
, uiLenMask
);
1486 const wxChar
* pMatch
= wxStrstr(pszTxt
, strToMatch
);
1487 if ( pMatch
== NULL
)
1490 // -1 to compensate "++" in the loop
1491 pszTxt
= pMatch
+ uiLenMask
- 1;
1492 pszMask
+= uiLenMask
- 1;
1497 if ( *pszMask
!= *pszTxt
)
1503 // match only if nothing left
1504 return *pszTxt
== wxT('\0');
1507 // Count the number of chars
1508 int wxString::Freq(wxChar ch
) const
1512 for (int i
= 0; i
< len
; i
++)
1514 if (GetChar(i
) == ch
)
1520 // convert to upper case, return the copy of the string
1521 wxString
wxString::Upper() const
1522 { wxString
s(*this); return s
.MakeUpper(); }
1524 // convert to lower case, return the copy of the string
1525 wxString
wxString::Lower() const { wxString
s(*this); return s
.MakeLower(); }
1527 int wxString::sprintf(const wxChar
*pszFormat
, ...)
1530 va_start(argptr
, pszFormat
);
1531 int iLen
= PrintfV(pszFormat
, argptr
);
1536 // ---------------------------------------------------------------------------
1537 // standard C++ library string functions
1538 // ---------------------------------------------------------------------------
1540 #ifdef wxSTD_STRING_COMPATIBILITY
1542 void wxString::resize(size_t nSize
, wxChar ch
)
1544 size_t len
= length();
1550 else if ( nSize
> len
)
1552 *this += wxString(ch
, len
- nSize
);
1554 //else: we have exactly the specified length, nothing to do
1557 void wxString::swap(wxString
& str
)
1559 // this is slightly less efficient than fiddling with m_pchData directly,
1560 // but it is still quite efficient as we don't copy the string here because
1561 // ref count always stays positive
1567 wxString
& wxString::insert(size_t nPos
, const wxString
& str
)
1569 wxASSERT( str
.GetStringData()->IsValid() );
1570 wxASSERT( nPos
<= Len() );
1572 if ( !str
.IsEmpty() ) {
1574 wxChar
*pc
= strTmp
.GetWriteBuf(Len() + str
.Len());
1575 wxStrncpy(pc
, c_str(), nPos
);
1576 wxStrcpy(pc
+ nPos
, str
);
1577 wxStrcpy(pc
+ nPos
+ str
.Len(), c_str() + nPos
);
1578 strTmp
.UngetWriteBuf();
1585 size_t wxString::find(const wxString
& str
, size_t nStart
) const
1587 wxASSERT( str
.GetStringData()->IsValid() );
1588 wxASSERT( nStart
<= Len() );
1590 const wxChar
*p
= wxStrstr(c_str() + nStart
, str
);
1592 return p
== NULL
? npos
: p
- c_str();
1595 // VC++ 1.5 can't cope with the default argument in the header.
1596 #if !defined(__VISUALC__) || defined(__WIN32__)
1597 size_t wxString::find(const wxChar
* sz
, size_t nStart
, size_t n
) const
1599 return find(wxString(sz
, n
), nStart
);
1603 // Gives a duplicate symbol (presumably a case-insensitivity problem)
1604 #if !defined(__BORLANDC__)
1605 size_t wxString::find(wxChar ch
, size_t nStart
) const
1607 wxASSERT( nStart
<= Len() );
1609 const wxChar
*p
= wxStrchr(c_str() + nStart
, ch
);
1611 return p
== NULL
? npos
: p
- c_str();
1615 size_t wxString::rfind(const wxString
& str
, size_t nStart
) const
1617 wxASSERT( str
.GetStringData()->IsValid() );
1618 wxASSERT( nStart
<= Len() );
1620 // TODO could be made much quicker than that
1621 const wxChar
*p
= c_str() + (nStart
== npos
? Len() : nStart
);
1622 while ( p
>= c_str() + str
.Len() ) {
1623 if ( wxStrncmp(p
- str
.Len(), str
, str
.Len()) == 0 )
1624 return p
- str
.Len() - c_str();
1631 // VC++ 1.5 can't cope with the default argument in the header.
1632 #if !defined(__VISUALC__) || defined(__WIN32__)
1633 size_t wxString::rfind(const wxChar
* sz
, size_t nStart
, size_t n
) const
1635 return rfind(wxString(sz
, n
== npos
? 0 : n
), nStart
);
1638 size_t wxString::rfind(wxChar ch
, size_t nStart
) const
1640 if ( nStart
== npos
)
1646 wxASSERT( nStart
<= Len() );
1649 const wxChar
*p
= wxStrrchr(c_str(), ch
);
1654 size_t result
= p
- c_str();
1655 return ( result
> nStart
) ? npos
: result
;
1659 size_t wxString::find_first_of(const wxChar
* sz
, size_t nStart
) const
1661 const wxChar
*start
= c_str() + nStart
;
1662 const wxChar
*firstOf
= wxStrpbrk(start
, sz
);
1664 return firstOf
- c_str();
1669 size_t wxString::find_last_of(const wxChar
* sz
, size_t nStart
) const
1671 if ( nStart
== npos
)
1677 wxASSERT( nStart
<= Len() );
1680 for ( const wxChar
*p
= c_str() + length() - 1; p
>= c_str(); p
-- )
1682 if ( wxStrchr(sz
, *p
) )
1689 size_t wxString::find_first_not_of(const wxChar
* sz
, size_t nStart
) const
1691 if ( nStart
== npos
)
1697 wxASSERT( nStart
<= Len() );
1700 size_t nAccept
= wxStrspn(c_str() + nStart
, sz
);
1701 if ( nAccept
>= length() - nStart
)
1707 size_t wxString::find_first_not_of(wxChar ch
, size_t nStart
) const
1709 wxASSERT( nStart
<= Len() );
1711 for ( const wxChar
*p
= c_str() + nStart
; *p
; p
++ )
1720 size_t wxString::find_last_not_of(const wxChar
* sz
, size_t nStart
) const
1722 if ( nStart
== npos
)
1728 wxASSERT( nStart
<= Len() );
1731 for ( const wxChar
*p
= c_str() + nStart
- 1; p
>= c_str(); p
-- )
1733 if ( !wxStrchr(sz
, *p
) )
1740 size_t wxString::find_last_not_of(wxChar ch
, size_t nStart
) const
1742 if ( nStart
== npos
)
1748 wxASSERT( nStart
<= Len() );
1751 for ( const wxChar
*p
= c_str() + nStart
- 1; p
>= c_str(); p
-- )
1760 wxString
& wxString::erase(size_t nStart
, size_t nLen
)
1762 wxString
strTmp(c_str(), nStart
);
1763 if ( nLen
!= npos
) {
1764 wxASSERT( nStart
+ nLen
<= Len() );
1766 strTmp
.append(c_str() + nStart
+ nLen
);
1773 wxString
& wxString::replace(size_t nStart
, size_t nLen
, const wxChar
*sz
)
1775 wxASSERT_MSG( nStart
+ nLen
<= Len(),
1776 _T("index out of bounds in wxString::replace") );
1779 strTmp
.Alloc(Len()); // micro optimisation to avoid multiple mem allocs
1782 strTmp
.append(c_str(), nStart
);
1783 strTmp
<< sz
<< c_str() + nStart
+ nLen
;
1789 wxString
& wxString::replace(size_t nStart
, size_t nLen
, size_t nCount
, wxChar ch
)
1791 return replace(nStart
, nLen
, wxString(ch
, nCount
));
1794 wxString
& wxString::replace(size_t nStart
, size_t nLen
,
1795 const wxString
& str
, size_t nStart2
, size_t nLen2
)
1797 return replace(nStart
, nLen
, str
.substr(nStart2
, nLen2
));
1800 wxString
& wxString::replace(size_t nStart
, size_t nLen
,
1801 const wxChar
* sz
, size_t nCount
)
1803 return replace(nStart
, nLen
, wxString(sz
, nCount
));
1806 #endif //std::string compatibility
1808 // ============================================================================
1810 // ============================================================================
1812 // size increment = max(50% of current size, ARRAY_MAXSIZE_INCREMENT)
1813 #define ARRAY_MAXSIZE_INCREMENT 4096
1814 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
1815 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
1818 #define STRING(p) ((wxString *)(&(p)))
1821 wxArrayString::wxArrayString(bool autoSort
)
1825 m_pItems
= (wxChar
**) NULL
;
1826 m_autoSort
= autoSort
;
1830 wxArrayString::wxArrayString(const wxArrayString
& src
)
1834 m_pItems
= (wxChar
**) NULL
;
1835 m_autoSort
= src
.m_autoSort
;
1840 // assignment operator
1841 wxArrayString
& wxArrayString::operator=(const wxArrayString
& src
)
1851 void wxArrayString::Copy(const wxArrayString
& src
)
1853 if ( src
.m_nCount
> ARRAY_DEFAULT_INITIAL_SIZE
)
1854 Alloc(src
.m_nCount
);
1856 for ( size_t n
= 0; n
< src
.m_nCount
; n
++ )
1861 void wxArrayString::Grow()
1863 // only do it if no more place
1864 if( m_nCount
== m_nSize
) {
1865 if( m_nSize
== 0 ) {
1866 // was empty, alloc some memory
1867 m_nSize
= ARRAY_DEFAULT_INITIAL_SIZE
;
1868 m_pItems
= new wxChar
*[m_nSize
];
1871 // otherwise when it's called for the first time, nIncrement would be 0
1872 // and the array would never be expanded
1873 #if defined(__VISAGECPP__) && defined(__WXDEBUG__)
1874 int array_size
= ARRAY_DEFAULT_INITIAL_SIZE
;
1875 wxASSERT( array_size
!= 0 );
1877 wxASSERT( ARRAY_DEFAULT_INITIAL_SIZE
!= 0 );
1880 // add 50% but not too much
1881 size_t nIncrement
= m_nSize
< ARRAY_DEFAULT_INITIAL_SIZE
1882 ? ARRAY_DEFAULT_INITIAL_SIZE
: m_nSize
>> 1;
1883 if ( nIncrement
> ARRAY_MAXSIZE_INCREMENT
)
1884 nIncrement
= ARRAY_MAXSIZE_INCREMENT
;
1885 m_nSize
+= nIncrement
;
1886 wxChar
**pNew
= new wxChar
*[m_nSize
];
1888 // copy data to new location
1889 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
1891 // delete old memory (but do not release the strings!)
1892 wxDELETEA(m_pItems
);
1899 void wxArrayString::Free()
1901 for ( size_t n
= 0; n
< m_nCount
; n
++ ) {
1902 STRING(m_pItems
[n
])->GetStringData()->Unlock();
1906 // deletes all the strings from the list
1907 void wxArrayString::Empty()
1914 // as Empty, but also frees memory
1915 void wxArrayString::Clear()
1922 wxDELETEA(m_pItems
);
1926 wxArrayString::~wxArrayString()
1930 wxDELETEA(m_pItems
);
1933 // pre-allocates memory (frees the previous data!)
1934 void wxArrayString::Alloc(size_t nSize
)
1936 wxASSERT( nSize
> 0 );
1938 // only if old buffer was not big enough
1939 if ( nSize
> m_nSize
) {
1941 wxDELETEA(m_pItems
);
1942 m_pItems
= new wxChar
*[nSize
];
1949 // minimizes the memory usage by freeing unused memory
1950 void wxArrayString::Shrink()
1952 // only do it if we have some memory to free
1953 if( m_nCount
< m_nSize
) {
1954 // allocates exactly as much memory as we need
1955 wxChar
**pNew
= new wxChar
*[m_nCount
];
1957 // copy data to new location
1958 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
1964 // searches the array for an item (forward or backwards)
1965 int wxArrayString::Index(const wxChar
*sz
, bool bCase
, bool bFromEnd
) const
1968 // use binary search in the sorted array
1969 wxASSERT_MSG( bCase
&& !bFromEnd
,
1970 wxT("search parameters ignored for auto sorted array") );
1979 res
= wxStrcmp(sz
, m_pItems
[i
]);
1991 // use linear search in unsorted array
1993 if ( m_nCount
> 0 ) {
1994 size_t ui
= m_nCount
;
1996 if ( STRING(m_pItems
[--ui
])->IsSameAs(sz
, bCase
) )
2003 for( size_t ui
= 0; ui
< m_nCount
; ui
++ ) {
2004 if( STRING(m_pItems
[ui
])->IsSameAs(sz
, bCase
) )
2013 // add item at the end
2014 size_t wxArrayString::Add(const wxString
& str
)
2017 // insert the string at the correct position to keep the array sorted
2025 res
= wxStrcmp(str
, m_pItems
[i
]);
2036 wxASSERT_MSG( lo
== hi
, wxT("binary search broken") );
2043 wxASSERT( str
.GetStringData()->IsValid() );
2047 // the string data must not be deleted!
2048 str
.GetStringData()->Lock();
2051 m_pItems
[m_nCount
] = (wxChar
*)str
.c_str(); // const_cast
2057 // add item at the given position
2058 void wxArrayString::Insert(const wxString
& str
, size_t nIndex
)
2060 wxASSERT( str
.GetStringData()->IsValid() );
2062 wxCHECK_RET( nIndex
<= m_nCount
, wxT("bad index in wxArrayString::Insert") );
2066 memmove(&m_pItems
[nIndex
+ 1], &m_pItems
[nIndex
],
2067 (m_nCount
- nIndex
)*sizeof(wxChar
*));
2069 str
.GetStringData()->Lock();
2070 m_pItems
[nIndex
] = (wxChar
*)str
.c_str();
2075 // removes item from array (by index)
2076 void wxArrayString::Remove(size_t nIndex
)
2078 wxCHECK_RET( nIndex
<= m_nCount
, wxT("bad index in wxArrayString::Remove") );
2081 Item(nIndex
).GetStringData()->Unlock();
2083 memmove(&m_pItems
[nIndex
], &m_pItems
[nIndex
+ 1],
2084 (m_nCount
- nIndex
- 1)*sizeof(wxChar
*));
2088 // removes item from array (by value)
2089 void wxArrayString::Remove(const wxChar
*sz
)
2091 int iIndex
= Index(sz
);
2093 wxCHECK_RET( iIndex
!= wxNOT_FOUND
,
2094 wxT("removing inexistent element in wxArrayString::Remove") );
2099 // ----------------------------------------------------------------------------
2101 // ----------------------------------------------------------------------------
2103 // we can only sort one array at a time with the quick-sort based
2106 // need a critical section to protect access to gs_compareFunction and
2107 // gs_sortAscending variables
2108 static wxCriticalSection
*gs_critsectStringSort
= NULL
;
2110 // call this before the value of the global sort vars is changed/after
2111 // you're finished with them
2112 #define START_SORT() wxASSERT( !gs_critsectStringSort ); \
2113 gs_critsectStringSort = new wxCriticalSection; \
2114 gs_critsectStringSort->Enter()
2115 #define END_SORT() gs_critsectStringSort->Leave(); \
2116 delete gs_critsectStringSort; \
2117 gs_critsectStringSort = NULL
2119 #define START_SORT()
2121 #endif // wxUSE_THREADS
2123 // function to use for string comparaison
2124 static wxArrayString::CompareFunction gs_compareFunction
= NULL
;
2126 // if we don't use the compare function, this flag tells us if we sort the
2127 // array in ascending or descending order
2128 static bool gs_sortAscending
= TRUE
;
2130 // function which is called by quick sort
2131 static int LINKAGEMODE
wxStringCompareFunction(const void *first
, const void *second
)
2133 wxString
*strFirst
= (wxString
*)first
;
2134 wxString
*strSecond
= (wxString
*)second
;
2136 if ( gs_compareFunction
) {
2137 return gs_compareFunction(*strFirst
, *strSecond
);
2140 // maybe we should use wxStrcoll
2141 int result
= wxStrcmp(strFirst
->c_str(), strSecond
->c_str());
2143 return gs_sortAscending
? result
: -result
;
2147 // sort array elements using passed comparaison function
2148 void wxArrayString::Sort(CompareFunction compareFunction
)
2152 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2153 gs_compareFunction
= compareFunction
;
2157 // reset it to NULL so that Sort(bool) will work the next time
2158 gs_compareFunction
= NULL
;
2163 void wxArrayString::Sort(bool reverseOrder
)
2167 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2168 gs_sortAscending
= !reverseOrder
;
2175 void wxArrayString::DoSort()
2177 wxCHECK_RET( !m_autoSort
, wxT("can't use this method with sorted arrays") );
2179 // just sort the pointers using qsort() - of course it only works because
2180 // wxString() *is* a pointer to its data
2181 qsort(m_pItems
, m_nCount
, sizeof(wxChar
*), wxStringCompareFunction
);
2184 bool wxArrayString::operator==(const wxArrayString
& a
) const
2186 if ( m_nCount
!= a
.m_nCount
)
2189 for ( size_t n
= 0; n
< m_nCount
; n
++ )
2191 if ( Item(n
) != a
[n
] )