]> git.saurik.com Git - wxWidgets.git/blob - src/common/wxprintf.cpp
Patch from FM with more bakefile tweaks and etc.
[wxWidgets.git] / src / common / wxprintf.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/wxprintf.cpp
3 // Purpose: wxWidgets wxPrintf() implementation
4 // Author: Ove Kaven
5 // Modified by: Ron Lee, Francesco Montorsi
6 // Created: 09/04/99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWidgets copyright
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ===========================================================================
13 // headers, declarations, constants
14 // ===========================================================================
15
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #include "wx/wxchar.h"
24
25 #include <string.h>
26
27 #ifndef WX_PRECOMP
28 #include "wx/string.h"
29 #include "wx/hash.h"
30 #include "wx/utils.h" // for wxMin and wxMax
31 #include "wx/log.h"
32 #endif
33
34 #if defined(__MWERKS__) && __MSL__ >= 0x6000
35 namespace std {}
36 using namespace std ;
37 #endif
38
39
40 // ============================================================================
41 // printf() implementation
42 // ============================================================================
43
44 // special test mode: define all functions below even if we don't really need
45 // them to be able to test them
46 #ifdef wxTEST_PRINTF
47 #undef wxVsnprintf_
48 #endif
49
50 // ----------------------------------------------------------------------------
51 // implement [v]snprintf() if the system doesn't provide a safe one
52 // or if the system's one does not support positional parameters
53 // (very useful for i18n purposes)
54 // ----------------------------------------------------------------------------
55
56 #if !defined(wxVsnprintf_)
57
58 #if !wxUSE_WXVSNPRINTF
59 #error wxUSE_WXVSNPRINTF must be 1 if our wxVsnprintf_ is used
60 #endif
61
62 // wxUSE_STRUTILS says our wxVsnprintf_ implementation to use or not to
63 // use wxStrlen and wxStrncpy functions over one-char processing loops.
64 //
65 // Some benchmarking revealed that wxUSE_STRUTILS == 1 has the following
66 // effects:
67 // -> on Windows:
68 // when in ANSI mode, this setting does not change almost anything
69 // when in Unicode mode, it gives ~ 50% of slowdown !
70 // -> on Linux:
71 // both in ANSI and Unicode mode it gives ~ 60% of speedup !
72 //
73 #if defined(WIN32) && wxUSE_UNICODE
74 #define wxUSE_STRUTILS 0
75 #else
76 #define wxUSE_STRUTILS 1
77 #endif
78
79 // some limits of our implementation
80 #define wxMAX_SVNPRINTF_ARGUMENTS 64
81 #define wxMAX_SVNPRINTF_FLAGBUFFER_LEN 32
82 #define wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN 512
83
84 // prefer snprintf over sprintf
85 #if defined(__VISUALC__) || \
86 (defined(__BORLANDC__) && __BORLANDC__ >= 0x540)
87 #define system_sprintf(buff, max, flags, data) \
88 ::_snprintf(buff, max, flags, data)
89 #elif defined(HAVE_SNPRINTF)
90 #define system_sprintf(buff, max, flags, data) \
91 ::snprintf(buff, max, flags, data)
92 #else // NB: at least sprintf() should always be available
93 // since 'max' is not used in this case, wxVsnprintf() should always
94 // ensure that 'buff' is big enough for all common needs
95 // (see wxMAX_SVNPRINTF_FLAGBUFFER_LEN and wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN)
96 #define system_sprintf(buff, max, flags, data) \
97 ::sprintf(buff, flags, data)
98
99 #define SYSTEM_SPRINTF_IS_UNSAFE
100 #endif
101
102 // the conversion specifiers accepted by wxVsnprintf_
103 enum wxPrintfArgType {
104 wxPAT_INVALID = -1,
105
106 wxPAT_INT, // %d, %i, %o, %u, %x, %X
107 wxPAT_LONGINT, // %ld, etc
108 #ifdef wxLongLong_t
109 wxPAT_LONGLONGINT, // %Ld, etc
110 #endif
111 wxPAT_SIZET, // %Zd, etc
112
113 wxPAT_DOUBLE, // %e, %E, %f, %g, %G
114 wxPAT_LONGDOUBLE, // %le, etc
115
116 wxPAT_POINTER, // %p
117
118 wxPAT_CHAR, // %hc (in ANSI mode: %c, too)
119 wxPAT_WCHAR, // %lc (in Unicode mode: %c, too)
120
121 wxPAT_PCHAR, // %s (related to a char *)
122 wxPAT_PWCHAR, // %s (related to a wchar_t *)
123
124 wxPAT_NINT, // %n
125 wxPAT_NSHORTINT, // %hn
126 wxPAT_NLONGINT // %ln
127 };
128
129 // an argument passed to wxVsnprintf_
130 typedef union {
131 int pad_int; // %d, %i, %o, %u, %x, %X
132 long int pad_longint; // %ld, etc
133 #ifdef wxLongLong_t
134 wxLongLong_t pad_longlongint; // %Ld, etc
135 #endif
136 size_t pad_sizet; // %Zd, etc
137
138 double pad_double; // %e, %E, %f, %g, %G
139 long double pad_longdouble; // %le, etc
140
141 void *pad_pointer; // %p
142
143 char pad_char; // %hc (in ANSI mode: %c, too)
144 wchar_t pad_wchar; // %lc (in Unicode mode: %c, too)
145
146 char *pad_pchar; // %s (related to a char *)
147 wchar_t *pad_pwchar; // %s (related to a wchar_t *)
148
149 int *pad_nint; // %n
150 short int *pad_nshortint; // %hn
151 long int *pad_nlongint; // %ln
152 } wxPrintfArg;
153
154
155 // Contains parsed data relative to a conversion specifier given to
156 // wxVsnprintf_ and parsed from the format string
157 // NOTE: in C++ there is almost no difference between struct & classes thus
158 // there is no performance gain by using a struct here...
159 class wxPrintfConvSpec
160 {
161 public:
162
163 // the position of the argument relative to this conversion specifier
164 size_t m_pos;
165
166 // the type of this conversion specifier
167 wxPrintfArgType m_type;
168
169 // the minimum and maximum width
170 // when one of this var is set to -1 it means: use the following argument
171 // in the stack as minimum/maximum width for this conversion specifier
172 int m_nMinWidth, m_nMaxWidth;
173
174 // does the argument need to the be aligned to left ?
175 bool m_bAlignLeft;
176
177 // pointer to the '%' of this conversion specifier in the format string
178 // NOTE: this points somewhere in the string given to the Parse() function -
179 // it's task of the caller ensure that memory is still valid !
180 const wxChar *m_pArgPos;
181
182 // pointer to the last character of this conversion specifier in the
183 // format string
184 // NOTE: this points somewhere in the string given to the Parse() function -
185 // it's task of the caller ensure that memory is still valid !
186 const wxChar *m_pArgEnd;
187
188 // a little buffer where formatting flags like #+\.hlqLZ are stored by Parse()
189 // for use in Process()
190 // NB: even if this buffer is used only for numeric conversion specifiers and
191 // thus could be safely declared as a char[] buffer, we want it to be wxChar
192 // so that in Unicode builds we can avoid to convert its contents to Unicode
193 // chars when copying it in user's buffer.
194 char m_szFlags[wxMAX_SVNPRINTF_FLAGBUFFER_LEN];
195
196
197 public:
198
199 // we don't declare this as a constructor otherwise it would be called
200 // automatically and we don't want this: to be optimized, wxVsnprintf_
201 // calls this function only on really-used instances of this class.
202 void Init();
203
204 // Parses the first conversion specifier in the given string, which must
205 // begin with a '%'. Returns false if the first '%' does not introduce a
206 // (valid) conversion specifier and thus should be ignored.
207 bool Parse(const wxChar *format);
208
209 // Process this conversion specifier and puts the result in the given
210 // buffer. Returns the number of characters written in 'buf' or -1 if
211 // there's not enough space.
212 int Process(wxChar *buf, size_t lenMax, wxPrintfArg *p, size_t written);
213
214 // Loads the argument of this conversion specifier from given va_list.
215 bool LoadArg(wxPrintfArg *p, va_list &argptr);
216
217 private:
218 // An helper function of LoadArg() which is used to handle the '*' flag
219 void ReplaceAsteriskWith(int w);
220 };
221
222 void wxPrintfConvSpec::Init()
223 {
224 m_nMinWidth = 0;
225 m_nMaxWidth = 0xFFFF;
226 m_pos = 0;
227 m_bAlignLeft = false;
228 m_pArgPos = m_pArgEnd = NULL;
229 m_type = wxPAT_INVALID;
230
231 // this character will never be removed from m_szFlags array and
232 // is important when calling sprintf() in wxPrintfConvSpec::Process() !
233 m_szFlags[0] = '%';
234 }
235
236 bool wxPrintfConvSpec::Parse(const wxChar *format)
237 {
238 bool done = false;
239
240 // temporary parse data
241 size_t flagofs = 1;
242 bool in_prec, // true if we found the dot in some previous iteration
243 prec_dot; // true if the dot has been already added to m_szFlags
244 int ilen = 0;
245
246 m_bAlignLeft = in_prec = prec_dot = false;
247 m_pArgPos = m_pArgEnd = format;
248 do
249 {
250 #define CHECK_PREC \
251 if (in_prec && !prec_dot) \
252 { \
253 m_szFlags[flagofs++] = '.'; \
254 prec_dot = true; \
255 }
256
257 // what follows '%'?
258 const wxChar ch = *(++m_pArgEnd);
259 switch ( ch )
260 {
261 case wxT('\0'):
262 return false; // not really an argument
263
264 case wxT('%'):
265 return false; // not really an argument
266
267 case wxT('#'):
268 case wxT('0'):
269 case wxT(' '):
270 case wxT('+'):
271 case wxT('\''):
272 CHECK_PREC
273 m_szFlags[flagofs++] = char(ch);
274 break;
275
276 case wxT('-'):
277 CHECK_PREC
278 m_bAlignLeft = true;
279 m_szFlags[flagofs++] = char(ch);
280 break;
281
282 case wxT('.'):
283 CHECK_PREC
284 in_prec = true;
285 prec_dot = false;
286 m_nMaxWidth = 0;
287 // dot will be auto-added to m_szFlags if non-negative
288 // number follows
289 break;
290
291 case wxT('h'):
292 ilen = -1;
293 CHECK_PREC
294 m_szFlags[flagofs++] = char(ch);
295 break;
296
297 case wxT('l'):
298 // NB: it's safe to use flagofs-1 as flagofs always start from 1
299 if (m_szFlags[flagofs-1] == 'l') // 'll' modifier is the same as 'L' or 'q'
300 ilen = 2;
301 else
302 ilen = 1;
303 CHECK_PREC
304 m_szFlags[flagofs++] = char(ch);
305 break;
306
307 case wxT('q'):
308 case wxT('L'):
309 ilen = 2;
310 CHECK_PREC
311 m_szFlags[flagofs++] = char(ch);
312 break;
313 #ifdef __WXMSW__
314 // under Windows we support the special '%I64' notation as longlong
315 // integer conversion specifier for MSVC compatibility
316 // (it behaves exactly as '%lli' or '%Li' or '%qi')
317 case wxT('I'):
318 if (*(m_pArgEnd+1) != wxT('6') ||
319 *(m_pArgEnd+2) != wxT('4'))
320 return false; // bad format
321
322 m_pArgEnd++;
323 m_pArgEnd++;
324
325 ilen = 2;
326 CHECK_PREC
327 m_szFlags[flagofs++] = char(ch);
328 m_szFlags[flagofs++] = '6';
329 m_szFlags[flagofs++] = '4';
330 break;
331 #endif // __WXMSW__
332
333 case wxT('Z'):
334 ilen = 3;
335 CHECK_PREC
336 m_szFlags[flagofs++] = char(ch);
337 break;
338
339 case wxT('*'):
340 if (in_prec)
341 {
342 CHECK_PREC
343
344 // tell Process() to use the next argument
345 // in the stack as maxwidth...
346 m_nMaxWidth = -1;
347 }
348 else
349 {
350 // tell Process() to use the next argument
351 // in the stack as minwidth...
352 m_nMinWidth = -1;
353 }
354
355 // save the * in our formatting buffer...
356 // will be replaced later by Process()
357 m_szFlags[flagofs++] = char(ch);
358 break;
359
360 case wxT('1'): case wxT('2'): case wxT('3'):
361 case wxT('4'): case wxT('5'): case wxT('6'):
362 case wxT('7'): case wxT('8'): case wxT('9'):
363 {
364 int len = 0;
365 CHECK_PREC
366 while ( (*m_pArgEnd >= wxT('0')) &&
367 (*m_pArgEnd <= wxT('9')) )
368 {
369 m_szFlags[flagofs++] = char(*m_pArgEnd);
370 len = len*10 + (*m_pArgEnd - wxT('0'));
371 m_pArgEnd++;
372 }
373
374 if (in_prec)
375 m_nMaxWidth = len;
376 else
377 m_nMinWidth = len;
378
379 m_pArgEnd--; // the main loop pre-increments n again
380 }
381 break;
382
383 case wxT('$'): // a positional parameter (e.g. %2$s) ?
384 {
385 if (m_nMinWidth <= 0)
386 break; // ignore this formatting flag as no
387 // numbers are preceding it
388
389 // remove from m_szFlags all digits previously added
390 do {
391 flagofs--;
392 } while (m_szFlags[flagofs] >= '1' &&
393 m_szFlags[flagofs] <= '9');
394
395 // re-adjust the offset making it point to the
396 // next free char of m_szFlags
397 flagofs++;
398
399 m_pos = m_nMinWidth;
400 m_nMinWidth = 0;
401 }
402 break;
403
404 case wxT('d'):
405 case wxT('i'):
406 case wxT('o'):
407 case wxT('u'):
408 case wxT('x'):
409 case wxT('X'):
410 CHECK_PREC
411 m_szFlags[flagofs++] = char(ch);
412 m_szFlags[flagofs] = '\0';
413 if (ilen == 0)
414 m_type = wxPAT_INT;
415 else if (ilen == -1)
416 // NB: 'short int' value passed through '...'
417 // is promoted to 'int', so we have to get
418 // an int from stack even if we need a short
419 m_type = wxPAT_INT;
420 else if (ilen == 1)
421 m_type = wxPAT_LONGINT;
422 else if (ilen == 2)
423 #ifdef wxLongLong_t
424 m_type = wxPAT_LONGLONGINT;
425 #else // !wxLongLong_t
426 m_type = wxPAT_LONGINT;
427 #endif // wxLongLong_t/!wxLongLong_t
428 else if (ilen == 3)
429 m_type = wxPAT_SIZET;
430 done = true;
431 break;
432
433 case wxT('e'):
434 case wxT('E'):
435 case wxT('f'):
436 case wxT('g'):
437 case wxT('G'):
438 CHECK_PREC
439 m_szFlags[flagofs++] = char(ch);
440 m_szFlags[flagofs] = '\0';
441 if (ilen == 2)
442 m_type = wxPAT_LONGDOUBLE;
443 else
444 m_type = wxPAT_DOUBLE;
445 done = true;
446 break;
447
448 case wxT('p'):
449 m_type = wxPAT_POINTER;
450 m_szFlags[flagofs++] = char(ch);
451 m_szFlags[flagofs] = '\0';
452 done = true;
453 break;
454
455 case wxT('c'):
456 if (ilen == -1)
457 {
458 // in Unicode mode %hc == ANSI character
459 // and in ANSI mode, %hc == %c == ANSI...
460 m_type = wxPAT_CHAR;
461 }
462 else if (ilen == 1)
463 {
464 // in ANSI mode %lc == Unicode character
465 // and in Unicode mode, %lc == %c == Unicode...
466 m_type = wxPAT_WCHAR;
467 }
468 else
469 {
470 #if wxUSE_UNICODE
471 // in Unicode mode, %c == Unicode character
472 m_type = wxPAT_WCHAR;
473 #else
474 // in ANSI mode, %c == ANSI character
475 m_type = wxPAT_CHAR;
476 #endif
477 }
478 done = true;
479 break;
480
481 case wxT('s'):
482 if (ilen == -1)
483 {
484 // Unicode mode wx extension: we'll let %hs mean non-Unicode
485 // strings (when in ANSI mode, %s == %hs == ANSI string)
486 m_type = wxPAT_PCHAR;
487 }
488 else if (ilen == 1)
489 {
490 // in Unicode mode, %ls == %s == Unicode string
491 // in ANSI mode, %ls == Unicode string
492 m_type = wxPAT_PWCHAR;
493 }
494 else
495 {
496 #if wxUSE_UNICODE
497 m_type = wxPAT_PWCHAR;
498 #else
499 m_type = wxPAT_PCHAR;
500 #endif
501 }
502 done = true;
503 break;
504
505 case wxT('n'):
506 if (ilen == 0)
507 m_type = wxPAT_NINT;
508 else if (ilen == -1)
509 m_type = wxPAT_NSHORTINT;
510 else if (ilen >= 1)
511 m_type = wxPAT_NLONGINT;
512 done = true;
513 break;
514
515 default:
516 // bad format, don't consider this an argument;
517 // leave it unchanged
518 return false;
519 }
520
521 if (flagofs == wxMAX_SVNPRINTF_FLAGBUFFER_LEN)
522 {
523 wxLogDebug(wxT("Too many flags specified for a single conversion specifier!"));
524 return false;
525 }
526 }
527 while (!done);
528
529 return true; // parsing was successful
530 }
531
532
533 void wxPrintfConvSpec::ReplaceAsteriskWith(int width)
534 {
535 char temp[wxMAX_SVNPRINTF_FLAGBUFFER_LEN];
536
537 // find the first * in our flag buffer
538 char *pwidth = strchr(m_szFlags, '*');
539 wxCHECK_RET(pwidth, _T("field width must be specified"));
540
541 // save what follows the * (the +1 is to skip the asterisk itself!)
542 strcpy(temp, pwidth+1);
543 if (width < 0)
544 {
545 pwidth[0] = wxT('-');
546 pwidth++;
547 }
548
549 // replace * with the actual integer given as width
550 #ifndef SYSTEM_SPRINTF_IS_UNSAFE
551 int maxlen = (m_szFlags + wxMAX_SVNPRINTF_FLAGBUFFER_LEN - pwidth) /
552 sizeof(*m_szFlags);
553 #endif
554 int offset = system_sprintf(pwidth, maxlen, "%d", abs(width));
555
556 // restore after the expanded * what was following it
557 strcpy(pwidth+offset, temp);
558 }
559
560 bool wxPrintfConvSpec::LoadArg(wxPrintfArg *p, va_list &argptr)
561 {
562 // did the '*' width/precision specifier was used ?
563 if (m_nMaxWidth == -1)
564 {
565 // take the maxwidth specifier from the stack
566 m_nMaxWidth = va_arg(argptr, int);
567 if (m_nMaxWidth < 0)
568 m_nMaxWidth = 0;
569 else
570 ReplaceAsteriskWith(m_nMaxWidth);
571 }
572
573 if (m_nMinWidth == -1)
574 {
575 // take the minwidth specifier from the stack
576 m_nMinWidth = va_arg(argptr, int);
577
578 ReplaceAsteriskWith(m_nMinWidth);
579 if (m_nMinWidth < 0)
580 {
581 m_bAlignLeft = !m_bAlignLeft;
582 m_nMinWidth = -m_nMinWidth;
583 }
584 }
585
586 switch (m_type) {
587 case wxPAT_INT:
588 p->pad_int = va_arg(argptr, int);
589 break;
590 case wxPAT_LONGINT:
591 p->pad_longint = va_arg(argptr, long int);
592 break;
593 #ifdef wxLongLong_t
594 case wxPAT_LONGLONGINT:
595 p->pad_longlongint = va_arg(argptr, wxLongLong_t);
596 break;
597 #endif // wxLongLong_t
598 case wxPAT_SIZET:
599 p->pad_sizet = va_arg(argptr, size_t);
600 break;
601 case wxPAT_DOUBLE:
602 p->pad_double = va_arg(argptr, double);
603 break;
604 case wxPAT_LONGDOUBLE:
605 p->pad_longdouble = va_arg(argptr, long double);
606 break;
607 case wxPAT_POINTER:
608 p->pad_pointer = va_arg(argptr, void *);
609 break;
610
611 case wxPAT_CHAR:
612 p->pad_char = (char)va_arg(argptr, int); // char is promoted to int when passed through '...'
613 break;
614 case wxPAT_WCHAR:
615 p->pad_wchar = (wchar_t)va_arg(argptr, int); // char is promoted to int when passed through '...'
616 break;
617
618 case wxPAT_PCHAR:
619 p->pad_pchar = va_arg(argptr, char *);
620 break;
621 case wxPAT_PWCHAR:
622 p->pad_pwchar = va_arg(argptr, wchar_t *);
623 break;
624
625 case wxPAT_NINT:
626 p->pad_nint = va_arg(argptr, int *);
627 break;
628 case wxPAT_NSHORTINT:
629 p->pad_nshortint = va_arg(argptr, short int *);
630 break;
631 case wxPAT_NLONGINT:
632 p->pad_nlongint = va_arg(argptr, long int *);
633 break;
634
635 case wxPAT_INVALID:
636 default:
637 return false;
638 }
639
640 return true; // loading was successful
641 }
642
643 int wxPrintfConvSpec::Process(wxChar *buf, size_t lenMax, wxPrintfArg *p, size_t written)
644 {
645 // buffer to avoid dynamic memory allocation each time for small strings;
646 // note that this buffer is used only to hold results of number formatting,
647 // %s directly writes user's string in buf, without using szScratch
648 char szScratch[wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN];
649 size_t lenScratch = 0, lenCur = 0;
650
651 #define APPEND_CH(ch) \
652 { \
653 if ( lenCur == lenMax ) \
654 return -1; \
655 \
656 buf[lenCur++] = ch; \
657 }
658
659 #define APPEND_STR(s) \
660 { \
661 for ( const wxChar *p = s; *p; p++ ) \
662 { \
663 APPEND_CH(*p); \
664 } \
665 }
666
667 switch ( m_type )
668 {
669 case wxPAT_INT:
670 lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_int);
671 break;
672
673 case wxPAT_LONGINT:
674 lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_longint);
675 break;
676
677 #ifdef wxLongLong_t
678 case wxPAT_LONGLONGINT:
679 lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_longlongint);
680 break;
681 #endif // SIZEOF_LONG_LONG
682
683 case wxPAT_SIZET:
684 lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_sizet);
685 break;
686
687 case wxPAT_LONGDOUBLE:
688 lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_longdouble);
689 break;
690
691 case wxPAT_DOUBLE:
692 lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_double);
693 break;
694
695 case wxPAT_POINTER:
696 lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_pointer);
697 break;
698
699 case wxPAT_CHAR:
700 case wxPAT_WCHAR:
701 {
702 wxChar val =
703 #if wxUSE_UNICODE
704 p->pad_wchar;
705
706 if (m_type == wxPAT_CHAR)
707 {
708 // user passed a character explicitely indicated as ANSI...
709 const char buf[2] = { p->pad_char, 0 };
710 val = wxString(buf, wxConvLibc)[0u];
711
712 //wprintf(L"converting ANSI=>Unicode"); // for debug
713 }
714 #else
715 p->pad_char;
716
717 #if wxUSE_WCHAR_T
718 if (m_type == wxPAT_WCHAR)
719 {
720 // user passed a character explicitely indicated as Unicode...
721 const wchar_t buf[2] = { p->pad_wchar, 0 };
722 val = wxString(buf, wxConvLibc)[0u];
723
724 //printf("converting Unicode=>ANSI"); // for debug
725 }
726 #endif
727 #endif
728
729 size_t i;
730
731 if (!m_bAlignLeft)
732 for (i = 1; i < (size_t)m_nMinWidth; i++)
733 APPEND_CH(_T(' '));
734
735 APPEND_CH(val);
736
737 if (m_bAlignLeft)
738 for (i = 1; i < (size_t)m_nMinWidth; i++)
739 APPEND_CH(_T(' '));
740 }
741 break;
742
743 case wxPAT_PCHAR:
744 case wxPAT_PWCHAR:
745 {
746 wxString s;
747 const wxChar *val =
748 #if wxUSE_UNICODE
749 p->pad_pwchar;
750
751 if (m_type == wxPAT_PCHAR)
752 {
753 // user passed a string explicitely indicated as ANSI...
754 val = s = wxString(p->pad_pchar, wxConvLibc);
755
756 //wprintf(L"converting ANSI=>Unicode"); // for debug
757 }
758 #else
759 p->pad_pchar;
760
761 #if wxUSE_WCHAR_T
762 if (m_type == wxPAT_PWCHAR)
763 {
764 // user passed a string explicitely indicated as Unicode...
765 val = s = wxString(p->pad_pwchar, wxConvLibc);
766
767 //printf("converting Unicode=>ANSI"); // for debug
768 }
769 #endif
770 #endif
771 int len;
772
773 if (val)
774 {
775 #if wxUSE_STRUTILS
776 // at this point we are sure that m_nMaxWidth is positive or null
777 // (see top of wxPrintfConvSpec::LoadArg)
778 len = wxMin((unsigned int)m_nMaxWidth, wxStrlen(val));
779 #else
780 for ( len = 0; val[len] && (len < m_nMaxWidth); len++ )
781 ;
782 #endif
783 }
784 else if (m_nMaxWidth >= 6)
785 {
786 val = wxT("(null)");
787 len = 6;
788 }
789 else
790 {
791 val = wxEmptyString;
792 len = 0;
793 }
794
795 int i;
796
797 if (!m_bAlignLeft)
798 {
799 for (i = len; i < m_nMinWidth; i++)
800 APPEND_CH(_T(' '));
801 }
802
803 #if wxUSE_STRUTILS
804 len = wxMin((unsigned int)len, lenMax-lenCur);
805 wxStrncpy(buf+lenCur, val, len);
806 lenCur += len;
807 #else
808 for (i = 0; i < len; i++)
809 APPEND_CH(val[i]);
810 #endif
811
812 if (m_bAlignLeft)
813 {
814 for (i = len; i < m_nMinWidth; i++)
815 APPEND_CH(_T(' '));
816 }
817 }
818 break;
819
820 case wxPAT_NINT:
821 *p->pad_nint = written;
822 break;
823
824 case wxPAT_NSHORTINT:
825 *p->pad_nshortint = (short int)written;
826 break;
827
828 case wxPAT_NLONGINT:
829 *p->pad_nlongint = written;
830 break;
831
832 case wxPAT_INVALID:
833 default:
834 return -1;
835 }
836
837 // if we used system's sprintf() then we now need to append the s_szScratch
838 // buffer to the given one...
839 switch (m_type)
840 {
841 case wxPAT_INT:
842 case wxPAT_LONGINT:
843 #ifdef wxLongLong_t
844 case wxPAT_LONGLONGINT:
845 #endif
846 case wxPAT_SIZET:
847 case wxPAT_LONGDOUBLE:
848 case wxPAT_DOUBLE:
849 case wxPAT_POINTER:
850 wxASSERT(lenScratch < wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN);
851 #if !wxUSE_UNICODE
852 {
853 if (lenMax < lenScratch)
854 {
855 // fill output buffer and then return -1
856 wxStrncpy(buf, szScratch, lenMax);
857 return -1;
858 }
859 wxStrncpy(buf, szScratch, lenScratch);
860 lenCur += lenScratch;
861 }
862 #else
863 {
864 // Copy the char scratch to the wide output. This requires
865 // conversion, but we can optimise by making use of the fact
866 // that we are formatting numbers, this should mean only 7-bit
867 // ascii characters are involved.
868 wxChar *bufptr = buf;
869 const wxChar *bufend = buf + lenMax;
870 const char *scratchptr = szScratch;
871
872 // Simply copy each char to a wxChar, stopping on the first
873 // null or non-ascii byte. Checking '(signed char)*scratchptr
874 // > 0' is an extra optimisation over '*scratchptr != 0 &&
875 // isascii(*scratchptr)', though it assumes signed char is
876 // 8-bit 2 complement.
877 while ((signed char)*scratchptr > 0 && bufptr != bufend)
878 *bufptr++ = *scratchptr++;
879
880 if (bufptr == bufend)
881 return -1;
882
883 lenCur += bufptr - buf;
884
885 // check if the loop stopped on a non-ascii char, if yes then
886 // fall back to wxMB2WX
887 if (*scratchptr)
888 {
889 size_t len = wxMB2WX(bufptr, scratchptr, bufend - bufptr);
890
891 if (len && len != (size_t)(-1))
892 if (bufptr[len - 1])
893 return -1;
894 else
895 lenCur += len;
896 }
897 }
898 #endif
899 break;
900
901 default:
902 break; // all other cases were completed previously
903 }
904
905 return lenCur;
906 }
907
908 // Copy chars from source to dest converting '%%' to '%'. Takes at most maxIn
909 // chars from source and write at most outMax chars to dest, returns the
910 // number of chars actually written. Does not treat null specially.
911 //
912 static int wxCopyStrWithPercents(
913 size_t maxOut,
914 wxChar *dest,
915 size_t maxIn,
916 const wxChar *source)
917 {
918 size_t written = 0;
919
920 if (maxIn == 0)
921 return 0;
922
923 size_t i;
924 for ( i = 0; i < maxIn-1 && written < maxOut; source++, i++)
925 {
926 dest[written++] = *source;
927 if (*(source+1) == wxT('%'))
928 {
929 // skip this additional '%' character
930 source++;
931 i++;
932 }
933 }
934
935 if (i < maxIn && written < maxOut)
936 // copy last character inconditionally
937 dest[written++] = *source;
938
939 return written;
940 }
941
942 int WXDLLEXPORT wxVsnprintf_(wxChar *buf, size_t lenMax,
943 const wxChar *format, va_list argptr)
944 {
945 // useful for debugging, to understand if we are really using this function
946 // rather than the system implementation
947 #if 0
948 wprintf(L"Using wxVsnprintf_\n");
949 #endif
950
951 // required memory:
952 wxPrintfConvSpec arg[wxMAX_SVNPRINTF_ARGUMENTS];
953 wxPrintfArg argdata[wxMAX_SVNPRINTF_ARGUMENTS];
954 wxPrintfConvSpec *pspec[wxMAX_SVNPRINTF_ARGUMENTS] = { NULL };
955
956 size_t i;
957
958 // number of characters in the buffer so far, must be less than lenMax
959 size_t lenCur = 0;
960
961 size_t nargs = 0;
962 const wxChar *toparse = format;
963
964 // parse the format string
965 bool posarg_present = false, nonposarg_present = false;
966 for (; *toparse != wxT('\0'); toparse++)
967 {
968 if (*toparse == wxT('%') )
969 {
970 arg[nargs].Init();
971
972 // let's see if this is a (valid) conversion specifier...
973 if (arg[nargs].Parse(toparse))
974 {
975 // ...yes it is
976 wxPrintfConvSpec *current = &arg[nargs];
977
978 // make toparse point to the end of this specifier
979 toparse = current->m_pArgEnd;
980
981 if (current->m_pos > 0)
982 {
983 // the positionals start from number 1... adjust the index
984 current->m_pos--;
985 posarg_present = true;
986 }
987 else
988 {
989 // not a positional argument...
990 current->m_pos = nargs;
991 nonposarg_present = true;
992 }
993
994 // this conversion specifier is tied to the pos-th argument...
995 pspec[current->m_pos] = current;
996 nargs++;
997
998 if (nargs == wxMAX_SVNPRINTF_ARGUMENTS)
999 {
1000 wxLogDebug(wxT("A single call to wxVsnprintf() has more than %d arguments; ")
1001 wxT("ignoring all remaining arguments."), wxMAX_SVNPRINTF_ARGUMENTS);
1002 break; // cannot handle any additional conv spec
1003 }
1004 }
1005 else
1006 {
1007 // it's safe to look in the next character of toparse as at worst
1008 // we'll hit its \0
1009 if (*(toparse+1) == wxT('%'))
1010 toparse++; // the Parse() returned false because we've found a %%
1011 }
1012 }
1013 }
1014
1015 if (posarg_present && nonposarg_present)
1016 {
1017 buf[0] = 0;
1018 return -1; // format strings with both positional and
1019 } // non-positional conversion specifier are unsupported !!
1020
1021 // on platforms where va_list is an array type, it is necessary to make a
1022 // copy to be able to pass it to LoadArg as a reference.
1023 bool ok = true;
1024 va_list ap;
1025 wxVaCopy(ap, argptr);
1026
1027 // now load arguments from stack
1028 for (i=0; i < nargs && ok; i++)
1029 {
1030 // !pspec[i] means that the user forgot a positional parameter (e.g. %$1s %$3s);
1031 // LoadArg == false means that wxPrintfConvSpec::Parse failed to set the
1032 // conversion specifier 'type' to a valid value...
1033 ok = pspec[i] && pspec[i]->LoadArg(&argdata[i], ap);
1034 }
1035
1036 va_end(ap);
1037
1038 // something failed while loading arguments from the variable list...
1039 // (e.g. the user repeated twice the same positional argument)
1040 if (!ok)
1041 {
1042 buf[0] = 0;
1043 return -1;
1044 }
1045
1046 // finally, process each conversion specifier with its own argument
1047 toparse = format;
1048 for (i=0; i < nargs; i++)
1049 {
1050 // copy in the output buffer the portion of the format string between
1051 // last specifier and the current one
1052 size_t tocopy = ( arg[i].m_pArgPos - toparse );
1053
1054 lenCur += wxCopyStrWithPercents(lenMax - lenCur, buf + lenCur,
1055 tocopy, toparse);
1056 if (lenCur == lenMax)
1057 {
1058 buf[lenMax - 1] = 0;
1059 return lenMax+1; // not enough space in the output buffer !
1060 }
1061
1062 // process this specifier directly in the output buffer
1063 int n = arg[i].Process(buf+lenCur, lenMax - lenCur, &argdata[arg[i].m_pos], lenCur);
1064 if (n == -1)
1065 {
1066 buf[lenMax-1] = wxT('\0'); // be sure to always NUL-terminate the string
1067 return lenMax+1; // not enough space in the output buffer !
1068 }
1069 lenCur += n;
1070
1071 // the +1 is because wxPrintfConvSpec::m_pArgEnd points to the last character
1072 // of the format specifier, but we are not interested to it...
1073 toparse = arg[i].m_pArgEnd + 1;
1074 }
1075
1076 // copy portion of the format string after last specifier
1077 // NOTE: toparse is pointing to the character just after the last processed
1078 // conversion specifier
1079 // NOTE2: the +1 is because we want to copy also the '\0'
1080 size_t tocopy = wxStrlen(format) + 1 - ( toparse - format ) ;
1081
1082 lenCur += wxCopyStrWithPercents(lenMax - lenCur, buf + lenCur,
1083 tocopy, toparse) - 1;
1084 if (buf[lenCur])
1085 {
1086 buf[lenCur] = 0;
1087 return lenMax+1; // not enough space in the output buffer !
1088 }
1089
1090 // Don't do:
1091 // wxASSERT(lenCur == wxStrlen(buf));
1092 // in fact if we embedded NULLs in the output buffer (using %c with a '\0')
1093 // such check would fail
1094
1095 return lenCur;
1096 }
1097
1098 #undef APPEND_CH
1099 #undef APPEND_STR
1100 #undef CHECK_PREC
1101
1102 #else // wxVsnprintf_ is defined
1103
1104 #if wxUSE_WXVSNPRINTF
1105 #error wxUSE_WXVSNPRINTF must be 0 if our wxVsnprintf_ is not used
1106 #endif
1107
1108 #endif // !wxVsnprintf_