]>
git.saurik.com Git - wxWidgets.git/blob - src/common/wxcrt.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/wxcrt.cpp
3 // Purpose: wxChar CRT wrappers implementation
5 // Modified by: Ron Lee, Francesco Montorsi
8 // Copyright: (c) wxWidgets copyright
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
13 // headers, declarations, constants
14 // ===========================================================================
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
24 #include "wx/strconv.h" // wxMBConv::cWC2MB()
26 #define _ISOC9X_SOURCE 1 // to get vsscanf()
27 #define _BSD_SOURCE 1 // to still get strdup()
38 #include "wx/msw/wince/time.h"
40 #endif // !__WXPALMOS5__
43 #include "wx/string.h"
45 #include "wx/utils.h" // for wxMin and wxMax
49 #ifdef HAVE_LANGINFO_H
54 // there is no errno.h under CE apparently
55 #define wxSET_ERRNO(value)
59 #define wxSET_ERRNO(value) errno = value
62 #if defined(__MWERKS__) && __MSL__ >= 0x6000
67 #if defined(__DARWIN__)
68 #include "wx/mac/corefoundation/cfref.h"
69 #include <CoreFoundation/CFLocale.h>
70 #include "wx/mac/corefoundation/cfstring.h"
75 WXDLLIMPEXP_BASE
size_t wxMB2WC(wchar_t *buf
, const char *psz
, size_t n
)
77 // assume that we have mbsrtowcs() too if we have wcsrtombs()
80 memset(&mbstate
, 0, sizeof(mbstate_t));
85 if (n
) *buf
= wxT('\0');
89 return mbsrtowcs(buf
, &psz
, n
, &mbstate
);
91 return wxMbstowcs(buf
, psz
, n
);
95 // note that we rely on common (and required by Unix98 but unfortunately not
96 // C99) extension which allows to call mbs(r)towcs() with NULL output pointer
97 // to just get the size of the needed buffer -- this is needed as otherwise
98 // we have no idea about how much space we need and if the CRT doesn't
99 // support it (the only currently known example being Metrowerks, see
100 // wx/crt.h) we don't use its mbstowcs() at all
101 #ifdef HAVE_WCSRTOMBS
102 return mbsrtowcs((wchar_t *) NULL
, &psz
, 0, &mbstate
);
104 return wxMbstowcs((wchar_t *) NULL
, psz
, 0);
108 WXDLLIMPEXP_BASE
size_t wxWC2MB(char *buf
, const wchar_t *pwz
, size_t n
)
110 #ifdef HAVE_WCSRTOMBS
112 memset(&mbstate
, 0, sizeof(mbstate_t));
117 // glibc2.1 chokes on null input
121 #ifdef HAVE_WCSRTOMBS
122 return wcsrtombs(buf
, &pwz
, n
, &mbstate
);
124 return wxWcstombs(buf
, pwz
, n
);
128 #ifdef HAVE_WCSRTOMBS
129 return wcsrtombs((char *) NULL
, &pwz
, 0, &mbstate
);
131 return wxWcstombs((char *) NULL
, pwz
, 0);
134 #endif // wxUSE_WCHAR_T
136 WXDLLIMPEXP_BASE
bool wxOKlibc()
138 #if wxUSE_WCHAR_T && defined(__UNIX__) && defined(__GLIBC__) && !defined(__WINE__)
139 // glibc 2.0 uses UTF-8 even when it shouldn't
141 if ((MB_CUR_MAX
== 2) &&
142 (wxMB2WC(&res
, "\xdd\xa5", 1) == 1) &&
144 // this is UTF-8 allright, check whether that's what we want
145 char *cur_locale
= setlocale(LC_CTYPE
, NULL
);
146 if ((strlen(cur_locale
) < 4) ||
147 (strcasecmp(cur_locale
+ strlen(cur_locale
) - 4, "utf8")) ||
148 (strcasecmp(cur_locale
+ strlen(cur_locale
) - 5, "utf-8"))) {
149 // nope, don't use libc conversion
157 char* wxSetlocale(int category
, const char *locale
)
160 // FIXME-CE: there is no setlocale() in CE CRT, use SetThreadLocale()?
161 wxUnusedVar(category
);
165 #else // !__WXWINCE__
168 if ( locale
!= NULL
&& locale
[0] == 0 )
170 // the attempt to use newlocale(LC_ALL_MASK, "", NULL);
171 // here in order to deduce the language along the environment vars rules
172 // lead to strange crashes later...
174 // we have to emulate the behaviour under OS X
175 wxCFRef
<CFLocaleRef
> userLocaleRef(CFLocaleCopyCurrent());
176 wxCFStringRef
str(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleLanguageCode
)));
177 wxString langFull
= str
.AsString()+"_";
178 str
.reset(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleCountryCode
)));
179 langFull
+= str
.AsString();
180 rv
= setlocale(category
, langFull
.c_str());
183 rv
= setlocale(category
, locale
);
185 char *rv
= setlocale(category
, locale
);
187 if ( locale
!= NULL
/* setting locale, not querying */ &&
188 rv
/* call was successful */ )
190 wxUpdateLocaleIsUtf8();
193 #endif // __WXWINCE__/!__WXWINCE__
196 // ============================================================================
197 // printf() functions business
198 // ============================================================================
200 // special test mode: define all functions below even if we don't really need
201 // them to be able to test them
211 #define wxNEED_WPRINTF
213 int wxCRT_VfprintfW( FILE *stream
, const wchar_t *format
, va_list argptr
);
217 /* Digital Mars adds count to _stprintf (C99) so convert */
218 int wxCRT_SprintfW (wchar_t * __RESTRICT s
, const wchar_t * __RESTRICT format
, ... )
222 va_start( arglist
, format
);
223 int iLen
= swprintf ( s
, -1, format
, arglist
);
229 // ----------------------------------------------------------------------------
230 // implement the standard IO functions for wide char if libc doesn't have them
231 // ----------------------------------------------------------------------------
234 int wxCRT_FputsW(const wchar_t *ws
, FILE *stream
)
236 wxCharBuffer
buf(wxConvLibc
.cWC2MB(ws
));
240 // counting the number of wide characters written isn't worth the trouble,
241 // simply distinguish between ok and error
242 return wxCRT_FputsA(buf
, stream
) == -1 ? -1 : 0;
244 #endif // !wxCRT_FputsW
247 int wxCRT_PutsW(const wchar_t *ws
)
249 int rc
= wxCRT_FputsW(ws
, stdout
);
252 if ( wxCRT_FputsW(L
"\n", stdout
) == -1 )
260 #endif // !wxCRT_PutsW
263 int /* not wint_t */ wxCRT_FputcW(wchar_t wc
, FILE *stream
)
265 wchar_t ws
[2] = { wc
, L
'\0' };
267 return wxCRT_FputsW(ws
, stream
);
269 #endif // !wxCRT_FputcW
271 // NB: we only implement va_list functions here, the ones taking ... are
272 // defined below for wxNEED_PRINTF_CONVERSION case anyhow and we reuse
273 // the definitions there to avoid duplicating them here
274 #ifdef wxNEED_WPRINTF
276 // TODO: implement the scanf() functions
277 static int vwscanf(const wchar_t *format
, va_list argptr
)
279 wxFAIL_MSG( _T("TODO") );
284 static int vswscanf(const wchar_t *ws
, const wchar_t *format
, va_list argptr
)
286 // The best we can do without proper Unicode support in glibc is to
287 // convert the strings into MB representation and run ANSI version
288 // of the function. This doesn't work with %c and %s because of difference
289 // in size of char and wchar_t, though.
291 wxCHECK_MSG( wxStrstr(format
, _T("%s")) == NULL
, -1,
292 _T("incomplete vswscanf implementation doesn't allow %s") );
293 wxCHECK_MSG( wxStrstr(format
, _T("%c")) == NULL
, -1,
294 _T("incomplete vswscanf implementation doesn't allow %c") );
296 return vsscanf(wxConvLibc
.cWX2MB(ws
), wxConvLibc
.cWX2MB(format
), argptr
);
299 static int vfwscanf(FILE *stream
, const wchar_t *format
, va_list argptr
)
301 wxFAIL_MSG( _T("TODO") );
306 #define vswprintf wxCRT_VsnprintfW
308 static int vfwprintf(FILE *stream
, const wchar_t *format
, va_list argptr
)
311 int rc
= s
.PrintfV(format
, argptr
);
315 // we can't do much better without Unicode support in libc...
316 if ( fprintf(stream
, "%s", (const char*)s
.mb_str() ) == -1 )
323 static int vwprintf(const wchar_t *format
, va_list argptr
)
325 return wxCRT_VfprintfW(stdout
, format
, argptr
);
328 #endif // wxNEED_WPRINTF
330 // ----------------------------------------------------------------------------
331 // wxPrintf(), wxScanf() and relatives
332 // ----------------------------------------------------------------------------
334 // FIXME-UTF8: do format conversion using (modified) wxFormatConverter in
335 // template wrappers, not here; note that it will needed to
336 // translate all forms of string specifiers to %(l)s for wxPrintf(),
337 // but it only should do what it did in 2.8 for wxScanf()!
339 #ifndef wxCRT_PrintfW
340 int wxCRT_PrintfW( const wchar_t *format
, ... )
343 va_start(argptr
, format
);
345 int ret
= vwprintf( format
, argptr
);
353 #ifndef wxCRT_FprintfW
354 int wxCRT_FprintfW( FILE *stream
, const wchar_t *format
, ... )
357 va_start( argptr
, format
);
359 int ret
= vfwprintf( stream
, format
, argptr
);
367 #ifndef wxCRT_VfprintfW
368 int wxCRT_VfprintfW( FILE *stream
, const wchar_t *format
, va_list argptr
)
370 return vfwprintf( stream
, format
, argptr
);
374 #ifndef wxCRT_VprintfW
375 int wxCRT_VprintfW( const wchar_t *format
, va_list argptr
)
377 return vwprintf( format
, argptr
);
381 #ifndef wxCRT_VsprintfW
382 int wxCRT_VsprintfW( wchar_t *str
, const wchar_t *format
, va_list argptr
)
384 // same as for wxSprintf()
385 return vswprintf(str
, INT_MAX
/ 4, format
, argptr
);
390 int wxCRT_ScanfW(const wchar_t *format
, ...)
393 va_start(argptr
, format
);
396 #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD )
397 int ret
= std::vwscanf(format
, argptr
);
399 int ret
= vwscanf(format
, argptr
);
402 int ret
= vwscanf(format
, argptr
);
411 #ifndef wxCRT_SscanfW
412 int wxCRT_SscanfW(const wchar_t *str
, const wchar_t *format
, ...)
415 va_start(argptr
, format
);
418 #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD )
419 int ret
= std::vswscanf(str
, format
, argptr
);
421 int ret
= vswscanf(str
, format
, argptr
);
424 int ret
= vswscanf(str
, format
, argptr
);
433 #ifndef wxCRT_FscanfW
434 int wxCRT_FscanfW(FILE *stream
, const wchar_t *format
, ...)
437 va_start(argptr
, format
);
439 #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD )
440 int ret
= std::vfwscanf(stream
, format
, argptr
);
442 int ret
= vfwscanf(stream
, format
, argptr
);
445 int ret
= vfwscanf(stream
, format
, argptr
);
454 #ifndef wxCRT_VsscanfW
455 int wxCRT_VsscanfW(const wchar_t *str
, const wchar_t *format
, va_list argptr
)
458 #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD )
459 return std::vswscanf(str
, format
, argptr
);
461 return vswscanf(str
, format
, argptr
);
464 return vswscanf(str
, format
, argptr
);
470 // ----------------------------------------------------------------------------
471 // wrappers to printf and scanf function families
472 // ----------------------------------------------------------------------------
474 #if !wxUSE_UTF8_LOCALE_ONLY
475 int wxDoSprintfWchar(char *str
, const wxChar
*format
, ...)
478 va_start(argptr
, format
);
480 int rv
= wxVsprintf(str
, format
, argptr
);
485 #endif // !wxUSE_UTF8_LOCALE_ONLY
487 #if wxUSE_UNICODE_UTF8
488 int wxDoSprintfUtf8(char *str
, const char *format
, ...)
491 va_start(argptr
, format
);
493 int rv
= wxVsprintf(str
, format
, argptr
);
498 #endif // wxUSE_UNICODE_UTF8
502 #if !wxUSE_UTF8_LOCALE_ONLY
503 int wxDoSprintfWchar(wchar_t *str
, const wxChar
*format
, ...)
506 va_start(argptr
, format
);
508 int rv
= wxVsprintf(str
, format
, argptr
);
513 #endif // !wxUSE_UTF8_LOCALE_ONLY
515 #if wxUSE_UNICODE_UTF8
516 int wxDoSprintfUtf8(wchar_t *str
, const char *format
, ...)
519 va_start(argptr
, format
);
521 int rv
= wxVsprintf(str
, format
, argptr
);
526 #endif // wxUSE_UNICODE_UTF8
528 #endif // wxUSE_UNICODE
530 #if !wxUSE_UTF8_LOCALE_ONLY
531 int wxDoSnprintfWchar(char *str
, size_t size
, const wxChar
*format
, ...)
534 va_start(argptr
, format
);
536 int rv
= wxVsnprintf(str
, size
, format
, argptr
);
541 #endif // !wxUSE_UTF8_LOCALE_ONLY
543 #if wxUSE_UNICODE_UTF8
544 int wxDoSnprintfUtf8(char *str
, size_t size
, const char *format
, ...)
547 va_start(argptr
, format
);
549 int rv
= wxVsnprintf(str
, size
, format
, argptr
);
554 #endif // wxUSE_UNICODE_UTF8
558 #if !wxUSE_UTF8_LOCALE_ONLY
559 int wxDoSnprintfWchar(wchar_t *str
, size_t size
, const wxChar
*format
, ...)
562 va_start(argptr
, format
);
564 int rv
= wxVsnprintf(str
, size
, format
, argptr
);
569 #endif // !wxUSE_UTF8_LOCALE_ONLY
571 #if wxUSE_UNICODE_UTF8
572 int wxDoSnprintfUtf8(wchar_t *str
, size_t size
, const char *format
, ...)
575 va_start(argptr
, format
);
577 int rv
= wxVsnprintf(str
, size
, format
, argptr
);
582 #endif // wxUSE_UNICODE_UTF8
584 #endif // wxUSE_UNICODE
587 #ifdef HAVE_BROKEN_VSNPRINTF_DECL
588 #define vsnprintf wx_fixed_vsnprintf
596 #if !wxUSE_UTF8_LOCALE_ONLY
597 int ConvertStringToBuf(const wxString
& s
, char *out
, size_t outsize
)
599 const wxWX2WCbuf buf
= s
.wc_str();
601 size_t len
= wxConvLibc
.FromWChar(out
, outsize
, buf
);
602 if ( len
!= wxCONV_FAILED
)
605 return wxConvLibc
.FromWChar(NULL
, 0, buf
);
607 #endif // !wxUSE_UTF8_LOCALE_ONLY
609 #if wxUSE_UNICODE_UTF8
610 int ConvertStringToBuf(const wxString
& s
, wchar_t *out
, size_t outsize
)
612 const wxWX2WCbuf
buf(s
.wc_str());
613 size_t len
= s
.length(); // same as buf length for wchar_t*
616 memcpy(out
, buf
, (len
+1) * sizeof(wchar_t));
618 else // not enough space
620 memcpy(out
, buf
, (outsize
-1) * sizeof(wchar_t));
625 #endif // wxUSE_UNICODE_UTF8
627 } // anonymous namespace
630 static size_t PrintfViaString(T
*out
, size_t outsize
,
631 const wxString
& format
, va_list argptr
)
634 s
.PrintfV(format
, argptr
);
636 return ConvertStringToBuf(s
, out
, outsize
);
638 #endif // wxUSE_UNICODE
640 int wxVsprintf(char *str
, const wxString
& format
, va_list argptr
)
642 #if wxUSE_UTF8_LOCALE_ONLY
643 return wxCRT_VsprintfA(str
, format
.wx_str(), argptr
);
645 #if wxUSE_UNICODE_UTF8
646 if ( wxLocaleIsUtf8
)
647 return wxCRT_VsprintfA(str
, format
.wx_str(), argptr
);
651 return PrintfViaString(str
, wxNO_LEN
, format
, argptr
);
653 return wxCRT_VsprintfA(str
, format
.mb_str(), argptr
);
659 int wxVsprintf(wchar_t *str
, const wxString
& format
, va_list argptr
)
661 #if wxUSE_UNICODE_WCHAR
664 This fails with a bug similar to
665 http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=c++.beta&artnum=680
667 I don't see it being used in the wxWidgets sources at present (oct 2007) CE
669 #pragma message ( "warning ::::: wxVsprintf(wchar_t *str, const wxString& format, va_list argptr) not yet implemented" )
670 wxFAIL_MSG( _T("TODO") );
674 return wxCRT_VsprintfW(str
, format
.wc_str(), argptr
);
676 #else // wxUSE_UNICODE_UTF8
677 #if !wxUSE_UTF8_LOCALE_ONLY
678 if ( !wxLocaleIsUtf8
)
679 return wxCRT_VsprintfW(str
, format
.wc_str(), argptr
);
682 return PrintfViaString(str
, wxNO_LEN
, format
, argptr
);
683 #endif // wxUSE_UNICODE_UTF8
685 #endif // wxUSE_UNICODE
687 int wxVsnprintf(char *str
, size_t size
, const wxString
& format
, va_list argptr
)
690 #if wxUSE_UTF8_LOCALE_ONLY
691 rv
= wxCRT_VsnprintfA(str
, size
, format
.wx_str(), argptr
);
693 #if wxUSE_UNICODE_UTF8
694 if ( wxLocaleIsUtf8
)
695 rv
= wxCRT_VsnprintfA(str
, size
, format
.wx_str(), argptr
);
700 // NB: if this code is called, then wxString::PrintV() would use the
701 // wchar_t* version of wxVsnprintf(), so it's safe to use PrintV()
703 rv
= PrintfViaString(str
, size
, format
, argptr
);
706 rv
= wxCRT_VsnprintfA(str
, size
, format
.mb_str(), argptr
);
710 // VsnprintfTestCase reveals that glibc's implementation of vswprintf
711 // doesn't nul terminate on truncation.
718 int wxVsnprintf(wchar_t *str
, size_t size
, const wxString
& format
, va_list argptr
)
722 #if wxUSE_UNICODE_WCHAR
723 rv
= wxCRT_VsnprintfW(str
, size
, format
.wc_str(), argptr
);
724 #else // wxUSE_UNICODE_UTF8
725 #if !wxUSE_UTF8_LOCALE_ONLY
726 if ( !wxLocaleIsUtf8
)
727 rv
= wxCRT_VsnprintfW(str
, size
, format
.wc_str(), argptr
);
731 // NB: if this code is called, then wxString::PrintV() would use the
732 // char* version of wxVsnprintf(), so it's safe to use PrintV()
734 rv
= PrintfViaString(str
, size
, format
, argptr
);
736 #endif // wxUSE_UNICODE_UTF8
738 // VsnprintfTestCase reveals that glibc's implementation of vswprintf
739 // doesn't nul terminate on truncation.
744 #endif // wxUSE_UNICODE
748 // ----------------------------------------------------------------------------
749 // ctype.h stuff (currently unused)
750 // ----------------------------------------------------------------------------
752 #ifdef wxNEED_WX_MBSTOWCS
754 WXDLLIMPEXP_BASE
size_t wxMbstowcs (wchar_t * out
, const char * in
, size_t outlen
)
764 const char* origin
= in
;
766 while (outlen
-- && *in
)
768 *out
++ = (wchar_t) *in
++;
776 WXDLLIMPEXP_BASE
size_t wxWcstombs (char * out
, const wchar_t * in
, size_t outlen
)
786 const wchar_t* origin
= in
;
788 while (outlen
-- && *in
)
790 *out
++ = (char) *in
++;
798 #endif // wxNEED_WX_MBSTOWCS
800 #ifndef wxCRT_StrdupA
801 WXDLLIMPEXP_BASE
char *wxCRT_StrdupA(const char *s
)
803 return strcpy((char *)malloc(strlen(s
) + 1), s
);
805 #endif // wxCRT_StrdupA
807 #ifndef wxCRT_StrdupW
808 WXDLLIMPEXP_BASE
wchar_t * wxCRT_StrdupW(const wchar_t *pwz
)
810 size_t size
= (wxWcslen(pwz
) + 1) * sizeof(wchar_t);
811 wchar_t *ret
= (wchar_t *) malloc(size
);
812 memcpy(ret
, pwz
, size
);
815 #endif // wxCRT_StrdupW
817 #ifndef wxCRT_StricmpA
818 WXDLLIMPEXP_BASE
int wxCRT_StricmpA(const char *psz1
, const char *psz2
)
820 register char c1
, c2
;
822 c1
= wxTolower(*psz1
++);
823 c2
= wxTolower(*psz2
++);
824 } while ( c1
&& (c1
== c2
) );
827 #endif // !defined(wxCRT_StricmpA)
829 #ifndef wxCRT_StricmpW
830 WXDLLIMPEXP_BASE
int wxCRT_StricmpW(const wchar_t *psz1
, const wchar_t *psz2
)
832 register wchar_t c1
, c2
;
834 c1
= wxTolower(*psz1
++);
835 c2
= wxTolower(*psz2
++);
836 } while ( c1
&& (c1
== c2
) );
839 #endif // !defined(wxCRT_StricmpW)
841 #ifndef wxCRT_StrnicmpA
842 WXDLLIMPEXP_BASE
int wxCRT_StrnicmpA(const char *s1
, const char *s2
, size_t n
)
844 // initialize the variables just to suppress stupid gcc warning
845 register char c1
= 0, c2
= 0;
846 while (n
&& ((c1
= wxTolower(*s1
)) == (c2
= wxTolower(*s2
)) ) && c1
) n
--, s1
++, s2
++;
848 if (c1
< c2
) return -1;
849 if (c1
> c2
) return 1;
853 #endif // !defined(wxCRT_StrnicmpA)
855 #ifndef wxCRT_StrnicmpW
856 WXDLLIMPEXP_BASE
int wxCRT_StrnicmpW(const wchar_t *s1
, const wchar_t *s2
, size_t n
)
858 // initialize the variables just to suppress stupid gcc warning
859 register wchar_t c1
= 0, c2
= 0;
860 while (n
&& ((c1
= wxTolower(*s1
)) == (c2
= wxTolower(*s2
)) ) && c1
) n
--, s1
++, s2
++;
862 if (c1
< c2
) return -1;
863 if (c1
> c2
) return 1;
867 #endif // !defined(wxCRT_StrnicmpW)
869 // ----------------------------------------------------------------------------
870 // string.h functions
871 // ----------------------------------------------------------------------------
873 // this (and wxCRT_StrncmpW below) are extern "C" because they are needed
874 // by regex code, the rest isn't needed, so it's not declared as extern "C"
875 #ifndef wxCRT_StrlenW
876 extern "C" WXDLLIMPEXP_BASE
size_t wxCRT_StrlenW(const wchar_t *s
)
886 // ----------------------------------------------------------------------------
887 // stdlib.h functions
888 // ----------------------------------------------------------------------------
890 #ifndef wxCRT_GetenvW
891 WXDLLIMPEXP_BASE
wchar_t* wxCRT_GetenvW(const wchar_t *name
)
893 // NB: buffer returned by getenv() is allowed to be overwritten next
894 // time getenv() is called, so it is OK to use static string
895 // buffer to hold the data.
896 static wxWCharBuffer
value((wchar_t*)NULL
);
897 value
= wxConvLibc
.cMB2WC(getenv(wxConvLibc
.cWC2MB(name
)));
900 #endif // !wxCRT_GetenvW
902 #ifndef wxCRT_StrftimeW
903 WXDLLIMPEXP_BASE
size_t
904 wxCRT_StrftimeW(wchar_t *s
, size_t maxsize
, const wchar_t *fmt
, const struct tm
*tm
)
909 wxCharBuffer
buf(maxsize
);
911 wxCharBuffer
bufFmt(wxConvLibc
.cWX2MB(fmt
));
915 size_t ret
= strftime(buf
.data(), maxsize
, bufFmt
, tm
);
919 wxWCharBuffer wbuf
= wxConvLibc
.cMB2WX(buf
);
923 wxCRT_StrncpyW(s
, wbuf
, maxsize
);
924 return wxCRT_StrlenW(s
);
926 #endif // !wxCRT_StrftimeW
928 #endif // wxUSE_WCHAR_T
933 wxCRT_StrtoullBase(const T
* nptr
, T
** endptr
, int base
, T
* sign
)
935 wxULongLong_t sum
= 0;
936 wxString
wxstr(nptr
);
937 wxString::const_iterator i
= wxstr
.begin();
938 wxString::const_iterator end
= wxstr
.end();
941 while ( i
!= end
&& wxIsspace(*i
) ) ++i
;
948 if ( c
== wxT('+') || c
== wxT('-') )
956 if ( i
!= end
&& *i
== wxT('0') )
961 if ( *i
== wxT('x') && (base
== 16 || base
== 0) )
981 for ( ; i
!= end
; ++i
)
991 n
= wxTolower(c
) - wxT('a') + 10;
996 if ( n
>= (unsigned int)base
)
997 // Invalid character (for this base)
1000 wxULongLong_t prevsum
= sum
;
1001 sum
= (sum
* base
) + n
;
1003 if ( sum
< prevsum
)
1005 wxSET_ERRNO(ERANGE
);
1012 *endptr
= (T
*)(nptr
+ (i
- wxstr
.begin()));
1018 template<typename T
>
1019 static wxULongLong_t
wxCRT_DoStrtoull(const T
* nptr
, T
** endptr
, int base
)
1022 wxULongLong_t uval
= ::wxCRT_StrtoullBase(nptr
, endptr
, base
, &sign
);
1024 if ( sign
== wxT('-') )
1026 wxSET_ERRNO(ERANGE
);
1033 template<typename T
>
1034 static wxLongLong_t
wxCRT_DoStrtoll(const T
* nptr
, T
** endptr
, int base
)
1037 wxULongLong_t uval
= ::wxCRT_StrtoullBase(nptr
, endptr
, base
, &sign
);
1038 wxLongLong_t val
= 0;
1040 if ( sign
== wxT('-') )
1042 if (uval
<= (wxULongLong_t
)wxINT64_MAX
+ 1)
1044 val
= -(wxLongLong_t
)uval
;
1048 wxSET_ERRNO(ERANGE
);
1051 else if ( uval
<= wxINT64_MAX
)
1057 wxSET_ERRNO(ERANGE
);
1063 #ifndef wxCRT_StrtollA
1064 wxLongLong_t
wxCRT_StrtollA(const char* nptr
, char** endptr
, int base
)
1065 { return wxCRT_DoStrtoll(nptr
, endptr
, base
); }
1067 #ifndef wxCRT_StrtollW
1068 wxLongLong_t
wxCRT_StrtollW(const wchar_t* nptr
, wchar_t** endptr
, int base
)
1069 { return wxCRT_DoStrtoll(nptr
, endptr
, base
); }
1072 #ifndef wxCRT_StrtoullA
1073 wxULongLong_t
wxCRT_StrtoullA(const char* nptr
, char** endptr
, int base
)
1074 { return wxCRT_DoStrtoull(nptr
, endptr
, base
); }
1076 #ifndef wxCRT_StrtoullW
1077 wxULongLong_t
wxCRT_StrtoullW(const wchar_t* nptr
, wchar_t** endptr
, int base
)
1078 { return wxCRT_DoStrtoull(nptr
, endptr
, base
); }
1081 #endif // wxLongLong_t
1083 // ----------------------------------------------------------------------------
1084 // functions which we may need even if !wxUSE_WCHAR_T
1085 // ----------------------------------------------------------------------------
1087 template<typename T
>
1088 static T
*wxCRT_DoStrtok(T
*psz
, const T
*delim
, T
**save_ptr
)
1097 psz
+= wxStrspn(psz
, delim
);
1100 *save_ptr
= (T
*)NULL
;
1105 psz
= wxStrpbrk(psz
, delim
);
1108 *save_ptr
= (T
*)NULL
;
1113 *save_ptr
= psz
+ 1;
1119 #ifndef wxCRT_StrtokA
1120 char *wxCRT_StrtokA(char *psz
, const char *delim
, char **save_ptr
)
1121 { return wxCRT_DoStrtok(psz
, delim
, save_ptr
); }
1123 #ifndef wxCRT_StrtokW
1124 wchar_t *wxCRT_StrtokW(wchar_t *psz
, const wchar_t *delim
, wchar_t **save_ptr
)
1125 { return wxCRT_DoStrtok(psz
, delim
, save_ptr
); }
1128 // ----------------------------------------------------------------------------
1129 // missing C RTL functions
1130 // ----------------------------------------------------------------------------
1132 #ifdef wxNEED_STRDUP
1134 char *strdup(const char *s
)
1136 char *dest
= (char*) malloc( strlen( s
) + 1 ) ;
1138 strcpy( dest
, s
) ;
1141 #endif // wxNEED_STRDUP
1143 #if defined(__WXWINCE__) && (_WIN32_WCE <= 211)
1145 void *calloc( size_t num
, size_t size
)
1147 void** ptr
= (void **)malloc(num
* size
);
1148 memset( ptr
, 0, num
* size
);
1152 #endif // __WXWINCE__ <= 211
1154 // ============================================================================
1156 // ============================================================================
1158 #if wxUSE_UNICODE_UTF8
1160 #if !wxUSE_UTF8_LOCALE_ONLY
1161 bool wxLocaleIsUtf8
= false; // the safer setting if not known
1164 static bool wxIsLocaleUtf8()
1166 // NB: we intentionally don't use wxLocale::GetSystemEncodingName(),
1167 // because a) it may be unavailable in some builds and b) has slightly
1168 // different semantics (default locale instead of current)
1170 #if defined(HAVE_LANGINFO_H) && defined(CODESET)
1171 // GNU libc provides current character set this way (this conforms to
1173 const char *charset
= nl_langinfo(CODESET
);
1176 // "UTF-8" is used by modern glibc versions, but test other variants
1177 // as well, just in case:
1178 if ( strcmp(charset
, "UTF-8") == 0 ||
1179 strcmp(charset
, "utf-8") == 0 ||
1180 strcmp(charset
, "UTF8") == 0 ||
1181 strcmp(charset
, "utf8") == 0 )
1186 #endif // HAVE_LANGINFO_H
1188 // check if we're running under the "C" locale: it is 7bit subset
1189 // of UTF-8, so it can be safely used with the UTF-8 build:
1190 const char *lc_ctype
= setlocale(LC_CTYPE
, NULL
);
1192 (strcmp(lc_ctype
, "C") == 0 || strcmp(lc_ctype
, "POSIX") == 0) )
1197 // we don't know what charset libc is using, so assume the worst
1202 void wxUpdateLocaleIsUtf8()
1204 #if wxUSE_UTF8_LOCALE_ONLY
1205 if ( !wxIsLocaleUtf8() )
1207 wxLogFatalError(_T("This program requires UTF-8 locale to run."));
1209 #else // !wxUSE_UTF8_LOCALE_ONLY
1210 wxLocaleIsUtf8
= wxIsLocaleUtf8();
1214 #endif // wxUSE_UNICODE_UTF8
1216 // ============================================================================
1217 // wx wrappers for CRT functions
1218 // ============================================================================
1220 #if wxUSE_UNICODE_WCHAR
1221 #define CALL_ANSI_OR_UNICODE(return_kw, callA, callW) return_kw callW
1222 #elif wxUSE_UNICODE_UTF8 && !wxUSE_UTF8_LOCALE_ONLY
1223 #define CALL_ANSI_OR_UNICODE(return_kw, callA, callW) \
1224 return_kw wxLocaleIsUtf8 ? callA : callW
1225 #else // ANSI or UTF8 only
1226 #define CALL_ANSI_OR_UNICODE(return_kw, callA, callW) return_kw callA
1229 int wxPuts(const wxString
& s
)
1231 CALL_ANSI_OR_UNICODE(return,
1232 wxCRT_PutsA(s
.mb_str()),
1233 wxCRT_PutsW(s
.wc_str()));
1236 int wxFputs(const wxString
& s
, FILE *stream
)
1238 CALL_ANSI_OR_UNICODE(return,
1239 wxCRT_FputsA(s
.mb_str(), stream
),
1240 wxCRT_FputsW(s
.wc_str(), stream
));
1243 int wxFputc(const wxUniChar
& c
, FILE *stream
)
1245 #if !wxUSE_UNICODE // FIXME-UTF8: temporary, remove this with ANSI build
1246 return wxCRT_FputcA((char)c
, stream
);
1248 CALL_ANSI_OR_UNICODE(return,
1249 wxCRT_FputsA(c
.AsUTF8(), stream
),
1250 wxCRT_FputcW((wchar_t)c
, stream
));
1254 #ifdef wxCRT_PerrorA
1256 void wxPerror(const wxString
& s
)
1258 #ifdef wxCRT_PerrorW
1259 CALL_ANSI_OR_UNICODE(wxEMPTY_PARAMETER_VALUE
,
1260 wxCRT_PerrorA(s
.mb_str()),
1261 wxCRT_PerrorW(s
.wc_str()));
1263 wxCRT_PerrorA(s
.mb_str());
1267 #endif // wxCRT_PerrorA
1269 wchar_t *wxFgets(wchar_t *s
, int size
, FILE *stream
)
1271 wxCHECK_MSG( s
, NULL
, "empty buffer passed to wxFgets()" );
1273 wxCharBuffer
buf(size
- 1);
1274 // FIXME: this reads too little data if wxConvLibc uses UTF-8 ('size' wide
1275 // characters may be encoded by up to 'size'*4 bytes), but what
1277 if ( wxFgets(buf
.data(), size
, stream
) == NULL
)
1280 if ( wxConvLibc
.ToWChar(s
, size
, buf
, wxNO_LEN
) == wxCONV_FAILED
)
1286 // ----------------------------------------------------------------------------
1287 // wxScanf() and friends
1288 // ----------------------------------------------------------------------------
1290 #ifndef HAVE_NO_VSSCANF // __VISUALC__ and __DMC__ see wx/crt.h
1291 int wxVsscanf(const char *str
, const char *format
, va_list ap
)
1292 { return wxCRT_VsscanfA(str
, format
, ap
); }
1293 int wxVsscanf(const wchar_t *str
, const wchar_t *format
, va_list ap
)
1294 { return wxCRT_VsscanfW(str
, format
, ap
); }
1295 int wxVsscanf(const wxCharBuffer
& str
, const char *format
, va_list ap
)
1296 { return wxCRT_VsscanfA(str
, format
, ap
); }
1297 int wxVsscanf(const wxWCharBuffer
& str
, const wchar_t *format
, va_list ap
)
1298 { return wxCRT_VsscanfW(str
, format
, ap
); }
1299 int wxVsscanf(const wxString
& str
, const char *format
, va_list ap
)
1300 { return wxCRT_VsscanfA(str
.mb_str(), format
, ap
); }
1301 int wxVsscanf(const wxString
& str
, const wchar_t *format
, va_list ap
)
1302 { return wxCRT_VsscanfW(str
.wc_str(), format
, ap
); }
1303 int wxVsscanf(const wxCStrData
& str
, const char *format
, va_list ap
)
1304 { return wxCRT_VsscanfA(str
.AsCharBuf(), format
, ap
); }
1305 int wxVsscanf(const wxCStrData
& str
, const wchar_t *format
, va_list ap
)
1306 { return wxCRT_VsscanfW(str
.AsWCharBuf(), format
, ap
); }
1307 #endif // HAVE_NO_VSSCANF