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 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_WXSTRINGH__
13 #define _WX_WXSTRINGH__
16 #pragma interface "string.h"
34 #include <strings.h> // for strcasecmp()
40 #ifdef WXSTRING_IS_WXOBJECT
41 #include "wx/object.h"
46 #include "wx/wxchar.h"
47 #include "wx/buffer.h"
50 Efficient string class [more or less] compatible with MFC CString,
51 wxWindows version 1 wxString and std::string and some handy functions
52 missing from string.h.
55 // ---------------------------------------------------------------------------
57 // ---------------------------------------------------------------------------
59 // compile the std::string compatibility functions if defined
60 #define wxSTD_STRING_COMPATIBILITY
62 // define to derive wxString from wxObject
63 #ifdef WXSTRING_IS_WXOBJECT
64 #undef WXSTRING_IS_WXOBJECT
67 // maximum possible length for a string means "take all string" everywhere
68 // (as sizeof(StringData) is unknown here we substract 100)
69 const unsigned int wxSTRING_MAXLEN
= UINT_MAX
- 100;
72 #define WXSTRINGCAST (wxChar *)(const wxChar *)
73 #define WXCSTRINGCAST (wxChar *)(const wxChar *)
74 #define MBSTRINGCAST (char *)(const char *)
75 #define WCSTRINGCAST (wchar_t *)(const wchar_t *)
77 // implementation only
78 #define ASSERT_VALID_INDEX(i) wxASSERT( (unsigned)(i) <= Len() )
80 // include conversion classes
81 #include "wx/strconv.h"
83 // ---------------------------------------------------------------------------
84 // Global functions complementing standard C string library replacements for
85 // strlen() and portable strcasecmp()
86 //---------------------------------------------------------------------------
87 // USE wx* FUNCTIONS IN wx/wxchar.h INSTEAD - THIS IS ONLY FOR BINARY COMPATIBILITY
89 // checks whether the passed in pointer is NULL and if the string is empty
90 inline bool WXDLLEXPORT
IsEmpty(const char *p
) { return (!p
|| !*p
); }
92 // safe version of strlen() (returns 0 if passed NULL pointer)
93 inline size_t WXDLLEXPORT
Strlen(const char *psz
)
94 { return psz
? strlen(psz
) : 0; }
96 // portable strcasecmp/_stricmp
97 inline int WXDLLEXPORT
Stricmp(const char *psz1
, const char *psz2
)
99 #if defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
100 return _stricmp(psz1
, psz2
);
101 #elif defined(__SC__)
102 return _stricmp(psz1
, psz2
);
103 #elif defined(__SALFORDC__)
104 return stricmp(psz1
, psz2
);
105 #elif defined(__BORLANDC__)
106 return stricmp(psz1
, psz2
);
107 #elif defined(__WATCOMC__)
108 return stricmp(psz1
, psz2
);
109 #elif defined(__EMX__)
110 return stricmp(psz1
, psz2
);
111 #elif defined(__WXPM__)
112 return stricmp(psz1
, psz2
);
113 #elif defined(__UNIX__) || defined(__GNUWIN32__)
114 return strcasecmp(psz1
, psz2
);
115 #elif defined(__MWERKS__) && !defined(__INTEL__)
116 register char c1
, c2
;
118 c1
= tolower(*psz1
++);
119 c2
= tolower(*psz2
++);
120 } while ( c1
&& (c1
== c2
) );
124 // almost all compilers/libraries provide this function (unfortunately under
125 // different names), that's why we don't implement our own which will surely
126 // be more efficient than this code (uncomment to use):
128 register char c1, c2;
130 c1 = tolower(*psz1++);
131 c2 = tolower(*psz2++);
132 } while ( c1 && (c1 == c2) );
137 #error "Please define string case-insensitive compare for your OS/compiler"
138 #endif // OS/compiler
141 // ----------------------------------------------------------------------------
143 // ----------------------------------------------------------------------------
145 WXDLLEXPORT_DATA(extern const wxChar
*) wxEmptyString
;
147 // global pointer to empty string
148 WXDLLEXPORT_DATA(extern const wxChar
*) g_szNul
;
150 // return an empty wxString
151 class WXDLLEXPORT wxString
; // not yet defined
152 inline const wxString
& wxGetEmptyString() { return *(wxString
*)&g_szNul
; }
154 // ---------------------------------------------------------------------------
155 // string data prepended with some housekeeping info (used by wxString class),
156 // is never used directly (but had to be put here to allow inlining)
157 // ---------------------------------------------------------------------------
158 struct WXDLLEXPORT wxStringData
160 int nRefs
; // reference count
161 size_t nDataLength
, // actual string length
162 nAllocLength
; // allocated memory size
164 // mimics declaration 'wxChar data[nAllocLength]'
165 wxChar
* data() const { return (wxChar
*)(this + 1); }
167 // empty string has a special ref count so it's never deleted
168 bool IsEmpty() const { return (nRefs
== -1); }
169 bool IsShared() const { return (nRefs
> 1); }
172 void Lock() { if ( !IsEmpty() ) nRefs
++; }
173 void Unlock() { if ( !IsEmpty() && --nRefs
== 0) free(this); }
175 // if we had taken control over string memory (GetWriteBuf), it's
176 // intentionally put in invalid state
177 void Validate(bool b
) { nRefs
= (b
? 1 : 0); }
178 bool IsValid() const { return (nRefs
!= 0); }
181 // ---------------------------------------------------------------------------
182 // This is (yet another one) String class for C++ programmers. It doesn't use
183 // any of "advanced" C++ features (i.e. templates, exceptions, namespaces...)
184 // thus you should be able to compile it with practicaly any C++ compiler.
185 // This class uses copy-on-write technique, i.e. identical strings share the
186 // same memory as long as neither of them is changed.
188 // This class aims to be as compatible as possible with the new standard
189 // std::string class, but adds some additional functions and should be at
190 // least as efficient than the standard implementation.
192 // Performance note: it's more efficient to write functions which take "const
193 // String&" arguments than "const char *" if you assign the argument to
196 // It was compiled and tested under Win32, Linux (libc 5 & 6), Solaris 5.5.
199 // - ressource support (string tables in ressources)
200 // - more wide character (UNICODE) support
201 // - regular expressions support
202 // ---------------------------------------------------------------------------
204 #ifdef WXSTRING_IS_WXOBJECT
205 class WXDLLEXPORT wxString
: public wxObject
207 DECLARE_DYNAMIC_CLASS(wxString
)
208 #else //WXSTRING_IS_WXOBJECT
209 class WXDLLEXPORT wxString
211 #endif //WXSTRING_IS_WXOBJECT
213 friend class WXDLLEXPORT wxArrayString
;
215 // NB: special care was taken in arranging the member functions in such order
216 // that all inline functions can be effectively inlined, verify that all
217 // performace critical functions are still inlined if you change order!
219 // points to data preceded by wxStringData structure with ref count info
222 // accessor to string data
223 wxStringData
* GetStringData() const { return (wxStringData
*)m_pchData
- 1; }
225 // string (re)initialization functions
226 // initializes the string to the empty value (must be called only from
227 // ctors, use Reinit() otherwise)
228 void Init() { m_pchData
= (wxChar
*)g_szNul
; }
229 // initializaes the string with (a part of) C-string
230 void InitWith(const wxChar
*psz
, size_t nPos
= 0, size_t nLen
= wxSTRING_MAXLEN
);
231 // as Init, but also frees old data
232 void Reinit() { GetStringData()->Unlock(); Init(); }
235 // allocates memory for string of lenght nLen
236 void AllocBuffer(size_t nLen
);
237 // copies data to another string
238 void AllocCopy(wxString
&, int, int) const;
239 // effectively copies data to string
240 void AssignCopy(size_t, const wxChar
*);
242 // append a (sub)string
243 void ConcatSelf(int nLen
, const wxChar
*src
);
245 // functions called before writing to the string: they copy it if there
246 // are other references to our data (should be the only owner when writing)
247 void CopyBeforeWrite();
248 void AllocBeforeWrite(size_t);
250 // this method is not implemented - there is _no_ conversion from int to
251 // string, you're doing something wrong if the compiler wants to call it!
253 // try `s << i' or `s.Printf("%d", i)' instead
258 // constructors and destructor
259 // ctor for an empty string
260 wxString() { Init(); }
262 wxString(const wxString
& stringSrc
)
264 wxASSERT( stringSrc
.GetStringData()->IsValid() );
266 if ( stringSrc
.IsEmpty() ) {
267 // nothing to do for an empty string
271 m_pchData
= stringSrc
.m_pchData
; // share same data
272 GetStringData()->Lock(); // => one more copy
275 // string containing nRepeat copies of ch
276 wxString(wxChar ch
, size_t nRepeat
= 1);
277 // ctor takes first nLength characters from C string
278 // (default value of wxSTRING_MAXLEN means take all the string)
279 wxString(const wxChar
*psz
, size_t nLength
= wxSTRING_MAXLEN
)
280 { InitWith(psz
, 0, nLength
); }
282 // from multibyte string
283 // (NB: nLength is right now number of Unicode characters, not
284 // characters in psz! So try not to use it yet!)
285 wxString(const char *psz
, wxMBConv
& conv
= wxConvLibc
, size_t nLength
= wxSTRING_MAXLEN
);
286 // from wxWCharBuffer (i.e. return from wxGetString)
287 wxString(const wxWCharBuffer
& psz
)
288 { InitWith(psz
, 0, wxSTRING_MAXLEN
); }
290 // from C string (for compilers using unsigned char)
291 wxString(const unsigned char* psz
, size_t nLength
= wxSTRING_MAXLEN
)
292 { InitWith((const char*)psz
, 0, nLength
); }
293 // from multibyte string
294 wxString(const char *psz
, wxMBConv
& WXUNUSED(conv
), size_t nLength
= wxSTRING_MAXLEN
)
295 { InitWith(psz
, 0, nLength
); }
297 // from wide (Unicode) string
298 wxString(const wchar_t *pwz
);
301 wxString(const wxCharBuffer
& psz
)
302 { InitWith(psz
, 0, wxSTRING_MAXLEN
); }
304 // dtor is not virtual, this class must not be inherited from!
305 ~wxString() { GetStringData()->Unlock(); }
307 // generic attributes & operations
308 // as standard strlen()
309 size_t Len() const { return GetStringData()->nDataLength
; }
310 // string contains any characters?
311 bool IsEmpty() const { return Len() == 0; }
312 // empty string is "FALSE", so !str will return TRUE
313 bool operator!() const { return IsEmpty(); }
314 // empty string contents
321 wxASSERT( GetStringData()->nDataLength
== 0 );
323 // empty the string and free memory
326 if ( !GetStringData()->IsEmpty() )
329 wxASSERT( GetStringData()->nDataLength
== 0 ); // should be empty
330 wxASSERT( GetStringData()->nAllocLength
== 0 ); // and not own any memory
335 bool IsAscii() const;
337 bool IsNumber() const;
341 // data access (all indexes are 0 based)
343 wxChar
GetChar(size_t n
) const
344 { ASSERT_VALID_INDEX( n
); return m_pchData
[n
]; }
346 wxChar
& GetWritableChar(size_t n
)
347 { ASSERT_VALID_INDEX( n
); CopyBeforeWrite(); return m_pchData
[n
]; }
349 void SetChar(size_t n
, wxChar ch
)
350 { ASSERT_VALID_INDEX( n
); CopyBeforeWrite(); m_pchData
[n
] = ch
; }
352 // get last character
354 { wxASSERT( !IsEmpty() ); return m_pchData
[Len() - 1]; }
355 // get writable last character
357 { wxASSERT( !IsEmpty() ); CopyBeforeWrite(); return m_pchData
[Len()-1]; }
359 // under Unix it is tested with configure, assume it works on other
360 // platforms (there might be overloading problems if size_t and int are
362 #if !defined(__UNIX__) || wxUSE_SIZE_T_STRING_OPERATOR
363 // operator version of GetChar
364 wxChar
operator[](size_t n
) const
365 { ASSERT_VALID_INDEX( n
); return m_pchData
[n
]; }
368 // operator version of GetChar
369 wxChar
operator[](int n
) const
370 { ASSERT_VALID_INDEX( n
); return m_pchData
[n
]; }
371 // operator version of GetWritableChar
372 wxChar
& operator[](size_t n
)
373 { ASSERT_VALID_INDEX( n
); CopyBeforeWrite(); return m_pchData
[n
]; }
375 // implicit conversion to C string
376 operator const wxChar
*() const { return m_pchData
; }
377 // explicit conversion to C string (use this with printf()!)
378 const wxChar
* c_str() const { return m_pchData
; }
379 // (and this with [wx]Printf()!)
380 const wxChar
* wx_str() const { return m_pchData
; }
382 const wxChar
* GetData() const { return m_pchData
; }
384 const wxCharBuffer
mb_str(wxMBConv
& conv
= wxConvLibc
) const { return conv
.cWC2MB(m_pchData
); }
385 const wxChar
* wc_str(wxMBConv
& WXUNUSED(conv
) = wxConvLibc
) const { return m_pchData
; }
387 const wxCharBuffer
fn_str() const { return mb_str(wxConvFile
); }
389 const wxChar
* fn_str() const { return m_pchData
; }
392 const wxChar
* mb_str(wxMBConv
& WXUNUSED(conv
) = wxConvLibc
) const { return m_pchData
; }
394 const wxWCharBuffer
wc_str(wxMBConv
& conv
) const { return conv
.cMB2WC(m_pchData
); }
396 const wxChar
* fn_str() const { return m_pchData
; }
399 const wxWX2MBbuf
mbc_str() const { return mb_str(*wxConvCurrent
); }
401 // overloaded assignment
402 // from another wxString
403 wxString
& operator=(const wxString
& stringSrc
);
405 wxString
& operator=(wxChar ch
);
407 wxString
& operator=(const wxChar
*psz
);
409 // from wxWCharBuffer
410 wxString
& operator=(const wxWCharBuffer
& psz
) { return operator=((const wchar_t *)psz
); }
412 // from another kind of C string
413 wxString
& operator=(const unsigned char* psz
);
415 // from a wide string
416 wxString
& operator=(const wchar_t *pwz
);
419 wxString
& operator=(const wxCharBuffer
& psz
) { return operator=((const char *)psz
); }
422 // string concatenation
423 // in place concatenation
425 Concatenate and return the result. Note that the left to right
426 associativity of << allows to write things like "str << str1 << str2
427 << ..." (unlike with +=)
430 wxString
& operator<<(const wxString
& s
)
432 wxASSERT( s
.GetStringData()->IsValid() );
434 ConcatSelf(s
.Len(), s
);
437 // string += C string
438 wxString
& operator<<(const wxChar
*psz
)
439 { ConcatSelf(wxStrlen(psz
), psz
); return *this; }
441 wxString
& operator<<(wxChar ch
) { ConcatSelf(1, &ch
); return *this; }
444 void operator+=(const wxString
& s
) { (void)operator<<(s
); }
445 // string += C string
446 void operator+=(const wxChar
*psz
) { (void)operator<<(psz
); }
448 void operator+=(wxChar ch
) { (void)operator<<(ch
); }
450 // string += buffer (i.e. from wxGetString)
452 wxString
& operator<<(const wxWCharBuffer
& s
) { (void)operator<<((const wchar_t *)s
); return *this; }
453 void operator+=(const wxWCharBuffer
& s
) { (void)operator<<((const wchar_t *)s
); }
455 wxString
& operator<<(const wxCharBuffer
& s
) { (void)operator<<((const char *)s
); return *this; }
456 void operator+=(const wxCharBuffer
& s
) { (void)operator<<((const char *)s
); }
459 // string += C string
460 wxString
& Append(const wxChar
* psz
)
461 { ConcatSelf(wxStrlen(psz
), psz
); return *this; }
462 // append count copies of given character
463 wxString
& Append(wxChar ch
, size_t count
= 1u)
464 { wxString
str(ch
, count
); return *this << str
; }
466 // prepend a string, return the string itself
467 wxString
& Prepend(const wxString
& str
)
468 { *this = str
+ *this; return *this; }
470 // non-destructive concatenation
472 friend wxString WXDLLEXPORT
operator+(const wxString
& string1
, const wxString
& string2
);
474 friend wxString WXDLLEXPORT
operator+(const wxString
& string
, wxChar ch
);
476 friend wxString WXDLLEXPORT
operator+(wxChar ch
, const wxString
& string
);
478 friend wxString WXDLLEXPORT
operator+(const wxString
& string
, const wxChar
*psz
);
480 friend wxString WXDLLEXPORT
operator+(const wxChar
*psz
, const wxString
& string
);
482 // stream-like functions
483 // insert an int into string
484 wxString
& operator<<(int i
);
485 // insert a float into string
486 wxString
& operator<<(float f
);
487 // insert a double into string
488 wxString
& operator<<(double d
);
491 // case-sensitive comparison (returns a value < 0, = 0 or > 0)
492 int Cmp(const wxChar
*psz
) const { return wxStrcmp(c_str(), psz
); }
493 // same as Cmp() but not case-sensitive
494 int CmpNoCase(const wxChar
*psz
) const { return wxStricmp(c_str(), psz
); }
495 // test for the string equality, either considering case or not
496 // (if compareWithCase then the case matters)
497 bool IsSameAs(const wxChar
*psz
, bool compareWithCase
= TRUE
) const
498 { return (compareWithCase
? Cmp(psz
) : CmpNoCase(psz
)) == 0; }
499 // comparison with a signle character: returns TRUE if equal
500 bool IsSameAs(wxChar c
, bool compareWithCase
= TRUE
) const
502 return (Len() == 1) && (compareWithCase
? GetChar(0u) == c
503 : wxToupper(GetChar(0u)) == wxToupper(c
));
506 // simple sub-string extraction
507 // return substring starting at nFirst of length nCount (or till the end
508 // if nCount = default value)
509 wxString
Mid(size_t nFirst
, size_t nCount
= wxSTRING_MAXLEN
) const;
511 // operator version of Mid()
512 wxString
operator()(size_t start
, size_t len
) const
513 { return Mid(start
, len
); }
515 // get first nCount characters
516 wxString
Left(size_t nCount
) const;
517 // get last nCount characters
518 wxString
Right(size_t nCount
) const;
519 // get all characters before the first occurence of ch
520 // (returns the whole string if ch not found)
521 wxString
BeforeFirst(wxChar ch
) const;
522 // get all characters before the last occurence of ch
523 // (returns empty string if ch not found)
524 wxString
BeforeLast(wxChar ch
) const;
525 // get all characters after the first occurence of ch
526 // (returns empty string if ch not found)
527 wxString
AfterFirst(wxChar ch
) const;
528 // get all characters after the last occurence of ch
529 // (returns the whole string if ch not found)
530 wxString
AfterLast(wxChar ch
) const;
532 // for compatibility only, use more explicitly named functions above
533 wxString
Before(wxChar ch
) const { return BeforeLast(ch
); }
534 wxString
After(wxChar ch
) const { return AfterFirst(ch
); }
537 // convert to upper case in place, return the string itself
538 wxString
& MakeUpper();
539 // convert to upper case, return the copy of the string
540 // Here's something to remember: BC++ doesn't like returns in inlines.
541 wxString
Upper() const ;
542 // convert to lower case in place, return the string itself
543 wxString
& MakeLower();
544 // convert to lower case, return the copy of the string
545 wxString
Lower() const ;
547 // trimming/padding whitespace (either side) and truncating
548 // remove spaces from left or from right (default) side
549 wxString
& Trim(bool bFromRight
= TRUE
);
550 // add nCount copies chPad in the beginning or at the end (default)
551 wxString
& Pad(size_t nCount
, wxChar chPad
= _T(' '), bool bFromRight
= TRUE
);
552 // truncate string to given length
553 wxString
& Truncate(size_t uiLen
);
555 // searching and replacing
556 // searching (return starting index, or -1 if not found)
557 int Find(wxChar ch
, bool bFromEnd
= FALSE
) const; // like strchr/strrchr
558 // searching (return starting index, or -1 if not found)
559 int Find(const wxChar
*pszSub
) const; // like strstr
560 // replace first (or all of bReplaceAll) occurences of substring with
561 // another string, returns the number of replacements made
562 size_t Replace(const wxChar
*szOld
,
564 bool bReplaceAll
= TRUE
);
566 // check if the string contents matches a mask containing '*' and '?'
567 bool Matches(const wxChar
*szMask
) const;
569 // formated input/output
570 // as sprintf(), returns the number of characters written or < 0 on error
571 int Printf(const wxChar
*pszFormat
, ...);
572 // as vprintf(), returns the number of characters written or < 0 on error
573 int PrintfV(const wxChar
* pszFormat
, va_list argptr
);
575 // raw access to string memory
576 // ensure that string has space for at least nLen characters
577 // only works if the data of this string is not shared
578 void Alloc(size_t nLen
);
579 // minimize the string's memory
580 // only works if the data of this string is not shared
582 // get writable buffer of at least nLen bytes. Unget() *must* be called
583 // a.s.a.p. to put string back in a reasonable state!
584 wxChar
*GetWriteBuf(size_t nLen
);
585 // call this immediately after GetWriteBuf() has been used
586 void UngetWriteBuf();
588 // wxWindows version 1 compatibility functions
591 wxString
SubString(size_t from
, size_t to
) const
592 { return Mid(from
, (to
- from
+ 1)); }
593 // values for second parameter of CompareTo function
594 enum caseCompare
{exact
, ignoreCase
};
595 // values for first parameter of Strip function
596 enum stripType
{leading
= 0x1, trailing
= 0x2, both
= 0x3};
599 int sprintf(const wxChar
*pszFormat
, ...);
602 inline int CompareTo(const wxChar
* psz
, caseCompare cmp
= exact
) const
603 { return cmp
== exact
? Cmp(psz
) : CmpNoCase(psz
); }
606 size_t Length() const { return Len(); }
607 // Count the number of characters
608 int Freq(wxChar ch
) const;
610 void LowerCase() { MakeLower(); }
612 void UpperCase() { MakeUpper(); }
613 // use Trim except that it doesn't change this string
614 wxString
Strip(stripType w
= trailing
) const;
616 // use Find (more general variants not yet supported)
617 size_t Index(const wxChar
* psz
) const { return Find(psz
); }
618 size_t Index(wxChar ch
) const { return Find(ch
); }
620 wxString
& Remove(size_t pos
) { return Truncate(pos
); }
621 wxString
& RemoveLast() { return Truncate(Len() - 1); }
623 wxString
& Remove(size_t nStart
, size_t nLen
) { return erase( nStart
, nLen
); }
626 int First( const wxChar ch
) const { return Find(ch
); }
627 int First( const wxChar
* psz
) const { return Find(psz
); }
628 int First( const wxString
&str
) const { return Find(str
); }
629 int Last( const wxChar ch
) const { return Find(ch
, TRUE
); }
630 bool Contains(const wxString
& str
) const { return Find(str
) != -1; }
633 bool IsNull() const { return IsEmpty(); }
635 #ifdef wxSTD_STRING_COMPATIBILITY
636 // std::string compatibility functions
639 typedef wxChar value_type
;
640 typedef const value_type
*const_iterator
;
642 // an 'invalid' value for string index
643 static const size_t npos
;
646 // take nLen chars starting at nPos
647 wxString(const wxString
& str
, size_t nPos
, size_t nLen
)
649 wxASSERT( str
.GetStringData()->IsValid() );
650 InitWith(str
.c_str(), nPos
, nLen
== npos
? 0 : nLen
);
652 // take all characters from pStart to pEnd
653 wxString(const void *pStart
, const void *pEnd
);
655 // lib.string.capacity
656 // return the length of the string
657 size_t size() const { return Len(); }
658 // return the length of the string
659 size_t length() const { return Len(); }
660 // return the maximum size of the string
661 size_t max_size() const { return wxSTRING_MAXLEN
; }
662 // resize the string, filling the space with c if c != 0
663 void resize(size_t nSize
, wxChar ch
= _T('\0'));
664 // delete the contents of the string
665 void clear() { Empty(); }
666 // returns true if the string is empty
667 bool empty() const { return IsEmpty(); }
670 // return the character at position n
671 wxChar
at(size_t n
) const { return GetChar(n
); }
672 // returns the writable character at position n
673 wxChar
& at(size_t n
) { return GetWritableChar(n
); }
675 // first valid index position
676 const_iterator
begin() const { return wx_str(); }
677 // position one after the last valid one
678 const_iterator
end() const { return wx_str() + length(); }
680 // lib.string.modifiers
682 wxString
& append(const wxString
& str
)
683 { *this += str
; return *this; }
684 // append elements str[pos], ..., str[pos+n]
685 wxString
& append(const wxString
& str
, size_t pos
, size_t n
)
686 { ConcatSelf(n
, str
.c_str() + pos
); return *this; }
687 // append first n (or all if n == npos) characters of sz
688 wxString
& append(const wxChar
*sz
, size_t n
= npos
)
689 { ConcatSelf(n
== npos
? wxStrlen(sz
) : n
, sz
); return *this; }
691 // append n copies of ch
692 wxString
& append(size_t n
, wxChar ch
) { return Pad(n
, ch
); }
694 // same as `this_string = str'
695 wxString
& assign(const wxString
& str
) { return (*this) = str
; }
696 // same as ` = str[pos..pos + n]
697 wxString
& assign(const wxString
& str
, size_t pos
, size_t n
)
698 { return *this = wxString((const wxChar
*)str
+ pos
, n
); }
699 // same as `= first n (or all if n == npos) characters of sz'
700 wxString
& assign(const wxChar
*sz
, size_t n
= npos
)
701 { return *this = wxString(sz
, n
); }
702 // same as `= n copies of ch'
703 wxString
& assign(size_t n
, wxChar ch
)
704 { return *this = wxString(ch
, n
); }
706 // insert another string
707 wxString
& insert(size_t nPos
, const wxString
& str
);
708 // insert n chars of str starting at nStart (in str)
709 wxString
& insert(size_t nPos
, const wxString
& str
, size_t nStart
, size_t n
)
710 { return insert(nPos
, wxString((const wxChar
*)str
+ nStart
, n
)); }
712 // insert first n (or all if n == npos) characters of sz
713 wxString
& insert(size_t nPos
, const wxChar
*sz
, size_t n
= npos
)
714 { return insert(nPos
, wxString(sz
, n
)); }
715 // insert n copies of ch
716 wxString
& insert(size_t nPos
, size_t n
, wxChar ch
)
717 { return insert(nPos
, wxString(ch
, n
)); }
719 // delete characters from nStart to nStart + nLen
720 wxString
& erase(size_t nStart
= 0, size_t nLen
= npos
);
722 // replaces the substring of length nLen starting at nStart
723 wxString
& replace(size_t nStart
, size_t nLen
, const wxChar
* sz
);
724 // replaces the substring with nCount copies of ch
725 wxString
& replace(size_t nStart
, size_t nLen
, size_t nCount
, wxChar ch
);
726 // replaces a substring with another substring
727 wxString
& replace(size_t nStart
, size_t nLen
,
728 const wxString
& str
, size_t nStart2
, size_t nLen2
);
729 // replaces the substring with first nCount chars of sz
730 wxString
& replace(size_t nStart
, size_t nLen
,
731 const wxChar
* sz
, size_t nCount
);
734 void swap(wxString
& str
);
736 // All find() functions take the nStart argument which specifies the
737 // position to start the search on, the default value is 0. All functions
738 // return npos if there were no match.
741 size_t find(const wxString
& str
, size_t nStart
= 0) const;
743 // VC++ 1.5 can't cope with this syntax.
744 #if !defined(__VISUALC__) || defined(__WIN32__)
745 // find first n characters of sz
746 size_t find(const wxChar
* sz
, size_t nStart
= 0, size_t n
= npos
) const;
749 // Gives a duplicate symbol (presumably a case-insensitivity problem)
750 #if !defined(__BORLANDC__)
751 // find the first occurence of character ch after nStart
752 size_t find(wxChar ch
, size_t nStart
= 0) const;
754 // rfind() family is exactly like find() but works right to left
756 // as find, but from the end
757 size_t rfind(const wxString
& str
, size_t nStart
= npos
) const;
759 // VC++ 1.5 can't cope with this syntax.
760 #if !defined(__VISUALC__) || defined(__WIN32__)
761 // as find, but from the end
762 size_t rfind(const wxChar
* sz
, size_t nStart
= npos
,
763 size_t n
= npos
) const;
764 // as find, but from the end
765 size_t rfind(wxChar ch
, size_t nStart
= npos
) const;
768 // find first/last occurence of any character in the set
770 // as strpbrk() but starts at nStart, returns npos if not found
771 size_t find_first_of(const wxString
& str
, size_t nStart
= 0) const
772 { return find_first_of(str
.c_str(), nStart
); }
774 size_t find_first_of(const wxChar
* sz
, size_t nStart
= 0) const;
775 // same as find(char, size_t)
776 size_t find_first_of(wxChar c
, size_t nStart
= 0) const
777 { return find(c
, nStart
); }
778 // find the last (starting from nStart) char from str in this string
779 size_t find_last_of (const wxString
& str
, size_t nStart
= npos
) const
780 { return find_last_of(str
.c_str(), nStart
); }
782 size_t find_last_of (const wxChar
* sz
, size_t nStart
= npos
) const;
784 size_t find_last_of(wxChar c
, size_t nStart
= npos
) const
785 { return rfind(c
, nStart
); }
787 // find first/last occurence of any character not in the set
789 // as strspn() (starting from nStart), returns npos on failure
790 size_t find_first_not_of(const wxString
& str
, size_t nStart
= 0) const
791 { return find_first_not_of(str
.c_str(), nStart
); }
793 size_t find_first_not_of(const wxChar
* sz
, size_t nStart
= 0) const;
795 size_t find_first_not_of(wxChar ch
, size_t nStart
= 0) const;
797 size_t find_last_not_of(const wxString
& str
, size_t nStart
=npos
) const;
799 size_t find_last_not_of(const wxChar
* sz
, size_t nStart
= npos
) const;
801 size_t find_last_not_of(wxChar ch
, size_t nStart
= npos
) const;
803 // All compare functions return -1, 0 or 1 if the [sub]string is less,
804 // equal or greater than the compare() argument.
806 // just like strcmp()
807 int compare(const wxString
& str
) const { return Cmp(str
); }
808 // comparison with a substring
809 int compare(size_t nStart
, size_t nLen
, const wxString
& str
) const;
810 // comparison of 2 substrings
811 int compare(size_t nStart
, size_t nLen
,
812 const wxString
& str
, size_t nStart2
, size_t nLen2
) const;
813 // just like strcmp()
814 int compare(const wxChar
* sz
) const { return Cmp(sz
); }
815 // substring comparison with first nCount characters of sz
816 int compare(size_t nStart
, size_t nLen
,
817 const wxChar
* sz
, size_t nCount
= npos
) const;
819 // substring extraction
820 wxString
substr(size_t nStart
= 0, size_t nLen
= npos
) const;
821 #endif // wxSTD_STRING_COMPATIBILITY
824 // ----------------------------------------------------------------------------
825 // The string array uses it's knowledge of internal structure of the wxString
826 // class to optimize string storage. Normally, we would store pointers to
827 // string, but as wxString is, in fact, itself a pointer (sizeof(wxString) is
828 // sizeof(char *)) we store these pointers instead. The cast to "wxString *" is
829 // really all we need to turn such pointer into a string!
831 // Of course, it can be called a dirty hack, but we use twice less memory and
832 // this approach is also more speed efficient, so it's probably worth it.
834 // Usage notes: when a string is added/inserted, a new copy of it is created,
835 // so the original string may be safely deleted. When a string is retrieved
836 // from the array (operator[] or Item() method), a reference is returned.
837 // ----------------------------------------------------------------------------
838 class WXDLLEXPORT wxArrayString
841 // type of function used by wxArrayString::Sort()
842 typedef int (*CompareFunction
)(const wxString
& first
,
843 const wxString
& second
);
845 // constructors and destructor
849 wxArrayString(const wxArrayString
& array
);
850 // assignment operator
851 wxArrayString
& operator=(const wxArrayString
& src
);
852 // not virtual, this class should not be derived from
856 // empties the list, but doesn't release memory
858 // empties the list and releases memory
860 // preallocates memory for given number of items
861 void Alloc(size_t nCount
);
862 // minimzes the memory usage (by freeing all extra memory)
866 // number of elements in the array
867 size_t GetCount() const { return m_nCount
; }
869 bool IsEmpty() const { return m_nCount
== 0; }
870 // number of elements in the array (GetCount is preferred API)
871 size_t Count() const { return m_nCount
; }
873 // items access (range checking is done in debug version)
874 // get item at position uiIndex
875 wxString
& Item(size_t nIndex
) const
876 { wxASSERT( nIndex
< m_nCount
); return *(wxString
*)&(m_pItems
[nIndex
]); }
878 wxString
& operator[](size_t nIndex
) const { return Item(nIndex
); }
880 wxString
& Last() const { wxASSERT( !IsEmpty() ); return Item(Count() - 1); }
883 // Search the element in the array, starting from the beginning if
884 // bFromEnd is FALSE or from end otherwise. If bCase, comparison is case
885 // sensitive (default). Returns index of the first item matched or
887 int Index (const wxChar
*sz
, bool bCase
= TRUE
, bool bFromEnd
= FALSE
) const;
888 // add new element at the end
889 void Add(const wxString
& str
);
890 // add new element at given position
891 void Insert(const wxString
& str
, size_t uiIndex
);
892 // remove first item matching this value
893 void Remove(const wxChar
*sz
);
894 // remove item by index
895 void Remove(size_t nIndex
);
898 // sort array elements in alphabetical order (or reversed alphabetical
899 // order if reverseOrder parameter is TRUE)
900 void Sort(bool reverseOrder
= FALSE
);
901 // sort array elements using specified comparaison function
902 void Sort(CompareFunction compareFunction
);
905 void Grow(); // makes array bigger if needed
906 void Free(); // free the string stored
908 void DoSort(); // common part of all Sort() variants
910 size_t m_nSize
, // current size of the array
911 m_nCount
; // current number of elements
913 wxChar
**m_pItems
; // pointer to data
916 // ---------------------------------------------------------------------------
917 // wxString comparison functions: operator versions are always case sensitive
918 // ---------------------------------------------------------------------------
921 inline bool operator==(const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) == 0); }
923 inline bool operator==(const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) == 0); }
925 inline bool operator==(const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) == 0); }
927 inline bool operator!=(const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) != 0); }
929 inline bool operator!=(const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) != 0); }
931 inline bool operator!=(const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) != 0); }
933 inline bool operator< (const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) < 0); }
935 inline bool operator< (const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) < 0); }
937 inline bool operator< (const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) > 0); }
939 inline bool operator> (const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) > 0); }
941 inline bool operator> (const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) > 0); }
943 inline bool operator> (const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) < 0); }
945 inline bool operator<=(const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) <= 0); }
947 inline bool operator<=(const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) <= 0); }
949 inline bool operator<=(const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) >= 0); }
951 inline bool operator>=(const wxString
& s1
, const wxString
& s2
) { return (s1
.Cmp(s2
) >= 0); }
953 inline bool operator>=(const wxString
& s1
, const wxChar
* s2
) { return (s1
.Cmp(s2
) >= 0); }
955 inline bool operator>=(const wxChar
* s1
, const wxString
& s2
) { return (s2
.Cmp(s1
) <= 0); }
957 // comparison with char
958 inline bool operator==(wxChar c
, const wxString
& s
) { return s
.IsSameAs(c
); }
959 inline bool operator==(const wxString
& s
, wxChar c
) { return s
.IsSameAs(c
); }
960 inline bool operator!=(wxChar c
, const wxString
& s
) { return !s
.IsSameAs(c
); }
961 inline bool operator!=(const wxString
& s
, wxChar c
) { return !s
.IsSameAs(c
); }
964 inline bool operator==(const wxString
& s1
, const wxWCharBuffer
& s2
)
965 { return (s1
.Cmp((const wchar_t *)s2
) == 0); }
966 inline bool operator==(const wxWCharBuffer
& s1
, const wxString
& s2
)
967 { return (s2
.Cmp((const wchar_t *)s1
) == 0); }
969 inline bool operator==(const wxString
& s1
, const wxCharBuffer
& s2
)
970 { return (s1
.Cmp((const char *)s2
) == 0); }
971 inline bool operator==(const wxCharBuffer
& s1
, const wxString
& s2
)
972 { return (s2
.Cmp((const char *)s1
) == 0); }
975 wxString WXDLLEXPORT
operator+(const wxString
& string1
, const wxString
& string2
);
976 wxString WXDLLEXPORT
operator+(const wxString
& string
, wxChar ch
);
977 wxString WXDLLEXPORT
operator+(wxChar ch
, const wxString
& string
);
978 wxString WXDLLEXPORT
operator+(const wxString
& string
, const wxChar
*psz
);
979 wxString WXDLLEXPORT
operator+(const wxChar
*psz
, const wxString
& string
);
981 inline wxString WXDLLEXPORT
operator+(const wxString
& string
, const wxWCharBuffer
& buf
)
982 { return string
+ (const wchar_t *)buf
; }
983 inline wxString WXDLLEXPORT
operator+(const wxWCharBuffer
& buf
, const wxString
& string
)
984 { return (const wchar_t *)buf
+ string
; }
986 inline wxString WXDLLEXPORT
operator+(const wxString
& string
, const wxCharBuffer
& buf
)
987 { return string
+ (const char *)buf
; }
988 inline wxString WXDLLEXPORT
operator+(const wxCharBuffer
& buf
, const wxString
& string
)
989 { return (const char *)buf
+ string
; }
992 // ---------------------------------------------------------------------------
993 // Implementation only from here until the end of file
994 // ---------------------------------------------------------------------------
996 #if defined(wxSTD_STRING_COMPATIBILITY) && wxUSE_STD_IOSTREAM
998 #include "wx/ioswrap.h"
1000 WXDLLEXPORT istream
& operator>>(istream
& is
, wxString
& str
);
1002 #endif // wxSTD_STRING_COMPATIBILITY
1004 #endif // _WX_WXSTRINGH__