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"
49 #ifdef WXSTRING_IS_WXOBJECT
50 IMPLEMENT_DYNAMIC_CLASS(wxString
, wxObject
)
51 #endif //WXSTRING_IS_WXOBJECT
54 #undef wxUSE_EXPERIMENTAL_PRINTF
55 #define wxUSE_EXPERIMENTAL_PRINTF 1
58 // allocating extra space for each string consumes more memory but speeds up
59 // the concatenation operations (nLen is the current string's length)
60 // NB: EXTRA_ALLOC must be >= 0!
61 #define EXTRA_ALLOC (19 - nLen % 16)
63 // ---------------------------------------------------------------------------
64 // static class variables definition
65 // ---------------------------------------------------------------------------
67 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
68 // must define this static for VA or else you get multiply defined symbols
70 const unsigned int wxSTRING_MAXLEN
= UINT_MAX
- 100;
73 #ifdef wxSTD_STRING_COMPATIBILITY
74 const size_t wxString::npos
= wxSTRING_MAXLEN
;
75 #endif // wxSTD_STRING_COMPATIBILITY
77 // ----------------------------------------------------------------------------
79 // ----------------------------------------------------------------------------
81 // for an empty string, GetStringData() will return this address: this
82 // structure has the same layout as wxStringData and it's data() method will
83 // return the empty string (dummy pointer)
88 } g_strEmpty
= { {-1, 0, 0}, wxT('\0') };
90 // empty C style string: points to 'string data' byte of g_strEmpty
91 extern const wxChar WXDLLEXPORT
*wxEmptyString
= &g_strEmpty
.dummy
;
93 // ----------------------------------------------------------------------------
94 // conditional compilation
95 // ----------------------------------------------------------------------------
97 #if !defined(__WXSW__) && wxUSE_UNICODE
98 #ifdef wxUSE_EXPERIMENTAL_PRINTF
99 #undef wxUSE_EXPERIMENTAL_PRINTF
101 #define wxUSE_EXPERIMENTAL_PRINTF 1
104 // we want to find out if the current platform supports vsnprintf()-like
105 // function: for Unix this is done with configure, for Windows we test the
106 // compiler explicitly.
108 // FIXME currently, this is only for ANSI (!Unicode) strings, so we call this
109 // function wxVsnprintfA (A for ANSI), should also find one for Unicode
110 // strings in Unicode build
112 #if defined(__VISUALC__) || (defined(__MINGW32__) && wxUSE_NORLANDER_HEADERS)
113 #define wxVsnprintfA _vsnprintf
115 #elif defined(__WXMAC__)
116 #define wxVsnprintfA vsnprintf
118 #ifdef HAVE_VSNPRINTF
119 #define wxVsnprintfA vsnprintf
121 #endif // Windows/!Windows
124 // in this case we'll use vsprintf() (which is ANSI and thus should be
125 // always available), but it's unsafe because it doesn't check for buffer
126 // size - so give a warning
127 #define wxVsnprintfA(buf, len, format, arg) vsprintf(buf, format, arg)
129 #if defined(__VISUALC__)
130 #pragma message("Using sprintf() because no snprintf()-like function defined")
131 #elif defined(__GNUG__)
132 #warning "Using sprintf() because no snprintf()-like function defined"
134 #endif // no vsnprintf
137 // AIX has vsnprintf, but there's no prototype in the system headers.
138 extern "C" int vsnprintf(char* str
, size_t n
, const char* format
, va_list ap
);
141 // ----------------------------------------------------------------------------
143 // ----------------------------------------------------------------------------
145 #if defined(wxSTD_STRING_COMPATIBILITY) && wxUSE_STD_IOSTREAM
147 // MS Visual C++ version 5.0 provides the new STL headers as well as the old
150 // ATTN: you can _not_ use both of these in the same program!
152 wxSTD istream
& operator>>(wxSTD istream
& is
, wxString
& WXUNUSED(str
))
157 streambuf
*sb
= is
.rdbuf();
160 int ch
= sb
->sbumpc ();
162 is
.setstate(ios::eofbit
);
165 else if ( isspace(ch
) ) {
177 if ( str
.length() == 0 )
178 is
.setstate(ios::failbit
);
183 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxString
& str
)
189 #endif //std::string compatibility
191 extern int WXDLLEXPORT
wxVsnprintf(wxChar
*buf
, size_t len
,
192 const wxChar
*format
, va_list argptr
)
195 // FIXME should use wvsnprintf() or whatever if it's available
197 int iLen
= s
.PrintfV(format
, argptr
);
200 wxStrncpy(buf
, s
.c_str(), len
);
201 buf
[len
-1] = wxT('\0');
206 // vsnprintf() will not terminate the string with '\0' if there is not
207 // enough place, but we want the string to always be NUL terminated
208 int rc
= wxVsnprintfA(buf
, len
- 1, format
, argptr
);
215 #endif // Unicode/ANSI
218 extern int WXDLLEXPORT
wxSnprintf(wxChar
*buf
, size_t len
,
219 const wxChar
*format
, ...)
222 va_start(argptr
, format
);
224 int iLen
= wxVsnprintf(buf
, len
, format
, argptr
);
231 // ----------------------------------------------------------------------------
233 // ----------------------------------------------------------------------------
235 // this small class is used to gather statistics for performance tuning
236 //#define WXSTRING_STATISTICS
237 #ifdef WXSTRING_STATISTICS
241 Averager(const char *sz
) { m_sz
= sz
; m_nTotal
= m_nCount
= 0; }
243 { printf("wxString: average %s = %f\n", m_sz
, ((float)m_nTotal
)/m_nCount
); }
245 void Add(size_t n
) { m_nTotal
+= n
; m_nCount
++; }
248 size_t m_nCount
, m_nTotal
;
250 } g_averageLength("allocation size"),
251 g_averageSummandLength("summand length"),
252 g_averageConcatHit("hit probability in concat"),
253 g_averageInitialLength("initial string length");
255 #define STATISTICS_ADD(av, val) g_average##av.Add(val)
257 #define STATISTICS_ADD(av, val)
258 #endif // WXSTRING_STATISTICS
260 // ===========================================================================
261 // wxString class core
262 // ===========================================================================
264 // ---------------------------------------------------------------------------
266 // ---------------------------------------------------------------------------
268 // constructs string of <nLength> copies of character <ch>
269 wxString::wxString(wxChar ch
, size_t nLength
)
274 AllocBuffer(nLength
);
277 // memset only works on char
278 for (size_t n
=0; n
<nLength
; n
++) m_pchData
[n
] = ch
;
280 memset(m_pchData
, ch
, nLength
);
285 // takes nLength elements of psz starting at nPos
286 void wxString::InitWith(const wxChar
*psz
, size_t nPos
, size_t nLength
)
290 // if the length is not given, assume the string to be NUL terminated
291 if ( nLength
== wxSTRING_MAXLEN
) {
292 wxASSERT_MSG( nPos
<= wxStrlen(psz
), _T("index out of bounds") );
294 nLength
= wxStrlen(psz
+ nPos
);
297 STATISTICS_ADD(InitialLength
, nLength
);
300 // trailing '\0' is written in AllocBuffer()
301 AllocBuffer(nLength
);
302 memcpy(m_pchData
, psz
+ nPos
, nLength
*sizeof(wxChar
));
306 #ifdef wxSTD_STRING_COMPATIBILITY
308 // poor man's iterators are "void *" pointers
309 wxString::wxString(const void *pStart
, const void *pEnd
)
311 InitWith((const wxChar
*)pStart
, 0,
312 (const wxChar
*)pEnd
- (const wxChar
*)pStart
);
315 #endif //std::string compatibility
319 // from multibyte string
320 wxString::wxString(const char *psz
, wxMBConv
& conv
, size_t nLength
)
322 // first get necessary size
323 size_t nLen
= psz
? conv
.MB2WC((wchar_t *) NULL
, psz
, 0) : 0;
325 // nLength is number of *Unicode* characters here!
326 if ((nLen
!= (size_t)-1) && (nLen
> nLength
))
330 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) ) {
332 conv
.MB2WC(m_pchData
, psz
, nLen
);
343 wxString::wxString(const wchar_t *pwz
, wxMBConv
& conv
)
345 // first get necessary size
346 size_t nLen
= pwz
? conv
.WC2MB((char *) NULL
, pwz
, 0) : 0;
349 if ( (nLen
!= 0) && (nLen
!= (size_t)-1) ) {
351 conv
.WC2MB(m_pchData
, pwz
, nLen
);
357 #endif // wxUSE_WCHAR_T
359 #endif // Unicode/ANSI
361 // ---------------------------------------------------------------------------
363 // ---------------------------------------------------------------------------
365 // allocates memory needed to store a C string of length nLen
366 void wxString::AllocBuffer(size_t nLen
)
368 // allocating 0 sized buffer doesn't make sense, all empty strings should
370 wxASSERT( nLen
> 0 );
372 // make sure that we don't overflow
373 wxASSERT( nLen
< (INT_MAX
/ sizeof(wxChar
)) -
374 (sizeof(wxStringData
) + EXTRA_ALLOC
+ 1) );
376 STATISTICS_ADD(Length
, nLen
);
379 // 1) one extra character for '\0' termination
380 // 2) sizeof(wxStringData) for housekeeping info
381 wxStringData
* pData
= (wxStringData
*)
382 malloc(sizeof(wxStringData
) + (nLen
+ EXTRA_ALLOC
+ 1)*sizeof(wxChar
));
384 pData
->nDataLength
= nLen
;
385 pData
->nAllocLength
= nLen
+ EXTRA_ALLOC
;
386 m_pchData
= pData
->data(); // data starts after wxStringData
387 m_pchData
[nLen
] = wxT('\0');
390 // must be called before changing this string
391 void wxString::CopyBeforeWrite()
393 wxStringData
* pData
= GetStringData();
395 if ( pData
->IsShared() ) {
396 pData
->Unlock(); // memory not freed because shared
397 size_t nLen
= pData
->nDataLength
;
399 memcpy(m_pchData
, pData
->data(), nLen
*sizeof(wxChar
));
402 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
405 // must be called before replacing contents of this string
406 void wxString::AllocBeforeWrite(size_t nLen
)
408 wxASSERT( nLen
!= 0 ); // doesn't make any sense
410 // must not share string and must have enough space
411 wxStringData
* pData
= GetStringData();
412 if ( pData
->IsShared() || pData
->IsEmpty() ) {
413 // can't work with old buffer, get new one
418 if ( nLen
> pData
->nAllocLength
) {
419 // realloc the buffer instead of calling malloc() again, this is more
421 STATISTICS_ADD(Length
, nLen
);
425 wxStringData
*pDataOld
= pData
;
426 pData
= (wxStringData
*)
427 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
432 // FIXME we're going to crash...
436 pData
->nAllocLength
= nLen
;
437 m_pchData
= pData
->data();
440 // now we have enough space, just update the string length
441 pData
->nDataLength
= nLen
;
444 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
447 // allocate enough memory for nLen characters
448 void wxString::Alloc(size_t nLen
)
450 wxStringData
*pData
= GetStringData();
451 if ( pData
->nAllocLength
<= nLen
) {
452 if ( pData
->IsEmpty() ) {
455 wxStringData
* pData
= (wxStringData
*)
456 malloc(sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
458 pData
->nDataLength
= 0;
459 pData
->nAllocLength
= nLen
;
460 m_pchData
= pData
->data(); // data starts after wxStringData
461 m_pchData
[0u] = wxT('\0');
463 else if ( pData
->IsShared() ) {
464 pData
->Unlock(); // memory not freed because shared
465 size_t nOldLen
= pData
->nDataLength
;
467 memcpy(m_pchData
, pData
->data(), nOldLen
*sizeof(wxChar
));
472 wxStringData
*pDataOld
= pData
;
473 wxStringData
*p
= (wxStringData
*)
474 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
480 // FIXME what to do on memory error?
484 // it's not important if the pointer changed or not (the check for this
485 // is not faster than assigning to m_pchData in all cases)
486 p
->nAllocLength
= nLen
;
487 m_pchData
= p
->data();
490 //else: we've already got enough
493 // shrink to minimal size (releasing extra memory)
494 void wxString::Shrink()
496 wxStringData
*pData
= GetStringData();
498 size_t nLen
= pData
->nDataLength
;
499 void *p
= realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(wxChar
));
501 wxASSERT_MSG( p
!= NULL
, _T("can't free memory?") );
505 // contrary to what one might believe, some realloc() implementation do
506 // move the memory block even when its size is reduced
507 pData
= (wxStringData
*)p
;
509 m_pchData
= pData
->data();
512 pData
->nAllocLength
= nLen
;
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
)
593 wxString
& wxString::operator=(const wxChar
*psz
)
595 AssignCopy(wxStrlen(psz
), psz
);
601 // same as 'signed char' variant
602 wxString
& wxString::operator=(const unsigned char* psz
)
604 *this = (const char *)psz
;
609 wxString
& wxString::operator=(const wchar_t *pwz
)
619 // ---------------------------------------------------------------------------
620 // string concatenation
621 // ---------------------------------------------------------------------------
623 // add something to this string
624 void wxString::ConcatSelf(int nSrcLen
, const wxChar
*pszSrcData
)
626 STATISTICS_ADD(SummandLength
, nSrcLen
);
628 // concatenating an empty string is a NOP
630 wxStringData
*pData
= GetStringData();
631 size_t nLen
= pData
->nDataLength
;
632 size_t nNewLen
= nLen
+ nSrcLen
;
634 // alloc new buffer if current is too small
635 if ( pData
->IsShared() ) {
636 STATISTICS_ADD(ConcatHit
, 0);
638 // we have to allocate another buffer
639 wxStringData
* pOldData
= GetStringData();
640 AllocBuffer(nNewLen
);
641 memcpy(m_pchData
, pOldData
->data(), nLen
*sizeof(wxChar
));
644 else if ( nNewLen
> pData
->nAllocLength
) {
645 STATISTICS_ADD(ConcatHit
, 0);
647 // we have to grow the buffer
651 STATISTICS_ADD(ConcatHit
, 1);
653 // the buffer is already big enough
656 // should be enough space
657 wxASSERT( nNewLen
<= GetStringData()->nAllocLength
);
659 // fast concatenation - all is done in our buffer
660 memcpy(m_pchData
+ nLen
, pszSrcData
, nSrcLen
*sizeof(wxChar
));
662 m_pchData
[nNewLen
] = wxT('\0'); // put terminating '\0'
663 GetStringData()->nDataLength
= nNewLen
; // and fix the length
665 //else: the string to append was empty
669 * concatenation functions come in 5 flavours:
671 * char + string and string + char
672 * C str + string and string + C str
675 wxString
operator+(const wxString
& string1
, const wxString
& string2
)
677 wxASSERT( string1
.GetStringData()->IsValid() );
678 wxASSERT( string2
.GetStringData()->IsValid() );
680 wxString s
= string1
;
686 wxString
operator+(const wxString
& string
, wxChar ch
)
688 wxASSERT( string
.GetStringData()->IsValid() );
696 wxString
operator+(wxChar ch
, const wxString
& string
)
698 wxASSERT( string
.GetStringData()->IsValid() );
706 wxString
operator+(const wxString
& string
, const wxChar
*psz
)
708 wxASSERT( string
.GetStringData()->IsValid() );
711 s
.Alloc(wxStrlen(psz
) + string
.Len());
718 wxString
operator+(const wxChar
*psz
, const wxString
& string
)
720 wxASSERT( string
.GetStringData()->IsValid() );
723 s
.Alloc(wxStrlen(psz
) + string
.Len());
730 // ===========================================================================
731 // other common string functions
732 // ===========================================================================
734 // ---------------------------------------------------------------------------
735 // simple sub-string extraction
736 // ---------------------------------------------------------------------------
738 // helper function: clone the data attached to this string
739 void wxString::AllocCopy(wxString
& dest
, int nCopyLen
, int nCopyIndex
) const
741 if ( nCopyLen
== 0 ) {
745 dest
.AllocBuffer(nCopyLen
);
746 memcpy(dest
.m_pchData
, m_pchData
+ nCopyIndex
, nCopyLen
*sizeof(wxChar
));
750 // extract string of length nCount starting at nFirst
751 wxString
wxString::Mid(size_t nFirst
, size_t nCount
) const
753 wxStringData
*pData
= GetStringData();
754 size_t nLen
= pData
->nDataLength
;
756 // default value of nCount is wxSTRING_MAXLEN and means "till the end"
757 if ( nCount
== wxSTRING_MAXLEN
)
759 nCount
= nLen
- nFirst
;
762 // out-of-bounds requests return sensible things
763 if ( nFirst
+ nCount
> nLen
)
765 nCount
= nLen
- nFirst
;
770 // AllocCopy() will return empty string
775 AllocCopy(dest
, nCount
, nFirst
);
780 // check that the tring starts with prefix and return the rest of the string
781 // in the provided pointer if it is not NULL, otherwise return FALSE
782 bool wxString::StartsWith(const wxChar
*prefix
, wxString
*rest
) const
784 wxASSERT_MSG( prefix
, _T("invalid parameter in wxString::StartsWith") );
786 // first check if the beginning of the string matches the prefix: note
787 // that we don't have to check that we don't run out of this string as
788 // when we reach the terminating NUL, either prefix string ends too (and
789 // then it's ok) or we break out of the loop because there is no match
790 const wxChar
*p
= c_str();
793 if ( *prefix
++ != *p
++ )
802 // put the rest of the string into provided pointer
809 // extract nCount last (rightmost) characters
810 wxString
wxString::Right(size_t nCount
) const
812 if ( nCount
> (size_t)GetStringData()->nDataLength
)
813 nCount
= GetStringData()->nDataLength
;
816 AllocCopy(dest
, nCount
, GetStringData()->nDataLength
- nCount
);
820 // get all characters after the last occurence of ch
821 // (returns the whole string if ch not found)
822 wxString
wxString::AfterLast(wxChar ch
) const
825 int iPos
= Find(ch
, TRUE
);
826 if ( iPos
== wxNOT_FOUND
)
829 str
= c_str() + iPos
+ 1;
834 // extract nCount first (leftmost) characters
835 wxString
wxString::Left(size_t nCount
) const
837 if ( nCount
> (size_t)GetStringData()->nDataLength
)
838 nCount
= GetStringData()->nDataLength
;
841 AllocCopy(dest
, nCount
, 0);
845 // get all characters before the first occurence of ch
846 // (returns the whole string if ch not found)
847 wxString
wxString::BeforeFirst(wxChar ch
) const
850 for ( const wxChar
*pc
= m_pchData
; *pc
!= wxT('\0') && *pc
!= ch
; pc
++ )
856 /// get all characters before the last occurence of ch
857 /// (returns empty string if ch not found)
858 wxString
wxString::BeforeLast(wxChar ch
) const
861 int iPos
= Find(ch
, TRUE
);
862 if ( iPos
!= wxNOT_FOUND
&& iPos
!= 0 )
863 str
= wxString(c_str(), iPos
);
868 /// get all characters after the first occurence of ch
869 /// (returns empty string if ch not found)
870 wxString
wxString::AfterFirst(wxChar ch
) const
874 if ( iPos
!= wxNOT_FOUND
)
875 str
= c_str() + iPos
+ 1;
880 // replace first (or all) occurences of some substring with another one
881 size_t wxString::Replace(const wxChar
*szOld
, const wxChar
*szNew
, bool bReplaceAll
)
883 size_t uiCount
= 0; // count of replacements made
885 size_t uiOldLen
= wxStrlen(szOld
);
888 const wxChar
*pCurrent
= m_pchData
;
889 const wxChar
*pSubstr
;
890 while ( *pCurrent
!= wxT('\0') ) {
891 pSubstr
= wxStrstr(pCurrent
, szOld
);
892 if ( pSubstr
== NULL
) {
893 // strTemp is unused if no replacements were made, so avoid the copy
897 strTemp
+= pCurrent
; // copy the rest
898 break; // exit the loop
901 // take chars before match
902 strTemp
.ConcatSelf(pSubstr
- pCurrent
, pCurrent
);
904 pCurrent
= pSubstr
+ uiOldLen
; // restart after match
909 if ( !bReplaceAll
) {
910 strTemp
+= pCurrent
; // copy the rest
911 break; // exit the loop
916 // only done if there were replacements, otherwise would have returned above
922 bool wxString::IsAscii() const
924 const wxChar
*s
= (const wxChar
*) *this;
926 if(!isascii(*s
)) return(FALSE
);
932 bool wxString::IsWord() const
934 const wxChar
*s
= (const wxChar
*) *this;
936 if(!wxIsalpha(*s
)) return(FALSE
);
942 bool wxString::IsNumber() const
944 const wxChar
*s
= (const wxChar
*) *this;
946 if ((s
[0] == '-') || (s
[0] == '+')) s
++;
948 if(!wxIsdigit(*s
)) return(FALSE
);
954 wxString
wxString::Strip(stripType w
) const
957 if ( w
& leading
) s
.Trim(FALSE
);
958 if ( w
& trailing
) s
.Trim(TRUE
);
962 // ---------------------------------------------------------------------------
964 // ---------------------------------------------------------------------------
966 wxString
& wxString::MakeUpper()
970 for ( wxChar
*p
= m_pchData
; *p
; p
++ )
971 *p
= (wxChar
)wxToupper(*p
);
976 wxString
& wxString::MakeLower()
980 for ( wxChar
*p
= m_pchData
; *p
; p
++ )
981 *p
= (wxChar
)wxTolower(*p
);
986 // ---------------------------------------------------------------------------
987 // trimming and padding
988 // ---------------------------------------------------------------------------
990 // some compilers (VC++ 6.0 not to name them) return TRUE for a call to
991 // isspace('ê') in the C locale which seems to be broken to me, but we have to
992 // live with this by checking that the character is a 7 bit one - even if this
993 // may fail to detect some spaces (I don't know if Unicode doesn't have
994 // space-like symbols somewhere except in the first 128 chars), it is arguably
995 // still better than trimming away accented letters
996 inline int wxSafeIsspace(wxChar ch
) { return (ch
< 127) && wxIsspace(ch
); }
998 // trims spaces (in the sense of isspace) from left or right side
999 wxString
& wxString::Trim(bool bFromRight
)
1001 // first check if we're going to modify the string at all
1004 (bFromRight
&& wxSafeIsspace(GetChar(Len() - 1))) ||
1005 (!bFromRight
&& wxSafeIsspace(GetChar(0u)))
1009 // ok, there is at least one space to trim
1014 // find last non-space character
1015 wxChar
*psz
= m_pchData
+ GetStringData()->nDataLength
- 1;
1016 while ( wxSafeIsspace(*psz
) && (psz
>= m_pchData
) )
1019 // truncate at trailing space start
1021 GetStringData()->nDataLength
= psz
- m_pchData
;
1025 // find first non-space character
1026 const wxChar
*psz
= m_pchData
;
1027 while ( wxSafeIsspace(*psz
) )
1030 // fix up data and length
1031 int nDataLength
= GetStringData()->nDataLength
- (psz
- (const wxChar
*) m_pchData
);
1032 memmove(m_pchData
, psz
, (nDataLength
+ 1)*sizeof(wxChar
));
1033 GetStringData()->nDataLength
= nDataLength
;
1040 // adds nCount characters chPad to the string from either side
1041 wxString
& wxString::Pad(size_t nCount
, wxChar chPad
, bool bFromRight
)
1043 wxString
s(chPad
, nCount
);
1056 // truncate the string
1057 wxString
& wxString::Truncate(size_t uiLen
)
1059 if ( uiLen
< Len() ) {
1062 *(m_pchData
+ uiLen
) = wxT('\0');
1063 GetStringData()->nDataLength
= uiLen
;
1065 //else: nothing to do, string is already short enough
1070 // ---------------------------------------------------------------------------
1071 // finding (return wxNOT_FOUND if not found and index otherwise)
1072 // ---------------------------------------------------------------------------
1075 int wxString::Find(wxChar ch
, bool bFromEnd
) const
1077 const wxChar
*psz
= bFromEnd
? wxStrrchr(m_pchData
, ch
) : wxStrchr(m_pchData
, ch
);
1079 return (psz
== NULL
) ? wxNOT_FOUND
: psz
- (const wxChar
*) m_pchData
;
1082 // find a sub-string (like strstr)
1083 int wxString::Find(const wxChar
*pszSub
) const
1085 const wxChar
*psz
= wxStrstr(m_pchData
, pszSub
);
1087 return (psz
== NULL
) ? wxNOT_FOUND
: psz
- (const wxChar
*) m_pchData
;
1090 // ----------------------------------------------------------------------------
1091 // conversion to numbers
1092 // ----------------------------------------------------------------------------
1094 bool wxString::ToLong(long *val
, int base
) const
1096 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToLong") );
1098 const wxChar
*start
= c_str();
1100 *val
= wxStrtol(start
, &end
, base
);
1102 // return TRUE only if scan was stopped by the terminating NUL and if the
1103 // string was not empty to start with
1104 return !*end
&& (end
!= start
);
1107 bool wxString::ToULong(unsigned long *val
, int base
) const
1109 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToULong") );
1111 const wxChar
*start
= c_str();
1113 *val
= wxStrtoul(start
, &end
, base
);
1115 // return TRUE only if scan was stopped by the terminating NUL and if the
1116 // string was not empty to start with
1117 return !*end
&& (end
!= start
);
1120 bool wxString::ToDouble(double *val
) const
1122 wxCHECK_MSG( val
, FALSE
, _T("NULL pointer in wxString::ToDouble") );
1124 const wxChar
*start
= c_str();
1126 *val
= wxStrtod(start
, &end
);
1128 // return TRUE only if scan was stopped by the terminating NUL and if the
1129 // string was not empty to start with
1130 return !*end
&& (end
!= start
);
1133 // ---------------------------------------------------------------------------
1135 // ---------------------------------------------------------------------------
1138 wxString
wxString::Format(const wxChar
*pszFormat
, ...)
1141 va_start(argptr
, pszFormat
);
1144 s
.PrintfV(pszFormat
, argptr
);
1152 wxString
wxString::FormatV(const wxChar
*pszFormat
, va_list argptr
)
1155 s
.PrintfV(pszFormat
, argptr
);
1159 int wxString::Printf(const wxChar
*pszFormat
, ...)
1162 va_start(argptr
, pszFormat
);
1164 int iLen
= PrintfV(pszFormat
, argptr
);
1171 int wxString::PrintfV(const wxChar
* pszFormat
, va_list argptr
)
1173 #if wxUSE_EXPERIMENTAL_PRINTF
1174 // the new implementation
1176 // buffer to avoid dynamic memory allocation each time for small strings
1177 char szScratch
[1024];
1180 for (size_t n
= 0; pszFormat
[n
]; n
++)
1181 if (pszFormat
[n
] == wxT('%')) {
1182 static char s_szFlags
[256] = "%";
1184 bool adj_left
= FALSE
, in_prec
= FALSE
,
1185 prec_dot
= FALSE
, done
= FALSE
;
1187 size_t min_width
= 0, max_width
= wxSTRING_MAXLEN
;
1189 #define CHECK_PREC if (in_prec && !prec_dot) { s_szFlags[flagofs++] = '.'; prec_dot = TRUE; }
1190 switch (pszFormat
[++n
]) {
1204 s_szFlags
[flagofs
++] = pszFormat
[n
];
1209 s_szFlags
[flagofs
++] = pszFormat
[n
];
1216 // dot will be auto-added to s_szFlags if non-negative number follows
1221 s_szFlags
[flagofs
++] = pszFormat
[n
];
1226 s_szFlags
[flagofs
++] = pszFormat
[n
];
1232 s_szFlags
[flagofs
++] = pszFormat
[n
];
1237 s_szFlags
[flagofs
++] = pszFormat
[n
];
1241 int len
= va_arg(argptr
, int);
1248 adj_left
= !adj_left
;
1249 s_szFlags
[flagofs
++] = '-';
1254 flagofs
+= ::sprintf(s_szFlags
+flagofs
,"%d",len
);
1257 case wxT('1'): case wxT('2'): case wxT('3'):
1258 case wxT('4'): case wxT('5'): case wxT('6'):
1259 case wxT('7'): case wxT('8'): case wxT('9'):
1263 while ((pszFormat
[n
]>=wxT('0')) && (pszFormat
[n
]<=wxT('9'))) {
1264 s_szFlags
[flagofs
++] = pszFormat
[n
];
1265 len
= len
*10 + (pszFormat
[n
] - wxT('0'));
1268 if (in_prec
) max_width
= len
;
1269 else min_width
= len
;
1270 n
--; // the main loop pre-increments n again
1280 s_szFlags
[flagofs
++] = pszFormat
[n
];
1281 s_szFlags
[flagofs
] = '\0';
1283 int val
= va_arg(argptr
, int);
1284 ::sprintf(szScratch
, s_szFlags
, val
);
1286 else if (ilen
== -1) {
1287 short int val
= va_arg(argptr
, short int);
1288 ::sprintf(szScratch
, s_szFlags
, val
);
1290 else if (ilen
== 1) {
1291 long int val
= va_arg(argptr
, long int);
1292 ::sprintf(szScratch
, s_szFlags
, val
);
1294 else if (ilen
== 2) {
1295 #if SIZEOF_LONG_LONG
1296 long long int val
= va_arg(argptr
, long long int);
1297 ::sprintf(szScratch
, s_szFlags
, val
);
1299 long int val
= va_arg(argptr
, long int);
1300 ::sprintf(szScratch
, s_szFlags
, val
);
1303 else if (ilen
== 3) {
1304 size_t val
= va_arg(argptr
, size_t);
1305 ::sprintf(szScratch
, s_szFlags
, val
);
1307 *this += wxString(szScratch
);
1316 s_szFlags
[flagofs
++] = pszFormat
[n
];
1317 s_szFlags
[flagofs
] = '\0';
1319 long double val
= va_arg(argptr
, long double);
1320 ::sprintf(szScratch
, s_szFlags
, val
);
1322 double val
= va_arg(argptr
, double);
1323 ::sprintf(szScratch
, s_szFlags
, val
);
1325 *this += wxString(szScratch
);
1330 void *val
= va_arg(argptr
, void *);
1332 s_szFlags
[flagofs
++] = pszFormat
[n
];
1333 s_szFlags
[flagofs
] = '\0';
1334 ::sprintf(szScratch
, s_szFlags
, val
);
1335 *this += wxString(szScratch
);
1341 wxChar val
= va_arg(argptr
, int);
1342 // we don't need to honor padding here, do we?
1349 // wx extension: we'll let %hs mean non-Unicode strings
1350 char *val
= va_arg(argptr
, char *);
1352 // ASCII->Unicode constructor handles max_width right
1353 wxString
s(val
, wxConvLibc
, max_width
);
1355 size_t len
= wxSTRING_MAXLEN
;
1357 for (len
= 0; val
[len
] && (len
<max_width
); len
++);
1358 } else val
= wxT("(null)");
1359 wxString
s(val
, len
);
1361 if (s
.Len() < min_width
)
1362 s
.Pad(min_width
- s
.Len(), wxT(' '), adj_left
);
1365 wxChar
*val
= va_arg(argptr
, wxChar
*);
1366 size_t len
= wxSTRING_MAXLEN
;
1368 for (len
= 0; val
[len
] && (len
<max_width
); len
++);
1369 } else val
= wxT("(null)");
1370 wxString
s(val
, len
);
1371 if (s
.Len() < min_width
)
1372 s
.Pad(min_width
- s
.Len(), wxT(' '), adj_left
);
1379 int *val
= va_arg(argptr
, int *);
1382 else if (ilen
== -1) {
1383 short int *val
= va_arg(argptr
, short int *);
1386 else if (ilen
>= 1) {
1387 long int *val
= va_arg(argptr
, long int *);
1393 if (wxIsalpha(pszFormat
[n
]))
1394 // probably some flag not taken care of here yet
1395 s_szFlags
[flagofs
++] = pszFormat
[n
];
1398 *this += wxT('%'); // just to pass the glibc tst-printf.c
1406 } else *this += pszFormat
[n
];
1409 // buffer to avoid dynamic memory allocation each time for small strings
1410 char szScratch
[1024];
1412 // NB: wxVsnprintf() may return either less than the buffer size or -1 if
1413 // there is not enough place depending on implementation
1414 int iLen
= wxVsnprintfA(szScratch
, WXSIZEOF(szScratch
), (char *)pszFormat
, argptr
);
1416 // the whole string is in szScratch
1420 bool outOfMemory
= FALSE
;
1421 int size
= 2*WXSIZEOF(szScratch
);
1422 while ( !outOfMemory
) {
1423 char *buf
= GetWriteBuf(size
);
1425 iLen
= wxVsnprintfA(buf
, size
, pszFormat
, argptr
);
1432 // ok, there was enough space
1436 // still not enough, double it again
1440 if ( outOfMemory
) {
1445 #endif // wxUSE_EXPERIMENTAL_PRINTF/!wxUSE_EXPERIMENTAL_PRINTF
1450 // ----------------------------------------------------------------------------
1451 // misc other operations
1452 // ----------------------------------------------------------------------------
1454 // returns TRUE if the string matches the pattern which may contain '*' and
1455 // '?' metacharacters (as usual, '?' matches any character and '*' any number
1457 bool wxString::Matches(const wxChar
*pszMask
) const
1459 // I disable this code as it doesn't seem to be faster (in fact, it seems
1460 // to be much slower) than the old, hand-written code below and using it
1461 // here requires always linking with libregex even if the user code doesn't
1463 #if 0 // wxUSE_REGEX
1464 // first translate the shell-like mask into a regex
1466 pattern
.reserve(wxStrlen(pszMask
));
1478 pattern
+= _T(".*");
1489 // these characters are special in a RE, quote them
1490 // (however note that we don't quote '[' and ']' to allow
1491 // using them for Unix shell like matching)
1492 pattern
+= _T('\\');
1496 pattern
+= *pszMask
;
1504 return wxRegEx(pattern
, wxRE_NOSUB
| wxRE_EXTENDED
).Matches(c_str());
1505 #else // !wxUSE_REGEX
1506 // TODO: this is, of course, awfully inefficient...
1508 // the char currently being checked
1509 const wxChar
*pszTxt
= c_str();
1511 // the last location where '*' matched
1512 const wxChar
*pszLastStarInText
= NULL
;
1513 const wxChar
*pszLastStarInMask
= NULL
;
1516 for ( ; *pszMask
!= wxT('\0'); pszMask
++, pszTxt
++ ) {
1517 switch ( *pszMask
) {
1519 if ( *pszTxt
== wxT('\0') )
1522 // pszTxt and pszMask will be incremented in the loop statement
1528 // remember where we started to be able to backtrack later
1529 pszLastStarInText
= pszTxt
;
1530 pszLastStarInMask
= pszMask
;
1532 // ignore special chars immediately following this one
1533 // (should this be an error?)
1534 while ( *pszMask
== wxT('*') || *pszMask
== wxT('?') )
1537 // if there is nothing more, match
1538 if ( *pszMask
== wxT('\0') )
1541 // are there any other metacharacters in the mask?
1543 const wxChar
*pEndMask
= wxStrpbrk(pszMask
, wxT("*?"));
1545 if ( pEndMask
!= NULL
) {
1546 // we have to match the string between two metachars
1547 uiLenMask
= pEndMask
- pszMask
;
1550 // we have to match the remainder of the string
1551 uiLenMask
= wxStrlen(pszMask
);
1554 wxString
strToMatch(pszMask
, uiLenMask
);
1555 const wxChar
* pMatch
= wxStrstr(pszTxt
, strToMatch
);
1556 if ( pMatch
== NULL
)
1559 // -1 to compensate "++" in the loop
1560 pszTxt
= pMatch
+ uiLenMask
- 1;
1561 pszMask
+= uiLenMask
- 1;
1566 if ( *pszMask
!= *pszTxt
)
1572 // match only if nothing left
1573 if ( *pszTxt
== wxT('\0') )
1576 // if we failed to match, backtrack if we can
1577 if ( pszLastStarInText
) {
1578 pszTxt
= pszLastStarInText
+ 1;
1579 pszMask
= pszLastStarInMask
;
1581 pszLastStarInText
= NULL
;
1583 // don't bother resetting pszLastStarInMask, it's unnecessary
1589 #endif // wxUSE_REGEX/!wxUSE_REGEX
1592 // Count the number of chars
1593 int wxString::Freq(wxChar ch
) const
1597 for (int i
= 0; i
< len
; i
++)
1599 if (GetChar(i
) == ch
)
1605 // convert to upper case, return the copy of the string
1606 wxString
wxString::Upper() const
1607 { wxString
s(*this); return s
.MakeUpper(); }
1609 // convert to lower case, return the copy of the string
1610 wxString
wxString::Lower() const { wxString
s(*this); return s
.MakeLower(); }
1612 int wxString::sprintf(const wxChar
*pszFormat
, ...)
1615 va_start(argptr
, pszFormat
);
1616 int iLen
= PrintfV(pszFormat
, argptr
);
1621 // ---------------------------------------------------------------------------
1622 // standard C++ library string functions
1623 // ---------------------------------------------------------------------------
1625 #ifdef wxSTD_STRING_COMPATIBILITY
1627 void wxString::resize(size_t nSize
, wxChar ch
)
1629 size_t len
= length();
1635 else if ( nSize
> len
)
1637 *this += wxString(ch
, nSize
- len
);
1639 //else: we have exactly the specified length, nothing to do
1642 void wxString::swap(wxString
& str
)
1644 // this is slightly less efficient than fiddling with m_pchData directly,
1645 // but it is still quite efficient as we don't copy the string here because
1646 // ref count always stays positive
1652 wxString
& wxString::insert(size_t nPos
, const wxString
& str
)
1654 wxASSERT( str
.GetStringData()->IsValid() );
1655 wxASSERT( nPos
<= Len() );
1657 if ( !str
.IsEmpty() ) {
1659 wxChar
*pc
= strTmp
.GetWriteBuf(Len() + str
.Len());
1660 wxStrncpy(pc
, c_str(), nPos
);
1661 wxStrcpy(pc
+ nPos
, str
);
1662 wxStrcpy(pc
+ nPos
+ str
.Len(), c_str() + nPos
);
1663 strTmp
.UngetWriteBuf();
1670 size_t wxString::find(const wxString
& str
, size_t nStart
) const
1672 wxASSERT( str
.GetStringData()->IsValid() );
1673 wxASSERT( nStart
<= Len() );
1675 const wxChar
*p
= wxStrstr(c_str() + nStart
, str
);
1677 return p
== NULL
? npos
: p
- c_str();
1680 // VC++ 1.5 can't cope with the default argument in the header.
1681 #if !defined(__VISUALC__) || defined(__WIN32__)
1682 size_t wxString::find(const wxChar
* sz
, size_t nStart
, size_t n
) const
1684 return find(wxString(sz
, n
), nStart
);
1688 // Gives a duplicate symbol (presumably a case-insensitivity problem)
1689 #if !defined(__BORLANDC__)
1690 size_t wxString::find(wxChar ch
, size_t nStart
) const
1692 wxASSERT( nStart
<= Len() );
1694 const wxChar
*p
= wxStrchr(c_str() + nStart
, ch
);
1696 return p
== NULL
? npos
: p
- c_str();
1700 size_t wxString::rfind(const wxString
& str
, size_t nStart
) const
1702 wxASSERT( str
.GetStringData()->IsValid() );
1703 wxASSERT( nStart
== npos
|| nStart
<= Len() );
1705 // TODO could be made much quicker than that
1706 const wxChar
*p
= c_str() + (nStart
== npos
? Len() : nStart
);
1707 while ( p
>= c_str() + str
.Len() ) {
1708 if ( wxStrncmp(p
- str
.Len(), str
, str
.Len()) == 0 )
1709 return p
- str
.Len() - c_str();
1716 // VC++ 1.5 can't cope with the default argument in the header.
1717 #if !defined(__VISUALC__) || defined(__WIN32__)
1718 size_t wxString::rfind(const wxChar
* sz
, size_t nStart
, size_t n
) const
1720 return rfind(wxString(sz
, n
== npos
? wxSTRING_MAXLEN
: n
), nStart
);
1723 size_t wxString::rfind(wxChar ch
, size_t nStart
) const
1725 if ( nStart
== npos
)
1731 wxASSERT( nStart
<= Len() );
1734 const wxChar
*p
= wxStrrchr(c_str(), ch
);
1739 size_t result
= p
- c_str();
1740 return ( result
> nStart
) ? npos
: result
;
1744 size_t wxString::find_first_of(const wxChar
* sz
, size_t nStart
) const
1746 const wxChar
*start
= c_str() + nStart
;
1747 const wxChar
*firstOf
= wxStrpbrk(start
, sz
);
1749 return firstOf
- c_str();
1754 size_t wxString::find_last_of(const wxChar
* sz
, size_t nStart
) const
1756 if ( nStart
== npos
)
1762 wxASSERT( nStart
<= Len() );
1765 for ( const wxChar
*p
= c_str() + length() - 1; p
>= c_str(); p
-- )
1767 if ( wxStrchr(sz
, *p
) )
1774 size_t wxString::find_first_not_of(const wxChar
* sz
, size_t nStart
) const
1776 if ( nStart
== npos
)
1782 wxASSERT( nStart
<= Len() );
1785 size_t nAccept
= wxStrspn(c_str() + nStart
, sz
);
1786 if ( nAccept
>= length() - nStart
)
1792 size_t wxString::find_first_not_of(wxChar ch
, size_t nStart
) const
1794 wxASSERT( nStart
<= Len() );
1796 for ( const wxChar
*p
= c_str() + nStart
; *p
; p
++ )
1805 size_t wxString::find_last_not_of(const wxChar
* sz
, size_t nStart
) const
1807 if ( nStart
== npos
)
1813 wxASSERT( nStart
<= Len() );
1816 for ( const wxChar
*p
= c_str() + nStart
- 1; p
>= c_str(); p
-- )
1818 if ( !wxStrchr(sz
, *p
) )
1825 size_t wxString::find_last_not_of(wxChar ch
, size_t nStart
) const
1827 if ( nStart
== npos
)
1833 wxASSERT( nStart
<= Len() );
1836 for ( const wxChar
*p
= c_str() + nStart
- 1; p
>= c_str(); p
-- )
1845 wxString
& wxString::erase(size_t nStart
, size_t nLen
)
1847 wxString
strTmp(c_str(), nStart
);
1848 if ( nLen
!= npos
) {
1849 wxASSERT( nStart
+ nLen
<= Len() );
1851 strTmp
.append(c_str() + nStart
+ nLen
);
1858 wxString
& wxString::replace(size_t nStart
, size_t nLen
, const wxChar
*sz
)
1860 wxASSERT_MSG( nStart
+ nLen
<= Len(),
1861 _T("index out of bounds in wxString::replace") );
1864 strTmp
.Alloc(Len()); // micro optimisation to avoid multiple mem allocs
1867 strTmp
.append(c_str(), nStart
);
1868 strTmp
<< sz
<< c_str() + nStart
+ nLen
;
1874 wxString
& wxString::replace(size_t nStart
, size_t nLen
, size_t nCount
, wxChar ch
)
1876 return replace(nStart
, nLen
, wxString(ch
, nCount
));
1879 wxString
& wxString::replace(size_t nStart
, size_t nLen
,
1880 const wxString
& str
, size_t nStart2
, size_t nLen2
)
1882 return replace(nStart
, nLen
, str
.substr(nStart2
, nLen2
));
1885 wxString
& wxString::replace(size_t nStart
, size_t nLen
,
1886 const wxChar
* sz
, size_t nCount
)
1888 return replace(nStart
, nLen
, wxString(sz
, nCount
));
1891 #endif //std::string compatibility
1893 // ============================================================================
1895 // ============================================================================
1897 // size increment = min(50% of current size, ARRAY_MAXSIZE_INCREMENT)
1898 #define ARRAY_MAXSIZE_INCREMENT 4096
1900 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
1901 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
1904 #define STRING(p) ((wxString *)(&(p)))
1907 wxArrayString::wxArrayString(bool autoSort
)
1911 m_pItems
= (wxChar
**) NULL
;
1912 m_autoSort
= autoSort
;
1916 wxArrayString::wxArrayString(const wxArrayString
& src
)
1920 m_pItems
= (wxChar
**) NULL
;
1921 m_autoSort
= src
.m_autoSort
;
1926 // assignment operator
1927 wxArrayString
& wxArrayString::operator=(const wxArrayString
& src
)
1934 m_autoSort
= src
.m_autoSort
;
1939 void wxArrayString::Copy(const wxArrayString
& src
)
1941 if ( src
.m_nCount
> ARRAY_DEFAULT_INITIAL_SIZE
)
1942 Alloc(src
.m_nCount
);
1944 for ( size_t n
= 0; n
< src
.m_nCount
; n
++ )
1949 void wxArrayString::Grow()
1951 // only do it if no more place
1952 if ( m_nCount
== m_nSize
) {
1953 // if ARRAY_DEFAULT_INITIAL_SIZE were set to 0, the initially empty would
1954 // be never resized!
1955 #if ARRAY_DEFAULT_INITIAL_SIZE == 0
1956 #error "ARRAY_DEFAULT_INITIAL_SIZE must be > 0!"
1959 if ( m_nSize
== 0 ) {
1960 // was empty, alloc some memory
1961 m_nSize
= ARRAY_DEFAULT_INITIAL_SIZE
;
1962 m_pItems
= new wxChar
*[m_nSize
];
1965 // otherwise when it's called for the first time, nIncrement would be 0
1966 // and the array would never be expanded
1967 // add 50% but not too much
1968 size_t nIncrement
= m_nSize
< ARRAY_DEFAULT_INITIAL_SIZE
1969 ? ARRAY_DEFAULT_INITIAL_SIZE
: m_nSize
>> 1;
1970 if ( nIncrement
> ARRAY_MAXSIZE_INCREMENT
)
1971 nIncrement
= ARRAY_MAXSIZE_INCREMENT
;
1972 m_nSize
+= nIncrement
;
1973 wxChar
**pNew
= new wxChar
*[m_nSize
];
1975 // copy data to new location
1976 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
1978 // delete old memory (but do not release the strings!)
1979 wxDELETEA(m_pItems
);
1986 void wxArrayString::Free()
1988 for ( size_t n
= 0; n
< m_nCount
; n
++ ) {
1989 STRING(m_pItems
[n
])->GetStringData()->Unlock();
1993 // deletes all the strings from the list
1994 void wxArrayString::Empty()
2001 // as Empty, but also frees memory
2002 void wxArrayString::Clear()
2009 wxDELETEA(m_pItems
);
2013 wxArrayString::~wxArrayString()
2017 wxDELETEA(m_pItems
);
2020 // pre-allocates memory (frees the previous data!)
2021 void wxArrayString::Alloc(size_t nSize
)
2023 wxASSERT( nSize
> 0 );
2025 // only if old buffer was not big enough
2026 if ( nSize
> m_nSize
) {
2028 wxDELETEA(m_pItems
);
2029 m_pItems
= new wxChar
*[nSize
];
2036 // minimizes the memory usage by freeing unused memory
2037 void wxArrayString::Shrink()
2039 // only do it if we have some memory to free
2040 if( m_nCount
< m_nSize
) {
2041 // allocates exactly as much memory as we need
2042 wxChar
**pNew
= new wxChar
*[m_nCount
];
2044 // copy data to new location
2045 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(wxChar
*));
2051 // return a wxString[] as required for some control ctors.
2052 wxString
* wxArrayString::GetStringArray() const
2054 wxString
*array
= 0;
2058 array
= new wxString
[m_nCount
];
2059 for( size_t i
= 0; i
< m_nCount
; i
++ )
2060 array
[i
] = m_pItems
[i
];
2066 // searches the array for an item (forward or backwards)
2067 int wxArrayString::Index(const wxChar
*sz
, bool bCase
, bool bFromEnd
) const
2070 // use binary search in the sorted array
2071 wxASSERT_MSG( bCase
&& !bFromEnd
,
2072 wxT("search parameters ignored for auto sorted array") );
2081 res
= wxStrcmp(sz
, m_pItems
[i
]);
2093 // use linear search in unsorted array
2095 if ( m_nCount
> 0 ) {
2096 size_t ui
= m_nCount
;
2098 if ( STRING(m_pItems
[--ui
])->IsSameAs(sz
, bCase
) )
2105 for( size_t ui
= 0; ui
< m_nCount
; ui
++ ) {
2106 if( STRING(m_pItems
[ui
])->IsSameAs(sz
, bCase
) )
2115 // add item at the end
2116 size_t wxArrayString::Add(const wxString
& str
)
2119 // insert the string at the correct position to keep the array sorted
2127 res
= wxStrcmp(str
, m_pItems
[i
]);
2138 wxASSERT_MSG( lo
== hi
, wxT("binary search broken") );
2145 wxASSERT( str
.GetStringData()->IsValid() );
2149 // the string data must not be deleted!
2150 str
.GetStringData()->Lock();
2153 m_pItems
[m_nCount
] = (wxChar
*)str
.c_str(); // const_cast
2159 // add item at the given position
2160 void wxArrayString::Insert(const wxString
& str
, size_t nIndex
)
2162 wxASSERT( str
.GetStringData()->IsValid() );
2164 wxCHECK_RET( nIndex
<= m_nCount
, wxT("bad index in wxArrayString::Insert") );
2168 memmove(&m_pItems
[nIndex
+ 1], &m_pItems
[nIndex
],
2169 (m_nCount
- nIndex
)*sizeof(wxChar
*));
2171 str
.GetStringData()->Lock();
2172 m_pItems
[nIndex
] = (wxChar
*)str
.c_str();
2178 void wxArrayString::SetCount(size_t count
)
2183 while ( m_nCount
< count
)
2184 m_pItems
[m_nCount
++] = (wxChar
*)s
.c_str();
2187 // removes item from array (by index)
2188 void wxArrayString::Remove(size_t nIndex
)
2190 wxCHECK_RET( nIndex
<= m_nCount
, wxT("bad index in wxArrayString::Remove") );
2193 Item(nIndex
).GetStringData()->Unlock();
2195 memmove(&m_pItems
[nIndex
], &m_pItems
[nIndex
+ 1],
2196 (m_nCount
- nIndex
- 1)*sizeof(wxChar
*));
2200 // removes item from array (by value)
2201 void wxArrayString::Remove(const wxChar
*sz
)
2203 int iIndex
= Index(sz
);
2205 wxCHECK_RET( iIndex
!= wxNOT_FOUND
,
2206 wxT("removing inexistent element in wxArrayString::Remove") );
2211 // ----------------------------------------------------------------------------
2213 // ----------------------------------------------------------------------------
2215 // we can only sort one array at a time with the quick-sort based
2218 // need a critical section to protect access to gs_compareFunction and
2219 // gs_sortAscending variables
2220 static wxCriticalSection
*gs_critsectStringSort
= NULL
;
2222 // call this before the value of the global sort vars is changed/after
2223 // you're finished with them
2224 #define START_SORT() wxASSERT( !gs_critsectStringSort ); \
2225 gs_critsectStringSort = new wxCriticalSection; \
2226 gs_critsectStringSort->Enter()
2227 #define END_SORT() gs_critsectStringSort->Leave(); \
2228 delete gs_critsectStringSort; \
2229 gs_critsectStringSort = NULL
2231 #define START_SORT()
2233 #endif // wxUSE_THREADS
2235 // function to use for string comparaison
2236 static wxArrayString::CompareFunction gs_compareFunction
= NULL
;
2238 // if we don't use the compare function, this flag tells us if we sort the
2239 // array in ascending or descending order
2240 static bool gs_sortAscending
= TRUE
;
2242 // function which is called by quick sort
2243 static int LINKAGEMODE
wxStringCompareFunction(const void *first
, const void *second
)
2245 wxString
*strFirst
= (wxString
*)first
;
2246 wxString
*strSecond
= (wxString
*)second
;
2248 if ( gs_compareFunction
) {
2249 return gs_compareFunction(*strFirst
, *strSecond
);
2252 // maybe we should use wxStrcoll
2253 int result
= wxStrcmp(strFirst
->c_str(), strSecond
->c_str());
2255 return gs_sortAscending
? result
: -result
;
2259 // sort array elements using passed comparaison function
2260 void wxArrayString::Sort(CompareFunction compareFunction
)
2264 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2265 gs_compareFunction
= compareFunction
;
2269 // reset it to NULL so that Sort(bool) will work the next time
2270 gs_compareFunction
= NULL
;
2275 void wxArrayString::Sort(bool reverseOrder
)
2279 wxASSERT( !gs_compareFunction
); // must have been reset to NULL
2280 gs_sortAscending
= !reverseOrder
;
2287 void wxArrayString::DoSort()
2289 wxCHECK_RET( !m_autoSort
, wxT("can't use this method with sorted arrays") );
2291 // just sort the pointers using qsort() - of course it only works because
2292 // wxString() *is* a pointer to its data
2293 qsort(m_pItems
, m_nCount
, sizeof(wxChar
*), wxStringCompareFunction
);
2296 bool wxArrayString::operator==(const wxArrayString
& a
) const
2298 if ( m_nCount
!= a
.m_nCount
)
2301 for ( size_t n
= 0; n
< m_nCount
; n
++ )
2303 if ( Item(n
) != a
[n
] )