]> git.saurik.com Git - wxWidgets.git/blob - src/common/wxchar.cpp
tried to clean strdup() mess: we now have wxStrdup[AW] which should be always available
[wxWidgets.git] / src / common / wxchar.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wxchar.cpp
3 // Purpose: wxChar implementation
4 // Author: Ove Kåven
5 // Modified by:
6 // Created: 09/04/99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWindows copyright
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "wxchar.h"
14 #endif
15
16 // ===========================================================================
17 // headers, declarations, constants
18 // ===========================================================================
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #define _ISOC9X_SOURCE 1 // to get vsscanf()
28 #define _BSD_SOURCE 1 // to still get strdup()
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <locale.h>
34 #include <time.h>
35
36 #ifndef WX_PRECOMP
37 #include "wx/defs.h"
38 #include "wx/wxchar.h"
39 #include "wx/string.h"
40 #include "wx/hash.h"
41 #endif
42
43 #if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
44 #include <windef.h>
45 #include <winbase.h>
46 #include <winnls.h>
47 #include <winnt.h>
48 #endif
49
50 #if wxUSE_WCHAR_T
51 size_t WXDLLEXPORT wxMB2WC(wchar_t *buf, const char *psz, size_t n)
52 {
53 // assume that we have mbsrtowcs() too if we have wcsrtombs()
54 #if HAVE_WCSRTOMBS
55 mbstate_t mbstate;
56 memset(&mbstate, 0, sizeof(mbstate_t));
57 #endif
58
59 if (buf) {
60 if (!n || !*psz) {
61 if (n) *buf = wxT('\0');
62 return 0;
63 }
64 #ifdef HAVE_WCSRTOMBS
65 return mbsrtowcs(buf, &psz, n, &mbstate);
66 #else
67 return mbstowcs(buf, psz, n);
68 #endif
69 }
70
71 #ifdef HAVE_WCSRTOMBS
72 return mbsrtowcs((wchar_t *) NULL, &psz, 0, &mbstate);
73 #else
74 return mbstowcs((wchar_t *) NULL, psz, 0);
75 #endif
76 }
77
78 size_t WXDLLEXPORT wxWC2MB(char *buf, const wchar_t *pwz, size_t n)
79 {
80 #if HAVE_WCSRTOMBS
81 mbstate_t mbstate;
82 memset(&mbstate, 0, sizeof(mbstate_t));
83 #endif
84
85 if (buf) {
86 if (!n || !*pwz) {
87 // glibc2.1 chokes on null input
88 if (n) *buf = '\0';
89 return 0;
90 }
91 #if HAVE_WCSRTOMBS
92 return wcsrtombs(buf, &pwz, n, &mbstate);
93 #else
94 return wcstombs(buf, pwz, n);
95 #endif
96 }
97
98 #if HAVE_WCSRTOMBS
99 return wcsrtombs((char *) NULL, &pwz, 0, &mbstate);
100 #else
101 return wcstombs((char *) NULL, pwz, 0);
102 #endif
103 }
104 #endif // wxUSE_WCHAR_T
105
106 bool WXDLLEXPORT wxOKlibc()
107 {
108 #if wxUSE_WCHAR_T && defined(__UNIX__) && defined(__GLIBC__)
109 // glibc 2.0 uses UTF-8 even when it shouldn't
110 wchar_t res = 0;
111 if ((MB_CUR_MAX == 2) &&
112 (wxMB2WC(&res, "\xdd\xa5", 1) == 1) &&
113 (res==0x765)) {
114 // this is UTF-8 allright, check whether that's what we want
115 char *cur_locale = setlocale(LC_CTYPE, NULL);
116 if ((strlen(cur_locale) < 4) ||
117 (strcasecmp(cur_locale + strlen(cur_locale) - 4, "utf8")) ||
118 (strcasecmp(cur_locale + strlen(cur_locale) - 5, "utf-8"))) {
119 // nope, don't use libc conversion
120 return FALSE;
121 }
122 }
123 #endif
124 return TRUE;
125 }
126
127 // ============================================================================
128 // printf() functions business
129 // ============================================================================
130
131 // special test mode: define all functions below even if we don't really need
132 // them to be able to test them
133 #ifdef wxTEST_PRINTF
134 #undef wxFprintf
135 #undef wxPrintf
136 #undef wxSprintf
137 #undef wxVfprintf
138 #undef wxVsprintf
139 #undef wxVprintf
140 #undef wxVsnprintf_
141 #undef wxSnprintf_
142
143 #define wxNEED_WPRINTF
144
145 int wxVfprintf( FILE *stream, const wxChar *format, va_list argptr );
146 #endif
147
148 // ----------------------------------------------------------------------------
149 // implement [v]snprintf() if the system doesn't provide a safe one
150 // ----------------------------------------------------------------------------
151
152 #if !defined(wxVsnprintf_)
153 int WXDLLEXPORT wxVsnprintf_(wxChar *buf, size_t lenMax,
154 const wxChar *format, va_list argptr)
155 {
156 // buffer to avoid dynamic memory allocation each time for small strings
157 char szScratch[1024];
158
159 // number of characters in the buffer so far, must be less than lenMax
160 size_t lenCur = 0;
161
162 for ( size_t n = 0; ; n++ )
163 {
164 const wxChar chCur = format[n];
165
166 if ( chCur == wxT('%') )
167 {
168 static char s_szFlags[256] = "%";
169 size_t flagofs = 1;
170 bool adj_left = FALSE,
171 in_prec = FALSE,
172 prec_dot = FALSE,
173 done = FALSE;
174 int ilen = 0;
175 size_t min_width = 0,
176 max_width = wxSTRING_MAXLEN;
177 do
178 {
179
180 #define CHECK_PREC \
181 if (in_prec && !prec_dot) \
182 { \
183 s_szFlags[flagofs++] = '.'; \
184 prec_dot = TRUE; \
185 }
186
187 #define APPEND_CH(ch) \
188 if ( lenCur == lenMax ) \
189 return -1; \
190 \
191 buf[lenCur++] = ch
192
193 #define APPEND_STR(s) \
194 { \
195 for ( const wxChar *p = s; *p; p++ ) \
196 { \
197 APPEND_CH(*p); \
198 } \
199 }
200
201 // what follows '%'?
202 const wxChar ch = format[++n];
203 switch ( ch )
204 {
205 case wxT('\0'):
206 APPEND_CH(_T('\0'));
207
208 done = TRUE;
209 break;
210
211 case wxT('%'):
212 APPEND_CH(_T('%'));
213 done = TRUE;
214 break;
215
216 case wxT('#'):
217 case wxT('0'):
218 case wxT(' '):
219 case wxT('+'):
220 case wxT('\''):
221 CHECK_PREC
222 s_szFlags[flagofs++] = ch;
223 break;
224
225 case wxT('-'):
226 CHECK_PREC
227 adj_left = TRUE;
228 s_szFlags[flagofs++] = ch;
229 break;
230
231 case wxT('.'):
232 CHECK_PREC
233 in_prec = TRUE;
234 prec_dot = FALSE;
235 max_width = 0;
236 // dot will be auto-added to s_szFlags if non-negative
237 // number follows
238 break;
239
240 case wxT('h'):
241 ilen = -1;
242 CHECK_PREC
243 s_szFlags[flagofs++] = ch;
244 break;
245
246 case wxT('l'):
247 ilen = 1;
248 CHECK_PREC
249 s_szFlags[flagofs++] = ch;
250 break;
251
252 case wxT('q'):
253 case wxT('L'):
254 ilen = 2;
255 CHECK_PREC
256 s_szFlags[flagofs++] = ch;
257 break;
258
259 case wxT('Z'):
260 ilen = 3;
261 CHECK_PREC
262 s_szFlags[flagofs++] = ch;
263 break;
264
265 case wxT('*'):
266 {
267 int len = va_arg(argptr, int);
268 if (in_prec)
269 {
270 if (len<0) break;
271 CHECK_PREC
272 max_width = len;
273 }
274 else
275 {
276 if (len<0)
277 {
278 adj_left = !adj_left;
279 s_szFlags[flagofs++] = '-';
280 len = -len;
281 }
282 min_width = len;
283 }
284 flagofs += ::sprintf(s_szFlags+flagofs,"%d",len);
285 }
286 break;
287
288 case wxT('1'): case wxT('2'): case wxT('3'):
289 case wxT('4'): case wxT('5'): case wxT('6'):
290 case wxT('7'): case wxT('8'): case wxT('9'):
291 {
292 int len = 0;
293 CHECK_PREC
294 while ( (format[n] >= wxT('0')) &&
295 (format[n] <= wxT('9')) )
296 {
297 s_szFlags[flagofs++] = format[n];
298 len = len*10 + (format[n] - wxT('0'));
299 n++;
300 }
301
302 if (in_prec)
303 max_width = len;
304 else
305 min_width = len;
306
307 n--; // the main loop pre-increments n again
308 }
309 break;
310
311 case wxT('d'):
312 case wxT('i'):
313 case wxT('o'):
314 case wxT('u'):
315 case wxT('x'):
316 case wxT('X'):
317 CHECK_PREC
318 s_szFlags[flagofs++] = ch;
319 s_szFlags[flagofs] = '\0';
320 if (ilen == 0 )
321 {
322 int val = va_arg(argptr, int);
323 ::sprintf(szScratch, s_szFlags, val);
324 }
325 else if (ilen == -1)
326 {
327 // NB: 'short int' value passed through '...'
328 // is promoted to 'int', so we have to get
329 // an int from stack even if we need a short
330 short int val = (short int) va_arg(argptr, int);
331 ::sprintf(szScratch, s_szFlags, val);
332 }
333 else if (ilen == 1)
334 {
335 long int val = va_arg(argptr, long int);
336 ::sprintf(szScratch, s_szFlags, val);
337 }
338 else if (ilen == 2)
339 {
340 #if SIZEOF_LONG_LONG
341 long long int val = va_arg(argptr, long long int);
342 ::sprintf(szScratch, s_szFlags, val);
343 #else // !long long
344 long int val = va_arg(argptr, long int);
345 ::sprintf(szScratch, s_szFlags, val);
346 #endif // long long/!long long
347 }
348 else if (ilen == 3)
349 {
350 size_t val = va_arg(argptr, size_t);
351 ::sprintf(szScratch, s_szFlags, val);
352 }
353
354 {
355 const wxMB2WXbuf tmp =
356 wxConvLibc.cMB2WX(szScratch);
357 APPEND_STR(tmp);
358 }
359
360 done = TRUE;
361 break;
362
363 case wxT('e'):
364 case wxT('E'):
365 case wxT('f'):
366 case wxT('g'):
367 case wxT('G'):
368 CHECK_PREC
369 s_szFlags[flagofs++] = ch;
370 s_szFlags[flagofs] = '\0';
371 if (ilen == 2)
372 {
373 long double val = va_arg(argptr, long double);
374 ::sprintf(szScratch, s_szFlags, val);
375 }
376 else
377 {
378 double val = va_arg(argptr, double);
379 ::sprintf(szScratch, s_szFlags, val);
380 }
381
382 {
383 const wxMB2WXbuf tmp =
384 wxConvLibc.cMB2WX(szScratch);
385 APPEND_STR(tmp);
386 }
387
388 done = TRUE;
389 break;
390
391 case wxT('p'):
392 {
393 void *val = va_arg(argptr, void *);
394 CHECK_PREC
395 s_szFlags[flagofs++] = ch;
396 s_szFlags[flagofs] = '\0';
397 ::sprintf(szScratch, s_szFlags, val);
398
399 const wxMB2WXbuf tmp =
400 wxConvLibc.cMB2WX(szScratch);
401 APPEND_STR(tmp);
402
403 done = TRUE;
404 }
405 break;
406
407 case wxT('c'):
408 {
409 wxChar val = va_arg(argptr, int);
410 // we don't need to honor padding here, do we?
411 APPEND_CH(val);
412
413 done = TRUE;
414 }
415 break;
416
417 case wxT('s'):
418 if (ilen == -1)
419 {
420 // wx extension: we'll let %hs mean non-Unicode
421 // strings
422 char *val = va_arg(argptr, char *);
423 #if wxUSE_UNICODE
424 // ASCII->Unicode constructor handles max_width
425 // right
426 wxString s(val, wxConvLibc, max_width);
427 #else
428 size_t len = wxSTRING_MAXLEN;
429 if (val)
430 {
431 for ( len = 0;
432 val[len] && (len < max_width);
433 len++ )
434 ;
435 }
436 else
437 val = wxT("(null)");
438 wxString s(val, len);
439 #endif
440 if (s.Len() < min_width)
441 s.Pad(min_width - s.Len(), wxT(' '), adj_left);
442
443 APPEND_STR(s);
444 }
445 else
446 {
447 wxChar *val = va_arg(argptr, wxChar *);
448 size_t len = wxSTRING_MAXLEN;
449 if (val)
450 {
451 for ( len = 0;
452 val[len] && (len < max_width);
453 len++ )
454 ;
455 }
456 else
457 val = wxT("(null)");
458
459 wxString s(val, len);
460 if (s.Len() < min_width)
461 s.Pad(min_width - s.Len(), wxT(' '), adj_left);
462
463 APPEND_STR(s);
464 }
465 done = TRUE;
466 break;
467
468 case wxT('n'):
469 if (ilen == 0)
470 {
471 int *val = va_arg(argptr, int *);
472 *val = lenCur;
473 }
474 else if (ilen == -1)
475 {
476 short int *val = va_arg(argptr, short int *);
477 *val = lenCur;
478 }
479 else if (ilen >= 1)
480 {
481 long int *val = va_arg(argptr, long int *);
482 *val = lenCur;
483 }
484 done = TRUE;
485 break;
486
487 default:
488 // bad format, leave unchanged
489 APPEND_CH(_T('%'));
490 APPEND_CH(ch);
491 done = TRUE;
492 break;
493 }
494 }
495 while (!done);
496 }
497 else
498 {
499 APPEND_CH(chCur);
500 }
501
502 // terminating NUL?
503 if ( !chCur )
504 break;
505 }
506
507 return lenCur;
508 }
509
510 #undef APPEND_CH
511 #undef APPEND_STR
512 #undef CHECK_PREC
513
514 #endif // !wxVsnprintfA
515
516 #if !defined(wxSnprintf_)
517 int WXDLLEXPORT wxSnprintf_(wxChar *buf, size_t len, const wxChar *format, ...)
518 {
519 va_list argptr;
520 va_start(argptr, format);
521
522 int iLen = wxVsnprintf_(buf, len, format, argptr);
523
524 va_end(argptr);
525
526 return iLen;
527 }
528 #endif // wxSnprintf_
529
530 // ----------------------------------------------------------------------------
531 // implement the standard IO functions for wide char if libc doesn't have them
532 // ----------------------------------------------------------------------------
533
534 #ifdef wxNEED_FPUTWC
535
536 int wxFputs(const wchar_t *ws, FILE *stream)
537 {
538 // counting the number of wide characters written isn't worth the trouble,
539 // simply distinguish between ok and error
540 return fputs(wxConvLibc.cWC2MB(ws), stream) == -1 ? -1 : 0;
541 }
542
543 int /* not wint_t */ wxPutc(wchar_t wc, FILE *stream)
544 {
545 wchar_t ws[2] = { wc, L'\0' };
546
547 return wxFputs(ws, stream);
548 }
549
550 #endif // wxNEED_FPUTWC
551
552 // NB: we only implement va_list functions here, the ones taking ... are
553 // defined below for wxNEED_PRINTF_CONVERSION case anyhow and we reuse
554 // the definitions there to avoid duplicating them here
555 #ifdef wxNEED_WPRINTF
556
557 // TODO: implement the scanf() functions
558 int vwscanf(const wxChar *format, va_list argptr)
559 {
560 wxFAIL_MSG( _T("TODO") );
561
562 return -1;
563 }
564
565 int vswscanf(const wxChar *ws, const wxChar *format, va_list argptr)
566 {
567 wxFAIL_MSG( _T("TODO") );
568
569 return -1;
570 }
571
572 int vfwscanf(FILE *stream, const wxChar *format, va_list argptr)
573 {
574 wxFAIL_MSG( _T("TODO") );
575
576 return -1;
577 }
578
579 #define vswprintf wxVsnprintf_
580
581 int vfwprintf(FILE *stream, const wxChar *format, va_list argptr)
582 {
583 wxString s;
584 int rc = s.PrintfV(format, argptr);
585
586 if ( rc != -1 )
587 {
588 // we can't do much better without Unicode support in libc...
589 if ( fprintf(stream, "%s", s.mb_str()) == -1 )
590 return -1;
591 }
592
593 return rc;
594 }
595
596 int vwprintf(const wxChar *format, va_list argptr)
597 {
598 return wxVfprintf(stdout, format, argptr);
599 }
600
601 #endif // wxNEED_WPRINTF
602
603 #ifdef wxNEED_PRINTF_CONVERSION
604
605 // ----------------------------------------------------------------------------
606 // wxFormatConverter: class doing the "%s" -> "%ls" conversion
607 // ----------------------------------------------------------------------------
608
609 /*
610 Here are the gory details. We want to follow the Windows/MS conventions,
611 that is to have
612
613 In ANSI mode:
614
615 format specifier results in
616 -----------------------------------
617 %c, %hc, %hC char
618 %lc, %C, %lC wchar_t
619
620 In Unicode mode:
621
622 format specifier results in
623 -----------------------------------
624 %hc, %C, %hC char
625 %c, %lc, %lC wchar_t
626
627
628 while on POSIX systems we have %C identical to %lc and %c always means char
629 (in any mode) while %lc always means wchar_t,
630
631 So to use native functions in order to get our semantics we must do the
632 following translations in Unicode mode (nothing to do in ANSI mode):
633
634 wxWindows specifier POSIX specifier
635 ----------------------------------------
636
637 %hc, %C, %hC %c
638 %c %lc
639
640
641 And, of course, the same should be done for %s as well.
642 */
643
644 class wxFormatConverter
645 {
646 public:
647 wxFormatConverter(const wxChar *format);
648
649 // notice that we only translated the string if m_fmtOrig == NULL (as set
650 // by CopyAllBefore()), otherwise we should simply use the original format
651 operator const wxChar *() const
652 { return m_fmtOrig ? m_fmtOrig : m_fmt.c_str(); }
653
654 private:
655 // copy another character to the translated format: this function does the
656 // copy if we are translating but doesn't do anything at all if we don't,
657 // so we don't create the translated format string at all unless we really
658 // need to (i.e. InsertFmtChar() is called)
659 wxChar CopyFmtChar(wxChar ch)
660 {
661 if ( !m_fmtOrig )
662 {
663 // we're translating, do copy
664 m_fmt += ch;
665 }
666 else
667 {
668 // simply increase the count which should be copied by
669 // CopyAllBefore() later if needed
670 m_nCopied++;
671 }
672
673 return ch;
674 }
675
676 // insert an extra character
677 void InsertFmtChar(wxChar ch)
678 {
679 if ( m_fmtOrig )
680 {
681 // so far we haven't translated anything yet
682 CopyAllBefore();
683 }
684
685 m_fmt += ch;
686 }
687
688 void CopyAllBefore()
689 {
690 wxASSERT_MSG( m_fmtOrig && m_fmt.empty(), _T("logic error") );
691
692 m_fmt = wxString(m_fmtOrig, m_nCopied);
693
694 // we won't need it any longer
695 m_fmtOrig = NULL;
696 }
697
698 static bool IsFlagChar(wxChar ch)
699 {
700 return ch == _T('-') || ch == _T('+') ||
701 ch == _T('0') || ch == _T(' ') || ch == _T('#');
702 }
703
704 void SkipDigits(const wxChar **ppc)
705 {
706 while ( **ppc >= _T('0') && **ppc <= _T('9') )
707 CopyFmtChar(*(*ppc)++);
708 }
709
710 // the translated format
711 wxString m_fmt;
712
713 // the original format
714 const wxChar *m_fmtOrig;
715
716 // the number of characters already copied
717 size_t m_nCopied;
718 };
719
720 wxFormatConverter::wxFormatConverter(const wxChar *format)
721 {
722 m_fmtOrig = format;
723 m_nCopied = 0;
724
725 while ( *format )
726 {
727 if ( CopyFmtChar(*format++) == _T('%') )
728 {
729 // skip any flags
730 while ( IsFlagChar(*format) )
731 CopyFmtChar(*format++);
732
733 // and possible width
734 if ( *format == _T('*') )
735 CopyFmtChar(*format++);
736 else
737 SkipDigits(&format);
738
739 // precision?
740 if ( *format == _T('.') )
741 {
742 SkipDigits(&format);
743 }
744
745 // next we can have a size modifier
746 enum
747 {
748 Default,
749 Short,
750 Long
751 } size;
752
753 switch ( *format )
754 {
755 case _T('h'):
756 size = Short;
757 format++;
758 break;
759
760 case _T('l'):
761 // "ll" has a different meaning!
762 if ( format[1] != _T('l') )
763 {
764 size = Long;
765 format++;
766 break;
767 }
768 //else: fall through
769
770 default:
771 size = Default;
772 }
773
774 // and finally we should have the type
775 switch ( *format )
776 {
777 case _T('C'):
778 case _T('S'):
779 // %C and %hC -> %c and %lC -> %lc
780 if ( size == Long )
781 CopyFmtChar(_T('l'));
782
783 InsertFmtChar(*format++ == _T('C') ? _T('c') : _T('s'));
784 break;
785
786 case _T('c'):
787 case _T('s'):
788 // %c -> %lc but %hc stays %hc and %lc is still %lc
789 switch ( size )
790 {
791 case Default:
792 InsertFmtChar(_T('l'));
793 break;
794
795 case Short:
796 CopyFmtChar(_T('h'));
797 break;
798
799 case Long:
800 ;
801 }
802 // fall through
803
804 default:
805 // nothing special to do
806 CopyFmtChar(*format++);
807 }
808 }
809 }
810 }
811
812 #else // !wxNEED_PRINTF_CONVERSION
813 // no conversion necessary
814 #define wxFormatConverter(x) (x)
815 #endif // wxNEED_PRINTF_CONVERSION/!wxNEED_PRINTF_CONVERSION
816
817 // ----------------------------------------------------------------------------
818 // wxPrintf(), wxScanf() and relatives
819 // ----------------------------------------------------------------------------
820
821 #if defined(wxNEED_PRINTF_CONVERSION) || defined(wxNEED_WPRINTF)
822
823 int wxScanf( const wxChar *format, ... )
824 {
825 va_list argptr;
826 va_start(argptr, format);
827
828 int ret = vwscanf(wxFormatConverter(format), argptr );
829
830 va_end(argptr);
831
832 return ret;
833 }
834
835 int wxSscanf( const wxChar *str, const wxChar *format, ... )
836 {
837 va_list argptr;
838 va_start(argptr, format);
839
840 int ret = vswscanf( str, wxFormatConverter(format), argptr );
841
842 va_end(argptr);
843
844 return ret;
845 }
846
847 int wxFscanf( FILE *stream, const wxChar *format, ... )
848 {
849 va_list argptr;
850 va_start(argptr, format);
851
852 int ret = vfwscanf(stream, wxFormatConverter(format), argptr);
853
854 va_end(argptr);
855
856 return ret;
857 }
858
859 int wxPrintf( const wxChar *format, ... )
860 {
861 va_list argptr;
862 va_start(argptr, format);
863
864 int ret = vwprintf( wxFormatConverter(format), argptr );
865
866 va_end(argptr);
867
868 return ret;
869 }
870
871 #ifndef wxSnprintf
872 int wxSnprintf( wxChar *str, size_t size, const wxChar *format, ... )
873 {
874 va_list argptr;
875 va_start(argptr, format);
876
877 int ret = vswprintf( str, size, wxFormatConverter(format), argptr );
878
879 va_end(argptr);
880
881 return ret;
882 }
883 #endif // wxSnprintf
884
885 int wxSprintf( wxChar *str, const wxChar *format, ... )
886 {
887 va_list argptr;
888 va_start(argptr, format);
889
890 // callers of wxSprintf() deserve what they get
891 int ret = vswprintf( str, UINT_MAX, wxFormatConverter(format), argptr );
892
893 va_end(argptr);
894
895 return ret;
896 }
897
898 int wxFprintf( FILE *stream, const wxChar *format, ... )
899 {
900 va_list argptr;
901 va_start( argptr, format );
902
903 int ret = vfwprintf( stream, wxFormatConverter(format), argptr );
904
905 va_end(argptr);
906
907 return ret;
908 }
909
910 int wxVsscanf( const wxChar *str, const wxChar *format, va_list argptr )
911 {
912 return vswscanf( str, wxFormatConverter(format), argptr );
913 }
914
915 int wxVfprintf( FILE *stream, const wxChar *format, va_list argptr )
916 {
917 return vfwprintf( stream, wxFormatConverter(format), argptr );
918 }
919
920 int wxVprintf( const wxChar *format, va_list argptr )
921 {
922 return vwprintf( wxFormatConverter(format), argptr );
923 }
924
925 #ifndef wxVsnprintf
926 int wxVsnprintf( wxChar *str, size_t size, const wxChar *format, va_list argptr )
927 {
928 return vswprintf( str, size, wxFormatConverter(format), argptr );
929 }
930 #endif // wxVsnprintf
931
932 int wxVsprintf( wxChar *str, const wxChar *format, va_list argptr )
933 {
934 // same as for wxSprintf()
935 return vswprintf(str, UINT_MAX, wxFormatConverter(format), argptr);
936 }
937
938 #endif // wxNEED_PRINTF_CONVERSION
939
940 // ----------------------------------------------------------------------------
941 // ctype.h stuff (currently unused)
942 // ----------------------------------------------------------------------------
943
944 #if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
945 inline WORD wxMSW_ctype(wxChar ch)
946 {
947 WORD ret;
948 GetStringTypeEx(LOCALE_USER_DEFAULT, CT_CTYPE1, &ch, 1, &ret);
949 return ret;
950 }
951
952 WXDLLEXPORT int wxIsalnum(wxChar ch) { return IsCharAlphaNumeric(ch); }
953 WXDLLEXPORT int wxIsalpha(wxChar ch) { return IsCharAlpha(ch); }
954 WXDLLEXPORT int wxIsctrl(wxChar ch) { return wxMSW_ctype(ch) & C1_CNTRL; }
955 WXDLLEXPORT int wxIsdigit(wxChar ch) { return wxMSW_ctype(ch) & C1_DIGIT; }
956 WXDLLEXPORT int wxIsgraph(wxChar ch) { return wxMSW_ctype(ch) & (C1_DIGIT|C1_PUNCT|C1_ALPHA); }
957 WXDLLEXPORT int wxIslower(wxChar ch) { return IsCharLower(ch); }
958 WXDLLEXPORT int wxIsprint(wxChar ch) { return wxMSW_ctype(ch) & (C1_DIGIT|C1_SPACE|C1_PUNCT|C1_ALPHA); }
959 WXDLLEXPORT int wxIspunct(wxChar ch) { return wxMSW_ctype(ch) & C1_PUNCT; }
960 WXDLLEXPORT int wxIsspace(wxChar ch) { return wxMSW_ctype(ch) & C1_SPACE; }
961 WXDLLEXPORT int wxIsupper(wxChar ch) { return IsCharUpper(ch); }
962 WXDLLEXPORT int wxIsxdigit(wxChar ch) { return wxMSW_ctype(ch) & C1_XDIGIT; }
963 WXDLLEXPORT int wxTolower(wxChar ch) { return (wxChar)CharLower((LPTSTR)(ch)); }
964 WXDLLEXPORT int wxToupper(wxChar ch) { return (wxChar)CharUpper((LPTSTR)(ch)); }
965 #endif
966
967 #ifndef wxStrdupA
968
969 WXDLLEXPORT char *wxStrdupA(const char *s)
970 {
971 return strcpy((char *)malloc(strlen(s) + 1), s);
972 }
973
974 #endif // wxStrdupA
975
976 #ifndef wxStrdupW
977
978 WXDLLEXPORT wchar_t * wxStrdupW(const wchar_t *pwz)
979 {
980 size_t size = (wxWcslen(pwz) + 1) * sizeof(wchar_t);
981 wchar_t *ret = (wchar_t *) malloc(size);
982 memcpy(ret, pwz, size);
983 return ret;
984 }
985
986 #endif // wxStrdupW
987
988 #ifndef wxStricmp
989 int WXDLLEXPORT wxStricmp(const wxChar *psz1, const wxChar *psz2)
990 {
991 register wxChar c1, c2;
992 do {
993 c1 = wxTolower(*psz1++);
994 c2 = wxTolower(*psz2++);
995 } while ( c1 && (c1 == c2) );
996 return c1 - c2;
997 }
998 #endif
999
1000 #ifndef wxStricmp
1001 int WXDLLEXPORT wxStrnicmp(const wxChar *s1, const wxChar *s2, size_t n)
1002 {
1003 register wxChar c1, c2;
1004 while (n && ((c1 = wxTolower(*s1)) == (c2 = wxTolower(*s2)) ) && c1) n--, s1++, s2++;
1005 if (n) {
1006 if (c1 < c2) return -1;
1007 if (c1 > c2) return 1;
1008 }
1009 return 0;
1010 }
1011 #endif
1012
1013 #ifndef wxStrtok
1014 WXDLLEXPORT wxChar * wxStrtok(wxChar *psz, const wxChar *delim, wxChar **save_ptr)
1015 {
1016 if (!psz)
1017 {
1018 psz = *save_ptr;
1019 if ( !psz )
1020 return NULL;
1021 }
1022
1023 psz += wxStrspn(psz, delim);
1024 if (!*psz)
1025 {
1026 *save_ptr = (wxChar *)NULL;
1027 return (wxChar *)NULL;
1028 }
1029
1030 wxChar *ret = psz;
1031 psz = wxStrpbrk(psz, delim);
1032 if (!psz)
1033 {
1034 *save_ptr = (wxChar*)NULL;
1035 }
1036 else
1037 {
1038 *psz = wxT('\0');
1039 *save_ptr = psz + 1;
1040 }
1041
1042 return ret;
1043 }
1044 #endif // wxStrtok
1045
1046 #ifndef wxSetlocale
1047 WXDLLEXPORT wxWCharBuffer wxSetlocale(int category, const wxChar *locale)
1048 {
1049 char *localeOld = setlocale(category, wxConvLocal.cWX2MB(locale));
1050
1051 return wxWCharBuffer(wxConvLocal.cMB2WC(localeOld));
1052 }
1053 #endif
1054
1055 // ----------------------------------------------------------------------------
1056 // string.h functions
1057 // ----------------------------------------------------------------------------
1058
1059 #ifdef wxNEED_WX_STRING_H
1060 WXDLLEXPORT wxChar * wxStrcat(wxChar *dest, const wxChar *src)
1061 {
1062 wxChar *ret = dest;
1063 while (*dest) dest++;
1064 while ((*dest++ = *src++));
1065 return ret;
1066 }
1067
1068 WXDLLEXPORT const wxChar * wxStrchr(const wxChar *s, wxChar c)
1069 {
1070 // be careful here as the terminating NUL makes part of the string
1071 while ( *s != c )
1072 {
1073 if ( !*s++ )
1074 return NULL;
1075 }
1076
1077 return s;
1078 }
1079
1080 WXDLLEXPORT int wxStrcmp(const wxChar *s1, const wxChar *s2)
1081 {
1082 while ((*s1 == *s2) && *s1) s1++, s2++;
1083 if ((wxUChar)*s1 < (wxUChar)*s2) return -1;
1084 if ((wxUChar)*s1 > (wxUChar)*s2) return 1;
1085 return 0;
1086 }
1087
1088 WXDLLEXPORT wxChar * wxStrcpy(wxChar *dest, const wxChar *src)
1089 {
1090 wxChar *ret = dest;
1091 while ((*dest++ = *src++));
1092 return ret;
1093 }
1094
1095 WXDLLEXPORT wxChar * wxStrncat(wxChar *dest, const wxChar *src, size_t n)
1096 {
1097 wxChar *ret = dest;
1098 while (*dest) dest++;
1099 while (n && (*dest++ = *src++)) n--;
1100 return ret;
1101 }
1102
1103 WXDLLEXPORT int wxStrncmp(const wxChar *s1, const wxChar *s2, size_t n)
1104 {
1105 while (n && (*s1 == *s2) && *s1) n--, s1++, s2++;
1106 if (n) {
1107 if ((wxUChar)*s1 < (wxUChar)*s2) return -1;
1108 if ((wxUChar)*s1 > (wxUChar)*s2) return 1;
1109 }
1110 return 0;
1111 }
1112
1113 WXDLLEXPORT wxChar * wxStrncpy(wxChar *dest, const wxChar *src, size_t n)
1114 {
1115 wxChar *ret = dest;
1116 while (n && (*dest++ = *src++)) n--;
1117 while (n) *dest++=0, n--; // the docs specify padding with zeroes
1118 return ret;
1119 }
1120
1121 WXDLLEXPORT const wxChar * wxStrpbrk(const wxChar *s, const wxChar *accept)
1122 {
1123 while (*s && !wxStrchr(accept, *s))
1124 s++;
1125
1126 return *s ? s : NULL;
1127 }
1128
1129 WXDLLEXPORT const wxChar * wxStrrchr(const wxChar *s, wxChar c)
1130 {
1131 const wxChar *ret = NULL;
1132 do
1133 {
1134 if ( *s == c )
1135 ret = s;
1136 s++;
1137 }
1138 while ( *s );
1139
1140 return ret;
1141 }
1142
1143 WXDLLEXPORT size_t wxStrspn(const wxChar *s, const wxChar *accept)
1144 {
1145 size_t len = 0;
1146 while (wxStrchr(accept, *s++)) len++;
1147 return len;
1148 }
1149
1150 WXDLLEXPORT const wxChar *wxStrstr(const wxChar *haystack, const wxChar *needle)
1151 {
1152 wxCHECK_RET( needle, NULL, _T("NULL argument in wxStrstr") );
1153
1154 // VZ: this is not exactly the most efficient string search algorithm...
1155
1156 const size_t len = wxStrlen(needle);
1157
1158 while ( const wxChar *fnd = wxStrchr(haystack, *needle) )
1159 {
1160 if ( !wxStrncmp(fnd, needle, len) )
1161 return fnd;
1162
1163 haystack = fnd + 1;
1164 }
1165
1166 return NULL;
1167 }
1168
1169 WXDLLEXPORT double wxStrtod(const wxChar *nptr, wxChar **endptr)
1170 {
1171 const wxChar *start = nptr;
1172
1173 // FIXME: only correct for C locale
1174 while (wxIsspace(*nptr)) nptr++;
1175 if (*nptr == wxT('+') || *nptr == wxT('-')) nptr++;
1176 while (wxIsdigit(*nptr)) nptr++;
1177 if (*nptr == wxT('.')) {
1178 nptr++;
1179 while (wxIsdigit(*nptr)) nptr++;
1180 }
1181 if (*nptr == wxT('E') || *nptr == wxT('e')) {
1182 nptr++;
1183 if (*nptr == wxT('+') || *nptr == wxT('-')) nptr++;
1184 while (wxIsdigit(*nptr)) nptr++;
1185 }
1186
1187 wxString data(nptr, nptr-start);
1188 wxWX2MBbuf dat = data.mb_str(wxConvLocal);
1189 char *rdat = wxMBSTRINGCAST dat;
1190 double ret = strtod(dat, &rdat);
1191
1192 if (endptr) *endptr = (wxChar *)(start + (rdat - (const char *)dat));
1193
1194 return ret;
1195 }
1196
1197 WXDLLEXPORT long int wxStrtol(const wxChar *nptr, wxChar **endptr, int base)
1198 {
1199 const wxChar *start = nptr;
1200
1201 // FIXME: only correct for C locale
1202 while (wxIsspace(*nptr)) nptr++;
1203 if (*nptr == wxT('+') || *nptr == wxT('-')) nptr++;
1204 if (((base == 0) || (base == 16)) &&
1205 (nptr[0] == wxT('0') && nptr[1] == wxT('x'))) {
1206 nptr += 2;
1207 base = 16;
1208 }
1209 else if ((base == 0) && (nptr[0] == wxT('0'))) base = 8;
1210 else if (base == 0) base = 10;
1211
1212 while ((wxIsdigit(*nptr) && (*nptr - wxT('0') < base)) ||
1213 (wxIsalpha(*nptr) && (wxToupper(*nptr) - wxT('A') + 10 < base))) nptr++;
1214
1215 wxString data(nptr, nptr-start);
1216 wxWX2MBbuf dat = data.mb_str(wxConvLocal);
1217 char *rdat = wxMBSTRINGCAST dat;
1218 long int ret = strtol(dat, &rdat, base);
1219
1220 if (endptr) *endptr = (wxChar *)(start + (rdat - (const char *)dat));
1221
1222 return ret;
1223 }
1224 #endif // wxNEED_WX_STRING_H
1225
1226 #ifdef wxNEED_WX_STDIO_H
1227 WXDLLEXPORT FILE * wxFopen(const wxChar *path, const wxChar *mode)
1228 {
1229 char mode_buffer[10];
1230 for (size_t i = 0; i < wxStrlen(mode)+1; i++)
1231 mode_buffer[i] = (char) mode[i];
1232
1233 return fopen( wxConvFile.cWX2MB(path), mode_buffer );
1234 }
1235
1236 WXDLLEXPORT FILE * wxFreopen(const wxChar *path, const wxChar *mode, FILE *stream)
1237 {
1238 char mode_buffer[10];
1239 for (size_t i = 0; i < wxStrlen(mode)+1; i++)
1240 mode_buffer[i] = (char) mode[i];
1241
1242 return freopen( wxConvFile.cWX2MB(path), mode_buffer, stream );
1243 }
1244
1245 WXDLLEXPORT int wxRemove(const wxChar *path)
1246 {
1247 return remove( wxConvFile.cWX2MB(path) );
1248 }
1249
1250 WXDLLEXPORT int wxRename(const wxChar *oldpath, const wxChar *newpath)
1251 {
1252 return rename( wxConvFile.cWX2MB(oldpath), wxConvFile.cWX2MB(newpath) );
1253 }
1254 #endif
1255
1256 #ifndef wxAtof
1257 double WXDLLEXPORT wxAtof(const wxChar *psz)
1258 {
1259 return atof(wxConvLocal.cWX2MB(psz));
1260 }
1261 #endif
1262
1263 #ifdef wxNEED_WX_STDLIB_H
1264 int WXDLLEXPORT wxAtoi(const wxChar *psz)
1265 {
1266 return atoi(wxConvLocal.cWX2MB(psz));
1267 }
1268
1269 long WXDLLEXPORT wxAtol(const wxChar *psz)
1270 {
1271 return atol(wxConvLocal.cWX2MB(psz));
1272 }
1273
1274 wxChar * WXDLLEXPORT wxGetenv(const wxChar *name)
1275 {
1276 static wxHashTable env;
1277
1278 // check if we already have stored the converted env var
1279 wxObject *data = env.Get(name);
1280 if (!data)
1281 {
1282 // nope, retrieve it,
1283 #if wxUSE_UNICODE
1284 wxCharBuffer buffer = wxConvLocal.cWX2MB(name);
1285 // printf( "buffer %s\n", (const char*) buffer );
1286 const char *val = getenv( (const char *)buffer );
1287 #else
1288 const char *val = getenv( name );
1289 #endif
1290
1291 if (!val) return (wxChar *)NULL;
1292 // printf( "home %s\n", val );
1293
1294 // convert it,
1295 #ifdef wxUSE_UNICODE
1296 data = (wxObject *)new wxString(val, wxConvLocal);
1297 #else
1298 data = (wxObject *)new wxString(val);
1299 #endif
1300
1301 // and store it
1302 env.Put(name, data);
1303 }
1304 // return converted env var
1305 return (wxChar *)((wxString *)data)->c_str();
1306 }
1307
1308 int WXDLLEXPORT wxSystem(const wxChar *psz)
1309 {
1310 return system(wxConvLocal.cWX2MB(psz));
1311 }
1312
1313 #endif
1314
1315 #ifdef wxNEED_WX_TIME_H
1316 WXDLLEXPORT size_t wxStrftime(wxChar *s, size_t max, const wxChar *fmt, const struct tm *tm)
1317 {
1318 if (!max) return 0;
1319
1320 char *buf = (char *)malloc(max);
1321 size_t ret = strftime(buf, max, wxConvLocal.cWX2MB(fmt), tm);
1322 if (ret)
1323 {
1324 wxStrcpy(s, wxConvLocal.cMB2WX(buf));
1325 free(buf);
1326 return wxStrlen(s);
1327 }
1328 else
1329 {
1330 free(buf);
1331 *s = 0;
1332 return 0;
1333 }
1334 }
1335 #endif