]> git.saurik.com Git - wxWidgets.git/blob - src/common/string.cpp
some sprintf()s replaced with wxString::Printf
[wxWidgets.git] / src / common / string.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: string.cpp
3 // Purpose: wxString class
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 29/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "string.h"
14 #endif
15
16 /*
17 * About ref counting:
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
21 */
22
23 // ===========================================================================
24 // headers, declarations, constants
25 // ===========================================================================
26
27 // For compilers that support precompilation, includes "wx.h".
28 #include "wx/wxprec.h"
29
30 #ifdef __BORLANDC__
31 #pragma hdrstop
32 #endif
33
34 #ifndef WX_PRECOMP
35 #include "wx/defs.h"
36 #include "wx/string.h"
37 #include "wx/intl.h"
38 #endif
39
40 #include <ctype.h>
41 #include <string.h>
42 #include <stdlib.h>
43
44 #ifdef wxUSE_WCSRTOMBS
45 #include <wchar.h> // for wcsrtombs(), see comments where it's used
46 #endif // GNU
47
48 #ifdef WXSTRING_IS_WXOBJECT
49 IMPLEMENT_DYNAMIC_CLASS(wxString, wxObject)
50 #endif //WXSTRING_IS_WXOBJECT
51
52 // allocating extra space for each string consumes more memory but speeds up
53 // the concatenation operations (nLen is the current string's length)
54 // NB: EXTRA_ALLOC must be >= 0!
55 #define EXTRA_ALLOC (19 - nLen % 16)
56
57 // ---------------------------------------------------------------------------
58 // static class variables definition
59 // ---------------------------------------------------------------------------
60
61 #ifdef STD_STRING_COMPATIBILITY
62 const size_t wxString::npos = STRING_MAXLEN;
63 #endif
64
65 // ----------------------------------------------------------------------------
66 // static data
67 // ----------------------------------------------------------------------------
68
69 // for an empty string, GetStringData() will return this address: this
70 // structure has the same layout as wxStringData and it's data() method will
71 // return the empty string (dummy pointer)
72 static const struct
73 {
74 wxStringData data;
75 char dummy;
76 } g_strEmpty = { {-1, 0, 0}, '\0' };
77
78 // empty C style string: points to 'string data' byte of g_strEmpty
79 extern const char *g_szNul = &g_strEmpty.dummy;
80
81 // ----------------------------------------------------------------------------
82 // global functions
83 // ----------------------------------------------------------------------------
84
85 #ifdef STD_STRING_COMPATIBILITY
86
87 // MS Visual C++ version 5.0 provides the new STL headers as well as the old
88 // iostream ones.
89 //
90 // ATTN: you can _not_ use both of these in the same program!
91 #if wxUSE_IOSTREAMH
92 #include <iostream.h>
93 #define NAMESPACE
94 #else
95 #include <iostream>
96 # ifdef _MSC_VER
97 using namespace std;
98 # endif
99 // for msvc (bcc50+ also) you don't need these NAMESPACE defines,
100 // using namespace std; takes care of that.
101 #define NAMESPACE std::
102 #endif
103
104 #ifdef __WXMSW__
105 #ifdef _MSC_VER
106 #define wxVsprintf _vsnprintf
107 #endif
108 #else
109 #if defined ( HAVE_VSNPRINTF )
110 #define wxVsprintf vsnprintf
111 #endif
112 #endif
113
114 #ifndef wxVsprintf
115 #ifdef HAVE_VPRINTF
116 #define wxVsprintf(buffer,len,format,argptr) vsprintf(buffer,format, argptr)
117 #pragma message("Using sprintf() because no snprintf()-like function defined")
118 #else
119 #pragma error("No vsnprintf() or vsprintf() function available.")
120 #endif
121 #endif
122
123 NAMESPACE istream& operator>>(NAMESPACE istream& is, wxString& WXUNUSED(str))
124 {
125 #if 0
126 int w = is.width(0);
127 if ( is.ipfx(0) ) {
128 NAMESPACE streambuf *sb = is.rdbuf();
129 str.erase();
130 while ( true ) {
131 int ch = sb->sbumpc ();
132 if ( ch == EOF ) {
133 is.setstate(NAMESPACE ios::eofbit);
134 break;
135 }
136 else if ( isspace(ch) ) {
137 sb->sungetc();
138 break;
139 }
140
141 str += ch;
142 if ( --w == 1 )
143 break;
144 }
145 }
146
147 is.isfx();
148 if ( str.length() == 0 )
149 is.setstate(NAMESPACE ios::failbit);
150 #endif
151 return is;
152 }
153
154 #endif //std::string compatibility
155
156 // ----------------------------------------------------------------------------
157 // private classes
158 // ----------------------------------------------------------------------------
159
160 // this small class is used to gather statistics for performance tuning
161 //#define WXSTRING_STATISTICS
162 #ifdef WXSTRING_STATISTICS
163 class Averager
164 {
165 public:
166 Averager(const char *sz) { m_sz = sz; m_nTotal = m_nCount = 0; }
167 ~Averager()
168 { printf("wxString: average %s = %f\n", m_sz, ((float)m_nTotal)/m_nCount); }
169
170 void Add(size_t n) { m_nTotal += n; m_nCount++; }
171
172 private:
173 size_t m_nCount, m_nTotal;
174 const char *m_sz;
175 } g_averageLength("allocation size"),
176 g_averageSummandLength("summand length"),
177 g_averageConcatHit("hit probability in concat"),
178 g_averageInitialLength("initial string length");
179
180 #define STATISTICS_ADD(av, val) g_average##av.Add(val)
181 #else
182 #define STATISTICS_ADD(av, val)
183 #endif // WXSTRING_STATISTICS
184
185 // ===========================================================================
186 // wxString class core
187 // ===========================================================================
188
189 // ---------------------------------------------------------------------------
190 // construction
191 // ---------------------------------------------------------------------------
192
193 // constructs string of <nLength> copies of character <ch>
194 wxString::wxString(char ch, size_t nLength)
195 {
196 Init();
197
198 if ( nLength > 0 ) {
199 AllocBuffer(nLength);
200
201 wxASSERT( sizeof(char) == 1 ); // can't use memset if not
202
203 memset(m_pchData, ch, nLength);
204 }
205 }
206
207 // takes nLength elements of psz starting at nPos
208 void wxString::InitWith(const char *psz, size_t nPos, size_t nLength)
209 {
210 Init();
211
212 wxASSERT( nPos <= Strlen(psz) );
213
214 if ( nLength == STRING_MAXLEN )
215 nLength = Strlen(psz + nPos);
216
217 STATISTICS_ADD(InitialLength, nLength);
218
219 if ( nLength > 0 ) {
220 // trailing '\0' is written in AllocBuffer()
221 AllocBuffer(nLength);
222 memcpy(m_pchData, psz + nPos, nLength*sizeof(char));
223 }
224 }
225
226 // the same as previous constructor, but for compilers using unsigned char
227 wxString::wxString(const unsigned char* psz, size_t nLength)
228 {
229 InitWith((const char *)psz, 0, nLength);
230 }
231
232 #ifdef STD_STRING_COMPATIBILITY
233
234 // poor man's iterators are "void *" pointers
235 wxString::wxString(const void *pStart, const void *pEnd)
236 {
237 InitWith((const char *)pStart, 0,
238 (const char *)pEnd - (const char *)pStart);
239 }
240
241 #endif //std::string compatibility
242
243 // from wide string
244 wxString::wxString(const wchar_t *pwz)
245 {
246 // first get necessary size
247
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).
250 #ifdef wxUSE_WCSRTOMBS
251 // don't know if it's really needed (or if we can pass NULL), but better safe
252 // than quick
253 mbstate_t mbstate;
254 size_t nLen = wcsrtombs((char *) NULL, &pwz, 0, &mbstate);
255 #else // !GNU libc
256 size_t nLen = wcstombs((char *) NULL, pwz, 0);
257 #endif // GNU
258
259 // empty?
260 if ( nLen != 0 ) {
261 AllocBuffer(nLen);
262 wcstombs(m_pchData, pwz, nLen);
263 }
264 else {
265 Init();
266 }
267 }
268
269 // ---------------------------------------------------------------------------
270 // memory allocation
271 // ---------------------------------------------------------------------------
272
273 // allocates memory needed to store a C string of length nLen
274 void wxString::AllocBuffer(size_t nLen)
275 {
276 wxASSERT( nLen > 0 ); //
277 wxASSERT( nLen <= INT_MAX-1 ); // max size (enough room for 1 extra)
278
279 STATISTICS_ADD(Length, nLen);
280
281 // allocate memory:
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));
286 pData->nRefs = 1;
287 pData->nDataLength = nLen;
288 pData->nAllocLength = nLen + EXTRA_ALLOC;
289 m_pchData = pData->data(); // data starts after wxStringData
290 m_pchData[nLen] = '\0';
291 }
292
293 // must be called before changing this string
294 void wxString::CopyBeforeWrite()
295 {
296 wxStringData* pData = GetStringData();
297
298 if ( pData->IsShared() ) {
299 pData->Unlock(); // memory not freed because shared
300 size_t nLen = pData->nDataLength;
301 AllocBuffer(nLen);
302 memcpy(m_pchData, pData->data(), nLen*sizeof(char));
303 }
304
305 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
306 }
307
308 // must be called before replacing contents of this string
309 void wxString::AllocBeforeWrite(size_t nLen)
310 {
311 wxASSERT( nLen != 0 ); // doesn't make any sense
312
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
317 pData->Unlock();
318 AllocBuffer(nLen);
319 }
320
321 wxASSERT( !GetStringData()->IsShared() ); // we must be the only owner
322 }
323
324 // allocate enough memory for nLen characters
325 void wxString::Alloc(size_t nLen)
326 {
327 wxStringData *pData = GetStringData();
328 if ( pData->nAllocLength <= nLen ) {
329 if ( pData->IsEmpty() ) {
330 nLen += EXTRA_ALLOC;
331
332 wxStringData* pData = (wxStringData*)
333 malloc(sizeof(wxStringData) + (nLen + 1)*sizeof(char));
334 pData->nRefs = 1;
335 pData->nDataLength = 0;
336 pData->nAllocLength = nLen;
337 m_pchData = pData->data(); // data starts after wxStringData
338 m_pchData[0u] = '\0';
339 }
340 else if ( pData->IsShared() ) {
341 pData->Unlock(); // memory not freed because shared
342 size_t nOldLen = pData->nDataLength;
343 AllocBuffer(nLen);
344 memcpy(m_pchData, pData->data(), nOldLen*sizeof(char));
345 }
346 else {
347 nLen += EXTRA_ALLOC;
348
349 wxStringData *p = (wxStringData *)
350 realloc(pData, sizeof(wxStringData) + (nLen + 1)*sizeof(char));
351
352 if ( p == NULL ) {
353 // @@@ what to do on memory error?
354 return;
355 }
356
357 // it's not important if the pointer changed or not (the check for this
358 // is not faster than assigning to m_pchData in all cases)
359 p->nAllocLength = nLen;
360 m_pchData = p->data();
361 }
362 }
363 //else: we've already got enough
364 }
365
366 // shrink to minimal size (releasing extra memory)
367 void wxString::Shrink()
368 {
369 wxStringData *pData = GetStringData();
370
371 // this variable is unused in release build, so avoid the compiler warning by
372 // just not declaring it
373 #ifdef __WXDEBUG__
374 void *p =
375 #endif
376 realloc(pData, sizeof(wxStringData) + (pData->nDataLength + 1)*sizeof(char));
377
378 wxASSERT( p != NULL ); // can't free memory?
379 wxASSERT( p == pData ); // we're decrementing the size - block shouldn't move!
380 }
381
382 // get the pointer to writable buffer of (at least) nLen bytes
383 char *wxString::GetWriteBuf(size_t nLen)
384 {
385 AllocBeforeWrite(nLen);
386
387 wxASSERT( GetStringData()->nRefs == 1 );
388 GetStringData()->Validate(FALSE);
389
390 return m_pchData;
391 }
392
393 // put string back in a reasonable state after GetWriteBuf
394 void wxString::UngetWriteBuf()
395 {
396 GetStringData()->nDataLength = strlen(m_pchData);
397 GetStringData()->Validate(TRUE);
398 }
399
400 // ---------------------------------------------------------------------------
401 // data access
402 // ---------------------------------------------------------------------------
403
404 // all functions are inline in string.h
405
406 // ---------------------------------------------------------------------------
407 // assignment operators
408 // ---------------------------------------------------------------------------
409
410 // helper function: does real copy
411 void wxString::AssignCopy(size_t nSrcLen, const char *pszSrcData)
412 {
413 if ( nSrcLen == 0 ) {
414 Reinit();
415 }
416 else {
417 AllocBeforeWrite(nSrcLen);
418 memcpy(m_pchData, pszSrcData, nSrcLen*sizeof(char));
419 GetStringData()->nDataLength = nSrcLen;
420 m_pchData[nSrcLen] = '\0';
421 }
422 }
423
424 // assigns one string to another
425 wxString& wxString::operator=(const wxString& stringSrc)
426 {
427 wxASSERT( stringSrc.GetStringData()->IsValid() );
428
429 // don't copy string over itself
430 if ( m_pchData != stringSrc.m_pchData ) {
431 if ( stringSrc.GetStringData()->IsEmpty() ) {
432 Reinit();
433 }
434 else {
435 // adjust references
436 GetStringData()->Unlock();
437 m_pchData = stringSrc.m_pchData;
438 GetStringData()->Lock();
439 }
440 }
441
442 return *this;
443 }
444
445 // assigns a single character
446 wxString& wxString::operator=(char ch)
447 {
448 AssignCopy(1, &ch);
449 return *this;
450 }
451
452 // assigns C string
453 wxString& wxString::operator=(const char *psz)
454 {
455 AssignCopy(Strlen(psz), psz);
456 return *this;
457 }
458
459 // same as 'signed char' variant
460 wxString& wxString::operator=(const unsigned char* psz)
461 {
462 *this = (const char *)psz;
463 return *this;
464 }
465
466 wxString& wxString::operator=(const wchar_t *pwz)
467 {
468 wxString str(pwz);
469 *this = str;
470 return *this;
471 }
472
473 // ---------------------------------------------------------------------------
474 // string concatenation
475 // ---------------------------------------------------------------------------
476
477 // add something to this string
478 void wxString::ConcatSelf(int nSrcLen, const char *pszSrcData)
479 {
480 STATISTICS_ADD(SummandLength, nSrcLen);
481
482 // concatenating an empty string is a NOP
483 if ( nSrcLen > 0 ) {
484 wxStringData *pData = GetStringData();
485 size_t nLen = pData->nDataLength;
486 size_t nNewLen = nLen + nSrcLen;
487
488 // alloc new buffer if current is too small
489 if ( pData->IsShared() ) {
490 STATISTICS_ADD(ConcatHit, 0);
491
492 // we have to allocate another buffer
493 wxStringData* pOldData = GetStringData();
494 AllocBuffer(nNewLen);
495 memcpy(m_pchData, pOldData->data(), nLen*sizeof(char));
496 pOldData->Unlock();
497 }
498 else if ( nNewLen > pData->nAllocLength ) {
499 STATISTICS_ADD(ConcatHit, 0);
500
501 // we have to grow the buffer
502 Alloc(nNewLen);
503 }
504 else {
505 STATISTICS_ADD(ConcatHit, 1);
506
507 // the buffer is already big enough
508 }
509
510 // should be enough space
511 wxASSERT( nNewLen <= GetStringData()->nAllocLength );
512
513 // fast concatenation - all is done in our buffer
514 memcpy(m_pchData + nLen, pszSrcData, nSrcLen*sizeof(char));
515
516 m_pchData[nNewLen] = '\0'; // put terminating '\0'
517 GetStringData()->nDataLength = nNewLen; // and fix the length
518 }
519 //else: the string to append was empty
520 }
521
522 /*
523 * concatenation functions come in 5 flavours:
524 * string + string
525 * char + string and string + char
526 * C str + string and string + C str
527 */
528
529 wxString operator+(const wxString& string1, const wxString& string2)
530 {
531 wxASSERT( string1.GetStringData()->IsValid() );
532 wxASSERT( string2.GetStringData()->IsValid() );
533
534 wxString s = string1;
535 s += string2;
536
537 return s;
538 }
539
540 wxString operator+(const wxString& string, char ch)
541 {
542 wxASSERT( string.GetStringData()->IsValid() );
543
544 wxString s = string;
545 s += ch;
546
547 return s;
548 }
549
550 wxString operator+(char ch, const wxString& string)
551 {
552 wxASSERT( string.GetStringData()->IsValid() );
553
554 wxString s = ch;
555 s += string;
556
557 return s;
558 }
559
560 wxString operator+(const wxString& string, const char *psz)
561 {
562 wxASSERT( string.GetStringData()->IsValid() );
563
564 wxString s;
565 s.Alloc(Strlen(psz) + string.Len());
566 s = string;
567 s += psz;
568
569 return s;
570 }
571
572 wxString operator+(const char *psz, const wxString& string)
573 {
574 wxASSERT( string.GetStringData()->IsValid() );
575
576 wxString s;
577 s.Alloc(Strlen(psz) + string.Len());
578 s = psz;
579 s += string;
580
581 return s;
582 }
583
584 // ===========================================================================
585 // other common string functions
586 // ===========================================================================
587
588 // ---------------------------------------------------------------------------
589 // simple sub-string extraction
590 // ---------------------------------------------------------------------------
591
592 // helper function: clone the data attached to this string
593 void wxString::AllocCopy(wxString& dest, int nCopyLen, int nCopyIndex) const
594 {
595 if ( nCopyLen == 0 ) {
596 dest.Init();
597 }
598 else {
599 dest.AllocBuffer(nCopyLen);
600 memcpy(dest.m_pchData, m_pchData + nCopyIndex, nCopyLen*sizeof(char));
601 }
602 }
603
604 // extract string of length nCount starting at nFirst
605 wxString wxString::Mid(size_t nFirst, size_t nCount) const
606 {
607 wxStringData *pData = GetStringData();
608 size_t nLen = pData->nDataLength;
609
610 // default value of nCount is STRING_MAXLEN and means "till the end"
611 if ( nCount == STRING_MAXLEN )
612 {
613 nCount = nLen - nFirst;
614 }
615
616 // out-of-bounds requests return sensible things
617 if ( nFirst + nCount > nLen )
618 {
619 nCount = nLen - nFirst;
620 }
621
622 if ( nFirst > nLen )
623 {
624 // AllocCopy() will return empty string
625 nCount = 0;
626 }
627
628 wxString dest;
629 AllocCopy(dest, nCount, nFirst);
630
631 return dest;
632 }
633
634 // extract nCount last (rightmost) characters
635 wxString wxString::Right(size_t nCount) const
636 {
637 if ( nCount > (size_t)GetStringData()->nDataLength )
638 nCount = GetStringData()->nDataLength;
639
640 wxString dest;
641 AllocCopy(dest, nCount, GetStringData()->nDataLength - nCount);
642 return dest;
643 }
644
645 // get all characters after the last occurence of ch
646 // (returns the whole string if ch not found)
647 wxString wxString::Right(char ch) const
648 {
649 wxString str;
650 int iPos = Find(ch, TRUE);
651 if ( iPos == NOT_FOUND )
652 str = *this;
653 else
654 str = c_str() + iPos + 1;
655
656 return str;
657 }
658
659 // extract nCount first (leftmost) characters
660 wxString wxString::Left(size_t nCount) const
661 {
662 if ( nCount > (size_t)GetStringData()->nDataLength )
663 nCount = GetStringData()->nDataLength;
664
665 wxString dest;
666 AllocCopy(dest, nCount, 0);
667 return dest;
668 }
669
670 // get all characters before the first occurence of ch
671 // (returns the whole string if ch not found)
672 wxString wxString::Left(char ch) const
673 {
674 wxString str;
675 for ( const char *pc = m_pchData; *pc != '\0' && *pc != ch; pc++ )
676 str += *pc;
677
678 return str;
679 }
680
681 /// get all characters before the last occurence of ch
682 /// (returns empty string if ch not found)
683 wxString wxString::Before(char ch) const
684 {
685 wxString str;
686 int iPos = Find(ch, TRUE);
687 if ( iPos != NOT_FOUND && iPos != 0 )
688 str = wxString(c_str(), iPos);
689
690 return str;
691 }
692
693 /// get all characters after the first occurence of ch
694 /// (returns empty string if ch not found)
695 wxString wxString::After(char ch) const
696 {
697 wxString str;
698 int iPos = Find(ch);
699 if ( iPos != NOT_FOUND )
700 str = c_str() + iPos + 1;
701
702 return str;
703 }
704
705 // replace first (or all) occurences of some substring with another one
706 size_t wxString::Replace(const char *szOld, const char *szNew, bool bReplaceAll)
707 {
708 size_t uiCount = 0; // count of replacements made
709
710 size_t uiOldLen = Strlen(szOld);
711
712 wxString strTemp;
713 const char *pCurrent = m_pchData;
714 const char *pSubstr;
715 while ( *pCurrent != '\0' ) {
716 pSubstr = strstr(pCurrent, szOld);
717 if ( pSubstr == NULL ) {
718 // strTemp is unused if no replacements were made, so avoid the copy
719 if ( uiCount == 0 )
720 return 0;
721
722 strTemp += pCurrent; // copy the rest
723 break; // exit the loop
724 }
725 else {
726 // take chars before match
727 strTemp.ConcatSelf(pSubstr - pCurrent, pCurrent);
728 strTemp += szNew;
729 pCurrent = pSubstr + uiOldLen; // restart after match
730
731 uiCount++;
732
733 // stop now?
734 if ( !bReplaceAll ) {
735 strTemp += pCurrent; // copy the rest
736 break; // exit the loop
737 }
738 }
739 }
740
741 // only done if there were replacements, otherwise would have returned above
742 *this = strTemp;
743
744 return uiCount;
745 }
746
747 bool wxString::IsAscii() const
748 {
749 const char *s = (const char*) *this;
750 while(*s){
751 if(!isascii(*s)) return(FALSE);
752 s++;
753 }
754 return(TRUE);
755 }
756
757 bool wxString::IsWord() const
758 {
759 const char *s = (const char*) *this;
760 while(*s){
761 if(!isalpha(*s)) return(FALSE);
762 s++;
763 }
764 return(TRUE);
765 }
766
767 bool wxString::IsNumber() const
768 {
769 const char *s = (const char*) *this;
770 while(*s){
771 if(!isdigit(*s)) return(FALSE);
772 s++;
773 }
774 return(TRUE);
775 }
776
777 wxString wxString::Strip(stripType w) const
778 {
779 wxString s = *this;
780 if ( w & leading ) s.Trim(FALSE);
781 if ( w & trailing ) s.Trim(TRUE);
782 return s;
783 }
784
785 // ---------------------------------------------------------------------------
786 // case conversion
787 // ---------------------------------------------------------------------------
788
789 wxString& wxString::MakeUpper()
790 {
791 CopyBeforeWrite();
792
793 for ( char *p = m_pchData; *p; p++ )
794 *p = (char)toupper(*p);
795
796 return *this;
797 }
798
799 wxString& wxString::MakeLower()
800 {
801 CopyBeforeWrite();
802
803 for ( char *p = m_pchData; *p; p++ )
804 *p = (char)tolower(*p);
805
806 return *this;
807 }
808
809 // ---------------------------------------------------------------------------
810 // trimming and padding
811 // ---------------------------------------------------------------------------
812
813 // trims spaces (in the sense of isspace) from left or right side
814 wxString& wxString::Trim(bool bFromRight)
815 {
816 // first check if we're going to modify the string at all
817 if ( !IsEmpty() &&
818 (
819 (bFromRight && isspace(GetChar(Len() - 1))) ||
820 (!bFromRight && isspace(GetChar(0u)))
821 )
822 )
823 {
824 // ok, there is at least one space to trim
825 CopyBeforeWrite();
826
827 if ( bFromRight )
828 {
829 // find last non-space character
830 char *psz = m_pchData + GetStringData()->nDataLength - 1;
831 while ( isspace(*psz) && (psz >= m_pchData) )
832 psz--;
833
834 // truncate at trailing space start
835 *++psz = '\0';
836 GetStringData()->nDataLength = psz - m_pchData;
837 }
838 else
839 {
840 // find first non-space character
841 const char *psz = m_pchData;
842 while ( isspace(*psz) )
843 psz++;
844
845 // fix up data and length
846 int nDataLength = GetStringData()->nDataLength - (psz - m_pchData);
847 memmove(m_pchData, psz, (nDataLength + 1)*sizeof(char));
848 GetStringData()->nDataLength = nDataLength;
849 }
850 }
851
852 return *this;
853 }
854
855 // adds nCount characters chPad to the string from either side
856 wxString& wxString::Pad(size_t nCount, char chPad, bool bFromRight)
857 {
858 wxString s(chPad, nCount);
859
860 if ( bFromRight )
861 *this += s;
862 else
863 {
864 s += *this;
865 *this = s;
866 }
867
868 return *this;
869 }
870
871 // truncate the string
872 wxString& wxString::Truncate(size_t uiLen)
873 {
874 *(m_pchData + uiLen) = '\0';
875 GetStringData()->nDataLength = uiLen;
876
877 return *this;
878 }
879
880 // ---------------------------------------------------------------------------
881 // finding (return NOT_FOUND if not found and index otherwise)
882 // ---------------------------------------------------------------------------
883
884 // find a character
885 int wxString::Find(char ch, bool bFromEnd) const
886 {
887 const char *psz = bFromEnd ? strrchr(m_pchData, ch) : strchr(m_pchData, ch);
888
889 return (psz == NULL) ? NOT_FOUND : psz - m_pchData;
890 }
891
892 // find a sub-string (like strstr)
893 int wxString::Find(const char *pszSub) const
894 {
895 const char *psz = strstr(m_pchData, pszSub);
896
897 return (psz == NULL) ? NOT_FOUND : psz - m_pchData;
898 }
899
900 // ---------------------------------------------------------------------------
901 // stream-like operators
902 // ---------------------------------------------------------------------------
903 wxString& wxString::operator<<(int i)
904 {
905 wxString res;
906 res.Printf("%d", i);
907
908 return (*this) << res;
909 }
910
911 wxString& wxString::operator<<(float f)
912 {
913 wxString res;
914 res.Printf("%f", f);
915
916 return (*this) << res;
917 }
918
919 wxString& wxString::operator<<(double d)
920 {
921 wxString res;
922 res.Printf("%g", d);
923
924 return (*this) << res;
925 }
926
927 // ---------------------------------------------------------------------------
928 // formatted output
929 // ---------------------------------------------------------------------------
930 int wxString::Printf(const char *pszFormat, ...)
931 {
932 va_list argptr;
933 va_start(argptr, pszFormat);
934
935 int iLen = PrintfV(pszFormat, argptr);
936
937 va_end(argptr);
938
939 return iLen;
940 }
941
942 int wxString::PrintfV(const char* pszFormat, va_list argptr)
943 {
944 // static buffer to avoid dynamic memory allocation each time
945 static char s_szScratch[1024];
946
947 int iLen = wxVsprintf(s_szScratch, WXSIZEOF(s_szScratch), pszFormat, argptr);
948 char *buffer;
949 if ( (size_t)iLen < WXSIZEOF(s_szScratch) ) {
950 buffer = s_szScratch;
951 }
952 else {
953 int size = WXSIZEOF(s_szScratch) * 2;
954 buffer = (char *)malloc(size);
955 while ( buffer != NULL ) {
956 iLen = wxVsprintf(buffer, WXSIZEOF(s_szScratch), pszFormat, argptr);
957 if ( iLen < size ) {
958 // ok, there was enough space
959 break;
960 }
961
962 // still not enough, double it again
963 buffer = (char *)realloc(buffer, size *= 2);
964 }
965
966 if ( !buffer ) {
967 // out of memory
968 return -1;
969 }
970 }
971
972 AllocBeforeWrite(iLen);
973 strcpy(m_pchData, buffer);
974
975 if ( buffer != s_szScratch )
976 free(buffer);
977
978 return iLen;
979 }
980
981 // ----------------------------------------------------------------------------
982 // misc other operations
983 // ----------------------------------------------------------------------------
984 bool wxString::Matches(const char *pszMask) const
985 {
986 // check char by char
987 const char *pszTxt;
988 for ( pszTxt = c_str(); *pszMask != '\0'; pszMask++, pszTxt++ ) {
989 switch ( *pszMask ) {
990 case '?':
991 if ( *pszTxt == '\0' )
992 return FALSE;
993
994 pszTxt++;
995 pszMask++;
996 break;
997
998 case '*':
999 {
1000 // ignore special chars immediately following this one
1001 while ( *pszMask == '*' || *pszMask == '?' )
1002 pszMask++;
1003
1004 // if there is nothing more, match
1005 if ( *pszMask == '\0' )
1006 return TRUE;
1007
1008 // are there any other metacharacters in the mask?
1009 size_t uiLenMask;
1010 const char *pEndMask = strpbrk(pszMask, "*?");
1011
1012 if ( pEndMask != NULL ) {
1013 // we have to match the string between two metachars
1014 uiLenMask = pEndMask - pszMask;
1015 }
1016 else {
1017 // we have to match the remainder of the string
1018 uiLenMask = strlen(pszMask);
1019 }
1020
1021 wxString strToMatch(pszMask, uiLenMask);
1022 const char* pMatch = strstr(pszTxt, strToMatch);
1023 if ( pMatch == NULL )
1024 return FALSE;
1025
1026 // -1 to compensate "++" in the loop
1027 pszTxt = pMatch + uiLenMask - 1;
1028 pszMask += uiLenMask - 1;
1029 }
1030 break;
1031
1032 default:
1033 if ( *pszMask != *pszTxt )
1034 return FALSE;
1035 break;
1036 }
1037 }
1038
1039 // match only if nothing left
1040 return *pszTxt == '\0';
1041 }
1042
1043 // ---------------------------------------------------------------------------
1044 // standard C++ library string functions
1045 // ---------------------------------------------------------------------------
1046 #ifdef STD_STRING_COMPATIBILITY
1047
1048 wxString& wxString::insert(size_t nPos, const wxString& str)
1049 {
1050 wxASSERT( str.GetStringData()->IsValid() );
1051 wxASSERT( nPos <= Len() );
1052
1053 if ( !str.IsEmpty() ) {
1054 wxString strTmp;
1055 char *pc = strTmp.GetWriteBuf(Len() + str.Len());
1056 strncpy(pc, c_str(), nPos);
1057 strcpy(pc + nPos, str);
1058 strcpy(pc + nPos + str.Len(), c_str() + nPos);
1059 strTmp.UngetWriteBuf();
1060 *this = strTmp;
1061 }
1062
1063 return *this;
1064 }
1065
1066 size_t wxString::find(const wxString& str, size_t nStart) const
1067 {
1068 wxASSERT( str.GetStringData()->IsValid() );
1069 wxASSERT( nStart <= Len() );
1070
1071 const char *p = strstr(c_str() + nStart, str);
1072
1073 return p == NULL ? npos : p - c_str();
1074 }
1075
1076 // VC++ 1.5 can't cope with the default argument in the header.
1077 #if ! (defined(_MSC_VER) && !defined(__WIN32__))
1078 size_t wxString::find(const char* sz, size_t nStart, size_t n) const
1079 {
1080 return find(wxString(sz, n == npos ? 0 : n), nStart);
1081 }
1082 #endif
1083
1084 size_t wxString::find(char ch, size_t nStart) const
1085 {
1086 wxASSERT( nStart <= Len() );
1087
1088 const char *p = strchr(c_str() + nStart, ch);
1089
1090 return p == NULL ? npos : p - c_str();
1091 }
1092
1093 size_t wxString::rfind(const wxString& str, size_t nStart) const
1094 {
1095 wxASSERT( str.GetStringData()->IsValid() );
1096 wxASSERT( nStart <= Len() );
1097
1098 // # could be quicker than that
1099 const char *p = c_str() + (nStart == npos ? Len() : nStart);
1100 while ( p >= c_str() + str.Len() ) {
1101 if ( strncmp(p - str.Len(), str, str.Len()) == 0 )
1102 return p - str.Len() - c_str();
1103 p--;
1104 }
1105
1106 return npos;
1107 }
1108
1109 // VC++ 1.5 can't cope with the default argument in the header.
1110 #if ! (defined(_MSC_VER) && !defined(__WIN32__))
1111 size_t wxString::rfind(const char* sz, size_t nStart, size_t n) const
1112 {
1113 return rfind(wxString(sz, n == npos ? 0 : n), nStart);
1114 }
1115
1116 size_t wxString::rfind(char ch, size_t nStart) const
1117 {
1118 wxASSERT( nStart <= Len() );
1119
1120 const char *p = strrchr(c_str() + nStart, ch);
1121
1122 return p == NULL ? npos : p - c_str();
1123 }
1124 #endif
1125
1126 wxString wxString::substr(size_t nStart, size_t nLen) const
1127 {
1128 // npos means 'take all'
1129 if ( nLen == npos )
1130 nLen = 0;
1131
1132 wxASSERT( nStart + nLen <= Len() );
1133
1134 return wxString(c_str() + nStart, nLen == npos ? 0 : nLen);
1135 }
1136
1137 wxString& wxString::erase(size_t nStart, size_t nLen)
1138 {
1139 wxString strTmp(c_str(), nStart);
1140 if ( nLen != npos ) {
1141 wxASSERT( nStart + nLen <= Len() );
1142
1143 strTmp.append(c_str() + nStart + nLen);
1144 }
1145
1146 *this = strTmp;
1147 return *this;
1148 }
1149
1150 wxString& wxString::replace(size_t nStart, size_t nLen, const char *sz)
1151 {
1152 wxASSERT( nStart + nLen <= Strlen(sz) );
1153
1154 wxString strTmp;
1155 if ( nStart != 0 )
1156 strTmp.append(c_str(), nStart);
1157 strTmp += sz;
1158 strTmp.append(c_str() + nStart + nLen);
1159
1160 *this = strTmp;
1161 return *this;
1162 }
1163
1164 wxString& wxString::replace(size_t nStart, size_t nLen, size_t nCount, char ch)
1165 {
1166 return replace(nStart, nLen, wxString(ch, nCount));
1167 }
1168
1169 wxString& wxString::replace(size_t nStart, size_t nLen,
1170 const wxString& str, size_t nStart2, size_t nLen2)
1171 {
1172 return replace(nStart, nLen, str.substr(nStart2, nLen2));
1173 }
1174
1175 wxString& wxString::replace(size_t nStart, size_t nLen,
1176 const char* sz, size_t nCount)
1177 {
1178 return replace(nStart, nLen, wxString(sz, nCount));
1179 }
1180
1181 #endif //std::string compatibility
1182
1183 // ============================================================================
1184 // ArrayString
1185 // ============================================================================
1186
1187 // size increment = max(50% of current size, ARRAY_MAXSIZE_INCREMENT)
1188 #define ARRAY_MAXSIZE_INCREMENT 4096
1189 #ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
1190 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
1191 #endif
1192
1193 #define STRING(p) ((wxString *)(&(p)))
1194
1195 // ctor
1196 wxArrayString::wxArrayString()
1197 {
1198 m_nSize =
1199 m_nCount = 0;
1200 m_pItems = (char **) NULL;
1201 }
1202
1203 // copy ctor
1204 wxArrayString::wxArrayString(const wxArrayString& src)
1205 {
1206 m_nSize =
1207 m_nCount = 0;
1208 m_pItems = (char **) NULL;
1209
1210 *this = src;
1211 }
1212
1213 // assignment operator
1214 wxArrayString& wxArrayString::operator=(const wxArrayString& src)
1215 {
1216 if ( m_nSize > 0 )
1217 Clear();
1218
1219 if ( src.m_nCount > ARRAY_DEFAULT_INITIAL_SIZE )
1220 Alloc(src.m_nCount);
1221
1222 // we can't just copy the pointers here because otherwise we would share
1223 // the strings with another array
1224 for ( size_t n = 0; n < src.m_nCount; n++ )
1225 Add(src[n]);
1226
1227 if ( m_nCount != 0 )
1228 memcpy(m_pItems, src.m_pItems, m_nCount*sizeof(char *));
1229
1230 return *this;
1231 }
1232
1233 // grow the array
1234 void wxArrayString::Grow()
1235 {
1236 // only do it if no more place
1237 if( m_nCount == m_nSize ) {
1238 if( m_nSize == 0 ) {
1239 // was empty, alloc some memory
1240 m_nSize = ARRAY_DEFAULT_INITIAL_SIZE;
1241 m_pItems = new char *[m_nSize];
1242 }
1243 else {
1244 // otherwise when it's called for the first time, nIncrement would be 0
1245 // and the array would never be expanded
1246 wxASSERT( ARRAY_DEFAULT_INITIAL_SIZE != 0 );
1247
1248 // add 50% but not too much
1249 size_t nIncrement = m_nSize < ARRAY_DEFAULT_INITIAL_SIZE
1250 ? ARRAY_DEFAULT_INITIAL_SIZE : m_nSize >> 1;
1251 if ( nIncrement > ARRAY_MAXSIZE_INCREMENT )
1252 nIncrement = ARRAY_MAXSIZE_INCREMENT;
1253 m_nSize += nIncrement;
1254 char **pNew = new char *[m_nSize];
1255
1256 // copy data to new location
1257 memcpy(pNew, m_pItems, m_nCount*sizeof(char *));
1258
1259 // delete old memory (but do not release the strings!)
1260 wxDELETEA(m_pItems);
1261
1262 m_pItems = pNew;
1263 }
1264 }
1265 }
1266
1267 void wxArrayString::Free()
1268 {
1269 for ( size_t n = 0; n < m_nCount; n++ ) {
1270 STRING(m_pItems[n])->GetStringData()->Unlock();
1271 }
1272 }
1273
1274 // deletes all the strings from the list
1275 void wxArrayString::Empty()
1276 {
1277 Free();
1278
1279 m_nCount = 0;
1280 }
1281
1282 // as Empty, but also frees memory
1283 void wxArrayString::Clear()
1284 {
1285 Free();
1286
1287 m_nSize =
1288 m_nCount = 0;
1289
1290 wxDELETEA(m_pItems);
1291 }
1292
1293 // dtor
1294 wxArrayString::~wxArrayString()
1295 {
1296 Free();
1297
1298 wxDELETEA(m_pItems);
1299 }
1300
1301 // pre-allocates memory (frees the previous data!)
1302 void wxArrayString::Alloc(size_t nSize)
1303 {
1304 wxASSERT( nSize > 0 );
1305
1306 // only if old buffer was not big enough
1307 if ( nSize > m_nSize ) {
1308 Free();
1309 wxDELETEA(m_pItems);
1310 m_pItems = new char *[nSize];
1311 m_nSize = nSize;
1312 }
1313
1314 m_nCount = 0;
1315 }
1316
1317 // searches the array for an item (forward or backwards)
1318 int wxArrayString::Index(const char *sz, bool bCase, bool bFromEnd) const
1319 {
1320 if ( bFromEnd ) {
1321 if ( m_nCount > 0 ) {
1322 size_t ui = m_nCount;
1323 do {
1324 if ( STRING(m_pItems[--ui])->IsSameAs(sz, bCase) )
1325 return ui;
1326 }
1327 while ( ui != 0 );
1328 }
1329 }
1330 else {
1331 for( size_t ui = 0; ui < m_nCount; ui++ ) {
1332 if( STRING(m_pItems[ui])->IsSameAs(sz, bCase) )
1333 return ui;
1334 }
1335 }
1336
1337 return NOT_FOUND;
1338 }
1339
1340 // add item at the end
1341 void wxArrayString::Add(const wxString& str)
1342 {
1343 wxASSERT( str.GetStringData()->IsValid() );
1344
1345 Grow();
1346
1347 // the string data must not be deleted!
1348 str.GetStringData()->Lock();
1349 m_pItems[m_nCount++] = (char *)str.c_str();
1350 }
1351
1352 // add item at the given position
1353 void wxArrayString::Insert(const wxString& str, size_t nIndex)
1354 {
1355 wxASSERT( str.GetStringData()->IsValid() );
1356
1357 wxCHECK_RET( nIndex <= m_nCount, ("bad index in wxArrayString::Insert") );
1358
1359 Grow();
1360
1361 memmove(&m_pItems[nIndex + 1], &m_pItems[nIndex],
1362 (m_nCount - nIndex)*sizeof(char *));
1363
1364 str.GetStringData()->Lock();
1365 m_pItems[nIndex] = (char *)str.c_str();
1366
1367 m_nCount++;
1368 }
1369
1370 // removes item from array (by index)
1371 void wxArrayString::Remove(size_t nIndex)
1372 {
1373 wxCHECK_RET( nIndex <= m_nCount, _("bad index in wxArrayString::Remove") );
1374
1375 // release our lock
1376 Item(nIndex).GetStringData()->Unlock();
1377
1378 memmove(&m_pItems[nIndex], &m_pItems[nIndex + 1],
1379 (m_nCount - nIndex - 1)*sizeof(char *));
1380 m_nCount--;
1381 }
1382
1383 // removes item from array (by value)
1384 void wxArrayString::Remove(const char *sz)
1385 {
1386 int iIndex = Index(sz);
1387
1388 wxCHECK_RET( iIndex != NOT_FOUND,
1389 _("removing inexistent element in wxArrayString::Remove") );
1390
1391 Remove(iIndex);
1392 }
1393
1394 // sort array elements using passed comparaison function
1395
1396 void wxArrayString::Sort(bool WXUNUSED(bCase), bool WXUNUSED(bReverse) )
1397 {
1398 //@@@@ TO DO
1399 //qsort(m_pItems, m_nCount, sizeof(char *), fCmp);
1400 }