]>
git.saurik.com Git - wxWidgets.git/blob - src/common/wxchar.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxChar implementation
8 // Copyright: (c) wxWindows copyright
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "wxchar.h"
16 // ===========================================================================
17 // headers, declarations, constants
18 // ===========================================================================
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #define _ISOC9X_SOURCE 1 // to get vsscanf()
28 #define _BSD_SOURCE 1 // to still get strdup()
38 #include "wx/wxchar.h"
39 #include "wx/string.h"
43 #if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
51 size_t WXDLLEXPORT
wxMB2WC(wchar_t *buf
, const char *psz
, size_t n
)
55 if (n
) *buf
= wxT('\0');
58 return mbstowcs(buf
, psz
, n
);
61 // NB: GNU libc5 wcstombs() is completely broken, don't use it (it doesn't
62 // honor the 3rd parameter, thus it will happily crash here).
64 // don't know if it's really needed (or if we can pass NULL), but better safe
67 return mbsrtowcs((wchar_t *) NULL
, &psz
, 0, &mbstate
);
69 return mbstowcs((wchar_t *) NULL
, psz
, 0);
73 size_t WXDLLEXPORT
wxWC2MB(char *buf
, const wchar_t *pwz
, size_t n
)
77 // glibc2.1 chokes on null input
81 return wcstombs(buf
, pwz
, n
);
84 // NB: GNU libc5 wcstombs() is completely broken, don't use it (it doesn't
85 // honor the 3rd parameter, thus it will happily crash here).
87 // don't know if it's really needed (or if we can pass NULL), but better safe
90 return wcsrtombs((char *) NULL
, &pwz
, 0, &mbstate
);
92 return wcstombs((char *) NULL
, pwz
, 0);
97 bool WXDLLEXPORT
wxOKlibc()
99 #if wxUSE_WCHAR_T && defined(__UNIX__) && defined(__GLIBC__)
100 // GNU libc uses UTF-8 even when it shouldn't
102 if ((MB_CUR_MAX
== 2) &&
103 (wxMB2WC(&res
, "\xdd\xa5", 1)>0) &&
105 // this is UTF-8 allright, check whether that's what we want
106 char *cur_locale
= setlocale(LC_ALL
, NULL
);
107 if ((strlen(cur_locale
) < 4) ||
108 (strcasecmp(cur_locale
+ strlen(cur_locale
) - 4, "utf8"))) {
109 // nope, don't use libc conversion
118 size_t WXDLLEXPORT
wcslen(const wchar_t *s
)
121 while (s
[len
]) len
++;
126 #if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
127 inline WORD
wxMSW_ctype(wxChar ch
)
130 GetStringTypeEx(LOCALE_USER_DEFAULT
, CT_CTYPE1
, &ch
, 1, &ret
);
134 WXDLLEXPORT
int wxIsalnum(wxChar ch
) { return IsCharAlphaNumeric(ch
); }
135 WXDLLEXPORT
int wxIsalpha(wxChar ch
) { return IsCharAlpha(ch
); }
136 WXDLLEXPORT
int wxIsctrl(wxChar ch
) { return wxMSW_ctype(ch
) & C1_CNTRL
; }
137 WXDLLEXPORT
int wxIsdigit(wxChar ch
) { return wxMSW_ctype(ch
) & C1_DIGIT
; }
138 WXDLLEXPORT
int wxIsgraph(wxChar ch
) { return wxMSW_ctype(ch
) & (C1_DIGIT
|C1_PUNCT
|C1_ALPHA
); }
139 WXDLLEXPORT
int wxIslower(wxChar ch
) { return IsCharLower(ch
); }
140 WXDLLEXPORT
int wxIsprint(wxChar ch
) { return wxMSW_ctype(ch
) & (C1_DIGIT
|C1_SPACE
|C1_PUNCT
|C1_ALPHA
); }
141 WXDLLEXPORT
int wxIspunct(wxChar ch
) { return wxMSW_ctype(ch
) & C1_PUNCT
; }
142 WXDLLEXPORT
int wxIsspace(wxChar ch
) { return wxMSW_ctype(ch
) & C1_SPACE
; }
143 WXDLLEXPORT
int wxIsupper(wxChar ch
) { return IsCharUpper(ch
); }
144 WXDLLEXPORT
int wxIsxdigit(wxChar ch
) { return wxMSW_ctype(ch
) & C1_XDIGIT
; }
145 WXDLLEXPORT
int wxTolower(wxChar ch
) { return (wxChar
)CharLower((LPTSTR
)(ch
)); }
146 WXDLLEXPORT
int wxToupper(wxChar ch
) { return (wxChar
)CharUpper((LPTSTR
)(ch
)); }
150 WXDLLEXPORT wxChar
* wxStrdup(const wxChar
*psz
)
152 size_t size
= (wxStrlen(psz
) + 1) * sizeof(wxChar
);
153 wxChar
*ret
= (wxChar
*) malloc(size
);
154 memcpy(ret
, psz
, size
);
160 int WXDLLEXPORT
wxStricmp(const wxChar
*psz1
, const wxChar
*psz2
)
162 register wxChar c1
, c2
;
164 c1
= wxTolower(*psz1
++);
165 c2
= wxTolower(*psz2
++);
166 } while ( c1
&& (c1
== c2
) );
172 WXDLLEXPORT wxChar
* wxStrtok(wxChar
*psz
, const wxChar
*delim
, wxChar
**save_ptr
)
174 if (!psz
) psz
= *save_ptr
;
175 psz
+= wxStrspn(psz
, delim
);
177 *save_ptr
= (wxChar
*)NULL
;
178 return (wxChar
*)NULL
;
181 psz
= wxStrpbrk(psz
, delim
);
182 if (!psz
) *save_ptr
= (wxChar
*)NULL
;
192 WXDLLEXPORT wxChar
* wxSetlocale(int category
, const wxChar
*locale
)
195 wxASSERT_MSG( wxThread::IsMain(), _T("wxSetlocale() is not MT-safe") );
198 static wxWCharBuffer s_wzLocale
;
200 char *localeOld
= setlocale(category
, wxConvLibc
.cWX2MB(locale
));
201 s_wzLocale
= wxConvLibc
.cMB2WC(localeOld
);
207 #ifdef wxNEED_WX_STRING_H
208 WXDLLEXPORT wxChar
* wxStrcat(wxChar
*dest
, const wxChar
*src
)
211 while (*dest
) dest
++;
212 while ((*dest
++ = *src
++));
216 WXDLLEXPORT wxChar
* wxStrchr(const wxChar
*s
, wxChar c
)
218 while (*s
&& *s
!= c
) s
++;
219 return (*s
) ? (wxChar
*)s
: (wxChar
*)NULL
;
222 WXDLLEXPORT
int wxStrcmp(const wxChar
*s1
, const wxChar
*s2
)
224 while ((*s1
== *s2
) && *s1
) s1
++, s2
++;
225 if ((wxUChar
)*s1
< (wxUChar
)*s2
) return -1;
226 if ((wxUChar
)*s1
> (wxUChar
)*s2
) return 1;
230 WXDLLEXPORT wxChar
* wxStrcpy(wxChar
*dest
, const wxChar
*src
)
233 while ((*dest
++ = *src
++));
237 WXDLLEXPORT wxChar
* wxStrncat(wxChar
*dest
, const wxChar
*src
, size_t n
)
240 while (*dest
) dest
++;
241 while (n
&& (*dest
++ = *src
++)) n
--;
245 WXDLLEXPORT
int wxStrncmp(const wxChar
*s1
, const wxChar
*s2
, size_t n
)
247 while (n
&& (*s1
== *s2
) && *s1
) n
--, s1
++, s2
++;
249 if ((wxUChar
)*s1
< (wxUChar
)*s2
) return -1;
250 if ((wxUChar
)*s1
> (wxUChar
)*s2
) return 1;
255 WXDLLEXPORT wxChar
* wxStrncpy(wxChar
*dest
, const wxChar
*src
, size_t n
)
258 while (n
&& (*dest
++ = *src
++)) n
--;
259 while (n
) *dest
++=0, n
--; // the docs specify padding with zeroes
263 WXDLLEXPORT wxChar
* wxStrpbrk(const wxChar
*s
, const wxChar
*accept
)
265 while (*s
&& !wxStrchr(accept
, *s
)) s
++;
266 return (*s
) ? (wxChar
*)s
: (wxChar
*)NULL
;
269 WXDLLEXPORT wxChar
* wxStrrchr(const wxChar
*s
, wxChar c
)
271 wxChar
*ret
= (wxChar
*)NULL
;
273 if (*s
== c
) ret
= (wxChar
*)s
;
279 WXDLLEXPORT
size_t wxStrspn(const wxChar
*s
, const wxChar
*accept
)
282 while (wxStrchr(accept
, *s
++)) len
++;
286 WXDLLEXPORT wxChar
* wxStrstr(const wxChar
*haystack
, const wxChar
*needle
)
289 while ((fnd
= wxStrchr(haystack
, *needle
))) {
290 if (!wxStrcmp(fnd
, needle
)) return fnd
;
293 return (wxChar
*)NULL
;
296 WXDLLEXPORT
double wxStrtod(const wxChar
*nptr
, wxChar
**endptr
)
298 const wxChar
*start
= nptr
;
300 // FIXME: only correct for C locale
301 while (wxIsspace(*nptr
)) nptr
++;
302 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
303 while (wxIsdigit(*nptr
)) nptr
++;
304 if (*nptr
== wxT('.')) {
306 while (wxIsdigit(*nptr
)) nptr
++;
308 if (*nptr
== wxT('E') || *nptr
== wxT('e')) {
310 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
311 while (wxIsdigit(*nptr
)) nptr
++;
314 wxString
data(nptr
, nptr
-start
);
315 wxWX2MBbuf dat
= data
.mb_str(wxConvLibc
);
316 char *rdat
= wxMBSTRINGCAST dat
;
317 double ret
= strtod(dat
, &rdat
);
319 if (endptr
) *endptr
= (wxChar
*)(start
+ (rdat
- (const char *)dat
));
324 WXDLLEXPORT
long int wxStrtol(const wxChar
*nptr
, wxChar
**endptr
, int base
)
326 const wxChar
*start
= nptr
;
328 // FIXME: only correct for C locale
329 while (wxIsspace(*nptr
)) nptr
++;
330 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
331 if (((base
== 0) || (base
== 16)) &&
332 (nptr
[0] == wxT('0') && nptr
[1] == wxT('x'))) {
336 else if ((base
== 0) && (nptr
[0] == wxT('0'))) base
= 8;
337 else if (base
== 0) base
= 10;
339 while ((wxIsdigit(*nptr
) && (*nptr
- wxT('0') < base
)) ||
340 (wxIsalpha(*nptr
) && (wxToupper(*nptr
) - wxT('A') + 10 < base
))) nptr
++;
342 wxString
data(nptr
, nptr
-start
);
343 wxWX2MBbuf dat
= data
.mb_str(wxConvLibc
);
344 char *rdat
= wxMBSTRINGCAST dat
;
345 long int ret
= strtol(dat
, &rdat
, base
);
347 if (endptr
) *endptr
= (wxChar
*)(start
+ (rdat
- (const char *)dat
));
353 #ifdef wxNEED_WX_STDIO_H
354 WXDLLEXPORT
FILE * wxFopen(const wxChar
*path
, const wxChar
*mode
)
356 return fopen(wxConvFile
.cWX2MB(path
), wxConvLibc
.cWX2MB(mode
));
359 WXDLLEXPORT
FILE * wxFreopen(const wxChar
*path
, const wxChar
*mode
, FILE *stream
)
361 return freopen(wxConvFile
.cWX2MB(path
), wxConvLibc
.cWX2MB(mode
), stream
);
364 int WXDLLEXPORT
wxPrintf(const wxChar
*fmt
, ...)
369 va_start(argptr
, fmt
);
370 ret
= wxVprintf(fmt
, argptr
);
375 int WXDLLEXPORT
wxVprintf(const wxChar
*fmt
, va_list argptr
)
378 str
.PrintfV(fmt
,argptr
);
379 printf("%s", (const char*)str
.mb_str());
383 int WXDLLEXPORT
wxFprintf(FILE *stream
, const wxChar
*fmt
, ...)
388 va_start(argptr
, fmt
);
389 ret
= wxVfprintf(stream
, fmt
, argptr
);
394 int WXDLLEXPORT
wxVfprintf(FILE *stream
, const wxChar
*fmt
, va_list argptr
)
397 str
.PrintfV(fmt
,argptr
);
398 fprintf(stream
, "%s", (const char*)str
.mb_str());
402 int WXDLLEXPORT
wxSprintf(wxChar
*buf
, const wxChar
*fmt
, ...)
407 va_start(argptr
, fmt
);
408 ret
= wxVsprintf(buf
, fmt
, argptr
);
413 int WXDLLEXPORT
wxVsprintf(wxChar
*buf
, const wxChar
*fmt
, va_list argptr
)
415 // this might be sort of inefficient, but it doesn't matter since
416 // we'd prefer people to use wxString::Printf directly instead anyway
418 str
.PrintfV(fmt
,argptr
);
419 wxStrcpy(buf
,str
.c_str());
423 int WXDLLEXPORT
wxSscanf(const wxChar
*buf
, const wxChar
*fmt
, ...)
428 va_start(argptr
, fmt
);
429 ret
= wxVsscanf(buf
, fmt
, argptr
);
434 int WXDLLEXPORT
wxVsscanf(const wxChar
*buf
, const wxChar
*fmt
, va_list argptr
)
437 // this will work only for numeric conversion! Strings will not be converted correctly
438 // hopefully this is all we'll need
439 ret
= vsscanf(wxConvLibc
.cWX2MB(buf
), wxConvLibc
.cWX2MB(fmt
), argptr
);
445 double WXDLLEXPORT
wxAtof(const wxChar
*psz
)
447 return atof(wxConvLibc
.cWX2MB(psz
));
451 #ifdef wxNEED_WX_STDLIB_H
452 int WXDLLEXPORT
wxAtoi(const wxChar
*psz
)
454 return atoi(wxConvLibc
.cWX2MB(psz
));
457 long WXDLLEXPORT
wxAtol(const wxChar
*psz
)
459 return atol(wxConvLibc
.cWX2MB(psz
));
462 wxChar
* WXDLLEXPORT
wxGetenv(const wxChar
*name
)
464 static wxHashTable env
;
465 // check if we already have stored the converted env var
466 wxObject
*data
= env
.Get(name
);
468 // nope, retrieve it,
469 const char *val
= getenv(wxConvLibc
.cWX2MB(name
));
470 if (!val
) return (wxChar
*)NULL
;
472 data
= (wxObject
*)new wxString(val
);
476 // return converted env var
477 return (wxChar
*)((wxString
*)data
)->c_str();
480 int WXDLLEXPORT
wxSystem(const wxChar
*psz
)
482 return system(wxConvLibc
.cWX2MB(psz
));
487 #ifdef wxNEED_WX_TIME_H
488 WXDLLEXPORT
size_t wxStrftime(wxChar
*s
, size_t max
, const wxChar
*fmt
, const struct tm
*tm
)
491 char *buf
= (char *)malloc(max
);
492 size_t ret
= strftime(buf
, max
, wxConvLibc
.cWX2MB(fmt
), tm
);
494 wxStrcpy(s
, wxConvLibc
.cMB2WX(buf
));