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"
49 #include <wchar.h> // for wcsrtombs(), see comments where it's used
52 #ifdef WXSTRING_IS_WXOBJECT
53 IMPLEMENT_DYNAMIC_CLASS(wxString
, wxObject
)
54 #endif //WXSTRING_IS_WXOBJECT
56 // allocating extra space for each string consumes more memory but speeds up
57 // the concatenation operations (nLen is the current string's length)
58 // NB: EXTRA_ALLOC must be >= 0!
59 #define EXTRA_ALLOC (19 - nLen % 16)
61 // ---------------------------------------------------------------------------
62 // static class variables definition
63 // ---------------------------------------------------------------------------
65 #ifdef wxSTD_STRING_COMPATIBILITY
66 const size_t wxString::npos
= STRING_MAXLEN
;
67 #endif // wxSTD_STRING_COMPATIBILITY
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
73 // for an empty string, GetStringData() will return this address: this
74 // structure has the same layout as wxStringData and it's data() method will
75 // return the empty string (dummy pointer)
80 } g_strEmpty
= { {-1, 0, 0}, '\0' };
82 // empty C style string: points to 'string data' byte of g_strEmpty
83 extern const char WXDLLEXPORT
*g_szNul
= &g_strEmpty
.dummy
;
85 // ----------------------------------------------------------------------------
86 // conditional compilation
87 // ----------------------------------------------------------------------------
89 // we want to find out if the current platform supports vsnprintf()-like
90 // function: for Unix this is done with configure, for Windows we test the
91 // compiler explicitly.
94 #define wxVsprintf _vsnprintf
98 #define wxVsprintf vsnprintf
100 #endif // Windows/!Windows
103 // in this case we'll use vsprintf() (which is ANSI and thus should be
104 // always available), but it's unsafe because it doesn't check for buffer
105 // size - so give a warning
106 #define wxVsprintf(buffer,len,format,argptr) vsprintf(buffer,format, argptr)
108 #pragma message("Using sprintf() because no snprintf()-like function defined")
110 #endif // no vsnprintf
112 // ----------------------------------------------------------------------------
114 // ----------------------------------------------------------------------------
116 #ifdef wxSTD_STRING_COMPATIBILITY
118 // MS Visual C++ version 5.0 provides the new STL headers as well as the old
121 // ATTN: you can _not_ use both of these in the same program!
123 istream
& operator>>(istream
& is
, wxString
& WXUNUSED(str
))
128 streambuf
*sb
= is
.rdbuf();
131 int ch
= sb
->sbumpc ();
133 is
.setstate(ios::eofbit
);
136 else if ( isspace(ch
) ) {
148 if ( str
.length() == 0 )
149 is
.setstate(ios::failbit
);
154 #endif //std::string compatibility
156 // ----------------------------------------------------------------------------
158 // ----------------------------------------------------------------------------
160 // this small class is used to gather statistics for performance tuning
161 //#define WXSTRING_STATISTICS
162 #ifdef WXSTRING_STATISTICS
166 Averager(const char *sz
) { m_sz
= sz
; m_nTotal
= m_nCount
= 0; }
168 { printf("wxString: average %s = %f\n", m_sz
, ((float)m_nTotal
)/m_nCount
); }
170 void Add(size_t n
) { m_nTotal
+= n
; m_nCount
++; }
173 size_t m_nCount
, m_nTotal
;
175 } g_averageLength("allocation size"),
176 g_averageSummandLength("summand length"),
177 g_averageConcatHit("hit probability in concat"),
178 g_averageInitialLength("initial string length");
180 #define STATISTICS_ADD(av, val) g_average##av.Add(val)
182 #define STATISTICS_ADD(av, val)
183 #endif // WXSTRING_STATISTICS
185 // ===========================================================================
186 // wxString class core
187 // ===========================================================================
189 // ---------------------------------------------------------------------------
191 // ---------------------------------------------------------------------------
193 // constructs string of <nLength> copies of character <ch>
194 wxString::wxString(char ch
, size_t nLength
)
199 AllocBuffer(nLength
);
201 wxASSERT( sizeof(char) == 1 ); // can't use memset if not
203 memset(m_pchData
, ch
, nLength
);
207 // takes nLength elements of psz starting at nPos
208 void wxString::InitWith(const char *psz
, size_t nPos
, size_t nLength
)
212 wxASSERT( nPos
<= Strlen(psz
) );
214 if ( nLength
== STRING_MAXLEN
)
215 nLength
= Strlen(psz
+ nPos
);
217 STATISTICS_ADD(InitialLength
, nLength
);
220 // trailing '\0' is written in AllocBuffer()
221 AllocBuffer(nLength
);
222 memcpy(m_pchData
, psz
+ nPos
, nLength
*sizeof(char));
226 // the same as previous constructor, but for compilers using unsigned char
227 wxString::wxString(const unsigned char* psz
, size_t nLength
)
229 InitWith((const char *)psz
, 0, nLength
);
232 #ifdef wxSTD_STRING_COMPATIBILITY
234 // poor man's iterators are "void *" pointers
235 wxString::wxString(const void *pStart
, const void *pEnd
)
237 InitWith((const char *)pStart
, 0,
238 (const char *)pEnd
- (const char *)pStart
);
241 #endif //std::string compatibility
244 wxString::wxString(const wchar_t *pwz
)
246 // first get necessary size
248 // NB: GNU libc5 wcstombs() is completely broken, don't use it (it doesn't
249 // honor the 3rd parameter, thus it will happily crash here).
251 // don't know if it's really needed (or if we can pass NULL), but better safe
254 size_t nLen
= wcsrtombs((char *) NULL
, &pwz
, 0, &mbstate
);
256 size_t nLen
= wcstombs((char *) NULL
, pwz
, 0);
262 wcstombs(m_pchData
, pwz
, nLen
);
269 // ---------------------------------------------------------------------------
271 // ---------------------------------------------------------------------------
273 // allocates memory needed to store a C string of length nLen
274 void wxString::AllocBuffer(size_t nLen
)
276 wxASSERT( nLen
> 0 ); //
277 wxASSERT( nLen
<= INT_MAX
-1 ); // max size (enough room for 1 extra)
279 STATISTICS_ADD(Length
, nLen
);
282 // 1) one extra character for '\0' termination
283 // 2) sizeof(wxStringData) for housekeeping info
284 wxStringData
* pData
= (wxStringData
*)
285 malloc(sizeof(wxStringData
) + (nLen
+ EXTRA_ALLOC
+ 1)*sizeof(char));
287 pData
->nDataLength
= nLen
;
288 pData
->nAllocLength
= nLen
+ EXTRA_ALLOC
;
289 m_pchData
= pData
->data(); // data starts after wxStringData
290 m_pchData
[nLen
] = '\0';
293 // must be called before changing this string
294 void wxString::CopyBeforeWrite()
296 wxStringData
* pData
= GetStringData();
298 if ( pData
->IsShared() ) {
299 pData
->Unlock(); // memory not freed because shared
300 size_t nLen
= pData
->nDataLength
;
302 memcpy(m_pchData
, pData
->data(), nLen
*sizeof(char));
305 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
308 // must be called before replacing contents of this string
309 void wxString::AllocBeforeWrite(size_t nLen
)
311 wxASSERT( nLen
!= 0 ); // doesn't make any sense
313 // must not share string and must have enough space
314 wxStringData
* pData
= GetStringData();
315 if ( pData
->IsShared() || (nLen
> pData
->nAllocLength
) ) {
316 // can't work with old buffer, get new one
321 // update the string length
322 pData
->nDataLength
= nLen
;
325 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
328 // allocate enough memory for nLen characters
329 void wxString::Alloc(size_t nLen
)
331 wxStringData
*pData
= GetStringData();
332 if ( pData
->nAllocLength
<= nLen
) {
333 if ( pData
->IsEmpty() ) {
336 wxStringData
* pData
= (wxStringData
*)
337 malloc(sizeof(wxStringData
) + (nLen
+ 1)*sizeof(char));
339 pData
->nDataLength
= 0;
340 pData
->nAllocLength
= nLen
;
341 m_pchData
= pData
->data(); // data starts after wxStringData
342 m_pchData
[0u] = '\0';
344 else if ( pData
->IsShared() ) {
345 pData
->Unlock(); // memory not freed because shared
346 size_t nOldLen
= pData
->nDataLength
;
348 memcpy(m_pchData
, pData
->data(), nOldLen
*sizeof(char));
353 wxStringData
*p
= (wxStringData
*)
354 realloc(pData
, sizeof(wxStringData
) + (nLen
+ 1)*sizeof(char));
357 // @@@ what to do on memory error?
361 // it's not important if the pointer changed or not (the check for this
362 // is not faster than assigning to m_pchData in all cases)
363 p
->nAllocLength
= nLen
;
364 m_pchData
= p
->data();
367 //else: we've already got enough
370 // shrink to minimal size (releasing extra memory)
371 void wxString::Shrink()
373 wxStringData
*pData
= GetStringData();
375 // this variable is unused in release build, so avoid the compiler warning by
376 // just not declaring it
380 realloc(pData
, sizeof(wxStringData
) + (pData
->nDataLength
+ 1)*sizeof(char));
382 wxASSERT( p
!= NULL
); // can't free memory?
383 wxASSERT( p
== pData
); // we're decrementing the size - block shouldn't move!
386 // get the pointer to writable buffer of (at least) nLen bytes
387 char *wxString::GetWriteBuf(size_t nLen
)
389 AllocBeforeWrite(nLen
);
391 wxASSERT( GetStringData()->nRefs
== 1 );
392 GetStringData()->Validate(FALSE
);
397 // put string back in a reasonable state after GetWriteBuf
398 void wxString::UngetWriteBuf()
400 GetStringData()->nDataLength
= strlen(m_pchData
);
401 GetStringData()->Validate(TRUE
);
404 // ---------------------------------------------------------------------------
406 // ---------------------------------------------------------------------------
408 // all functions are inline in string.h
410 // ---------------------------------------------------------------------------
411 // assignment operators
412 // ---------------------------------------------------------------------------
414 // helper function: does real copy
415 void wxString::AssignCopy(size_t nSrcLen
, const char *pszSrcData
)
417 if ( nSrcLen
== 0 ) {
421 AllocBeforeWrite(nSrcLen
);
422 memcpy(m_pchData
, pszSrcData
, nSrcLen
*sizeof(char));
423 GetStringData()->nDataLength
= nSrcLen
;
424 m_pchData
[nSrcLen
] = '\0';
428 // assigns one string to another
429 wxString
& wxString::operator=(const wxString
& stringSrc
)
431 wxASSERT( stringSrc
.GetStringData()->IsValid() );
433 // don't copy string over itself
434 if ( m_pchData
!= stringSrc
.m_pchData
) {
435 if ( stringSrc
.GetStringData()->IsEmpty() ) {
440 GetStringData()->Unlock();
441 m_pchData
= stringSrc
.m_pchData
;
442 GetStringData()->Lock();
449 // assigns a single character
450 wxString
& wxString::operator=(char ch
)
457 wxString
& wxString::operator=(const char *psz
)
459 AssignCopy(Strlen(psz
), psz
);
463 // same as 'signed char' variant
464 wxString
& wxString::operator=(const unsigned char* psz
)
466 *this = (const char *)psz
;
470 wxString
& wxString::operator=(const wchar_t *pwz
)
477 // ---------------------------------------------------------------------------
478 // string concatenation
479 // ---------------------------------------------------------------------------
481 // add something to this string
482 void wxString::ConcatSelf(int nSrcLen
, const char *pszSrcData
)
484 STATISTICS_ADD(SummandLength
, nSrcLen
);
486 // concatenating an empty string is a NOP
488 wxStringData
*pData
= GetStringData();
489 size_t nLen
= pData
->nDataLength
;
490 size_t nNewLen
= nLen
+ nSrcLen
;
492 // alloc new buffer if current is too small
493 if ( pData
->IsShared() ) {
494 STATISTICS_ADD(ConcatHit
, 0);
496 // we have to allocate another buffer
497 wxStringData
* pOldData
= GetStringData();
498 AllocBuffer(nNewLen
);
499 memcpy(m_pchData
, pOldData
->data(), nLen
*sizeof(char));
502 else if ( nNewLen
> pData
->nAllocLength
) {
503 STATISTICS_ADD(ConcatHit
, 0);
505 // we have to grow the buffer
509 STATISTICS_ADD(ConcatHit
, 1);
511 // the buffer is already big enough
514 // should be enough space
515 wxASSERT( nNewLen
<= GetStringData()->nAllocLength
);
517 // fast concatenation - all is done in our buffer
518 memcpy(m_pchData
+ nLen
, pszSrcData
, nSrcLen
*sizeof(char));
520 m_pchData
[nNewLen
] = '\0'; // put terminating '\0'
521 GetStringData()->nDataLength
= nNewLen
; // and fix the length
523 //else: the string to append was empty
527 * concatenation functions come in 5 flavours:
529 * char + string and string + char
530 * C str + string and string + C str
533 wxString
operator+(const wxString
& string1
, const wxString
& string2
)
535 wxASSERT( string1
.GetStringData()->IsValid() );
536 wxASSERT( string2
.GetStringData()->IsValid() );
538 wxString s
= string1
;
544 wxString
operator+(const wxString
& string
, char ch
)
546 wxASSERT( string
.GetStringData()->IsValid() );
554 wxString
operator+(char ch
, const wxString
& string
)
556 wxASSERT( string
.GetStringData()->IsValid() );
564 wxString
operator+(const wxString
& string
, const char *psz
)
566 wxASSERT( string
.GetStringData()->IsValid() );
569 s
.Alloc(Strlen(psz
) + string
.Len());
576 wxString
operator+(const char *psz
, const wxString
& string
)
578 wxASSERT( string
.GetStringData()->IsValid() );
581 s
.Alloc(Strlen(psz
) + string
.Len());
588 // ===========================================================================
589 // other common string functions
590 // ===========================================================================
592 // ---------------------------------------------------------------------------
593 // simple sub-string extraction
594 // ---------------------------------------------------------------------------
596 // helper function: clone the data attached to this string
597 void wxString::AllocCopy(wxString
& dest
, int nCopyLen
, int nCopyIndex
) const
599 if ( nCopyLen
== 0 ) {
603 dest
.AllocBuffer(nCopyLen
);
604 memcpy(dest
.m_pchData
, m_pchData
+ nCopyIndex
, nCopyLen
*sizeof(char));
608 // extract string of length nCount starting at nFirst
609 wxString
wxString::Mid(size_t nFirst
, size_t nCount
) const
611 wxStringData
*pData
= GetStringData();
612 size_t nLen
= pData
->nDataLength
;
614 // default value of nCount is STRING_MAXLEN and means "till the end"
615 if ( nCount
== STRING_MAXLEN
)
617 nCount
= nLen
- nFirst
;
620 // out-of-bounds requests return sensible things
621 if ( nFirst
+ nCount
> nLen
)
623 nCount
= nLen
- nFirst
;
628 // AllocCopy() will return empty string
633 AllocCopy(dest
, nCount
, nFirst
);
638 // extract nCount last (rightmost) characters
639 wxString
wxString::Right(size_t nCount
) const
641 if ( nCount
> (size_t)GetStringData()->nDataLength
)
642 nCount
= GetStringData()->nDataLength
;
645 AllocCopy(dest
, nCount
, GetStringData()->nDataLength
- nCount
);
649 // get all characters after the last occurence of ch
650 // (returns the whole string if ch not found)
651 wxString
wxString::AfterLast(char ch
) const
654 int iPos
= Find(ch
, TRUE
);
655 if ( iPos
== wxNOT_FOUND
)
658 str
= c_str() + iPos
+ 1;
663 // extract nCount first (leftmost) characters
664 wxString
wxString::Left(size_t nCount
) const
666 if ( nCount
> (size_t)GetStringData()->nDataLength
)
667 nCount
= GetStringData()->nDataLength
;
670 AllocCopy(dest
, nCount
, 0);
674 // get all characters before the first occurence of ch
675 // (returns the whole string if ch not found)
676 wxString
wxString::BeforeFirst(char ch
) const
679 for ( const char *pc
= m_pchData
; *pc
!= '\0' && *pc
!= ch
; pc
++ )
685 /// get all characters before the last occurence of ch
686 /// (returns empty string if ch not found)
687 wxString
wxString::BeforeLast(char ch
) const
690 int iPos
= Find(ch
, TRUE
);
691 if ( iPos
!= wxNOT_FOUND
&& iPos
!= 0 )
692 str
= wxString(c_str(), iPos
);
697 /// get all characters after the first occurence of ch
698 /// (returns empty string if ch not found)
699 wxString
wxString::AfterFirst(char ch
) const
703 if ( iPos
!= wxNOT_FOUND
)
704 str
= c_str() + iPos
+ 1;
709 // replace first (or all) occurences of some substring with another one
710 size_t wxString::Replace(const char *szOld
, const char *szNew
, bool bReplaceAll
)
712 size_t uiCount
= 0; // count of replacements made
714 size_t uiOldLen
= Strlen(szOld
);
717 const char *pCurrent
= m_pchData
;
719 while ( *pCurrent
!= '\0' ) {
720 pSubstr
= strstr(pCurrent
, szOld
);
721 if ( pSubstr
== NULL
) {
722 // strTemp is unused if no replacements were made, so avoid the copy
726 strTemp
+= pCurrent
; // copy the rest
727 break; // exit the loop
730 // take chars before match
731 strTemp
.ConcatSelf(pSubstr
- pCurrent
, pCurrent
);
733 pCurrent
= pSubstr
+ uiOldLen
; // restart after match
738 if ( !bReplaceAll
) {
739 strTemp
+= pCurrent
; // copy the rest
740 break; // exit the loop
745 // only done if there were replacements, otherwise would have returned above
751 bool wxString::IsAscii() const
753 const char *s
= (const char*) *this;
755 if(!isascii(*s
)) return(FALSE
);
761 bool wxString::IsWord() const
763 const char *s
= (const char*) *this;
765 if(!isalpha(*s
)) return(FALSE
);
771 bool wxString::IsNumber() const
773 const char *s
= (const char*) *this;
775 if(!isdigit(*s
)) return(FALSE
);
781 wxString
wxString::Strip(stripType w
) const
784 if ( w
& leading
) s
.Trim(FALSE
);
785 if ( w
& trailing
) s
.Trim(TRUE
);
789 // ---------------------------------------------------------------------------
791 // ---------------------------------------------------------------------------
793 wxString
& wxString::MakeUpper()
797 for ( char *p
= m_pchData
; *p
; p
++ )
798 *p
= (char)toupper(*p
);
803 wxString
& wxString::MakeLower()
807 for ( char *p
= m_pchData
; *p
; p
++ )
808 *p
= (char)tolower(*p
);
813 // ---------------------------------------------------------------------------
814 // trimming and padding
815 // ---------------------------------------------------------------------------
817 // trims spaces (in the sense of isspace) from left or right side
818 wxString
& wxString::Trim(bool bFromRight
)
820 // first check if we're going to modify the string at all
823 (bFromRight
&& isspace(GetChar(Len() - 1))) ||
824 (!bFromRight
&& isspace(GetChar(0u)))
828 // ok, there is at least one space to trim
833 // find last non-space character
834 char *psz
= m_pchData
+ GetStringData()->nDataLength
- 1;
835 while ( isspace(*psz
) && (psz
>= m_pchData
) )
838 // truncate at trailing space start
840 GetStringData()->nDataLength
= psz
- m_pchData
;
844 // find first non-space character
845 const char *psz
= m_pchData
;
846 while ( isspace(*psz
) )
849 // fix up data and length
850 int nDataLength
= GetStringData()->nDataLength
- (psz
- (const char*) m_pchData
);
851 memmove(m_pchData
, psz
, (nDataLength
+ 1)*sizeof(char));
852 GetStringData()->nDataLength
= nDataLength
;
859 // adds nCount characters chPad to the string from either side
860 wxString
& wxString::Pad(size_t nCount
, char chPad
, bool bFromRight
)
862 wxString
s(chPad
, nCount
);
875 // truncate the string
876 wxString
& wxString::Truncate(size_t uiLen
)
878 if ( uiLen
< Len() ) {
881 *(m_pchData
+ uiLen
) = '\0';
882 GetStringData()->nDataLength
= uiLen
;
884 //else: nothing to do, string is already short enough
889 // ---------------------------------------------------------------------------
890 // finding (return wxNOT_FOUND if not found and index otherwise)
891 // ---------------------------------------------------------------------------
894 int wxString::Find(char ch
, bool bFromEnd
) const
896 const char *psz
= bFromEnd
? strrchr(m_pchData
, ch
) : strchr(m_pchData
, ch
);
898 return (psz
== NULL
) ? wxNOT_FOUND
: psz
- (const char*) m_pchData
;
901 // find a sub-string (like strstr)
902 int wxString::Find(const char *pszSub
) const
904 const char *psz
= strstr(m_pchData
, pszSub
);
906 return (psz
== NULL
) ? wxNOT_FOUND
: psz
- (const char*) m_pchData
;
909 // ---------------------------------------------------------------------------
910 // stream-like operators
911 // ---------------------------------------------------------------------------
912 wxString
& wxString::operator<<(int i
)
917 return (*this) << res
;
920 wxString
& wxString::operator<<(float f
)
925 return (*this) << res
;
928 wxString
& wxString::operator<<(double d
)
933 return (*this) << res
;
936 // ---------------------------------------------------------------------------
938 // ---------------------------------------------------------------------------
939 int wxString::Printf(const char *pszFormat
, ...)
942 va_start(argptr
, pszFormat
);
944 int iLen
= PrintfV(pszFormat
, argptr
);
951 int wxString::PrintfV(const char* pszFormat
, va_list argptr
)
953 // static buffer to avoid dynamic memory allocation each time
954 static char s_szScratch
[1024];
956 // NB: wxVsprintf() may return either less than the buffer size or -1 if there
957 // is not enough place depending on implementation
958 int iLen
= wxVsprintf(s_szScratch
, WXSIZEOF(s_szScratch
), pszFormat
, argptr
);
960 if ( iLen
< (int)WXSIZEOF(s_szScratch
) ) {
961 buffer
= s_szScratch
;
964 int size
= WXSIZEOF(s_szScratch
) * 2;
965 buffer
= (char *)malloc(size
);
966 while ( buffer
!= NULL
) {
967 iLen
= wxVsprintf(buffer
, WXSIZEOF(s_szScratch
), pszFormat
, argptr
);
969 // ok, there was enough space
973 // still not enough, double it again
974 buffer
= (char *)realloc(buffer
, size
*= 2);
983 AllocBeforeWrite(iLen
);
984 strcpy(m_pchData
, buffer
);
986 if ( buffer
!= s_szScratch
)
992 // ----------------------------------------------------------------------------
993 // misc other operations
994 // ----------------------------------------------------------------------------
995 bool wxString::Matches(const char *pszMask
) const
997 // check char by char
999 for ( pszTxt
= c_str(); *pszMask
!= '\0'; pszMask
++, pszTxt
++ ) {
1000 switch ( *pszMask
) {
1002 if ( *pszTxt
== '\0' )
1011 // ignore special chars immediately following this one
1012 while ( *pszMask
== '*' || *pszMask
== '?' )
1015 // if there is nothing more, match
1016 if ( *pszMask
== '\0' )
1019 // are there any other metacharacters in the mask?
1021 const char *pEndMask
= strpbrk(pszMask
, "*?");
1023 if ( pEndMask
!= NULL
) {
1024 // we have to match the string between two metachars
1025 uiLenMask
= pEndMask
- pszMask
;
1028 // we have to match the remainder of the string
1029 uiLenMask
= strlen(pszMask
);
1032 wxString
strToMatch(pszMask
, uiLenMask
);
1033 const char* pMatch
= strstr(pszTxt
, strToMatch
);
1034 if ( pMatch
== NULL
)
1037 // -1 to compensate "++" in the loop
1038 pszTxt
= pMatch
+ uiLenMask
- 1;
1039 pszMask
+= uiLenMask
- 1;
1044 if ( *pszMask
!= *pszTxt
)
1050 // match only if nothing left
1051 return *pszTxt
== '\0';
1054 // Count the number of chars
1055 int wxString::Freq(char ch
) const
1059 for (int i
= 0; i
< len
; i
++)
1061 if (GetChar(i
) == ch
)
1067 // convert to upper case, return the copy of the string
1068 wxString
wxString::Upper() const
1069 { wxString
s(*this); return s
.MakeUpper(); }
1071 // convert to lower case, return the copy of the string
1072 wxString
wxString::Lower() const { wxString
s(*this); return s
.MakeLower(); }
1074 int wxString::sprintf(const char *pszFormat
, ...)
1077 va_start(argptr
, pszFormat
);
1078 int iLen
= PrintfV(pszFormat
, argptr
);
1083 // ---------------------------------------------------------------------------
1084 // standard C++ library string functions
1085 // ---------------------------------------------------------------------------
1086 #ifdef wxSTD_STRING_COMPATIBILITY
1088 wxString
& wxString::insert(size_t nPos
, const wxString
& str
)
1090 wxASSERT( str
.GetStringData()->IsValid() );
1091 wxASSERT( nPos
<= Len() );
1093 if ( !str
.IsEmpty() ) {
1095 char *pc
= strTmp
.GetWriteBuf(Len() + str
.Len());
1096 strncpy(pc
, c_str(), nPos
);
1097 strcpy(pc
+ nPos
, str
);
1098 strcpy(pc
+ nPos
+ str
.Len(), c_str() + nPos
);
1099 strTmp
.UngetWriteBuf();
1106 size_t wxString::find(const wxString
& str
, size_t nStart
) const
1108 wxASSERT( str
.GetStringData()->IsValid() );
1109 wxASSERT( nStart
<= Len() );
1111 const char *p
= strstr(c_str() + nStart
, str
);
1113 return p
== NULL
? npos
: p
- c_str();
1116 // VC++ 1.5 can't cope with the default argument in the header.
1117 #if !defined(__VISUALC__) || defined(__WIN32__)
1118 size_t wxString::find(const char* sz
, size_t nStart
, size_t n
) const
1120 return find(wxString(sz
, n
== npos
? 0 : n
), nStart
);
1124 // Gives a duplicate symbol (presumably a case-insensitivity problem)
1125 #if !defined(__BORLANDC__)
1126 size_t wxString::find(char ch
, size_t nStart
) const
1128 wxASSERT( nStart
<= Len() );
1130 const char *p
= strchr(c_str() + nStart
, ch
);
1132 return p
== NULL
? npos
: p
- c_str();
1136 size_t wxString::rfind(const wxString
& str
, size_t nStart
) const
1138 wxASSERT( str
.GetStringData()->IsValid() );
1139 wxASSERT( nStart
<= Len() );
1141 // # could be quicker than that
1142 const char *p
= c_str() + (nStart
== npos
? Len() : nStart
);
1143 while ( p
>= c_str() + str
.Len() ) {
1144 if ( strncmp(p
- str
.Len(), str
, str
.Len()) == 0 )
1145 return p
- str
.Len() - c_str();
1152 // VC++ 1.5 can't cope with the default argument in the header.
1153 #if !defined(__VISUALC__) || defined(__WIN32__)
1154 size_t wxString::rfind(const char* sz
, size_t nStart
, size_t n
) const
1156 return rfind(wxString(sz
, n
== npos
? 0 : n
), nStart
);
1159 size_t wxString::rfind(char ch
, size_t nStart
) const
1161 wxASSERT( nStart
<= Len() );
1163 const char *p
= strrchr(c_str() + nStart
, ch
);
1165 return p
== NULL
? npos
: p
- c_str();
1169 wxString
wxString::substr(size_t nStart
, size_t nLen
) const
1171 // npos means 'take all'
1175 wxASSERT( nStart
+ nLen
<= Len() );
1177 return wxString(c_str() + nStart
, nLen
== npos
? 0 : nLen
);
1180 wxString
& wxString::erase(size_t nStart
, size_t nLen
)
1182 wxString
strTmp(c_str(), nStart
);
1183 if ( nLen
!= npos
) {
1184 wxASSERT( nStart
+ nLen
<= Len() );
1186 strTmp
.append(c_str() + nStart
+ nLen
);
1193 wxString
& wxString::replace(size_t nStart
, size_t nLen
, const char *sz
)
1195 wxASSERT( nStart
+ nLen
<= Strlen(sz
) );
1199 strTmp
.append(c_str(), nStart
);
1201 strTmp
.append(c_str() + nStart
+ nLen
);
1207 wxString
& wxString::replace(size_t nStart
, size_t nLen
, size_t nCount
, char ch
)
1209 return replace(nStart
, nLen
, wxString(ch
, nCount
));
1212 wxString
& wxString::replace(size_t nStart
, size_t nLen
,
1213 const wxString
& str
, size_t nStart2
, size_t nLen2
)
1215 return replace(nStart
, nLen
, str
.substr(nStart2
, nLen2
));
1218 wxString
& wxString::replace(size_t nStart
, size_t nLen
,
1219 const char* sz
, size_t nCount
)
1221 return replace(nStart
, nLen
, wxString(sz
, nCount
));
1224 #endif //std::string compatibility
1226 // ============================================================================
1228 // ============================================================================
1230 // size increment = max(50% of current size, ARRAY_MAXSIZE_INCREMENT)
1231 #define ARRAY_MAXSIZE_INCREMENT 4096
1232 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
1233 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
1236 #define STRING(p) ((wxString *)(&(p)))
1239 wxArrayString::wxArrayString()
1243 m_pItems
= (char **) NULL
;
1247 wxArrayString::wxArrayString(const wxArrayString
& src
)
1251 m_pItems
= (char **) NULL
;
1256 // assignment operator
1257 wxArrayString
& wxArrayString::operator=(const wxArrayString
& src
)
1262 if ( src
.m_nCount
> ARRAY_DEFAULT_INITIAL_SIZE
)
1263 Alloc(src
.m_nCount
);
1265 // we can't just copy the pointers here because otherwise we would share
1266 // the strings with another array
1267 for ( size_t n
= 0; n
< src
.m_nCount
; n
++ )
1270 if ( m_nCount
!= 0 )
1271 memcpy(m_pItems
, src
.m_pItems
, m_nCount
*sizeof(char *));
1277 void wxArrayString::Grow()
1279 // only do it if no more place
1280 if( m_nCount
== m_nSize
) {
1281 if( m_nSize
== 0 ) {
1282 // was empty, alloc some memory
1283 m_nSize
= ARRAY_DEFAULT_INITIAL_SIZE
;
1284 m_pItems
= new char *[m_nSize
];
1287 // otherwise when it's called for the first time, nIncrement would be 0
1288 // and the array would never be expanded
1289 wxASSERT( ARRAY_DEFAULT_INITIAL_SIZE
!= 0 );
1291 // add 50% but not too much
1292 size_t nIncrement
= m_nSize
< ARRAY_DEFAULT_INITIAL_SIZE
1293 ? ARRAY_DEFAULT_INITIAL_SIZE
: m_nSize
>> 1;
1294 if ( nIncrement
> ARRAY_MAXSIZE_INCREMENT
)
1295 nIncrement
= ARRAY_MAXSIZE_INCREMENT
;
1296 m_nSize
+= nIncrement
;
1297 char **pNew
= new char *[m_nSize
];
1299 // copy data to new location
1300 memcpy(pNew
, m_pItems
, m_nCount
*sizeof(char *));
1302 // delete old memory (but do not release the strings!)
1303 wxDELETEA(m_pItems
);
1310 void wxArrayString::Free()
1312 for ( size_t n
= 0; n
< m_nCount
; n
++ ) {
1313 STRING(m_pItems
[n
])->GetStringData()->Unlock();
1317 // deletes all the strings from the list
1318 void wxArrayString::Empty()
1325 // as Empty, but also frees memory
1326 void wxArrayString::Clear()
1333 wxDELETEA(m_pItems
);
1337 wxArrayString::~wxArrayString()
1341 wxDELETEA(m_pItems
);
1344 // pre-allocates memory (frees the previous data!)
1345 void wxArrayString::Alloc(size_t nSize
)
1347 wxASSERT( nSize
> 0 );
1349 // only if old buffer was not big enough
1350 if ( nSize
> m_nSize
) {
1352 wxDELETEA(m_pItems
);
1353 m_pItems
= new char *[nSize
];
1360 // searches the array for an item (forward or backwards)
1361 int wxArrayString::Index(const char *sz
, bool bCase
, bool bFromEnd
) const
1364 if ( m_nCount
> 0 ) {
1365 size_t ui
= m_nCount
;
1367 if ( STRING(m_pItems
[--ui
])->IsSameAs(sz
, bCase
) )
1374 for( size_t ui
= 0; ui
< m_nCount
; ui
++ ) {
1375 if( STRING(m_pItems
[ui
])->IsSameAs(sz
, bCase
) )
1383 // add item at the end
1384 void wxArrayString::Add(const wxString
& str
)
1386 wxASSERT( str
.GetStringData()->IsValid() );
1390 // the string data must not be deleted!
1391 str
.GetStringData()->Lock();
1392 m_pItems
[m_nCount
++] = (char *)str
.c_str();
1395 // add item at the given position
1396 void wxArrayString::Insert(const wxString
& str
, size_t nIndex
)
1398 wxASSERT( str
.GetStringData()->IsValid() );
1400 wxCHECK_RET( nIndex
<= m_nCount
, ("bad index in wxArrayString::Insert") );
1404 memmove(&m_pItems
[nIndex
+ 1], &m_pItems
[nIndex
],
1405 (m_nCount
- nIndex
)*sizeof(char *));
1407 str
.GetStringData()->Lock();
1408 m_pItems
[nIndex
] = (char *)str
.c_str();
1413 // removes item from array (by index)
1414 void wxArrayString::Remove(size_t nIndex
)
1416 wxCHECK_RET( nIndex
<= m_nCount
, _("bad index in wxArrayString::Remove") );
1419 Item(nIndex
).GetStringData()->Unlock();
1421 memmove(&m_pItems
[nIndex
], &m_pItems
[nIndex
+ 1],
1422 (m_nCount
- nIndex
- 1)*sizeof(char *));
1426 // removes item from array (by value)
1427 void wxArrayString::Remove(const char *sz
)
1429 int iIndex
= Index(sz
);
1431 wxCHECK_RET( iIndex
!= wxNOT_FOUND
,
1432 _("removing inexistent element in wxArrayString::Remove") );
1437 // sort array elements using passed comparaison function
1439 void wxArrayString::Sort(bool WXUNUSED(bCase
), bool WXUNUSED(bReverse
) )
1442 //qsort(m_pItems, m_nCount, sizeof(char *), fCmp);