1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/wxchar.cpp
3 // Purpose: wxChar 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"
23 #include "wx/wxchar.h"
25 #define _ISOC9X_SOURCE 1 // to get vsscanf()
26 #define _BSD_SOURCE 1 // to still get strdup()
36 #include "wx/msw/wince/time.h"
40 #include "wx/string.h"
42 #include "wx/utils.h" // for wxMin and wxMax
46 #if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
53 #if defined(__MWERKS__) && __MSL__ >= 0x6000
59 size_t WXDLLEXPORT
wxMB2WC(wchar_t *buf
, const char *psz
, size_t n
)
61 // assume that we have mbsrtowcs() too if we have wcsrtombs()
64 memset(&mbstate
, 0, sizeof(mbstate_t));
69 if (n
) *buf
= wxT('\0');
73 return mbsrtowcs(buf
, &psz
, n
, &mbstate
);
75 return wxMbstowcs(buf
, psz
, n
);
79 // note that we rely on common (and required by Unix98 but unfortunately not
80 // C99) extension which allows to call mbs(r)towcs() with NULL output pointer
81 // to just get the size of the needed buffer -- this is needed as otherwise
82 // we have no idea about how much space we need and if the CRT doesn't
83 // support it (the only currently known example being Metrowerks, see
84 // wx/wxchar.h) we don't use its mbstowcs() at all
86 return mbsrtowcs((wchar_t *) NULL
, &psz
, 0, &mbstate
);
88 return wxMbstowcs((wchar_t *) NULL
, psz
, 0);
92 size_t WXDLLEXPORT
wxWC2MB(char *buf
, const wchar_t *pwz
, size_t n
)
96 memset(&mbstate
, 0, sizeof(mbstate_t));
101 // glibc2.1 chokes on null input
105 #ifdef HAVE_WCSRTOMBS
106 return wcsrtombs(buf
, &pwz
, n
, &mbstate
);
108 return wxWcstombs(buf
, pwz
, n
);
112 #ifdef HAVE_WCSRTOMBS
113 return wcsrtombs((char *) NULL
, &pwz
, 0, &mbstate
);
115 return wxWcstombs((char *) NULL
, pwz
, 0);
118 #endif // wxUSE_WCHAR_T
120 bool WXDLLEXPORT
wxOKlibc()
122 #if wxUSE_WCHAR_T && defined(__UNIX__) && defined(__GLIBC__) && !defined(__WINE__)
123 // glibc 2.0 uses UTF-8 even when it shouldn't
125 if ((MB_CUR_MAX
== 2) &&
126 (wxMB2WC(&res
, "\xdd\xa5", 1) == 1) &&
128 // this is UTF-8 allright, check whether that's what we want
129 char *cur_locale
= setlocale(LC_CTYPE
, NULL
);
130 if ((strlen(cur_locale
) < 4) ||
131 (strcasecmp(cur_locale
+ strlen(cur_locale
) - 4, "utf8")) ||
132 (strcasecmp(cur_locale
+ strlen(cur_locale
) - 5, "utf-8"))) {
133 // nope, don't use libc conversion
141 // ============================================================================
142 // printf() functions business
143 // ============================================================================
145 // special test mode: define all functions below even if we don't really need
146 // them to be able to test them
157 #define wxNEED_WPRINTF
159 int wxVfprintf( FILE *stream
, const wxChar
*format
, va_list argptr
);
162 // ----------------------------------------------------------------------------
163 // implement [v]snprintf() if the system doesn't provide a safe one
164 // or if the system's one does not support positional parameters
165 // (very useful for i18n purposes)
166 // ----------------------------------------------------------------------------
168 #if !defined(wxVsnprintf_)
170 #if !wxUSE_WXVSNPRINTF
171 #error wxUSE_WXVSNPRINTF must be 1 if our wxVsnprintf_ is used
174 // wxUSE_STRUTILS says our wxVsnprintf_ implementation to use or not to
175 // use wxStrlen and wxStrncpy functions over one-char processing loops.
177 // Some benchmarking revealed that wxUSE_STRUTILS == 1 has the following
180 // when in ANSI mode, this setting does not change almost anything
181 // when in Unicode mode, it gives ~ 50% of slowdown !
183 // both in ANSI and Unicode mode it gives ~ 60% of speedup !
185 #if defined(WIN32) && wxUSE_UNICODE
186 #define wxUSE_STRUTILS 0
188 #define wxUSE_STRUTILS 1
191 // some limits of our implementation
192 #define wxMAX_SVNPRINTF_ARGUMENTS 64
193 #define wxMAX_SVNPRINTF_FLAGBUFFER_LEN 32
194 #define wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN 512
196 // prefer snprintf over sprintf
197 #if defined(__VISUALC__) || \
198 (defined(__BORLANDC__) && __BORLANDC__ >= 0x540)
199 #define system_sprintf(buff, max, flags, data) \
200 ::_snprintf(buff, max, flags, data)
201 #elif defined(HAVE_SNPRINTF)
202 #define system_sprintf(buff, max, flags, data) \
203 ::snprintf(buff, max, flags, data)
204 #else // NB: at least sprintf() should always be available
205 // since 'max' is not used in this case, wxVsnprintf() should always
206 // ensure that 'buff' is big enough for all common needs
207 // (see wxMAX_SVNPRINTF_FLAGBUFFER_LEN and wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN)
208 #define system_sprintf(buff, max, flags, data) \
209 ::sprintf(buff, flags, data)
211 #define SYSTEM_SPRINTF_IS_UNSAFE
214 // the conversion specifiers accepted by wxVsnprintf_
215 enum wxPrintfArgType
{
218 wxPAT_INT
, // %d, %i, %o, %u, %x, %X
219 wxPAT_LONGINT
, // %ld, etc
221 wxPAT_LONGLONGINT
, // %Ld, etc
223 wxPAT_SIZET
, // %Zd, etc
225 wxPAT_DOUBLE
, // %e, %E, %f, %g, %G
226 wxPAT_LONGDOUBLE
, // %le, etc
230 wxPAT_CHAR
, // %hc (in ANSI mode: %c, too)
231 wxPAT_WCHAR
, // %lc (in Unicode mode: %c, too)
233 wxPAT_PCHAR
, // %s (related to a char *)
234 wxPAT_PWCHAR
, // %s (related to a wchar_t *)
237 wxPAT_NSHORTINT
, // %hn
238 wxPAT_NLONGINT
// %ln
241 // an argument passed to wxVsnprintf_
243 int pad_int
; // %d, %i, %o, %u, %x, %X
244 long int pad_longint
; // %ld, etc
246 wxLongLong_t pad_longlongint
; // %Ld, etc
248 size_t pad_sizet
; // %Zd, etc
250 double pad_double
; // %e, %E, %f, %g, %G
251 long double pad_longdouble
; // %le, etc
253 void *pad_pointer
; // %p
255 char pad_char
; // %hc (in ANSI mode: %c, too)
256 wchar_t pad_wchar
; // %lc (in Unicode mode: %c, too)
258 char *pad_pchar
; // %s (related to a char *)
259 wchar_t *pad_pwchar
; // %s (related to a wchar_t *)
262 short int *pad_nshortint
; // %hn
263 long int *pad_nlongint
; // %ln
267 // Contains parsed data relative to a conversion specifier given to
268 // wxVsnprintf_ and parsed from the format string
269 // NOTE: in C++ there is almost no difference between struct & classes thus
270 // there is no performance gain by using a struct here...
271 class wxPrintfConvSpec
275 // the position of the argument relative to this conversion specifier
278 // the type of this conversion specifier
279 wxPrintfArgType m_type
;
281 // the minimum and maximum width
282 // when one of this var is set to -1 it means: use the following argument
283 // in the stack as minimum/maximum width for this conversion specifier
284 int m_nMinWidth
, m_nMaxWidth
;
286 // does the argument need to the be aligned to left ?
289 // pointer to the '%' of this conversion specifier in the format string
290 // NOTE: this points somewhere in the string given to the Parse() function -
291 // it's task of the caller ensure that memory is still valid !
292 const wxChar
*m_pArgPos
;
294 // pointer to the last character of this conversion specifier in the
296 // NOTE: this points somewhere in the string given to the Parse() function -
297 // it's task of the caller ensure that memory is still valid !
298 const wxChar
*m_pArgEnd
;
300 // a little buffer where formatting flags like #+\.hlqLZ are stored by Parse()
301 // for use in Process()
302 // NB: even if this buffer is used only for numeric conversion specifiers and
303 // thus could be safely declared as a char[] buffer, we want it to be wxChar
304 // so that in Unicode builds we can avoid to convert its contents to Unicode
305 // chars when copying it in user's buffer.
306 char m_szFlags
[wxMAX_SVNPRINTF_FLAGBUFFER_LEN
];
311 // we don't declare this as a constructor otherwise it would be called
312 // automatically and we don't want this: to be optimized, wxVsnprintf_
313 // calls this function only on really-used instances of this class.
316 // Parses the first conversion specifier in the given string, which must
317 // begin with a '%'. Returns false if the first '%' does not introduce a
318 // (valid) conversion specifier and thus should be ignored.
319 bool Parse(const wxChar
*format
);
321 // Process this conversion specifier and puts the result in the given
322 // buffer. Returns the number of characters written in 'buf' or -1 if
323 // there's not enough space.
324 int Process(wxChar
*buf
, size_t lenMax
, wxPrintfArg
*p
, size_t written
);
326 // Loads the argument of this conversion specifier from given va_list.
327 bool LoadArg(wxPrintfArg
*p
, va_list &argptr
);
330 // An helper function of LoadArg() which is used to handle the '*' flag
331 void ReplaceAsteriskWith(int w
);
334 void wxPrintfConvSpec::Init()
337 m_nMaxWidth
= 0xFFFF;
339 m_bAlignLeft
= false;
340 m_pArgPos
= m_pArgEnd
= NULL
;
341 m_type
= wxPAT_INVALID
;
343 // this character will never be removed from m_szFlags array and
344 // is important when calling sprintf() in wxPrintfConvSpec::Process() !
348 bool wxPrintfConvSpec::Parse(const wxChar
*format
)
352 // temporary parse data
354 bool in_prec
, // true if we found the dot in some previous iteration
355 prec_dot
; // true if the dot has been already added to m_szFlags
358 m_bAlignLeft
= in_prec
= prec_dot
= false;
359 m_pArgPos
= m_pArgEnd
= format
;
363 if (in_prec && !prec_dot) \
365 m_szFlags[flagofs++] = '.'; \
370 const wxChar ch
= *(++m_pArgEnd
);
374 return false; // not really an argument
377 return false; // not really an argument
385 m_szFlags
[flagofs
++] = char(ch
);
391 m_szFlags
[flagofs
++] = char(ch
);
399 // dot will be auto-added to m_szFlags if non-negative
406 m_szFlags
[flagofs
++] = char(ch
);
410 // NB: it's safe to use flagofs-1 as flagofs always start from 1
411 if (m_szFlags
[flagofs
-1] == 'l') // 'll' modifier is the same as 'L' or 'q'
416 m_szFlags
[flagofs
++] = char(ch
);
423 m_szFlags
[flagofs
++] = char(ch
);
426 // under Windows we support the special '%I64' notation as longlong
427 // integer conversion specifier for MSVC compatibility
428 // (it behaves exactly as '%lli' or '%Li' or '%qi')
430 if (*(m_pArgEnd
+1) != wxT('6') ||
431 *(m_pArgEnd
+2) != wxT('4'))
432 return false; // bad format
439 m_szFlags
[flagofs
++] = char(ch
);
440 m_szFlags
[flagofs
++] = '6';
441 m_szFlags
[flagofs
++] = '4';
448 m_szFlags
[flagofs
++] = char(ch
);
456 // tell Process() to use the next argument
457 // in the stack as maxwidth...
462 // tell Process() to use the next argument
463 // in the stack as minwidth...
467 // save the * in our formatting buffer...
468 // will be replaced later by Process()
469 m_szFlags
[flagofs
++] = char(ch
);
472 case wxT('1'): case wxT('2'): case wxT('3'):
473 case wxT('4'): case wxT('5'): case wxT('6'):
474 case wxT('7'): case wxT('8'): case wxT('9'):
478 while ( (*m_pArgEnd
>= wxT('0')) &&
479 (*m_pArgEnd
<= wxT('9')) )
481 m_szFlags
[flagofs
++] = char(*m_pArgEnd
);
482 len
= len
*10 + (*m_pArgEnd
- wxT('0'));
491 m_pArgEnd
--; // the main loop pre-increments n again
495 case wxT('$'): // a positional parameter (e.g. %2$s) ?
497 if (m_nMinWidth
<= 0)
498 break; // ignore this formatting flag as no
499 // numbers are preceding it
501 // remove from m_szFlags all digits previously added
504 } while (m_szFlags
[flagofs
] >= '1' &&
505 m_szFlags
[flagofs
] <= '9');
507 // re-adjust the offset making it point to the
508 // next free char of m_szFlags
523 m_szFlags
[flagofs
++] = char(ch
);
524 m_szFlags
[flagofs
] = '\0';
528 // NB: 'short int' value passed through '...'
529 // is promoted to 'int', so we have to get
530 // an int from stack even if we need a short
533 m_type
= wxPAT_LONGINT
;
536 m_type
= wxPAT_LONGLONGINT
;
537 #else // !wxLongLong_t
538 m_type
= wxPAT_LONGINT
;
539 #endif // wxLongLong_t/!wxLongLong_t
541 m_type
= wxPAT_SIZET
;
551 m_szFlags
[flagofs
++] = char(ch
);
552 m_szFlags
[flagofs
] = '\0';
554 m_type
= wxPAT_LONGDOUBLE
;
556 m_type
= wxPAT_DOUBLE
;
561 m_type
= wxPAT_POINTER
;
562 m_szFlags
[flagofs
++] = char(ch
);
563 m_szFlags
[flagofs
] = '\0';
570 // in Unicode mode %hc == ANSI character
571 // and in ANSI mode, %hc == %c == ANSI...
576 // in ANSI mode %lc == Unicode character
577 // and in Unicode mode, %lc == %c == Unicode...
578 m_type
= wxPAT_WCHAR
;
583 // in Unicode mode, %c == Unicode character
584 m_type
= wxPAT_WCHAR
;
586 // in ANSI mode, %c == ANSI character
596 // Unicode mode wx extension: we'll let %hs mean non-Unicode
597 // strings (when in ANSI mode, %s == %hs == ANSI string)
598 m_type
= wxPAT_PCHAR
;
602 // in Unicode mode, %ls == %s == Unicode string
603 // in ANSI mode, %ls == Unicode string
604 m_type
= wxPAT_PWCHAR
;
609 m_type
= wxPAT_PWCHAR
;
611 m_type
= wxPAT_PCHAR
;
621 m_type
= wxPAT_NSHORTINT
;
623 m_type
= wxPAT_NLONGINT
;
628 // bad format, don't consider this an argument;
629 // leave it unchanged
633 if (flagofs
== wxMAX_SVNPRINTF_FLAGBUFFER_LEN
)
635 wxLogDebug(wxT("Too many flags specified for a single conversion specifier!"));
641 return true; // parsing was successful
645 void wxPrintfConvSpec::ReplaceAsteriskWith(int width
)
647 char temp
[wxMAX_SVNPRINTF_FLAGBUFFER_LEN
];
649 // find the first * in our flag buffer
650 char *pwidth
= strchr(m_szFlags
, '*');
651 wxCHECK_RET(pwidth
, _T("field width must be specified"));
653 // save what follows the * (the +1 is to skip the asterisk itself!)
654 strcpy(temp
, pwidth
+1);
657 pwidth
[0] = wxT('-');
661 // replace * with the actual integer given as width
662 #ifndef SYSTEM_SPRINTF_IS_UNSAFE
663 int maxlen
= (m_szFlags
+ wxMAX_SVNPRINTF_FLAGBUFFER_LEN
- pwidth
) /
666 int offset
= system_sprintf(pwidth
, maxlen
, "%d", abs(width
));
668 // restore after the expanded * what was following it
669 strcpy(pwidth
+offset
, temp
);
672 bool wxPrintfConvSpec::LoadArg(wxPrintfArg
*p
, va_list &argptr
)
674 // did the '*' width/precision specifier was used ?
675 if (m_nMaxWidth
== -1)
677 // take the maxwidth specifier from the stack
678 m_nMaxWidth
= va_arg(argptr
, int);
682 ReplaceAsteriskWith(m_nMaxWidth
);
685 if (m_nMinWidth
== -1)
687 // take the minwidth specifier from the stack
688 m_nMinWidth
= va_arg(argptr
, int);
690 ReplaceAsteriskWith(m_nMinWidth
);
693 m_bAlignLeft
= !m_bAlignLeft
;
694 m_nMinWidth
= -m_nMinWidth
;
700 p
->pad_int
= va_arg(argptr
, int);
703 p
->pad_longint
= va_arg(argptr
, long int);
706 case wxPAT_LONGLONGINT
:
707 p
->pad_longlongint
= va_arg(argptr
, wxLongLong_t
);
709 #endif // wxLongLong_t
711 p
->pad_sizet
= va_arg(argptr
, size_t);
714 p
->pad_double
= va_arg(argptr
, double);
716 case wxPAT_LONGDOUBLE
:
717 p
->pad_longdouble
= va_arg(argptr
, long double);
720 p
->pad_pointer
= va_arg(argptr
, void *);
724 p
->pad_char
= (char)va_arg(argptr
, int); // char is promoted to int when passed through '...'
727 p
->pad_wchar
= (wchar_t)va_arg(argptr
, int); // char is promoted to int when passed through '...'
731 p
->pad_pchar
= va_arg(argptr
, char *);
734 p
->pad_pwchar
= va_arg(argptr
, wchar_t *);
738 p
->pad_nint
= va_arg(argptr
, int *);
740 case wxPAT_NSHORTINT
:
741 p
->pad_nshortint
= va_arg(argptr
, short int *);
744 p
->pad_nlongint
= va_arg(argptr
, long int *);
752 return true; // loading was successful
755 int wxPrintfConvSpec::Process(wxChar
*buf
, size_t lenMax
, wxPrintfArg
*p
, size_t written
)
757 // buffer to avoid dynamic memory allocation each time for small strings;
758 // note that this buffer is used only to hold results of number formatting,
759 // %s directly writes user's string in buf, without using szScratch
760 char szScratch
[wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
];
761 size_t lenScratch
= 0, lenCur
= 0;
763 #define APPEND_CH(ch) \
765 if ( lenCur == lenMax ) \
768 buf[lenCur++] = ch; \
771 #define APPEND_STR(s) \
773 for ( const wxChar *p = s; *p; p++ ) \
782 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_int
);
786 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_longint
);
790 case wxPAT_LONGLONGINT
:
791 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_longlongint
);
793 #endif // SIZEOF_LONG_LONG
796 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_sizet
);
799 case wxPAT_LONGDOUBLE
:
800 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_longdouble
);
804 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_double
);
808 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_pointer
);
818 if (m_type
== wxPAT_CHAR
)
820 // user passed a character explicitely indicated as ANSI...
821 const char buf
[2] = { p
->pad_char
, 0 };
822 val
= wxString(buf
, wxConvLibc
)[0u];
824 //wprintf(L"converting ANSI=>Unicode"); // for debug
830 if (m_type
== wxPAT_WCHAR
)
832 // user passed a character explicitely indicated as Unicode...
833 const wchar_t buf
[2] = { p
->pad_wchar
, 0 };
834 val
= wxString(buf
, wxConvLibc
)[0u];
836 //printf("converting Unicode=>ANSI"); // for debug
844 for (i
= 1; i
< (size_t)m_nMinWidth
; i
++)
850 for (i
= 1; i
< (size_t)m_nMinWidth
; i
++)
863 if (m_type
== wxPAT_PCHAR
)
865 // user passed a string explicitely indicated as ANSI...
866 val
= s
= wxString(p
->pad_pchar
, wxConvLibc
);
868 //wprintf(L"converting ANSI=>Unicode"); // for debug
874 if (m_type
== wxPAT_PWCHAR
)
876 // user passed a string explicitely indicated as Unicode...
877 val
= s
= wxString(p
->pad_pwchar
, wxConvLibc
);
879 //printf("converting Unicode=>ANSI"); // for debug
888 // at this point we are sure that m_nMaxWidth is positive or null
889 // (see top of wxPrintfConvSpec::LoadArg)
890 len
= wxMin((unsigned int)m_nMaxWidth
, wxStrlen(val
));
892 for ( len
= 0; val
[len
] && (len
< m_nMaxWidth
); len
++ )
896 else if (m_nMaxWidth
>= 6)
911 for (i
= len
; i
< m_nMinWidth
; i
++)
916 len
= wxMin((unsigned int)len
, lenMax
-lenCur
);
917 wxStrncpy(buf
+lenCur
, val
, len
);
920 for (i
= 0; i
< len
; i
++)
926 for (i
= len
; i
< m_nMinWidth
; i
++)
933 *p
->pad_nint
= written
;
936 case wxPAT_NSHORTINT
:
937 *p
->pad_nshortint
= (short int)written
;
941 *p
->pad_nlongint
= written
;
949 // if we used system's sprintf() then we now need to append the s_szScratch
950 // buffer to the given one...
956 case wxPAT_LONGLONGINT
:
959 case wxPAT_LONGDOUBLE
:
962 wxASSERT(lenScratch
< wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
);
965 if (lenMax
< lenScratch
)
967 // fill output buffer and then return -1
968 wxStrncpy(buf
, szScratch
, lenMax
);
971 wxStrncpy(buf
, szScratch
, lenScratch
);
972 lenCur
+= lenScratch
;
976 // Copy the char scratch to the wide output. This requires
977 // conversion, but we can optimise by making use of the fact
978 // that we are formatting numbers, this should mean only 7-bit
979 // ascii characters are involved.
980 wxChar
*bufptr
= buf
;
981 const wxChar
*bufend
= buf
+ lenMax
;
982 const char *scratchptr
= szScratch
;
984 // Simply copy each char to a wxChar, stopping on the first
985 // null or non-ascii byte. Checking '(signed char)*scratchptr
986 // > 0' is an extra optimisation over '*scratchptr != 0 &&
987 // isascii(*scratchptr)', though it assumes signed char is
988 // 8-bit 2 complement.
989 while ((signed char)*scratchptr
> 0 && bufptr
!= bufend
)
990 *bufptr
++ = *scratchptr
++;
992 if (bufptr
== bufend
)
995 lenCur
+= bufptr
- buf
;
997 // check if the loop stopped on a non-ascii char, if yes then
998 // fall back to wxMB2WX
1001 size_t len
= wxMB2WX(bufptr
, scratchptr
, bufend
- bufptr
);
1003 if (len
&& len
!= (size_t)(-1))
1004 if (bufptr
[len
- 1])
1014 break; // all other cases were completed previously
1020 // Copy chars from source to dest converting '%%' to '%'. Takes at most maxIn
1021 // chars from source and write at most outMax chars to dest, returns the
1022 // number of chars actually written. Does not treat null specially.
1024 static int wxCopyStrWithPercents(
1028 const wxChar
*source
)
1036 for ( i
= 0; i
< maxIn
-1 && written
< maxOut
; source
++, i
++)
1038 dest
[written
++] = *source
;
1039 if (*(source
+1) == wxT('%'))
1041 // skip this additional '%' character
1047 if (i
< maxIn
&& written
< maxOut
)
1048 // copy last character inconditionally
1049 dest
[written
++] = *source
;
1054 int WXDLLEXPORT
wxVsnprintf_(wxChar
*buf
, size_t lenMax
,
1055 const wxChar
*format
, va_list argptr
)
1057 // useful for debugging, to understand if we are really using this function
1058 // rather than the system implementation
1060 wprintf(L
"Using wxVsnprintf_\n");
1064 wxPrintfConvSpec arg
[wxMAX_SVNPRINTF_ARGUMENTS
];
1065 wxPrintfArg argdata
[wxMAX_SVNPRINTF_ARGUMENTS
];
1066 wxPrintfConvSpec
*pspec
[wxMAX_SVNPRINTF_ARGUMENTS
] = { NULL
};
1070 // number of characters in the buffer so far, must be less than lenMax
1074 const wxChar
*toparse
= format
;
1076 // parse the format string
1077 bool posarg_present
= false, nonposarg_present
= false;
1078 for (; *toparse
!= wxT('\0'); toparse
++)
1080 if (*toparse
== wxT('%') )
1084 // let's see if this is a (valid) conversion specifier...
1085 if (arg
[nargs
].Parse(toparse
))
1088 wxPrintfConvSpec
*current
= &arg
[nargs
];
1090 // make toparse point to the end of this specifier
1091 toparse
= current
->m_pArgEnd
;
1093 if (current
->m_pos
> 0)
1095 // the positionals start from number 1... adjust the index
1097 posarg_present
= true;
1101 // not a positional argument...
1102 current
->m_pos
= nargs
;
1103 nonposarg_present
= true;
1106 // this conversion specifier is tied to the pos-th argument...
1107 pspec
[current
->m_pos
] = current
;
1110 if (nargs
== wxMAX_SVNPRINTF_ARGUMENTS
)
1112 wxLogDebug(wxT("A single call to wxVsnprintf() has more than %d arguments; ")
1113 wxT("ignoring all remaining arguments."), wxMAX_SVNPRINTF_ARGUMENTS
);
1114 break; // cannot handle any additional conv spec
1119 // it's safe to look in the next character of toparse as at worst
1121 if (*(toparse
+1) == wxT('%'))
1122 toparse
++; // the Parse() returned false because we've found a %%
1127 if (posarg_present
&& nonposarg_present
)
1130 return -1; // format strings with both positional and
1131 } // non-positional conversion specifier are unsupported !!
1133 // on platforms where va_list is an array type, it is necessary to make a
1134 // copy to be able to pass it to LoadArg as a reference.
1137 wxVaCopy(ap
, argptr
);
1139 // now load arguments from stack
1140 for (i
=0; i
< nargs
&& ok
; i
++)
1142 // !pspec[i] means that the user forgot a positional parameter (e.g. %$1s %$3s);
1143 // LoadArg == false means that wxPrintfConvSpec::Parse failed to set the
1144 // conversion specifier 'type' to a valid value...
1145 ok
= pspec
[i
] && pspec
[i
]->LoadArg(&argdata
[i
], ap
);
1150 // something failed while loading arguments from the variable list...
1151 // (e.g. the user repeated twice the same positional argument)
1158 // finally, process each conversion specifier with its own argument
1160 for (i
=0; i
< nargs
; i
++)
1162 // copy in the output buffer the portion of the format string between
1163 // last specifier and the current one
1164 size_t tocopy
= ( arg
[i
].m_pArgPos
- toparse
);
1166 lenCur
+= wxCopyStrWithPercents(lenMax
- lenCur
, buf
+ lenCur
,
1168 if (lenCur
== lenMax
)
1170 buf
[lenMax
- 1] = 0;
1171 return lenMax
+1; // not enough space in the output buffer !
1174 // process this specifier directly in the output buffer
1175 int n
= arg
[i
].Process(buf
+lenCur
, lenMax
- lenCur
, &argdata
[arg
[i
].m_pos
], lenCur
);
1178 buf
[lenMax
-1] = wxT('\0'); // be sure to always NUL-terminate the string
1179 return lenMax
+1; // not enough space in the output buffer !
1183 // the +1 is because wxPrintfConvSpec::m_pArgEnd points to the last character
1184 // of the format specifier, but we are not interested to it...
1185 toparse
= arg
[i
].m_pArgEnd
+ 1;
1188 // copy portion of the format string after last specifier
1189 // NOTE: toparse is pointing to the character just after the last processed
1190 // conversion specifier
1191 // NOTE2: the +1 is because we want to copy also the '\0'
1192 size_t tocopy
= wxStrlen(format
) + 1 - ( toparse
- format
) ;
1194 lenCur
+= wxCopyStrWithPercents(lenMax
- lenCur
, buf
+ lenCur
,
1195 tocopy
, toparse
) - 1;
1199 return lenMax
+1; // not enough space in the output buffer !
1203 // wxASSERT(lenCur == wxStrlen(buf));
1204 // in fact if we embedded NULLs in the output buffer (using %c with a '\0')
1205 // such check would fail
1214 #else // wxVsnprintf_ is defined
1216 #if wxUSE_WXVSNPRINTF
1217 #error wxUSE_WXVSNPRINTF must be 0 if our wxVsnprintf_ is not used
1220 #endif // !wxVsnprintf_
1222 #if !defined(wxSnprintf_)
1223 int WXDLLEXPORT
wxSnprintf_(wxChar
*buf
, size_t len
, const wxChar
*format
, ...)
1226 va_start(argptr
, format
);
1228 int iLen
= wxVsnprintf_(buf
, len
, format
, argptr
);
1234 #endif // wxSnprintf_
1236 #if defined(__DMC__)
1237 /* Digital Mars adds count to _stprintf (C99) so convert */
1239 int wxSprintf (wchar_t * __RESTRICT s
, const wchar_t * __RESTRICT format
, ... )
1243 va_start( arglist
, format
);
1244 int iLen
= swprintf ( s
, -1, format
, arglist
);
1249 #endif // wxUSE_UNICODE
1253 // ----------------------------------------------------------------------------
1254 // implement the standard IO functions for wide char if libc doesn't have them
1255 // ----------------------------------------------------------------------------
1258 int wxFputs(const wchar_t *ws
, FILE *stream
)
1260 wxCharBuffer
buf(wxConvLibc
.cWC2MB(ws
));
1264 // counting the number of wide characters written isn't worth the trouble,
1265 // simply distinguish between ok and error
1266 return fputs(buf
, stream
) == -1 ? -1 : 0;
1268 #endif // wxNEED_FPUTS
1271 int wxPuts(const wxChar
*ws
)
1273 int rc
= wxFputs(ws
, stdout
);
1276 if ( wxFputs(L
"\n", stdout
) == -1 )
1284 #endif // wxNEED_PUTS
1287 int /* not wint_t */ wxPutc(wchar_t wc
, FILE *stream
)
1289 wchar_t ws
[2] = { wc
, L
'\0' };
1291 return wxFputs(ws
, stream
);
1293 #endif // wxNEED_PUTC
1295 // NB: we only implement va_list functions here, the ones taking ... are
1296 // defined below for wxNEED_PRINTF_CONVERSION case anyhow and we reuse
1297 // the definitions there to avoid duplicating them here
1298 #ifdef wxNEED_WPRINTF
1300 // TODO: implement the scanf() functions
1301 int vwscanf(const wxChar
*format
, va_list argptr
)
1303 wxFAIL_MSG( _T("TODO") );
1308 int vswscanf(const wxChar
*ws
, const wxChar
*format
, va_list argptr
)
1310 // The best we can do without proper Unicode support in glibc is to
1311 // convert the strings into MB representation and run ANSI version
1312 // of the function. This doesn't work with %c and %s because of difference
1313 // in size of char and wchar_t, though.
1315 wxCHECK_MSG( wxStrstr(format
, _T("%s")) == NULL
, -1,
1316 _T("incomplete vswscanf implementation doesn't allow %s") );
1317 wxCHECK_MSG( wxStrstr(format
, _T("%c")) == NULL
, -1,
1318 _T("incomplete vswscanf implementation doesn't allow %c") );
1321 wxVaCopy(argcopy
, argptr
);
1322 return vsscanf(wxConvLibc
.cWX2MB(ws
), wxConvLibc
.cWX2MB(format
), argcopy
);
1325 int vfwscanf(FILE *stream
, const wxChar
*format
, va_list argptr
)
1327 wxFAIL_MSG( _T("TODO") );
1332 #define vswprintf wxVsnprintf_
1334 int vfwprintf(FILE *stream
, const wxChar
*format
, va_list argptr
)
1337 int rc
= s
.PrintfV(format
, argptr
);
1341 // we can't do much better without Unicode support in libc...
1342 if ( fprintf(stream
, "%s", (const char*)s
.mb_str() ) == -1 )
1349 int vwprintf(const wxChar
*format
, va_list argptr
)
1351 return wxVfprintf(stdout
, format
, argptr
);
1354 #endif // wxNEED_WPRINTF
1356 #ifdef wxNEED_PRINTF_CONVERSION
1358 // ----------------------------------------------------------------------------
1359 // wxFormatConverter: class doing the "%s" -> "%ls" conversion
1360 // ----------------------------------------------------------------------------
1363 Here are the gory details. We want to follow the Windows/MS conventions,
1368 format specifier results in
1369 -----------------------------------
1371 %lc, %C, %lC wchar_t
1375 format specifier results in
1376 -----------------------------------
1378 %c, %lc, %lC wchar_t
1381 while on POSIX systems we have %C identical to %lc and %c always means char
1382 (in any mode) while %lc always means wchar_t,
1384 So to use native functions in order to get our semantics we must do the
1385 following translations in Unicode mode (nothing to do in ANSI mode):
1387 wxWidgets specifier POSIX specifier
1388 ----------------------------------------
1394 And, of course, the same should be done for %s as well.
1397 class wxFormatConverter
1400 wxFormatConverter(const wxChar
*format
);
1402 // notice that we only translated the string if m_fmtOrig == NULL (as set
1403 // by CopyAllBefore()), otherwise we should simply use the original format
1404 operator const wxChar
*() const
1405 { return m_fmtOrig
? m_fmtOrig
: m_fmt
.c_str(); }
1408 // copy another character to the translated format: this function does the
1409 // copy if we are translating but doesn't do anything at all if we don't,
1410 // so we don't create the translated format string at all unless we really
1411 // need to (i.e. InsertFmtChar() is called)
1412 wxChar
CopyFmtChar(wxChar ch
)
1416 // we're translating, do copy
1421 // simply increase the count which should be copied by
1422 // CopyAllBefore() later if needed
1429 // insert an extra character
1430 void InsertFmtChar(wxChar ch
)
1434 // so far we haven't translated anything yet
1441 void CopyAllBefore()
1443 wxASSERT_MSG( m_fmtOrig
&& m_fmt
.empty(), _T("logic error") );
1445 m_fmt
= wxString(m_fmtOrig
, m_nCopied
);
1447 // we won't need it any longer
1451 static bool IsFlagChar(wxChar ch
)
1453 return ch
== _T('-') || ch
== _T('+') ||
1454 ch
== _T('0') || ch
== _T(' ') || ch
== _T('#');
1457 void SkipDigits(const wxChar
**ptpc
)
1459 while ( **ptpc
>= _T('0') && **ptpc
<= _T('9') )
1460 CopyFmtChar(*(*ptpc
)++);
1463 // the translated format
1466 // the original format
1467 const wxChar
*m_fmtOrig
;
1469 // the number of characters already copied
1473 wxFormatConverter::wxFormatConverter(const wxChar
*format
)
1480 if ( CopyFmtChar(*format
++) == _T('%') )
1483 while ( IsFlagChar(*format
) )
1484 CopyFmtChar(*format
++);
1486 // and possible width
1487 if ( *format
== _T('*') )
1488 CopyFmtChar(*format
++);
1490 SkipDigits(&format
);
1493 if ( *format
== _T('.') )
1495 CopyFmtChar(*format
++);
1496 if ( *format
== _T('*') )
1497 CopyFmtChar(*format
++);
1499 SkipDigits(&format
);
1502 // next we can have a size modifier
1518 // "ll" has a different meaning!
1519 if ( format
[1] != _T('l') )
1525 //else: fall through
1531 // and finally we should have the type
1536 // %C and %hC -> %c and %lC -> %lc
1538 CopyFmtChar(_T('l'));
1540 InsertFmtChar(*format
++ == _T('C') ? _T('c') : _T('s'));
1545 // %c -> %lc but %hc stays %hc and %lc is still %lc
1546 if ( size
== Default
)
1547 InsertFmtChar(_T('l'));
1551 // nothing special to do
1552 if ( size
!= Default
)
1553 CopyFmtChar(*(format
- 1));
1554 CopyFmtChar(*format
++);
1560 #else // !wxNEED_PRINTF_CONVERSION
1561 // no conversion necessary
1562 #define wxFormatConverter(x) (x)
1563 #endif // wxNEED_PRINTF_CONVERSION/!wxNEED_PRINTF_CONVERSION
1566 // For testing the format converter
1567 wxString
wxConvertFormat(const wxChar
*format
)
1569 return wxString(wxFormatConverter(format
));
1573 // ----------------------------------------------------------------------------
1574 // wxPrintf(), wxScanf() and relatives
1575 // ----------------------------------------------------------------------------
1577 #if defined(wxNEED_PRINTF_CONVERSION) || defined(wxNEED_WPRINTF)
1579 int wxScanf( const wxChar
*format
, ... )
1582 va_start(argptr
, format
);
1584 int ret
= vwscanf(wxFormatConverter(format
), argptr
);
1591 int wxSscanf( const wxChar
*str
, const wxChar
*format
, ... )
1594 va_start(argptr
, format
);
1596 int ret
= vswscanf( str
, wxFormatConverter(format
), argptr
);
1603 int wxFscanf( FILE *stream
, const wxChar
*format
, ... )
1606 va_start(argptr
, format
);
1607 int ret
= vfwscanf(stream
, wxFormatConverter(format
), argptr
);
1614 int wxPrintf( const wxChar
*format
, ... )
1617 va_start(argptr
, format
);
1619 int ret
= vwprintf( wxFormatConverter(format
), argptr
);
1627 int wxSnprintf( wxChar
*str
, size_t size
, const wxChar
*format
, ... )
1630 va_start(argptr
, format
);
1632 int ret
= vswprintf( str
, size
, wxFormatConverter(format
), argptr
);
1634 // VsnprintfTestCase reveals that glibc's implementation of vswprintf
1635 // doesn't nul terminate on truncation.
1642 #endif // wxSnprintf
1644 int wxSprintf( wxChar
*str
, const wxChar
*format
, ... )
1647 va_start(argptr
, format
);
1649 // note that wxString::FormatV() uses wxVsnprintf(), not wxSprintf(), so
1650 // it's safe to implement this one in terms of it
1651 wxString
s(wxString::FormatV(format
, argptr
));
1659 int wxFprintf( FILE *stream
, const wxChar
*format
, ... )
1662 va_start( argptr
, format
);
1664 int ret
= vfwprintf( stream
, wxFormatConverter(format
), argptr
);
1671 int wxVsscanf( const wxChar
*str
, const wxChar
*format
, va_list argptr
)
1673 return vswscanf( str
, wxFormatConverter(format
), argptr
);
1676 int wxVfprintf( FILE *stream
, const wxChar
*format
, va_list argptr
)
1678 return vfwprintf( stream
, wxFormatConverter(format
), argptr
);
1681 int wxVprintf( const wxChar
*format
, va_list argptr
)
1683 return vwprintf( wxFormatConverter(format
), argptr
);
1687 int wxVsnprintf( wxChar
*str
, size_t size
, const wxChar
*format
, va_list argptr
)
1689 return vswprintf( str
, size
, wxFormatConverter(format
), argptr
);
1691 #endif // wxVsnprintf
1693 int wxVsprintf( wxChar
*str
, const wxChar
*format
, va_list argptr
)
1695 // same as for wxSprintf()
1696 return vswprintf(str
, INT_MAX
/ 4, wxFormatConverter(format
), argptr
);
1699 #endif // wxNEED_PRINTF_CONVERSION
1703 // ----------------------------------------------------------------------------
1704 // ctype.h stuff (currently unused)
1705 // ----------------------------------------------------------------------------
1707 #if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
1708 inline WORD
wxMSW_ctype(wxChar ch
)
1711 GetStringTypeEx(LOCALE_USER_DEFAULT
, CT_CTYPE1
, &ch
, 1, &ret
);
1715 WXDLLEXPORT
int wxIsalnum(wxChar ch
) { return IsCharAlphaNumeric(ch
); }
1716 WXDLLEXPORT
int wxIsalpha(wxChar ch
) { return IsCharAlpha(ch
); }
1717 WXDLLEXPORT
int wxIscntrl(wxChar ch
) { return wxMSW_ctype(ch
) & C1_CNTRL
; }
1718 WXDLLEXPORT
int wxIsdigit(wxChar ch
) { return wxMSW_ctype(ch
) & C1_DIGIT
; }
1719 WXDLLEXPORT
int wxIsgraph(wxChar ch
) { return wxMSW_ctype(ch
) & (C1_DIGIT
|C1_PUNCT
|C1_ALPHA
); }
1720 WXDLLEXPORT
int wxIslower(wxChar ch
) { return IsCharLower(ch
); }
1721 WXDLLEXPORT
int wxIsprint(wxChar ch
) { return wxMSW_ctype(ch
) & (C1_DIGIT
|C1_SPACE
|C1_PUNCT
|C1_ALPHA
); }
1722 WXDLLEXPORT
int wxIspunct(wxChar ch
) { return wxMSW_ctype(ch
) & C1_PUNCT
; }
1723 WXDLLEXPORT
int wxIsspace(wxChar ch
) { return wxMSW_ctype(ch
) & C1_SPACE
; }
1724 WXDLLEXPORT
int wxIsupper(wxChar ch
) { return IsCharUpper(ch
); }
1725 WXDLLEXPORT
int wxIsxdigit(wxChar ch
) { return wxMSW_ctype(ch
) & C1_XDIGIT
; }
1726 WXDLLEXPORT
int wxTolower(wxChar ch
) { return (wxChar
)CharLower((LPTSTR
)(ch
)); }
1727 WXDLLEXPORT
int wxToupper(wxChar ch
) { return (wxChar
)CharUpper((LPTSTR
)(ch
)); }
1730 #ifdef wxNEED_WX_MBSTOWCS
1732 WXDLLEXPORT
size_t wxMbstowcs (wchar_t * out
, const char * in
, size_t outlen
)
1742 const char* origin
= in
;
1744 while (outlen
-- && *in
)
1746 *out
++ = (wchar_t) *in
++;
1754 WXDLLEXPORT
size_t wxWcstombs (char * out
, const wchar_t * in
, size_t outlen
)
1764 const wchar_t* origin
= in
;
1766 while (outlen
-- && *in
)
1768 *out
++ = (char) *in
++;
1776 #endif // wxNEED_WX_MBSTOWCS
1778 #if defined(wxNEED_WX_CTYPE_H)
1780 #include <CoreFoundation/CoreFoundation.h>
1782 #define cfalnumset CFCharacterSetGetPredefined(kCFCharacterSetAlphaNumeric)
1783 #define cfalphaset CFCharacterSetGetPredefined(kCFCharacterSetLetter)
1784 #define cfcntrlset CFCharacterSetGetPredefined(kCFCharacterSetControl)
1785 #define cfdigitset CFCharacterSetGetPredefined(kCFCharacterSetDecimalDigit)
1786 //CFCharacterSetRef cfgraphset = kCFCharacterSetControl && !' '
1787 #define cflowerset CFCharacterSetGetPredefined(kCFCharacterSetLowercaseLetter)
1788 //CFCharacterSetRef cfprintset = !kCFCharacterSetControl
1789 #define cfpunctset CFCharacterSetGetPredefined(kCFCharacterSetPunctuation)
1790 #define cfspaceset CFCharacterSetGetPredefined(kCFCharacterSetWhitespaceAndNewline)
1791 #define cfupperset CFCharacterSetGetPredefined(kCFCharacterSetUppercaseLetter)
1793 WXDLLEXPORT
int wxIsalnum(wxChar ch
) { return CFCharacterSetIsCharacterMember(cfalnumset
, ch
); }
1794 WXDLLEXPORT
int wxIsalpha(wxChar ch
) { return CFCharacterSetIsCharacterMember(cfalphaset
, ch
); }
1795 WXDLLEXPORT
int wxIscntrl(wxChar ch
) { return CFCharacterSetIsCharacterMember(cfcntrlset
, ch
); }
1796 WXDLLEXPORT
int wxIsdigit(wxChar ch
) { return CFCharacterSetIsCharacterMember(cfdigitset
, ch
); }
1797 WXDLLEXPORT
int wxIsgraph(wxChar ch
) { return !CFCharacterSetIsCharacterMember(cfcntrlset
, ch
) && ch
!= ' '; }
1798 WXDLLEXPORT
int wxIslower(wxChar ch
) { return CFCharacterSetIsCharacterMember(cflowerset
, ch
); }
1799 WXDLLEXPORT
int wxIsprint(wxChar ch
) { return !CFCharacterSetIsCharacterMember(cfcntrlset
, ch
); }
1800 WXDLLEXPORT
int wxIspunct(wxChar ch
) { return CFCharacterSetIsCharacterMember(cfpunctset
, ch
); }
1801 WXDLLEXPORT
int wxIsspace(wxChar ch
) { return CFCharacterSetIsCharacterMember(cfspaceset
, ch
); }
1802 WXDLLEXPORT
int wxIsupper(wxChar ch
) { return CFCharacterSetIsCharacterMember(cfupperset
, ch
); }
1803 WXDLLEXPORT
int wxIsxdigit(wxChar ch
) { return wxIsdigit(ch
) || (ch
>='a' && ch
<='f') || (ch
>='A' && ch
<='F'); }
1804 WXDLLEXPORT
int wxTolower(wxChar ch
) { return (wxChar
)tolower((char)(ch
)); }
1805 WXDLLEXPORT
int wxToupper(wxChar ch
) { return (wxChar
)toupper((char)(ch
)); }
1807 #endif // wxNEED_WX_CTYPE_H
1811 WXDLLEXPORT
char *wxStrdupA(const char *s
)
1813 return strcpy((char *)malloc(strlen(s
) + 1), s
);
1820 WXDLLEXPORT
wchar_t * wxStrdupW(const wchar_t *pwz
)
1822 size_t size
= (wxWcslen(pwz
) + 1) * sizeof(wchar_t);
1823 wchar_t *ret
= (wchar_t *) malloc(size
);
1824 memcpy(ret
, pwz
, size
);
1831 int WXDLLEXPORT
wxStricmp(const wxChar
*psz1
, const wxChar
*psz2
)
1833 register wxChar c1
, c2
;
1835 c1
= wxTolower(*psz1
++);
1836 c2
= wxTolower(*psz2
++);
1837 } while ( c1
&& (c1
== c2
) );
1843 int WXDLLEXPORT
wxStrnicmp(const wxChar
*s1
, const wxChar
*s2
, size_t n
)
1845 // initialize the variables just to suppress stupid gcc warning
1846 register wxChar c1
= 0, c2
= 0;
1847 while (n
&& ((c1
= wxTolower(*s1
)) == (c2
= wxTolower(*s2
)) ) && c1
) n
--, s1
++, s2
++;
1849 if (c1
< c2
) return -1;
1850 if (c1
> c2
) return 1;
1857 WXDLLEXPORT wxWCharBuffer
wxSetlocale(int category
, const wxChar
*locale
)
1859 char *localeOld
= setlocale(category
, wxConvLibc
.cWX2MB(locale
));
1861 return wxWCharBuffer(wxConvLibc
.cMB2WC(localeOld
));
1865 #if wxUSE_WCHAR_T && !defined(HAVE_WCSLEN)
1866 WXDLLEXPORT
size_t wxWcslen(const wchar_t *s
)
1876 // ----------------------------------------------------------------------------
1877 // string.h functions
1878 // ----------------------------------------------------------------------------
1880 #ifdef wxNEED_WX_STRING_H
1882 // RN: These need to be c externed for the regex lib
1887 WXDLLEXPORT wxChar
* wxStrcat(wxChar
*dest
, const wxChar
*src
)
1890 while (*dest
) dest
++;
1891 while ((*dest
++ = *src
++));
1895 WXDLLEXPORT
const wxChar
* wxStrchr(const wxChar
*s
, wxChar c
)
1897 // be careful here as the terminating NUL makes part of the string
1907 WXDLLEXPORT
int wxStrcmp(const wxChar
*s1
, const wxChar
*s2
)
1909 while ((*s1
== *s2
) && *s1
) s1
++, s2
++;
1910 if ((wxUChar
)*s1
< (wxUChar
)*s2
) return -1;
1911 if ((wxUChar
)*s1
> (wxUChar
)*s2
) return 1;
1915 WXDLLEXPORT wxChar
* wxStrcpy(wxChar
*dest
, const wxChar
*src
)
1918 while ((*dest
++ = *src
++));
1922 WXDLLEXPORT
size_t wxStrlen_(const wxChar
*s
)
1932 WXDLLEXPORT wxChar
* wxStrncat(wxChar
*dest
, const wxChar
*src
, size_t n
)
1935 while (*dest
) dest
++;
1936 while (n
&& (*dest
++ = *src
++)) n
--;
1940 WXDLLEXPORT
int wxStrncmp(const wxChar
*s1
, const wxChar
*s2
, size_t n
)
1942 while (n
&& (*s1
== *s2
) && *s1
) n
--, s1
++, s2
++;
1944 if ((wxUChar
)*s1
< (wxUChar
)*s2
) return -1;
1945 if ((wxUChar
)*s1
> (wxUChar
)*s2
) return 1;
1950 WXDLLEXPORT wxChar
* wxStrncpy(wxChar
*dest
, const wxChar
*src
, size_t n
)
1953 while (n
&& (*dest
++ = *src
++)) n
--;
1954 while (n
) *dest
++=0, n
--; // the docs specify padding with zeroes
1958 WXDLLEXPORT
const wxChar
* wxStrpbrk(const wxChar
*s
, const wxChar
*accept
)
1960 while (*s
&& !wxStrchr(accept
, *s
))
1963 return *s
? s
: NULL
;
1966 WXDLLEXPORT
const wxChar
* wxStrrchr(const wxChar
*s
, wxChar c
)
1968 const wxChar
*ret
= NULL
;
1980 WXDLLEXPORT
size_t wxStrspn(const wxChar
*s
, const wxChar
*accept
)
1983 while (wxStrchr(accept
, *s
++)) len
++;
1987 WXDLLEXPORT
const wxChar
*wxStrstr(const wxChar
*haystack
, const wxChar
*needle
)
1989 wxASSERT_MSG( needle
!= NULL
, _T("NULL argument in wxStrstr") );
1991 // VZ: this is not exactly the most efficient string search algorithm...
1993 const size_t len
= wxStrlen(needle
);
1995 while ( const wxChar
*fnd
= wxStrchr(haystack
, *needle
) )
1997 if ( !wxStrncmp(fnd
, needle
, len
) )
2010 WXDLLEXPORT
double wxStrtod(const wxChar
*nptr
, wxChar
**endptr
)
2012 const wxChar
*start
= nptr
;
2014 // FIXME: only correct for C locale
2015 while (wxIsspace(*nptr
)) nptr
++;
2016 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
2017 while (wxIsdigit(*nptr
)) nptr
++;
2018 if (*nptr
== wxT('.')) {
2020 while (wxIsdigit(*nptr
)) nptr
++;
2022 if (*nptr
== wxT('E') || *nptr
== wxT('e')) {
2024 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
2025 while (wxIsdigit(*nptr
)) nptr
++;
2028 wxString
data(nptr
, nptr
-start
);
2029 wxWX2MBbuf dat
= data
.mb_str(wxConvLibc
);
2030 char *rdat
= wxMBSTRINGCAST dat
;
2031 double ret
= strtod(dat
, &rdat
);
2033 if (endptr
) *endptr
= (wxChar
*)(start
+ (rdat
- (const char *)dat
));
2038 WXDLLEXPORT
long int wxStrtol(const wxChar
*nptr
, wxChar
**endptr
, int base
)
2040 const wxChar
*start
= nptr
;
2042 // FIXME: only correct for C locale
2043 while (wxIsspace(*nptr
)) nptr
++;
2044 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
2045 if (((base
== 0) || (base
== 16)) &&
2046 (nptr
[0] == wxT('0') && nptr
[1] == wxT('x'))) {
2050 else if ((base
== 0) && (nptr
[0] == wxT('0'))) base
= 8;
2051 else if (base
== 0) base
= 10;
2053 while ((wxIsdigit(*nptr
) && (*nptr
- wxT('0') < base
)) ||
2054 (wxIsalpha(*nptr
) && (wxToupper(*nptr
) - wxT('A') + 10 < base
))) nptr
++;
2056 wxString
data(start
, nptr
-start
);
2057 wxWX2MBbuf dat
= data
.mb_str(wxConvLibc
);
2058 char *rdat
= wxMBSTRINGCAST dat
;
2059 long int ret
= strtol(dat
, &rdat
, base
);
2061 if (endptr
) *endptr
= (wxChar
*)(start
+ (rdat
- (const char *)dat
));
2066 WXDLLEXPORT
unsigned long int wxStrtoul(const wxChar
*nptr
, wxChar
**endptr
, int base
)
2068 return (unsigned long int) wxStrtol(nptr
, endptr
, base
);
2071 #endif // wxNEED_WX_STRING_H
2073 #ifdef wxNEED_WX_STDIO_H
2074 WXDLLEXPORT
FILE * wxFopen(const wxChar
*path
, const wxChar
*mode
)
2076 char mode_buffer
[10];
2077 for (size_t i
= 0; i
< wxStrlen(mode
)+1; i
++)
2078 mode_buffer
[i
] = (char) mode
[i
];
2080 return fopen( wxConvFile
.cWX2MB(path
), mode_buffer
);
2083 WXDLLEXPORT
FILE * wxFreopen(const wxChar
*path
, const wxChar
*mode
, FILE *stream
)
2085 char mode_buffer
[10];
2086 for (size_t i
= 0; i
< wxStrlen(mode
)+1; i
++)
2087 mode_buffer
[i
] = (char) mode
[i
];
2089 return freopen( wxConvFile
.cWX2MB(path
), mode_buffer
, stream
);
2092 WXDLLEXPORT
int wxRemove(const wxChar
*path
)
2094 return remove( wxConvFile
.cWX2MB(path
) );
2097 WXDLLEXPORT
int wxRename(const wxChar
*oldpath
, const wxChar
*newpath
)
2099 return rename( wxConvFile
.cWX2MB(oldpath
), wxConvFile
.cWX2MB(newpath
) );
2104 double WXDLLEXPORT
wxAtof(const wxChar
*psz
)
2109 if (str
.ToDouble(& d
))
2114 return atof(wxConvLibc
.cWX2MB(psz
));
2119 #ifdef wxNEED_WX_STDLIB_H
2120 int WXDLLEXPORT
wxAtoi(const wxChar
*psz
)
2122 return atoi(wxConvLibc
.cWX2MB(psz
));
2125 long WXDLLEXPORT
wxAtol(const wxChar
*psz
)
2127 return atol(wxConvLibc
.cWX2MB(psz
));
2130 wxChar
* WXDLLEXPORT
wxGetenv(const wxChar
*name
)
2133 // NB: buffer returned by getenv() is allowed to be overwritten next
2134 // time getenv() is called, so it is OK to use static string
2135 // buffer to hold the data.
2136 static wxWCharBuffer
value((wxChar
*)NULL
);
2137 value
= wxConvLibc
.cMB2WX(getenv(wxConvLibc
.cWX2MB(name
)));
2138 return value
.data();
2140 return getenv(name
);
2144 int WXDLLEXPORT
wxSystem(const wxChar
*psz
)
2146 return system(wxConvLibc
.cWX2MB(psz
));
2149 #endif // wxNEED_WX_STDLIB_H
2151 #ifdef wxNEED_WX_TIME_H
2153 wxStrftime(wxChar
*s
, size_t maxsize
, const wxChar
*fmt
, const struct tm
*tm
)
2158 wxCharBuffer
buf(maxsize
);
2160 wxCharBuffer
bufFmt(wxConvLibc
.cWX2MB(fmt
));
2164 size_t ret
= strftime(buf
.data(), maxsize
, bufFmt
, tm
);
2168 wxWCharBuffer wbuf
= wxConvLibc
.cMB2WX(buf
);
2172 wxStrncpy(s
, wbuf
, maxsize
);
2175 #endif // wxNEED_WX_TIME_H
2178 WXDLLEXPORT wxChar
*wxCtime(const time_t *timep
)
2180 // normally the string is 26 chars but give one more in case some broken
2181 // DOS compiler decides to use "\r\n" instead of "\n" at the end
2182 static wxChar buf
[27];
2184 // ctime() is guaranteed to return a string containing only ASCII
2185 // characters, as its format is always the same for any locale
2186 wxStrncpy(buf
, wxString::FromAscii(ctime(timep
)), WXSIZEOF(buf
));
2187 buf
[WXSIZEOF(buf
) - 1] = _T('\0');
2193 #endif // wxUSE_WCHAR_T
2195 // ----------------------------------------------------------------------------
2196 // functions which we may need even if !wxUSE_WCHAR_T
2197 // ----------------------------------------------------------------------------
2201 WXDLLEXPORT wxChar
* wxStrtok(wxChar
*psz
, const wxChar
*delim
, wxChar
**save_ptr
)
2210 psz
+= wxStrspn(psz
, delim
);
2213 *save_ptr
= (wxChar
*)NULL
;
2214 return (wxChar
*)NULL
;
2218 psz
= wxStrpbrk(psz
, delim
);
2221 *save_ptr
= (wxChar
*)NULL
;
2226 *save_ptr
= psz
+ 1;
2234 // ----------------------------------------------------------------------------
2235 // missing C RTL functions
2236 // ----------------------------------------------------------------------------
2238 #ifdef wxNEED_STRDUP
2240 char *strdup(const char *s
)
2242 char *dest
= (char*) malloc( strlen( s
) + 1 ) ;
2244 strcpy( dest
, s
) ;
2247 #endif // wxNEED_STRDUP
2249 #if defined(__WXWINCE__) && (_WIN32_WCE <= 211)
2251 void *calloc( size_t num
, size_t size
)
2253 void** ptr
= (void **)malloc(num
* size
);
2254 memset( ptr
, 0, num
* size
);
2258 #endif // __WXWINCE__ <= 211
2262 int wxRemove(const wxChar
*path
)
2264 return ::DeleteFile(path
) == 0;