]>
Commit | Line | Data |
---|---|---|
dd0ef332 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/common/wxcrt.cpp | |
3 | // Purpose: wxChar CRT wrappers implementation | |
4 | // Author: Ove Kaven | |
5 | // Modified by: Ron Lee, Francesco Montorsi | |
6 | // Created: 09/04/99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWidgets copyright | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // =========================================================================== | |
13 | // headers, declarations, constants | |
14 | // =========================================================================== | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
3a3dde0d | 23 | #include "wx/crt.h" |
dd0ef332 VS |
24 | |
25 | #define _ISOC9X_SOURCE 1 // to get vsscanf() | |
26 | #define _BSD_SOURCE 1 // to still get strdup() | |
27 | ||
28 | #include <stdio.h> | |
29 | #include <stdlib.h> | |
30 | #include <string.h> | |
31 | ||
32 | #ifndef __WXWINCE__ | |
33 | #include <time.h> | |
34 | #include <locale.h> | |
35 | #else | |
36 | #include "wx/msw/wince/time.h" | |
37 | #endif | |
38 | ||
39 | #ifndef WX_PRECOMP | |
40 | #include "wx/string.h" | |
41 | #include "wx/hash.h" | |
42 | #include "wx/utils.h" // for wxMin and wxMax | |
43 | #include "wx/log.h" | |
44 | #endif | |
45 | ||
52de37c7 VS |
46 | #ifdef __WXWINCE__ |
47 | // there is no errno.h under CE apparently | |
48 | #define wxSET_ERRNO(value) | |
49 | #else | |
50 | #include <errno.h> | |
17482893 | 51 | |
52de37c7 | 52 | #define wxSET_ERRNO(value) errno = value |
17482893 VZ |
53 | #endif |
54 | ||
dd0ef332 VS |
55 | #if defined(__MWERKS__) && __MSL__ >= 0x6000 |
56 | namespace std {} | |
57 | using namespace std ; | |
58 | #endif | |
59 | ||
60 | #if wxUSE_WCHAR_T | |
61 | size_t WXDLLEXPORT wxMB2WC(wchar_t *buf, const char *psz, size_t n) | |
62 | { | |
63 | // assume that we have mbsrtowcs() too if we have wcsrtombs() | |
64 | #ifdef HAVE_WCSRTOMBS | |
65 | mbstate_t mbstate; | |
66 | memset(&mbstate, 0, sizeof(mbstate_t)); | |
67 | #endif | |
68 | ||
69 | if (buf) { | |
70 | if (!n || !*psz) { | |
71 | if (n) *buf = wxT('\0'); | |
72 | return 0; | |
73 | } | |
74 | #ifdef HAVE_WCSRTOMBS | |
75 | return mbsrtowcs(buf, &psz, n, &mbstate); | |
76 | #else | |
77 | return wxMbstowcs(buf, psz, n); | |
78 | #endif | |
79 | } | |
80 | ||
81 | // note that we rely on common (and required by Unix98 but unfortunately not | |
82 | // C99) extension which allows to call mbs(r)towcs() with NULL output pointer | |
83 | // to just get the size of the needed buffer -- this is needed as otherwise | |
84 | // we have no idea about how much space we need and if the CRT doesn't | |
85 | // support it (the only currently known example being Metrowerks, see | |
3a3dde0d | 86 | // wx/crt.h) we don't use its mbstowcs() at all |
dd0ef332 VS |
87 | #ifdef HAVE_WCSRTOMBS |
88 | return mbsrtowcs((wchar_t *) NULL, &psz, 0, &mbstate); | |
89 | #else | |
90 | return wxMbstowcs((wchar_t *) NULL, psz, 0); | |
91 | #endif | |
92 | } | |
93 | ||
94 | size_t WXDLLEXPORT wxWC2MB(char *buf, const wchar_t *pwz, size_t n) | |
95 | { | |
96 | #ifdef HAVE_WCSRTOMBS | |
97 | mbstate_t mbstate; | |
98 | memset(&mbstate, 0, sizeof(mbstate_t)); | |
99 | #endif | |
100 | ||
101 | if (buf) { | |
102 | if (!n || !*pwz) { | |
103 | // glibc2.1 chokes on null input | |
104 | if (n) *buf = '\0'; | |
105 | return 0; | |
106 | } | |
107 | #ifdef HAVE_WCSRTOMBS | |
108 | return wcsrtombs(buf, &pwz, n, &mbstate); | |
109 | #else | |
110 | return wxWcstombs(buf, pwz, n); | |
111 | #endif | |
112 | } | |
113 | ||
114 | #ifdef HAVE_WCSRTOMBS | |
115 | return wcsrtombs((char *) NULL, &pwz, 0, &mbstate); | |
116 | #else | |
117 | return wxWcstombs((char *) NULL, pwz, 0); | |
118 | #endif | |
119 | } | |
120 | #endif // wxUSE_WCHAR_T | |
121 | ||
122 | bool WXDLLEXPORT wxOKlibc() | |
123 | { | |
124 | #if wxUSE_WCHAR_T && defined(__UNIX__) && defined(__GLIBC__) && !defined(__WINE__) | |
125 | // glibc 2.0 uses UTF-8 even when it shouldn't | |
126 | wchar_t res = 0; | |
127 | if ((MB_CUR_MAX == 2) && | |
128 | (wxMB2WC(&res, "\xdd\xa5", 1) == 1) && | |
129 | (res==0x765)) { | |
130 | // this is UTF-8 allright, check whether that's what we want | |
131 | char *cur_locale = setlocale(LC_CTYPE, NULL); | |
132 | if ((strlen(cur_locale) < 4) || | |
133 | (strcasecmp(cur_locale + strlen(cur_locale) - 4, "utf8")) || | |
134 | (strcasecmp(cur_locale + strlen(cur_locale) - 5, "utf-8"))) { | |
135 | // nope, don't use libc conversion | |
136 | return false; | |
137 | } | |
138 | } | |
139 | #endif | |
140 | return true; | |
141 | } | |
142 | ||
52de37c7 VS |
143 | char* wxSetlocale(int category, const char *locale) |
144 | { | |
145 | char *rv = setlocale(category, locale); | |
146 | if ( locale != NULL /* setting locale, not querying */ && | |
147 | rv /* call was successful */ ) | |
148 | { | |
149 | wxUpdateLocaleIsUtf8(); | |
150 | } | |
151 | return rv; | |
152 | } | |
153 | ||
dd0ef332 VS |
154 | // ============================================================================ |
155 | // printf() functions business | |
156 | // ============================================================================ | |
157 | ||
158 | // special test mode: define all functions below even if we don't really need | |
159 | // them to be able to test them | |
160 | #ifdef wxTEST_PRINTF | |
161 | #undef wxFprintf | |
162 | #undef wxPrintf | |
163 | #undef wxSprintf | |
164 | #undef wxVfprintf | |
165 | #undef wxVsprintf | |
166 | #undef wxVprintf | |
167 | #undef wxVsnprintf_ | |
dd0ef332 VS |
168 | |
169 | #define wxNEED_WPRINTF | |
170 | ||
52de37c7 | 171 | int wxCRT_VfprintfW( FILE *stream, const wchar_t *format, va_list argptr ); |
dd0ef332 VS |
172 | #endif |
173 | ||
dd0ef332 | 174 | #if defined(__DMC__) |
52de37c7 VS |
175 | /* Digital Mars adds count to _stprintf (C99) so convert */ |
176 | int wxCRT_SprintfW (wchar_t * __RESTRICT s, const wchar_t * __RESTRICT format, ... ) | |
177 | { | |
178 | va_list arglist; | |
dd0ef332 | 179 | |
52de37c7 VS |
180 | va_start( arglist, format ); |
181 | int iLen = swprintf ( s, -1, format, arglist ); | |
182 | va_end( arglist ); | |
183 | return iLen ; | |
184 | } | |
dd0ef332 VS |
185 | #endif //__DMC__ |
186 | ||
187 | // ---------------------------------------------------------------------------- | |
188 | // implement the standard IO functions for wide char if libc doesn't have them | |
189 | // ---------------------------------------------------------------------------- | |
190 | ||
52de37c7 VS |
191 | #ifndef wxCRT_FputsW |
192 | int wxCRT_FputsW(const wchar_t *ws, FILE *stream) | |
dd0ef332 VS |
193 | { |
194 | wxCharBuffer buf(wxConvLibc.cWC2MB(ws)); | |
195 | if ( !buf ) | |
196 | return -1; | |
197 | ||
198 | // counting the number of wide characters written isn't worth the trouble, | |
199 | // simply distinguish between ok and error | |
52de37c7 | 200 | return wxCRT_FputsA(buf, stream) == -1 ? -1 : 0; |
dd0ef332 | 201 | } |
52de37c7 | 202 | #endif // !wxCRT_FputsW |
dd0ef332 | 203 | |
52de37c7 VS |
204 | #ifndef wxCRT_PutsW |
205 | int wxCRT_PutsW(const wchar_t *ws) | |
dd0ef332 | 206 | { |
52de37c7 | 207 | int rc = wxCRT_FputsW(ws, stdout); |
dd0ef332 VS |
208 | if ( rc != -1 ) |
209 | { | |
52de37c7 | 210 | if ( wxCRT_FputsW(L"\n", stdout) == -1 ) |
dd0ef332 VS |
211 | return -1; |
212 | ||
213 | rc++; | |
214 | } | |
215 | ||
216 | return rc; | |
217 | } | |
52de37c7 | 218 | #endif // !wxCRT_PutsW |
dd0ef332 | 219 | |
52de37c7 VS |
220 | #ifndef wxCRT_FputcW |
221 | int /* not wint_t */ wxCRT_FputcW(wchar_t wc, FILE *stream) | |
dd0ef332 VS |
222 | { |
223 | wchar_t ws[2] = { wc, L'\0' }; | |
224 | ||
52de37c7 | 225 | return wxCRT_FputsW(ws, stream); |
dd0ef332 | 226 | } |
52de37c7 | 227 | #endif // !wxCRT_FputcW |
dd0ef332 VS |
228 | |
229 | // NB: we only implement va_list functions here, the ones taking ... are | |
230 | // defined below for wxNEED_PRINTF_CONVERSION case anyhow and we reuse | |
231 | // the definitions there to avoid duplicating them here | |
232 | #ifdef wxNEED_WPRINTF | |
233 | ||
234 | // TODO: implement the scanf() functions | |
52de37c7 | 235 | static int vwscanf(const wchar_t *format, va_list argptr) |
dd0ef332 VS |
236 | { |
237 | wxFAIL_MSG( _T("TODO") ); | |
238 | ||
239 | return -1; | |
240 | } | |
241 | ||
52de37c7 | 242 | static int vswscanf(const wchar_t *ws, const wchar_t *format, va_list argptr) |
dd0ef332 VS |
243 | { |
244 | // The best we can do without proper Unicode support in glibc is to | |
245 | // convert the strings into MB representation and run ANSI version | |
246 | // of the function. This doesn't work with %c and %s because of difference | |
247 | // in size of char and wchar_t, though. | |
248 | ||
249 | wxCHECK_MSG( wxStrstr(format, _T("%s")) == NULL, -1, | |
250 | _T("incomplete vswscanf implementation doesn't allow %s") ); | |
251 | wxCHECK_MSG( wxStrstr(format, _T("%c")) == NULL, -1, | |
252 | _T("incomplete vswscanf implementation doesn't allow %c") ); | |
253 | ||
c6255a6e | 254 | return vsscanf(wxConvLibc.cWX2MB(ws), wxConvLibc.cWX2MB(format), argptr); |
dd0ef332 VS |
255 | } |
256 | ||
52de37c7 | 257 | static int vfwscanf(FILE *stream, const wchar_t *format, va_list argptr) |
dd0ef332 VS |
258 | { |
259 | wxFAIL_MSG( _T("TODO") ); | |
260 | ||
261 | return -1; | |
262 | } | |
263 | ||
50e27899 | 264 | #define vswprintf wxCRT_VsnprintfW |
dd0ef332 | 265 | |
52de37c7 | 266 | static int vfwprintf(FILE *stream, const wchar_t *format, va_list argptr) |
dd0ef332 VS |
267 | { |
268 | wxString s; | |
269 | int rc = s.PrintfV(format, argptr); | |
270 | ||
271 | if ( rc != -1 ) | |
272 | { | |
273 | // we can't do much better without Unicode support in libc... | |
274 | if ( fprintf(stream, "%s", (const char*)s.mb_str() ) == -1 ) | |
275 | return -1; | |
276 | } | |
277 | ||
278 | return rc; | |
279 | } | |
280 | ||
52de37c7 | 281 | static int vwprintf(const wchar_t *format, va_list argptr) |
dd0ef332 | 282 | { |
52de37c7 | 283 | return wxCRT_VfprintfW(stdout, format, argptr); |
dd0ef332 VS |
284 | } |
285 | ||
286 | #endif // wxNEED_WPRINTF | |
287 | ||
dd0ef332 VS |
288 | // ---------------------------------------------------------------------------- |
289 | // wxPrintf(), wxScanf() and relatives | |
290 | // ---------------------------------------------------------------------------- | |
291 | ||
eb6cb207 VS |
292 | // FIXME-UTF8: do format conversion using (modified) wxFormatConverter in |
293 | // template wrappers, not here; note that it will needed to | |
294 | // translate all forms of string specifiers to %(l)s for wxPrintf(), | |
295 | // but it only should do what it did in 2.8 for wxScanf()! | |
296 | ||
52de37c7 VS |
297 | #ifndef wxCRT_PrintfW |
298 | int wxCRT_PrintfW( const wchar_t *format, ... ) | |
dd0ef332 VS |
299 | { |
300 | va_list argptr; | |
301 | va_start(argptr, format); | |
302 | ||
50e27899 | 303 | int ret = vwprintf( format, argptr ); |
dd0ef332 VS |
304 | |
305 | va_end(argptr); | |
306 | ||
307 | return ret; | |
308 | } | |
52de37c7 | 309 | #endif |
dd0ef332 | 310 | |
52de37c7 VS |
311 | #ifndef wxCRT_FprintfW |
312 | int wxCRT_FprintfW( FILE *stream, const wchar_t *format, ... ) | |
dd0ef332 VS |
313 | { |
314 | va_list argptr; | |
2523e9b7 | 315 | va_start( argptr, format ); |
dd0ef332 | 316 | |
50e27899 | 317 | int ret = vfwprintf( stream, format, argptr ); |
dd0ef332 VS |
318 | |
319 | va_end(argptr); | |
320 | ||
321 | return ret; | |
322 | } | |
52de37c7 | 323 | #endif |
dd0ef332 | 324 | |
52de37c7 VS |
325 | #ifndef wxCRT_VfprintfW |
326 | int wxCRT_VfprintfW( FILE *stream, const wchar_t *format, va_list argptr ) | |
2523e9b7 | 327 | { |
50e27899 | 328 | return vfwprintf( stream, format, argptr ); |
2523e9b7 | 329 | } |
52de37c7 | 330 | #endif |
2523e9b7 | 331 | |
52de37c7 VS |
332 | #ifndef wxCRT_VprintfW |
333 | int wxCRT_VprintfW( const wchar_t *format, va_list argptr ) | |
2523e9b7 | 334 | { |
50e27899 | 335 | return vwprintf( format, argptr ); |
2523e9b7 | 336 | } |
52de37c7 | 337 | #endif |
2523e9b7 | 338 | |
52de37c7 VS |
339 | #ifndef wxCRT_VsprintfW |
340 | int wxCRT_VsprintfW( wchar_t *str, const wchar_t *format, va_list argptr ) | |
2523e9b7 VS |
341 | { |
342 | // same as for wxSprintf() | |
50e27899 | 343 | return vswprintf(str, INT_MAX / 4, format, argptr); |
2523e9b7 | 344 | } |
52de37c7 | 345 | #endif |
2523e9b7 | 346 | |
52de37c7 | 347 | #ifndef wxCRT_ScanfW |
eb6cb207 VS |
348 | int wxCRT_ScanfW(const wchar_t *format, ...) |
349 | { | |
350 | va_list argptr; | |
351 | va_start(argptr, format); | |
352 | ||
28ffb1f2 JJ |
353 | #ifdef __VMS |
354 | #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD ) | |
50e27899 | 355 | int ret = std::vwscanf(format, argptr); |
28ffb1f2 | 356 | #else |
50e27899 | 357 | int ret = vwscanf(format, argptr); |
28ffb1f2 JJ |
358 | #endif |
359 | #else | |
50e27899 | 360 | int ret = vwscanf(format, argptr); |
28ffb1f2 JJ |
361 | #endif |
362 | ||
eb6cb207 VS |
363 | va_end(argptr); |
364 | ||
365 | return ret; | |
366 | } | |
52de37c7 | 367 | #endif |
eb6cb207 | 368 | |
52de37c7 | 369 | #ifndef wxCRT_SscanfW |
eb6cb207 VS |
370 | int wxCRT_SscanfW(const wchar_t *str, const wchar_t *format, ...) |
371 | { | |
372 | va_list argptr; | |
373 | va_start(argptr, format); | |
374 | ||
28ffb1f2 JJ |
375 | #ifdef __VMS |
376 | #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD ) | |
50e27899 | 377 | int ret = std::vswscanf(str, format, argptr); |
28ffb1f2 | 378 | #else |
50e27899 | 379 | int ret = vswscanf(str, format, argptr); |
28ffb1f2 JJ |
380 | #endif |
381 | #else | |
50e27899 | 382 | int ret = vswscanf(str, format, argptr); |
28ffb1f2 | 383 | #endif |
eb6cb207 VS |
384 | |
385 | va_end(argptr); | |
386 | ||
387 | return ret; | |
388 | } | |
52de37c7 | 389 | #endif |
eb6cb207 | 390 | |
52de37c7 | 391 | #ifndef wxCRT_FscanfW |
eb6cb207 VS |
392 | int wxCRT_FscanfW(FILE *stream, const wchar_t *format, ...) |
393 | { | |
394 | va_list argptr; | |
395 | va_start(argptr, format); | |
28ffb1f2 JJ |
396 | #ifdef __VMS |
397 | #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD ) | |
50e27899 | 398 | int ret = std::vfwscanf(stream, format, argptr); |
28ffb1f2 | 399 | #else |
50e27899 | 400 | int ret = vfwscanf(stream, format, argptr); |
28ffb1f2 JJ |
401 | #endif |
402 | #else | |
50e27899 | 403 | int ret = vfwscanf(stream, format, argptr); |
28ffb1f2 | 404 | #endif |
eb6cb207 VS |
405 | |
406 | va_end(argptr); | |
407 | ||
408 | return ret; | |
409 | } | |
52de37c7 | 410 | #endif |
eb6cb207 | 411 | |
52de37c7 | 412 | #ifndef wxCRT_VsscanfW |
eb6cb207 VS |
413 | int wxCRT_VsscanfW(const wchar_t *str, const wchar_t *format, va_list argptr) |
414 | { | |
28ffb1f2 JJ |
415 | #ifdef __VMS |
416 | #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD ) | |
50e27899 | 417 | return std::vswscanf(str, format, argptr); |
28ffb1f2 | 418 | #else |
50e27899 | 419 | return vswscanf(str, format, argptr); |
28ffb1f2 JJ |
420 | #endif |
421 | #else | |
50e27899 | 422 | return vswscanf(str, format, argptr); |
28ffb1f2 | 423 | #endif |
eb6cb207 | 424 | } |
52de37c7 | 425 | #endif |
2523e9b7 VS |
426 | |
427 | ||
428 | // ---------------------------------------------------------------------------- | |
429 | // wrappers to printf and scanf function families | |
430 | // ---------------------------------------------------------------------------- | |
431 | ||
d1f6e2cf VS |
432 | #if !wxUSE_UTF8_LOCALE_ONLY |
433 | int wxDoSprintfWchar(char *str, const wxChar *format, ...) | |
dd0ef332 VS |
434 | { |
435 | va_list argptr; | |
436 | va_start(argptr, format); | |
437 | ||
2523e9b7 | 438 | int rv = wxVsprintf(str, format, argptr); |
dd0ef332 VS |
439 | |
440 | va_end(argptr); | |
2523e9b7 VS |
441 | return rv; |
442 | } | |
d1f6e2cf VS |
443 | #endif // !wxUSE_UTF8_LOCALE_ONLY |
444 | ||
445 | #if wxUSE_UNICODE_UTF8 | |
446 | int wxDoSprintfUtf8(char *str, const char *format, ...) | |
447 | { | |
448 | va_list argptr; | |
449 | va_start(argptr, format); | |
450 | ||
451 | int rv = wxVsprintf(str, format, argptr); | |
452 | ||
453 | va_end(argptr); | |
454 | return rv; | |
455 | } | |
456 | #endif // wxUSE_UNICODE_UTF8 | |
2523e9b7 VS |
457 | |
458 | #if wxUSE_UNICODE | |
d1f6e2cf VS |
459 | |
460 | #if !wxUSE_UTF8_LOCALE_ONLY | |
461 | int wxDoSprintfWchar(wchar_t *str, const wxChar *format, ...) | |
2523e9b7 VS |
462 | { |
463 | va_list argptr; | |
464 | va_start(argptr, format); | |
dd0ef332 | 465 | |
2523e9b7 VS |
466 | int rv = wxVsprintf(str, format, argptr); |
467 | ||
468 | va_end(argptr); | |
469 | return rv; | |
dd0ef332 | 470 | } |
d1f6e2cf VS |
471 | #endif // !wxUSE_UTF8_LOCALE_ONLY |
472 | ||
473 | #if wxUSE_UNICODE_UTF8 | |
474 | int wxDoSprintfUtf8(wchar_t *str, const char *format, ...) | |
475 | { | |
476 | va_list argptr; | |
477 | va_start(argptr, format); | |
478 | ||
479 | int rv = wxVsprintf(str, format, argptr); | |
480 | ||
481 | va_end(argptr); | |
482 | return rv; | |
483 | } | |
484 | #endif // wxUSE_UNICODE_UTF8 | |
485 | ||
486 | #endif // wxUSE_UNICODE | |
487 | ||
488 | #if !wxUSE_UTF8_LOCALE_ONLY | |
489 | int wxDoSnprintfWchar(char *str, size_t size, const wxChar *format, ...) | |
490 | { | |
491 | va_list argptr; | |
492 | va_start(argptr, format); | |
dd0ef332 | 493 | |
d1f6e2cf VS |
494 | int rv = wxVsnprintf(str, size, format, argptr); |
495 | ||
496 | va_end(argptr); | |
497 | return rv; | |
498 | } | |
499 | #endif // !wxUSE_UTF8_LOCALE_ONLY | |
500 | ||
501 | #if wxUSE_UNICODE_UTF8 | |
502 | int wxDoSnprintfUtf8(char *str, size_t size, const char *format, ...) | |
dd0ef332 VS |
503 | { |
504 | va_list argptr; | |
2523e9b7 | 505 | va_start(argptr, format); |
dd0ef332 | 506 | |
2523e9b7 | 507 | int rv = wxVsnprintf(str, size, format, argptr); |
dd0ef332 VS |
508 | |
509 | va_end(argptr); | |
2523e9b7 VS |
510 | return rv; |
511 | } | |
d1f6e2cf | 512 | #endif // wxUSE_UNICODE_UTF8 |
dd0ef332 | 513 | |
2523e9b7 | 514 | #if wxUSE_UNICODE |
d1f6e2cf VS |
515 | |
516 | #if !wxUSE_UTF8_LOCALE_ONLY | |
517 | int wxDoSnprintfWchar(wchar_t *str, size_t size, const wxChar *format, ...) | |
2523e9b7 VS |
518 | { |
519 | va_list argptr; | |
520 | va_start(argptr, format); | |
521 | ||
522 | int rv = wxVsnprintf(str, size, format, argptr); | |
523 | ||
524 | va_end(argptr); | |
525 | return rv; | |
dd0ef332 | 526 | } |
d1f6e2cf VS |
527 | #endif // !wxUSE_UTF8_LOCALE_ONLY |
528 | ||
529 | #if wxUSE_UNICODE_UTF8 | |
530 | int wxDoSnprintfUtf8(wchar_t *str, size_t size, const char *format, ...) | |
531 | { | |
532 | va_list argptr; | |
533 | va_start(argptr, format); | |
534 | ||
535 | int rv = wxVsnprintf(str, size, format, argptr); | |
536 | ||
537 | va_end(argptr); | |
538 | return rv; | |
539 | } | |
540 | #endif // wxUSE_UNICODE_UTF8 | |
541 | ||
542 | #endif // wxUSE_UNICODE | |
dd0ef332 | 543 | |
2523e9b7 VS |
544 | |
545 | #ifdef HAVE_BROKEN_VSNPRINTF_DECL | |
546 | #define vsnprintf wx_fixed_vsnprintf | |
547 | #endif | |
548 | ||
549 | #if wxUSE_UNICODE | |
d1f6e2cf | 550 | |
80f8355d VZ |
551 | namespace |
552 | { | |
553 | ||
d1f6e2cf | 554 | #if !wxUSE_UTF8_LOCALE_ONLY |
2dab040a | 555 | int wxInternalConvertStringToBuf(const wxString& s, char *out, size_t outsize) |
dd0ef332 | 556 | { |
2523e9b7 VS |
557 | const wxWX2WCbuf buf = s.wc_str(); |
558 | ||
559 | size_t len = wxConvLibc.FromWChar(out, outsize, buf); | |
560 | if ( len != wxCONV_FAILED ) | |
561 | return len-1; | |
562 | else | |
563 | return wxConvLibc.FromWChar(NULL, 0, buf); | |
dd0ef332 | 564 | } |
d1f6e2cf | 565 | #endif // !wxUSE_UTF8_LOCALE_ONLY |
dd0ef332 | 566 | |
2523e9b7 | 567 | #if wxUSE_UNICODE_UTF8 |
2dab040a | 568 | int wxInternalConvertStringToBuf(const wxString& s, wchar_t *out, size_t outsize) |
dd0ef332 | 569 | { |
2523e9b7 VS |
570 | const wxWX2WCbuf buf(s.wc_str()); |
571 | size_t len = wxWcslen(buf); | |
572 | if ( outsize > len ) | |
573 | memcpy(out, buf, (len+1) * sizeof(wchar_t)); | |
574 | // else: not enough space | |
575 | return len; | |
dd0ef332 | 576 | } |
d1f6e2cf | 577 | #endif // wxUSE_UNICODE_UTF8 |
dd0ef332 | 578 | |
80f8355d VZ |
579 | } // anonymous namespace |
580 | ||
2523e9b7 VS |
581 | template<typename T> |
582 | static size_t PrintfViaString(T *out, size_t outsize, | |
583 | const wxString& format, va_list argptr) | |
dd0ef332 | 584 | { |
2523e9b7 | 585 | wxString s; |
c6255a6e | 586 | s.PrintfV(format, argptr); |
2523e9b7 | 587 | |
2dab040a | 588 | return wxInternalConvertStringToBuf(s, out, outsize); |
dd0ef332 | 589 | } |
2523e9b7 | 590 | #endif // wxUSE_UNICODE |
dd0ef332 | 591 | |
2523e9b7 | 592 | int wxVsprintf(char *str, const wxString& format, va_list argptr) |
dd0ef332 | 593 | { |
2523e9b7 | 594 | #if wxUSE_UTF8_LOCALE_ONLY |
c6255a6e | 595 | return vsprintf(str, format.wx_str(), argptr); |
2523e9b7 VS |
596 | #else |
597 | #if wxUSE_UNICODE_UTF8 | |
598 | if ( wxLocaleIsUtf8 ) | |
c6255a6e | 599 | return vsprintf(str, format.wx_str(), argptr); |
2523e9b7 VS |
600 | else |
601 | #endif | |
602 | #if wxUSE_UNICODE | |
c6255a6e | 603 | return PrintfViaString(str, wxNO_LEN, format, argptr); |
2523e9b7 | 604 | #else |
52de37c7 | 605 | return wxCRT_VsprintfA(str, format.mb_str(), argptr); |
2523e9b7 VS |
606 | #endif |
607 | #endif | |
dd0ef332 | 608 | } |
dd0ef332 | 609 | |
2523e9b7 VS |
610 | #if wxUSE_UNICODE |
611 | int wxVsprintf(wchar_t *str, const wxString& format, va_list argptr) | |
dd0ef332 | 612 | { |
2523e9b7 | 613 | #if wxUSE_UNICODE_WCHAR |
52de37c7 | 614 | return wxCRT_VsprintfW(str, format.wc_str(), argptr); |
2523e9b7 VS |
615 | #else // wxUSE_UNICODE_UTF8 |
616 | #if !wxUSE_UTF8_LOCALE_ONLY | |
617 | if ( !wxLocaleIsUtf8 ) | |
52de37c7 | 618 | return wxCRT_VsprintfW(str, format.wc_str(), argptr); |
2523e9b7 VS |
619 | else |
620 | #endif | |
c6255a6e | 621 | return PrintfViaString(str, wxNO_LEN, format, argptr); |
2523e9b7 | 622 | #endif // wxUSE_UNICODE_UTF8 |
dd0ef332 | 623 | } |
2523e9b7 | 624 | #endif // wxUSE_UNICODE |
dd0ef332 | 625 | |
2523e9b7 VS |
626 | int wxVsnprintf(char *str, size_t size, const wxString& format, va_list argptr) |
627 | { | |
628 | int rv; | |
2523e9b7 | 629 | #if wxUSE_UTF8_LOCALE_ONLY |
52de37c7 | 630 | rv = wxCRT_VsnprintfA(str, size, format.wx_str(), argptr); |
2523e9b7 VS |
631 | #else |
632 | #if wxUSE_UNICODE_UTF8 | |
633 | if ( wxLocaleIsUtf8 ) | |
52de37c7 | 634 | rv = wxCRT_VsnprintfA(str, size, format.wx_str(), argptr); |
2523e9b7 VS |
635 | else |
636 | #endif | |
637 | #if wxUSE_UNICODE | |
638 | { | |
639 | // NB: if this code is called, then wxString::PrintV() would use the | |
640 | // wchar_t* version of wxVsnprintf(), so it's safe to use PrintV() | |
641 | // from here | |
c6255a6e | 642 | rv = PrintfViaString(str, size, format, argptr); |
2523e9b7 VS |
643 | } |
644 | #else | |
52de37c7 | 645 | rv = wxCRT_VsnprintfA(str, size, format.mb_str(), argptr); |
2523e9b7 VS |
646 | #endif |
647 | #endif | |
648 | ||
649 | // VsnprintfTestCase reveals that glibc's implementation of vswprintf | |
650 | // doesn't nul terminate on truncation. | |
651 | str[size - 1] = 0; | |
652 | ||
653 | return rv; | |
654 | } | |
655 | ||
656 | #if wxUSE_UNICODE | |
657 | int wxVsnprintf(wchar_t *str, size_t size, const wxString& format, va_list argptr) | |
658 | { | |
659 | int rv; | |
2523e9b7 VS |
660 | |
661 | #if wxUSE_UNICODE_WCHAR | |
52de37c7 | 662 | rv = wxCRT_VsnprintfW(str, size, format.wc_str(), argptr); |
2523e9b7 VS |
663 | #else // wxUSE_UNICODE_UTF8 |
664 | #if !wxUSE_UTF8_LOCALE_ONLY | |
665 | if ( !wxLocaleIsUtf8 ) | |
52de37c7 | 666 | rv = wxCRT_VsnprintfW(str, size, format.wc_str(), argptr); |
2523e9b7 VS |
667 | else |
668 | #endif | |
669 | { | |
670 | // NB: if this code is called, then wxString::PrintV() would use the | |
671 | // char* version of wxVsnprintf(), so it's safe to use PrintV() | |
672 | // from here | |
c6255a6e | 673 | rv = PrintfViaString(str, size, format, argptr); |
2523e9b7 VS |
674 | } |
675 | #endif // wxUSE_UNICODE_UTF8 | |
676 | ||
677 | // VsnprintfTestCase reveals that glibc's implementation of vswprintf | |
678 | // doesn't nul terminate on truncation. | |
679 | str[size - 1] = 0; | |
680 | ||
681 | return rv; | |
682 | } | |
683 | #endif // wxUSE_UNICODE | |
dd0ef332 VS |
684 | |
685 | #if wxUSE_WCHAR_T | |
686 | ||
687 | // ---------------------------------------------------------------------------- | |
688 | // ctype.h stuff (currently unused) | |
689 | // ---------------------------------------------------------------------------- | |
690 | ||
dd0ef332 VS |
691 | #ifdef wxNEED_WX_MBSTOWCS |
692 | ||
693 | WXDLLEXPORT size_t wxMbstowcs (wchar_t * out, const char * in, size_t outlen) | |
694 | { | |
695 | if (!out) | |
696 | { | |
697 | size_t outsize = 0; | |
698 | while(*in++) | |
699 | outsize++; | |
700 | return outsize; | |
701 | } | |
702 | ||
703 | const char* origin = in; | |
704 | ||
705 | while (outlen-- && *in) | |
706 | { | |
707 | *out++ = (wchar_t) *in++; | |
708 | } | |
709 | ||
710 | *out = '\0'; | |
711 | ||
712 | return in - origin; | |
713 | } | |
714 | ||
715 | WXDLLEXPORT size_t wxWcstombs (char * out, const wchar_t * in, size_t outlen) | |
716 | { | |
717 | if (!out) | |
718 | { | |
719 | size_t outsize = 0; | |
720 | while(*in++) | |
721 | outsize++; | |
722 | return outsize; | |
723 | } | |
724 | ||
725 | const wchar_t* origin = in; | |
726 | ||
727 | while (outlen-- && *in) | |
728 | { | |
729 | *out++ = (char) *in++; | |
730 | } | |
731 | ||
732 | *out = '\0'; | |
733 | ||
734 | return in - origin; | |
735 | } | |
736 | ||
737 | #endif // wxNEED_WX_MBSTOWCS | |
738 | ||
52de37c7 VS |
739 | #ifndef wxCRT_StrdupA |
740 | WXDLLEXPORT char *wxCRT_StrdupA(const char *s) | |
dd0ef332 VS |
741 | { |
742 | return strcpy((char *)malloc(strlen(s) + 1), s); | |
743 | } | |
52de37c7 | 744 | #endif // wxCRT_StrdupA |
dd0ef332 | 745 | |
52de37c7 VS |
746 | #ifndef wxCRT_StrdupW |
747 | WXDLLEXPORT wchar_t * wxCRT_StrdupW(const wchar_t *pwz) | |
dd0ef332 VS |
748 | { |
749 | size_t size = (wxWcslen(pwz) + 1) * sizeof(wchar_t); | |
750 | wchar_t *ret = (wchar_t *) malloc(size); | |
751 | memcpy(ret, pwz, size); | |
752 | return ret; | |
753 | } | |
52de37c7 | 754 | #endif // wxCRT_StrdupW |
dd0ef332 | 755 | |
52de37c7 VS |
756 | #ifndef wxCRT_StricmpA |
757 | int WXDLLEXPORT wxCRT_StricmpA(const char *psz1, const char *psz2) | |
758 | { | |
759 | register char c1, c2; | |
760 | do { | |
761 | c1 = wxTolower(*psz1++); | |
762 | c2 = wxTolower(*psz2++); | |
763 | } while ( c1 && (c1 == c2) ); | |
764 | return c1 - c2; | |
765 | } | |
766 | #endif // !defined(wxCRT_StricmpA) | |
dd0ef332 | 767 | |
52de37c7 VS |
768 | #ifndef wxCRT_StricmpW |
769 | int WXDLLEXPORT wxCRT_StricmpW(const wchar_t *psz1, const wchar_t *psz2) | |
dd0ef332 | 770 | { |
52de37c7 | 771 | register wchar_t c1, c2; |
dd0ef332 VS |
772 | do { |
773 | c1 = wxTolower(*psz1++); | |
774 | c2 = wxTolower(*psz2++); | |
775 | } while ( c1 && (c1 == c2) ); | |
776 | return c1 - c2; | |
777 | } | |
52de37c7 | 778 | #endif // !defined(wxCRT_StricmpW) |
dd0ef332 | 779 | |
52de37c7 VS |
780 | #ifndef wxCRT_StrnicmpA |
781 | int WXDLLEXPORT wxCRT_StrnicmpA(const char *s1, const char *s2, size_t n) | |
dd0ef332 VS |
782 | { |
783 | // initialize the variables just to suppress stupid gcc warning | |
52de37c7 | 784 | register char c1 = 0, c2 = 0; |
dd0ef332 VS |
785 | while (n && ((c1 = wxTolower(*s1)) == (c2 = wxTolower(*s2)) ) && c1) n--, s1++, s2++; |
786 | if (n) { | |
787 | if (c1 < c2) return -1; | |
788 | if (c1 > c2) return 1; | |
789 | } | |
790 | return 0; | |
791 | } | |
52de37c7 | 792 | #endif // !defined(wxCRT_StrnicmpA) |
cb352236 | 793 | |
52de37c7 VS |
794 | #ifndef wxCRT_StrnicmpW |
795 | int WXDLLEXPORT wxCRT_StrnicmpW(const wchar_t *s1, const wchar_t *s2, size_t n) | |
cb352236 | 796 | { |
52de37c7 VS |
797 | // initialize the variables just to suppress stupid gcc warning |
798 | register wchar_t c1 = 0, c2 = 0; | |
799 | while (n && ((c1 = wxTolower(*s1)) == (c2 = wxTolower(*s2)) ) && c1) n--, s1++, s2++; | |
800 | if (n) { | |
801 | if (c1 < c2) return -1; | |
802 | if (c1 > c2) return 1; | |
803 | } | |
804 | return 0; | |
dd0ef332 | 805 | } |
52de37c7 | 806 | #endif // !defined(wxCRT_StrnicmpW) |
dd0ef332 VS |
807 | |
808 | // ---------------------------------------------------------------------------- | |
809 | // string.h functions | |
810 | // ---------------------------------------------------------------------------- | |
811 | ||
410390cf VS |
812 | // this (and wxCRT_StrncmpW below) are extern "C" because they are needed |
813 | // by regex code, the rest isn't needed, so it's not declared as extern "C" | |
814 | #ifndef wxCRT_StrlenW | |
815 | extern "C" WXDLLEXPORT size_t wxCRT_StrlenW(const wchar_t *s) | |
dd0ef332 VS |
816 | { |
817 | size_t n = 0; | |
818 | while ( *s++ ) | |
819 | n++; | |
820 | ||
821 | return n; | |
822 | } | |
52de37c7 | 823 | #endif |
dd0ef332 | 824 | |
410390cf VS |
825 | // ---------------------------------------------------------------------------- |
826 | // stdlib.h functions | |
827 | // ---------------------------------------------------------------------------- | |
dd0ef332 | 828 | |
52de37c7 VS |
829 | #ifndef wxCRT_GetenvW |
830 | wchar_t* WXDLLEXPORT wxCRT_GetenvW(const wchar_t *name) | |
dd0ef332 | 831 | { |
dd0ef332 VS |
832 | // NB: buffer returned by getenv() is allowed to be overwritten next |
833 | // time getenv() is called, so it is OK to use static string | |
834 | // buffer to hold the data. | |
f62262aa VS |
835 | static wxWCharBuffer value((wchar_t*)NULL); |
836 | value = wxConvLibc.cMB2WC(getenv(wxConvLibc.cWC2MB(name))); | |
dd0ef332 | 837 | return value.data(); |
dd0ef332 | 838 | } |
52de37c7 | 839 | #endif // !wxCRT_GetenvW |
dd0ef332 | 840 | |
52de37c7 | 841 | #ifndef wxCRT_StrftimeW |
dd0ef332 | 842 | WXDLLEXPORT size_t |
52de37c7 | 843 | wxCRT_StrftimeW(wchar_t *s, size_t maxsize, const wchar_t *fmt, const struct tm *tm) |
dd0ef332 VS |
844 | { |
845 | if ( !maxsize ) | |
846 | return 0; | |
847 | ||
848 | wxCharBuffer buf(maxsize); | |
849 | ||
850 | wxCharBuffer bufFmt(wxConvLibc.cWX2MB(fmt)); | |
851 | if ( !bufFmt ) | |
852 | return 0; | |
853 | ||
854 | size_t ret = strftime(buf.data(), maxsize, bufFmt, tm); | |
855 | if ( !ret ) | |
856 | return 0; | |
857 | ||
858 | wxWCharBuffer wbuf = wxConvLibc.cMB2WX(buf); | |
859 | if ( !wbuf ) | |
860 | return 0; | |
861 | ||
52de37c7 VS |
862 | wxCRT_StrncpyW(s, wbuf, maxsize); |
863 | return wxCRT_StrlenW(s); | |
dd0ef332 | 864 | } |
52de37c7 | 865 | #endif // !wxCRT_StrftimeW |
dd0ef332 VS |
866 | |
867 | #endif // wxUSE_WCHAR_T | |
868 | ||
52de37c7 VS |
869 | template<typename T> |
870 | static wxULongLong_t | |
871 | wxCRT_StrtoullBase(const T* nptr, T** endptr, int base, T* sign) | |
17482893 VZ |
872 | { |
873 | wxULongLong_t sum = 0; | |
874 | wxString wxstr(nptr); | |
875 | wxString::const_iterator i = wxstr.begin(); | |
876 | wxString::const_iterator end = wxstr.end(); | |
877 | ||
878 | // Skip spaces | |
879 | while ( i != end && wxIsspace(*i) ) i++; | |
880 | ||
881 | // Starts with sign? | |
882 | *sign = wxT(' '); | |
883 | if ( i != end ) | |
884 | { | |
52de37c7 | 885 | T c = *i; |
17482893 VZ |
886 | if ( c == wxT('+') || c == wxT('-') ) |
887 | { | |
888 | *sign = c; | |
889 | i++; | |
890 | } | |
891 | } | |
892 | ||
893 | // Starts with 0x? | |
894 | if ( i != end && *i == wxT('0') ) | |
895 | { | |
896 | i++; | |
897 | if ( i != end ) | |
898 | { | |
899 | if ( *i == wxT('x') && (base == 16 || base == 0) ) | |
900 | { | |
901 | base = 16; | |
902 | i++; | |
903 | } | |
904 | else | |
905 | { | |
906 | if ( endptr ) | |
52de37c7 | 907 | *endptr = (T*) nptr; |
17482893 VZ |
908 | wxSET_ERRNO(EINVAL); |
909 | return sum; | |
910 | } | |
911 | } | |
912 | else | |
913 | i--; | |
914 | } | |
915 | ||
916 | if ( base == 0 ) | |
917 | base = 10; | |
918 | ||
919 | for ( ; i != end; i++ ) | |
920 | { | |
921 | unsigned int n; | |
922 | ||
52de37c7 | 923 | T c = *i; |
17482893 VZ |
924 | if ( c >= wxT('0') ) |
925 | { | |
926 | if ( c <= wxT('9') ) | |
927 | n = c - wxT('0'); | |
928 | else | |
929 | n = wxTolower(c) - wxT('a') + 10; | |
930 | } | |
931 | else | |
932 | break; | |
933 | ||
934 | if ( n >= (unsigned int)base ) | |
935 | // Invalid character (for this base) | |
936 | break; | |
937 | ||
938 | wxULongLong_t prevsum = sum; | |
939 | sum = (sum * base) + n; | |
940 | ||
941 | if ( sum < prevsum ) | |
942 | { | |
943 | wxSET_ERRNO(ERANGE); | |
944 | break; | |
945 | } | |
946 | } | |
947 | ||
948 | if ( endptr ) | |
949 | { | |
52de37c7 | 950 | *endptr = (T*)(nptr + (i - wxstr.begin())); |
17482893 VZ |
951 | } |
952 | ||
953 | return sum; | |
954 | } | |
955 | ||
52de37c7 VS |
956 | template<typename T> |
957 | static wxULongLong_t wxCRT_DoStrtoull(const T* nptr, T** endptr, int base) | |
17482893 | 958 | { |
52de37c7 VS |
959 | T sign; |
960 | wxULongLong_t uval = wxCRT_StrtoullBase(nptr, endptr, base, &sign); | |
17482893 VZ |
961 | |
962 | if ( sign == wxT('-') ) | |
963 | { | |
964 | wxSET_ERRNO(ERANGE); | |
965 | uval = 0; | |
966 | } | |
967 | ||
968 | return uval; | |
969 | } | |
970 | ||
52de37c7 VS |
971 | template<typename T> |
972 | static wxLongLong_t wxCRT_DoStrtoll(const T* nptr, T** endptr, int base) | |
17482893 | 973 | { |
52de37c7 VS |
974 | T sign; |
975 | wxULongLong_t uval = wxCRT_StrtoullBase(nptr, endptr, base, &sign); | |
17482893 VZ |
976 | wxLongLong_t val = 0; |
977 | ||
978 | if ( sign == wxT('-') ) | |
979 | { | |
980 | if ( uval <= wxULL(wxINT64_MAX+1) ) | |
981 | { | |
982 | if ( uval == wxULL(wxINT64_MAX+1)) | |
983 | val = -((wxLongLong_t)wxINT64_MAX) - 1; | |
984 | else | |
985 | val = -((wxLongLong_t)uval); | |
986 | } | |
987 | else | |
988 | { | |
989 | wxSET_ERRNO(ERANGE); | |
990 | } | |
991 | } | |
992 | else if ( uval <= wxINT64_MAX ) | |
993 | { | |
994 | val = uval; | |
995 | } | |
996 | else | |
997 | { | |
998 | wxSET_ERRNO(ERANGE); | |
999 | } | |
1000 | ||
1001 | return val; | |
1002 | } | |
52de37c7 VS |
1003 | |
1004 | #ifndef wxCRT_StrtollA | |
1005 | wxLongLong_t wxCRT_StrtollA(const char* nptr, char** endptr, int base) | |
1006 | { return wxCRT_DoStrtoll(nptr, endptr, base); } | |
1007 | #endif | |
1008 | #ifndef wxCRT_StrtollW | |
1009 | wxLongLong_t wxCRT_StrtollW(const wchar_t* nptr, wchar_t** endptr, int base) | |
1010 | { return wxCRT_DoStrtoll(nptr, endptr, base); } | |
1011 | #endif | |
1012 | ||
1013 | #ifndef wxCRT_StrtoullA | |
1014 | wxULongLong_t wxCRT_StrtoullA(const char* nptr, char** endptr, int base) | |
1015 | { return wxCRT_DoStrtoull(nptr, endptr, base); } | |
1016 | #endif | |
1017 | #ifndef wxCRT_StrtoullW | |
1018 | wxULongLong_t wxCRT_StrtoullW(const wchar_t* nptr, wchar_t** endptr, int base) | |
1019 | { return wxCRT_DoStrtoull(nptr, endptr, base); } | |
1020 | #endif | |
17482893 | 1021 | |
dd0ef332 VS |
1022 | // ---------------------------------------------------------------------------- |
1023 | // functions which we may need even if !wxUSE_WCHAR_T | |
1024 | // ---------------------------------------------------------------------------- | |
1025 | ||
52de37c7 VS |
1026 | template<typename T> |
1027 | static T *wxCRT_DoStrtok(T *psz, const T *delim, T **save_ptr) | |
dd0ef332 VS |
1028 | { |
1029 | if (!psz) | |
1030 | { | |
1031 | psz = *save_ptr; | |
1032 | if ( !psz ) | |
1033 | return NULL; | |
1034 | } | |
1035 | ||
1036 | psz += wxStrspn(psz, delim); | |
1037 | if (!*psz) | |
1038 | { | |
52de37c7 VS |
1039 | *save_ptr = (T *)NULL; |
1040 | return (T *)NULL; | |
dd0ef332 VS |
1041 | } |
1042 | ||
52de37c7 | 1043 | T *ret = psz; |
dd0ef332 VS |
1044 | psz = wxStrpbrk(psz, delim); |
1045 | if (!psz) | |
1046 | { | |
52de37c7 | 1047 | *save_ptr = (T*)NULL; |
dd0ef332 VS |
1048 | } |
1049 | else | |
1050 | { | |
1051 | *psz = wxT('\0'); | |
1052 | *save_ptr = psz + 1; | |
1053 | } | |
1054 | ||
1055 | return ret; | |
1056 | } | |
1057 | ||
52de37c7 VS |
1058 | #ifndef wxCRT_StrtokA |
1059 | char *wxCRT_StrtokA(char *psz, const char *delim, char **save_ptr) | |
1060 | { return wxCRT_DoStrtok(psz, delim, save_ptr); } | |
1061 | #endif | |
1062 | #ifndef wxCRT_StrtokW | |
1063 | wchar_t *wxCRT_StrtokW(wchar_t *psz, const wchar_t *delim, wchar_t **save_ptr) | |
1064 | { return wxCRT_DoStrtok(psz, delim, save_ptr); } | |
1065 | #endif | |
dd0ef332 VS |
1066 | |
1067 | // ---------------------------------------------------------------------------- | |
1068 | // missing C RTL functions | |
1069 | // ---------------------------------------------------------------------------- | |
1070 | ||
1071 | #ifdef wxNEED_STRDUP | |
1072 | ||
1073 | char *strdup(const char *s) | |
1074 | { | |
1075 | char *dest = (char*) malloc( strlen( s ) + 1 ) ; | |
1076 | if ( dest ) | |
1077 | strcpy( dest , s ) ; | |
1078 | return dest ; | |
1079 | } | |
1080 | #endif // wxNEED_STRDUP | |
1081 | ||
1082 | #if defined(__WXWINCE__) && (_WIN32_WCE <= 211) | |
1083 | ||
1084 | void *calloc( size_t num, size_t size ) | |
1085 | { | |
1086 | void** ptr = (void **)malloc(num * size); | |
1087 | memset( ptr, 0, num * size); | |
1088 | return ptr; | |
1089 | } | |
1090 | ||
1091 | #endif // __WXWINCE__ <= 211 | |
1092 | ||
1093 | #ifdef __WXWINCE__ | |
52de37c7 | 1094 | int wxCRT_RemoveW(const wchar_t *path) |
dd0ef332 VS |
1095 | { |
1096 | return ::DeleteFile(path) == 0; | |
1097 | } | |
52de37c7 VS |
1098 | #endif |
1099 | ||
1100 | #ifndef wxCRT_TmpnamW | |
1101 | wchar_t *wxCRT_TmpnamW(wchar_t *s) | |
1102 | { | |
1103 | // tmpnam_r() returns NULL if s=NULL, do the same | |
1104 | wxCHECK_MSG( s, NULL, "wxTmpnam must be called with a buffer" ); | |
dd0ef332 | 1105 | |
52de37c7 VS |
1106 | #ifndef L_tmpnam |
1107 | #define L_tmpnam 1024 | |
dd0ef332 | 1108 | #endif |
52de37c7 VS |
1109 | wxCharBuffer buf(L_tmpnam); |
1110 | tmpnam(buf.data()); | |
1111 | ||
1112 | wxConvLibc.ToWChar(s, L_tmpnam+1, buf.data()); | |
1113 | return s; | |
1114 | } | |
1115 | #endif // !wxCRT_TmpnamW | |
cb352236 VS |
1116 | |
1117 | ||
52de37c7 | 1118 | // ============================================================================ |
cb352236 | 1119 | // wxLocaleIsUtf8 |
52de37c7 | 1120 | // ============================================================================ |
cb352236 VS |
1121 | |
1122 | #if wxUSE_UNICODE_UTF8 | |
1123 | ||
1124 | #if !wxUSE_UTF8_LOCALE_ONLY | |
1125 | bool wxLocaleIsUtf8 = false; // the safer setting if not known | |
1126 | #endif | |
1127 | ||
1128 | static bool wxIsLocaleUtf8() | |
1129 | { | |
1130 | // NB: we intentionally don't use wxLocale::GetSystemEncodingName(), | |
1131 | // because a) it may be unavailable in some builds and b) has slightly | |
1132 | // different semantics (default locale instead of current) | |
1133 | ||
1134 | #if defined(HAVE_LANGINFO_H) && defined(CODESET) | |
1135 | // GNU libc provides current character set this way (this conforms to | |
1136 | // Unix98) | |
1137 | const char *charset = nl_langinfo(CODESET); | |
1138 | if ( charset ) | |
1139 | { | |
1140 | // "UTF-8" is used by modern glibc versions, but test other variants | |
1141 | // as well, just in case: | |
e40dfb3a VS |
1142 | if ( strcmp(charset, "UTF-8") == 0 || |
1143 | strcmp(charset, "utf-8") == 0 || | |
1144 | strcmp(charset, "UTF8") == 0 || | |
1145 | strcmp(charset, "utf8") == 0 ) | |
1146 | { | |
1147 | return true; | |
1148 | } | |
cb352236 | 1149 | } |
cb352236 | 1150 | #endif |
e40dfb3a VS |
1151 | |
1152 | // check if we're running under the "C" locale: it is 7bit subset | |
1153 | // of UTF-8, so it can be safely used with the UTF-8 build: | |
1154 | const char *lc_ctype = setlocale(LC_CTYPE, NULL); | |
1155 | if ( lc_ctype && | |
1156 | (strcmp(lc_ctype, "C") == 0 || strcmp(lc_ctype, "POSIX") == 0) ) | |
cb352236 | 1157 | { |
e40dfb3a | 1158 | return true; |
cb352236 | 1159 | } |
e40dfb3a VS |
1160 | |
1161 | // we don't know what charset libc is using, so assume the worst | |
1162 | // to be safe: | |
1163 | return false; | |
cb352236 VS |
1164 | } |
1165 | ||
1166 | void wxUpdateLocaleIsUtf8() | |
1167 | { | |
1168 | #if wxUSE_UTF8_LOCALE_ONLY | |
1169 | if ( !wxIsLocaleUtf8() ) | |
1170 | { | |
1171 | wxLogFatalError(_T("This program requires UTF-8 locale to run.")); | |
1172 | } | |
1173 | #else // !wxUSE_UTF8_LOCALE_ONLY | |
1174 | wxLocaleIsUtf8 = wxIsLocaleUtf8(); | |
1175 | #endif | |
1176 | } | |
1177 | ||
c49f8879 VS |
1178 | #endif // wxUSE_UNICODE_UTF8 |
1179 | ||
1180 | // ============================================================================ | |
1181 | // wx wrappers for CRT functions | |
1182 | // ============================================================================ | |
1183 | ||
52de37c7 | 1184 | #if wxUSE_UNICODE_WCHAR |
19984725 | 1185 | #define CALL_ANSI_OR_UNICODE(return_kw, callA, callW) return_kw callW |
52de37c7 | 1186 | #elif wxUSE_UNICODE_UTF8 && !wxUSE_UTF8_LOCALE_ONLY |
19984725 VS |
1187 | #define CALL_ANSI_OR_UNICODE(return_kw, callA, callW) \ |
1188 | return_kw wxLocaleIsUtf8 ? callA : callW | |
52de37c7 | 1189 | #else // ANSI or UTF8 only |
19984725 | 1190 | #define CALL_ANSI_OR_UNICODE(return_kw, callA, callW) return_kw callA |
52de37c7 VS |
1191 | #endif |
1192 | ||
1193 | int wxPuts(const wxString& s) | |
1194 | { | |
19984725 VS |
1195 | CALL_ANSI_OR_UNICODE(return, |
1196 | wxCRT_PutsA(s.mb_str()), | |
52de37c7 VS |
1197 | wxCRT_PutsW(s.wc_str())); |
1198 | } | |
1199 | ||
1200 | int wxFputs(const wxString& s, FILE *stream) | |
1201 | { | |
19984725 VS |
1202 | CALL_ANSI_OR_UNICODE(return, |
1203 | wxCRT_FputsA(s.mb_str(), stream), | |
52de37c7 VS |
1204 | wxCRT_FputsW(s.wc_str(), stream)); |
1205 | } | |
1206 | ||
1207 | int wxFputc(const wxUniChar& c, FILE *stream) | |
1208 | { | |
1209 | #if !wxUSE_UNICODE // FIXME-UTF8: temporary, remove this with ANSI build | |
1210 | return wxCRT_FputcA((char)c, stream); | |
1211 | #else | |
19984725 VS |
1212 | CALL_ANSI_OR_UNICODE(return, |
1213 | wxCRT_FputsA(c.AsUTF8(), stream), | |
52de37c7 VS |
1214 | wxCRT_FputcW((wchar_t)c, stream)); |
1215 | #endif | |
1216 | } | |
1217 | ||
1218 | void wxPerror(const wxString& s) | |
1219 | { | |
1220 | #ifdef wxCRT_PerrorW | |
19984725 VS |
1221 | CALL_ANSI_OR_UNICODE(wxEMPTY_PARAMETER_VALUE, |
1222 | wxCRT_PerrorA(s.mb_str()), | |
1223 | wxCRT_PerrorW(s.wc_str())); | |
52de37c7 VS |
1224 | #else |
1225 | wxCRT_PerrorA(s.mb_str()); | |
1226 | #endif | |
1227 | } | |
1228 | ||
1229 | wchar_t *wxFgets(wchar_t *s, int size, FILE *stream) | |
1230 | { | |
1231 | wxCHECK_MSG( s, NULL, "empty buffer passed to wxFgets()" ); | |
1232 | ||
1233 | wxCharBuffer buf(size - 1); | |
1234 | // FIXME: this reads too little data if wxConvLibc uses UTF-8 ('size' wide | |
1235 | // characters may be encoded by up to 'size'*4 bytes), but what | |
1236 | // else can we do? | |
1237 | if ( wxFgets(buf.data(), size, stream) == NULL ) | |
1238 | return NULL; | |
1239 | ||
1240 | if ( wxConvLibc.ToWChar(s, size, buf, wxNO_LEN) == wxCONV_FAILED ) | |
1241 | return NULL; | |
1242 | ||
1243 | return s; | |
1244 | } | |
c49f8879 VS |
1245 | |
1246 | // ---------------------------------------------------------------------------- | |
1247 | // wxScanf() and friends | |
1248 | // ---------------------------------------------------------------------------- | |
1249 | ||
eb6cb207 | 1250 | #ifndef __VISUALC__ |
c49f8879 VS |
1251 | int wxVsscanf(const char *str, const char *format, va_list ap) |
1252 | { return wxCRT_VsscanfA(str, format, ap); } | |
1253 | int wxVsscanf(const wchar_t *str, const wchar_t *format, va_list ap) | |
eb6cb207 | 1254 | { return wxCRT_VsscanfW(str, format, ap); } |
c49f8879 VS |
1255 | int wxVsscanf(const wxCharBuffer& str, const char *format, va_list ap) |
1256 | { return wxCRT_VsscanfA(str, format, ap); } | |
1257 | int wxVsscanf(const wxWCharBuffer& str, const wchar_t *format, va_list ap) | |
eb6cb207 | 1258 | { return wxCRT_VsscanfW(str, format, ap); } |
c49f8879 VS |
1259 | int wxVsscanf(const wxString& str, const char *format, va_list ap) |
1260 | { return wxCRT_VsscanfA(str.mb_str(), format, ap); } | |
1261 | int wxVsscanf(const wxString& str, const wchar_t *format, va_list ap) | |
eb6cb207 | 1262 | { return wxCRT_VsscanfW(str.wc_str(), format, ap); } |
c49f8879 VS |
1263 | int wxVsscanf(const wxCStrData& str, const char *format, va_list ap) |
1264 | { return wxCRT_VsscanfA(str.AsCharBuf(), format, ap); } | |
1265 | int wxVsscanf(const wxCStrData& str, const wchar_t *format, va_list ap) | |
eb6cb207 VS |
1266 | { return wxCRT_VsscanfW(str.AsWCharBuf(), format, ap); } |
1267 | #endif // !__VISUALC__ |