1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/private/wxprintf.h
3 // Purpose: wxWidgets wxPrintf() implementation
5 // Modified by: Ron Lee, Francesco Montorsi
8 // Copyright: (c) wxWidgets copyright
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PRIVATE_WXPRINTF_H_
13 #define _WX_PRIVATE_WXPRINTF_H_
15 // ---------------------------------------------------------------------------
17 // ---------------------------------------------------------------------------
25 #if defined(__MWERKS__) && __MSL__ >= 0x6000
30 // prefer snprintf over sprintf
31 #if defined(__VISUALC__) || \
32 (defined(__BORLANDC__) && __BORLANDC__ >= 0x540)
33 #define system_sprintf(buff, max, flags, data) \
34 ::_snprintf(buff, max, flags, data)
35 #elif defined(HAVE_SNPRINTF)
36 #define system_sprintf(buff, max, flags, data) \
37 ::snprintf(buff, max, flags, data)
38 #else // NB: at least sprintf() should always be available
39 // since 'max' is not used in this case, wxVsnprintf() should always
40 // ensure that 'buff' is big enough for all common needs
41 // (see wxMAX_SVNPRINTF_FLAGBUFFER_LEN and wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN)
42 #define system_sprintf(buff, max, flags, data) \
43 ::sprintf(buff, flags, data)
45 #define SYSTEM_SPRINTF_IS_UNSAFE
48 // ---------------------------------------------------------------------------
49 // printf format string parsing
50 // ---------------------------------------------------------------------------
52 // some limits of our implementation
53 #define wxMAX_SVNPRINTF_ARGUMENTS 64
54 #define wxMAX_SVNPRINTF_FLAGBUFFER_LEN 32
55 #define wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN 512
58 // the conversion specifiers accepted by wxCRT_VsnprintfW
59 enum wxPrintfArgType
{
62 wxPAT_INT
, // %d, %i, %o, %u, %x, %X
63 wxPAT_LONGINT
, // %ld, etc
65 wxPAT_LONGLONGINT
, // %Ld, etc
67 wxPAT_SIZET
, // %Zd, etc
69 wxPAT_DOUBLE
, // %e, %E, %f, %g, %G
70 wxPAT_LONGDOUBLE
, // %le, etc
74 wxPAT_CHAR
, // %hc (in ANSI mode: %c, too)
75 wxPAT_WCHAR
, // %lc (in Unicode mode: %c, too)
77 wxPAT_PCHAR
, // %s (related to a char *)
78 wxPAT_PWCHAR
, // %s (related to a wchar_t *)
81 wxPAT_NSHORTINT
, // %hn
85 // an argument passed to wxCRT_VsnprintfW
87 int pad_int
; // %d, %i, %o, %u, %x, %X
88 long int pad_longint
; // %ld, etc
90 wxLongLong_t pad_longlongint
; // %Ld, etc
92 size_t pad_sizet
; // %Zd, etc
94 double pad_double
; // %e, %E, %f, %g, %G
95 long double pad_longdouble
; // %le, etc
97 void *pad_pointer
; // %p
99 char pad_char
; // %hc (in ANSI mode: %c, too)
100 wchar_t pad_wchar
; // %lc (in Unicode mode: %c, too)
105 short int *pad_nshortint
; // %hn
106 long int *pad_nlongint
; // %ln
109 // helper for converting string into either char* or wchar_t* dependening
110 // on the type of wxPrintfConvSpec<T> instantiation:
111 template<typename CharType
> struct wxPrintfStringHelper
{};
113 template<> struct wxPrintfStringHelper
<char>
115 typedef const wxWX2MBbuf ConvertedType
;
116 static ConvertedType
Convert(const wxString
& s
) { return s
.mb_str(); }
119 template<> struct wxPrintfStringHelper
<wchar_t>
121 typedef const wxWX2WCbuf ConvertedType
;
122 static ConvertedType
Convert(const wxString
& s
) { return s
.wc_str(); }
126 // Contains parsed data relative to a conversion specifier given to
127 // wxCRT_VsnprintfW and parsed from the format string
128 // NOTE: in C++ there is almost no difference between struct & classes thus
129 // there is no performance gain by using a struct here...
130 template<typename CharType
>
131 class wxPrintfConvSpec
135 // the position of the argument relative to this conversion specifier
138 // the type of this conversion specifier
139 wxPrintfArgType m_type
;
141 // the minimum and maximum width
142 // when one of this var is set to -1 it means: use the following argument
143 // in the stack as minimum/maximum width for this conversion specifier
144 int m_nMinWidth
, m_nMaxWidth
;
146 // does the argument need to the be aligned to left ?
149 // pointer to the '%' of this conversion specifier in the format string
150 // NOTE: this points somewhere in the string given to the Parse() function -
151 // it's task of the caller ensure that memory is still valid !
152 const CharType
*m_pArgPos
;
154 // pointer to the last character of this conversion specifier in the
156 // NOTE: this points somewhere in the string given to the Parse() function -
157 // it's task of the caller ensure that memory is still valid !
158 const CharType
*m_pArgEnd
;
160 // a little buffer where formatting flags like #+\.hlqLZ are stored by Parse()
161 // for use in Process()
162 // NB: even if this buffer is used only for numeric conversion specifiers
163 // and thus could be safely declared as a char[] buffer, we want it to
164 // be wchar_t so that in Unicode builds we can avoid to convert its
165 // contents to Unicode chars when copying it in user's buffer.
166 char m_szFlags
[wxMAX_SVNPRINTF_FLAGBUFFER_LEN
];
171 // we don't declare this as a constructor otherwise it would be called
172 // automatically and we don't want this: to be optimized, wxCRT_VsnprintfW
173 // calls this function only on really-used instances of this class.
176 // Parses the first conversion specifier in the given string, which must
177 // begin with a '%'. Returns false if the first '%' does not introduce a
178 // (valid) conversion specifier and thus should be ignored.
179 bool Parse(const CharType
*format
);
181 // Process this conversion specifier and puts the result in the given
182 // buffer. Returns the number of characters written in 'buf' or -1 if
183 // there's not enough space.
184 int Process(CharType
*buf
, size_t lenMax
, wxPrintfArg
*p
, size_t written
);
186 // Loads the argument of this conversion specifier from given va_list.
187 bool LoadArg(wxPrintfArg
*p
, va_list &argptr
);
190 // An helper function of LoadArg() which is used to handle the '*' flag
191 void ReplaceAsteriskWith(int w
);
194 template<typename CharType
>
195 void wxPrintfConvSpec
<CharType
>::Init()
198 m_nMaxWidth
= 0xFFFF;
200 m_bAlignLeft
= false;
201 m_pArgPos
= m_pArgEnd
= NULL
;
202 m_type
= wxPAT_INVALID
;
204 // this character will never be removed from m_szFlags array and
205 // is important when calling sprintf() in wxPrintfConvSpec::Process() !
209 template<typename CharType
>
210 bool wxPrintfConvSpec
<CharType
>::Parse(const CharType
*format
)
214 // temporary parse data
216 bool in_prec
, // true if we found the dot in some previous iteration
217 prec_dot
; // true if the dot has been already added to m_szFlags
220 m_bAlignLeft
= in_prec
= prec_dot
= false;
221 m_pArgPos
= m_pArgEnd
= format
;
225 if (in_prec && !prec_dot) \
227 m_szFlags[flagofs++] = '.'; \
232 const CharType ch
= *(++m_pArgEnd
);
236 return false; // not really an argument
239 return false; // not really an argument
247 m_szFlags
[flagofs
++] = char(ch
);
253 m_szFlags
[flagofs
++] = char(ch
);
257 // don't use CHECK_PREC here to avoid warning about the value
258 // assigned to prec_dot inside it being never used (because
259 // overwritten just below) from Borland in release build
260 if (in_prec
&& !prec_dot
)
261 m_szFlags
[flagofs
++] = '.';
265 // dot will be auto-added to m_szFlags if non-negative
272 m_szFlags
[flagofs
++] = char(ch
);
276 // NB: it's safe to use flagofs-1 as flagofs always start from 1
277 if (m_szFlags
[flagofs
-1] == 'l') // 'll' modifier is the same as 'L' or 'q'
282 m_szFlags
[flagofs
++] = char(ch
);
289 m_szFlags
[flagofs
++] = char(ch
);
292 // under Windows we support the special '%I64' notation as longlong
293 // integer conversion specifier for MSVC compatibility
294 // (it behaves exactly as '%lli' or '%Li' or '%qi')
296 if (*(m_pArgEnd
+1) != wxT('6') ||
297 *(m_pArgEnd
+2) != wxT('4'))
298 return false; // bad format
305 m_szFlags
[flagofs
++] = char(ch
);
306 m_szFlags
[flagofs
++] = '6';
307 m_szFlags
[flagofs
++] = '4';
314 m_szFlags
[flagofs
++] = char(ch
);
322 // tell Process() to use the next argument
323 // in the stack as maxwidth...
328 // tell Process() to use the next argument
329 // in the stack as minwidth...
333 // save the * in our formatting buffer...
334 // will be replaced later by Process()
335 m_szFlags
[flagofs
++] = char(ch
);
338 case wxT('1'): case wxT('2'): case wxT('3'):
339 case wxT('4'): case wxT('5'): case wxT('6'):
340 case wxT('7'): case wxT('8'): case wxT('9'):
344 while ( (*m_pArgEnd
>= CharType('0')) &&
345 (*m_pArgEnd
<= CharType('9')) )
347 m_szFlags
[flagofs
++] = char(*m_pArgEnd
);
348 len
= len
*10 + (*m_pArgEnd
- wxT('0'));
357 m_pArgEnd
--; // the main loop pre-increments n again
361 case wxT('$'): // a positional parameter (e.g. %2$s) ?
363 if (m_nMinWidth
<= 0)
364 break; // ignore this formatting flag as no
365 // numbers are preceding it
367 // remove from m_szFlags all digits previously added
370 } while (m_szFlags
[flagofs
] >= '1' &&
371 m_szFlags
[flagofs
] <= '9');
373 // re-adjust the offset making it point to the
374 // next free char of m_szFlags
389 m_szFlags
[flagofs
++] = char(ch
);
390 m_szFlags
[flagofs
] = '\0';
394 // NB: 'short int' value passed through '...'
395 // is promoted to 'int', so we have to get
396 // an int from stack even if we need a short
399 m_type
= wxPAT_LONGINT
;
402 m_type
= wxPAT_LONGLONGINT
;
403 #else // !wxLongLong_t
404 m_type
= wxPAT_LONGINT
;
405 #endif // wxLongLong_t/!wxLongLong_t
407 m_type
= wxPAT_SIZET
;
417 m_szFlags
[flagofs
++] = char(ch
);
418 m_szFlags
[flagofs
] = '\0';
420 m_type
= wxPAT_LONGDOUBLE
;
422 m_type
= wxPAT_DOUBLE
;
427 m_type
= wxPAT_POINTER
;
428 m_szFlags
[flagofs
++] = char(ch
);
429 m_szFlags
[flagofs
] = '\0';
436 // in Unicode mode %hc == ANSI character
437 // and in ANSI mode, %hc == %c == ANSI...
442 // in ANSI mode %lc == Unicode character
443 // and in Unicode mode, %lc == %c == Unicode...
444 m_type
= wxPAT_WCHAR
;
449 // in Unicode mode, %c == Unicode character
450 m_type
= wxPAT_WCHAR
;
452 // in ANSI mode, %c == ANSI character
462 // Unicode mode wx extension: we'll let %hs mean non-Unicode
463 // strings (when in ANSI mode, %s == %hs == ANSI string)
464 m_type
= wxPAT_PCHAR
;
468 // in Unicode mode, %ls == %s == Unicode string
469 // in ANSI mode, %ls == Unicode string
470 m_type
= wxPAT_PWCHAR
;
475 m_type
= wxPAT_PWCHAR
;
477 m_type
= wxPAT_PCHAR
;
487 m_type
= wxPAT_NSHORTINT
;
489 m_type
= wxPAT_NLONGINT
;
494 // bad format, don't consider this an argument;
495 // leave it unchanged
499 if (flagofs
== wxMAX_SVNPRINTF_FLAGBUFFER_LEN
)
501 wxLogDebug(wxT("Too many flags specified for a single conversion specifier!"));
507 return true; // parsing was successful
510 template<typename CharType
>
511 void wxPrintfConvSpec
<CharType
>::ReplaceAsteriskWith(int width
)
513 char temp
[wxMAX_SVNPRINTF_FLAGBUFFER_LEN
];
515 // find the first * in our flag buffer
516 char *pwidth
= strchr(m_szFlags
, '*');
517 wxCHECK_RET(pwidth
, _T("field width must be specified"));
519 // save what follows the * (the +1 is to skip the asterisk itself!)
520 strcpy(temp
, pwidth
+1);
523 pwidth
[0] = wxT('-');
527 // replace * with the actual integer given as width
528 #ifndef SYSTEM_SPRINTF_IS_UNSAFE
529 int maxlen
= (m_szFlags
+ wxMAX_SVNPRINTF_FLAGBUFFER_LEN
- pwidth
) /
532 int offset
= system_sprintf(pwidth
, maxlen
, "%d", abs(width
));
534 // restore after the expanded * what was following it
535 strcpy(pwidth
+offset
, temp
);
538 template<typename CharType
>
539 bool wxPrintfConvSpec
<CharType
>::LoadArg(wxPrintfArg
*p
, va_list &argptr
)
541 // did the '*' width/precision specifier was used ?
542 if (m_nMaxWidth
== -1)
544 // take the maxwidth specifier from the stack
545 m_nMaxWidth
= va_arg(argptr
, int);
549 ReplaceAsteriskWith(m_nMaxWidth
);
552 if (m_nMinWidth
== -1)
554 // take the minwidth specifier from the stack
555 m_nMinWidth
= va_arg(argptr
, int);
557 ReplaceAsteriskWith(m_nMinWidth
);
560 m_bAlignLeft
= !m_bAlignLeft
;
561 m_nMinWidth
= -m_nMinWidth
;
567 p
->pad_int
= va_arg(argptr
, int);
570 p
->pad_longint
= va_arg(argptr
, long int);
573 case wxPAT_LONGLONGINT
:
574 p
->pad_longlongint
= va_arg(argptr
, wxLongLong_t
);
576 #endif // wxLongLong_t
578 p
->pad_sizet
= va_arg(argptr
, size_t);
581 p
->pad_double
= va_arg(argptr
, double);
583 case wxPAT_LONGDOUBLE
:
584 p
->pad_longdouble
= va_arg(argptr
, long double);
587 p
->pad_pointer
= va_arg(argptr
, void *);
591 p
->pad_char
= (char)va_arg(argptr
, int); // char is promoted to int when passed through '...'
594 p
->pad_wchar
= (wchar_t)va_arg(argptr
, int); // char is promoted to int when passed through '...'
599 p
->pad_str
= va_arg(argptr
, void *);
603 p
->pad_nint
= va_arg(argptr
, int *);
605 case wxPAT_NSHORTINT
:
606 p
->pad_nshortint
= va_arg(argptr
, short int *);
609 p
->pad_nlongint
= va_arg(argptr
, long int *);
617 return true; // loading was successful
620 template<typename CharType
>
621 int wxPrintfConvSpec
<CharType
>::Process(CharType
*buf
, size_t lenMax
, wxPrintfArg
*p
, size_t written
)
623 // buffer to avoid dynamic memory allocation each time for small strings;
624 // note that this buffer is used only to hold results of number formatting,
625 // %s directly writes user's string in buf, without using szScratch
626 char szScratch
[wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
];
627 size_t lenScratch
= 0, lenCur
= 0;
629 #define APPEND_CH(ch) \
631 if ( lenCur == lenMax ) \
634 buf[lenCur++] = ch; \
640 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_int
);
644 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_longint
);
648 case wxPAT_LONGLONGINT
:
649 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_longlongint
);
651 #endif // SIZEOF_LONG_LONG
654 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_sizet
);
657 case wxPAT_LONGDOUBLE
:
658 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_longdouble
);
662 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_double
);
666 lenScratch
= system_sprintf(szScratch
, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
, m_szFlags
, p
->pad_pointer
);
673 if (m_type
== wxPAT_CHAR
)
675 else // m_type == wxPAT_WCHAR
683 for (i
= 1; i
< (size_t)m_nMinWidth
; i
++)
689 for (i
= 1; i
< (size_t)m_nMinWidth
; i
++)
697 wxArgNormalizedString
arg(p
->pad_str
);
700 if ( !arg
.IsValid() && m_nMaxWidth
>= 6 )
703 typename wxPrintfStringHelper
<CharType
>::ConvertedType
strbuf(
704 wxPrintfStringHelper
<CharType
>::Convert(s
));
706 // at this point we are sure that m_nMaxWidth is positive or
707 // null (see top of wxPrintfConvSpec::LoadArg)
708 int len
= wxMin((unsigned int)m_nMaxWidth
, wxStrlen(strbuf
));
714 for (i
= len
; i
< m_nMinWidth
; i
++)
718 len
= wxMin((unsigned int)len
, lenMax
-lenCur
);
719 wxStrncpy(buf
+lenCur
, strbuf
, len
);
724 for (i
= len
; i
< m_nMinWidth
; i
++)
731 *p
->pad_nint
= written
;
734 case wxPAT_NSHORTINT
:
735 *p
->pad_nshortint
= (short int)written
;
739 *p
->pad_nlongint
= written
;
747 // if we used system's sprintf() then we now need to append the s_szScratch
748 // buffer to the given one...
754 case wxPAT_LONGLONGINT
:
757 case wxPAT_LONGDOUBLE
:
760 wxASSERT(lenScratch
< wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN
);
761 // NB: 1) we can compare lenMax (for CharType*, i.e. possibly
762 // wchar_t*) with lenScratch (char*) because this code is
763 // formatting integers and that will have the same length
764 // even in UTF-8 (the only case when char* length may be
765 // more than wchar_t* length of the same string)
766 // 2) wxStrncpy converts the 2nd argument to 1st argument's
767 // type transparently if their types differ, so this code
768 // works for both instantiations
769 if (lenMax
< lenScratch
)
771 // fill output buffer and then return -1
772 wxStrncpy(buf
, szScratch
, lenMax
);
775 wxStrncpy(buf
, szScratch
, lenScratch
);
776 lenCur
+= lenScratch
;
780 break; // all other cases were completed previously
787 // helper that parses format string
788 template<typename CharType
>
789 struct wxPrintfConvSpecParser
791 wxPrintfConvSpecParser(const CharType
*format
)
792 : posarg_present(false), nonposarg_present(false),
795 memset(pspec
, 0, sizeof(pspec
));
797 const CharType
*toparse
= format
;
799 // parse the format string
800 for (; *toparse
!= wxT('\0'); toparse
++)
802 if (*toparse
== wxT('%') )
806 // let's see if this is a (valid) conversion specifier...
807 if (arg
[nargs
].Parse(toparse
))
810 wxPrintfConvSpec
<CharType
> *current
= &arg
[nargs
];
812 // make toparse point to the end of this specifier
813 toparse
= current
->m_pArgEnd
;
815 if (current
->m_pos
> 0)
817 // the positionals start from number 1... adjust the index
819 posarg_present
= true;
823 // not a positional argument...
824 current
->m_pos
= nargs
;
825 nonposarg_present
= true;
828 // this conversion specifier is tied to the pos-th argument...
829 pspec
[current
->m_pos
] = current
;
832 if (nargs
== wxMAX_SVNPRINTF_ARGUMENTS
)
834 wxLogDebug(wxT("A single call to wxVsnprintf() has more than %d arguments; ")
835 wxT("ignoring all remaining arguments."), wxMAX_SVNPRINTF_ARGUMENTS
);
836 break; // cannot handle any additional conv spec
841 // it's safe to look in the next character of toparse as at
842 // worst we'll hit its \0
843 if (*(toparse
+1) == wxT('%'))
845 // the Parse() returned false because we've found a %%
853 wxPrintfConvSpec
<CharType
> arg
[wxMAX_SVNPRINTF_ARGUMENTS
];
854 wxPrintfConvSpec
<CharType
> *pspec
[wxMAX_SVNPRINTF_ARGUMENTS
];
855 bool posarg_present
, nonposarg_present
;
862 #endif // _WX_PRIVATE_WXPRINTF_H_