]>
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
7 // Copyright: (c) wxWidgets copyright
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ===========================================================================
12 // headers, declarations, constants
13 // ===========================================================================
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
23 #include "wx/strconv.h" // wxMBConv::cWC2MB()
25 #define _ISOC9X_SOURCE 1 // to get vsscanf()
26 #define _BSD_SOURCE 1 // to still get strdup()
34 // wide character functions are declared in std namespace under IRIX
37 // and this one is only declared if __c99 is defined which is not the case
38 // for C++ builds, so declare it ourselves
39 extern "C" int vswscanf(const wchar_t *, const wchar_t *, va_list);
46 #include "wx/msw/wince/time.h"
50 #include "wx/string.h"
52 #include "wx/utils.h" // for wxMin and wxMax
56 #ifdef HAVE_LANGINFO_H
61 // there is no errno.h under CE apparently
62 #define wxSET_ERRNO(value)
66 #define wxSET_ERRNO(value) errno = value
69 #if defined(__DARWIN__)
70 #include "wx/osx/core/cfref.h"
71 #include <CoreFoundation/CFLocale.h>
72 #include "wx/osx/core/cfstring.h"
76 WXDLLIMPEXP_BASE
size_t wxMB2WC(wchar_t *buf
, const char *psz
, size_t n
)
78 // assume that we have mbsrtowcs() too if we have wcsrtombs()
81 memset(&mbstate
, 0, sizeof(mbstate_t));
86 if (n
) *buf
= wxT('\0');
90 return mbsrtowcs(buf
, &psz
, n
, &mbstate
);
92 return wxMbstowcs(buf
, psz
, n
);
96 // Note that we rely on common (and required by Unix98 but unfortunately not
97 // C99) extension which allows to call mbs(r)towcs() with NULL output pointer
98 // to just get the size of the needed buffer -- this is needed as otherwise
99 // we have no idea about how much space we need. Currently all supported
100 // compilers do provide it and if they don't, HAVE_WCSRTOMBS shouldn't be
102 #ifdef HAVE_WCSRTOMBS
103 return mbsrtowcs(NULL
, &psz
, 0, &mbstate
);
105 return wxMbstowcs(NULL
, psz
, 0);
109 WXDLLIMPEXP_BASE
size_t wxWC2MB(char *buf
, const wchar_t *pwz
, size_t n
)
111 #ifdef HAVE_WCSRTOMBS
113 memset(&mbstate
, 0, sizeof(mbstate_t));
118 // glibc2.1 chokes on null input
122 #ifdef HAVE_WCSRTOMBS
123 return wcsrtombs(buf
, &pwz
, n
, &mbstate
);
125 return wxWcstombs(buf
, pwz
, n
);
129 #ifdef HAVE_WCSRTOMBS
130 return wcsrtombs(NULL
, &pwz
, 0, &mbstate
);
132 return wxWcstombs(NULL
, pwz
, 0);
136 char* wxSetlocale(int category
, const char *locale
)
139 // FIXME-CE: there is no setlocale() in CE CRT, use SetThreadLocale()?
140 wxUnusedVar(category
);
144 #else // !__WXWINCE__
147 if ( locale
!= NULL
&& locale
[0] == 0 )
149 // the attempt to use newlocale(LC_ALL_MASK, "", NULL);
150 // here in order to deduce the language along the environment vars rules
151 // lead to strange crashes later...
153 // we have to emulate the behaviour under OS X
154 wxCFRef
<CFLocaleRef
> userLocaleRef(CFLocaleCopyCurrent());
155 wxCFStringRef
str(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleLanguageCode
)));
156 wxString langFull
= str
.AsString()+"_";
157 str
.reset(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleCountryCode
)));
158 langFull
+= str
.AsString();
159 rv
= setlocale(category
, langFull
.c_str());
162 rv
= setlocale(category
, locale
);
164 char *rv
= setlocale(category
, locale
);
166 if ( locale
!= NULL
/* setting locale, not querying */ &&
167 rv
/* call was successful */ )
169 wxUpdateLocaleIsUtf8();
172 #endif // __WXWINCE__/!__WXWINCE__
175 // ============================================================================
176 // printf() functions business
177 // ============================================================================
179 // special test mode: define all functions below even if we don't really need
180 // them to be able to test them
190 #define wxNEED_WPRINTF
192 int wxCRT_VfprintfW( FILE *stream
, const wchar_t *format
, va_list argptr
);
196 /* Digital Mars adds count to _stprintf (C99) so convert */
197 int wxCRT_SprintfW (wchar_t * __RESTRICT s
, const wchar_t * __RESTRICT format
, ... )
201 va_start( arglist
, format
);
202 int iLen
= swprintf ( s
, -1, format
, arglist
);
208 // ----------------------------------------------------------------------------
209 // implement the standard IO functions for wide char if libc doesn't have them
210 // ----------------------------------------------------------------------------
213 int wxCRT_FputsW(const wchar_t *ws
, FILE *stream
)
215 wxCharBuffer
buf(wxConvLibc
.cWC2MB(ws
));
219 // counting the number of wide characters written isn't worth the trouble,
220 // simply distinguish between ok and error
221 return wxCRT_FputsA(buf
, stream
) == -1 ? -1 : 0;
223 #endif // !wxCRT_FputsW
226 int wxCRT_PutsW(const wchar_t *ws
)
228 int rc
= wxCRT_FputsW(ws
, stdout
);
231 if ( wxCRT_FputsW(L
"\n", stdout
) == -1 )
239 #endif // !wxCRT_PutsW
242 int /* not wint_t */ wxCRT_FputcW(wchar_t wc
, FILE *stream
)
244 wchar_t ws
[2] = { wc
, L
'\0' };
246 return wxCRT_FputsW(ws
, stream
);
248 #endif // !wxCRT_FputcW
250 // NB: we only implement va_list functions here, the ones taking ... are
251 // defined below for wxNEED_PRINTF_CONVERSION case anyhow and we reuse
252 // the definitions there to avoid duplicating them here
253 #ifdef wxNEED_WPRINTF
255 // TODO: implement the scanf() functions
256 static int vwscanf(const wchar_t *format
, va_list argptr
)
258 wxFAIL_MSG( wxT("TODO") );
263 static int vfwscanf(FILE *stream
, const wchar_t *format
, va_list argptr
)
265 wxFAIL_MSG( wxT("TODO") );
270 #define vswprintf wxCRT_VsnprintfW
272 static int vfwprintf(FILE *stream
, const wchar_t *format
, va_list argptr
)
275 int rc
= s
.PrintfV(format
, argptr
);
279 // we can't do much better without Unicode support in libc...
280 if ( fprintf(stream
, "%s", (const char*)s
.mb_str() ) == -1 )
287 static int vwprintf(const wchar_t *format
, va_list argptr
)
289 return wxCRT_VfprintfW(stdout
, format
, argptr
);
292 #endif // wxNEED_WPRINTF
294 #ifdef wxNEED_VSWSCANF
295 static int vswscanf(const wchar_t *ws
, const wchar_t *format
, va_list argptr
)
297 // The best we can do without proper Unicode support in glibc is to
298 // convert the strings into MB representation and run ANSI version
299 // of the function. This doesn't work with %c and %s because of difference
300 // in size of char and wchar_t, though.
302 wxCHECK_MSG( wxStrstr(format
, wxT("%s")) == NULL
, -1,
303 wxT("incomplete vswscanf implementation doesn't allow %s") );
304 wxCHECK_MSG( wxStrstr(format
, wxT("%c")) == NULL
, -1,
305 wxT("incomplete vswscanf implementation doesn't allow %c") );
307 return vsscanf(static_cast<const char*>(wxConvLibc
.cWX2MB(ws
)),
308 wxConvLibc
.cWX2MB(format
), argptr
);
312 // ----------------------------------------------------------------------------
313 // wxPrintf(), wxScanf() and relatives
314 // ----------------------------------------------------------------------------
316 // FIXME-UTF8: do format conversion using (modified) wxFormatConverter in
317 // template wrappers, not here; note that it will needed to
318 // translate all forms of string specifiers to %(l)s for wxPrintf(),
319 // but it only should do what it did in 2.8 for wxScanf()!
321 #ifndef wxCRT_PrintfW
322 int wxCRT_PrintfW( const wchar_t *format
, ... )
325 va_start(argptr
, format
);
327 int ret
= vwprintf( format
, argptr
);
335 #ifndef wxCRT_FprintfW
336 int wxCRT_FprintfW( FILE *stream
, const wchar_t *format
, ... )
339 va_start( argptr
, format
);
341 int ret
= vfwprintf( stream
, format
, argptr
);
349 #ifndef wxCRT_VfprintfW
350 int wxCRT_VfprintfW( FILE *stream
, const wchar_t *format
, va_list argptr
)
352 return vfwprintf( stream
, format
, argptr
);
356 #ifndef wxCRT_VprintfW
357 int wxCRT_VprintfW( const wchar_t *format
, va_list argptr
)
359 return vwprintf( format
, argptr
);
363 #ifndef wxCRT_VsprintfW
364 int wxCRT_VsprintfW( wchar_t *str
, const wchar_t *format
, va_list argptr
)
366 // same as for wxSprintf()
367 return vswprintf(str
, INT_MAX
/ 4, format
, argptr
);
372 int wxCRT_ScanfW(const wchar_t *format
, ...)
375 va_start(argptr
, format
);
378 #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD )
379 int ret
= std::vwscanf(format
, argptr
);
381 int ret
= vwscanf(format
, argptr
);
384 int ret
= vwscanf(format
, argptr
);
393 #ifndef wxCRT_SscanfW
394 int wxCRT_SscanfW(const wchar_t *str
, const wchar_t *format
, ...)
397 va_start(argptr
, format
);
400 #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD )
401 int ret
= std::vswscanf(str
, format
, argptr
);
403 int ret
= vswscanf(str
, format
, argptr
);
406 int ret
= vswscanf(str
, format
, argptr
);
415 #ifndef wxCRT_FscanfW
416 int wxCRT_FscanfW(FILE *stream
, const wchar_t *format
, ...)
419 va_start(argptr
, format
);
421 #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD )
422 int ret
= std::vfwscanf(stream
, format
, argptr
);
424 int ret
= vfwscanf(stream
, format
, argptr
);
427 int ret
= vfwscanf(stream
, format
, argptr
);
436 #ifndef wxCRT_VsscanfW
437 int wxCRT_VsscanfW(const wchar_t *str
, const wchar_t *format
, va_list argptr
)
440 #if (__DECCXX_VER >= 70100000) && !defined(__STD_CFRONT) && !defined( __NONAMESPACE_STD )
441 return std::vswscanf(str
, format
, argptr
);
443 return vswscanf(str
, format
, argptr
);
446 return vswscanf(str
, format
, argptr
);
452 // ----------------------------------------------------------------------------
453 // wrappers to printf and scanf function families
454 // ----------------------------------------------------------------------------
456 #if !wxUSE_UTF8_LOCALE_ONLY
457 int wxDoSprintfWchar(char *str
, const wxChar
*format
, ...)
460 va_start(argptr
, format
);
462 int rv
= wxVsprintf(str
, format
, argptr
);
467 #endif // !wxUSE_UTF8_LOCALE_ONLY
469 #if wxUSE_UNICODE_UTF8
470 int wxDoSprintfUtf8(char *str
, const char *format
, ...)
473 va_start(argptr
, format
);
475 int rv
= wxVsprintf(str
, format
, argptr
);
480 #endif // wxUSE_UNICODE_UTF8
484 #if !wxUSE_UTF8_LOCALE_ONLY
485 int wxDoSprintfWchar(wchar_t *str
, const wxChar
*format
, ...)
488 va_start(argptr
, format
);
490 int rv
= wxVsprintf(str
, format
, argptr
);
495 #endif // !wxUSE_UTF8_LOCALE_ONLY
497 #if wxUSE_UNICODE_UTF8
498 int wxDoSprintfUtf8(wchar_t *str
, const char *format
, ...)
501 va_start(argptr
, format
);
503 int rv
= wxVsprintf(str
, format
, argptr
);
508 #endif // wxUSE_UNICODE_UTF8
510 #endif // wxUSE_UNICODE
512 #if !wxUSE_UTF8_LOCALE_ONLY
513 int wxDoSnprintfWchar(char *str
, size_t size
, const wxChar
*format
, ...)
516 va_start(argptr
, format
);
518 int rv
= wxVsnprintf(str
, size
, format
, argptr
);
523 #endif // !wxUSE_UTF8_LOCALE_ONLY
525 #if wxUSE_UNICODE_UTF8
526 int wxDoSnprintfUtf8(char *str
, size_t size
, const char *format
, ...)
529 va_start(argptr
, format
);
531 int rv
= wxVsnprintf(str
, size
, format
, argptr
);
536 #endif // wxUSE_UNICODE_UTF8
540 #if !wxUSE_UTF8_LOCALE_ONLY
541 int wxDoSnprintfWchar(wchar_t *str
, size_t size
, const wxChar
*format
, ...)
544 va_start(argptr
, format
);
546 int rv
= wxVsnprintf(str
, size
, format
, argptr
);
551 #endif // !wxUSE_UTF8_LOCALE_ONLY
553 #if wxUSE_UNICODE_UTF8
554 int wxDoSnprintfUtf8(wchar_t *str
, size_t size
, const char *format
, ...)
557 va_start(argptr
, format
);
559 int rv
= wxVsnprintf(str
, size
, format
, argptr
);
564 #endif // wxUSE_UNICODE_UTF8
566 #endif // wxUSE_UNICODE
569 #ifdef HAVE_BROKEN_VSNPRINTF_DECL
570 #define vsnprintf wx_fixed_vsnprintf
578 #if !wxUSE_UTF8_LOCALE_ONLY
579 int ConvertStringToBuf(const wxString
& s
, char *out
, size_t outsize
)
581 const wxCharBuffer
buf(s
.mb_str());
583 const size_t len
= buf
.length();
586 memcpy(out
, buf
, len
+1);
588 else // not enough space
590 memcpy(out
, buf
, outsize
-1);
591 out
[outsize
-1] = '\0';
596 #endif // !wxUSE_UTF8_LOCALE_ONLY
598 #if wxUSE_UNICODE_UTF8
599 int ConvertStringToBuf(const wxString
& s
, wchar_t *out
, size_t outsize
)
601 const wxWX2WCbuf
buf(s
.wc_str());
602 size_t len
= s
.length(); // same as buf length for wchar_t*
605 memcpy(out
, buf
, (len
+1) * sizeof(wchar_t));
607 else // not enough space
609 memcpy(out
, buf
, (outsize
-1) * sizeof(wchar_t));
614 #endif // wxUSE_UNICODE_UTF8
616 } // anonymous namespace
619 static size_t PrintfViaString(T
*out
, size_t outsize
,
620 const wxString
& format
, va_list argptr
)
623 s
.PrintfV(format
, argptr
);
625 return ConvertStringToBuf(s
, out
, outsize
);
627 #endif // wxUSE_UNICODE
629 int wxVsprintf(char *str
, const wxString
& format
, va_list argptr
)
631 #if wxUSE_UTF8_LOCALE_ONLY
632 return wxCRT_VsprintfA(str
, format
.wx_str(), argptr
);
634 #if wxUSE_UNICODE_UTF8
635 if ( wxLocaleIsUtf8
)
636 return wxCRT_VsprintfA(str
, format
.wx_str(), argptr
);
640 return PrintfViaString(str
, wxNO_LEN
, format
, argptr
);
642 return wxCRT_VsprintfA(str
, format
.mb_str(), argptr
);
648 int wxVsprintf(wchar_t *str
, const wxString
& format
, va_list argptr
)
650 #if wxUSE_UNICODE_WCHAR
653 This fails with a bug similar to
654 http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=c++.beta&artnum=680
656 I don't see it being used in the wxWidgets sources at present (oct 2007) CE
658 #pragma message ( "warning ::::: wxVsprintf(wchar_t *str, const wxString& format, va_list argptr) not yet implemented" )
659 wxFAIL_MSG( wxT("TODO") );
663 return wxCRT_VsprintfW(str
, format
.wc_str(), argptr
);
665 #else // wxUSE_UNICODE_UTF8
666 #if !wxUSE_UTF8_LOCALE_ONLY
667 if ( !wxLocaleIsUtf8
)
668 return wxCRT_VsprintfW(str
, format
.wc_str(), argptr
);
671 return PrintfViaString(str
, wxNO_LEN
, format
, argptr
);
672 #endif // wxUSE_UNICODE_UTF8
674 #endif // wxUSE_UNICODE
676 int wxVsnprintf(char *str
, size_t size
, const wxString
& format
, va_list argptr
)
679 #if wxUSE_UTF8_LOCALE_ONLY
680 rv
= wxCRT_VsnprintfA(str
, size
, format
.wx_str(), argptr
);
682 #if wxUSE_UNICODE_UTF8
683 if ( wxLocaleIsUtf8
)
684 rv
= wxCRT_VsnprintfA(str
, size
, format
.wx_str(), argptr
);
689 // NB: if this code is called, then wxString::PrintV() would use the
690 // wchar_t* version of wxVsnprintf(), so it's safe to use PrintV()
692 rv
= PrintfViaString(str
, size
, format
, argptr
);
695 rv
= wxCRT_VsnprintfA(str
, size
, format
.mb_str(), argptr
);
699 // VsnprintfTestCase reveals that glibc's implementation of vswprintf
700 // doesn't nul terminate on truncation.
707 int wxVsnprintf(wchar_t *str
, size_t size
, const wxString
& format
, va_list argptr
)
711 #if wxUSE_UNICODE_WCHAR
712 rv
= wxCRT_VsnprintfW(str
, size
, format
.wc_str(), argptr
);
713 #else // wxUSE_UNICODE_UTF8
714 #if !wxUSE_UTF8_LOCALE_ONLY
715 if ( !wxLocaleIsUtf8
)
716 rv
= wxCRT_VsnprintfW(str
, size
, format
.wc_str(), argptr
);
720 // NB: if this code is called, then wxString::PrintV() would use the
721 // char* version of wxVsnprintf(), so it's safe to use PrintV()
723 rv
= PrintfViaString(str
, size
, format
, argptr
);
725 #endif // wxUSE_UNICODE_UTF8
727 // VsnprintfTestCase reveals that glibc's implementation of vswprintf
728 // doesn't nul terminate on truncation.
733 #endif // wxUSE_UNICODE
736 // ----------------------------------------------------------------------------
737 // ctype.h stuff (currently unused)
738 // ----------------------------------------------------------------------------
740 #ifdef wxNEED_WX_MBSTOWCS
742 WXDLLIMPEXP_BASE
size_t wxMbstowcs (wchar_t * out
, const char * in
, size_t outlen
)
752 const char* origin
= in
;
754 while (outlen
-- && *in
)
756 *out
++ = (wchar_t) *in
++;
764 WXDLLIMPEXP_BASE
size_t wxWcstombs (char * out
, const wchar_t * in
, size_t outlen
)
774 const wchar_t* origin
= in
;
776 while (outlen
-- && *in
)
778 *out
++ = (char) *in
++;
786 #endif // wxNEED_WX_MBSTOWCS
788 #ifndef wxCRT_StrdupA
789 WXDLLIMPEXP_BASE
char *wxCRT_StrdupA(const char *s
)
791 return strcpy((char *)malloc(strlen(s
) + 1), s
);
793 #endif // wxCRT_StrdupA
795 #ifndef wxCRT_StrdupW
796 WXDLLIMPEXP_BASE
wchar_t * wxCRT_StrdupW(const wchar_t *pwz
)
798 size_t size
= (wxWcslen(pwz
) + 1) * sizeof(wchar_t);
799 wchar_t *ret
= (wchar_t *) malloc(size
);
800 memcpy(ret
, pwz
, size
);
803 #endif // wxCRT_StrdupW
805 #ifndef wxWCHAR_T_IS_WXCHAR16
806 size_t wxStrlen(const wxChar16
*s
)
810 while (*s
!=0) { ++i
; ++s
; };
814 wxChar16
* wxStrdup(const wxChar16
* s
)
816 size_t size
= (wxStrlen(s
) + 1) * sizeof(wxChar16
);
817 wxChar16
*ret
= (wxChar16
*) malloc(size
);
818 memcpy(ret
, s
, size
);
823 #ifndef wxWCHAR_T_IS_WXCHAR32
824 size_t wxStrlen(const wxChar32
*s
)
828 while (*s
!=0) { ++i
; ++s
; };
832 wxChar32
* wxStrdup(const wxChar32
* s
)
834 size_t size
= (wxStrlen(s
) + 1) * sizeof(wxChar32
);
835 wxChar32
*ret
= (wxChar32
*) malloc(size
);
837 memcpy(ret
, s
, size
);
842 #ifndef wxCRT_StricmpA
843 WXDLLIMPEXP_BASE
int wxCRT_StricmpA(const char *psz1
, const char *psz2
)
845 register char c1
, c2
;
847 c1
= wxTolower(*psz1
++);
848 c2
= wxTolower(*psz2
++);
849 } while ( c1
&& (c1
== c2
) );
852 #endif // !defined(wxCRT_StricmpA)
854 #ifndef wxCRT_StricmpW
855 WXDLLIMPEXP_BASE
int wxCRT_StricmpW(const wchar_t *psz1
, const wchar_t *psz2
)
857 register wchar_t c1
, c2
;
859 c1
= wxTolower(*psz1
++);
860 c2
= wxTolower(*psz2
++);
861 } while ( c1
&& (c1
== c2
) );
864 #endif // !defined(wxCRT_StricmpW)
866 #ifndef wxCRT_StrnicmpA
867 WXDLLIMPEXP_BASE
int wxCRT_StrnicmpA(const char *s1
, const char *s2
, size_t n
)
869 // initialize the variables just to suppress stupid gcc warning
870 register char c1
= 0, c2
= 0;
871 while (n
&& ((c1
= wxTolower(*s1
)) == (c2
= wxTolower(*s2
)) ) && c1
) n
--, s1
++, s2
++;
873 if (c1
< c2
) return -1;
874 if (c1
> c2
) return 1;
878 #endif // !defined(wxCRT_StrnicmpA)
880 #ifndef wxCRT_StrnicmpW
881 WXDLLIMPEXP_BASE
int wxCRT_StrnicmpW(const wchar_t *s1
, const wchar_t *s2
, size_t n
)
883 // initialize the variables just to suppress stupid gcc warning
884 register wchar_t c1
= 0, c2
= 0;
885 while (n
&& ((c1
= wxTolower(*s1
)) == (c2
= wxTolower(*s2
)) ) && c1
) n
--, s1
++, s2
++;
887 if (c1
< c2
) return -1;
888 if (c1
> c2
) return 1;
892 #endif // !defined(wxCRT_StrnicmpW)
894 // ----------------------------------------------------------------------------
895 // string.h functions
896 // ----------------------------------------------------------------------------
898 // this (and wxCRT_StrncmpW below) are extern "C" because they are needed
899 // by regex code, the rest isn't needed, so it's not declared as extern "C"
900 #ifndef wxCRT_StrlenW
901 extern "C" WXDLLIMPEXP_BASE
size_t wxCRT_StrlenW(const wchar_t *s
)
911 // ----------------------------------------------------------------------------
912 // stdlib.h functions
913 // ----------------------------------------------------------------------------
915 #ifndef wxCRT_GetenvW
916 WXDLLIMPEXP_BASE
wchar_t* wxCRT_GetenvW(const wchar_t *name
)
918 // NB: buffer returned by getenv() is allowed to be overwritten next
919 // time getenv() is called, so it is OK to use static string
920 // buffer to hold the data.
921 static wxWCharBuffer value
;
922 value
= wxConvLibc
.cMB2WC(getenv(wxConvLibc
.cWC2MB(name
)));
925 #endif // !wxCRT_GetenvW
927 #ifndef wxCRT_StrftimeW
928 WXDLLIMPEXP_BASE
size_t
929 wxCRT_StrftimeW(wchar_t *s
, size_t maxsize
, const wchar_t *fmt
, const struct tm
*tm
)
934 wxCharBuffer
buf(maxsize
);
936 wxCharBuffer
bufFmt(wxConvLibc
.cWX2MB(fmt
));
940 size_t ret
= strftime(buf
.data(), maxsize
, bufFmt
, tm
);
944 wxWCharBuffer wbuf
= wxConvLibc
.cMB2WX(buf
);
948 wxCRT_StrncpyW(s
, wbuf
, maxsize
);
949 return wxCRT_StrlenW(s
);
951 #endif // !wxCRT_StrftimeW
956 wxCRT_StrtoullBase(const T
* nptr
, T
** endptr
, int base
, T
* sign
)
958 wxULongLong_t sum
= 0;
959 wxString
wxstr(nptr
);
960 wxString::const_iterator i
= wxstr
.begin();
961 wxString::const_iterator end
= wxstr
.end();
964 while ( i
!= end
&& wxIsspace(*i
) ) ++i
;
971 if ( c
== wxT('+') || c
== wxT('-') )
978 // Starts with octal or hexadecimal prefix?
979 if ( i
!= end
&& *i
== wxT('0') )
984 if ( (*i
== wxT('x')) || (*i
== wxT('X')) )
986 // Hexadecimal prefix: use base 16 if auto-detecting.
990 // If we do use base 16, just skip "x" as well.
995 else // Not using base 16
997 // Then it's an error.
1000 wxSET_ERRNO(EINVAL
);
1004 else if ( base
== 0 )
1016 for ( ; i
!= end
; ++i
)
1026 n
= wxTolower(c
) - wxT('a') + 10;
1031 if ( n
>= (unsigned int)base
)
1032 // Invalid character (for this base)
1035 wxULongLong_t prevsum
= sum
;
1036 sum
= (sum
* base
) + n
;
1038 if ( sum
< prevsum
)
1040 wxSET_ERRNO(ERANGE
);
1047 *endptr
= (T
*)(nptr
+ (i
- wxstr
.begin()));
1053 template<typename T
>
1054 static wxULongLong_t
wxCRT_DoStrtoull(const T
* nptr
, T
** endptr
, int base
)
1057 wxULongLong_t uval
= ::wxCRT_StrtoullBase(nptr
, endptr
, base
, &sign
);
1059 if ( sign
== wxT('-') )
1061 wxSET_ERRNO(ERANGE
);
1068 template<typename T
>
1069 static wxLongLong_t
wxCRT_DoStrtoll(const T
* nptr
, T
** endptr
, int base
)
1072 wxULongLong_t uval
= ::wxCRT_StrtoullBase(nptr
, endptr
, base
, &sign
);
1073 wxLongLong_t val
= 0;
1075 if ( sign
== wxT('-') )
1077 if (uval
<= (wxULongLong_t
)wxINT64_MAX
+ 1)
1079 val
= -(wxLongLong_t
)uval
;
1083 wxSET_ERRNO(ERANGE
);
1086 else if ( uval
<= wxINT64_MAX
)
1092 wxSET_ERRNO(ERANGE
);
1098 #ifndef wxCRT_StrtollA
1099 wxLongLong_t
wxCRT_StrtollA(const char* nptr
, char** endptr
, int base
)
1100 { return wxCRT_DoStrtoll(nptr
, endptr
, base
); }
1102 #ifndef wxCRT_StrtollW
1103 wxLongLong_t
wxCRT_StrtollW(const wchar_t* nptr
, wchar_t** endptr
, int base
)
1104 { return wxCRT_DoStrtoll(nptr
, endptr
, base
); }
1107 #ifndef wxCRT_StrtoullA
1108 wxULongLong_t
wxCRT_StrtoullA(const char* nptr
, char** endptr
, int base
)
1109 { return wxCRT_DoStrtoull(nptr
, endptr
, base
); }
1111 #ifndef wxCRT_StrtoullW
1112 wxULongLong_t
wxCRT_StrtoullW(const wchar_t* nptr
, wchar_t** endptr
, int base
)
1113 { return wxCRT_DoStrtoull(nptr
, endptr
, base
); }
1116 #endif // wxLongLong_t
1118 // ----------------------------------------------------------------------------
1119 // strtok() functions
1120 // ----------------------------------------------------------------------------
1122 template<typename T
>
1123 static T
*wxCRT_DoStrtok(T
*psz
, const T
*delim
, T
**save_ptr
)
1132 psz
+= wxStrspn(psz
, delim
);
1140 psz
= wxStrpbrk(psz
, delim
);
1148 *save_ptr
= psz
+ 1;
1154 #ifndef wxCRT_StrtokA
1155 char *wxCRT_StrtokA(char *psz
, const char *delim
, char **save_ptr
)
1156 { return wxCRT_DoStrtok(psz
, delim
, save_ptr
); }
1158 #ifndef wxCRT_StrtokW
1159 wchar_t *wxCRT_StrtokW(wchar_t *psz
, const wchar_t *delim
, wchar_t **save_ptr
)
1160 { return wxCRT_DoStrtok(psz
, delim
, save_ptr
); }
1163 // ----------------------------------------------------------------------------
1164 // missing C RTL functions
1165 // ----------------------------------------------------------------------------
1167 #ifdef wxNEED_STRDUP
1169 char *strdup(const char *s
)
1171 char *dest
= (char*) malloc( strlen( s
) + 1 ) ;
1173 strcpy( dest
, s
) ;
1176 #endif // wxNEED_STRDUP
1178 #if defined(__WXWINCE__) && (_WIN32_WCE <= 211)
1180 void *calloc( size_t num
, size_t size
)
1182 void** ptr
= (void **)malloc(num
* size
);
1183 memset( ptr
, 0, num
* size
);
1187 #endif // __WXWINCE__ <= 211
1189 // ============================================================================
1191 // ============================================================================
1193 #if wxUSE_UNICODE_UTF8
1195 #if !wxUSE_UTF8_LOCALE_ONLY
1196 bool wxLocaleIsUtf8
= false; // the safer setting if not known
1199 static bool wxIsLocaleUtf8()
1201 // NB: we intentionally don't use wxLocale::GetSystemEncodingName(),
1202 // because a) it may be unavailable in some builds and b) has slightly
1203 // different semantics (default locale instead of current)
1205 #if defined(HAVE_LANGINFO_H) && defined(CODESET)
1206 // GNU libc provides current character set this way (this conforms to
1208 const char *charset
= nl_langinfo(CODESET
);
1211 // "UTF-8" is used by modern glibc versions, but test other variants
1212 // as well, just in case:
1213 if ( strcmp(charset
, "UTF-8") == 0 ||
1214 strcmp(charset
, "utf-8") == 0 ||
1215 strcmp(charset
, "UTF8") == 0 ||
1216 strcmp(charset
, "utf8") == 0 )
1221 #endif // HAVE_LANGINFO_H
1223 // check if we're running under the "C" locale: it is 7bit subset
1224 // of UTF-8, so it can be safely used with the UTF-8 build:
1225 const char *lc_ctype
= setlocale(LC_CTYPE
, NULL
);
1227 (strcmp(lc_ctype
, "C") == 0 || strcmp(lc_ctype
, "POSIX") == 0) )
1232 // we don't know what charset libc is using, so assume the worst
1237 void wxUpdateLocaleIsUtf8()
1239 #if wxUSE_UTF8_LOCALE_ONLY
1240 if ( !wxIsLocaleUtf8() )
1242 wxLogFatalError(wxT("This program requires UTF-8 locale to run."));
1244 #else // !wxUSE_UTF8_LOCALE_ONLY
1245 wxLocaleIsUtf8
= wxIsLocaleUtf8();
1249 #endif // wxUSE_UNICODE_UTF8
1251 // ============================================================================
1252 // wx wrappers for CRT functions
1253 // ============================================================================
1255 #if wxUSE_UNICODE_WCHAR
1256 #define CALL_ANSI_OR_UNICODE(return_kw, callA, callW) return_kw callW
1257 #elif wxUSE_UNICODE_UTF8 && !wxUSE_UTF8_LOCALE_ONLY
1258 #define CALL_ANSI_OR_UNICODE(return_kw, callA, callW) \
1259 return_kw wxLocaleIsUtf8 ? callA : callW
1260 #else // ANSI or UTF8 only
1261 #define CALL_ANSI_OR_UNICODE(return_kw, callA, callW) return_kw callA
1264 int wxPuts(const wxString
& s
)
1266 // under IRIX putws() takes a non-const argument so use wchar_str() instead
1268 CALL_ANSI_OR_UNICODE(return,
1269 wxCRT_PutsA(s
.mb_str()),
1270 wxCRT_PutsW(s
.wchar_str()));
1273 int wxFputs(const wxString
& s
, FILE *stream
)
1275 CALL_ANSI_OR_UNICODE(return,
1276 wxCRT_FputsA(s
.mb_str(), stream
),
1277 wxCRT_FputsW(s
.wc_str(), stream
));
1280 int wxFputc(const wxUniChar
& c
, FILE *stream
)
1282 #if !wxUSE_UNICODE // FIXME-UTF8: temporary, remove this with ANSI build
1283 return wxCRT_FputcA((char)c
, stream
);
1285 CALL_ANSI_OR_UNICODE(return,
1286 wxCRT_FputsA(c
.AsUTF8(), stream
),
1287 wxCRT_FputcW((wchar_t)c
, stream
));
1291 #ifdef wxCRT_PerrorA
1293 void wxPerror(const wxString
& s
)
1295 #ifdef wxCRT_PerrorW
1296 CALL_ANSI_OR_UNICODE(wxEMPTY_PARAMETER_VALUE
,
1297 wxCRT_PerrorA(s
.mb_str()),
1298 wxCRT_PerrorW(s
.wc_str()));
1300 wxCRT_PerrorA(s
.mb_str());
1304 #endif // wxCRT_PerrorA
1306 wchar_t *wxFgets(wchar_t *s
, int size
, FILE *stream
)
1308 wxCHECK_MSG( s
, NULL
, "empty buffer passed to wxFgets()" );
1310 wxCharBuffer
buf(size
- 1);
1311 // FIXME: this reads too little data if wxConvLibc uses UTF-8 ('size' wide
1312 // characters may be encoded by up to 'size'*4 bytes), but what
1314 if ( wxFgets(buf
.data(), size
, stream
) == NULL
)
1317 if ( wxConvLibc
.ToWChar(s
, size
, buf
, wxNO_LEN
) == wxCONV_FAILED
)
1323 // ----------------------------------------------------------------------------
1324 // wxScanf() and friends
1325 // ----------------------------------------------------------------------------
1327 #ifdef HAVE_VSSCANF // __VISUALC__ and __DMC__ see wx/crt.h
1328 int wxVsscanf(const char *str
, const char *format
, va_list ap
)
1329 { return wxCRT_VsscanfA(str
, format
, ap
); }
1330 int wxVsscanf(const wchar_t *str
, const wchar_t *format
, va_list ap
)
1331 { return wxCRT_VsscanfW(str
, format
, ap
); }
1332 int wxVsscanf(const wxCharBuffer
& str
, const char *format
, va_list ap
)
1333 { return wxCRT_VsscanfA(static_cast<const char*>(str
), format
, ap
); }
1334 int wxVsscanf(const wxWCharBuffer
& str
, const wchar_t *format
, va_list ap
)
1335 { return wxCRT_VsscanfW(str
, format
, ap
); }
1336 int wxVsscanf(const wxString
& str
, const char *format
, va_list ap
)
1337 { return wxCRT_VsscanfA(static_cast<const char*>(str
.mb_str()), format
, ap
); }
1338 int wxVsscanf(const wxString
& str
, const wchar_t *format
, va_list ap
)
1339 { return wxCRT_VsscanfW(str
.wc_str(), format
, ap
); }
1340 int wxVsscanf(const wxCStrData
& str
, const char *format
, va_list ap
)
1341 { return wxCRT_VsscanfA(static_cast<const char*>(str
.AsCharBuf()), format
, ap
); }
1342 int wxVsscanf(const wxCStrData
& str
, const wchar_t *format
, va_list ap
)
1343 { return wxCRT_VsscanfW(str
.AsWCharBuf(), format
, ap
); }
1344 #endif // HAVE_NO_VSSCANF