]> git.saurik.com Git - wxWidgets.git/blame - src/common/string.cpp
added write_append mode to wxFile, implemented eof() for Unix
[wxWidgets.git] / src / common / string.cpp
CommitLineData
c801d85f
KB
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#endif
38
39#include <ctype.h>
40#include <string.h>
41#include <stdlib.h>
42
43#ifdef WXSTRING_IS_WXOBJECT
44 IMPLEMENT_DYNAMIC_CLASS(wxString, wxObject)
45#endif //WXSTRING_IS_WXOBJECT
46
47// ---------------------------------------------------------------------------
48// static class variables definition
49// ---------------------------------------------------------------------------
50
51#ifdef STD_STRING_COMPATIBILITY
52 const size_t wxString::npos = STRING_MAXLEN;
53#endif
54
55// ===========================================================================
56// static class data, special inlines
57// ===========================================================================
58
59// for an empty string, GetStringData() will return this address
60static int g_strEmpty[] = { -1, // ref count (locked)
61 0, // current length
62 0, // allocated memory
63 0 }; // string data
64// empty string shares memory with g_strEmpty
65static wxStringData *g_strNul = (wxStringData*)&g_strEmpty;
66// empty C style string: points to 'string data' byte of g_strEmpty
67extern const char *g_szNul = (const char *)(&g_strEmpty[3]);
68
69// ===========================================================================
70// global functions
71// ===========================================================================
72
73#ifdef STD_STRING_COMPATIBILITY
74
75// MS Visual C++ version 5.0 provides the new STL headers as well as the old
76// iostream ones.
77//
78// ATTN: you can _not_ use both of these in the same program!
79#if 0 // def _MSC_VER
80 #include <iostream>
81 #define NAMESPACE std::
82#else
83 #include <iostream.h>
84 #define NAMESPACE
85#endif //Visual C++
86
87NAMESPACE istream& operator>>(NAMESPACE istream& is, wxString& WXUNUSED(str))
88{
89#if 0
90 int w = is.width(0);
91 if ( is.ipfx(0) ) {
92 NAMESPACE streambuf *sb = is.rdbuf();
93 str.erase();
94 while ( true ) {
95 int ch = sb->sbumpc ();
96 if ( ch == EOF ) {
97 is.setstate(NAMESPACE ios::eofbit);
98 break;
99 }
100 else if ( isspace(ch) ) {
101 sb->sungetc();
102 break;
103 }
104
105 str += ch;
106 if ( --w == 1 )
107 break;
108 }
109 }
110
111 is.isfx();
112 if ( str.length() == 0 )
113 is.setstate(NAMESPACE ios::failbit);
114#endif
115 return is;
116}
117
118#endif //std::string compatibility
119
120// ===========================================================================
121// wxString class core
122// ===========================================================================
123
124// ---------------------------------------------------------------------------
125// construction
126// ---------------------------------------------------------------------------
127
128// construct an empty string
129wxString::wxString()
130{
131 Init();
132}
133
134// copy constructor
135wxString::wxString(const wxString& stringSrc)
136{
137 wxASSERT( stringSrc.GetStringData()->IsValid() );
138
139 if ( stringSrc.IsEmpty() ) {
140 // nothing to do for an empty string
141 Init();
142 }
143 else {
144 m_pchData = stringSrc.m_pchData; // share same data
145 GetStringData()->Lock(); // => one more copy
146 }
147}
148
149// constructs string of <nLength> copies of character <ch>
150wxString::wxString(char ch, size_t nLength)
151{
152 Init();
153
154 if ( nLength > 0 ) {
155 AllocBuffer(nLength);
156
157 wxASSERT( sizeof(char) == 1 ); // can't use memset if not
158
159 memset(m_pchData, ch, nLength);
160 }
161}
162
163// takes nLength elements of psz starting at nPos
164void wxString::InitWith(const char *psz, size_t nPos, size_t nLength)
165{
166 Init();
167
168 wxASSERT( nPos <= Strlen(psz) );
169
170 if ( nLength == STRING_MAXLEN )
171 nLength = Strlen(psz + nPos);
172
173 if ( nLength > 0 ) {
174 // trailing '\0' is written in AllocBuffer()
175 AllocBuffer(nLength);
176 memcpy(m_pchData, psz + nPos, nLength*sizeof(char));
177 }
178}
179
180// take first nLength characters of C string psz
181// (default value of STRING_MAXLEN means take all the string)
182wxString::wxString(const char *psz, size_t nLength)
183{
184 InitWith(psz, 0, nLength);
185}
186
187// the same as previous constructor, but for compilers using unsigned char
188wxString::wxString(const unsigned char* psz, size_t nLength)
189{
190 InitWith((const char *)psz, 0, nLength);
191}
192
193#ifdef STD_STRING_COMPATIBILITY
194
195// ctor from a substring
196wxString::wxString(const wxString& s, size_t nPos, size_t nLen)
197{
198 InitWith(s.c_str(), nPos, nLen == npos ? 0 : nLen);
199}
200
201// poor man's iterators are "void *" pointers
202wxString::wxString(const void *pStart, const void *pEnd)
203{
204 InitWith((const char *)pStart, 0,
205 (const char *)pEnd - (const char *)pStart);
206}
207
208#endif //std::string compatibility
209
210// from wide string
211wxString::wxString(const wchar_t *pwz)
212{
213 // first get necessary size
214 size_t nLen = wcstombs(NULL, pwz, 0);
215
216 // empty?
217 if ( nLen != 0 ) {
218 AllocBuffer(nLen);
219 wcstombs(m_pchData, pwz, nLen);
220 }
221 else {
222 Init();
223 }
224}
225
226// ---------------------------------------------------------------------------
227// memory allocation
228// ---------------------------------------------------------------------------
229
230// allocates memory needed to store a C string of length nLen
231void wxString::AllocBuffer(size_t nLen)
232{
233 wxASSERT( nLen > 0 ); //
234 wxASSERT( nLen <= INT_MAX-1 ); // max size (enough room for 1 extra)
235
236 // allocate memory:
237 // 1) one extra character for '\0' termination
238 // 2) sizeof(wxStringData) for housekeeping info
239 wxStringData* pData = (wxStringData*)new char[sizeof(wxStringData) +
240 (nLen + 1)*sizeof(char)];
241 pData->nRefs = 1;
242 pData->data()[nLen] = '\0';
243 pData->nDataLength = nLen;
244 pData->nAllocLength = nLen;
245 m_pchData = pData->data(); // data starts after wxStringData
246}
247
248// releases the string memory and reinits it
249void wxString::Reinit()
250{
251 GetStringData()->Unlock();
252 Init();
253}
254
255// wrapper around wxString::Reinit
256void wxString::Empty()
257{
258 if ( GetStringData()->nDataLength != 0 )
259 Reinit();
260
261 wxASSERT( GetStringData()->nDataLength == 0 );
262 wxASSERT( GetStringData()->nAllocLength == 0 );
263}
264
265// must be called before changing this string
266void wxString::CopyBeforeWrite()
267{
268 wxStringData* pData = GetStringData();
269
270 if ( pData->IsShared() ) {
271 pData->Unlock(); // memory not freed because shared
272 AllocBuffer(pData->nDataLength);
273 memcpy(m_pchData, pData->data(), (pData->nDataLength + 1)*sizeof(char));
274 }
275
276 wxASSERT( !pData->IsShared() ); // we must be the only owner
277}
278
279// must be called before replacing contents of this string
280void wxString::AllocBeforeWrite(size_t nLen)
281{
282 wxASSERT( nLen != 0 ); // doesn't make any sense
283
284 // must not share string and must have enough space
285 register wxStringData* pData = GetStringData();
286 if ( pData->IsShared() || (nLen > pData->nAllocLength) ) {
287 // can't work with old buffer, get new one
288 pData->Unlock();
289 AllocBuffer(nLen);
290 }
291
292 wxASSERT( !pData->IsShared() ); // we must be the only owner
293}
294
295// get the pointer to writable buffer of (at least) nLen bytes
296char *wxString::GetWriteBuf(size_t nLen)
297{
298 AllocBeforeWrite(nLen);
299 return m_pchData;
300}
301
302// dtor frees memory if no other strings use it
303wxString::~wxString()
304{
305 GetStringData()->Unlock();
306}
307
308// ---------------------------------------------------------------------------
309// data access
310// ---------------------------------------------------------------------------
311
312// all functions are inline in string.h
313
314// ---------------------------------------------------------------------------
315// assignment operators
316// ---------------------------------------------------------------------------
317
318// helper function: does real copy
319void wxString::AssignCopy(size_t nSrcLen, const char *pszSrcData)
320{
321 if ( nSrcLen == 0 ) {
322 Reinit();
323 }
324 else {
325 AllocBeforeWrite(nSrcLen);
326 memcpy(m_pchData, pszSrcData, nSrcLen*sizeof(char));
327 GetStringData()->nDataLength = nSrcLen;
328 m_pchData[nSrcLen] = '\0';
329 }
330}
331
332// assigns one string to another
333wxString& wxString::operator=(const wxString& stringSrc)
334{
335 // don't copy string over itself
336 if ( m_pchData != stringSrc.m_pchData ) {
337 if ( stringSrc.GetStringData()->IsEmpty() ) {
338 Reinit();
339 }
340 else {
341 // adjust references
342 GetStringData()->Unlock();
343 m_pchData = stringSrc.m_pchData;
344 GetStringData()->Lock();
345 }
346 }
347
348 return *this;
349}
350
351// assigns a single character
352wxString& wxString::operator=(char ch)
353{
354 AssignCopy(1, &ch);
355 return *this;
356}
357
358// assigns C string
359wxString& wxString::operator=(const char *psz)
360{
361 AssignCopy(Strlen(psz), psz);
362 return *this;
363}
364
365// same as 'signed char' variant
366wxString& wxString::operator=(const unsigned char* psz)
367{
368 *this = (const char *)psz;
369 return *this;
370}
371
372wxString& wxString::operator=(const wchar_t *pwz)
373{
374 wxString str(pwz);
375 *this = str;
376 return *this;
377}
378
379// ---------------------------------------------------------------------------
380// string concatenation
381// ---------------------------------------------------------------------------
382
383// concatenate two sources
384// NB: assume that 'this' is a new wxString object
385void wxString::ConcatCopy(int nSrc1Len, const char *pszSrc1Data,
386 int nSrc2Len, const char *pszSrc2Data)
387{
388 int nNewLen = nSrc1Len + nSrc2Len;
389 if ( nNewLen != 0 )
390 {
391 AllocBuffer(nNewLen);
392 memcpy(m_pchData, pszSrc1Data, nSrc1Len*sizeof(char));
393 memcpy(m_pchData + nSrc1Len, pszSrc2Data, nSrc2Len*sizeof(char));
394 }
395}
396
397// add something to this string
398void wxString::ConcatSelf(int nSrcLen, const char *pszSrcData)
399{
400 // concatenating an empty string is a NOP
401 if ( nSrcLen != 0 ) {
402 register wxStringData *pData = GetStringData();
403
404 // alloc new buffer if current is too small
405 if ( pData->IsShared() ||
406 pData->nDataLength + nSrcLen > pData->nAllocLength ) {
407 // we have to grow the buffer, use the ConcatCopy routine
408 // (which will allocate memory)
409 wxStringData* pOldData = GetStringData();
410 ConcatCopy(pOldData->nDataLength, m_pchData, nSrcLen, pszSrcData);
411 pOldData->Unlock();
412 }
413 else {
414 // fast concatenation when buffer big enough
415 memcpy(m_pchData + pData->nDataLength, pszSrcData, nSrcLen*sizeof(char));
416 pData->nDataLength += nSrcLen;
417
418 // should be enough space
419 wxASSERT( pData->nDataLength <= pData->nAllocLength );
420
421 m_pchData[pData->nDataLength] = '\0'; // put terminating '\0'
422 }
423 }
424}
425
426/*
427 * string may be concatenated with other string, C string or a character
428 */
429
430void wxString::operator+=(const wxString& string)
431{
432 ConcatSelf(string.Len(), string);
433}
434
435void wxString::operator+=(const char *psz)
436{
437 ConcatSelf(Strlen(psz), psz);
438}
439
440void wxString::operator+=(char ch)
441{
442 ConcatSelf(1, &ch);
443}
444
445/*
446 * Same as above but return the result
447 */
448
449wxString& wxString::operator<<(const wxString& string)
450{
451 ConcatSelf(string.Len(), string);
452 return *this;
453}
454
455wxString& wxString::operator<<(const char *psz)
456{
457 ConcatSelf(Strlen(psz), psz);
458 return *this;
459}
460
461wxString& wxString::operator<<(char ch)
462{
463 ConcatSelf(1, &ch);
464 return *this;
465}
466
467/*
468 * concatenation functions come in 5 flavours:
469 * string + string
470 * char + string and string + char
471 * C str + string and string + C str
472 */
473
474wxString operator+(const wxString& string1, const wxString& string2)
475{
476 wxString s;
477 s.ConcatCopy(string1.GetStringData()->nDataLength, string1.m_pchData,
478 string2.GetStringData()->nDataLength, string2.m_pchData);
479 return s;
480}
481
482wxString operator+(const wxString& string1, char ch)
483{
484 wxString s;
485 s.ConcatCopy(string1.GetStringData()->nDataLength, string1.m_pchData, 1, &ch);
486 return s;
487}
488
489wxString operator+(char ch, const wxString& string)
490{
491 wxString s;
492 s.ConcatCopy(1, &ch, string.GetStringData()->nDataLength, string.m_pchData);
493 return s;
494}
495
496wxString operator+(const wxString& string, const char *psz)
497{
498 wxString s;
499 s.ConcatCopy(string.GetStringData()->nDataLength, string.m_pchData,
500 Strlen(psz), psz);
501 return s;
502}
503
504wxString operator+(const char *psz, const wxString& string)
505{
506 wxString s;
507 s.ConcatCopy(Strlen(psz), psz,
508 string.GetStringData()->nDataLength, string.m_pchData);
509 return s;
510}
511
512// ===========================================================================
513// other common string functions
514// ===========================================================================
515
516// ---------------------------------------------------------------------------
517// simple sub-string extraction
518// ---------------------------------------------------------------------------
519
520// helper function: clone the data attached to this string
521void wxString::AllocCopy(wxString& dest, int nCopyLen, int nCopyIndex) const
522{
523 if ( nCopyLen == 0 )
524 {
525 dest.Init();
526 }
527 else
528 {
529 dest.AllocBuffer(nCopyLen);
530 memcpy(dest.m_pchData, m_pchData + nCopyIndex, nCopyLen*sizeof(char));
531 }
532}
533
534// extract string of length nCount starting at nFirst
535// default value of nCount is 0 and means "till the end"
536wxString wxString::Mid(size_t nFirst, size_t nCount) const
537{
538 // out-of-bounds requests return sensible things
539 if ( nCount == 0 )
540 nCount = GetStringData()->nDataLength - nFirst;
541
542 if ( nFirst + nCount > (size_t)GetStringData()->nDataLength )
543 nCount = GetStringData()->nDataLength - nFirst;
544 if ( nFirst > (size_t)GetStringData()->nDataLength )
545 nCount = 0;
546
547 wxString dest;
548 AllocCopy(dest, nCount, nFirst);
549 return dest;
550}
551
552// extract nCount last (rightmost) characters
553wxString wxString::Right(size_t nCount) const
554{
555 if ( nCount > (size_t)GetStringData()->nDataLength )
556 nCount = GetStringData()->nDataLength;
557
558 wxString dest;
559 AllocCopy(dest, nCount, GetStringData()->nDataLength - nCount);
560 return dest;
561}
562
563// get all characters after the last occurence of ch
564// (returns the whole string if ch not found)
565wxString wxString::Right(char ch) const
566{
567 wxString str;
568 int iPos = Find(ch, TRUE);
569 if ( iPos == NOT_FOUND )
570 str = *this;
571 else
572 str = c_str() + iPos;
573
574 return str;
575}
576
577// extract nCount first (leftmost) characters
578wxString wxString::Left(size_t nCount) const
579{
580 if ( nCount > (size_t)GetStringData()->nDataLength )
581 nCount = GetStringData()->nDataLength;
582
583 wxString dest;
584 AllocCopy(dest, nCount, 0);
585 return dest;
586}
587
588// get all characters before the first occurence of ch
589// (returns the whole string if ch not found)
590wxString wxString::Left(char ch) const
591{
592 wxString str;
593 for ( const char *pc = m_pchData; *pc != '\0' && *pc != ch; pc++ )
594 str += *pc;
595
596 return str;
597}
598
599/// get all characters before the last occurence of ch
600/// (returns empty string if ch not found)
601wxString wxString::Before(char ch) const
602{
603 wxString str;
604 int iPos = Find(ch, TRUE);
605 if ( iPos != NOT_FOUND && iPos != 0 )
606 str = wxString(c_str(), iPos - 1);
607
608 return str;
609}
610
611/// get all characters after the first occurence of ch
612/// (returns empty string if ch not found)
613wxString wxString::After(char ch) const
614{
615 wxString str;
616 int iPos = Find(ch);
617 if ( iPos != NOT_FOUND )
618 str = c_str() + iPos + 1;
619
620 return str;
621}
622
623// replace first (or all) occurences of some substring with another one
624uint wxString::Replace(const char *szOld, const char *szNew, bool bReplaceAll)
625{
626 uint uiCount = 0; // count of replacements made
627
628 uint uiOldLen = Strlen(szOld);
629
630 wxString strTemp;
631 const char *pCurrent = m_pchData;
632 const char *pSubstr;
633 while ( *pCurrent != '\0' ) {
634 pSubstr = strstr(pCurrent, szOld);
635 if ( pSubstr == NULL ) {
636 // strTemp is unused if no replacements were made, so avoid the copy
637 if ( uiCount == 0 )
638 return 0;
639
640 strTemp += pCurrent; // copy the rest
641 break; // exit the loop
642 }
643 else {
644 // take chars before match
645 strTemp.ConcatSelf(pSubstr - pCurrent, pCurrent);
646 strTemp += szNew;
647 pCurrent = pSubstr + uiOldLen; // restart after match
648
649 uiCount++;
650
651 // stop now?
652 if ( !bReplaceAll ) {
653 strTemp += pCurrent; // copy the rest
654 break; // exit the loop
655 }
656 }
657 }
658
659 // only done if there were replacements, otherwise would have returned above
660 *this = strTemp;
661
662 return uiCount;
663}
664
665bool wxString::IsAscii() const
666{
667 const char *s = (const char*) *this;
668 while(*s){
669 if(!isascii(*s)) return(FALSE);
670 s++;
671 }
672 return(TRUE);
673}
674
675bool wxString::IsWord() const
676{
677 const char *s = (const char*) *this;
678 while(*s){
679 if(!isalpha(*s)) return(FALSE);
680 s++;
681 }
682 return(TRUE);
683}
684
685bool wxString::IsNumber() const
686{
687 const char *s = (const char*) *this;
688 while(*s){
689 if(!isdigit(*s)) return(FALSE);
690 s++;
691 }
692 return(TRUE);
693}
694
695// kludge: we don't have declaraton of wxStringData here, so we add offsets
696// manually to get to the "length" field of wxStringData structure
697bool wxString::IsEmpty() const { return Len() == 0; }
698
699wxString wxString::Strip(stripType w) const
700{
701 wxString s = *this;
702 if ( w & leading ) s.Trim(FALSE);
703 if ( w & trailing ) s.Trim(TRUE);
704 return s;
705}
706
707/// case-insensitive strcmp() (platform independent)
708int Stricmp(const char *psz1, const char *psz2)
709{
710#if defined(_MSC_VER)
711 return _stricmp(psz1, psz2);
712#elif defined(__BORLANDC__)
713 return stricmp(psz1, psz2);
714#elif defined(__UNIX__) || defined(__GNUWIN32__)
715 return strcasecmp(psz1, psz2);
716#else
717 // almost all compilers/libraries provide this function (unfortunately under
718 // different names), that's why we don't implement our own which will surely
719 // be more efficient than this code (uncomment to use):
720 /*
721 register char c1, c2;
722 do {
723 c1 = tolower(*psz1++);
724 c2 = tolower(*psz2++);
725 } while ( c1 && (c1 == c2) );
726
727 return c1 - c2;
728 */
729
730 #error "Please define string case-insensitive compare for your OS/compiler"
731#endif // OS/compiler
732}
733
734// ---------------------------------------------------------------------------
735// case conversion
736// ---------------------------------------------------------------------------
737
738wxString& wxString::MakeUpper()
739{
740 CopyBeforeWrite();
741
742 for ( char *p = m_pchData; *p; p++ )
743 *p = (char)toupper(*p);
744
745 return *this;
746}
747
748wxString& wxString::MakeLower()
749{
750 CopyBeforeWrite();
751
752 for ( char *p = m_pchData; *p; p++ )
753 *p = (char)tolower(*p);
754
755 return *this;
756}
757
758// ---------------------------------------------------------------------------
759// trimming and padding
760// ---------------------------------------------------------------------------
761
762// trims spaces (in the sense of isspace) from left or right side
763wxString& wxString::Trim(bool bFromRight)
764{
765 CopyBeforeWrite();
766
767 if ( bFromRight )
768 {
769 // find last non-space character
770 char *psz = m_pchData + GetStringData()->nDataLength - 1;
771 while ( isspace(*psz) && (psz >= m_pchData) )
772 psz--;
773
774 // truncate at trailing space start
775 *++psz = '\0';
776 GetStringData()->nDataLength = psz - m_pchData;
777 }
778 else
779 {
780 // find first non-space character
781 const char *psz = m_pchData;
782 while ( isspace(*psz) )
783 psz++;
784
785 // fix up data and length
786 int nDataLength = GetStringData()->nDataLength - (psz - m_pchData);
787 memmove(m_pchData, psz, (nDataLength + 1)*sizeof(char));
788 GetStringData()->nDataLength = nDataLength;
789 }
790
791 return *this;
792}
793
794// adds nCount characters chPad to the string from either side
795wxString& wxString::Pad(size_t nCount, char chPad, bool bFromRight)
796{
797 wxString s(chPad, nCount);
798
799 if ( bFromRight )
800 *this += s;
801 else
802 {
803 s += *this;
804 *this = s;
805 }
806
807 return *this;
808}
809
810// truncate the string
811wxString& wxString::Truncate(size_t uiLen)
812{
813 *(m_pchData + uiLen) = '\0';
814 GetStringData()->nDataLength = uiLen;
815
816 return *this;
817}
818
819// ---------------------------------------------------------------------------
820// finding (return NOT_FOUND if not found and index otherwise)
821// ---------------------------------------------------------------------------
822
823// find a character
824int wxString::Find(char ch, bool bFromEnd) const
825{
826 const char *psz = bFromEnd ? strrchr(m_pchData, ch) : strchr(m_pchData, ch);
827
828 return (psz == NULL) ? NOT_FOUND : psz - m_pchData;
829}
830
831// find a sub-string (like strstr)
832int wxString::Find(const char *pszSub) const
833{
834 const char *psz = strstr(m_pchData, pszSub);
835
836 return (psz == NULL) ? NOT_FOUND : psz - m_pchData;
837}
838
839// ---------------------------------------------------------------------------
840// formatted output
841// ---------------------------------------------------------------------------
842int wxString::Printf(const char *pszFormat, ...)
843{
844 va_list argptr;
845 va_start(argptr, pszFormat);
846
847 int iLen = PrintfV(pszFormat, argptr);
848
849 va_end(argptr);
850
851 return iLen;
852}
853
854int wxString::PrintfV(const char* pszFormat, va_list argptr)
855{
856 static char s_szScratch[1024];
857
858 int iLen = vsprintf(s_szScratch, pszFormat, argptr);
859 AllocBeforeWrite(iLen);
860 strcpy(m_pchData, s_szScratch);
861
862 return iLen;
863}
864
865// ---------------------------------------------------------------------------
866// standard C++ library string functions
867// ---------------------------------------------------------------------------
868#ifdef STD_STRING_COMPATIBILITY
869
870wxString& wxString::insert(size_t nPos, const wxString& str)
871{
872 wxASSERT( nPos <= Len() );
873
874 wxString strTmp;
875 char *pc = strTmp.GetWriteBuf(Len() + str.Len() + 1);
876 strncpy(pc, c_str(), nPos);
877 strcpy(pc + nPos, str);
878 strcpy(pc + nPos + str.Len(), c_str() + nPos);
879 *this = strTmp;
880
881 return *this;
882}
883
884size_t wxString::find(const wxString& str, size_t nStart) const
885{
886 wxASSERT( nStart <= Len() );
887
888 const char *p = strstr(c_str() + nStart, str);
889
890 return p == NULL ? npos : p - c_str();
891}
892
893size_t wxString::find(const char* sz, size_t nStart, size_t n) const
894{
895 return find(wxString(sz, n == npos ? 0 : n), nStart);
896}
897
898size_t wxString::find(char ch, size_t nStart) const
899{
900 wxASSERT( nStart <= Len() );
901
902 const char *p = strchr(c_str() + nStart, ch);
903
904 return p == NULL ? npos : p - c_str();
905}
906
907size_t wxString::rfind(const wxString& str, size_t nStart) const
908{
909 wxASSERT( nStart <= Len() );
910
911 // # could be quicker than that
912 const char *p = c_str() + (nStart == npos ? Len() : nStart);
913 while ( p >= c_str() + str.Len() ) {
914 if ( strncmp(p - str.Len(), str, str.Len()) == 0 )
915 return p - str.Len() - c_str();
916 p--;
917 }
918
919 return npos;
920}
921
922size_t wxString::rfind(const char* sz, size_t nStart, size_t n) const
923{
924 return rfind(wxString(sz, n == npos ? 0 : n), nStart);
925}
926
927size_t wxString::rfind(char ch, size_t nStart) const
928{
929 wxASSERT( nStart <= Len() );
930
931 const char *p = strrchr(c_str() + nStart, ch);
932
933 return p == NULL ? npos : p - c_str();
934}
935
936wxString wxString::substr(size_t nStart, size_t nLen) const
937{
938 // npos means 'take all'
939 if ( nLen == npos )
940 nLen = 0;
941
942 wxASSERT( nStart + nLen <= Len() );
943
944 return wxString(c_str() + nStart, nLen == npos ? 0 : nLen);
945}
946
947wxString& wxString::erase(size_t nStart, size_t nLen)
948{
949 wxString strTmp(c_str(), nStart);
950 if ( nLen != npos ) {
951 wxASSERT( nStart + nLen <= Len() );
952
953 strTmp.append(c_str() + nStart + nLen);
954 }
955
956 *this = strTmp;
957 return *this;
958}
959
960wxString& wxString::replace(size_t nStart, size_t nLen, const char *sz)
961{
962 wxASSERT( nStart + nLen <= Strlen(sz) );
963
964 wxString strTmp;
965 if ( nStart != 0 )
966 strTmp.append(c_str(), nStart);
967 strTmp += sz;
968 strTmp.append(c_str() + nStart + nLen);
969
970 *this = strTmp;
971 return *this;
972}
973
974wxString& wxString::replace(size_t nStart, size_t nLen, size_t nCount, char ch)
975{
976 return replace(nStart, nLen, wxString(ch, nCount));
977}
978
979wxString& wxString::replace(size_t nStart, size_t nLen,
980 const wxString& str, size_t nStart2, size_t nLen2)
981{
982 return replace(nStart, nLen, str.substr(nStart2, nLen2));
983}
984
985wxString& wxString::replace(size_t nStart, size_t nLen,
986 const char* sz, size_t nCount)
987{
988 return replace(nStart, nLen, wxString(sz, nCount));
989}
990
991#endif //std::string compatibility
992
993// ============================================================================
994// ArrayString
995// ============================================================================
996
997// size increment = max(50% of current size, ARRAY_MAXSIZE_INCREMENT)
998#define ARRAY_MAXSIZE_INCREMENT 4096
999#ifndef ARRAY_DEFAULT_INITIAL_SIZE // also defined in dynarray.h
1000 #define ARRAY_DEFAULT_INITIAL_SIZE (16)
1001#endif
1002
1003#define STRING(p) ((wxString *)(&(p)))
1004
1005// ctor
1006wxArrayString::wxArrayString()
1007{
1008 m_nSize =
1009 m_nCount = 0;
1010 m_pItems = NULL;
1011}
1012
1013// copy ctor
1014wxArrayString::wxArrayString(const wxArrayString& src)
1015{
1016 m_nSize = src.m_nSize;
1017 m_nCount = src.m_nCount;
1018
1019 if ( m_nSize != 0 )
1020 m_pItems = new char *[m_nSize];
1021 else
1022 m_pItems = NULL;
1023
1024 if ( m_nCount != 0 )
1025 memcpy(m_pItems, src.m_pItems, m_nCount*sizeof(char *));
1026}
1027
1028// copy operator
1029wxArrayString& wxArrayString::operator=(const wxArrayString& src)
1030{
1031 DELETEA(m_pItems);
1032
1033 m_nSize = src.m_nSize;
1034 m_nCount = src.m_nCount;
1035
1036 if ( m_nSize != 0 )
1037 m_pItems = new char *[m_nSize];
1038 else
1039 m_pItems = NULL;
1040
1041 if ( m_nCount != 0 )
1042 memcpy(m_pItems, src.m_pItems, m_nCount*sizeof(char *));
1043
1044 return *this;
1045}
1046
1047// grow the array
1048void wxArrayString::Grow()
1049{
1050 // only do it if no more place
1051 if( m_nCount == m_nSize ) {
1052 if( m_nSize == 0 ) {
1053 // was empty, alloc some memory
1054 m_nSize = ARRAY_DEFAULT_INITIAL_SIZE;
1055 m_pItems = new char *[m_nSize];
1056 }
1057 else {
1058 // add 50% but not too much
1059 size_t nIncrement = m_nSize >> 1;
1060 if ( nIncrement > ARRAY_MAXSIZE_INCREMENT )
1061 nIncrement = ARRAY_MAXSIZE_INCREMENT;
1062 m_nSize += nIncrement;
1063 char **pNew = new char *[m_nSize];
1064
1065 // copy data to new location
1066 memcpy(pNew, m_pItems, m_nCount*sizeof(char *));
1067
1068 // delete old memory (but do not release the strings!)
1069 DELETEA(m_pItems);
1070
1071 m_pItems = pNew;
1072 }
1073 }
1074}
1075
1076void wxArrayString::Free()
1077{
1078 for ( size_t n = 0; n < m_nCount; n++ ) {
1079 STRING(m_pItems[n])->GetStringData()->Unlock();
1080 }
1081}
1082
1083// deletes all the strings from the list
1084void wxArrayString::Empty()
1085{
1086 Free();
1087
1088 m_nCount = 0;
1089}
1090
1091// as Empty, but also frees memory
1092void wxArrayString::Clear()
1093{
1094 Free();
1095
1096 m_nSize =
1097 m_nCount = 0;
1098
1099 DELETEA(m_pItems);
1100 m_pItems = NULL;
1101}
1102
1103// dtor
1104wxArrayString::~wxArrayString()
1105{
1106 Free();
1107
1108 DELETEA(m_pItems);
1109}
1110
1111// pre-allocates memory (frees the previous data!)
1112void wxArrayString::Alloc(size_t nSize)
1113{
1114 wxASSERT( nSize > 0 );
1115
1116 // only if old buffer was not big enough
1117 if ( nSize > m_nSize ) {
1118 Free();
1119 DELETEA(m_pItems);
1120 m_pItems = new char *[nSize];
1121 m_nSize = nSize;
1122 }
1123
1124 m_nCount = 0;
1125}
1126
1127// searches the array for an item (forward or backwards)
1128
1129// Robert Roebling (changed to bool from Bool)
1130
1131int wxArrayString::Index(const char *sz, bool bCase, bool bFromEnd) const
1132{
1133 if ( bFromEnd ) {
1134 if ( m_nCount > 0 ) {
1135 uint ui = m_nCount;
1136 do {
1137 if ( STRING(m_pItems[--ui])->IsSameAs(sz, bCase) )
1138 return ui;
1139 }
1140 while ( ui != 0 );
1141 }
1142 }
1143 else {
1144 for( uint ui = 0; ui < m_nCount; ui++ ) {
1145 if( STRING(m_pItems[ui])->IsSameAs(sz, bCase) )
1146 return ui;
1147 }
1148 }
1149
1150 return NOT_FOUND;
1151}
1152
1153// add item at the end
1154void wxArrayString::Add(const wxString& src)
1155{
1156 Grow();
1157
1158 // the string data must not be deleted!
1159 src.GetStringData()->Lock();
1160 m_pItems[m_nCount++] = (char *)src.c_str();
1161}
1162
1163// add item at the given position
1164void wxArrayString::Insert(const wxString& src, size_t nIndex)
1165{
1166 wxCHECK( nIndex <= m_nCount );
1167
1168 Grow();
1169
1170 memmove(&m_pItems[nIndex + 1], &m_pItems[nIndex],
1171 (m_nCount - nIndex)*sizeof(char *));
1172
1173 src.GetStringData()->Lock();
1174 m_pItems[nIndex] = (char *)src.c_str();
1175
1176 m_nCount++;
1177}
1178
1179// removes item from array (by index)
1180void wxArrayString::Remove(size_t nIndex)
1181{
1182 wxCHECK( nIndex <= m_nCount );
1183
1184 // release our lock
1185 Item(nIndex).GetStringData()->Unlock();
1186
1187 memmove(&m_pItems[nIndex], &m_pItems[nIndex + 1],
1188 (m_nCount - nIndex - 1)*sizeof(char *));
1189 m_nCount--;
1190}
1191
1192// removes item from array (by value)
1193void wxArrayString::Remove(const char *sz)
1194{
1195 int iIndex = Index(sz);
1196
1197 wxCHECK( iIndex != NOT_FOUND );
1198
1199 Remove((size_t)iIndex);
1200}
1201
1202// sort array elements using passed comparaison function
1203
1204// Robert Roebling (changed to bool from Bool)
1205
1206void wxArrayString::Sort(bool bCase, bool bReverse)
1207{
1208 //@@@@ TO DO
1209 //qsort(m_pItems, m_nCount, sizeof(char *), fCmp);
1210}