1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxString and wxArrayString classes
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
13 Efficient string class [more or less] compatible with MFC CString,
14 wxWindows version 1 wxString and std::string and some handy functions
15 missing from string.h.
18 #ifndef _WX_WXSTRINGH__
19 #define _WX_WXSTRINGH__
22 #pragma interface "string.h"
25 // ----------------------------------------------------------------------------
26 // conditinal compilation
27 // ----------------------------------------------------------------------------
29 // compile the std::string compatibility functions if defined
30 #define wxSTD_STRING_COMPATIBILITY
32 // define to derive wxString from wxObject (deprecated!)
33 #ifdef WXSTRING_IS_WXOBJECT
34 #undef WXSTRING_IS_WXOBJECT
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
41 #if defined(__WXMAC__) || defined(__VISAGECPP__)
49 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
50 // problem in VACPP V4 with including stdlib.h multiple times
51 // strconv includes it anyway
65 #include <strings.h> // for strcasecmp()
68 #include "wx/defs.h" // everybody should include this
69 #include "wx/debug.h" // for wxASSERT()
70 #include "wx/wxchar.h" // for wxChar
71 #include "wx/buffer.h" // for wxCharBuffer
72 #include "wx/strconv.h" // for wxConvertXXX() macros and wxMBConv classes
75 #ifdef WXSTRING_IS_WXOBJECT
76 #include "wx/object.h" // base class
80 // ---------------------------------------------------------------------------
82 // ---------------------------------------------------------------------------
85 #define WXSTRINGCAST (wxChar *)(const wxChar *)
86 #define wxCSTRINGCAST (wxChar *)(const wxChar *)
87 #define wxMBSTRINGCAST (char *)(const char *)
88 #define wxWCSTRINGCAST (wchar_t *)(const wchar_t *)
90 // implementation only
91 #define ASSERT_VALID_INDEX(i) wxASSERT( (unsigned)(i) <= Len() )
93 // ----------------------------------------------------------------------------
95 // ----------------------------------------------------------------------------
97 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
98 // must define this static for VA or else you get multiply defined symbols everywhere
99 extern const unsigned int wxSTRING_MAXLEN
;
102 // maximum possible length for a string means "take all string" everywhere
103 // (as sizeof(StringData) is unknown here, we substract 100)
104 const unsigned int wxSTRING_MAXLEN
= UINT_MAX
- 100;
108 // ----------------------------------------------------------------------------
110 // ----------------------------------------------------------------------------
112 // global pointer to empty string
113 WXDLLEXPORT_DATA(extern const wxChar
*) wxEmptyString
;
115 // ---------------------------------------------------------------------------
116 // global functions complementing standard C string library replacements for
117 // strlen() and portable strcasecmp()
118 //---------------------------------------------------------------------------
120 // Use wxXXX() functions from wxchar.h instead! These functions are for
121 // backwards compatibility only.
123 // checks whether the passed in pointer is NULL and if the string is empty
124 inline bool WXDLLEXPORT
IsEmpty(const char *p
) { return (!p
|| !*p
); }
126 // safe version of strlen() (returns 0 if passed NULL pointer)
127 inline size_t WXDLLEXPORT
Strlen(const char *psz
)
128 { return psz
? strlen(psz
) : 0; }
130 // portable strcasecmp/_stricmp
131 inline int WXDLLEXPORT
Stricmp(const char *psz1
, const char *psz2
)
133 #if defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
134 return _stricmp(psz1
, psz2
);
135 #elif defined(__SC__)
136 return _stricmp(psz1
, psz2
);
137 #elif defined(__SALFORDC__)
138 return stricmp(psz1
, psz2
);
139 #elif defined(__BORLANDC__)
140 return stricmp(psz1
, psz2
);
141 #elif defined(__WATCOMC__)
142 return stricmp(psz1
, psz2
);
143 #elif defined(__EMX__)
144 return stricmp(psz1
, psz2
);
145 #elif defined(__WXPM__)
146 return stricmp(psz1
, psz2
);
147 #elif defined(__UNIX__) || defined(__GNUWIN32__)
148 return strcasecmp(psz1
, psz2
);
149 #elif defined(__MWERKS__) && !defined(__INTEL__)
150 register char c1
, c2
;
152 c1
= tolower(*psz1
++);
153 c2
= tolower(*psz2
++);
154 } while ( c1
&& (c1
== c2
) );
158 // almost all compilers/libraries provide this function (unfortunately under
159 // different names), that's why we don't implement our own which will surely
160 // be more efficient than this code (uncomment to use):
162 register char c1, c2;
164 c1 = tolower(*psz1++);
165 c2 = tolower(*psz2++);
166 } while ( c1 && (c1 == c2) );
171 #error "Please define string case-insensitive compare for your OS/compiler"
172 #endif // OS/compiler
175 // wxSnprintf() is like snprintf() if it's available and sprintf() (always
176 // available, but dangerous!) if not
177 extern int WXDLLEXPORT
wxSnprintf(wxChar
*buf
, size_t len
,
178 const wxChar
*format
, ...);
180 // and wxVsnprintf() is like vsnprintf() or vsprintf()
181 extern int WXDLLEXPORT
wxVsnprintf(wxChar
*buf
, size_t len
,
182 const wxChar
*format
, va_list argptr
);
184 // return an empty wxString
185 class WXDLLEXPORT wxString
; // not yet defined
186 inline const wxString
& wxGetEmptyString() { return *(wxString
*)&wxEmptyString
; }
188 // ---------------------------------------------------------------------------
189 // string data prepended with some housekeeping info (used by wxString class),
190 // is never used directly (but had to be put here to allow inlining)
191 // ---------------------------------------------------------------------------
193 struct WXDLLEXPORT wxStringData
195 int nRefs
; // reference count
196 size_t nDataLength
, // actual string length
197 nAllocLength
; // allocated memory size
199 // mimics declaration 'wxChar data[nAllocLength]'
200 wxChar
* data() const { return (wxChar
*)(this + 1); }
202 // empty string has a special ref count so it's never deleted
203 bool IsEmpty() const { return (nRefs
== -1); }
204 bool IsShared() const { return (nRefs
> 1); }
207 void Lock() { if ( !IsEmpty() ) nRefs
++; }
208 void Unlock() { if ( !IsEmpty() && --nRefs
== 0) free(this); }
210 // if we had taken control over string memory (GetWriteBuf), it's
211 // intentionally put in invalid state
212 void Validate(bool b
) { nRefs
= (b
? 1 : 0); }
213 bool IsValid() const { return (nRefs
!= 0); }
216 // ---------------------------------------------------------------------------
217 // This is (yet another one) String class for C++ programmers. It doesn't use
218 // any of "advanced" C++ features (i.e. templates, exceptions, namespaces...)
219 // thus you should be able to compile it with practicaly any C++ compiler.
220 // This class uses copy-on-write technique, i.e. identical strings share the
221 // same memory as long as neither of them is changed.
223 // This class aims to be as compatible as possible with the new standard
224 // std::string class, but adds some additional functions and should be at
225 // least as efficient than the standard implementation.
227 // Performance note: it's more efficient to write functions which take "const
228 // String&" arguments than "const char *" if you assign the argument to
231 // It was compiled and tested under Win32, Linux (libc 5 & 6), Solaris 5.5.
234 // - ressource support (string tables in ressources)
235 // - more wide character (UNICODE) support
236 // - regular expressions support
237 // ---------------------------------------------------------------------------
239 #ifdef WXSTRING_IS_WXOBJECT
240 class WXDLLEXPORT wxString
: public wxObject
242 DECLARE_DYNAMIC_CLASS(wxString
)
243 #else //WXSTRING_IS_WXOBJECT
244 class WXDLLEXPORT wxString
246 #endif //WXSTRING_IS_WXOBJECT
248 friend class WXDLLEXPORT wxArrayString
;
250 // NB: special care was taken in arranging the member functions in such order
251 // that all inline functions can be effectively inlined, verify that all
252 // performace critical functions are still inlined if you change order!
254 // points to data preceded by wxStringData structure with ref count info
257 // accessor to string data
258 wxStringData
* GetStringData() const { return (wxStringData
*)m_pchData
- 1; }
260 // string (re)initialization functions
261 // initializes the string to the empty value (must be called only from
262 // ctors, use Reinit() otherwise)
263 void Init() { m_pchData
= (wxChar
*)wxEmptyString
; }
264 // initializaes the string with (a part of) C-string
265 void InitWith(const wxChar
*psz
, size_t nPos
= 0, size_t nLen
= wxSTRING_MAXLEN
);
266 // as Init, but also frees old data
267 void Reinit() { GetStringData()->Unlock(); Init(); }
270 // allocates memory for string of lenght nLen
271 void AllocBuffer(size_t nLen
);
272 // copies data to another string
273 void AllocCopy(wxString
&, int, int) const;
274 // effectively copies data to string
275 void AssignCopy(size_t, const wxChar
*);
277 // append a (sub)string
278 void ConcatSelf(int nLen
, const wxChar
*src
);
280 // functions called before writing to the string: they copy it if there
281 // are other references to our data (should be the only owner when writing)
282 void CopyBeforeWrite();
283 void AllocBeforeWrite(size_t);
285 // this method is not implemented - there is _no_ conversion from int to
286 // string, you're doing something wrong if the compiler wants to call it!
288 // try `s << i' or `s.Printf("%d", i)' instead
290 wxString(unsigned int);
292 wxString(unsigned long);
295 // constructors and destructor
296 // ctor for an empty string
297 wxString() { Init(); }
299 wxString(const wxString
& stringSrc
)
301 wxASSERT( stringSrc
.GetStringData()->IsValid() );
303 if ( stringSrc
.IsEmpty() ) {
304 // nothing to do for an empty string
308 m_pchData
= stringSrc
.m_pchData
; // share same data
309 GetStringData()->Lock(); // => one more copy
312 // string containing nRepeat copies of ch
313 wxString(wxChar ch
, size_t nRepeat
= 1);
314 // ctor takes first nLength characters from C string
315 // (default value of wxSTRING_MAXLEN means take all the string)
316 wxString(const wxChar
*psz
, size_t nLength
= wxSTRING_MAXLEN
)
317 { InitWith(psz
, 0, nLength
); }
320 // from multibyte string
321 // (NB: nLength is right now number of Unicode characters, not
322 // characters in psz! So try not to use it yet!)
323 wxString(const char *psz
, wxMBConv
& conv
= wxConvLibc
, size_t nLength
= wxSTRING_MAXLEN
);
324 // from wxWCharBuffer (i.e. return from wxGetString)
325 wxString(const wxWCharBuffer
& psz
)
326 { InitWith(psz
, 0, wxSTRING_MAXLEN
); }
328 // from C string (for compilers using unsigned char)
329 wxString(const unsigned char* psz
, size_t nLength
= wxSTRING_MAXLEN
)
330 { InitWith((const char*)psz
, 0, nLength
); }
331 // from multibyte string
332 wxString(const char *psz
, wxMBConv
& WXUNUSED(conv
) , size_t nLength
= wxSTRING_MAXLEN
)
333 { InitWith(psz
, 0, nLength
); }
336 // from wide (Unicode) string
337 wxString(const wchar_t *pwz
);
338 #endif // !wxUSE_WCHAR_T
341 wxString(const wxCharBuffer
& psz
)
342 { InitWith(psz
, 0, wxSTRING_MAXLEN
); }
343 #endif // Unicode/ANSI
345 // dtor is not virtual, this class must not be inherited from!
346 ~wxString() { GetStringData()->Unlock(); }
348 // generic attributes & operations
349 // as standard strlen()
350 size_t Len() const { return GetStringData()->nDataLength
; }
351 // string contains any characters?
352 bool IsEmpty() const { return Len() == 0; }
353 // empty string is "FALSE", so !str will return TRUE
354 bool operator!() const { return IsEmpty(); }
355 // empty string contents
362 wxASSERT( GetStringData()->nDataLength
== 0 );
364 // empty the string and free memory
367 if ( !GetStringData()->IsEmpty() )
370 wxASSERT( GetStringData()->nDataLength
== 0 ); // should be empty
371 wxASSERT( GetStringData()->nAllocLength
== 0 ); // and not own any memory
376 bool IsAscii() const;
378 bool IsNumber() const;
382 // data access (all indexes are 0 based)
384 wxChar
GetChar(size_t n
) const
385 { ASSERT_VALID_INDEX( n
); return m_pchData
[n
]; }
387 wxChar
& GetWritableChar(size_t n
)
388 { ASSERT_VALID_INDEX( n
); CopyBeforeWrite(); return m_pchData
[n
]; }
390 void SetChar(size_t n
, wxChar ch
)
391 { ASSERT_VALID_INDEX( n
); CopyBeforeWrite(); m_pchData
[n
] = ch
; }
393 // get last character
395 { wxASSERT( !IsEmpty() ); return m_pchData
[Len() - 1]; }
396 // get writable last character
398 { wxASSERT( !IsEmpty() ); CopyBeforeWrite(); return m_pchData
[Len()-1]; }
400 // operator version of GetChar
401 wxChar
operator[](size_t n
) const
402 { ASSERT_VALID_INDEX( n
); return m_pchData
[n
]; }
404 // operator version of GetChar
405 wxChar
operator[](int n
) const
406 { ASSERT_VALID_INDEX( n
); return m_pchData
[n
]; }
408 // operator version of GetChar
409 wxChar
operator[](unsigned int n
) const
410 { ASSERT_VALID_INDEX( n
); return m_pchData
[n
]; }
413 // operator version of GetWriteableChar
414 wxChar
& operator[](size_t n
)
415 { ASSERT_VALID_INDEX( n
); CopyBeforeWrite(); return m_pchData
[n
]; }
417 // operator version of GetWriteableChar
418 wxChar
& operator[](unsigned int n
)
419 { ASSERT_VALID_INDEX( n
); CopyBeforeWrite(); return m_pchData
[n
]; }
422 // implicit conversion to C string
423 operator const wxChar
*() const { return m_pchData
; }
424 // explicit conversion to C string (use this with printf()!)
425 const wxChar
* c_str() const { return m_pchData
; }
426 // (and this with [wx]Printf()!)
427 const wxChar
* wx_str() const { return m_pchData
; }
428 // identical to c_str()
429 const wxChar
* GetData() const { return m_pchData
; }
431 // conversions with (possible) format convertions: have to return a
432 // buffer with temporary data
434 const wxCharBuffer
mb_str(wxMBConv
& conv
= wxConvLibc
) const { return conv
.cWC2MB(m_pchData
); }
435 const wxWX2MBbuf
mbc_str() const { return mb_str(*wxConvCurrent
); }
437 const wxChar
* wc_str(wxMBConv
& WXUNUSED(conv
) = wxConvLibc
) const { return m_pchData
; }
440 const wxCharBuffer
fn_str() const { return mb_str(wxConvFile
); }
442 const wxChar
* fn_str() const { return m_pchData
; }
443 #endif // wxMBFILES/!wxMBFILES
446 const wxChar
* mb_str(wxMBConv
& WXUNUSED(conv
) = wxConvLibc
) const
447 { return m_pchData
; }
448 const wxWX2MBbuf
mbc_str() const { return mb_str(*wxConvCurrent
); }
450 const wxChar
* mb_str() const { return m_pchData
; }
451 const wxWX2MBbuf
mbc_str() const { return mb_str(); }
452 #endif // multibyte/!multibyte
454 const wxWCharBuffer
wc_str(wxMBConv
& conv
) const { return conv
.cMB2WC(m_pchData
); }
455 #endif // wxUSE_WCHAR_T
456 const wxChar
* fn_str() const { return m_pchData
; }
457 #endif // Unicode/ANSI
459 // overloaded assignment
460 // from another wxString
461 wxString
& operator=(const wxString
& stringSrc
);
463 wxString
& operator=(wxChar ch
);
465 wxString
& operator=(const wxChar
*psz
);
467 // from wxWCharBuffer
468 wxString
& operator=(const wxWCharBuffer
& psz
) { return operator=((const wchar_t *)psz
); }
470 // from another kind of C string
471 wxString
& operator=(const unsigned char* psz
);
473 // from a wide string
474 wxString
& operator=(const wchar_t *pwz
);
477 wxString
& operator=(const wxCharBuffer
& psz
) { return operator=((const char *)psz
); }
478 #endif // Unicode/ANSI
480 // string concatenation
481 // in place concatenation
483 Concatenate and return the result. Note that the left to right
484 associativity of << allows to write things like "str << str1 << str2
485 << ..." (unlike with +=)
488 wxString
& operator<<(const wxString
& s
)
490 wxASSERT( s
.GetStringData()->IsValid() );
492 ConcatSelf(s
.Len(), s
);
495 // string += C string
496 wxString
& operator<<(const wxChar
*psz
)
497 { ConcatSelf(wxStrlen(psz
), psz
); return *this; }
499 wxString
& operator<<(wxChar ch
) { ConcatSelf(1, &ch
); return *this; }
502 void operator+=(const wxString
& s
) { (void)operator<<(s
); }
503 // string += C string
504 void operator+=(const wxChar
*psz
) { (void)operator<<(psz
); }
506 void operator+=(wxChar ch
) { (void)operator<<(ch
); }
508 // string += buffer (i.e. from wxGetString)
510 wxString
& operator<<(const wxWCharBuffer
& s
) { (void)operator<<((const wchar_t *)s
); return *this; }
511 void operator+=(const wxWCharBuffer
& s
) { (void)operator<<((const wchar_t *)s
); }
513 wxString
& operator<<(const wxCharBuffer
& s
) { (void)operator<<((const char *)s
); return *this; }
514 void operator+=(const wxCharBuffer
& s
) { (void)operator<<((const char *)s
); }
517 // string += C string
518 wxString
& Append(const wxChar
* psz
)
519 { ConcatSelf(wxStrlen(psz
), psz
); return *this; }
520 // append count copies of given character
521 wxString
& Append(wxChar ch
, size_t count
= 1u)
522 { wxString
str(ch
, count
); return *this << str
; }
523 wxString
& Append(const wxChar
* psz
, size_t nLen
)
524 { ConcatSelf(nLen
, psz
); return *this; }
526 // prepend a string, return the string itself
527 wxString
& Prepend(const wxString
& str
)
528 { *this = str
+ *this; return *this; }
530 // non-destructive concatenation
532 friend wxString WXDLLEXPORT
operator+(const wxString
& string1
, const wxString
& string2
);
534 friend wxString WXDLLEXPORT
operator+(const wxString
& string
, wxChar ch
);
536 friend wxString WXDLLEXPORT
operator+(wxChar ch
, const wxString
& string
);
538 friend wxString WXDLLEXPORT
operator+(const wxString
& string
, const wxChar
*psz
);
540 friend wxString WXDLLEXPORT
operator+(const wxChar
*psz
, const wxString
& string
);
542 // stream-like functions
543 // insert an int into string
544 wxString
& operator<<(int i
)
545 { return (*this) << Format(_T("%d"), i
); }
546 // insert an unsigned int into string
547 wxString
& operator<<(unsigned int ui
)
548 { return (*this) << Format(_T("%u"), ui
); }
549 // insert a long into string
550 wxString
& operator<<(long l
)
551 { return (*this) << Format(_T("%ld"), l
); }
552 // insert an unsigned long into string
553 wxString
& operator<<(unsigned long ul
)
554 { return (*this) << Format(_T("%lu"), ul
); }
555 // insert a float into string
556 wxString
& operator<<(float f
)
557 { return (*this) << Format(_T("%f"), f
); }
558 // insert a double into string
559 wxString
& operator<<(double d
)
560 { return (*this) << Format(_T("%g"), d
); }
563 // case-sensitive comparison (returns a value < 0, = 0 or > 0)
564 int Cmp(const wxChar
*psz
) const { return wxStrcmp(c_str(), psz
); }
565 // same as Cmp() but not case-sensitive
566 int CmpNoCase(const wxChar
*psz
) const { return wxStricmp(c_str(), psz
); }
567 // test for the string equality, either considering case or not
568 // (if compareWithCase then the case matters)
569 bool IsSameAs(const wxChar
*psz
, bool compareWithCase
= TRUE
) const
570 { return (compareWithCase
? Cmp(psz
) : CmpNoCase(psz
)) == 0; }
571 // comparison with a signle character: returns TRUE if equal
572 bool IsSameAs(wxChar c
, bool compareWithCase
= TRUE
) const
574 return (Len() == 1) && (compareWithCase
? GetChar(0u) == c
575 : wxToupper(GetChar(0u)) == wxToupper(c
));
578 // simple sub-string extraction
579 // return substring starting at nFirst of length nCount (or till the end
580 // if nCount = default value)
581 wxString
Mid(size_t nFirst
, size_t nCount
= wxSTRING_MAXLEN
) const;
583 // operator version of Mid()
584 wxString
operator()(size_t start
, size_t len
) const
585 { return Mid(start
, len
); }
587 // get first nCount characters
588 wxString
Left(size_t nCount
) const;
589 // get last nCount characters
590 wxString
Right(size_t nCount
) const;
591 // get all characters before the first occurence of ch
592 // (returns the whole string if ch not found)
593 wxString
BeforeFirst(wxChar ch
) const;
594 // get all characters before the last occurence of ch
595 // (returns empty string if ch not found)
596 wxString
BeforeLast(wxChar ch
) const;
597 // get all characters after the first occurence of ch
598 // (returns empty string if ch not found)
599 wxString
AfterFirst(wxChar ch
) const;
600 // get all characters after the last occurence of ch
601 // (returns the whole string if ch not found)
602 wxString
AfterLast(wxChar ch
) const;
604 // for compatibility only, use more explicitly named functions above
605 wxString
Before(wxChar ch
) const { return BeforeLast(ch
); }
606 wxString
After(wxChar ch
) const { return AfterFirst(ch
); }
609 // convert to upper case in place, return the string itself
610 wxString
& MakeUpper();
611 // convert to upper case, return the copy of the string
612 // Here's something to remember: BC++ doesn't like returns in inlines.
613 wxString
Upper() const ;
614 // convert to lower case in place, return the string itself
615 wxString
& MakeLower();
616 // convert to lower case, return the copy of the string
617 wxString
Lower() const ;
619 // trimming/padding whitespace (either side) and truncating
620 // remove spaces from left or from right (default) side
621 wxString
& Trim(bool bFromRight
= TRUE
);
622 // add nCount copies chPad in the beginning or at the end (default)
623 wxString
& Pad(size_t nCount
, wxChar chPad
= wxT(' '), bool bFromRight
= TRUE
);
624 // truncate string to given length
625 wxString
& Truncate(size_t uiLen
);
627 // searching and replacing
628 // searching (return starting index, or -1 if not found)
629 int Find(wxChar ch
, bool bFromEnd
= FALSE
) const; // like strchr/strrchr
630 // searching (return starting index, or -1 if not found)
631 int Find(const wxChar
*pszSub
) const; // like strstr
632 // replace first (or all of bReplaceAll) occurences of substring with
633 // another string, returns the number of replacements made
634 size_t Replace(const wxChar
*szOld
,
636 bool bReplaceAll
= TRUE
);
638 // check if the string contents matches a mask containing '*' and '?'
639 bool Matches(const wxChar
*szMask
) const;
641 // conversion to numbers: all functions return TRUE only if the whole string
642 // is a number and put the value of this number into the pointer provided
643 // convert to a signed integer
644 bool ToLong(long *val
) const;
645 // convert to an unsigned integer
646 bool ToULong(unsigned long *val
) const;
647 // convert to a double
648 bool ToDouble(double *val
) const;
650 // formated input/output
651 // as sprintf(), returns the number of characters written or < 0 on error
652 int Printf(const wxChar
*pszFormat
, ...);
653 // as vprintf(), returns the number of characters written or < 0 on error
654 int PrintfV(const wxChar
* pszFormat
, va_list argptr
);
656 // returns the string containing the result of Printf() to it
657 static wxString
Format(const wxChar
*pszFormat
, ...);
658 // the same as above, but takes a va_list
659 static wxString
FormatV(const wxChar
*pszFormat
, va_list argptr
);
661 // raw access to string memory
662 // ensure that string has space for at least nLen characters
663 // only works if the data of this string is not shared
664 void Alloc(size_t nLen
);
665 // minimize the string's memory
666 // only works if the data of this string is not shared
668 // get writable buffer of at least nLen bytes. Unget() *must* be called
669 // a.s.a.p. to put string back in a reasonable state!
670 wxChar
*GetWriteBuf(size_t nLen
);
671 // call this immediately after GetWriteBuf() has been used
672 void UngetWriteBuf();
673 void UngetWriteBuf(size_t nLen
);
675 // wxWindows version 1 compatibility functions
678 wxString
SubString(size_t from
, size_t to
) const
679 { return Mid(from
, (to
- from
+ 1)); }
680 // values for second parameter of CompareTo function
681 enum caseCompare
{exact
, ignoreCase
};
682 // values for first parameter of Strip function
683 enum stripType
{leading
= 0x1, trailing
= 0x2, both
= 0x3};
686 int sprintf(const wxChar
*pszFormat
, ...);
689 inline int CompareTo(const wxChar
* psz
, caseCompare cmp
= exact
) const
690 { return cmp
== exact
? Cmp(psz
) : CmpNoCase(psz
); }
693 size_t Length() const { return Len(); }
694 // Count the number of characters
695 int Freq(wxChar ch
) const;
697 void LowerCase() { MakeLower(); }
699 void UpperCase() { MakeUpper(); }
700 // use Trim except that it doesn't change this string
701 wxString
Strip(stripType w
= trailing
) const;
703 // use Find (more general variants not yet supported)
704 size_t Index(const wxChar
* psz
) const { return Find(psz
); }
705 size_t Index(wxChar ch
) const { return Find(ch
); }
707 wxString
& Remove(size_t pos
) { return Truncate(pos
); }
708 wxString
& RemoveLast() { return Truncate(Len() - 1); }
710 wxString
& Remove(size_t nStart
, size_t nLen
) { return erase( nStart
, nLen
); }
713 int First( const wxChar ch
) const { return Find(ch
); }
714 int First( const wxChar
* psz
) const { return Find(psz
); }
715 int First( const wxString
&str
) const { return Find(str
); }
716 int Last( const wxChar ch
) const { return Find(ch
, TRUE
); }
717 bool Contains(const wxString
& str
) const { return Find(str
) != -1; }
720 bool IsNull() const { return IsEmpty(); }
722 #ifdef wxSTD_STRING_COMPATIBILITY
723 // std::string compatibility functions
726 typedef wxChar value_type
;
727 typedef const value_type
*const_iterator
;
729 // an 'invalid' value for string index
730 static const size_t npos
;
733 // take nLen chars starting at nPos
734 wxString(const wxString
& str
, size_t nPos
, size_t nLen
)
736 wxASSERT( str
.GetStringData()->IsValid() );
737 InitWith(str
.c_str(), nPos
, nLen
== npos
? 0 : nLen
);
739 // take all characters from pStart to pEnd
740 wxString(const void *pStart
, const void *pEnd
);
742 // lib.string.capacity
743 // return the length of the string
744 size_t size() const { return Len(); }
745 // return the length of the string
746 size_t length() const { return Len(); }
747 // return the maximum size of the string
748 size_t max_size() const { return wxSTRING_MAXLEN
; }
749 // resize the string, filling the space with c if c != 0
750 void resize(size_t nSize
, wxChar ch
= wxT('\0'));
751 // delete the contents of the string
752 void clear() { Empty(); }
753 // returns true if the string is empty
754 bool empty() const { return IsEmpty(); }
755 // inform string about planned change in size
756 void reserve(size_t size
) { Alloc(size
); }
759 // return the character at position n
760 wxChar
at(size_t n
) const { return GetChar(n
); }
761 // returns the writable character at position n
762 wxChar
& at(size_t n
) { return GetWritableChar(n
); }
764 // first valid index position
765 const_iterator
begin() const { return wx_str(); }
766 // position one after the last valid one
767 const_iterator
end() const { return wx_str() + length(); }
769 // lib.string.modifiers
771 wxString
& append(const wxString
& str
)
772 { *this += str
; return *this; }
773 // append elements str[pos], ..., str[pos+n]
774 wxString
& append(const wxString
& str
, size_t pos
, size_t n
)
775 { ConcatSelf(n
, str
.c_str() + pos
); return *this; }
776 // append first n (or all if n == npos) characters of sz
777 wxString
& append(const wxChar
*sz
, size_t n
= npos
)
778 { ConcatSelf(n
== npos
? wxStrlen(sz
) : n
, sz
); return *this; }
780 // append n copies of ch
781 wxString
& append(size_t n
, wxChar ch
) { return Pad(n
, ch
); }
783 // same as `this_string = str'
784 wxString
& assign(const wxString
& str
) { return (*this) = str
; }
785 // same as ` = str[pos..pos + n]
786 wxString
& assign(const wxString
& str
, size_t pos
, size_t n
)
787 { return *this = wxString((const wxChar
*)str
+ pos
, n
); }
788 // same as `= first n (or all if n == npos) characters of sz'
789 wxString
& assign(const wxChar
*sz
, size_t n
= npos
)
790 { return *this = wxString(sz
, n
); }
791 // same as `= n copies of ch'
792 wxString
& assign(size_t n
, wxChar ch
)
793 { return *this = wxString(ch
, n
); }
795 // insert another string
796 wxString
& insert(size_t nPos
, const wxString
& str
);
797 // insert n chars of str starting at nStart (in str)
798 wxString
& insert(size_t nPos
, const wxString
& str
, size_t nStart
, size_t n
)
799 { return insert(nPos
, wxString((const wxChar
*)str
+ nStart
, n
)); }
801 // insert first n (or all if n == npos) characters of sz
802 wxString
& insert(size_t nPos
, const wxChar
*sz
, size_t n
= npos
)
803 { return insert(nPos
, wxString(sz
, n
)); }
804 // insert n copies of ch
805 wxString
& insert(size_t nPos
, size_t n
, wxChar ch
)
806 { return insert(nPos
, wxString(ch
, n
)); }
808 // delete characters from nStart to nStart + nLen
809 wxString
& erase(size_t nStart
= 0, size_t nLen
= npos
);
811 // replaces the substring of length nLen starting at nStart
812 wxString
& replace(size_t nStart
, size_t nLen
, const wxChar
* sz
);
813 // replaces the substring with nCount copies of ch
814 wxString
& replace(size_t nStart
, size_t nLen
, size_t nCount
, wxChar ch
);
815 // replaces a substring with another substring
816 wxString
& replace(size_t nStart
, size_t nLen
,
817 const wxString
& str
, size_t nStart2
, size_t nLen2
);
818 // replaces the substring with first nCount chars of sz
819 wxString
& replace(size_t nStart
, size_t nLen
,
820 const wxChar
* sz
, size_t nCount
);
823 void swap(wxString
& str
);
825 // All find() functions take the nStart argument which specifies the
826 // position to start the search on, the default value is 0. All functions
827 // return npos if there were no match.
830 size_t find(const wxString
& str
, size_t nStart
= 0) const;
832 // VC++ 1.5 can't cope with this syntax.
833 #if !defined(__VISUALC__) || defined(__WIN32__)
834 // find first n characters of sz
835 size_t find(const wxChar
* sz
, size_t nStart
= 0, size_t n
= npos
) const;
838 // Gives a duplicate symbol (presumably a case-insensitivity problem)
839 #if !defined(__BORLANDC__)
840 // find the first occurence of character ch after nStart
841 size_t find(wxChar ch
, size_t nStart
= 0) const;
843 // rfind() family is exactly like find() but works right to left
845 // as find, but from the end
846 size_t rfind(const wxString
& str
, size_t nStart
= npos
) const;
848 // VC++ 1.5 can't cope with this syntax.
849 #if !defined(__VISUALC__) || defined(__WIN32__)
850 // as find, but from the end
851 size_t rfind(const wxChar
* sz
, size_t nStart
= npos
,
852 size_t n
= npos
) const;
853 // as find, but from the end
854 size_t rfind(wxChar ch
, size_t nStart
= npos
) const;
857 // find first/last occurence of any character in the set
859 // as strpbrk() but starts at nStart, returns npos if not found
860 size_t find_first_of(const wxString
& str
, size_t nStart
= 0) const
861 { return find_first_of(str
.c_str(), nStart
); }
863 size_t find_first_of(const wxChar
* sz
, size_t nStart
= 0) const;
864 // same as find(char, size_t)
865 size_t find_first_of(wxChar c
, size_t nStart
= 0) const
866 { return find(c
, nStart
); }
867 // find the last (starting from nStart) char from str in this string
868 size_t find_last_of (const wxString
& str
, size_t nStart
= npos
) const
869 { return find_last_of(str
.c_str(), nStart
); }
871 size_t find_last_of (const wxChar
* sz
, size_t nStart
= npos
) const;
873 size_t find_last_of(wxChar c
, size_t nStart
= npos
) const
874 { return rfind(c
, nStart
); }
876 // find first/last occurence of any character not in the set
878 // as strspn() (starting from nStart), returns npos on failure
879 size_t find_first_not_of(const wxString
& str
, size_t nStart
= 0) const
880 { return find_first_not_of(str
.c_str(), nStart
); }
882 size_t find_first_not_of(const wxChar
* sz
, size_t nStart
= 0) const;
884 size_t find_first_not_of(wxChar ch
, size_t nStart
= 0) const;
886 size_t find_last_not_of(const wxString
& str
, size_t nStart
=npos
) const;
888 size_t find_last_not_of(const wxChar
* sz
, size_t nStart
= npos
) const;
890 size_t find_last_not_of(wxChar ch
, size_t nStart
= npos
) const;
892 // All compare functions return -1, 0 or 1 if the [sub]string is less,
893 // equal or greater than the compare() argument.
895 // just like strcmp()
896 int compare(const wxString
& str
) const { return Cmp(str
); }
897 // comparison with a substring
898 int compare(size_t nStart
, size_t nLen
, const wxString
& str
) const;
899 // comparison of 2 substrings
900 int compare(size_t nStart
, size_t nLen
,
901 const wxString
& str
, size_t nStart2
, size_t nLen2
) const;
902 // just like strcmp()
903 int compare(const wxChar
* sz
) const { return Cmp(sz
); }
904 // substring comparison with first nCount characters of sz
905 int compare(size_t nStart
, size_t nLen
,
906 const wxChar
* sz
, size_t nCount
= npos
) const;
908 // substring extraction
909 wxString
substr(size_t nStart
= 0, size_t nLen
= npos
) const
910 { return Mid(nStart
, nLen
); }
911 #endif // wxSTD_STRING_COMPATIBILITY
914 // ----------------------------------------------------------------------------
915 // The string array uses it's knowledge of internal structure of the wxString
916 // class to optimize string storage. Normally, we would store pointers to
917 // string, but as wxString is, in fact, itself a pointer (sizeof(wxString) is
918 // sizeof(char *)) we store these pointers instead. The cast to "wxString *" is
919 // really all we need to turn such pointer into a string!
921 // Of course, it can be called a dirty hack, but we use twice less memory and
922 // this approach is also more speed efficient, so it's probably worth it.
924 // Usage notes: when a string is added/inserted, a new copy of it is created,
925 // so the original string may be safely deleted. When a string is retrieved
926 // from the array (operator[] or Item() method), a reference is returned.
927 // ----------------------------------------------------------------------------
929 class WXDLLEXPORT wxArrayString
932 // type of function used by wxArrayString::Sort()
933 typedef int (*CompareFunction
)(const wxString
& first
,
934 const wxString
& second
);
936 // constructors and destructor
937 // default ctor: if autoSort is TRUE, the array is always sorted (in
938 // alphabetical order)
939 wxArrayString(bool autoSort
= FALSE
);
941 wxArrayString(const wxArrayString
& array
);
942 // assignment operator
943 wxArrayString
& operator=(const wxArrayString
& src
);
944 // not virtual, this class should not be derived from
948 // empties the list, but doesn't release memory
950 // empties the list and releases memory
952 // preallocates memory for given number of items
953 void Alloc(size_t nCount
);
954 // minimzes the memory usage (by freeing all extra memory)
958 // number of elements in the array
959 size_t GetCount() const { return m_nCount
; }
961 bool IsEmpty() const { return m_nCount
== 0; }
962 // number of elements in the array (GetCount is preferred API)
963 size_t Count() const { return m_nCount
; }
965 // items access (range checking is done in debug version)
966 // get item at position uiIndex
967 wxString
& Item(size_t nIndex
) const
968 { wxASSERT( nIndex
< m_nCount
); return *(wxString
*)&(m_pItems
[nIndex
]); }
970 wxString
& operator[](size_t nIndex
) const { return Item(nIndex
); }
972 wxString
& Last() const { wxASSERT( !IsEmpty() ); return Item(Count() - 1); }
975 // Search the element in the array, starting from the beginning if
976 // bFromEnd is FALSE or from end otherwise. If bCase, comparison is case
977 // sensitive (default). Returns index of the first item matched or
979 int Index (const wxChar
*sz
, bool bCase
= TRUE
, bool bFromEnd
= FALSE
) const;
980 // add new element at the end (if the array is not sorted), return its
982 size_t Add(const wxString
& str
);
983 // add new element at given position
984 void Insert(const wxString
& str
, size_t uiIndex
);
985 // remove first item matching this value
986 void Remove(const wxChar
*sz
);
987 // remove item by index
988 void Remove(size_t nIndex
);
991 // sort array elements in alphabetical order (or reversed alphabetical
992 // order if reverseOrder parameter is TRUE)
993 void Sort(bool reverseOrder
= FALSE
);
994 // sort array elements using specified comparaison function
995 void Sort(CompareFunction compareFunction
);
998 void Copy(const wxArrayString
& src
); // copies the contents of another array
1001 void Grow(); // makes array bigger if needed
1002 void Free(); // free all the strings stored
1004 void DoSort(); // common part of all Sort() variants
1006 size_t m_nSize
, // current size of the array
1007 m_nCount
; // current number of elements
1009 wxChar
**m_pItems
; // pointer to data
1011 bool m_autoSort
; // if TRUE, keep the array always sorted
1014 class WXDLLEXPORT wxSortedArrayString
: public wxArrayString
1017 wxSortedArrayString() : wxArrayString(TRUE
)
1019 wxSortedArrayString(const wxArrayString
& array
) : wxArrayString(TRUE
)
1023 // ---------------------------------------------------------------------------
1024 // wxString comparison functions: operator versions are always case sensitive
1025 // ---------------------------------------------------------------------------
1028 inline bool operator==(const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) == 0); }
1030 inline bool operator==(const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) == 0); }
1032 inline bool operator==(const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) == 0); }
1034 inline bool operator!=(const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) != 0); }
1036 inline bool operator!=(const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) != 0); }
1038 inline bool operator!=(const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) != 0); }
1040 inline bool operator< (const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) < 0); }
1042 inline bool operator< (const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) < 0); }
1044 inline bool operator< (const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) > 0); }
1046 inline bool operator> (const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) > 0); }
1048 inline bool operator> (const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) > 0); }
1050 inline bool operator> (const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) < 0); }
1052 inline bool operator<=(const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) <= 0); }
1054 inline bool operator<=(const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) <= 0); }
1056 inline bool operator<=(const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) >= 0); }
1058 inline bool operator>=(const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) >= 0); }
1060 inline bool operator>=(const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) >= 0); }
1062 inline bool operator>=(const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) <= 0); }
1064 // comparison with char
1065 inline bool operator==(wxChar c
, const wxString
& s
) { return s
.IsSameAs(c
); }
1066 inline bool operator==(const wxString
& s
, wxChar c
) { return s
.IsSameAs(c
); }
1067 inline bool operator!=(wxChar c
, const wxString
& s
) { return !s
.IsSameAs(c
); }
1068 inline bool operator!=(const wxString
& s
, wxChar c
) { return !s
.IsSameAs(c
); }
1071 inline bool operator==(const wxString
& s1
, const wxWCharBuffer
& s2
)
1072 { return (s1
.Cmp((const wchar_t *)s2
) == 0); }
1073 inline bool operator==(const wxWCharBuffer
& s1
, const wxString
& s2
)
1074 { return (s2
.Cmp((const wchar_t *)s1
) == 0); }
1076 inline bool operator==(const wxString
& s1
, const wxCharBuffer
& s2
)
1077 { return (s1
.Cmp((const char *)s2
) == 0); }
1078 inline bool operator==(const wxCharBuffer
& s1
, const wxString
& s2
)
1079 { return (s2
.Cmp((const char *)s1
) == 0); }
1082 wxString WXDLLEXPORT
operator+(const wxString
& string1
, const wxString
& string2
);
1083 wxString WXDLLEXPORT
operator+(const wxString
& string
, wxChar ch
);
1084 wxString WXDLLEXPORT
operator+(wxChar ch
, const wxString
& string
);
1085 wxString WXDLLEXPORT
operator+(const wxString
& string
, const wxChar
*psz
);
1086 wxString WXDLLEXPORT
operator+(const wxChar
*psz
, const wxString
& string
);
1088 inline wxString WXDLLEXPORT
operator+(const wxString
& string
, const wxWCharBuffer
& buf
)
1089 { return string
+ (const wchar_t *)buf
; }
1090 inline wxString WXDLLEXPORT
operator+(const wxWCharBuffer
& buf
, const wxString
& string
)
1091 { return (const wchar_t *)buf
+ string
; }
1093 inline wxString WXDLLEXPORT
operator+(const wxString
& string
, const wxCharBuffer
& buf
)
1094 { return string
+ (const char *)buf
; }
1095 inline wxString WXDLLEXPORT
operator+(const wxCharBuffer
& buf
, const wxString
& string
)
1096 { return (const char *)buf
+ string
; }
1099 // ---------------------------------------------------------------------------
1100 // Implementation only from here until the end of file
1101 // ---------------------------------------------------------------------------
1103 // don't pollute the library user's name space
1104 #undef ASSERT_VALID_INDEX
1106 #if defined(wxSTD_STRING_COMPATIBILITY) && wxUSE_STD_IOSTREAM
1108 #include "wx/ioswrap.h"
1110 WXDLLEXPORT istream
& operator>>(istream
&, wxString
&);
1111 WXDLLEXPORT ostream
& operator<<(ostream
&, const wxString
&);
1113 #endif // wxSTD_STRING_COMPATIBILITY
1115 #endif // _WX_WXSTRINGH__