]>
Commit | Line | Data |
---|---|---|
3c67202d | 1 | /////////////////////////////////////////////////////////////////////////////// |
1c2d1459 | 2 | // Name: wx/string.h |
a7ea63e2 | 3 | // Purpose: wxString class |
c801d85f KB |
4 | // Author: Vadim Zeitlin |
5 | // Modified by: | |
6 | // Created: 29/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
65571936 | 9 | // Licence: wxWindows licence |
3c67202d | 10 | /////////////////////////////////////////////////////////////////////////////// |
c801d85f | 11 | |
e90c1d2a VZ |
12 | /* |
13 | Efficient string class [more or less] compatible with MFC CString, | |
77ffb593 | 14 | wxWidgets version 1 wxString and std::string and some handy functions |
e90c1d2a VZ |
15 | missing from string.h. |
16 | */ | |
17 | ||
a7ea63e2 VS |
18 | #ifndef _WX_WXSTRING_H__ |
19 | #define _WX_WXSTRING_H__ | |
c801d85f | 20 | |
e90c1d2a VZ |
21 | // ---------------------------------------------------------------------------- |
22 | // headers | |
23 | // ---------------------------------------------------------------------------- | |
24 | ||
5737d05f VZ |
25 | #include "wx/defs.h" // everybody should include this |
26 | ||
9dea36ef | 27 | #if defined(__WXMAC__) || defined(__VISAGECPP__) |
3f4a0c5b | 28 | #include <ctype.h> |
17dff81c | 29 | #endif |
3f4a0c5b | 30 | |
9dea36ef DW |
31 | #if defined(__VISAGECPP__) && __IBMCPP__ >= 400 |
32 | // problem in VACPP V4 with including stdlib.h multiple times | |
33 | // strconv includes it anyway | |
34 | # include <stdio.h> | |
35 | # include <string.h> | |
36 | # include <stdarg.h> | |
37 | # include <limits.h> | |
38 | #else | |
39 | # include <string.h> | |
40 | # include <stdio.h> | |
41 | # include <stdarg.h> | |
42 | # include <limits.h> | |
43 | # include <stdlib.h> | |
44 | #endif | |
c801d85f | 45 | |
1c2d1459 | 46 | #ifdef HAVE_STRCASECMP_IN_STRINGS_H |
1bfcb0b6 | 47 | #include <strings.h> // for strcasecmp() |
1c2d1459 | 48 | #endif // HAVE_STRCASECMP_IN_STRINGS_H |
1bfcb0b6 | 49 | |
4055ed82 | 50 | #ifdef __WXPALMOS__ |
ffecfa5a JS |
51 | #include <StringMgr.h> |
52 | #endif | |
53 | ||
2523e9b7 | 54 | #include "wx/wxcrt.h" // for wxChar, wxStrlen() etc. |
c9f78968 | 55 | #include "wx/strvararg.h" |
e90c1d2a VZ |
56 | #include "wx/buffer.h" // for wxCharBuffer |
57 | #include "wx/strconv.h" // for wxConvertXXX() macros and wxMBConv classes | |
a7ea63e2 | 58 | #include "wx/stringimpl.h" |
467175ab | 59 | #include "wx/stringops.h" |
a7ea63e2 | 60 | #include "wx/unichar.h" |
3f4a0c5b | 61 | |
fb3c9042 VZ |
62 | class WXDLLIMPEXP_BASE wxString; |
63 | ||
67cff9dc VZ |
64 | // unless this symbol is predefined to disable the compatibility functions, do |
65 | // use them | |
66 | #ifndef WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER | |
67 | #define WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER 1 | |
68 | #endif | |
69 | ||
c801d85f KB |
70 | // --------------------------------------------------------------------------- |
71 | // macros | |
72 | // --------------------------------------------------------------------------- | |
73 | ||
5737d05f VZ |
74 | // casts [unfortunately!] needed to call some broken functions which require |
75 | // "char *" instead of "const char *" | |
2bb67b80 | 76 | #define WXSTRINGCAST (wxChar *)(const wxChar *) |
e90c1d2a VZ |
77 | #define wxCSTRINGCAST (wxChar *)(const wxChar *) |
78 | #define wxMBSTRINGCAST (char *)(const char *) | |
79 | #define wxWCSTRINGCAST (wchar_t *)(const wchar_t *) | |
c801d85f | 80 | |
e90c1d2a VZ |
81 | // ---------------------------------------------------------------------------- |
82 | // constants | |
83 | // ---------------------------------------------------------------------------- | |
84 | ||
13874b5c VZ |
85 | #if WXWIN_COMPATIBILITY_2_6 |
86 | ||
87 | // deprecated in favour of wxString::npos, don't use in new code | |
88 | // | |
e90c1d2a | 89 | // maximum possible length for a string means "take all string" everywhere |
8f93a29f | 90 | #define wxSTRING_MAXLEN wxString::npos |
66b6b045 | 91 | |
13874b5c VZ |
92 | #endif // WXWIN_COMPATIBILITY_2_6 |
93 | ||
c801d85f | 94 | // --------------------------------------------------------------------------- |
e90c1d2a | 95 | // global functions complementing standard C string library replacements for |
3c67202d VZ |
96 | // strlen() and portable strcasecmp() |
97 | //--------------------------------------------------------------------------- | |
e90c1d2a | 98 | |
c7554da8 | 99 | #if WXWIN_COMPATIBILITY_2_8 |
e3f6cbd9 | 100 | // Use wxXXX() functions from wxcrt.h instead! These functions are for |
e90c1d2a | 101 | // backwards compatibility only. |
88150e60 | 102 | |
3c67202d | 103 | // checks whether the passed in pointer is NULL and if the string is empty |
c7554da8 | 104 | wxDEPRECATED( inline bool IsEmpty(const char *p) ); |
6d56eb5c | 105 | inline bool IsEmpty(const char *p) { return (!p || !*p); } |
c801d85f | 106 | |
3c67202d | 107 | // safe version of strlen() (returns 0 if passed NULL pointer) |
c7554da8 | 108 | wxDEPRECATED( inline size_t Strlen(const char *psz) ); |
6d56eb5c | 109 | inline size_t Strlen(const char *psz) |
c801d85f KB |
110 | { return psz ? strlen(psz) : 0; } |
111 | ||
3c67202d | 112 | // portable strcasecmp/_stricmp |
c7554da8 | 113 | wxDEPRECATED( inline int Stricmp(const char *psz1, const char *psz2) ); |
6d56eb5c | 114 | inline int Stricmp(const char *psz1, const char *psz2) |
dd1eaa89 | 115 | { |
7f0586ef JS |
116 | #if defined(__VISUALC__) && defined(__WXWINCE__) |
117 | register char c1, c2; | |
118 | do { | |
119 | c1 = tolower(*psz1++); | |
120 | c2 = tolower(*psz2++); | |
121 | } while ( c1 && (c1 == c2) ); | |
122 | ||
123 | return c1 - c2; | |
124 | #elif defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) ) | |
dd1eaa89 | 125 | return _stricmp(psz1, psz2); |
91b8de8d | 126 | #elif defined(__SC__) |
2432b92d | 127 | return _stricmp(psz1, psz2); |
91b8de8d | 128 | #elif defined(__SALFORDC__) |
a3ef5bf5 | 129 | return stricmp(psz1, psz2); |
dd1eaa89 VZ |
130 | #elif defined(__BORLANDC__) |
131 | return stricmp(psz1, psz2); | |
7be1f0d9 JS |
132 | #elif defined(__WATCOMC__) |
133 | return stricmp(psz1, psz2); | |
14704334 VS |
134 | #elif defined(__DJGPP__) |
135 | return stricmp(psz1, psz2); | |
91b8de8d RR |
136 | #elif defined(__EMX__) |
137 | return stricmp(psz1, psz2); | |
e2c87f4c | 138 | #elif defined(__WXPM__) |
1777b9bb | 139 | return stricmp(psz1, psz2); |
a0be6908 WS |
140 | #elif defined(__WXPALMOS__) || \ |
141 | defined(HAVE_STRCASECMP_IN_STRING_H) || \ | |
1c2d1459 VZ |
142 | defined(HAVE_STRCASECMP_IN_STRINGS_H) || \ |
143 | defined(__GNUWIN32__) | |
dd1eaa89 | 144 | return strcasecmp(psz1, psz2); |
8be97d65 | 145 | #elif defined(__MWERKS__) && !defined(__INTEL__) |
17dff81c SC |
146 | register char c1, c2; |
147 | do { | |
148 | c1 = tolower(*psz1++); | |
149 | c2 = tolower(*psz2++); | |
150 | } while ( c1 && (c1 == c2) ); | |
151 | ||
152 | return c1 - c2; | |
dd1eaa89 VZ |
153 | #else |
154 | // almost all compilers/libraries provide this function (unfortunately under | |
155 | // different names), that's why we don't implement our own which will surely | |
156 | // be more efficient than this code (uncomment to use): | |
157 | /* | |
158 | register char c1, c2; | |
159 | do { | |
160 | c1 = tolower(*psz1++); | |
161 | c2 = tolower(*psz2++); | |
162 | } while ( c1 && (c1 == c2) ); | |
163 | ||
164 | return c1 - c2; | |
165 | */ | |
166 | ||
167 | #error "Please define string case-insensitive compare for your OS/compiler" | |
168 | #endif // OS/compiler | |
169 | } | |
c801d85f | 170 | |
c7554da8 VS |
171 | #endif // WXWIN_COMPATIBILITY_2_8 |
172 | ||
c9f78968 VS |
173 | // ---------------------------------------------------------------------------- |
174 | // wxCStrData | |
175 | // ---------------------------------------------------------------------------- | |
176 | ||
177 | // Lightweight object returned by wxString::c_str() and implicitly convertible | |
178 | // to either const char* or const wchar_t*. | |
9aee0061 | 179 | class WXDLLIMPEXP_BASE wxCStrData |
c9f78968 VS |
180 | { |
181 | private: | |
182 | // Ctors; for internal use by wxString and wxCStrData only | |
183 | wxCStrData(const wxString *str, size_t offset = 0, bool owned = false) | |
184 | : m_str(str), m_offset(offset), m_owned(owned) {} | |
185 | ||
186 | public: | |
187 | // Ctor constructs the object from char literal; they are needed to make | |
188 | // operator?: compile and they intentionally take char*, not const char* | |
92a17abc VS |
189 | inline wxCStrData(char *buf); |
190 | inline wxCStrData(wchar_t *buf); | |
191 | inline wxCStrData(const wxCStrData& data); | |
c9f78968 | 192 | |
9aee0061 | 193 | inline ~wxCStrData(); |
c9f78968 | 194 | |
9aee0061 VZ |
195 | // methods defined inline below must be declared inline or mingw32 3.4.5 |
196 | // warns about "<symbol> defined locally after being referenced with | |
197 | // dllimport linkage" | |
198 | #if wxUSE_UNICODE_WCHAR | |
199 | inline | |
200 | #endif | |
c9f78968 VS |
201 | const wchar_t* AsWChar() const; |
202 | operator const wchar_t*() const { return AsWChar(); } | |
11aac4ba | 203 | |
111d9948 | 204 | #if !wxUSE_UNICODE || wxUSE_UTF8_LOCALE_ONLY |
9aee0061 VZ |
205 | inline |
206 | #endif | |
c9f78968 | 207 | const char* AsChar() const; |
dbea442a VZ |
208 | const unsigned char* AsUnsignedChar() const |
209 | { return (const unsigned char *) AsChar(); } | |
c9f78968 | 210 | operator const char*() const { return AsChar(); } |
dbea442a | 211 | operator const unsigned char*() const { return AsUnsignedChar(); } |
11aac4ba VS |
212 | |
213 | operator const void*() const { return AsChar(); } | |
c9f78968 | 214 | |
681e4412 VS |
215 | inline const wxCharBuffer AsCharBuf() const; |
216 | inline const wxWCharBuffer AsWCharBuf() const; | |
217 | ||
9aee0061 | 218 | inline wxString AsString() const; |
c9f78968 | 219 | |
2523e9b7 VS |
220 | // returns the value as C string in internal representation (equivalent |
221 | // to AsString().wx_str(), but more efficient) | |
222 | const wxStringCharType *AsInternal() const; | |
223 | ||
c9f78968 | 224 | // allow expressions like "c_str()[0]": |
9aee0061 | 225 | inline wxUniChar operator[](size_t n) const; |
c9f78968 | 226 | wxUniChar operator[](int n) const { return operator[](size_t(n)); } |
c1df0a3b | 227 | wxUniChar operator[](long n) const { return operator[](size_t(n)); } |
c9f78968 VS |
228 | #ifndef wxSIZE_T_IS_UINT |
229 | wxUniChar operator[](unsigned int n) const { return operator[](size_t(n)); } | |
230 | #endif // size_t != unsigned int | |
231 | ||
acf0c9ac | 232 | // these operators are needed to emulate the pointer semantics of c_str(): |
c9f78968 VS |
233 | // expressions like "wxChar *p = str.c_str() + 1;" should continue to work |
234 | // (we need both versions to resolve ambiguities): | |
235 | wxCStrData operator+(int n) const | |
236 | { return wxCStrData(m_str, m_offset + n, m_owned); } | |
acf0c9ac VZ |
237 | wxCStrData operator+(long n) const |
238 | { return wxCStrData(m_str, m_offset + n, m_owned); } | |
c9f78968 VS |
239 | wxCStrData operator+(size_t n) const |
240 | { return wxCStrData(m_str, m_offset + n, m_owned); } | |
241 | ||
f4c90fdf VS |
242 | // and these for "str.c_str() + n - 2": |
243 | wxCStrData operator-(int n) const | |
244 | { | |
245 | wxASSERT_MSG( n <= (int)m_offset, | |
246 | _T("attempt to construct address before the beginning of the string") ); | |
247 | return wxCStrData(m_str, m_offset - n, m_owned); | |
248 | } | |
249 | wxCStrData operator-(long n) const | |
250 | { | |
251 | wxASSERT_MSG( n <= (int)m_offset, | |
252 | _T("attempt to construct address before the beginning of the string") ); | |
253 | return wxCStrData(m_str, m_offset - n, m_owned); | |
254 | } | |
255 | wxCStrData operator-(size_t n) const | |
256 | { | |
759d51f2 | 257 | wxASSERT_MSG( n <= m_offset, |
f4c90fdf VS |
258 | _T("attempt to construct address before the beginning of the string") ); |
259 | return wxCStrData(m_str, m_offset - n, m_owned); | |
260 | } | |
261 | ||
b77afb41 | 262 | // this operator is needed to make expressions like "*c_str()" or |
c9f78968 | 263 | // "*(c_str() + 2)" work |
9aee0061 | 264 | inline wxUniChar operator*() const; |
c9f78968 VS |
265 | |
266 | private: | |
267 | const wxString *m_str; | |
268 | size_t m_offset; | |
269 | bool m_owned; | |
270 | ||
271 | friend class WXDLLIMPEXP_BASE wxString; | |
272 | }; | |
273 | ||
274 | // ---------------------------------------------------------------------------- | |
275 | // wxStringPrintfMixin | |
276 | // --------------------------------------------------------------------------- | |
277 | ||
278 | // NB: VC6 has a bug that causes linker errors if you have template methods | |
279 | // in a class using __declspec(dllimport). The solution is to split such | |
280 | // class into two classes, one that contains the template methods and does | |
281 | // *not* use WXDLLIMPEXP_BASE and another class that contains the rest | |
282 | // (with DLL linkage). | |
283 | // | |
284 | // We only do this for VC6 here, because the code is less efficient | |
285 | // (Printf() has to use dynamic_cast<>) and because OpenWatcom compiler | |
286 | // cannot compile this code. | |
287 | ||
288 | #if defined(__VISUALC__) && __VISUALC__ < 1300 | |
289 | #define wxNEEDS_WXSTRING_PRINTF_MIXIN | |
290 | #endif | |
291 | ||
292 | #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN | |
293 | // this class contains implementation of wxString's vararg methods, it's | |
294 | // exported from wxBase DLL | |
295 | class WXDLLIMPEXP_BASE wxStringPrintfMixinBase | |
296 | { | |
297 | protected: | |
298 | wxStringPrintfMixinBase() {} | |
299 | ||
d1f6e2cf VS |
300 | #if !wxUSE_UTF8_LOCALE_ONLY |
301 | int DoPrintfWchar(const wxChar *format, ...); | |
302 | static wxString DoFormatWchar(const wxChar *format, ...); | |
303 | #endif | |
304 | #if wxUSE_UNICODE_UTF8 | |
305 | int DoPrintfUtf8(const char *format, ...); | |
306 | static wxString DoFormatUtf8(const char *format, ...); | |
307 | #endif | |
c9f78968 VS |
308 | }; |
309 | ||
310 | // this class contains template wrappers for wxString's vararg methods, it's | |
311 | // intentionally *not* exported from the DLL in order to fix the VC6 bug | |
312 | // described above | |
313 | class wxStringPrintfMixin : public wxStringPrintfMixinBase | |
314 | { | |
315 | private: | |
316 | // to further complicate things, we can't return wxString from | |
317 | // wxStringPrintfMixin::Format() because wxString is not yet declared at | |
318 | // this point; the solution is to use this fake type trait template - this | |
319 | // way the compiler won't know the return type until Format() is used | |
320 | // (this doesn't compile with Watcom, but VC6 compiles it just fine): | |
321 | template<typename T> struct StringReturnType | |
322 | { | |
323 | typedef wxString type; | |
324 | }; | |
325 | ||
326 | public: | |
327 | // these are duplicated wxString methods, they're also declared below | |
328 | // if !wxNEEDS_WXSTRING_PRINTF_MIXIN: | |
329 | ||
2523e9b7 | 330 | // static wxString Format(const wString& format, ...) ATTRIBUTE_PRINTF_1; |
d1f6e2cf | 331 | WX_DEFINE_VARARG_FUNC_SANS_N0(static typename StringReturnType<T1>::type, |
1528e0b8 | 332 | Format, 1, (const wxFormatString&), |
d1f6e2cf | 333 | DoFormatWchar, DoFormatUtf8) |
2523e9b7 VS |
334 | // We have to implement the version without template arguments manually |
335 | // because of the StringReturnType<> hack, although WX_DEFINE_VARARG_FUNC | |
336 | // normally does it itself. It has to be a template so that we can use | |
337 | // the hack, even though there's no real template parameter: | |
338 | struct FormatDummyArg {} ; | |
339 | ||
340 | template<typename T> | |
341 | inline static typename StringReturnType<T>::type | |
1528e0b8 | 342 | Format(const wxFormatString& fmt, FormatDummyArg dummy = FormatDummyArg()) |
2523e9b7 | 343 | { |
1528e0b8 | 344 | return DoFormatWchar(fmt); |
2523e9b7 VS |
345 | } |
346 | ||
347 | // int Printf(const wxString& format, ...); | |
1528e0b8 | 348 | WX_DEFINE_VARARG_FUNC(int, Printf, 1, (const wxFormatString&), |
d1f6e2cf | 349 | DoPrintfWchar, DoPrintfUtf8) |
2523e9b7 | 350 | // int sprintf(const wxString& format, ...) ATTRIBUTE_PRINTF_2; |
1528e0b8 | 351 | WX_DEFINE_VARARG_FUNC(int, sprintf, 1, (const wxFormatString&), |
d1f6e2cf | 352 | DoPrintfWchar, DoPrintfUtf8) |
c9f78968 VS |
353 | |
354 | protected: | |
355 | wxStringPrintfMixin() : wxStringPrintfMixinBase() {} | |
356 | }; | |
357 | #endif // wxNEEDS_WXSTRING_PRINTF_MIXIN | |
358 | ||
359 | ||
b6339dde VZ |
360 | // ---------------------------------------------------------------------------- |
361 | // wxString: string class trying to be compatible with std::string, MFC | |
362 | // CString and wxWindows 1.x wxString all at once | |
e87b7833 MB |
363 | // --------------------------------------------------------------------------- |
364 | ||
c9f78968 VS |
365 | #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN |
366 | // "non dll-interface class 'wxStringPrintfMixin' used as base interface | |
367 | // for dll-interface class 'wxString'" -- this is OK in our case | |
368 | #pragma warning (disable:4275) | |
e87b7833 MB |
369 | #endif |
370 | ||
8f93a29f | 371 | class WXDLLIMPEXP_BASE wxString |
c9f78968 | 372 | #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN |
8f93a29f | 373 | : public wxStringPrintfMixin |
c9f78968 VS |
374 | #endif |
375 | { | |
e87b7833 MB |
376 | // NB: special care was taken in arranging the member functions in such order |
377 | // that all inline functions can be effectively inlined, verify that all | |
20aa779e | 378 | // performance critical functions are still inlined if you change order! |
8f93a29f | 379 | public: |
8f93a29f VS |
380 | // an 'invalid' value for string index, moved to this place due to a CW bug |
381 | static const size_t npos; | |
8f93a29f | 382 | |
e87b7833 MB |
383 | private: |
384 | // if we hadn't made these operators private, it would be possible to | |
385 | // compile "wxString s; s = 17;" without any warnings as 17 is implicitly | |
386 | // converted to char in C and we do have operator=(char) | |
387 | // | |
388 | // NB: we don't need other versions (short/long and unsigned) as attempt | |
389 | // to assign another numeric type to wxString will now result in | |
390 | // ambiguity between operator=(char) and operator=(int) | |
391 | wxString& operator=(int); | |
392 | ||
8f93a29f VS |
393 | // these methods are not implemented - there is _no_ conversion from int to |
394 | // string, you're doing something wrong if the compiler wants to call it! | |
395 | // | |
396 | // try `s << i' or `s.Printf("%d", i)' instead | |
397 | wxString(int); | |
398 | ||
399 | ||
400 | // buffer for holding temporary substring when using any of the methods | |
401 | // that take (char*,size_t) or (wchar_t*,size_t) arguments: | |
8f93a29f VS |
402 | template<typename T> |
403 | struct SubstrBufFromType | |
404 | { | |
405 | T data; | |
406 | size_t len; | |
407 | ||
8f93a29f VS |
408 | SubstrBufFromType(const T& data_, size_t len_) |
409 | : data(data_), len(len_) {} | |
410 | }; | |
411 | ||
412 | #if wxUSE_UNICODE_UTF8 | |
81727065 VS |
413 | // even char* -> char* needs conversion, from locale charset to UTF-8 |
414 | typedef SubstrBufFromType<wxCharBuffer> SubstrBufFromWC; | |
415 | typedef SubstrBufFromType<wxCharBuffer> SubstrBufFromMB; | |
8f93a29f VS |
416 | #elif wxUSE_UNICODE_WCHAR |
417 | typedef SubstrBufFromType<const wchar_t*> SubstrBufFromWC; | |
418 | typedef SubstrBufFromType<wxWCharBuffer> SubstrBufFromMB; | |
8f93a29f VS |
419 | #else |
420 | typedef SubstrBufFromType<const char*> SubstrBufFromMB; | |
421 | typedef SubstrBufFromType<wxCharBuffer> SubstrBufFromWC; | |
8f93a29f VS |
422 | #endif |
423 | ||
424 | ||
425 | // Functions implementing primitive operations on string data; wxString | |
426 | // methods and iterators are implemented in terms of it. The differences | |
427 | // between UTF-8 and wchar_t* representations of the string are mostly | |
428 | // contained here. | |
429 | ||
81727065 VS |
430 | #if wxUSE_UNICODE_UTF8 |
431 | static SubstrBufFromMB ConvertStr(const char *psz, size_t nLength, | |
432 | const wxMBConv& conv); | |
433 | static SubstrBufFromWC ConvertStr(const wchar_t *pwz, size_t nLength, | |
434 | const wxMBConv& conv); | |
435 | #elif wxUSE_UNICODE_WCHAR | |
8f93a29f | 436 | static SubstrBufFromMB ConvertStr(const char *psz, size_t nLength, |
a962cdf4 | 437 | const wxMBConv& conv); |
8f93a29f VS |
438 | #else |
439 | static SubstrBufFromWC ConvertStr(const wchar_t *pwz, size_t nLength, | |
a962cdf4 | 440 | const wxMBConv& conv); |
8f93a29f VS |
441 | #endif |
442 | ||
443 | #if !wxUSE_UNICODE_UTF8 // wxUSE_UNICODE_WCHAR or !wxUSE_UNICODE | |
a962cdf4 | 444 | // returns C string encoded as the implementation expects: |
8f93a29f | 445 | #if wxUSE_UNICODE |
a962cdf4 | 446 | static const wchar_t* ImplStr(const wchar_t* str) |
e8f59039 | 447 | { return str ? str : wxT(""); } |
a962cdf4 | 448 | static const SubstrBufFromWC ImplStr(const wchar_t* str, size_t n) |
e8f59039 VS |
449 | { return SubstrBufFromWC(str, (str && n == npos) ? wxWcslen(str) : n); } |
450 | static wxWCharBuffer ImplStr(const char* str, | |
451 | const wxMBConv& conv = wxConvLibc) | |
452 | { return ConvertStr(str, npos, conv).data; } | |
453 | static SubstrBufFromMB ImplStr(const char* str, size_t n, | |
454 | const wxMBConv& conv = wxConvLibc) | |
455 | { return ConvertStr(str, n, conv); } | |
8f93a29f | 456 | #else |
e8f59039 VS |
457 | static const char* ImplStr(const char* str, |
458 | const wxMBConv& WXUNUSED(conv) = wxConvLibc) | |
459 | { return str ? str : ""; } | |
460 | static const SubstrBufFromMB ImplStr(const char* str, size_t n, | |
461 | const wxMBConv& WXUNUSED(conv) = wxConvLibc) | |
462 | { return SubstrBufFromMB(str, (str && n == npos) ? wxStrlen(str) : n); } | |
8f93a29f VS |
463 | static wxCharBuffer ImplStr(const wchar_t* str) |
464 | { return ConvertStr(str, npos, wxConvLibc).data; } | |
465 | static SubstrBufFromWC ImplStr(const wchar_t* str, size_t n) | |
466 | { return ConvertStr(str, n, wxConvLibc); } | |
467 | #endif | |
468 | ||
8f93a29f VS |
469 | // translates position index in wxString to/from index in underlying |
470 | // wxStringImpl: | |
471 | static size_t PosToImpl(size_t pos) { return pos; } | |
472 | static void PosLenToImpl(size_t pos, size_t len, | |
473 | size_t *implPos, size_t *implLen) | |
474 | { *implPos = pos; *implLen = len; } | |
11aac4ba | 475 | static size_t LenToImpl(size_t len) { return len; } |
8f93a29f VS |
476 | static size_t PosFromImpl(size_t pos) { return pos; } |
477 | ||
478 | #else // wxUSE_UNICODE_UTF8 | |
479 | ||
467175ab VS |
480 | static wxCharBuffer ImplStr(const char* str, |
481 | const wxMBConv& conv = wxConvLibc) | |
482 | { return ConvertStr(str, npos, conv).data; } | |
483 | static SubstrBufFromMB ImplStr(const char* str, size_t n, | |
484 | const wxMBConv& conv = wxConvLibc) | |
485 | { return ConvertStr(str, n, conv); } | |
81727065 | 486 | |
467175ab VS |
487 | static wxCharBuffer ImplStr(const wchar_t* str) |
488 | { return ConvertStr(str, npos, wxConvUTF8).data; } | |
489 | static SubstrBufFromWC ImplStr(const wchar_t* str, size_t n) | |
490 | { return ConvertStr(str, n, wxConvUTF8); } | |
81727065 | 491 | |
8f93a29f VS |
492 | size_t PosToImpl(size_t pos) const |
493 | { | |
494 | if ( pos == 0 || pos == npos ) | |
495 | return pos; | |
496 | else | |
cf9a878b | 497 | return (begin() + pos).impl() - m_impl.begin(); |
8f93a29f VS |
498 | } |
499 | ||
81727065 VS |
500 | void PosLenToImpl(size_t pos, size_t len, size_t *implPos, size_t *implLen) const; |
501 | ||
502 | size_t LenToImpl(size_t len) const | |
503 | { | |
504 | size_t pos, len2; | |
505 | PosLenToImpl(0, len, &pos, &len2); | |
506 | return len2; | |
507 | } | |
508 | ||
8f93a29f VS |
509 | size_t PosFromImpl(size_t pos) const |
510 | { | |
511 | if ( pos == 0 || pos == npos ) | |
512 | return pos; | |
513 | else | |
514 | return const_iterator(m_impl.begin() + pos) - begin(); | |
515 | } | |
8f93a29f VS |
516 | #endif // !wxUSE_UNICODE_UTF8/wxUSE_UNICODE_UTF8 |
517 | ||
8f93a29f VS |
518 | public: |
519 | // standard types | |
520 | typedef wxUniChar value_type; | |
521 | typedef wxUniChar char_type; | |
522 | typedef wxUniCharRef reference; | |
523 | typedef wxChar* pointer; | |
524 | typedef const wxChar* const_pointer; | |
525 | ||
526 | typedef size_t size_type; | |
527 | typedef wxUniChar const_reference; | |
528 | ||
a962cdf4 | 529 | #if wxUSE_STL |
81727065 VS |
530 | #if wxUSE_UNICODE_UTF8 |
531 | // random access is not O(1), as required by Random Access Iterator | |
532 | #define WX_STR_ITERATOR_TAG std::bidirectional_iterator_tag | |
533 | #else | |
534 | #define WX_STR_ITERATOR_TAG std::random_access_iterator_tag | |
535 | #endif | |
a962cdf4 VS |
536 | #else |
537 | #define WX_STR_ITERATOR_TAG void /* dummy type */ | |
538 | #endif | |
539 | ||
8f93a29f VS |
540 | #define WX_STR_ITERATOR_IMPL(iterator_name, pointer_type, \ |
541 | reference_type, reference_ctor) \ | |
542 | private: \ | |
543 | typedef wxStringImpl::iterator_name underlying_iterator; \ | |
544 | public: \ | |
a962cdf4 | 545 | typedef WX_STR_ITERATOR_TAG iterator_category; \ |
8f93a29f | 546 | typedef wxUniChar value_type; \ |
a962cdf4 | 547 | typedef int difference_type; \ |
8f93a29f VS |
548 | typedef reference_type reference; \ |
549 | typedef pointer_type pointer; \ | |
550 | \ | |
8f93a29f | 551 | reference operator*() const { return reference_ctor; } \ |
a962cdf4 | 552 | reference operator[](size_t n) const { return *(*this + n); } \ |
8f93a29f VS |
553 | \ |
554 | iterator_name& operator++() \ | |
467175ab | 555 | { wxStringOperations::IncIter(m_cur); return *this; } \ |
8f93a29f | 556 | iterator_name& operator--() \ |
467175ab | 557 | { wxStringOperations::DecIter(m_cur); return *this; } \ |
8f93a29f VS |
558 | iterator_name operator++(int) \ |
559 | { \ | |
560 | iterator_name tmp = *this; \ | |
467175ab | 561 | wxStringOperations::IncIter(m_cur); \ |
8f93a29f VS |
562 | return tmp; \ |
563 | } \ | |
564 | iterator_name operator--(int) \ | |
565 | { \ | |
566 | iterator_name tmp = *this; \ | |
467175ab | 567 | wxStringOperations::DecIter(m_cur); \ |
8f93a29f VS |
568 | return tmp; \ |
569 | } \ | |
570 | \ | |
30d560f4 | 571 | iterator_name& operator+=(int n) \ |
467175ab VS |
572 | { \ |
573 | m_cur = wxStringOperations::AddToIter(m_cur, n); \ | |
574 | return *this; \ | |
575 | } \ | |
30d560f4 | 576 | iterator_name& operator+=(size_t n) \ |
467175ab VS |
577 | { \ |
578 | m_cur = wxStringOperations::AddToIter(m_cur, (int)n); \ | |
579 | return *this; \ | |
580 | } \ | |
30d560f4 | 581 | iterator_name& operator-=(int n) \ |
467175ab VS |
582 | { \ |
583 | m_cur = wxStringOperations::AddToIter(m_cur, -n); \ | |
584 | return *this; \ | |
585 | } \ | |
30d560f4 | 586 | iterator_name& operator-=(size_t n) \ |
467175ab VS |
587 | { \ |
588 | m_cur = wxStringOperations::AddToIter(m_cur, -(int)n); \ | |
589 | return *this; \ | |
590 | } \ | |
8f93a29f | 591 | \ |
89360a8c | 592 | difference_type operator-(const iterator_name& i) const \ |
467175ab | 593 | { return wxStringOperations::DiffIters(m_cur, i.m_cur); } \ |
8f93a29f | 594 | \ |
f2a1b1bd | 595 | bool operator==(const iterator_name& i) const \ |
8f93a29f VS |
596 | { return m_cur == i.m_cur; } \ |
597 | bool operator!=(const iterator_name& i) const \ | |
598 | { return m_cur != i.m_cur; } \ | |
599 | \ | |
600 | bool operator<(const iterator_name& i) const \ | |
601 | { return m_cur < i.m_cur; } \ | |
602 | bool operator>(const iterator_name& i) const \ | |
603 | { return m_cur > i.m_cur; } \ | |
604 | bool operator<=(const iterator_name& i) const \ | |
605 | { return m_cur <= i.m_cur; } \ | |
606 | bool operator>=(const iterator_name& i) const \ | |
607 | { return m_cur >= i.m_cur; } \ | |
608 | \ | |
609 | private: \ | |
610 | /* for internal wxString use only: */ \ | |
cf9a878b | 611 | underlying_iterator impl() const { return m_cur; } \ |
8f93a29f VS |
612 | \ |
613 | friend class WXDLLIMPEXP_BASE wxString; \ | |
8f93a29f VS |
614 | friend class WXDLLIMPEXP_BASE wxCStrData; \ |
615 | \ | |
616 | private: \ | |
89360a8c | 617 | underlying_iterator m_cur |
8f93a29f VS |
618 | |
619 | class const_iterator; | |
620 | ||
81727065 VS |
621 | #if wxUSE_UNICODE_UTF8 |
622 | class iterator | |
623 | { | |
624 | // NB: In UTF-8 build, (non-const) iterator needs to keep reference | |
625 | // to the underlying wxStringImpl, because UTF-8 is variable-length | |
626 | // encoding and changing the value pointer to by an iterator using | |
627 | // its operator* requires calling wxStringImpl::replace() if the old | |
628 | // and new values differ in their encoding's length. | |
629 | ||
630 | WX_STR_ITERATOR_IMPL(iterator, wxChar*, wxUniCharRef, | |
631 | wxUniCharRef::CreateForString(m_str, m_cur)); | |
632 | ||
633 | public: | |
634 | iterator(const iterator& i) : m_cur(i.m_cur), m_str(i.m_str) {} | |
635 | ||
636 | iterator operator+(int n) const | |
467175ab | 637 | { return iterator(m_str, wxStringOperations::AddToIter(m_cur, n)); } |
81727065 | 638 | iterator operator+(size_t n) const |
467175ab | 639 | { return iterator(m_str, wxStringOperations::AddToIter(m_cur, (int)n)); } |
81727065 | 640 | iterator operator-(int n) const |
467175ab | 641 | { return iterator(m_str, wxStringOperations::AddToIter(m_cur, -n)); } |
81727065 | 642 | iterator operator-(size_t n) const |
467175ab | 643 | { return iterator(m_str, wxStringOperations::AddToIter(m_cur, -(int)n)); } |
81727065 VS |
644 | |
645 | private: | |
646 | iterator(wxString *str, underlying_iterator ptr) | |
647 | : m_cur(ptr), m_str(str->m_impl) {} | |
648 | iterator(wxStringImpl& str, underlying_iterator ptr) | |
649 | : m_cur(ptr), m_str(str) {} | |
650 | ||
651 | wxStringImpl& m_str; | |
652 | ||
653 | friend class const_iterator; | |
654 | }; | |
cf9a878b VS |
655 | |
656 | size_t IterToImplPos(wxString::iterator i) const | |
657 | { return wxStringImpl::const_iterator(i.impl()) - m_impl.begin(); } | |
658 | ||
81727065 | 659 | #else // !wxUSE_UNICODE_UTF8 |
cf9a878b | 660 | |
8f93a29f VS |
661 | class iterator |
662 | { | |
663 | WX_STR_ITERATOR_IMPL(iterator, wxChar*, wxUniCharRef, | |
89360a8c | 664 | wxUniCharRef::CreateForString(m_cur)); |
8f93a29f | 665 | |
81727065 VS |
666 | public: |
667 | iterator(const iterator& i) : m_cur(i.m_cur) {} | |
668 | ||
669 | iterator operator+(int n) const | |
467175ab | 670 | { return iterator(wxStringOperations::AddToIter(m_cur, n)); } |
81727065 | 671 | iterator operator+(size_t n) const |
467175ab | 672 | { return iterator(wxStringOperations::AddToIter(m_cur, (int)n)); } |
81727065 | 673 | iterator operator-(int n) const |
467175ab | 674 | { return iterator(wxStringOperations::AddToIter(m_cur, -n)); } |
81727065 | 675 | iterator operator-(size_t n) const |
467175ab | 676 | { return iterator(wxStringOperations::AddToIter(m_cur, -(int)n)); } |
81727065 VS |
677 | |
678 | private: | |
679 | // for internal wxString use only: | |
680 | iterator(underlying_iterator ptr) : m_cur(ptr) {} | |
681 | iterator(wxString *WXUNUSED(str), underlying_iterator ptr) : m_cur(ptr) {} | |
682 | ||
8f93a29f VS |
683 | friend class const_iterator; |
684 | }; | |
81727065 | 685 | #endif // wxUSE_UNICODE_UTF8/!wxUSE_UNICODE_UTF8 |
8f93a29f VS |
686 | |
687 | class const_iterator | |
688 | { | |
689 | // NB: reference_type is intentionally value, not reference, the character | |
690 | // may be encoded differently in wxString data: | |
691 | WX_STR_ITERATOR_IMPL(const_iterator, const wxChar*, wxUniChar, | |
467175ab | 692 | wxStringOperations::DecodeChar(m_cur)); |
8f93a29f VS |
693 | |
694 | public: | |
81727065 | 695 | const_iterator(const const_iterator& i) : m_cur(i.m_cur) {} |
8f93a29f | 696 | const_iterator(const iterator& i) : m_cur(i.m_cur) {} |
81727065 VS |
697 | |
698 | const_iterator operator+(int n) const | |
467175ab | 699 | { return const_iterator(wxStringOperations::AddToIter(m_cur, n)); } |
81727065 | 700 | const_iterator operator+(size_t n) const |
467175ab | 701 | { return const_iterator(wxStringOperations::AddToIter(m_cur, (int)n)); } |
81727065 | 702 | const_iterator operator-(int n) const |
467175ab | 703 | { return const_iterator(wxStringOperations::AddToIter(m_cur, -n)); } |
81727065 | 704 | const_iterator operator-(size_t n) const |
467175ab | 705 | { return const_iterator(wxStringOperations::AddToIter(m_cur, -(int)n)); } |
81727065 VS |
706 | |
707 | private: | |
708 | // for internal wxString use only: | |
709 | const_iterator(underlying_iterator ptr) : m_cur(ptr) {} | |
8f93a29f VS |
710 | }; |
711 | ||
a962cdf4 | 712 | #undef WX_STR_ITERATOR_TAG |
8f93a29f VS |
713 | #undef WX_STR_ITERATOR_IMPL |
714 | ||
715 | friend class iterator; | |
716 | friend class const_iterator; | |
717 | ||
718 | template <typename T> | |
719 | class reverse_iterator_impl | |
720 | { | |
721 | public: | |
722 | typedef T iterator_type; | |
a962cdf4 VS |
723 | |
724 | typedef typename T::iterator_category iterator_category; | |
8f93a29f | 725 | typedef typename T::value_type value_type; |
a962cdf4 | 726 | typedef typename T::difference_type difference_type; |
8f93a29f VS |
727 | typedef typename T::reference reference; |
728 | typedef typename T::pointer *pointer; | |
729 | ||
730 | reverse_iterator_impl(iterator_type i) : m_cur(i) {} | |
731 | reverse_iterator_impl(const reverse_iterator_impl& ri) | |
732 | : m_cur(ri.m_cur) {} | |
733 | ||
734 | iterator_type base() const { return m_cur; } | |
735 | ||
736 | reference operator*() const { return *(m_cur-1); } | |
a962cdf4 | 737 | reference operator[](size_t n) const { return *(*this + n); } |
8f93a29f VS |
738 | |
739 | reverse_iterator_impl& operator++() | |
740 | { --m_cur; return *this; } | |
741 | reverse_iterator_impl operator++(int) | |
742 | { reverse_iterator_impl tmp = *this; --m_cur; return tmp; } | |
743 | reverse_iterator_impl& operator--() | |
744 | { ++m_cur; return *this; } | |
745 | reverse_iterator_impl operator--(int) | |
746 | { reverse_iterator_impl tmp = *this; ++m_cur; return tmp; } | |
747 | ||
50eeb96f | 748 | // NB: explicit <T> in the functions below is to keep BCC 5.5 happy |
8f93a29f | 749 | reverse_iterator_impl operator+(int n) const |
50eeb96f | 750 | { return reverse_iterator_impl<T>(m_cur - n); } |
8f93a29f | 751 | reverse_iterator_impl operator+(size_t n) const |
50eeb96f | 752 | { return reverse_iterator_impl<T>(m_cur - n); } |
8f93a29f | 753 | reverse_iterator_impl operator-(int n) const |
50eeb96f | 754 | { return reverse_iterator_impl<T>(m_cur + n); } |
8f93a29f | 755 | reverse_iterator_impl operator-(size_t n) const |
50eeb96f | 756 | { return reverse_iterator_impl<T>(m_cur + n); } |
8f93a29f VS |
757 | reverse_iterator_impl operator+=(int n) |
758 | { m_cur -= n; return *this; } | |
759 | reverse_iterator_impl operator+=(size_t n) | |
760 | { m_cur -= n; return *this; } | |
761 | reverse_iterator_impl operator-=(int n) | |
762 | { m_cur += n; return *this; } | |
763 | reverse_iterator_impl operator-=(size_t n) | |
764 | { m_cur += n; return *this; } | |
765 | ||
766 | unsigned operator-(const reverse_iterator_impl& i) const | |
767 | { return i.m_cur - m_cur; } | |
768 | ||
769 | bool operator==(const reverse_iterator_impl& ri) const | |
770 | { return m_cur == ri.m_cur; } | |
771 | bool operator!=(const reverse_iterator_impl& ri) const | |
772 | { return !(*this == ri); } | |
773 | ||
774 | bool operator<(const reverse_iterator_impl& i) const | |
775 | { return m_cur > i.m_cur; } | |
776 | bool operator>(const reverse_iterator_impl& i) const | |
777 | { return m_cur < i.m_cur; } | |
778 | bool operator<=(const reverse_iterator_impl& i) const | |
779 | { return m_cur >= i.m_cur; } | |
780 | bool operator>=(const reverse_iterator_impl& i) const | |
781 | { return m_cur <= i.m_cur; } | |
782 | ||
783 | private: | |
784 | iterator_type m_cur; | |
785 | }; | |
e87b7833 | 786 | |
8f93a29f VS |
787 | typedef reverse_iterator_impl<iterator> reverse_iterator; |
788 | typedef reverse_iterator_impl<const_iterator> const_reverse_iterator; | |
e90c1d2a | 789 | |
67cff9dc VZ |
790 | private: |
791 | // used to transform an expression built using c_str() (and hence of type | |
792 | // wxCStrData) to an iterator into the string | |
793 | static const_iterator CreateConstIterator(const wxCStrData& data) | |
794 | { | |
795 | return const_iterator(data.m_str->begin() + data.m_offset); | |
796 | } | |
797 | ||
59953bf4 VS |
798 | // in UTF-8 STL build, creation from std::string requires conversion under |
799 | // non-UTF8 locales, so we can't have and use wxString(wxStringImpl) ctor; | |
800 | // instead we define dummy type that lets us have wxString ctor for creation | |
801 | // from wxStringImpl that couldn't be used by user code (in all other builds, | |
802 | // "standard" ctors can be used): | |
803 | #if wxUSE_UNICODE_UTF8 && wxUSE_STL_BASED_WXSTRING | |
804 | struct CtorFromStringImplTag {}; | |
805 | ||
806 | wxString(CtorFromStringImplTag* WXUNUSED(dummy), const wxStringImpl& src) | |
807 | : m_impl(src) {} | |
808 | ||
809 | static wxString FromImpl(const wxStringImpl& src) | |
810 | { return wxString((CtorFromStringImplTag*)NULL, src); } | |
811 | #else | |
82a99c69 | 812 | #if !wxUSE_STL_BASED_WXSTRING |
59953bf4 | 813 | wxString(const wxStringImpl& src) : m_impl(src) { } |
82a99c69 VS |
814 | // else: already defined as wxString(wxStdString) below |
815 | #endif | |
59953bf4 VS |
816 | static wxString FromImpl(const wxStringImpl& src) { return wxString(src); } |
817 | #endif | |
818 | ||
67cff9dc VZ |
819 | public: |
820 | // constructors and destructor | |
821 | // ctor for an empty string | |
822 | wxString() {} | |
823 | ||
824 | // copy ctor | |
67cff9dc VZ |
825 | wxString(const wxString& stringSrc) : m_impl(stringSrc.m_impl) { } |
826 | ||
827 | // string containing nRepeat copies of ch | |
828 | wxString(wxUniChar ch, size_t nRepeat = 1) | |
829 | { assign(nRepeat, ch); } | |
830 | wxString(size_t nRepeat, wxUniChar ch) | |
831 | { assign(nRepeat, ch); } | |
832 | wxString(wxUniCharRef ch, size_t nRepeat = 1) | |
833 | { assign(nRepeat, ch); } | |
834 | wxString(size_t nRepeat, wxUniCharRef ch) | |
835 | { assign(nRepeat, ch); } | |
836 | wxString(char ch, size_t nRepeat = 1) | |
837 | { assign(nRepeat, ch); } | |
838 | wxString(size_t nRepeat, char ch) | |
839 | { assign(nRepeat, ch); } | |
840 | wxString(wchar_t ch, size_t nRepeat = 1) | |
841 | { assign(nRepeat, ch); } | |
842 | wxString(size_t nRepeat, wchar_t ch) | |
843 | { assign(nRepeat, ch); } | |
844 | ||
845 | // ctors from char* strings: | |
846 | wxString(const char *psz) | |
847 | : m_impl(ImplStr(psz)) {} | |
848 | wxString(const char *psz, const wxMBConv& conv) | |
849 | : m_impl(ImplStr(psz, conv)) {} | |
850 | wxString(const char *psz, size_t nLength) | |
851 | { assign(psz, nLength); } | |
852 | wxString(const char *psz, const wxMBConv& conv, size_t nLength) | |
853 | { | |
854 | SubstrBufFromMB str(ImplStr(psz, nLength, conv)); | |
855 | m_impl.assign(str.data, str.len); | |
856 | } | |
857 | ||
858 | // and unsigned char*: | |
859 | wxString(const unsigned char *psz) | |
860 | : m_impl(ImplStr((const char*)psz)) {} | |
861 | wxString(const unsigned char *psz, const wxMBConv& conv) | |
862 | : m_impl(ImplStr((const char*)psz, conv)) {} | |
863 | wxString(const unsigned char *psz, size_t nLength) | |
864 | { assign((const char*)psz, nLength); } | |
865 | wxString(const unsigned char *psz, const wxMBConv& conv, size_t nLength) | |
866 | { | |
867 | SubstrBufFromMB str(ImplStr((const char*)psz, nLength, conv)); | |
868 | m_impl.assign(str.data, str.len); | |
869 | } | |
870 | ||
871 | // ctors from wchar_t* strings: | |
872 | wxString(const wchar_t *pwz) | |
873 | : m_impl(ImplStr(pwz)) {} | |
874 | wxString(const wchar_t *pwz, const wxMBConv& WXUNUSED(conv)) | |
875 | : m_impl(ImplStr(pwz)) {} | |
876 | wxString(const wchar_t *pwz, size_t nLength) | |
877 | { assign(pwz, nLength); } | |
878 | wxString(const wchar_t *pwz, const wxMBConv& WXUNUSED(conv), size_t nLength) | |
879 | { assign(pwz, nLength); } | |
880 | ||
881 | wxString(const wxCharBuffer& buf) | |
882 | { assign(buf.data()); } // FIXME-UTF8: fix for embedded NUL and buffer length | |
883 | wxString(const wxWCharBuffer& buf) | |
884 | { assign(buf.data()); } // FIXME-UTF8: fix for embedded NUL and buffer length | |
885 | ||
886 | wxString(const wxCStrData& cstr) | |
887 | : m_impl(cstr.AsString().m_impl) { } | |
888 | ||
889 | // as we provide both ctors with this signature for both char and unsigned | |
890 | // char string, we need to provide one for wxCStrData to resolve ambiguity | |
891 | wxString(const wxCStrData& cstr, size_t nLength) | |
892 | : m_impl(cstr.AsString().Mid(0, nLength).m_impl) {} | |
893 | ||
894 | // and because wxString is convertible to wxCStrData and const wxChar * | |
895 | // we also need to provide this one | |
896 | wxString(const wxString& str, size_t nLength) | |
897 | : m_impl(str.Mid(0, nLength).m_impl) {} | |
898 | ||
899 | // even if we're not built with wxUSE_STL == 1 it is very convenient to allow | |
59953bf4 VS |
900 | // implicit conversions from std::string to wxString and vice verse as this |
901 | // allows to use the same strings in non-GUI and GUI code, however we don't | |
902 | // want to unconditionally add this ctor as it would make wx lib dependent on | |
67cff9dc VZ |
903 | // libstdc++ on some Linux versions which is bad, so instead we ask the |
904 | // client code to define this wxUSE_STD_STRING symbol if they need it | |
59953bf4 | 905 | #if wxUSE_STD_STRING |
59953bf4 VS |
906 | #if wxUSE_UNICODE_WCHAR |
907 | wxString(const wxStdWideString& str) : m_impl(str) {} | |
908 | #else // UTF-8 or ANSI | |
909 | wxString(const wxStdWideString& str) | |
910 | { assign(str.c_str(), str.length()); } | |
911 | #endif | |
912 | ||
913 | #if !wxUSE_UNICODE // ANSI build | |
914 | // FIXME-UTF8: do this in UTF8 build #if wxUSE_UTF8_LOCALE_ONLY, too | |
915 | wxString(const std::string& str) : m_impl(str) {} | |
916 | #else // Unicode | |
917 | wxString(const std::string& str) | |
918 | { assign(str.c_str(), str.length()); } | |
919 | #endif | |
920 | ||
921 | #if wxUSE_UNICODE_WCHAR && wxUSE_STL_BASED_WXSTRING | |
922 | // wxStringImpl is std::string in the encoding we want | |
923 | operator const wxStdWideString&() const { return m_impl; } | |
924 | #else | |
925 | // wxStringImpl is either not std::string or needs conversion | |
926 | operator wxStdWideString() const | |
927 | // FIXME-UTF8: broken for embedded NULs | |
928 | { return wxStdWideString(wc_str()); } | |
929 | #endif | |
930 | ||
111d9948 | 931 | #if (!wxUSE_UNICODE || wxUSE_UTF8_LOCALE_ONLY) && wxUSE_STL_BASED_WXSTRING |
59953bf4 VS |
932 | // wxStringImpl is std::string in the encoding we want |
933 | operator const std::string&() const { return m_impl; } | |
934 | #else | |
935 | // wxStringImpl is either not std::string or needs conversion | |
936 | operator std::string() const | |
937 | // FIXME-UTF8: broken for embedded NULs | |
938 | { return std::string(mb_str()); } | |
939 | #endif | |
111d9948 | 940 | #endif // wxUSE_STL |
67cff9dc | 941 | |
8f93a29f VS |
942 | // first valid index position |
943 | const_iterator begin() const { return const_iterator(m_impl.begin()); } | |
81727065 | 944 | iterator begin() { return iterator(this, m_impl.begin()); } |
8f93a29f VS |
945 | // position one after the last valid one |
946 | const_iterator end() const { return const_iterator(m_impl.end()); } | |
81727065 | 947 | iterator end() { return iterator(this, m_impl.end()); } |
8f93a29f VS |
948 | |
949 | // first element of the reversed string | |
950 | const_reverse_iterator rbegin() const | |
951 | { return const_reverse_iterator(end()); } | |
952 | reverse_iterator rbegin() | |
953 | { return reverse_iterator(end()); } | |
954 | // one beyond the end of the reversed string | |
955 | const_reverse_iterator rend() const | |
956 | { return const_reverse_iterator(begin()); } | |
957 | reverse_iterator rend() | |
958 | { return reverse_iterator(begin()); } | |
959 | ||
960 | // std::string methods: | |
961 | #if wxUSE_UNICODE_UTF8 | |
962 | size_t length() const { return end() - begin(); } // FIXME-UTF8: optimize! | |
963 | #else | |
964 | size_t length() const { return m_impl.length(); } | |
965 | #endif | |
ce76f779 | 966 | |
8f93a29f VS |
967 | size_type size() const { return length(); } |
968 | size_type max_size() const { return npos; } | |
e90c1d2a | 969 | |
8f93a29f | 970 | bool empty() const { return m_impl.empty(); } |
b77afb41 | 971 | |
8f93a29f VS |
972 | size_type capacity() const { return m_impl.capacity(); } // FIXME-UTF8 |
973 | void reserve(size_t sz) { m_impl.reserve(sz); } // FIXME-UTF8 | |
b77afb41 | 974 | |
8f93a29f VS |
975 | void resize(size_t nSize, wxUniChar ch = wxT('\0')) |
976 | { | |
977 | #if wxUSE_UNICODE_UTF8 | |
978 | if ( !ch.IsAscii() ) | |
979 | { | |
980 | size_t len = length(); | |
981 | if ( nSize == len) | |
982 | return; | |
983 | else if ( nSize < len ) | |
984 | erase(nSize); | |
985 | else | |
986 | append(nSize - len, ch); | |
987 | } | |
988 | else | |
989 | #endif | |
990 | m_impl.resize(nSize, (wxStringCharType)ch); | |
991 | } | |
e90c1d2a | 992 | |
8f93a29f VS |
993 | wxString substr(size_t nStart = 0, size_t nLen = npos) const |
994 | { | |
995 | size_t pos, len; | |
996 | PosLenToImpl(nStart, nLen, &pos, &len); | |
59953bf4 | 997 | return FromImpl(m_impl.substr(pos, len)); |
8f93a29f | 998 | } |
e90c1d2a | 999 | |
3c67202d VZ |
1000 | // generic attributes & operations |
1001 | // as standard strlen() | |
e87b7833 | 1002 | size_t Len() const { return length(); } |
3c67202d | 1003 | // string contains any characters? |
e87b7833 | 1004 | bool IsEmpty() const { return empty(); } |
d775fa82 | 1005 | // empty string is "false", so !str will return true |
20aa779e | 1006 | bool operator!() const { return empty(); } |
735d1db6 VZ |
1007 | // truncate the string to given length |
1008 | wxString& Truncate(size_t uiLen); | |
3c67202d | 1009 | // empty string contents |
dd1eaa89 VZ |
1010 | void Empty() |
1011 | { | |
735d1db6 | 1012 | Truncate(0); |
dd1eaa89 | 1013 | |
5a8231ef | 1014 | wxASSERT_MSG( empty(), _T("string not empty after call to Empty()?") ); |
7be07660 | 1015 | } |
3c67202d | 1016 | // empty the string and free memory |
7be07660 VZ |
1017 | void Clear() |
1018 | { | |
e87b7833 MB |
1019 | wxString tmp(wxEmptyString); |
1020 | swap(tmp); | |
dd1eaa89 VZ |
1021 | } |
1022 | ||
3c67202d VZ |
1023 | // contents test |
1024 | // Is an ascii value | |
c801d85f | 1025 | bool IsAscii() const; |
3c67202d | 1026 | // Is a number |
c801d85f | 1027 | bool IsNumber() const; |
3c67202d | 1028 | // Is a word |
c801d85f | 1029 | bool IsWord() const; |
c801d85f | 1030 | |
3c67202d VZ |
1031 | // data access (all indexes are 0 based) |
1032 | // read access | |
8f93a29f VS |
1033 | wxUniChar at(size_t n) const |
1034 | { return *(begin() + n); } // FIXME-UTF8: optimize? | |
c9f78968 | 1035 | wxUniChar GetChar(size_t n) const |
9d9ad673 | 1036 | { return at(n); } |
3c67202d | 1037 | // read/write access |
8f93a29f VS |
1038 | wxUniCharRef at(size_t n) |
1039 | { return *(begin() + n); } // FIXME-UTF8: optimize? | |
c9f78968 | 1040 | wxUniCharRef GetWritableChar(size_t n) |
9d9ad673 | 1041 | { return at(n); } |
3c67202d | 1042 | // write access |
c9f78968 | 1043 | void SetChar(size_t n, wxUniChar ch) |
9d9ad673 | 1044 | { at(n) = ch; } |
c801d85f | 1045 | |
3c67202d | 1046 | // get last character |
8f93a29f | 1047 | wxUniChar Last() const |
09443a26 | 1048 | { |
5a8231ef | 1049 | wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") ); |
09443a26 | 1050 | |
9d9ad673 | 1051 | return at(length() - 1); |
09443a26 VZ |
1052 | } |
1053 | ||
3c67202d | 1054 | // get writable last character |
c9f78968 | 1055 | wxUniCharRef Last() |
09443a26 | 1056 | { |
5a8231ef | 1057 | wxASSERT_MSG( !empty(), _T("wxString: index out of bounds") ); |
9d9ad673 | 1058 | return at(length() - 1); |
09443a26 | 1059 | } |
c801d85f | 1060 | |
d836ee96 | 1061 | /* |
9d9ad673 | 1062 | Note that we we must define all of the overloads below to avoid |
c9f78968 | 1063 | ambiguity when using str[0]. |
d836ee96 | 1064 | */ |
c9f78968 | 1065 | wxUniChar operator[](int n) const |
8f93a29f | 1066 | { return at(n); } |
c1df0a3b | 1067 | wxUniChar operator[](long n) const |
8f93a29f | 1068 | { return at(n); } |
c9f78968 | 1069 | wxUniChar operator[](size_t n) const |
8f93a29f | 1070 | { return at(n); } |
01398433 | 1071 | #ifndef wxSIZE_T_IS_UINT |
c9f78968 | 1072 | wxUniChar operator[](unsigned int n) const |
8f93a29f | 1073 | { return at(n); } |
01398433 | 1074 | #endif // size_t != unsigned int |
01398433 | 1075 | |
9d9ad673 | 1076 | // operator versions of GetWriteableChar() |
c9f78968 | 1077 | wxUniCharRef operator[](int n) |
8f93a29f | 1078 | { return at(n); } |
c1df0a3b | 1079 | wxUniCharRef operator[](long n) |
8f93a29f | 1080 | { return at(n); } |
c9f78968 | 1081 | wxUniCharRef operator[](size_t n) |
8f93a29f | 1082 | { return at(n); } |
d836ee96 | 1083 | #ifndef wxSIZE_T_IS_UINT |
c9f78968 | 1084 | wxUniCharRef operator[](unsigned int n) |
8f93a29f | 1085 | { return at(n); } |
d836ee96 | 1086 | #endif // size_t != unsigned int |
c801d85f | 1087 | |
c9f78968 VS |
1088 | // explicit conversion to C string (use this with printf()!) |
1089 | wxCStrData c_str() const { return wxCStrData(this); } | |
8f93a29f | 1090 | wxCStrData data() const { return c_str(); } |
c9f78968 | 1091 | |
3c67202d | 1092 | // implicit conversion to C string |
c9f78968 | 1093 | operator wxCStrData() const { return c_str(); } |
11aac4ba VS |
1094 | operator const char*() const { return c_str(); } |
1095 | operator const wchar_t*() const { return c_str(); } | |
e015c2a3 | 1096 | |
353a4edc VZ |
1097 | // implicit conversion to untyped pointer for compatibility with previous |
1098 | // wxWidgets versions: this is the same as conversion to const char * so it | |
1099 | // may fail! | |
1100 | operator const void*() const { return c_str(); } | |
1101 | ||
e015c2a3 | 1102 | // identical to c_str(), for MFC compatibility |
c9f78968 VS |
1103 | const wxCStrData GetData() const { return c_str(); } |
1104 | ||
1105 | // explicit conversion to C string in internal representation (char*, | |
1106 | // wchar_t*, UTF-8-encoded char*, depending on the build): | |
81727065 | 1107 | const wxStringCharType *wx_str() const { return m_impl.c_str(); } |
e90c1d2a | 1108 | |
ef0f1387 VS |
1109 | // conversion to *non-const* multibyte or widestring buffer; modifying |
1110 | // returned buffer won't affect the string, these methods are only useful | |
1111 | // for passing values to const-incorrect functions | |
8060b0be VS |
1112 | wxWritableCharBuffer char_str(const wxMBConv& conv = wxConvLibc) const |
1113 | { return mb_str(conv); } | |
ef0f1387 VS |
1114 | wxWritableWCharBuffer wchar_str() const { return wc_str(); } |
1115 | ||
e015c2a3 VZ |
1116 | // conversion to/from plain (i.e. 7 bit) ASCII: this is useful for |
1117 | // converting numbers or strings which are certain not to contain special | |
1118 | // chars (typically system functions, X atoms, environment variables etc.) | |
1119 | // | |
1120 | // the behaviour of these functions with the strings containing anything | |
1121 | // else than 7 bit ASCII characters is undefined, use at your own risk. | |
b1ac3b56 | 1122 | #if wxUSE_UNICODE |
2b5f62a0 VZ |
1123 | static wxString FromAscii(const char *ascii); // string |
1124 | static wxString FromAscii(const char ascii); // char | |
b1ac3b56 | 1125 | const wxCharBuffer ToAscii() const; |
e015c2a3 VZ |
1126 | #else // ANSI |
1127 | static wxString FromAscii(const char *ascii) { return wxString( ascii ); } | |
2b5f62a0 | 1128 | static wxString FromAscii(const char ascii) { return wxString( ascii ); } |
e015c2a3 VZ |
1129 | const char *ToAscii() const { return c_str(); } |
1130 | #endif // Unicode/!Unicode | |
b1ac3b56 | 1131 | |
cb2f2135 VS |
1132 | // functions for storing binary data in wxString: |
1133 | #if wxUSE_UNICODE | |
1134 | static wxString From8BitData(const char *data, size_t len) | |
1135 | { return wxString(data, wxConvISO8859_1, len); } | |
1136 | // version for NUL-terminated data: | |
1137 | static wxString From8BitData(const char *data) | |
1138 | { return wxString(data, wxConvISO8859_1); } | |
1139 | const wxCharBuffer To8BitData() const { return mb_str(wxConvISO8859_1); } | |
1140 | #else // ANSI | |
1141 | static wxString From8BitData(const char *data, size_t len) | |
1142 | { return wxString(data, len); } | |
1143 | // version for NUL-terminated data: | |
1144 | static wxString From8BitData(const char *data) | |
1145 | { return wxString(data); } | |
1146 | const char *To8BitData() const { return c_str(); } | |
1147 | #endif // Unicode/ANSI | |
1148 | ||
2b5f62a0 | 1149 | // conversions with (possible) format conversions: have to return a |
e90c1d2a | 1150 | // buffer with temporary data |
f6bcfd97 BP |
1151 | // |
1152 | // the functions defined (in either Unicode or ANSI) mode are mb_str() to | |
1153 | // return an ANSI (multibyte) string, wc_str() to return a wide string and | |
1154 | // fn_str() to return a string which should be used with the OS APIs | |
1155 | // accepting the file names. The return value is always the same, but the | |
1156 | // type differs because a function may either return pointer to the buffer | |
1157 | // directly or have to use intermediate buffer for translation. | |
2bb67b80 | 1158 | #if wxUSE_UNICODE |
111d9948 VS |
1159 | |
1160 | #if wxUSE_UTF8_LOCALE_ONLY | |
1161 | const char* mb_str() const { return wx_str(); } | |
1162 | const wxCharBuffer mb_str(const wxMBConv& conv) const; | |
1163 | #else | |
830f8f11 | 1164 | const wxCharBuffer mb_str(const wxMBConv& conv = wxConvLibc) const; |
111d9948 | 1165 | #endif |
f6bcfd97 | 1166 | |
e90c1d2a VZ |
1167 | const wxWX2MBbuf mbc_str() const { return mb_str(*wxConvCurrent); } |
1168 | ||
81727065 VS |
1169 | #if wxUSE_UNICODE_WCHAR |
1170 | const wxChar* wc_str() const { return wx_str(); } | |
1171 | #elif wxUSE_UNICODE_UTF8 | |
1172 | const wxWCharBuffer wc_str() const; | |
1173 | #endif | |
f6bcfd97 | 1174 | // for compatibility with !wxUSE_UNICODE version |
81727065 VS |
1175 | const wxWX2WCbuf wc_str(const wxMBConv& WXUNUSED(conv)) const |
1176 | { return wc_str(); } | |
e90c1d2a | 1177 | |
2bb67b80 | 1178 | #if wxMBFILES |
5f709e67 | 1179 | const wxCharBuffer fn_str() const { return mb_str(wxConvFile); } |
e90c1d2a | 1180 | #else // !wxMBFILES |
81727065 | 1181 | const wxWX2WCbuf fn_str() const { return wc_str(); } |
e90c1d2a | 1182 | #endif // wxMBFILES/!wxMBFILES |
81727065 | 1183 | |
e90c1d2a | 1184 | #else // ANSI |
81727065 | 1185 | const wxChar* mb_str() const { return wx_str(); } |
f6bcfd97 BP |
1186 | |
1187 | // for compatibility with wxUSE_UNICODE version | |
81727065 | 1188 | const wxChar* mb_str(const wxMBConv& WXUNUSED(conv)) const { return wx_str(); } |
f6bcfd97 | 1189 | |
e90c1d2a | 1190 | const wxWX2MBbuf mbc_str() const { return mb_str(); } |
f6bcfd97 | 1191 | |
6f841509 | 1192 | #if wxUSE_WCHAR_T |
ef0f1387 | 1193 | const wxWCharBuffer wc_str(const wxMBConv& conv = wxConvLibc) const; |
e90c1d2a | 1194 | #endif // wxUSE_WCHAR_T |
d5c8817c SC |
1195 | #ifdef __WXOSX__ |
1196 | const wxCharBuffer fn_str() const { return wxConvFile.cWC2WX( wc_str( wxConvLocal ) ); } | |
1197 | #else | |
e87b7833 | 1198 | const wxChar* fn_str() const { return c_str(); } |
d5c8817c | 1199 | #endif |
e90c1d2a | 1200 | #endif // Unicode/ANSI |
c801d85f | 1201 | |
3c67202d VZ |
1202 | // overloaded assignment |
1203 | // from another wxString | |
04abe4bc VS |
1204 | wxString& operator=(const wxString& stringSrc) |
1205 | { m_impl = stringSrc.m_impl; return *this; } | |
8f93a29f VS |
1206 | wxString& operator=(const wxCStrData& cstr) |
1207 | { return *this = cstr.AsString(); } | |
3c67202d | 1208 | // from a character |
c9f78968 | 1209 | wxString& operator=(wxUniChar ch) |
467175ab | 1210 | { m_impl = wxStringOperations::EncodeChar(ch); return *this; } |
c9f78968 | 1211 | wxString& operator=(wxUniCharRef ch) |
8f93a29f | 1212 | { return operator=((wxUniChar)ch); } |
c9f78968 | 1213 | wxString& operator=(char ch) |
8f93a29f | 1214 | { return operator=(wxUniChar(ch)); } |
50e02008 VS |
1215 | wxString& operator=(unsigned char ch) |
1216 | { return operator=(wxUniChar(ch)); } | |
c9f78968 | 1217 | wxString& operator=(wchar_t ch) |
8f93a29f | 1218 | { return operator=(wxUniChar(ch)); } |
c57e3bd5 RN |
1219 | // from a C string - STL probably will crash on NULL, |
1220 | // so we need to compensate in that case | |
992527a5 | 1221 | #if wxUSE_STL_BASED_WXSTRING |
04abe4bc VS |
1222 | wxString& operator=(const char *psz) |
1223 | { if (psz) m_impl = ImplStr(psz); else Clear(); return *this; } | |
1224 | wxString& operator=(const wchar_t *pwz) | |
1225 | { if (pwz) m_impl = ImplStr(pwz); else Clear(); return *this; } | |
c57e3bd5 | 1226 | #else |
04abe4bc VS |
1227 | wxString& operator=(const char *psz) |
1228 | { m_impl = ImplStr(psz); return *this; } | |
1229 | wxString& operator=(const wchar_t *pwz) | |
1230 | { m_impl = ImplStr(pwz); return *this; } | |
c57e3bd5 | 1231 | #endif |
04abe4bc VS |
1232 | wxString& operator=(const unsigned char *psz) |
1233 | { return operator=((const char*)psz); } | |
c57e3bd5 | 1234 | |
111bb7f2 | 1235 | // from wxWCharBuffer |
8f93a29f | 1236 | wxString& operator=(const wxWCharBuffer& s) |
04abe4bc | 1237 | { return operator=(s.data()); } // FIXME-UTF8: fix for embedded NULs |
111bb7f2 | 1238 | // from wxCharBuffer |
04abe4bc VS |
1239 | wxString& operator=(const wxCharBuffer& s) |
1240 | { return operator=(s.data()); } // FIXME-UTF8: fix for embedded NULs | |
3c67202d VZ |
1241 | |
1242 | // string concatenation | |
1243 | // in place concatenation | |
1244 | /* | |
1245 | Concatenate and return the result. Note that the left to right | |
1246 | associativity of << allows to write things like "str << str1 << str2 | |
1247 | << ..." (unlike with +=) | |
1248 | */ | |
1249 | // string += string | |
dd1eaa89 VZ |
1250 | wxString& operator<<(const wxString& s) |
1251 | { | |
8f93a29f VS |
1252 | #if WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8 |
1253 | wxASSERT_MSG( s.IsValid(), | |
09443a26 | 1254 | _T("did you forget to call UngetWriteBuf()?") ); |
e87b7833 | 1255 | #endif |
dd1eaa89 | 1256 | |
e87b7833 | 1257 | append(s); |
dd1eaa89 VZ |
1258 | return *this; |
1259 | } | |
3c67202d | 1260 | // string += C string |
8f93a29f | 1261 | wxString& operator<<(const char *psz) |
c9f78968 | 1262 | { append(psz); return *this; } |
8f93a29f VS |
1263 | wxString& operator<<(const wchar_t *pwz) |
1264 | { append(pwz); return *this; } | |
c9f78968 | 1265 | wxString& operator<<(const wxCStrData& psz) |
8f93a29f | 1266 | { append(psz.AsString()); return *this; } |
3c67202d | 1267 | // string += char |
c9f78968 VS |
1268 | wxString& operator<<(wxUniChar ch) { append(1, ch); return *this; } |
1269 | wxString& operator<<(wxUniCharRef ch) { append(1, ch); return *this; } | |
1270 | wxString& operator<<(char ch) { append(1, ch); return *this; } | |
50e02008 | 1271 | wxString& operator<<(unsigned char ch) { append(1, ch); return *this; } |
c9f78968 | 1272 | wxString& operator<<(wchar_t ch) { append(1, ch); return *this; } |
2bb67b80 OK |
1273 | |
1274 | // string += buffer (i.e. from wxGetString) | |
09443a26 | 1275 | wxString& operator<<(const wxWCharBuffer& s) |
d7330233 | 1276 | { return operator<<((const wchar_t *)s); } |
09443a26 | 1277 | wxString& operator<<(const wxCharBuffer& s) |
d7330233 | 1278 | { return operator<<((const char *)s); } |
d7330233 | 1279 | |
3c67202d | 1280 | // string += C string |
09443a26 VZ |
1281 | wxString& Append(const wxString& s) |
1282 | { | |
5a8231ef WS |
1283 | // test for empty() to share the string if possible |
1284 | if ( empty() ) | |
09443a26 VZ |
1285 | *this = s; |
1286 | else | |
e87b7833 | 1287 | append(s); |
09443a26 VZ |
1288 | return *this; |
1289 | } | |
8f93a29f | 1290 | wxString& Append(const char* psz) |
e87b7833 | 1291 | { append(psz); return *this; } |
8f93a29f VS |
1292 | wxString& Append(const wchar_t* pwz) |
1293 | { append(pwz); return *this; } | |
d3cefe87 VS |
1294 | wxString& Append(const wxCStrData& psz) |
1295 | { append(psz); return *this; } | |
1296 | wxString& Append(const wxCharBuffer& psz) | |
1297 | { append(psz); return *this; } | |
1298 | wxString& Append(const wxWCharBuffer& psz) | |
1299 | { append(psz); return *this; } | |
3c67202d | 1300 | // append count copies of given character |
c9f78968 VS |
1301 | wxString& Append(wxUniChar ch, size_t count = 1u) |
1302 | { append(count, ch); return *this; } | |
1303 | wxString& Append(wxUniCharRef ch, size_t count = 1u) | |
1304 | { append(count, ch); return *this; } | |
1305 | wxString& Append(char ch, size_t count = 1u) | |
1306 | { append(count, ch); return *this; } | |
50e02008 VS |
1307 | wxString& Append(unsigned char ch, size_t count = 1u) |
1308 | { append(count, ch); return *this; } | |
c9f78968 | 1309 | wxString& Append(wchar_t ch, size_t count = 1u) |
e87b7833 | 1310 | { append(count, ch); return *this; } |
8f93a29f | 1311 | wxString& Append(const char* psz, size_t nLen) |
e87b7833 | 1312 | { append(psz, nLen); return *this; } |
8f93a29f VS |
1313 | wxString& Append(const wchar_t* pwz, size_t nLen) |
1314 | { append(pwz, nLen); return *this; } | |
3c67202d VZ |
1315 | |
1316 | // prepend a string, return the string itself | |
1317 | wxString& Prepend(const wxString& str) | |
1318 | { *this = str + *this; return *this; } | |
1319 | ||
1320 | // non-destructive concatenation | |
1fc8cfbd VZ |
1321 | // two strings |
1322 | friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string1, | |
1323 | const wxString& string2); | |
1324 | // string with a single char | |
c9f78968 | 1325 | friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxUniChar ch); |
1fc8cfbd | 1326 | // char with a string |
c9f78968 | 1327 | friend wxString WXDLLIMPEXP_BASE operator+(wxUniChar ch, const wxString& string); |
1fc8cfbd VZ |
1328 | // string with C string |
1329 | friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string, | |
8f93a29f VS |
1330 | const char *psz); |
1331 | friend wxString WXDLLIMPEXP_BASE operator+(const wxString& string, | |
1332 | const wchar_t *pwz); | |
1fc8cfbd | 1333 | // C string with string |
8f93a29f VS |
1334 | friend wxString WXDLLIMPEXP_BASE operator+(const char *psz, |
1335 | const wxString& string); | |
1336 | friend wxString WXDLLIMPEXP_BASE operator+(const wchar_t *pwz, | |
1fc8cfbd | 1337 | const wxString& string); |
3c67202d VZ |
1338 | |
1339 | // stream-like functions | |
1340 | // insert an int into string | |
3ce65f6c VZ |
1341 | wxString& operator<<(int i) |
1342 | { return (*this) << Format(_T("%d"), i); } | |
1343 | // insert an unsigned int into string | |
1344 | wxString& operator<<(unsigned int ui) | |
1345 | { return (*this) << Format(_T("%u"), ui); } | |
1346 | // insert a long into string | |
1347 | wxString& operator<<(long l) | |
1348 | { return (*this) << Format(_T("%ld"), l); } | |
1349 | // insert an unsigned long into string | |
1350 | wxString& operator<<(unsigned long ul) | |
1351 | { return (*this) << Format(_T("%lu"), ul); } | |
3fc1adbd MW |
1352 | #if defined wxLongLong_t && !defined wxLongLongIsLong |
1353 | // insert a long long if they exist and aren't longs | |
1354 | wxString& operator<<(wxLongLong_t ll) | |
b7859132 MW |
1355 | { |
1356 | const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("d"); | |
1357 | return (*this) << Format(fmt, ll); | |
1358 | } | |
3fc1adbd MW |
1359 | // insert an unsigned long long |
1360 | wxString& operator<<(wxULongLong_t ull) | |
b7859132 MW |
1361 | { |
1362 | const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("u"); | |
1363 | return (*this) << Format(fmt , ull); | |
1364 | } | |
3fc1adbd | 1365 | #endif |
3c67202d | 1366 | // insert a float into string |
3ce65f6c VZ |
1367 | wxString& operator<<(float f) |
1368 | { return (*this) << Format(_T("%f"), f); } | |
3c67202d | 1369 | // insert a double into string |
3ce65f6c VZ |
1370 | wxString& operator<<(double d) |
1371 | { return (*this) << Format(_T("%g"), d); } | |
c84c52de | 1372 | |
3c67202d | 1373 | // string comparison |
30b21f9a | 1374 | // case-sensitive comparison (returns a value < 0, = 0 or > 0) |
8f93a29f VS |
1375 | int Cmp(const char *psz) const |
1376 | { return compare(psz); } | |
1377 | int Cmp(const wchar_t *pwz) const | |
1378 | { return compare(pwz); } | |
1379 | int Cmp(const wxString& s) const | |
1380 | { return compare(s); } | |
d3cefe87 VS |
1381 | int Cmp(const wxCStrData& s) const |
1382 | { return compare(s); } | |
1383 | int Cmp(const wxCharBuffer& s) const | |
1384 | { return compare(s); } | |
1385 | int Cmp(const wxWCharBuffer& s) const | |
1386 | { return compare(s); } | |
3c67202d | 1387 | // same as Cmp() but not case-sensitive |
dcb68102 | 1388 | int CmpNoCase(const wxString& s) const; |
3c67202d VZ |
1389 | // test for the string equality, either considering case or not |
1390 | // (if compareWithCase then the case matters) | |
11aac4ba VS |
1391 | bool IsSameAs(const wxString& str, bool compareWithCase = true) const |
1392 | { return (compareWithCase ? Cmp(str) : CmpNoCase(str)) == 0; } | |
1393 | bool IsSameAs(const char *str, bool compareWithCase = true) const | |
1394 | { return (compareWithCase ? Cmp(str) : CmpNoCase(str)) == 0; } | |
1395 | bool IsSameAs(const wchar_t *str, bool compareWithCase = true) const | |
1396 | { return (compareWithCase ? Cmp(str) : CmpNoCase(str)) == 0; } | |
d3cefe87 VS |
1397 | bool IsSameAs(const wxCStrData& str, bool compareWithCase = true) const |
1398 | { return IsSameAs(str.AsString(), compareWithCase); } | |
1399 | bool IsSameAs(const wxCharBuffer& str, bool compareWithCase = true) const | |
1400 | { return IsSameAs(str.data(), compareWithCase); } | |
1401 | bool IsSameAs(const wxWCharBuffer& str, bool compareWithCase = true) const | |
1402 | { return IsSameAs(str.data(), compareWithCase); } | |
20aa779e | 1403 | // comparison with a single character: returns true if equal |
c9f78968 | 1404 | bool IsSameAs(wxUniChar c, bool compareWithCase = true) const |
f33fee2a | 1405 | { |
e87b7833 | 1406 | return (length() == 1) && (compareWithCase ? GetChar(0u) == c |
f33fee2a VZ |
1407 | : wxToupper(GetChar(0u)) == wxToupper(c)); |
1408 | } | |
11aac4ba VS |
1409 | // FIXME-UTF8: remove these overloads |
1410 | bool IsSameAs(wxUniCharRef c, bool compareWithCase = true) const | |
1411 | { return IsSameAs(wxUniChar(c), compareWithCase); } | |
1412 | bool IsSameAs(char c, bool compareWithCase = true) const | |
1413 | { return IsSameAs(wxUniChar(c), compareWithCase); } | |
1414 | bool IsSameAs(unsigned char c, bool compareWithCase = true) const | |
1415 | { return IsSameAs(wxUniChar(c), compareWithCase); } | |
1416 | bool IsSameAs(wchar_t c, bool compareWithCase = true) const | |
1417 | { return IsSameAs(wxUniChar(c), compareWithCase); } | |
1418 | bool IsSameAs(int c, bool compareWithCase = true) const | |
1419 | { return IsSameAs(wxUniChar(c), compareWithCase); } | |
3c67202d VZ |
1420 | |
1421 | // simple sub-string extraction | |
1422 | // return substring starting at nFirst of length nCount (or till the end | |
1423 | // if nCount = default value) | |
e87b7833 | 1424 | wxString Mid(size_t nFirst, size_t nCount = npos) const; |
3c67202d | 1425 | |
f6bcfd97 | 1426 | // operator version of Mid() |
3c67202d VZ |
1427 | wxString operator()(size_t start, size_t len) const |
1428 | { return Mid(start, len); } | |
1429 | ||
3affcd07 VZ |
1430 | // check if the string starts with the given prefix and return the rest |
1431 | // of the string in the provided pointer if it is not NULL; otherwise | |
1432 | // return false | |
f6bcfd97 | 1433 | bool StartsWith(const wxChar *prefix, wxString *rest = NULL) const; |
3affcd07 VZ |
1434 | // check if the string ends with the given suffix and return the |
1435 | // beginning of the string before the suffix in the provided pointer if | |
1436 | // it is not NULL; otherwise return false | |
1437 | bool EndsWith(const wxChar *suffix, wxString *rest = NULL) const; | |
f6bcfd97 | 1438 | |
3c67202d | 1439 | // get first nCount characters |
c801d85f | 1440 | wxString Left(size_t nCount) const; |
3c67202d | 1441 | // get last nCount characters |
c801d85f | 1442 | wxString Right(size_t nCount) const; |
c0881dc3 | 1443 | // get all characters before the first occurance of ch |
3c67202d | 1444 | // (returns the whole string if ch not found) |
c9f78968 | 1445 | wxString BeforeFirst(wxUniChar ch) const; |
3c67202d VZ |
1446 | // get all characters before the last occurence of ch |
1447 | // (returns empty string if ch not found) | |
c9f78968 | 1448 | wxString BeforeLast(wxUniChar ch) const; |
3c67202d VZ |
1449 | // get all characters after the first occurence of ch |
1450 | // (returns empty string if ch not found) | |
c9f78968 | 1451 | wxString AfterFirst(wxUniChar ch) const; |
3c67202d VZ |
1452 | // get all characters after the last occurence of ch |
1453 | // (returns the whole string if ch not found) | |
c9f78968 | 1454 | wxString AfterLast(wxUniChar ch) const; |
3c67202d VZ |
1455 | |
1456 | // for compatibility only, use more explicitly named functions above | |
c9f78968 VS |
1457 | wxString Before(wxUniChar ch) const { return BeforeLast(ch); } |
1458 | wxString After(wxUniChar ch) const { return AfterFirst(ch); } | |
3c67202d VZ |
1459 | |
1460 | // case conversion | |
c84c52de | 1461 | // convert to upper case in place, return the string itself |
c801d85f | 1462 | wxString& MakeUpper(); |
c84c52de | 1463 | // convert to upper case, return the copy of the string |
03ab016d JS |
1464 | // Here's something to remember: BC++ doesn't like returns in inlines. |
1465 | wxString Upper() const ; | |
c84c52de | 1466 | // convert to lower case in place, return the string itself |
c801d85f | 1467 | wxString& MakeLower(); |
c84c52de | 1468 | // convert to lower case, return the copy of the string |
03ab016d | 1469 | wxString Lower() const ; |
c801d85f | 1470 | |
3c67202d VZ |
1471 | // trimming/padding whitespace (either side) and truncating |
1472 | // remove spaces from left or from right (default) side | |
d775fa82 | 1473 | wxString& Trim(bool bFromRight = true); |
3c67202d | 1474 | // add nCount copies chPad in the beginning or at the end (default) |
c9f78968 | 1475 | wxString& Pad(size_t nCount, wxUniChar chPad = wxT(' '), bool bFromRight = true); |
dd1eaa89 | 1476 | |
3c67202d VZ |
1477 | // searching and replacing |
1478 | // searching (return starting index, or -1 if not found) | |
c9f78968 | 1479 | int Find(wxUniChar ch, bool bFromEnd = false) const; // like strchr/strrchr |
8a540c88 VS |
1480 | int Find(wxUniCharRef ch, bool bFromEnd = false) const |
1481 | { return Find(wxUniChar(ch), bFromEnd); } | |
1482 | int Find(char ch, bool bFromEnd = false) const | |
1483 | { return Find(wxUniChar(ch), bFromEnd); } | |
1484 | int Find(unsigned char ch, bool bFromEnd = false) const | |
1485 | { return Find(wxUniChar(ch), bFromEnd); } | |
1486 | int Find(wchar_t ch, bool bFromEnd = false) const | |
1487 | { return Find(wxUniChar(ch), bFromEnd); } | |
3c67202d | 1488 | // searching (return starting index, or -1 if not found) |
8a540c88 VS |
1489 | int Find(const wxString& sub) const // like strstr |
1490 | { | |
1491 | size_type idx = find(sub); | |
1492 | return (idx == npos) ? wxNOT_FOUND : (int)idx; | |
1493 | } | |
1494 | int Find(const char *sub) const // like strstr | |
1495 | { | |
1496 | size_type idx = find(sub); | |
1497 | return (idx == npos) ? wxNOT_FOUND : (int)idx; | |
1498 | } | |
1499 | int Find(const wchar_t *sub) const // like strstr | |
1500 | { | |
1501 | size_type idx = find(sub); | |
1502 | return (idx == npos) ? wxNOT_FOUND : (int)idx; | |
1503 | } | |
1504 | ||
d3cefe87 VS |
1505 | int Find(const wxCStrData& sub) const |
1506 | { return Find(sub.AsString()); } | |
1507 | int Find(const wxCharBuffer& sub) const | |
1508 | { return Find(sub.data()); } | |
1509 | int Find(const wxWCharBuffer& sub) const | |
1510 | { return Find(sub.data()); } | |
1511 | ||
3c67202d VZ |
1512 | // replace first (or all of bReplaceAll) occurences of substring with |
1513 | // another string, returns the number of replacements made | |
8a540c88 VS |
1514 | size_t Replace(const wxString& strOld, |
1515 | const wxString& strNew, | |
d775fa82 | 1516 | bool bReplaceAll = true); |
3c67202d VZ |
1517 | |
1518 | // check if the string contents matches a mask containing '*' and '?' | |
8a540c88 | 1519 | bool Matches(const wxString& mask) const; |
c801d85f | 1520 | |
d775fa82 | 1521 | // conversion to numbers: all functions return true only if the whole |
538f35cc VZ |
1522 | // string is a number and put the value of this number into the pointer |
1523 | // provided, the base is the numeric base in which the conversion should be | |
1524 | // done and must be comprised between 2 and 36 or be 0 in which case the | |
1525 | // standard C rules apply (leading '0' => octal, "0x" => hex) | |
cd0b1709 | 1526 | // convert to a signed integer |
538f35cc | 1527 | bool ToLong(long *val, int base = 10) const; |
cd0b1709 | 1528 | // convert to an unsigned integer |
538f35cc | 1529 | bool ToULong(unsigned long *val, int base = 10) const; |
d6718dd1 VZ |
1530 | // convert to wxLongLong |
1531 | #if defined(wxLongLong_t) | |
1532 | bool ToLongLong(wxLongLong_t *val, int base = 10) const; | |
1533 | // convert to wxULongLong | |
1534 | bool ToULongLong(wxULongLong_t *val, int base = 10) const; | |
1535 | #endif // wxLongLong_t | |
cd0b1709 VZ |
1536 | // convert to a double |
1537 | bool ToDouble(double *val) const; | |
1538 | ||
d6718dd1 | 1539 | |
c9f78968 | 1540 | #ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN |
90e572f1 | 1541 | // formatted input/output |
3c67202d | 1542 | // as sprintf(), returns the number of characters written or < 0 on error |
7357f981 | 1543 | // (take 'this' into account in attribute parameter count) |
2523e9b7 | 1544 | // int Printf(const wxString& format, ...); |
1528e0b8 | 1545 | WX_DEFINE_VARARG_FUNC(int, Printf, 1, (const wxFormatString&), |
d1f6e2cf | 1546 | DoPrintfWchar, DoPrintfUtf8) |
2523e9b7 | 1547 | #ifdef __WATCOMC__ |
e905fd1c | 1548 | WX_DEFINE_VARARG_FUNC(int, Printf, 1, (const char*), |
d1f6e2cf | 1549 | DoPrintfWchar, DoPrintfUtf8) |
e905fd1c | 1550 | WX_DEFINE_VARARG_FUNC(int, Printf, 1, (const wchar_t*), |
d1f6e2cf | 1551 | DoPrintfWchar, DoPrintfUtf8) |
e905fd1c | 1552 | WX_DEFINE_VARARG_FUNC(int, Printf, 1, (const wxCStrData&), |
d1f6e2cf | 1553 | DoPrintfWchar, DoPrintfUtf8) |
2523e9b7 | 1554 | #endif |
c9f78968 | 1555 | #endif // !wxNEEDS_WXSTRING_PRINTF_MIXIN |
3c67202d | 1556 | // as vprintf(), returns the number of characters written or < 0 on error |
c9f78968 | 1557 | int PrintfV(const wxString& format, va_list argptr); |
dd1eaa89 | 1558 | |
c9f78968 | 1559 | #ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN |
341e7d28 | 1560 | // returns the string containing the result of Printf() to it |
2523e9b7 | 1561 | // static wxString Format(const wxString& format, ...) ATTRIBUTE_PRINTF_1; |
1528e0b8 | 1562 | WX_DEFINE_VARARG_FUNC(static wxString, Format, 1, (const wxFormatString&), |
d1f6e2cf | 1563 | DoFormatWchar, DoFormatUtf8) |
2523e9b7 VS |
1564 | #ifdef __WATCOMC__ |
1565 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351 | |
d1f6e2cf VS |
1566 | WX_DEFINE_VARARG_FUNC(static wxString, Format, 1, (const char*), |
1567 | DoFormatWchar, DoFormatUtf8) | |
1568 | WX_DEFINE_VARARG_FUNC(static wxString, Format, 1, (const wchar_t*), | |
1569 | DoFormatWchar, DoFormatUtf8) | |
1570 | WX_DEFINE_VARARG_FUNC(static wxString, Format, 1, (const wxCStrData&), | |
1571 | DoFormatWchar, DoFormatUtf8) | |
2523e9b7 | 1572 | #endif |
c9f78968 | 1573 | #endif |
341e7d28 | 1574 | // the same as above, but takes a va_list |
c9f78968 | 1575 | static wxString FormatV(const wxString& format, va_list argptr); |
341e7d28 | 1576 | |
3c67202d VZ |
1577 | // raw access to string memory |
1578 | // ensure that string has space for at least nLen characters | |
dd1eaa89 | 1579 | // only works if the data of this string is not shared |
e87b7833 | 1580 | bool Alloc(size_t nLen) { reserve(nLen); /*return capacity() >= nLen;*/ return true; } |
3c67202d | 1581 | // minimize the string's memory |
dd1eaa89 | 1582 | // only works if the data of this string is not shared |
b1801e0e | 1583 | bool Shrink(); |
8f93a29f | 1584 | #if WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8 |
d8a4b666 VS |
1585 | // These are deprecated, use wxStringBuffer or wxStringBufferLength instead |
1586 | // | |
3c67202d VZ |
1587 | // get writable buffer of at least nLen bytes. Unget() *must* be called |
1588 | // a.s.a.p. to put string back in a reasonable state! | |
c87a0bc8 | 1589 | wxDEPRECATED( wxStringCharType *GetWriteBuf(size_t nLen) ); |
3c67202d | 1590 | // call this immediately after GetWriteBuf() has been used |
d8a4b666 VS |
1591 | wxDEPRECATED( void UngetWriteBuf() ); |
1592 | wxDEPRECATED( void UngetWriteBuf(size_t nLen) ); | |
8f93a29f | 1593 | #endif // WXWIN_COMPATIBILITY_2_8 && !wxUSE_STL_BASED_WXSTRING && wxUSE_UNICODE_UTF8 |
c801d85f | 1594 | |
77ffb593 | 1595 | // wxWidgets version 1 compatibility functions |
3c67202d VZ |
1596 | |
1597 | // use Mid() | |
1598 | wxString SubString(size_t from, size_t to) const | |
1599 | { return Mid(from, (to - from + 1)); } | |
1600 | // values for second parameter of CompareTo function | |
c801d85f | 1601 | enum caseCompare {exact, ignoreCase}; |
3c67202d | 1602 | // values for first parameter of Strip function |
c801d85f | 1603 | enum stripType {leading = 0x1, trailing = 0x2, both = 0x3}; |
8870c26e | 1604 | |
c9f78968 | 1605 | #ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN |
7357f981 GD |
1606 | // use Printf() |
1607 | // (take 'this' into account in attribute parameter count) | |
2523e9b7 | 1608 | // int sprintf(const wxString& format, ...) ATTRIBUTE_PRINTF_2; |
1528e0b8 | 1609 | WX_DEFINE_VARARG_FUNC(int, sprintf, 1, (const wxFormatString&), |
d1f6e2cf | 1610 | DoPrintfWchar, DoPrintfUtf8) |
2523e9b7 VS |
1611 | #ifdef __WATCOMC__ |
1612 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351 | |
d1f6e2cf VS |
1613 | WX_DEFINE_VARARG_FUNC(int, sprintf, 1, (const char*), |
1614 | DoPrintfWchar, DoPrintfUtf8) | |
1615 | WX_DEFINE_VARARG_FUNC(int, sprintf, 1, (const wchar_t*), | |
1616 | DoPrintfWchar, DoPrintfUtf8) | |
1617 | WX_DEFINE_VARARG_FUNC(int, sprintf, 1, (const wxCStrData&), | |
1618 | DoPrintfWchar, DoPrintfUtf8) | |
2523e9b7 | 1619 | #endif |
c9f78968 | 1620 | #endif // wxNEEDS_WXSTRING_PRINTF_MIXIN |
c801d85f | 1621 | |
3c67202d | 1622 | // use Cmp() |
2bb67b80 | 1623 | inline int CompareTo(const wxChar* psz, caseCompare cmp = exact) const |
6b95b20d | 1624 | { return cmp == exact ? Cmp(psz) : CmpNoCase(psz); } |
c801d85f | 1625 | |
8f93a29f | 1626 | // use length() |
e87b7833 | 1627 | size_t Length() const { return length(); } |
3c67202d | 1628 | // Count the number of characters |
c9f78968 | 1629 | int Freq(wxUniChar ch) const; |
3c67202d | 1630 | // use MakeLower |
c801d85f | 1631 | void LowerCase() { MakeLower(); } |
3c67202d | 1632 | // use MakeUpper |
c801d85f | 1633 | void UpperCase() { MakeUpper(); } |
3c67202d | 1634 | // use Trim except that it doesn't change this string |
c801d85f KB |
1635 | wxString Strip(stripType w = trailing) const; |
1636 | ||
3c67202d | 1637 | // use Find (more general variants not yet supported) |
2bb67b80 | 1638 | size_t Index(const wxChar* psz) const { return Find(psz); } |
c9f78968 | 1639 | size_t Index(wxUniChar ch) const { return Find(ch); } |
3c67202d | 1640 | // use Truncate |
c801d85f | 1641 | wxString& Remove(size_t pos) { return Truncate(pos); } |
e87b7833 | 1642 | wxString& RemoveLast(size_t n = 1) { return Truncate(length() - n); } |
c801d85f | 1643 | |
e87b7833 MB |
1644 | wxString& Remove(size_t nStart, size_t nLen) |
1645 | { return (wxString&)erase( nStart, nLen ); } | |
dd1eaa89 | 1646 | |
3c67202d | 1647 | // use Find() |
8f93a29f | 1648 | int First( wxUniChar ch ) const { return Find(ch); } |
8a540c88 | 1649 | int First( wxUniCharRef ch ) const { return Find(ch); } |
c9f78968 | 1650 | int First( char ch ) const { return Find(ch); } |
50e02008 | 1651 | int First( unsigned char ch ) const { return Find(ch); } |
c9f78968 | 1652 | int First( wchar_t ch ) const { return Find(ch); } |
8a540c88 | 1653 | int First( const wxString& str ) const { return Find(str); } |
8f93a29f | 1654 | int Last( wxUniChar ch ) const { return Find(ch, true); } |
d775fa82 | 1655 | bool Contains(const wxString& str) const { return Find(str) != wxNOT_FOUND; } |
c801d85f | 1656 | |
5a8231ef WS |
1657 | // use empty() |
1658 | bool IsNull() const { return empty(); } | |
c801d85f | 1659 | |
3c67202d | 1660 | // std::string compatibility functions |
dd1eaa89 | 1661 | |
3c67202d VZ |
1662 | // take nLen chars starting at nPos |
1663 | wxString(const wxString& str, size_t nPos, size_t nLen) | |
8f93a29f | 1664 | : m_impl(str.m_impl, nPos, nLen) { } |
f2a1b1bd | 1665 | // take all characters from first to last |
e87b7833 | 1666 | wxString(const_iterator first, const_iterator last) |
cf9a878b | 1667 | : m_impl(first.impl(), last.impl()) { } |
67cff9dc VZ |
1668 | #if WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER |
1669 | // the 2 overloads below are for compatibility with the existing code using | |
1670 | // pointers instead of iterators | |
f2a1b1bd VZ |
1671 | wxString(const char *first, const char *last) |
1672 | { | |
1673 | SubstrBufFromMB str(ImplStr(first, last - first)); | |
1674 | m_impl.assign(str.data, str.len); | |
1675 | } | |
1676 | wxString(const wchar_t *first, const wchar_t *last) | |
1677 | { | |
1678 | SubstrBufFromWC str(ImplStr(first, last - first)); | |
1679 | m_impl.assign(str.data, str.len); | |
1680 | } | |
67cff9dc VZ |
1681 | // and this one is needed to compile code adding offsets to c_str() result |
1682 | wxString(const wxCStrData& first, const wxCStrData& last) | |
cf9a878b VS |
1683 | : m_impl(CreateConstIterator(first).impl(), |
1684 | CreateConstIterator(last).impl()) | |
67cff9dc VZ |
1685 | { |
1686 | wxASSERT_MSG( first.m_str == last.m_str, | |
1687 | _T("pointers must be into the same string") ); | |
1688 | } | |
1689 | #endif // WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER | |
5460b9e3 | 1690 | |
3c67202d | 1691 | // lib.string.modifiers |
3c67202d VZ |
1692 | // append elements str[pos], ..., str[pos+n] |
1693 | wxString& append(const wxString& str, size_t pos, size_t n) | |
8f93a29f VS |
1694 | { |
1695 | size_t from, len; | |
1696 | str.PosLenToImpl(pos, n, &from, &len); | |
1697 | m_impl.append(str.m_impl, from, len); | |
1698 | return *this; | |
1699 | } | |
e87b7833 MB |
1700 | // append a string |
1701 | wxString& append(const wxString& str) | |
8f93a29f | 1702 | { m_impl.append(str.m_impl); return *this; } |
3c67202d | 1703 | // append first n (or all if n == npos) characters of sz |
8f93a29f VS |
1704 | wxString& append(const char *sz) |
1705 | { m_impl.append(ImplStr(sz)); return *this; } | |
1706 | wxString& append(const wchar_t *sz) | |
1707 | { m_impl.append(ImplStr(sz)); return *this; } | |
1708 | wxString& append(const char *sz, size_t n) | |
1709 | { | |
1710 | SubstrBufFromMB str(ImplStr(sz, n)); | |
1711 | m_impl.append(str.data, str.len); | |
1712 | return *this; | |
1713 | } | |
1714 | wxString& append(const wchar_t *sz, size_t n) | |
1715 | { | |
1716 | SubstrBufFromWC str(ImplStr(sz, n)); | |
1717 | m_impl.append(str.data, str.len); | |
1718 | return *this; | |
1719 | } | |
d3cefe87 VS |
1720 | |
1721 | wxString& append(const wxCStrData& str) | |
1722 | { return append(str.AsString()); } | |
1723 | wxString& append(const wxCharBuffer& str) | |
1724 | { return append(str.data()); } | |
1725 | wxString& append(const wxWCharBuffer& str) | |
1726 | { return append(str.data()); } | |
1727 | ||
3c67202d | 1728 | // append n copies of ch |
c9f78968 | 1729 | wxString& append(size_t n, wxUniChar ch) |
8f93a29f VS |
1730 | { |
1731 | #if wxUSE_UNICODE_UTF8 | |
1732 | if ( !ch.IsAscii() ) | |
467175ab | 1733 | m_impl.append(wxStringOperations::EncodeNChars(n, ch)); |
8f93a29f VS |
1734 | else |
1735 | #endif | |
1736 | m_impl.append(n, (wxStringCharType)ch); | |
1737 | return *this; | |
1738 | } | |
e87b7833 MB |
1739 | // append from first to last |
1740 | wxString& append(const_iterator first, const_iterator last) | |
cf9a878b | 1741 | { m_impl.append(first.impl(), last.impl()); return *this; } |
67cff9dc | 1742 | #if WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER |
f2a1b1bd VZ |
1743 | wxString& append(const char *first, const char *last) |
1744 | { return append(first, last - first); } | |
1745 | wxString& append(const wchar_t *first, const wchar_t *last) | |
1746 | { return append(first, last - first); } | |
67cff9dc VZ |
1747 | wxString& append(const wxCStrData& first, const wxCStrData& last) |
1748 | { return append(CreateConstIterator(first), CreateConstIterator(last)); } | |
1749 | #endif // WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER | |
3c67202d VZ |
1750 | |
1751 | // same as `this_string = str' | |
735d1db6 | 1752 | wxString& assign(const wxString& str) |
8f93a29f | 1753 | { m_impl = str.m_impl; return *this; } |
11aac4ba VS |
1754 | wxString& assign(const wxString& str, size_t len) |
1755 | { | |
1756 | m_impl.assign(str.m_impl, 0, str.LenToImpl(len)); | |
1757 | return *this; | |
1758 | } | |
3c67202d VZ |
1759 | // same as ` = str[pos..pos + n] |
1760 | wxString& assign(const wxString& str, size_t pos, size_t n) | |
8f93a29f VS |
1761 | { |
1762 | size_t from, len; | |
1763 | str.PosLenToImpl(pos, n, &from, &len); | |
1764 | m_impl.assign(str.m_impl, from, len); | |
1765 | return *this; | |
1766 | } | |
3c67202d | 1767 | // same as `= first n (or all if n == npos) characters of sz' |
8f93a29f VS |
1768 | wxString& assign(const char *sz) |
1769 | { m_impl.assign(ImplStr(sz)); return *this; } | |
1770 | wxString& assign(const wchar_t *sz) | |
1771 | { m_impl.assign(ImplStr(sz)); return *this; } | |
1772 | wxString& assign(const char *sz, size_t n) | |
1773 | { | |
1774 | SubstrBufFromMB str(ImplStr(sz, n)); | |
1775 | m_impl.assign(str.data, str.len); | |
1776 | return *this; | |
1777 | } | |
1778 | wxString& assign(const wchar_t *sz, size_t n) | |
1779 | { | |
1780 | SubstrBufFromWC str(ImplStr(sz, n)); | |
1781 | m_impl.assign(str.data, str.len); | |
1782 | return *this; | |
1783 | } | |
d3cefe87 VS |
1784 | |
1785 | wxString& assign(const wxCStrData& str) | |
1786 | { return assign(str.AsString()); } | |
1787 | wxString& assign(const wxCharBuffer& str) | |
1788 | { return assign(str.data()); } | |
1789 | wxString& assign(const wxWCharBuffer& str) | |
1790 | { return assign(str.data()); } | |
1791 | wxString& assign(const wxCStrData& str, size_t len) | |
1792 | { return assign(str.AsString(), len); } | |
1793 | wxString& assign(const wxCharBuffer& str, size_t len) | |
1794 | { return assign(str.data(), len); } | |
1795 | wxString& assign(const wxWCharBuffer& str, size_t len) | |
1796 | { return assign(str.data(), len); } | |
1797 | ||
3c67202d | 1798 | // same as `= n copies of ch' |
c9f78968 | 1799 | wxString& assign(size_t n, wxUniChar ch) |
8f93a29f VS |
1800 | { |
1801 | #if wxUSE_UNICODE_UTF8 | |
1802 | if ( !ch.IsAscii() ) | |
467175ab | 1803 | m_impl.assign(wxStringOperations::EncodeNChars(n, ch)); |
8f93a29f VS |
1804 | else |
1805 | #endif | |
1806 | m_impl.assign(n, (wxStringCharType)ch); | |
1807 | return *this; | |
1808 | } | |
11aac4ba VS |
1809 | |
1810 | wxString& assign(size_t n, wxUniCharRef ch) | |
1811 | { return assign(n, wxUniChar(ch)); } | |
1812 | wxString& assign(size_t n, char ch) | |
1813 | { return assign(n, wxUniChar(ch)); } | |
1814 | wxString& assign(size_t n, unsigned char ch) | |
1815 | { return assign(n, wxUniChar(ch)); } | |
1816 | wxString& assign(size_t n, wchar_t ch) | |
1817 | { return assign(n, wxUniChar(ch)); } | |
1818 | ||
e87b7833 MB |
1819 | // assign from first to last |
1820 | wxString& assign(const_iterator first, const_iterator last) | |
cf9a878b | 1821 | { m_impl.assign(first.impl(), last.impl()); return *this; } |
67cff9dc | 1822 | #if WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER |
f2a1b1bd VZ |
1823 | wxString& assign(const char *first, const char *last) |
1824 | { return assign(first, last - first); } | |
1825 | wxString& assign(const wchar_t *first, const wchar_t *last) | |
1826 | { return assign(first, last - first); } | |
67cff9dc VZ |
1827 | wxString& assign(const wxCStrData& first, const wxCStrData& last) |
1828 | { return assign(CreateConstIterator(first), CreateConstIterator(last)); } | |
1829 | #endif // WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER | |
e87b7833 MB |
1830 | |
1831 | // string comparison | |
8f93a29f | 1832 | int compare(const wxString& str) const; |
d3cefe87 VS |
1833 | int compare(const char* sz) const; |
1834 | int compare(const wchar_t* sz) const; | |
1835 | int compare(const wxCStrData& str) const | |
1836 | { return compare(str.AsString()); } | |
1837 | int compare(const wxCharBuffer& str) const | |
1838 | { return compare(str.data()); } | |
1839 | int compare(const wxWCharBuffer& str) const | |
1840 | { return compare(str.data()); } | |
e87b7833 | 1841 | // comparison with a substring |
8f93a29f | 1842 | int compare(size_t nStart, size_t nLen, const wxString& str) const; |
e87b7833 MB |
1843 | // comparison of 2 substrings |
1844 | int compare(size_t nStart, size_t nLen, | |
8f93a29f | 1845 | const wxString& str, size_t nStart2, size_t nLen2) const; |
e87b7833 MB |
1846 | // substring comparison with first nCount characters of sz |
1847 | int compare(size_t nStart, size_t nLen, | |
8f93a29f VS |
1848 | const char* sz, size_t nCount = npos) const; |
1849 | int compare(size_t nStart, size_t nLen, | |
1850 | const wchar_t* sz, size_t nCount = npos) const; | |
3c67202d VZ |
1851 | |
1852 | // insert another string | |
e87b7833 | 1853 | wxString& insert(size_t nPos, const wxString& str) |
8f93a29f | 1854 | { insert(begin() + nPos, str.begin(), str.end()); return *this; } |
3c67202d VZ |
1855 | // insert n chars of str starting at nStart (in str) |
1856 | wxString& insert(size_t nPos, const wxString& str, size_t nStart, size_t n) | |
8f93a29f VS |
1857 | { |
1858 | size_t from, len; | |
1859 | str.PosLenToImpl(nStart, n, &from, &len); | |
1860 | m_impl.insert(PosToImpl(nPos), str.m_impl, from, len); | |
1861 | return *this; | |
1862 | } | |
3c67202d | 1863 | // insert first n (or all if n == npos) characters of sz |
8f93a29f VS |
1864 | wxString& insert(size_t nPos, const char *sz) |
1865 | { m_impl.insert(PosToImpl(nPos), ImplStr(sz)); return *this; } | |
1866 | wxString& insert(size_t nPos, const wchar_t *sz) | |
1867 | { m_impl.insert(PosToImpl(nPos), ImplStr(sz)); return *this; } | |
1868 | wxString& insert(size_t nPos, const char *sz, size_t n) | |
1869 | { | |
1870 | SubstrBufFromMB str(ImplStr(sz, n)); | |
1871 | m_impl.insert(PosToImpl(nPos), str.data, str.len); | |
1872 | return *this; | |
1873 | } | |
1874 | wxString& insert(size_t nPos, const wchar_t *sz, size_t n) | |
1875 | { | |
1876 | SubstrBufFromWC str(ImplStr(sz, n)); | |
1877 | m_impl.insert(PosToImpl(nPos), str.data, str.len); | |
1878 | return *this; | |
1879 | } | |
3c67202d | 1880 | // insert n copies of ch |
c9f78968 | 1881 | wxString& insert(size_t nPos, size_t n, wxUniChar ch) |
8f93a29f VS |
1882 | { |
1883 | #if wxUSE_UNICODE_UTF8 | |
1884 | if ( !ch.IsAscii() ) | |
467175ab | 1885 | m_impl.insert(PosToImpl(nPos), wxStringOperations::EncodeNChars(n, ch)); |
8f93a29f VS |
1886 | else |
1887 | #endif | |
81727065 | 1888 | m_impl.insert(PosToImpl(nPos), n, (wxStringCharType)ch); |
8f93a29f VS |
1889 | return *this; |
1890 | } | |
c9f78968 | 1891 | iterator insert(iterator it, wxUniChar ch) |
81727065 VS |
1892 | { |
1893 | #if wxUSE_UNICODE_UTF8 | |
1894 | if ( !ch.IsAscii() ) | |
1895 | { | |
1896 | size_t pos = IterToImplPos(it); | |
467175ab | 1897 | m_impl.insert(pos, wxStringOperations::EncodeChar(ch)); |
81727065 VS |
1898 | return iterator(this, m_impl.begin() + pos); |
1899 | } | |
1900 | else | |
1901 | #endif | |
cf9a878b | 1902 | return iterator(this, m_impl.insert(it.impl(), (wxStringCharType)ch)); |
81727065 | 1903 | } |
e87b7833 | 1904 | void insert(iterator it, const_iterator first, const_iterator last) |
cf9a878b | 1905 | { m_impl.insert(it.impl(), first.impl(), last.impl()); } |
67cff9dc | 1906 | #if WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER |
f2a1b1bd VZ |
1907 | void insert(iterator it, const char *first, const char *last) |
1908 | { insert(it - begin(), first, last - first); } | |
67cff9dc | 1909 | void insert(iterator it, const wchar_t *first, const wchar_t *last) |
f2a1b1bd | 1910 | { insert(it - begin(), first, last - first); } |
67cff9dc VZ |
1911 | void insert(iterator it, const wxCStrData& first, const wxCStrData& last) |
1912 | { insert(it, CreateConstIterator(first), CreateConstIterator(last)); } | |
1913 | #endif // WXWIN_COMPATIBILITY_STRING_PTR_AS_ITER | |
1914 | ||
c9f78968 | 1915 | void insert(iterator it, size_type n, wxUniChar ch) |
8f93a29f VS |
1916 | { |
1917 | #if wxUSE_UNICODE_UTF8 | |
1918 | if ( !ch.IsAscii() ) | |
467175ab | 1919 | m_impl.insert(IterToImplPos(it), wxStringOperations::EncodeNChars(n, ch)); |
8f93a29f VS |
1920 | else |
1921 | #endif | |
cf9a878b | 1922 | m_impl.insert(it.impl(), n, (wxStringCharType)ch); |
8f93a29f | 1923 | } |
3c67202d VZ |
1924 | |
1925 | // delete characters from nStart to nStart + nLen | |
e87b7833 | 1926 | wxString& erase(size_type pos = 0, size_type n = npos) |
8f93a29f VS |
1927 | { |
1928 | size_t from, len; | |
1929 | PosLenToImpl(pos, n, &from, &len); | |
1930 | m_impl.erase(from, len); | |
1931 | return *this; | |
1932 | } | |
f2a1b1bd | 1933 | // delete characters from first up to last |
e87b7833 | 1934 | iterator erase(iterator first, iterator last) |
cf9a878b | 1935 | { return iterator(this, m_impl.erase(first.impl(), last.impl())); } |
e87b7833 | 1936 | iterator erase(iterator first) |
cf9a878b | 1937 | { return iterator(this, m_impl.erase(first.impl())); } |
e87b7833 MB |
1938 | |
1939 | #ifdef wxSTRING_BASE_HASNT_CLEAR | |
1940 | void clear() { erase(); } | |
8f93a29f VS |
1941 | #else |
1942 | void clear() { m_impl.clear(); } | |
e87b7833 | 1943 | #endif |
3c67202d VZ |
1944 | |
1945 | // replaces the substring of length nLen starting at nStart | |
8f93a29f VS |
1946 | wxString& replace(size_t nStart, size_t nLen, const char* sz) |
1947 | { | |
1948 | size_t from, len; | |
1949 | PosLenToImpl(nStart, nLen, &from, &len); | |
1950 | m_impl.replace(from, len, ImplStr(sz)); | |
1951 | return *this; | |
1952 | } | |
1953 | wxString& replace(size_t nStart, size_t nLen, const wchar_t* sz) | |
1954 | { | |
1955 | size_t from, len; | |
1956 | PosLenToImpl(nStart, nLen, &from, &len); | |
1957 | m_impl.replace(from, len, ImplStr(sz)); | |
1958 | return *this; | |
1959 | } | |
e87b7833 MB |
1960 | // replaces the substring of length nLen starting at nStart |
1961 | wxString& replace(size_t nStart, size_t nLen, const wxString& str) | |
8f93a29f VS |
1962 | { |
1963 | size_t from, len; | |
1964 | PosLenToImpl(nStart, nLen, &from, &len); | |
1965 | m_impl.replace(from, len, str.m_impl); | |
1966 | return *this; | |
1967 | } | |
3c67202d | 1968 | // replaces the substring with nCount copies of ch |
c9f78968 | 1969 | wxString& replace(size_t nStart, size_t nLen, size_t nCount, wxUniChar ch) |
8f93a29f VS |
1970 | { |
1971 | size_t from, len; | |
1972 | PosLenToImpl(nStart, nLen, &from, &len); | |
1973 | #if wxUSE_UNICODE_UTF8 | |
1974 | if ( !ch.IsAscii() ) | |
467175ab | 1975 | m_impl.replace(from, len, wxStringOperations::EncodeNChars(nCount, ch)); |
8f93a29f VS |
1976 | else |
1977 | #endif | |
1978 | m_impl.replace(from, len, nCount, (wxStringCharType)ch); | |
1979 | return *this; | |
1980 | } | |
3c67202d VZ |
1981 | // replaces a substring with another substring |
1982 | wxString& replace(size_t nStart, size_t nLen, | |
e87b7833 | 1983 | const wxString& str, size_t nStart2, size_t nLen2) |
8f93a29f VS |
1984 | { |
1985 | size_t from, len; | |
1986 | PosLenToImpl(nStart, nLen, &from, &len); | |
1987 | ||
1988 | size_t from2, len2; | |
1989 | str.PosLenToImpl(nStart2, nLen2, &from2, &len2); | |
1990 | ||
1991 | m_impl.replace(from, len, str.m_impl, from2, len2); | |
1992 | return *this; | |
1993 | } | |
e87b7833 | 1994 | // replaces the substring with first nCount chars of sz |
fb20fa43 | 1995 | wxString& replace(size_t nStart, size_t nLen, |
8f93a29f VS |
1996 | const char* sz, size_t nCount) |
1997 | { | |
1998 | size_t from, len; | |
1999 | PosLenToImpl(nStart, nLen, &from, &len); | |
2000 | ||
2001 | SubstrBufFromMB str(ImplStr(sz, nCount)); | |
2002 | ||
2003 | m_impl.replace(from, len, str.data, str.len); | |
2004 | return *this; | |
2005 | } | |
2006 | wxString& replace(size_t nStart, size_t nLen, | |
2007 | const wchar_t* sz, size_t nCount) | |
2008 | { | |
2009 | size_t from, len; | |
2010 | PosLenToImpl(nStart, nLen, &from, &len); | |
2011 | ||
2012 | SubstrBufFromWC str(ImplStr(sz, nCount)); | |
2013 | ||
2014 | m_impl.replace(from, len, str.data, str.len); | |
2015 | return *this; | |
2016 | } | |
11aac4ba VS |
2017 | wxString& replace(size_t nStart, size_t nLen, |
2018 | const wxString& s, size_t nCount) | |
2019 | { | |
2020 | size_t from, len; | |
2021 | PosLenToImpl(nStart, nLen, &from, &len); | |
2022 | m_impl.replace(from, len, s.m_impl.c_str(), s.LenToImpl(nCount)); | |
2023 | return *this; | |
2024 | } | |
2025 | ||
8f93a29f | 2026 | wxString& replace(iterator first, iterator last, const char* s) |
cf9a878b | 2027 | { m_impl.replace(first.impl(), last.impl(), ImplStr(s)); return *this; } |
8f93a29f | 2028 | wxString& replace(iterator first, iterator last, const wchar_t* s) |
cf9a878b | 2029 | { m_impl.replace(first.impl(), last.impl(), ImplStr(s)); return *this; } |
8f93a29f VS |
2030 | wxString& replace(iterator first, iterator last, const char* s, size_type n) |
2031 | { | |
2032 | SubstrBufFromMB str(ImplStr(s, n)); | |
cf9a878b | 2033 | m_impl.replace(first.impl(), last.impl(), str.data, str.len); |
8f93a29f VS |
2034 | return *this; |
2035 | } | |
2036 | wxString& replace(iterator first, iterator last, const wchar_t* s, size_type n) | |
2037 | { | |
2038 | SubstrBufFromWC str(ImplStr(s, n)); | |
cf9a878b | 2039 | m_impl.replace(first.impl(), last.impl(), str.data, str.len); |
8f93a29f VS |
2040 | return *this; |
2041 | } | |
e87b7833 | 2042 | wxString& replace(iterator first, iterator last, const wxString& s) |
cf9a878b | 2043 | { m_impl.replace(first.impl(), last.impl(), s.m_impl); return *this; } |
8f93a29f VS |
2044 | wxString& replace(iterator first, iterator last, size_type n, wxUniChar ch) |
2045 | { | |
2046 | #if wxUSE_UNICODE_UTF8 | |
2047 | if ( !ch.IsAscii() ) | |
467175ab VS |
2048 | m_impl.replace(first.impl(), last.impl(), |
2049 | wxStringOperations::EncodeNChars(n, ch)); | |
8f93a29f VS |
2050 | else |
2051 | #endif | |
cf9a878b | 2052 | m_impl.replace(first.impl(), last.impl(), n, (wxStringCharType)ch); |
8f93a29f VS |
2053 | return *this; |
2054 | } | |
e87b7833 MB |
2055 | wxString& replace(iterator first, iterator last, |
2056 | const_iterator first1, const_iterator last1) | |
cf9a878b VS |
2057 | { |
2058 | m_impl.replace(first.impl(), last.impl(), first1.impl(), last1.impl()); | |
2059 | return *this; | |
2060 | } | |
f2a1b1bd VZ |
2061 | wxString& replace(iterator first, iterator last, |
2062 | const char *first1, const char *last1) | |
2063 | { replace(first, last, first1, last1 - first1); return *this; } | |
2064 | wxString& replace(iterator first, iterator last, | |
2065 | const wchar_t *first1, const wchar_t *last1) | |
2066 | { replace(first, last, first1, last1 - first1); return *this; } | |
8f93a29f VS |
2067 | |
2068 | // swap two strings | |
2069 | void swap(wxString& str) | |
2070 | { m_impl.swap(str.m_impl); } | |
2071 | ||
2072 | // find a substring | |
2073 | size_t find(const wxString& str, size_t nStart = 0) const | |
2074 | { return PosFromImpl(m_impl.find(str.m_impl, PosToImpl(nStart))); } | |
2075 | ||
2076 | // find first n characters of sz | |
2077 | size_t find(const char* sz, size_t nStart = 0, size_t n = npos) const | |
2078 | { | |
2079 | SubstrBufFromMB str(ImplStr(sz, n)); | |
2080 | return PosFromImpl(m_impl.find(str.data, PosToImpl(nStart), str.len)); | |
2081 | } | |
2082 | size_t find(const wchar_t* sz, size_t nStart = 0, size_t n = npos) const | |
2083 | { | |
2084 | SubstrBufFromWC str(ImplStr(sz, n)); | |
2085 | return PosFromImpl(m_impl.find(str.data, PosToImpl(nStart), str.len)); | |
2086 | } | |
d3cefe87 VS |
2087 | size_t find(const wxCharBuffer& s, size_t nStart = 0, size_t n = npos) const |
2088 | { return find(s.data(), nStart, n); } | |
2089 | size_t find(const wxWCharBuffer& s, size_t nStart = 0, size_t n = npos) const | |
2090 | { return find(s.data(), nStart, n); } | |
2091 | size_t find(const wxCStrData& s, size_t nStart = 0, size_t n = npos) const | |
2092 | { return find(s.AsWChar(), nStart, n); } | |
8f93a29f VS |
2093 | |
2094 | // find the first occurence of character ch after nStart | |
2095 | size_t find(wxUniChar ch, size_t nStart = 0) const | |
467175ab VS |
2096 | { |
2097 | return PosFromImpl(m_impl.find(wxStringOperations::EncodeChar(ch), | |
2098 | PosToImpl(nStart))); | |
2099 | } | |
8f93a29f VS |
2100 | size_t find(wxUniCharRef ch, size_t nStart = 0) const |
2101 | { return find(wxUniChar(ch), nStart); } | |
2102 | size_t find(char ch, size_t nStart = 0) const | |
2103 | { return find(wxUniChar(ch), nStart); } | |
50e02008 VS |
2104 | size_t find(unsigned char ch, size_t nStart = 0) const |
2105 | { return find(wxUniChar(ch), nStart); } | |
8f93a29f VS |
2106 | size_t find(wchar_t ch, size_t nStart = 0) const |
2107 | { return find(wxUniChar(ch), nStart); } | |
2108 | ||
2109 | // rfind() family is exactly like find() but works right to left | |
2110 | ||
2111 | // as find, but from the end | |
2112 | size_t rfind(const wxString& str, size_t nStart = npos) const | |
2113 | { return PosFromImpl(m_impl.rfind(str.m_impl, PosToImpl(nStart))); } | |
2114 | ||
2115 | // as find, but from the end | |
2116 | size_t rfind(const char* sz, size_t nStart = npos, size_t n = npos) const | |
2117 | { | |
2118 | SubstrBufFromMB str(ImplStr(sz, n)); | |
2119 | return PosFromImpl(m_impl.rfind(str.data, PosToImpl(nStart), str.len)); | |
2120 | } | |
2121 | size_t rfind(const wchar_t* sz, size_t nStart = npos, size_t n = npos) const | |
2122 | { | |
2123 | SubstrBufFromWC str(ImplStr(sz, n)); | |
2124 | return PosFromImpl(m_impl.rfind(str.data, PosToImpl(nStart), str.len)); | |
2125 | } | |
d3cefe87 VS |
2126 | size_t rfind(const wxCharBuffer& s, size_t nStart = npos, size_t n = npos) const |
2127 | { return rfind(s.data(), nStart, n); } | |
2128 | size_t rfind(const wxWCharBuffer& s, size_t nStart = npos, size_t n = npos) const | |
2129 | { return rfind(s.data(), nStart, n); } | |
2130 | size_t rfind(const wxCStrData& s, size_t nStart = npos, size_t n = npos) const | |
2131 | { return rfind(s.AsWChar(), nStart, n); } | |
8f93a29f VS |
2132 | // as find, but from the end |
2133 | size_t rfind(wxUniChar ch, size_t nStart = npos) const | |
467175ab VS |
2134 | { |
2135 | return PosFromImpl(m_impl.rfind(wxStringOperations::EncodeChar(ch), | |
2136 | PosToImpl(nStart))); | |
2137 | } | |
8f93a29f VS |
2138 | size_t rfind(wxUniCharRef ch, size_t nStart = npos) const |
2139 | { return rfind(wxUniChar(ch), nStart); } | |
2140 | size_t rfind(char ch, size_t nStart = npos) const | |
2141 | { return rfind(wxUniChar(ch), nStart); } | |
50e02008 VS |
2142 | size_t rfind(unsigned char ch, size_t nStart = npos) const |
2143 | { return rfind(wxUniChar(ch), nStart); } | |
8f93a29f VS |
2144 | size_t rfind(wchar_t ch, size_t nStart = npos) const |
2145 | { return rfind(wxUniChar(ch), nStart); } | |
2146 | ||
2147 | // find first/last occurence of any character (not) in the set: | |
2148 | #if wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8 | |
2149 | // FIXME-UTF8: this is not entirely correct, because it doesn't work if | |
2150 | // sizeof(wchar_t)==2 and surrogates are present in the string; | |
2151 | // should we care? Probably not. | |
2152 | size_t find_first_of(const wxString& str, size_t nStart = 0) const | |
a962cdf4 | 2153 | { return m_impl.find_first_of(str.m_impl, nStart); } |
8f93a29f VS |
2154 | size_t find_first_of(const char* sz, size_t nStart = 0) const |
2155 | { return m_impl.find_first_of(ImplStr(sz), nStart); } | |
2156 | size_t find_first_of(const wchar_t* sz, size_t nStart = 0) const | |
2157 | { return m_impl.find_first_of(ImplStr(sz), nStart); } | |
a962cdf4 | 2158 | size_t find_first_of(const char* sz, size_t nStart, size_t n) const |
8f93a29f | 2159 | { return m_impl.find_first_of(ImplStr(sz), nStart, n); } |
a962cdf4 | 2160 | size_t find_first_of(const wchar_t* sz, size_t nStart, size_t n) const |
8f93a29f VS |
2161 | { return m_impl.find_first_of(ImplStr(sz), nStart, n); } |
2162 | size_t find_first_of(wxUniChar c, size_t nStart = 0) const | |
2163 | { return m_impl.find_first_of((wxChar)c, nStart); } | |
2164 | ||
a962cdf4 VS |
2165 | size_t find_last_of(const wxString& str, size_t nStart = npos) const |
2166 | { return m_impl.find_last_of(str.m_impl, nStart); } | |
8f93a29f VS |
2167 | size_t find_last_of(const char* sz, size_t nStart = npos) const |
2168 | { return m_impl.find_last_of(ImplStr(sz), nStart); } | |
2169 | size_t find_last_of(const wchar_t* sz, size_t nStart = npos) const | |
2170 | { return m_impl.find_last_of(ImplStr(sz), nStart); } | |
2171 | size_t find_last_of(const char* sz, size_t nStart, size_t n) const | |
2172 | { return m_impl.find_last_of(ImplStr(sz), nStart, n); } | |
2173 | size_t find_last_of(const wchar_t* sz, size_t nStart, size_t n) const | |
2174 | { return m_impl.find_last_of(ImplStr(sz), nStart, n); } | |
2175 | size_t find_last_of(wxUniChar c, size_t nStart = npos) const | |
2176 | { return m_impl.find_last_of((wxChar)c, nStart); } | |
2177 | ||
a962cdf4 | 2178 | size_t find_first_not_of(const wxString& str, size_t nStart = 0) const |
8f93a29f | 2179 | { return m_impl.find_first_not_of(str.m_impl, nStart); } |
a962cdf4 | 2180 | size_t find_first_not_of(const char* sz, size_t nStart = 0) const |
8f93a29f | 2181 | { return m_impl.find_first_not_of(ImplStr(sz), nStart); } |
a962cdf4 | 2182 | size_t find_first_not_of(const wchar_t* sz, size_t nStart = 0) const |
8f93a29f | 2183 | { return m_impl.find_first_not_of(ImplStr(sz), nStart); } |
a962cdf4 | 2184 | size_t find_first_not_of(const char* sz, size_t nStart, size_t n) const |
8f93a29f | 2185 | { return m_impl.find_first_not_of(ImplStr(sz), nStart, n); } |
a962cdf4 | 2186 | size_t find_first_not_of(const wchar_t* sz, size_t nStart, size_t n) const |
8f93a29f | 2187 | { return m_impl.find_first_not_of(ImplStr(sz), nStart, n); } |
a962cdf4 | 2188 | size_t find_first_not_of(wxUniChar c, size_t nStart = 0) const |
8f93a29f VS |
2189 | { return m_impl.find_first_not_of((wxChar)c, nStart); } |
2190 | ||
a962cdf4 | 2191 | size_t find_last_not_of(const wxString& str, size_t nStart = npos) const |
8f93a29f | 2192 | { return m_impl.find_last_not_of(str.m_impl, nStart); } |
a962cdf4 | 2193 | size_t find_last_not_of(const char* sz, size_t nStart = npos) const |
8f93a29f | 2194 | { return m_impl.find_last_not_of(ImplStr(sz), nStart); } |
a962cdf4 | 2195 | size_t find_last_not_of(const wchar_t* sz, size_t nStart = npos) const |
8f93a29f | 2196 | { return m_impl.find_last_not_of(ImplStr(sz), nStart); } |
a962cdf4 | 2197 | size_t find_last_not_of(const char* sz, size_t nStart, size_t n) const |
8f93a29f | 2198 | { return m_impl.find_last_not_of(ImplStr(sz), nStart, n); } |
a962cdf4 | 2199 | size_t find_last_not_of(const wchar_t* sz, size_t nStart, size_t n) const |
8f93a29f | 2200 | { return m_impl.find_last_not_of(ImplStr(sz), nStart, n); } |
a962cdf4 | 2201 | size_t find_last_not_of(wxUniChar c, size_t nStart = npos) const |
8f93a29f VS |
2202 | { return m_impl.find_last_not_of((wxChar)c, nStart); } |
2203 | #else | |
2204 | // we can't use std::string implementation in UTF-8 build, because the | |
2205 | // character sets would be interpreted wrongly: | |
2206 | ||
2207 | // as strpbrk() but starts at nStart, returns npos if not found | |
2208 | size_t find_first_of(const wxString& str, size_t nStart = 0) const | |
81727065 | 2209 | #if wxUSE_UNICODE // FIXME-UTF8: temporary |
d3cefe87 | 2210 | { return find_first_of(str.wc_str(), nStart); } |
81727065 | 2211 | #else |
d3cefe87 | 2212 | { return find_first_of(str.mb_str(), nStart); } |
81727065 | 2213 | #endif |
8f93a29f VS |
2214 | // same as above |
2215 | size_t find_first_of(const char* sz, size_t nStart = 0) const; | |
2216 | size_t find_first_of(const wchar_t* sz, size_t nStart = 0) const; | |
2217 | size_t find_first_of(const char* sz, size_t nStart, size_t n) const; | |
2218 | size_t find_first_of(const wchar_t* sz, size_t nStart, size_t n) const; | |
2219 | // same as find(char, size_t) | |
2220 | size_t find_first_of(wxUniChar c, size_t nStart = 0) const | |
2221 | { return find(c, nStart); } | |
2222 | // find the last (starting from nStart) char from str in this string | |
2223 | size_t find_last_of (const wxString& str, size_t nStart = npos) const | |
81727065 | 2224 | #if wxUSE_UNICODE // FIXME-UTF8: temporary |
d3cefe87 | 2225 | { return find_last_of(str.wc_str(), nStart); } |
81727065 | 2226 | #else |
d3cefe87 | 2227 | { return find_last_of(str.mb_str(), nStart); } |
81727065 | 2228 | #endif |
8f93a29f VS |
2229 | // same as above |
2230 | size_t find_last_of (const char* sz, size_t nStart = npos) const; | |
2231 | size_t find_last_of (const wchar_t* sz, size_t nStart = npos) const; | |
2232 | size_t find_last_of(const char* sz, size_t nStart, size_t n) const; | |
2233 | size_t find_last_of(const wchar_t* sz, size_t nStart, size_t n) const; | |
2234 | // same as above | |
2235 | size_t find_last_of(wxUniChar c, size_t nStart = npos) const | |
2236 | { return rfind(c, nStart); } | |
2237 | ||
2238 | // find first/last occurence of any character not in the set | |
2239 | ||
2240 | // as strspn() (starting from nStart), returns npos on failure | |
2241 | size_t find_first_not_of(const wxString& str, size_t nStart = 0) const | |
81727065 | 2242 | #if wxUSE_UNICODE // FIXME-UTF8: temporary |
d3cefe87 | 2243 | { return find_first_not_of(str.wc_str(), nStart); } |
81727065 | 2244 | #else |
d3cefe87 | 2245 | { return find_first_not_of(str.mb_str(), nStart); } |
81727065 | 2246 | #endif |
8f93a29f VS |
2247 | // same as above |
2248 | size_t find_first_not_of(const char* sz, size_t nStart = 0) const; | |
2249 | size_t find_first_not_of(const wchar_t* sz, size_t nStart = 0) const; | |
2250 | size_t find_first_not_of(const char* sz, size_t nStart, size_t n) const; | |
2251 | size_t find_first_not_of(const wchar_t* sz, size_t nStart, size_t n) const; | |
2252 | // same as above | |
2253 | size_t find_first_not_of(wxUniChar ch, size_t nStart = 0) const; | |
2254 | // as strcspn() | |
2255 | size_t find_last_not_of(const wxString& str, size_t nStart = npos) const | |
81727065 | 2256 | #if wxUSE_UNICODE // FIXME-UTF8: temporary |
d3cefe87 | 2257 | { return find_last_not_of(str.wc_str(), nStart); } |
81727065 | 2258 | #else |
d3cefe87 | 2259 | { return find_last_not_of(str.mb_str(), nStart); } |
81727065 | 2260 | #endif |
8f93a29f VS |
2261 | // same as above |
2262 | size_t find_last_not_of(const char* sz, size_t nStart = npos) const; | |
2263 | size_t find_last_not_of(const wchar_t* sz, size_t nStart = npos) const; | |
2264 | size_t find_last_not_of(const char* sz, size_t nStart, size_t n) const; | |
2265 | size_t find_last_not_of(const wchar_t* sz, size_t nStart, size_t n) const; | |
2266 | // same as above | |
2267 | size_t find_last_not_of(wxUniChar ch, size_t nStart = npos) const; | |
2268 | #endif // wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8 or not | |
2269 | ||
2270 | // provide char/wchar_t/wxUniCharRef overloads for char-finding functions | |
2271 | // above to resolve ambiguities: | |
2272 | size_t find_first_of(wxUniCharRef ch, size_t nStart = 0) const | |
2273 | { return find_first_of(wxUniChar(ch), nStart); } | |
2274 | size_t find_first_of(char ch, size_t nStart = 0) const | |
2275 | { return find_first_of(wxUniChar(ch), nStart); } | |
50e02008 VS |
2276 | size_t find_first_of(unsigned char ch, size_t nStart = 0) const |
2277 | { return find_first_of(wxUniChar(ch), nStart); } | |
8f93a29f VS |
2278 | size_t find_first_of(wchar_t ch, size_t nStart = 0) const |
2279 | { return find_first_of(wxUniChar(ch), nStart); } | |
2280 | size_t find_last_of(wxUniCharRef ch, size_t nStart = npos) const | |
2281 | { return find_last_of(wxUniChar(ch), nStart); } | |
2282 | size_t find_last_of(char ch, size_t nStart = npos) const | |
2283 | { return find_last_of(wxUniChar(ch), nStart); } | |
50e02008 VS |
2284 | size_t find_last_of(unsigned char ch, size_t nStart = npos) const |
2285 | { return find_last_of(wxUniChar(ch), nStart); } | |
8f93a29f VS |
2286 | size_t find_last_of(wchar_t ch, size_t nStart = npos) const |
2287 | { return find_last_of(wxUniChar(ch), nStart); } | |
2288 | size_t find_first_not_of(wxUniCharRef ch, size_t nStart = 0) const | |
2289 | { return find_first_not_of(wxUniChar(ch), nStart); } | |
2290 | size_t find_first_not_of(char ch, size_t nStart = 0) const | |
2291 | { return find_first_not_of(wxUniChar(ch), nStart); } | |
50e02008 VS |
2292 | size_t find_first_not_of(unsigned char ch, size_t nStart = 0) const |
2293 | { return find_first_not_of(wxUniChar(ch), nStart); } | |
8f93a29f VS |
2294 | size_t find_first_not_of(wchar_t ch, size_t nStart = 0) const |
2295 | { return find_first_not_of(wxUniChar(ch), nStart); } | |
2296 | size_t find_last_not_of(wxUniCharRef ch, size_t nStart = npos) const | |
2297 | { return find_last_not_of(wxUniChar(ch), nStart); } | |
2298 | size_t find_last_not_of(char ch, size_t nStart = npos) const | |
2299 | { return find_last_not_of(wxUniChar(ch), nStart); } | |
50e02008 VS |
2300 | size_t find_last_not_of(unsigned char ch, size_t nStart = npos) const |
2301 | { return find_last_not_of(wxUniChar(ch), nStart); } | |
8f93a29f VS |
2302 | size_t find_last_not_of(wchar_t ch, size_t nStart = npos) const |
2303 | { return find_last_not_of(wxUniChar(ch), nStart); } | |
3c67202d | 2304 | |
d3cefe87 VS |
2305 | // and additional overloads for the versions taking strings: |
2306 | size_t find_first_of(const wxCStrData& sz, size_t nStart = 0) const | |
2307 | { return find_first_of(sz.AsString(), nStart); } | |
2308 | size_t find_first_of(const wxCharBuffer& sz, size_t nStart = 0) const | |
2309 | { return find_first_of(sz.data(), nStart); } | |
2310 | size_t find_first_of(const wxWCharBuffer& sz, size_t nStart = 0) const | |
2311 | { return find_first_of(sz.data(), nStart); } | |
2312 | size_t find_first_of(const wxCStrData& sz, size_t nStart, size_t n) const | |
2313 | { return find_first_of(sz.AsWChar(), nStart, n); } | |
2314 | size_t find_first_of(const wxCharBuffer& sz, size_t nStart, size_t n) const | |
2315 | { return find_first_of(sz.data(), nStart, n); } | |
2316 | size_t find_first_of(const wxWCharBuffer& sz, size_t nStart, size_t n) const | |
2317 | { return find_first_of(sz.data(), nStart, n); } | |
2318 | ||
2319 | size_t find_last_of(const wxCStrData& sz, size_t nStart = 0) const | |
2320 | { return find_last_of(sz.AsString(), nStart); } | |
2321 | size_t find_last_of(const wxCharBuffer& sz, size_t nStart = 0) const | |
2322 | { return find_last_of(sz.data(), nStart); } | |
2323 | size_t find_last_of(const wxWCharBuffer& sz, size_t nStart = 0) const | |
2324 | { return find_last_of(sz.data(), nStart); } | |
2325 | size_t find_last_of(const wxCStrData& sz, size_t nStart, size_t n) const | |
2326 | { return find_last_of(sz.AsWChar(), nStart, n); } | |
2327 | size_t find_last_of(const wxCharBuffer& sz, size_t nStart, size_t n) const | |
2328 | { return find_last_of(sz.data(), nStart, n); } | |
2329 | size_t find_last_of(const wxWCharBuffer& sz, size_t nStart, size_t n) const | |
2330 | { return find_last_of(sz.data(), nStart, n); } | |
2331 | ||
2332 | size_t find_first_not_of(const wxCStrData& sz, size_t nStart = 0) const | |
2333 | { return find_first_not_of(sz.AsString(), nStart); } | |
2334 | size_t find_first_not_of(const wxCharBuffer& sz, size_t nStart = 0) const | |
2335 | { return find_first_not_of(sz.data(), nStart); } | |
2336 | size_t find_first_not_of(const wxWCharBuffer& sz, size_t nStart = 0) const | |
2337 | { return find_first_not_of(sz.data(), nStart); } | |
2338 | size_t find_first_not_of(const wxCStrData& sz, size_t nStart, size_t n) const | |
2339 | { return find_first_not_of(sz.AsWChar(), nStart, n); } | |
2340 | size_t find_first_not_of(const wxCharBuffer& sz, size_t nStart, size_t n) const | |
2341 | { return find_first_not_of(sz.data(), nStart, n); } | |
2342 | size_t find_first_not_of(const wxWCharBuffer& sz, size_t nStart, size_t n) const | |
2343 | { return find_first_not_of(sz.data(), nStart, n); } | |
2344 | ||
2345 | size_t find_last_not_of(const wxCStrData& sz, size_t nStart = 0) const | |
2346 | { return find_last_not_of(sz.AsString(), nStart); } | |
2347 | size_t find_last_not_of(const wxCharBuffer& sz, size_t nStart = 0) const | |
2348 | { return find_last_not_of(sz.data(), nStart); } | |
2349 | size_t find_last_not_of(const wxWCharBuffer& sz, size_t nStart = 0) const | |
2350 | { return find_last_not_of(sz.data(), nStart); } | |
2351 | size_t find_last_not_of(const wxCStrData& sz, size_t nStart, size_t n) const | |
2352 | { return find_last_not_of(sz.AsWChar(), nStart, n); } | |
2353 | size_t find_last_not_of(const wxCharBuffer& sz, size_t nStart, size_t n) const | |
2354 | { return find_last_not_of(sz.data(), nStart, n); } | |
2355 | size_t find_last_not_of(const wxWCharBuffer& sz, size_t nStart, size_t n) const | |
2356 | { return find_last_not_of(sz.data(), nStart, n); } | |
2357 | ||
e87b7833 MB |
2358 | // string += string |
2359 | wxString& operator+=(const wxString& s) | |
8f93a29f | 2360 | { m_impl += s.m_impl; return *this; } |
e87b7833 | 2361 | // string += C string |
8f93a29f VS |
2362 | wxString& operator+=(const char *psz) |
2363 | { m_impl += ImplStr(psz); return *this; } | |
2364 | wxString& operator+=(const wchar_t *pwz) | |
2365 | { m_impl += ImplStr(pwz); return *this; } | |
c9f78968 | 2366 | wxString& operator+=(const wxCStrData& s) |
8f93a29f | 2367 | { m_impl += s.AsString().m_impl; return *this; } |
d3cefe87 VS |
2368 | wxString& operator+=(const wxCharBuffer& s) |
2369 | { return operator+=(s.data()); } | |
2370 | wxString& operator+=(const wxWCharBuffer& s) | |
2371 | { return operator+=(s.data()); } | |
e87b7833 | 2372 | // string += char |
c9f78968 | 2373 | wxString& operator+=(wxUniChar ch) |
467175ab | 2374 | { m_impl += wxStringOperations::EncodeChar(ch); return *this; } |
c9f78968 | 2375 | wxString& operator+=(wxUniCharRef ch) { return *this += wxUniChar(ch); } |
b7d40341 | 2376 | wxString& operator+=(int ch) { return *this += wxUniChar(ch); } |
c9f78968 | 2377 | wxString& operator+=(char ch) { return *this += wxUniChar(ch); } |
b77afb41 | 2378 | wxString& operator+=(unsigned char ch) { return *this += wxUniChar(ch); } |
c9f78968 | 2379 | wxString& operator+=(wchar_t ch) { return *this += wxUniChar(ch); } |
d8a4b666 VS |
2380 | |
2381 | private: | |
2523e9b7 | 2382 | #if !wxUSE_STL_BASED_WXSTRING |
d8a4b666 | 2383 | // helpers for wxStringBuffer and wxStringBufferLength |
8f93a29f VS |
2384 | wxStringCharType *DoGetWriteBuf(size_t nLen) |
2385 | { return m_impl.DoGetWriteBuf(nLen); } | |
2386 | void DoUngetWriteBuf() | |
2387 | { m_impl.DoUngetWriteBuf(); } | |
2388 | void DoUngetWriteBuf(size_t nLen) | |
2389 | { m_impl.DoUngetWriteBuf(nLen); } | |
2523e9b7 | 2390 | #endif // !wxUSE_STL_BASED_WXSTRING |
c9f78968 VS |
2391 | |
2392 | #ifndef wxNEEDS_WXSTRING_PRINTF_MIXIN | |
d1f6e2cf VS |
2393 | #if !wxUSE_UTF8_LOCALE_ONLY |
2394 | int DoPrintfWchar(const wxChar *format, ...); | |
2395 | static wxString DoFormatWchar(const wxChar *format, ...); | |
2396 | #endif | |
2397 | #if wxUSE_UNICODE_UTF8 | |
2398 | int DoPrintfUtf8(const char *format, ...); | |
2399 | static wxString DoFormatUtf8(const char *format, ...); | |
2400 | #endif | |
c9f78968 | 2401 | #endif |
8f93a29f VS |
2402 | |
2403 | #if !wxUSE_STL_BASED_WXSTRING | |
2404 | // check string's data validity | |
2405 | bool IsValid() const { return m_impl.GetStringData()->IsValid(); } | |
2406 | #endif | |
2407 | ||
2408 | private: | |
2409 | wxStringImpl m_impl; | |
132276cf VS |
2410 | |
2411 | // buffers for compatibility conversion from (char*)c_str() and | |
2412 | // (wchar_t*)c_str(): | |
2413 | // FIXME-UTF8: bechmark various approaches to keeping compatibility buffers | |
2414 | template<typename T> | |
2415 | struct ConvertedBuffer | |
2416 | { | |
2417 | ConvertedBuffer() : m_buf(NULL) {} | |
2418 | ~ConvertedBuffer() | |
2419 | { free(m_buf); } | |
2420 | ||
05f32fc3 | 2421 | operator T*() const { return m_buf; } |
132276cf VS |
2422 | |
2423 | ConvertedBuffer& operator=(T *str) | |
2424 | { | |
2425 | free(m_buf); | |
2426 | m_buf = str; | |
2427 | return *this; | |
2428 | } | |
2429 | ||
2430 | T *m_buf; | |
2431 | }; | |
111d9948 | 2432 | #if wxUSE_UNICODE && !wxUSE_UTF8_LOCALE_ONLY |
132276cf VS |
2433 | ConvertedBuffer<char> m_convertedToChar; |
2434 | #endif | |
2435 | #if !wxUSE_UNICODE_WCHAR | |
2436 | ConvertedBuffer<wchar_t> m_convertedToWChar; | |
2437 | #endif | |
2523e9b7 | 2438 | |
132276cf | 2439 | friend class WXDLLIMPEXP_BASE wxCStrData; |
2523e9b7 VS |
2440 | friend class wxImplStringBuffer; |
2441 | friend class wxImplStringBufferLength; | |
c801d85f KB |
2442 | }; |
2443 | ||
c9f78968 VS |
2444 | #ifdef wxNEEDS_WXSTRING_PRINTF_MIXIN |
2445 | #pragma warning (default:4275) | |
2446 | #endif | |
2447 | ||
a962cdf4 VS |
2448 | // string iterator operators that satisfy STL Random Access Iterator |
2449 | // requirements: | |
2450 | inline wxString::iterator operator+(int n, wxString::iterator i) | |
2451 | { return i + n; } | |
2452 | inline wxString::iterator operator+(size_t n, wxString::iterator i) | |
2453 | { return i + n; } | |
2454 | inline wxString::const_iterator operator+(int n, wxString::const_iterator i) | |
2455 | { return i + n; } | |
2456 | inline wxString::const_iterator operator+(size_t n, wxString::const_iterator i) | |
2457 | { return i + n; } | |
2458 | inline wxString::reverse_iterator operator+(int n, wxString::reverse_iterator i) | |
2459 | { return i + n; } | |
2460 | inline wxString::reverse_iterator operator+(size_t n, wxString::reverse_iterator i) | |
2461 | { return i + n; } | |
2462 | inline wxString::const_reverse_iterator operator+(int n, wxString::const_reverse_iterator i) | |
2463 | { return i + n; } | |
2464 | inline wxString::const_reverse_iterator operator+(size_t n, wxString::const_reverse_iterator i) | |
2465 | { return i + n; } | |
2466 | ||
1fc8cfbd VZ |
2467 | // notice that even though for many compilers the friend declarations above are |
2468 | // enough, from the point of view of C++ standard we must have the declarations | |
2469 | // here as friend ones are not injected in the enclosing namespace and without | |
2470 | // them the code fails to compile with conforming compilers such as xlC or g++4 | |
c9f78968 | 2471 | wxString WXDLLIMPEXP_BASE operator+(const wxString& string1, const wxString& string2); |
8f93a29f VS |
2472 | wxString WXDLLIMPEXP_BASE operator+(const wxString& string, const char *psz); |
2473 | wxString WXDLLIMPEXP_BASE operator+(const wxString& string, const wchar_t *pwz); | |
2474 | wxString WXDLLIMPEXP_BASE operator+(const char *psz, const wxString& string); | |
2475 | wxString WXDLLIMPEXP_BASE operator+(const wchar_t *pwz, const wxString& string); | |
1fc8cfbd | 2476 | |
c9f78968 VS |
2477 | wxString WXDLLIMPEXP_BASE operator+(const wxString& string, wxUniChar ch); |
2478 | wxString WXDLLIMPEXP_BASE operator+(wxUniChar ch, const wxString& string); | |
2479 | ||
2480 | inline wxString operator+(const wxString& string, wxUniCharRef ch) | |
2481 | { return string + (wxUniChar)ch; } | |
2482 | inline wxString operator+(const wxString& string, char ch) | |
2483 | { return string + wxUniChar(ch); } | |
2484 | inline wxString operator+(const wxString& string, wchar_t ch) | |
2485 | { return string + wxUniChar(ch); } | |
2486 | inline wxString operator+(wxUniCharRef ch, const wxString& string) | |
2487 | { return (wxUniChar)ch + string; } | |
2488 | inline wxString operator+(char ch, const wxString& string) | |
2489 | { return wxUniChar(ch) + string; } | |
2490 | inline wxString operator+(wchar_t ch, const wxString& string) | |
2491 | { return wxUniChar(ch) + string; } | |
2492 | ||
b7146cbe | 2493 | |
992527a5 | 2494 | #if wxUSE_STL_BASED_WXSTRING |
07170120 | 2495 | // return an empty wxString (not very useful with wxUSE_STL == 1) |
12f99210 | 2496 | inline const wxString wxGetEmptyString() { return wxString(); } |
992527a5 | 2497 | #else // !wxUSE_STL_BASED_WXSTRING |
07170120 VZ |
2498 | // return an empty wxString (more efficient than wxString() here) |
2499 | inline const wxString& wxGetEmptyString() | |
2500 | { | |
2501 | return *(wxString *)&wxEmptyString; | |
2502 | } | |
992527a5 | 2503 | #endif // wxUSE_STL_BASED_WXSTRING/!wxUSE_STL_BASED_WXSTRING |
07170120 | 2504 | |
1d218550 VZ |
2505 | // ---------------------------------------------------------------------------- |
2506 | // wxStringBuffer: a tiny class allowing to get a writable pointer into string | |
2507 | // ---------------------------------------------------------------------------- | |
2508 | ||
2523e9b7 VS |
2509 | #if !wxUSE_STL_BASED_WXSTRING |
2510 | // string buffer for direct access to string data in their native | |
2511 | // representation: | |
2512 | class wxImplStringBuffer | |
2513 | { | |
2514 | public: | |
2515 | typedef wxStringCharType CharType; | |
2516 | ||
2517 | wxImplStringBuffer(wxString& str, size_t lenWanted = 1024) | |
2518 | : m_str(str), m_buf(NULL) | |
2519 | { m_buf = m_str.DoGetWriteBuf(lenWanted); } | |
2520 | ||
2521 | ~wxImplStringBuffer() { m_str.DoUngetWriteBuf(); } | |
2522 | ||
2523 | operator wxStringCharType*() const { return m_buf; } | |
941b78cc | 2524 | |
2523e9b7 VS |
2525 | private: |
2526 | wxString& m_str; | |
2527 | wxStringCharType *m_buf; | |
2528 | ||
2529 | DECLARE_NO_COPY_CLASS(wxImplStringBuffer) | |
2530 | }; | |
2531 | ||
2532 | class wxImplStringBufferLength | |
941b78cc MB |
2533 | { |
2534 | public: | |
2523e9b7 VS |
2535 | typedef wxStringCharType CharType; |
2536 | ||
2537 | wxImplStringBufferLength(wxString& str, size_t lenWanted = 1024) | |
2538 | : m_str(str), m_buf(NULL), m_len(0), m_lenSet(false) | |
2539 | { | |
2540 | m_buf = m_str.DoGetWriteBuf(lenWanted); | |
2541 | wxASSERT(m_buf != NULL); | |
2542 | } | |
2543 | ||
2544 | ~wxImplStringBufferLength() | |
2545 | { | |
2546 | wxASSERT(m_lenSet); | |
2547 | m_str.DoUngetWriteBuf(m_len); | |
2548 | } | |
2549 | ||
2550 | operator wxStringCharType*() const { return m_buf; } | |
2551 | void SetLength(size_t length) { m_len = length; m_lenSet = true; } | |
2552 | ||
2553 | private: | |
2554 | wxString& m_str; | |
2555 | wxStringCharType *m_buf; | |
2556 | size_t m_len; | |
2557 | bool m_lenSet; | |
2558 | ||
2559 | DECLARE_NO_COPY_CLASS(wxImplStringBufferLength) | |
2560 | }; | |
2561 | ||
2562 | #endif // !wxUSE_STL_BASED_WXSTRING | |
2563 | ||
2564 | template<typename T> | |
2565 | class wxStringTypeBufferBase | |
2566 | { | |
2567 | public: | |
2568 | typedef T CharType; | |
2569 | ||
2570 | wxStringTypeBufferBase(wxString& str, size_t lenWanted = 1024) | |
e87b7833 | 2571 | : m_str(str), m_buf(lenWanted) |
941b78cc MB |
2572 | { } |
2573 | ||
941b78cc | 2574 | |
2523e9b7 | 2575 | operator CharType*() { return m_buf.data(); } |
941b78cc | 2576 | |
2523e9b7 | 2577 | protected: |
941b78cc | 2578 | wxString& m_str; |
2523e9b7 | 2579 | wxCharTypeBuffer<CharType> m_buf; |
941b78cc MB |
2580 | }; |
2581 | ||
2523e9b7 VS |
2582 | template<typename T> |
2583 | class wxStringTypeBufferLengthBase | |
941b78cc MB |
2584 | { |
2585 | public: | |
2523e9b7 VS |
2586 | typedef T CharType; |
2587 | ||
2588 | wxStringTypeBufferLengthBase(wxString& str, size_t lenWanted = 1024) | |
941b78cc MB |
2589 | : m_str(str), m_buf(lenWanted), m_len(0), m_lenSet(false) |
2590 | { } | |
2591 | ||
2523e9b7 | 2592 | ~wxStringTypeBufferLengthBase() |
941b78cc MB |
2593 | { |
2594 | wxASSERT(m_lenSet); | |
2595 | m_str.assign(m_buf.data(), m_len); | |
2596 | } | |
2597 | ||
2523e9b7 | 2598 | operator CharType*() { return m_buf.data(); } |
941b78cc MB |
2599 | void SetLength(size_t length) { m_len = length; m_lenSet = true; } |
2600 | ||
2523e9b7 | 2601 | protected: |
941b78cc | 2602 | wxString& m_str; |
2523e9b7 | 2603 | wxCharTypeBuffer<CharType> m_buf; |
941b78cc MB |
2604 | size_t m_len; |
2605 | bool m_lenSet; | |
941b78cc MB |
2606 | }; |
2607 | ||
2523e9b7 VS |
2608 | template<typename T> |
2609 | class wxStringTypeBuffer : public wxStringTypeBufferBase<T> | |
2610 | { | |
2611 | public: | |
2612 | wxStringTypeBuffer(wxString& str, size_t lenWanted = 1024) | |
2613 | : wxStringTypeBufferBase<T>(str, lenWanted) {} | |
2614 | ~wxStringTypeBuffer() | |
2615 | { | |
2616 | this->m_str.assign(this->m_buf.data()); | |
2617 | } | |
941b78cc | 2618 | |
2523e9b7 VS |
2619 | DECLARE_NO_COPY_CLASS(wxStringTypeBuffer) |
2620 | }; | |
2621 | ||
2622 | template<typename T> | |
2623 | class wxStringTypeBufferLength : public wxStringTypeBufferLengthBase<T> | |
1d218550 VZ |
2624 | { |
2625 | public: | |
2523e9b7 VS |
2626 | wxStringTypeBufferLength(wxString& str, size_t lenWanted = 1024) |
2627 | : wxStringTypeBufferLengthBase<T>(str, lenWanted) {} | |
e015c2a3 | 2628 | |
2523e9b7 VS |
2629 | ~wxStringTypeBufferLength() |
2630 | { | |
2631 | wxASSERT(this->m_lenSet); | |
2632 | this->m_str.assign(this->m_buf.data(), this->m_len); | |
2633 | } | |
e015c2a3 | 2634 | |
2523e9b7 VS |
2635 | DECLARE_NO_COPY_CLASS(wxStringTypeBufferLength) |
2636 | }; | |
e015c2a3 | 2637 | |
2523e9b7 VS |
2638 | #if wxUSE_STL_BASED_WXSTRING |
2639 | class wxImplStringBuffer : public wxStringTypeBufferBase<wxStringCharType> | |
2640 | { | |
2641 | public: | |
2642 | wxImplStringBuffer(wxString& str, size_t lenWanted = 1024) | |
2643 | : wxStringTypeBufferBase<wxStringCharType>(str, lenWanted) {} | |
2644 | ~wxImplStringBuffer() | |
2645 | { m_str.m_impl.assign(m_buf.data()); } | |
e015c2a3 | 2646 | |
2523e9b7 | 2647 | DECLARE_NO_COPY_CLASS(wxImplStringBuffer) |
1d218550 VZ |
2648 | }; |
2649 | ||
2523e9b7 | 2650 | class wxImplStringBufferLength : public wxStringTypeBufferLengthBase<wxStringCharType> |
941b78cc MB |
2651 | { |
2652 | public: | |
2523e9b7 VS |
2653 | wxImplStringBufferLength(wxString& str, size_t lenWanted = 1024) |
2654 | : wxStringTypeBufferLengthBase<wxStringCharType>(str, lenWanted) {} | |
941b78cc | 2655 | |
2523e9b7 | 2656 | ~wxImplStringBufferLength() |
941b78cc MB |
2657 | { |
2658 | wxASSERT(m_lenSet); | |
2523e9b7 | 2659 | m_str.m_impl.assign(m_buf.data(), m_len); |
941b78cc MB |
2660 | } |
2661 | ||
2523e9b7 | 2662 | DECLARE_NO_COPY_CLASS(wxImplStringBufferLength) |
941b78cc | 2663 | }; |
2523e9b7 VS |
2664 | #endif // wxUSE_STL_BASED_WXSTRING |
2665 | ||
941b78cc | 2666 | |
2523e9b7 VS |
2667 | #if wxUSE_STL_BASED_WXSTRING || wxUSE_UNICODE_UTF8 |
2668 | typedef wxStringTypeBuffer<wxChar> wxStringBuffer; | |
2669 | typedef wxStringTypeBufferLength<wxChar> wxStringBufferLength; | |
2670 | #else // if !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8 | |
2671 | typedef wxImplStringBuffer wxStringBuffer; | |
2672 | typedef wxImplStringBufferLength wxStringBufferLength; | |
8f93a29f | 2673 | #endif // !wxUSE_STL_BASED_WXSTRING && !wxUSE_UNICODE_UTF8 |
941b78cc | 2674 | |
c801d85f | 2675 | // --------------------------------------------------------------------------- |
3c67202d | 2676 | // wxString comparison functions: operator versions are always case sensitive |
c801d85f | 2677 | // --------------------------------------------------------------------------- |
f33fee2a | 2678 | |
831faf97 | 2679 | #define wxCMP_WXCHAR_STRING(p, s, op) 0 op s.Cmp(p) |
fb52c2b6 VZ |
2680 | |
2681 | wxDEFINE_ALL_COMPARISONS(const wxChar *, const wxString&, wxCMP_WXCHAR_STRING) | |
2682 | ||
2683 | #undef wxCMP_WXCHAR_STRING | |
2684 | ||
2685 | // note that there is an optimization in operator==() and !=(): we (quickly) | |
2686 | // checks the strings length first, before comparing their data | |
0cbe5ee3 VZ |
2687 | inline bool operator==(const wxString& s1, const wxString& s2) |
2688 | { return (s1.Len() == s2.Len()) && (s1.Cmp(s2) == 0); } | |
0cbe5ee3 VZ |
2689 | inline bool operator!=(const wxString& s1, const wxString& s2) |
2690 | { return (s1.Len() != s2.Len()) || (s1.Cmp(s2) != 0); } | |
0cbe5ee3 VZ |
2691 | inline bool operator< (const wxString& s1, const wxString& s2) |
2692 | { return s1.Cmp(s2) < 0; } | |
0cbe5ee3 VZ |
2693 | inline bool operator> (const wxString& s1, const wxString& s2) |
2694 | { return s1.Cmp(s2) > 0; } | |
0cbe5ee3 VZ |
2695 | inline bool operator<=(const wxString& s1, const wxString& s2) |
2696 | { return s1.Cmp(s2) <= 0; } | |
0cbe5ee3 VZ |
2697 | inline bool operator>=(const wxString& s1, const wxString& s2) |
2698 | { return s1.Cmp(s2) >= 0; } | |
3c67202d | 2699 | |
5ca07d0f OK |
2700 | #if wxUSE_UNICODE |
2701 | inline bool operator==(const wxString& s1, const wxWCharBuffer& s2) | |
f33fee2a | 2702 | { return (s1.Cmp((const wchar_t *)s2) == 0); } |
5ca07d0f | 2703 | inline bool operator==(const wxWCharBuffer& s1, const wxString& s2) |
f33fee2a | 2704 | { return (s2.Cmp((const wchar_t *)s1) == 0); } |
f6bcfd97 BP |
2705 | inline bool operator!=(const wxString& s1, const wxWCharBuffer& s2) |
2706 | { return (s1.Cmp((const wchar_t *)s2) != 0); } | |
2707 | inline bool operator!=(const wxWCharBuffer& s1, const wxString& s2) | |
2708 | { return (s2.Cmp((const wchar_t *)s1) != 0); } | |
0cbe5ee3 | 2709 | #else // !wxUSE_UNICODE |
5ca07d0f | 2710 | inline bool operator==(const wxString& s1, const wxCharBuffer& s2) |
f33fee2a | 2711 | { return (s1.Cmp((const char *)s2) == 0); } |
5ca07d0f | 2712 | inline bool operator==(const wxCharBuffer& s1, const wxString& s2) |
f33fee2a | 2713 | { return (s2.Cmp((const char *)s1) == 0); } |
f6bcfd97 BP |
2714 | inline bool operator!=(const wxString& s1, const wxCharBuffer& s2) |
2715 | { return (s1.Cmp((const char *)s2) != 0); } | |
2716 | inline bool operator!=(const wxCharBuffer& s1, const wxString& s2) | |
2717 | { return (s2.Cmp((const char *)s1) != 0); } | |
0cbe5ee3 | 2718 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE |
5ca07d0f | 2719 | |
028a2b5d | 2720 | #if wxUSE_UNICODE |
6d56eb5c | 2721 | inline wxString operator+(const wxString& string, const wxWCharBuffer& buf) |
e90c1d2a | 2722 | { return string + (const wchar_t *)buf; } |
6d56eb5c | 2723 | inline wxString operator+(const wxWCharBuffer& buf, const wxString& string) |
e90c1d2a | 2724 | { return (const wchar_t *)buf + string; } |
0cbe5ee3 | 2725 | #else // !wxUSE_UNICODE |
6d56eb5c | 2726 | inline wxString operator+(const wxString& string, const wxCharBuffer& buf) |
e90c1d2a | 2727 | { return string + (const char *)buf; } |
6d56eb5c | 2728 | inline wxString operator+(const wxCharBuffer& buf, const wxString& string) |
e90c1d2a | 2729 | { return (const char *)buf + string; } |
0cbe5ee3 | 2730 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE |
f04f3991 | 2731 | |
a962cdf4 | 2732 | // comparison with char |
c9f78968 VS |
2733 | inline bool operator==(const wxUniChar& c, const wxString& s) { return s.IsSameAs(c); } |
2734 | inline bool operator==(const wxUniCharRef& c, const wxString& s) { return s.IsSameAs(c); } | |
2735 | inline bool operator==(char c, const wxString& s) { return s.IsSameAs(c); } | |
2736 | inline bool operator==(wchar_t c, const wxString& s) { return s.IsSameAs(c); } | |
2737 | inline bool operator==(int c, const wxString& s) { return s.IsSameAs(c); } | |
2738 | inline bool operator==(const wxString& s, const wxUniChar& c) { return s.IsSameAs(c); } | |
2739 | inline bool operator==(const wxString& s, const wxUniCharRef& c) { return s.IsSameAs(c); } | |
2740 | inline bool operator==(const wxString& s, char c) { return s.IsSameAs(c); } | |
2741 | inline bool operator==(const wxString& s, wchar_t c) { return s.IsSameAs(c); } | |
2742 | inline bool operator!=(const wxUniChar& c, const wxString& s) { return !s.IsSameAs(c); } | |
2743 | inline bool operator!=(const wxUniCharRef& c, const wxString& s) { return !s.IsSameAs(c); } | |
2744 | inline bool operator!=(char c, const wxString& s) { return !s.IsSameAs(c); } | |
2745 | inline bool operator!=(wchar_t c, const wxString& s) { return !s.IsSameAs(c); } | |
2746 | inline bool operator!=(int c, const wxString& s) { return !s.IsSameAs(c); } | |
2747 | inline bool operator!=(const wxString& s, const wxUniChar& c) { return !s.IsSameAs(c); } | |
2748 | inline bool operator!=(const wxString& s, const wxUniCharRef& c) { return !s.IsSameAs(c); } | |
2749 | inline bool operator!=(const wxString& s, char c) { return !s.IsSameAs(c); } | |
2750 | inline bool operator!=(const wxString& s, wchar_t c) { return !s.IsSameAs(c); } | |
e51b17a1 | 2751 | |
d7330233 VS |
2752 | // comparison with C string in Unicode build |
2753 | #if wxUSE_UNICODE | |
fb52c2b6 VZ |
2754 | |
2755 | #define wxCMP_CHAR_STRING(p, s, op) wxString(p) op s | |
2756 | ||
2757 | wxDEFINE_ALL_COMPARISONS(const char *, const wxString&, wxCMP_CHAR_STRING) | |
2758 | ||
2759 | #undef wxCMP_CHAR_STRING | |
2760 | ||
d7330233 VS |
2761 | #endif // wxUSE_UNICODE |
2762 | ||
fb52c2b6 VZ |
2763 | // we also need to provide the operators for comparison with wxCStrData to |
2764 | // resolve ambiguity between operator(const wxChar *,const wxString &) and | |
2765 | // operator(const wxChar *, const wxChar *) for "p == s.c_str()" | |
2766 | // | |
2767 | // notice that these are (shallow) pointer comparisons, not (deep) string ones | |
2768 | #define wxCMP_CHAR_CSTRDATA(p, s, op) p op s.AsChar() | |
2769 | #define wxCMP_WCHAR_CSTRDATA(p, s, op) p op s.AsWChar() | |
2770 | ||
11aac4ba VS |
2771 | wxDEFINE_ALL_COMPARISONS(const wchar_t *, const wxCStrData&, wxCMP_WCHAR_CSTRDATA) |
2772 | wxDEFINE_ALL_COMPARISONS(const char *, const wxCStrData&, wxCMP_CHAR_CSTRDATA) | |
fb52c2b6 VZ |
2773 | |
2774 | #undef wxCMP_CHAR_CSTRDATA | |
2775 | #undef wxCMP_WCHAR_CSTRDATA | |
2776 | ||
c801d85f | 2777 | // --------------------------------------------------------------------------- |
3c67202d | 2778 | // Implementation only from here until the end of file |
c801d85f KB |
2779 | // --------------------------------------------------------------------------- |
2780 | ||
e87b7833 | 2781 | #if wxUSE_STD_IOSTREAM |
c801d85f | 2782 | |
65f19af1 | 2783 | #include "wx/iosfwrap.h" |
c801d85f | 2784 | |
bddd7a8d | 2785 | WXDLLIMPEXP_BASE wxSTD ostream& operator<<(wxSTD ostream&, const wxString&); |
c9f78968 | 2786 | WXDLLIMPEXP_BASE wxSTD ostream& operator<<(wxSTD ostream&, const wxCStrData&); |
04abe4bc VS |
2787 | WXDLLIMPEXP_BASE wxSTD ostream& operator<<(wxSTD ostream&, const wxCharBuffer&); |
2788 | #ifndef __BORLANDC__ | |
2789 | WXDLLIMPEXP_BASE wxSTD ostream& operator<<(wxSTD ostream&, const wxWCharBuffer&); | |
2790 | #endif | |
c801d85f | 2791 | |
3c67202d | 2792 | #endif // wxSTD_STRING_COMPATIBILITY |
c801d85f | 2793 | |
c9f78968 VS |
2794 | // --------------------------------------------------------------------------- |
2795 | // wxCStrData implementation | |
2796 | // --------------------------------------------------------------------------- | |
2797 | ||
2798 | inline wxCStrData::wxCStrData(char *buf) | |
2799 | : m_str(new wxString(buf)), m_offset(0), m_owned(true) {} | |
2800 | inline wxCStrData::wxCStrData(wchar_t *buf) | |
2801 | : m_str(new wxString(buf)), m_offset(0), m_owned(true) {} | |
2802 | ||
92a17abc VS |
2803 | inline wxCStrData::wxCStrData(const wxCStrData& data) |
2804 | : m_str(data.m_owned ? new wxString(*data.m_str) : data.m_str), | |
2805 | m_offset(data.m_offset), | |
2806 | m_owned(data.m_owned) | |
2807 | { | |
2808 | } | |
2809 | ||
c9f78968 VS |
2810 | inline wxCStrData::~wxCStrData() |
2811 | { | |
2812 | if ( m_owned ) | |
2813 | delete m_str; | |
2814 | } | |
2815 | ||
11aac4ba VS |
2816 | // simple cases for AsChar() and AsWChar(), the complicated ones are |
2817 | // in string.cpp | |
2818 | #if wxUSE_UNICODE_WCHAR | |
c9f78968 | 2819 | inline const wchar_t* wxCStrData::AsWChar() const |
11aac4ba VS |
2820 | { |
2821 | return m_str->wx_str() + m_offset; | |
2822 | } | |
2823 | #endif // wxUSE_UNICODE_WCHAR | |
2824 | ||
111d9948 | 2825 | #if !wxUSE_UNICODE || wxUSE_UTF8_LOCALE_ONLY |
c9f78968 | 2826 | inline const char* wxCStrData::AsChar() const |
c9f78968 | 2827 | { |
111d9948 | 2828 | return wxStringOperations::AddToIter(m_str->wx_str(), m_offset); |
c9f78968 | 2829 | } |
11aac4ba | 2830 | #endif // !wxUSE_UNICODE |
c9f78968 | 2831 | |
681e4412 VS |
2832 | inline const wxCharBuffer wxCStrData::AsCharBuf() const |
2833 | { | |
2834 | #if !wxUSE_UNICODE | |
2835 | return wxCharBuffer::CreateNonOwned(AsChar()); | |
2836 | #else | |
2837 | return AsString().mb_str(); | |
2838 | #endif | |
2839 | } | |
2840 | ||
2841 | inline const wxWCharBuffer wxCStrData::AsWCharBuf() const | |
2842 | { | |
2843 | #if wxUSE_UNICODE_WCHAR | |
2844 | return wxWCharBuffer::CreateNonOwned(AsWChar()); | |
2845 | #else | |
2846 | return AsString().wc_str(); | |
2847 | #endif | |
2848 | } | |
2849 | ||
c9f78968 VS |
2850 | inline wxString wxCStrData::AsString() const |
2851 | { | |
2852 | if ( m_offset == 0 ) | |
2853 | return *m_str; | |
2854 | else | |
2855 | return m_str->Mid(m_offset); | |
2856 | } | |
2857 | ||
2523e9b7 VS |
2858 | inline const wxStringCharType *wxCStrData::AsInternal() const |
2859 | { | |
2860 | return wxStringOperations::AddToIter(m_str->wx_str(), m_offset); | |
2861 | } | |
2862 | ||
c9f78968 VS |
2863 | inline wxUniChar wxCStrData::operator*() const |
2864 | { | |
2865 | if ( m_str->empty() ) | |
2866 | return wxUniChar(_T('\0')); | |
2867 | else | |
2868 | return (*m_str)[m_offset]; | |
2869 | } | |
2870 | ||
2871 | inline wxUniChar wxCStrData::operator[](size_t n) const | |
2872 | { | |
378964d4 VS |
2873 | // NB: we intentionally use operator[] and not at() here because the former |
2874 | // works for the terminating NUL while the latter does not | |
2875 | return (*m_str)[m_offset + n]; | |
c9f78968 VS |
2876 | } |
2877 | ||
cc5bd48e VZ |
2878 | // ---------------------------------------------------------------------------- |
2879 | // more wxCStrData operators | |
2880 | // ---------------------------------------------------------------------------- | |
2881 | ||
2882 | // we need to define those to allow "size_t pos = p - s.c_str()" where p is | |
2883 | // some pointer into the string | |
2884 | inline size_t operator-(const char *p, const wxCStrData& cs) | |
2885 | { | |
2886 | return p - cs.AsChar(); | |
2887 | } | |
2888 | ||
2889 | inline size_t operator-(const wchar_t *p, const wxCStrData& cs) | |
2890 | { | |
2891 | return p - cs.AsWChar(); | |
2892 | } | |
2893 | ||
414b7b40 VZ |
2894 | // ---------------------------------------------------------------------------- |
2895 | // implementation of wx[W]CharBuffer inline methods using wxCStrData | |
2896 | // ---------------------------------------------------------------------------- | |
2897 | ||
11aac4ba VS |
2898 | // FIXME-UTF8: move this to buffer.h |
2899 | inline wxCharBuffer::wxCharBuffer(const wxCStrData& cstr) | |
681e4412 | 2900 | : wxCharTypeBufferBase(cstr.AsCharBuf()) |
11aac4ba VS |
2901 | { |
2902 | } | |
2903 | ||
2904 | inline wxWCharBuffer::wxWCharBuffer(const wxCStrData& cstr) | |
681e4412 | 2905 | : wxCharTypeBufferBase(cstr.AsWCharBuf()) |
414b7b40 VZ |
2906 | { |
2907 | } | |
2908 | ||
e3e8e3c0 VS |
2909 | #if WXWIN_COMPATIBILITY_2_8 |
2910 | // lot of code out there doesn't explicitly include wx/wxchar.h, but uses | |
2911 | // CRT wrappers that are now declared in wx/wxcrt.h and wx/wxcrtvararg.h, | |
2912 | // so let's include this header now that wxString is defined and it's safe | |
2913 | // to do it: | |
2914 | #include "wx/wxchar.h" | |
2915 | #endif | |
2916 | ||
11aac4ba | 2917 | #endif // _WX_WXSTRING_H_ |