1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/string.cpp
3 // Purpose: wxString class
4 // Author: Vadim Zeitlin, Ryan Norton
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // (c) 2004 Ryan Norton <wxprojects@comcast.net>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
15 * 1) all empty strings use g_strEmpty, nRefs = -1 (set in Init())
16 * 2) AllocBuffer() sets nRefs to 1, Lock() increments it by one
17 * 3) Unlock() decrements nRefs and frees memory if it goes to 0
20 // ===========================================================================
21 // headers, declarations, constants
22 // ===========================================================================
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/string.h"
48 #include <wx/hashmap.h>
50 // string handling functions used by wxString:
51 #if wxUSE_UNICODE_UTF8
52 #define wxStringMemcpy memcpy
53 #define wxStringMemcmp memcmp
54 #define wxStringMemchr memchr
55 #define wxStringStrlen strlen
57 #define wxStringMemcpy wxTmemcpy
58 #define wxStringMemcmp wxTmemcmp
59 #define wxStringMemchr wxTmemchr
60 #define wxStringStrlen wxStrlen
64 // ---------------------------------------------------------------------------
65 // static class variables definition
66 // ---------------------------------------------------------------------------
68 //According to STL _must_ be a -1 size_t
69 const size_t wxString::npos
= (size_t) -1;
71 // ----------------------------------------------------------------------------
73 // ----------------------------------------------------------------------------
75 #if wxUSE_STD_IOSTREAM
79 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxCStrData
& str
)
81 // FIXME-UTF8: always, not only if wxUSE_UNICODE
82 #if wxUSE_UNICODE && !defined(__BORLANDC__)
83 return os
<< str
.AsWChar();
85 return os
<< str
.AsChar();
89 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxString
& str
)
91 return os
<< str
.c_str();
94 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxCharBuffer
& str
)
96 return os
<< str
.data();
100 wxSTD ostream
& operator<<(wxSTD ostream
& os
, const wxWCharBuffer
& str
)
102 return os
<< str
.data();
106 #endif // wxUSE_STD_IOSTREAM
108 // ----------------------------------------------------------------------------
109 // wxCStrData converted strings caching
110 // ----------------------------------------------------------------------------
112 // FIXME-UTF8: temporarily disabled because it doesn't work with global
113 // string objects; re-enable after fixing this bug and benchmarking
114 // performance to see if using a hash is a good idea at all
117 // For backward compatibility reasons, it must be possible to assign the value
118 // returned by wxString::c_str() to a char* or wchar_t* variable and work with
119 // it. Returning wxCharBuffer from (const char*)c_str() wouldn't do the trick,
120 // because the memory would be freed immediately, but it has to be valid as long
121 // as the string is not modified, so that code like this still works:
123 // const wxChar *s = str.c_str();
124 // while ( s ) { ... }
126 // FIXME-UTF8: not thread safe!
127 // FIXME-UTF8: we currently clear the cached conversion only when the string is
128 // destroyed, but we should do it when the string is modified, to
129 // keep memory usage down
130 // FIXME-UTF8: we do the conversion every time As[W]Char() is called, but if we
131 // invalidated the cache on every change, we could keep the previous
133 // FIXME-UTF8: add tracing of usage of these two methods - new code is supposed
134 // to use mb_str() or wc_str() instead of (const [w]char*)c_str()
137 static inline void DeleteStringFromConversionCache(T
& hash
, const wxString
*s
)
139 typename
T::iterator i
= hash
.find(wxConstCast(s
, wxString
));
140 if ( i
!= hash
.end() )
148 // NB: non-STL implementation doesn't compile with "const wxString*" key type,
149 // so we have to use wxString* here and const-cast when used
150 WX_DECLARE_HASH_MAP(wxString
*, char*, wxPointerHash
, wxPointerEqual
,
151 wxStringCharConversionCache
);
152 static wxStringCharConversionCache gs_stringsCharCache
;
154 const char* wxCStrData::AsChar() const
156 // remove previously cache value, if any (see FIXMEs above):
157 DeleteStringFromConversionCache(gs_stringsCharCache
, m_str
);
159 // convert the string and keep it:
160 const char *s
= gs_stringsCharCache
[wxConstCast(m_str
, wxString
)] =
161 m_str
->mb_str().release();
165 #endif // wxUSE_UNICODE
167 #if !wxUSE_UNICODE_WCHAR
168 WX_DECLARE_HASH_MAP(wxString
*, wchar_t*, wxPointerHash
, wxPointerEqual
,
169 wxStringWCharConversionCache
);
170 static wxStringWCharConversionCache gs_stringsWCharCache
;
172 const wchar_t* wxCStrData::AsWChar() const
174 // remove previously cache value, if any (see FIXMEs above):
175 DeleteStringFromConversionCache(gs_stringsWCharCache
, m_str
);
177 // convert the string and keep it:
178 const wchar_t *s
= gs_stringsWCharCache
[wxConstCast(m_str
, wxString
)] =
179 m_str
->wc_str().release();
183 #endif // !wxUSE_UNICODE_WCHAR
185 wxString::~wxString()
188 // FIXME-UTF8: do this only if locale is not UTF8 if wxUSE_UNICODE_UTF8
189 DeleteStringFromConversionCache(gs_stringsCharCache
, this);
191 #if !wxUSE_UNICODE_WCHAR
192 DeleteStringFromConversionCache(gs_stringsWCharCache
, this);
198 const char* wxCStrData::AsChar() const
200 wxString
*str
= wxConstCast(m_str
, wxString
);
201 // convert the string and keep it:
202 str
->m_convertedToChar
= str
->mb_str().release();
203 return str
->m_convertedToChar
+ m_offset
;
205 #endif // wxUSE_UNICODE
207 #if !wxUSE_UNICODE_WCHAR
208 const wchar_t* wxCStrData::AsWChar() const
210 wxString
*str
= wxConstCast(m_str
, wxString
);
211 // convert the string and keep it:
212 str
->m_convertedToWChar
= str
->wc_str().release();
213 return str
->m_convertedToWChar
+ m_offset
;
215 #endif // !wxUSE_UNICODE_WCHAR
217 // ===========================================================================
218 // wxString class core
219 // ===========================================================================
221 // ---------------------------------------------------------------------------
222 // construction and conversion
223 // ---------------------------------------------------------------------------
227 wxString::SubstrBufFromMB
wxString::ConvertStr(const char *psz
, size_t nLength
,
228 const wxMBConv
& conv
)
231 if ( !psz
|| nLength
== 0 )
232 return SubstrBufFromMB();
234 if ( nLength
== npos
)
238 wxWCharBuffer
wcBuf(conv
.cMB2WC(psz
, nLength
, &wcLen
));
240 return SubstrBufFromMB();
242 return SubstrBufFromMB(wcBuf
, wcLen
);
246 wxString::SubstrBufFromWC
wxString::ConvertStr(const wchar_t *pwz
, size_t nLength
,
247 const wxMBConv
& conv
)
250 if ( !pwz
|| nLength
== 0 )
251 return SubstrBufFromWC();
253 if ( nLength
== npos
)
257 wxCharBuffer
mbBuf(conv
.cWC2MB(pwz
, nLength
, &mbLen
));
259 return SubstrBufFromWC();
261 return SubstrBufFromWC(mbBuf
, mbLen
);
268 //Convert wxString in Unicode mode to a multi-byte string
269 const wxCharBuffer
wxString::mb_str(const wxMBConv
& conv
) const
271 return conv
.cWC2MB(c_str(), length() + 1 /* size, not length */, NULL
);
278 //Converts this string to a wide character string if unicode
279 //mode is not enabled and wxUSE_WCHAR_T is enabled
280 const wxWCharBuffer
wxString::wc_str(const wxMBConv
& conv
) const
282 return conv
.cMB2WC(c_str(), length() + 1 /* size, not length */, NULL
);
285 #endif // wxUSE_WCHAR_T
287 #endif // Unicode/ANSI
289 // shrink to minimal size (releasing extra memory)
290 bool wxString::Shrink()
292 wxString
tmp(begin(), end());
294 return tmp
.length() == length();
297 // deprecated compatibility code:
298 #if WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8
299 wxChar
*wxString::GetWriteBuf(size_t nLen
)
301 return DoGetWriteBuf(nLen
);
304 void wxString::UngetWriteBuf()
309 void wxString::UngetWriteBuf(size_t nLen
)
311 DoUngetWriteBuf(nLen
);
313 #endif // WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8
316 // ---------------------------------------------------------------------------
318 // ---------------------------------------------------------------------------
320 // all functions are inline in string.h
322 // ---------------------------------------------------------------------------
323 // concatenation operators
324 // ---------------------------------------------------------------------------
327 * concatenation functions come in 5 flavours:
329 * char + string and string + char
330 * C str + string and string + C str
333 wxString
operator+(const wxString
& str1
, const wxString
& str2
)
335 #if !wxUSE_STL_BASED_WXSTRING
336 wxASSERT( str1
.IsValid() );
337 wxASSERT( str2
.IsValid() );
346 wxString
operator+(const wxString
& str
, wxUniChar ch
)
348 #if !wxUSE_STL_BASED_WXSTRING
349 wxASSERT( str
.IsValid() );
358 wxString
operator+(wxUniChar ch
, const wxString
& str
)
360 #if !wxUSE_STL_BASED_WXSTRING
361 wxASSERT( str
.IsValid() );
370 wxString
operator+(const wxString
& str
, const char *psz
)
372 #if !wxUSE_STL_BASED_WXSTRING
373 wxASSERT( str
.IsValid() );
377 if ( !s
.Alloc(strlen(psz
) + str
.length()) ) {
378 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
386 wxString
operator+(const wxString
& str
, const wchar_t *pwz
)
388 #if !wxUSE_STL_BASED_WXSTRING
389 wxASSERT( str
.IsValid() );
393 if ( !s
.Alloc(wxWcslen(pwz
) + str
.length()) ) {
394 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
402 wxString
operator+(const char *psz
, const wxString
& str
)
404 #if !wxUSE_STL_BASED_WXSTRING
405 wxASSERT( str
.IsValid() );
409 if ( !s
.Alloc(strlen(psz
) + str
.length()) ) {
410 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
418 wxString
operator+(const wchar_t *pwz
, const wxString
& str
)
420 #if !wxUSE_STL_BASED_WXSTRING
421 wxASSERT( str
.IsValid() );
425 if ( !s
.Alloc(wxWcslen(pwz
) + str
.length()) ) {
426 wxFAIL_MSG( _T("out of memory in wxString::operator+") );
434 // ---------------------------------------------------------------------------
436 // ---------------------------------------------------------------------------
438 #ifdef HAVE_STD_STRING_COMPARE
440 // NB: Comparison code (both if HAVE_STD_STRING_COMPARE and if not) works with
441 // UTF-8 encoded strings too, thanks to UTF-8's design which allows us to
442 // sort strings in characters code point order by sorting the byte sequence
443 // in byte values order (i.e. what strcmp() and memcmp() do).
445 int wxString::compare(const wxString
& str
) const
447 return m_impl
.compare(str
.m_impl
);
450 int wxString::compare(size_t nStart
, size_t nLen
,
451 const wxString
& str
) const
454 PosLenToImpl(nStart
, nLen
, &pos
, &len
);
455 return m_impl
.compare(pos
, len
, str
.m_impl
);
458 int wxString::compare(size_t nStart
, size_t nLen
,
460 size_t nStart2
, size_t nLen2
) const
463 PosLenToImpl(nStart
, nLen
, &pos
, &len
);
466 str
.PosLenToImpl(nStart2
, nLen2
, &pos2
, &len2
);
468 return m_impl
.compare(pos
, len
, str
.m_impl
, pos2
, len2
);
471 int wxString::compare(const char* sz
) const
473 return m_impl
.compare(ImplStr(sz
));
476 int wxString::compare(const wchar_t* sz
) const
478 return m_impl
.compare(ImplStr(sz
));
481 int wxString::compare(size_t nStart
, size_t nLen
,
482 const char* sz
, size_t nCount
) const
485 PosLenToImpl(nStart
, nLen
, &pos
, &len
);
487 SubstrBufFromMB
str(ImplStr(sz
, nCount
));
489 return m_impl
.compare(pos
, len
, str
.data
, str
.len
);
492 int wxString::compare(size_t nStart
, size_t nLen
,
493 const wchar_t* sz
, size_t nCount
) const
496 PosLenToImpl(nStart
, nLen
, &pos
, &len
);
498 SubstrBufFromWC
str(ImplStr(sz
, nCount
));
500 return m_impl
.compare(pos
, len
, str
.data
, str
.len
);
503 #else // !HAVE_STD_STRING_COMPARE
505 static inline int wxDoCmp(const wxStringCharType
* s1
, size_t l1
,
506 const wxStringCharType
* s2
, size_t l2
)
509 return wxStringMemcmp(s1
, s2
, l1
);
512 int ret
= wxStringMemcmp(s1
, s2
, l1
);
513 return ret
== 0 ? -1 : ret
;
517 int ret
= wxStringMemcmp(s1
, s2
, l2
);
518 return ret
== 0 ? +1 : ret
;
522 int wxString::compare(const wxString
& str
) const
524 return ::wxDoCmp(m_impl
.data(), m_impl
.length(),
525 str
.m_impl
.data(), str
.m_impl
.length());
528 int wxString::compare(size_t nStart
, size_t nLen
,
529 const wxString
& str
) const
531 wxASSERT(nStart
<= length());
532 size_type strLen
= length() - nStart
;
533 nLen
= strLen
< nLen
? strLen
: nLen
;
536 PosLenToImpl(nStart
, nLen
, &pos
, &len
);
538 return ::wxDoCmp(m_impl
.data() + pos
, len
,
539 str
.m_impl
.data(), str
.m_impl
.length());
542 int wxString::compare(size_t nStart
, size_t nLen
,
544 size_t nStart2
, size_t nLen2
) const
546 wxASSERT(nStart
<= length());
547 wxASSERT(nStart2
<= str
.length());
548 size_type strLen
= length() - nStart
,
549 strLen2
= str
.length() - nStart2
;
550 nLen
= strLen
< nLen
? strLen
: nLen
;
551 nLen2
= strLen2
< nLen2
? strLen2
: nLen2
;
554 PosLenToImpl(nStart
, nLen
, &pos
, &len
);
556 str
.PosLenToImpl(nStart2
, nLen2
, &pos2
, &len2
);
558 return ::wxDoCmp(m_impl
.data() + pos
, len
,
559 str
.m_impl
.data() + pos2
, len2
);
562 int wxString::compare(const char* sz
) const
564 SubstrBufFromMB
str(ImplStr(sz
, npos
));
565 if ( str
.len
== npos
)
566 str
.len
= wxStringStrlen(str
.data
);
567 return ::wxDoCmp(m_impl
.data(), m_impl
.length(), str
.data
, str
.len
);
570 int wxString::compare(const wchar_t* sz
) const
572 SubstrBufFromWC
str(ImplStr(sz
, npos
));
573 if ( str
.len
== npos
)
574 str
.len
= wxStringStrlen(str
.data
);
575 return ::wxDoCmp(m_impl
.data(), m_impl
.length(), str
.data
, str
.len
);
578 int wxString::compare(size_t nStart
, size_t nLen
,
579 const char* sz
, size_t nCount
) const
581 wxASSERT(nStart
<= length());
582 size_type strLen
= length() - nStart
;
583 nLen
= strLen
< nLen
? strLen
: nLen
;
586 PosLenToImpl(nStart
, nLen
, &pos
, &len
);
588 SubstrBufFromMB
str(ImplStr(sz
, nCount
));
589 if ( str
.len
== npos
)
590 str
.len
= wxStringStrlen(str
.data
);
592 return ::wxDoCmp(m_impl
.data() + pos
, len
, str
.data
, str
.len
);
595 int wxString::compare(size_t nStart
, size_t nLen
,
596 const wchar_t* sz
, size_t nCount
) const
598 wxASSERT(nStart
<= length());
599 size_type strLen
= length() - nStart
;
600 nLen
= strLen
< nLen
? strLen
: nLen
;
603 PosLenToImpl(nStart
, nLen
, &pos
, &len
);
605 SubstrBufFromWC
str(ImplStr(sz
, nCount
));
606 if ( str
.len
== npos
)
607 str
.len
= wxStringStrlen(str
.data
);
609 return ::wxDoCmp(m_impl
.data() + pos
, len
, str
.data
, str
.len
);
612 #endif // HAVE_STD_STRING_COMPARE/!HAVE_STD_STRING_COMPARE
615 // ---------------------------------------------------------------------------
616 // find_{first,last}_[not]_of functions
617 // ---------------------------------------------------------------------------
619 #if !wxUSE_STL_BASED_WXSTRING || wxUSE_UNICODE_UTF8
621 // NB: All these functions are implemented with the argument being wxChar*,
622 // i.e. widechar string in any Unicode build, even though native string
623 // representation is char* in the UTF-8 build. This is because we couldn't
624 // use memchr() to determine if a character is in a set encoded as UTF-8.
626 size_t wxString::find_first_of(const wxChar
* sz
, size_t nStart
) const
628 return find_first_of(sz
, nStart
, wxStrlen(sz
));
631 size_t wxString::find_first_not_of(const wxChar
* sz
, size_t nStart
) const
633 return find_first_not_of(sz
, nStart
, wxStrlen(sz
));
636 size_t wxString::find_first_of(const wxChar
* sz
, size_t nStart
, size_t n
) const
638 wxASSERT_MSG( nStart
<= length(), _T("invalid index") );
641 for ( const_iterator i
= begin() + nStart
; i
!= end(); ++idx
, ++i
)
643 if ( wxTmemchr(sz
, *i
, n
) )
650 size_t wxString::find_first_not_of(const wxChar
* sz
, size_t nStart
, size_t n
) const
652 wxASSERT_MSG( nStart
<= length(), _T("invalid index") );
655 for ( const_iterator i
= begin() + nStart
; i
!= end(); ++idx
, ++i
)
657 if ( !wxTmemchr(sz
, *i
, n
) )
665 size_t wxString::find_last_of(const wxChar
* sz
, size_t nStart
) const
667 return find_last_of(sz
, nStart
, wxStrlen(sz
));
670 size_t wxString::find_last_not_of(const wxChar
* sz
, size_t nStart
) const
672 return find_last_not_of(sz
, nStart
, wxStrlen(sz
));
675 size_t wxString::find_last_of(const wxChar
* sz
, size_t nStart
, size_t n
) const
677 size_t len
= length();
679 if ( nStart
== npos
)
685 wxASSERT_MSG( nStart
<= len
, _T("invalid index") );
689 for ( const_reverse_iterator i
= rbegin() + (len
- nStart
- 1);
690 i
!= rend(); --idx
, ++i
)
692 if ( wxTmemchr(sz
, *i
, n
) )
699 size_t wxString::find_last_not_of(const wxChar
* sz
, size_t nStart
, size_t n
) const
701 size_t len
= length();
703 if ( nStart
== npos
)
709 wxASSERT_MSG( nStart
<= len
, _T("invalid index") );
713 for ( const_reverse_iterator i
= rbegin() + (len
- nStart
- 1);
714 i
!= rend(); --idx
, ++i
)
716 if ( !wxTmemchr(sz
, *i
, n
) )
723 size_t wxString::find_first_not_of(wxUniChar ch
, size_t nStart
) const
725 wxASSERT_MSG( nStart
<= length(), _T("invalid index") );
728 for ( const_iterator i
= begin() + nStart
; i
!= end(); ++idx
, ++i
)
737 size_t wxString::find_last_not_of(wxUniChar ch
, size_t nStart
) const
739 size_t len
= length();
741 if ( nStart
== npos
)
747 wxASSERT_MSG( nStart
<= len
, _T("invalid index") );
751 for ( const_reverse_iterator i
= rbegin() + (len
- nStart
- 1);
752 i
!= rend(); --idx
, ++i
)
761 // the functions above were implemented for wchar_t* arguments in Unicode
762 // build and char* in ANSI build; below are implementations for the other
765 #define wxOtherCharType char
766 #define STRCONV (const wxChar*)wxConvLibc.cMB2WC
768 #define wxOtherCharType wchar_t
769 #define STRCONV (const wxChar*)wxConvLibc.cWC2MB
772 size_t wxString::find_first_of(const wxOtherCharType
* sz
, size_t nStart
) const
773 { return find_first_of(STRCONV(sz
), nStart
); }
775 size_t wxString::find_first_of(const wxOtherCharType
* sz
, size_t nStart
,
777 { return find_first_of(STRCONV(sz
, n
, NULL
), nStart
, n
); }
778 size_t wxString::find_last_of(const wxOtherCharType
* sz
, size_t nStart
) const
779 { return find_last_of(STRCONV(sz
), nStart
); }
780 size_t wxString::find_last_of(const wxOtherCharType
* sz
, size_t nStart
,
782 { return find_last_of(STRCONV(sz
, n
, NULL
), nStart
, n
); }
783 size_t wxString::find_first_not_of(const wxOtherCharType
* sz
, size_t nStart
) const
784 { return find_first_not_of(STRCONV(sz
), nStart
); }
785 size_t wxString::find_first_not_of(const wxOtherCharType
* sz
, size_t nStart
,
787 { return find_first_not_of(STRCONV(sz
, n
, NULL
), nStart
, n
); }
788 size_t wxString::find_last_not_of(const wxOtherCharType
* sz
, size_t nStart
) const
789 { return find_last_not_of(STRCONV(sz
), nStart
); }
790 size_t wxString::find_last_not_of(const wxOtherCharType
* sz
, size_t nStart
,
792 { return find_last_not_of(STRCONV(sz
, n
, NULL
), nStart
, n
); }
794 #undef wxOtherCharType
797 #endif // !wxUSE_STL_BASED_WXSTRING || wxUSE_UNICODE_UTF8
799 // ===========================================================================
800 // other common string functions
801 // ===========================================================================
803 int wxString::CmpNoCase(const wxString
& s
) const
805 // FIXME-UTF8: use wxUniChar::ToLower/ToUpper once added
808 const_iterator i1
= begin();
809 const_iterator end1
= end();
810 const_iterator i2
= s
.begin();
811 const_iterator end2
= s
.end();
813 for ( ; i1
!= end1
&& i2
!= end2
; ++idx
, ++i1
, ++i2
)
815 wxUniChar lower1
= (wxChar
)wxTolower(*i1
);
816 wxUniChar lower2
= (wxChar
)wxTolower(*i2
);
817 if ( lower1
!= lower2
)
818 return lower1
< lower2
? -1 : 1;
821 size_t len1
= length();
822 size_t len2
= s
.length();
826 else if ( len1
> len2
)
835 #ifndef __SCHAR_MAX__
836 #define __SCHAR_MAX__ 127
840 wxString
wxString::FromAscii(const char *ascii
)
843 return wxEmptyString
;
845 size_t len
= strlen( ascii
);
850 wxStringBuffer
buf(res
, len
);
856 if ( (*dest
++ = (wchar_t)(unsigned char)*ascii
++) == L
'\0' )
864 wxString
wxString::FromAscii(const char ascii
)
866 // What do we do with '\0' ?
869 res
+= (wchar_t)(unsigned char) ascii
;
874 const wxCharBuffer
wxString::ToAscii() const
876 // this will allocate enough space for the terminating NUL too
877 wxCharBuffer
buffer(length());
880 char *dest
= buffer
.data();
882 const wchar_t *pwc
= c_str();
885 *dest
++ = (char)(*pwc
> SCHAR_MAX
? wxT('_') : *pwc
);
887 // the output string can't have embedded NULs anyhow, so we can safely
888 // stop at first of them even if we do have any
898 // extract string of length nCount starting at nFirst
899 wxString
wxString::Mid(size_t nFirst
, size_t nCount
) const
901 size_t nLen
= length();
903 // default value of nCount is npos and means "till the end"
904 if ( nCount
== npos
)
906 nCount
= nLen
- nFirst
;
909 // out-of-bounds requests return sensible things
910 if ( nFirst
+ nCount
> nLen
)
912 nCount
= nLen
- nFirst
;
917 // AllocCopy() will return empty string
918 return wxEmptyString
;
921 wxString
dest(*this, nFirst
, nCount
);
922 if ( dest
.length() != nCount
)
924 wxFAIL_MSG( _T("out of memory in wxString::Mid") );
930 // check that the string starts with prefix and return the rest of the string
931 // in the provided pointer if it is not NULL, otherwise return false
932 bool wxString::StartsWith(const wxChar
*prefix
, wxString
*rest
) const
934 wxASSERT_MSG( prefix
, _T("invalid parameter in wxString::StartsWith") );
936 // first check if the beginning of the string matches the prefix: note
937 // that we don't have to check that we don't run out of this string as
938 // when we reach the terminating NUL, either prefix string ends too (and
939 // then it's ok) or we break out of the loop because there is no match
940 const wxChar
*p
= c_str();
943 if ( *prefix
++ != *p
++ )
952 // put the rest of the string into provided pointer
960 // check that the string ends with suffix and return the rest of it in the
961 // provided pointer if it is not NULL, otherwise return false
962 bool wxString::EndsWith(const wxChar
*suffix
, wxString
*rest
) const
964 wxASSERT_MSG( suffix
, _T("invalid parameter in wxString::EndssWith") );
966 int start
= length() - wxStrlen(suffix
);
967 if ( start
< 0 || wxStrcmp(wx_str() + start
, suffix
) != 0 )
972 // put the rest of the string into provided pointer
973 rest
->assign(*this, 0, start
);
980 // extract nCount last (rightmost) characters
981 wxString
wxString::Right(size_t nCount
) const
983 if ( nCount
> length() )
986 wxString
dest(*this, length() - nCount
, nCount
);
987 if ( dest
.length() != nCount
) {
988 wxFAIL_MSG( _T("out of memory in wxString::Right") );
993 // get all characters after the last occurence of ch
994 // (returns the whole string if ch not found)
995 wxString
wxString::AfterLast(wxUniChar ch
) const
998 int iPos
= Find(ch
, true);
999 if ( iPos
== wxNOT_FOUND
)
1002 str
= wx_str() + iPos
+ 1;
1007 // extract nCount first (leftmost) characters
1008 wxString
wxString::Left(size_t nCount
) const
1010 if ( nCount
> length() )
1013 wxString
dest(*this, 0, nCount
);
1014 if ( dest
.length() != nCount
) {
1015 wxFAIL_MSG( _T("out of memory in wxString::Left") );
1020 // get all characters before the first occurence of ch
1021 // (returns the whole string if ch not found)
1022 wxString
wxString::BeforeFirst(wxUniChar ch
) const
1024 int iPos
= Find(ch
);
1025 if ( iPos
== wxNOT_FOUND
) iPos
= length();
1026 return wxString(*this, 0, iPos
);
1029 /// get all characters before the last occurence of ch
1030 /// (returns empty string if ch not found)
1031 wxString
wxString::BeforeLast(wxUniChar ch
) const
1034 int iPos
= Find(ch
, true);
1035 if ( iPos
!= wxNOT_FOUND
&& iPos
!= 0 )
1036 str
= wxString(c_str(), iPos
);
1041 /// get all characters after the first occurence of ch
1042 /// (returns empty string if ch not found)
1043 wxString
wxString::AfterFirst(wxUniChar ch
) const
1046 int iPos
= Find(ch
);
1047 if ( iPos
!= wxNOT_FOUND
)
1048 str
= wx_str() + iPos
+ 1;
1053 // replace first (or all) occurences of some substring with another one
1054 size_t wxString::Replace(const wxString
& strOld
,
1055 const wxString
& strNew
, bool bReplaceAll
)
1057 // if we tried to replace an empty string we'd enter an infinite loop below
1058 wxCHECK_MSG( !strOld
.empty(), 0,
1059 _T("wxString::Replace(): invalid parameter") );
1061 size_t uiCount
= 0; // count of replacements made
1063 size_t uiOldLen
= strOld
.length();
1064 size_t uiNewLen
= strNew
.length();
1068 while ( (*this)[dwPos
] != wxT('\0') )
1070 //DO NOT USE STRSTR HERE
1071 //this string can contain embedded null characters,
1072 //so strstr will function incorrectly
1073 dwPos
= find(strOld
, dwPos
);
1074 if ( dwPos
== npos
)
1075 break; // exit the loop
1078 //replace this occurance of the old string with the new one
1079 replace(dwPos
, uiOldLen
, strNew
, uiNewLen
);
1081 //move up pos past the string that was replaced
1084 //increase replace count
1089 break; // exit the loop
1096 bool wxString::IsAscii() const
1098 const wxChar
*s
= (const wxChar
*) *this;
1100 if(!isascii(*s
)) return(false);
1106 bool wxString::IsWord() const
1108 const wxChar
*s
= (const wxChar
*) *this;
1110 if(!wxIsalpha(*s
)) return(false);
1116 bool wxString::IsNumber() const
1118 const wxChar
*s
= (const wxChar
*) *this;
1120 if ((s
[0] == wxT('-')) || (s
[0] == wxT('+'))) s
++;
1122 if(!wxIsdigit(*s
)) return(false);
1128 wxString
wxString::Strip(stripType w
) const
1131 if ( w
& leading
) s
.Trim(false);
1132 if ( w
& trailing
) s
.Trim(true);
1136 // ---------------------------------------------------------------------------
1138 // ---------------------------------------------------------------------------
1140 wxString
& wxString::MakeUpper()
1142 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1143 *it
= (wxChar
)wxToupper(*it
);
1148 wxString
& wxString::MakeLower()
1150 for ( iterator it
= begin(), en
= end(); it
!= en
; ++it
)
1151 *it
= (wxChar
)wxTolower(*it
);
1156 // ---------------------------------------------------------------------------
1157 // trimming and padding
1158 // ---------------------------------------------------------------------------
1160 // some compilers (VC++ 6.0 not to name them) return true for a call to
1161 // isspace('ê') in the C locale which seems to be broken to me, but we have to
1162 // live with this by checking that the character is a 7 bit one - even if this
1163 // may fail to detect some spaces (I don't know if Unicode doesn't have
1164 // space-like symbols somewhere except in the first 128 chars), it is arguably
1165 // still better than trimming away accented letters
1166 inline int wxSafeIsspace(wxChar ch
) { return (ch
< 127) && wxIsspace(ch
); }
1168 // trims spaces (in the sense of isspace) from left or right side
1169 wxString
& wxString::Trim(bool bFromRight
)
1171 // first check if we're going to modify the string at all
1174 (bFromRight
&& wxSafeIsspace(GetChar(length() - 1))) ||
1175 (!bFromRight
&& wxSafeIsspace(GetChar(0u)))
1181 // find last non-space character
1182 reverse_iterator psz
= rbegin();
1183 while ( (psz
!= rend()) && wxSafeIsspace(*psz
) )
1186 // truncate at trailing space start
1187 erase(psz
.base(), end());
1191 // find first non-space character
1192 iterator psz
= begin();
1193 while ( (psz
!= end()) && wxSafeIsspace(*psz
) )
1196 // fix up data and length
1197 erase(begin(), psz
);
1204 // adds nCount characters chPad to the string from either side
1205 wxString
& wxString::Pad(size_t nCount
, wxUniChar chPad
, bool bFromRight
)
1207 wxString
s(chPad
, nCount
);
1220 // truncate the string
1221 wxString
& wxString::Truncate(size_t uiLen
)
1223 if ( uiLen
< length() )
1225 erase(begin() + uiLen
, end());
1227 //else: nothing to do, string is already short enough
1232 // ---------------------------------------------------------------------------
1233 // finding (return wxNOT_FOUND if not found and index otherwise)
1234 // ---------------------------------------------------------------------------
1237 int wxString::Find(wxUniChar ch
, bool bFromEnd
) const
1239 size_type idx
= bFromEnd
? find_last_of(ch
) : find_first_of(ch
);
1241 return (idx
== npos
) ? wxNOT_FOUND
: (int)idx
;
1244 // ----------------------------------------------------------------------------
1245 // conversion to numbers
1246 // ----------------------------------------------------------------------------
1248 // the implementation of all the functions below is exactly the same so factor
1251 template <typename T
, typename F
>
1252 bool wxStringToIntType(const wxChar
*start
,
1257 wxCHECK_MSG( val
, false, _T("NULL output pointer") );
1258 wxASSERT_MSG( !base
|| (base
> 1 && base
<= 36), _T("invalid base") );
1265 *val
= (*func
)(start
, &end
, base
);
1267 // return true only if scan was stopped by the terminating NUL and if the
1268 // string was not empty to start with and no under/overflow occurred
1269 return !*end
&& (end
!= start
)
1271 && (errno
!= ERANGE
)
1276 bool wxString::ToLong(long *val
, int base
) const
1278 return wxStringToIntType((const wxChar
*)c_str(), val
, base
, wxStrtol
);
1281 bool wxString::ToULong(unsigned long *val
, int base
) const
1283 return wxStringToIntType((const wxChar
*)c_str(), val
, base
, wxStrtoul
);
1286 bool wxString::ToLongLong(wxLongLong_t
*val
, int base
) const
1288 #ifdef wxHAS_STRTOLL
1289 return wxStringToIntType((const wxChar
*)c_str(), val
, base
, wxStrtoll
);
1291 // TODO: implement this ourselves
1295 #endif // wxHAS_STRTOLL
1298 bool wxString::ToULongLong(wxULongLong_t
*val
, int base
) const
1300 #ifdef wxHAS_STRTOLL
1301 return wxStringToIntType((const wxChar
*)c_str(), val
, base
, wxStrtoull
);
1303 // TODO: implement this ourselves
1310 bool wxString::ToDouble(double *val
) const
1312 wxCHECK_MSG( val
, false, _T("NULL pointer in wxString::ToDouble") );
1318 const wxChar
*start
= c_str();
1320 *val
= wxStrtod(start
, &end
);
1322 // return true only if scan was stopped by the terminating NUL and if the
1323 // string was not empty to start with and no under/overflow occurred
1324 return !*end
&& (end
!= start
)
1326 && (errno
!= ERANGE
)
1331 // ---------------------------------------------------------------------------
1333 // ---------------------------------------------------------------------------
1336 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
1337 wxString
wxStringPrintfMixinBase::DoFormat(const wxChar
*format
, ...)
1339 wxString
wxString::DoFormat(const wxChar
*format
, ...)
1343 va_start(argptr
, format
);
1346 s
.PrintfV(format
, argptr
);
1354 wxString
wxString::FormatV(const wxString
& format
, va_list argptr
)
1357 s
.PrintfV(format
, argptr
);
1361 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
1362 int wxStringPrintfMixinBase::DoPrintf(const wxChar
*format
, ...)
1364 int wxString::DoPrintf(const wxChar
*format
, ...)
1368 va_start(argptr
, format
);
1370 #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN
1371 // get a pointer to the wxString instance; we have to use dynamic_cast<>
1372 // because it's the only cast that works safely for downcasting when
1373 // multiple inheritance is used:
1374 wxString
*str
= static_cast<wxString
*>(this);
1376 wxString
*str
= this;
1379 int iLen
= str
->PrintfV(format
, argptr
);
1386 int wxString::PrintfV(const wxString
& format
, va_list argptr
)
1392 wxStringBuffer
tmp(*this, size
+ 1);
1401 // wxVsnprintf() may modify the original arg pointer, so pass it
1404 wxVaCopy(argptrcopy
, argptr
);
1405 int len
= wxVsnprintf(buf
, size
, format
, argptrcopy
);
1408 // some implementations of vsnprintf() don't NUL terminate
1409 // the string if there is not enough space for it so
1410 // always do it manually
1411 buf
[size
] = _T('\0');
1413 // vsnprintf() may return either -1 (traditional Unix behaviour) or the
1414 // total number of characters which would have been written if the
1415 // buffer were large enough (newer standards such as Unix98)
1418 #if wxUSE_WXVSNPRINTF
1419 // we know that our own implementation of wxVsnprintf() returns -1
1420 // only for a format error - thus there's something wrong with
1421 // the user's format string
1423 #else // assume that system version only returns error if not enough space
1424 // still not enough, as we don't know how much we need, double the
1425 // current size of the buffer
1427 #endif // wxUSE_WXVSNPRINTF/!wxUSE_WXVSNPRINTF
1429 else if ( len
>= size
)
1431 #if wxUSE_WXVSNPRINTF
1432 // we know that our own implementation of wxVsnprintf() returns
1433 // size+1 when there's not enough space but that's not the size
1434 // of the required buffer!
1435 size
*= 2; // so we just double the current size of the buffer
1437 // some vsnprintf() implementations NUL-terminate the buffer and
1438 // some don't in len == size case, to be safe always add 1
1442 else // ok, there was enough space
1448 // we could have overshot
1454 // ----------------------------------------------------------------------------
1455 // misc other operations
1456 // ----------------------------------------------------------------------------
1458 // returns true if the string matches the pattern which may contain '*' and
1459 // '?' metacharacters (as usual, '?' matches any character and '*' any number
1461 bool wxString::Matches(const wxString
& mask
) const
1463 // I disable this code as it doesn't seem to be faster (in fact, it seems
1464 // to be much slower) than the old, hand-written code below and using it
1465 // here requires always linking with libregex even if the user code doesn't
1467 #if 0 // wxUSE_REGEX
1468 // first translate the shell-like mask into a regex
1470 pattern
.reserve(wxStrlen(pszMask
));
1482 pattern
+= _T(".*");
1493 // these characters are special in a RE, quote them
1494 // (however note that we don't quote '[' and ']' to allow
1495 // using them for Unix shell like matching)
1496 pattern
+= _T('\\');
1500 pattern
+= *pszMask
;
1508 return wxRegEx(pattern
, wxRE_NOSUB
| wxRE_EXTENDED
).Matches(c_str());
1509 #else // !wxUSE_REGEX
1510 // TODO: this is, of course, awfully inefficient...
1512 // FIXME-UTF8: implement using iterators, remove #if
1513 #if wxUSE_UNICODE_UTF8
1514 wxWCharBuffer maskBuf
= mask
.wc_str();
1515 wxWCharBuffer txtBuf
= wc_str();
1516 const wxChar
*pszMask
= maskBuf
.data();
1517 const wxChar
*pszTxt
= txtBuf
.data();
1519 const wxChar
*pszMask
= mask
.wx_str();
1520 // the char currently being checked
1521 const wxChar
*pszTxt
= wx_str();
1524 // the last location where '*' matched
1525 const wxChar
*pszLastStarInText
= NULL
;
1526 const wxChar
*pszLastStarInMask
= NULL
;
1529 for ( ; *pszMask
!= wxT('\0'); pszMask
++, pszTxt
++ ) {
1530 switch ( *pszMask
) {
1532 if ( *pszTxt
== wxT('\0') )
1535 // pszTxt and pszMask will be incremented in the loop statement
1541 // remember where we started to be able to backtrack later
1542 pszLastStarInText
= pszTxt
;
1543 pszLastStarInMask
= pszMask
;
1545 // ignore special chars immediately following this one
1546 // (should this be an error?)
1547 while ( *pszMask
== wxT('*') || *pszMask
== wxT('?') )
1550 // if there is nothing more, match
1551 if ( *pszMask
== wxT('\0') )
1554 // are there any other metacharacters in the mask?
1556 const wxChar
*pEndMask
= wxStrpbrk(pszMask
, wxT("*?"));
1558 if ( pEndMask
!= NULL
) {
1559 // we have to match the string between two metachars
1560 uiLenMask
= pEndMask
- pszMask
;
1563 // we have to match the remainder of the string
1564 uiLenMask
= wxStrlen(pszMask
);
1567 wxString
strToMatch(pszMask
, uiLenMask
);
1568 const wxChar
* pMatch
= wxStrstr(pszTxt
, strToMatch
);
1569 if ( pMatch
== NULL
)
1572 // -1 to compensate "++" in the loop
1573 pszTxt
= pMatch
+ uiLenMask
- 1;
1574 pszMask
+= uiLenMask
- 1;
1579 if ( *pszMask
!= *pszTxt
)
1585 // match only if nothing left
1586 if ( *pszTxt
== wxT('\0') )
1589 // if we failed to match, backtrack if we can
1590 if ( pszLastStarInText
) {
1591 pszTxt
= pszLastStarInText
+ 1;
1592 pszMask
= pszLastStarInMask
;
1594 pszLastStarInText
= NULL
;
1596 // don't bother resetting pszLastStarInMask, it's unnecessary
1602 #endif // wxUSE_REGEX/!wxUSE_REGEX
1605 // Count the number of chars
1606 int wxString::Freq(wxUniChar ch
) const
1609 for ( const_iterator i
= begin(); i
!= end(); ++i
)
1617 // convert to upper case, return the copy of the string
1618 wxString
wxString::Upper() const
1619 { wxString
s(*this); return s
.MakeUpper(); }
1621 // convert to lower case, return the copy of the string
1622 wxString
wxString::Lower() const { wxString
s(*this); return s
.MakeLower(); }