2 * Copyright 2011 Piotr Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #define APICHAR MSVCRT_wchar_t
22 #define FUNC_NAME(func) func ## _w
25 #define CONVCHAR MSVCRT_wchar_t
26 #define FUNC_NAME(func) func ## _a
29 typedef struct FUNC_NAME(pf_flags_t
)
31 APICHAR Sign
, LeftAlign
, Alternate
, PadZero
;
32 int FieldLength
, Precision
;
33 APICHAR IntegerLength
, IntegerDouble
;
36 } FUNC_NAME(pf_flags
);
38 struct FUNC_NAME(_str_ctx
) {
43 static int FUNC_NAME(puts_clbk_str
)(void *ctx
, int len
, const APICHAR
*str
)
45 struct FUNC_NAME(_str_ctx
) *out
= ctx
;
51 memcpy(out
->buf
, str
, out
->len
*sizeof(APICHAR
));
57 memcpy(out
->buf
, str
, len
*sizeof(APICHAR
));
63 static inline const APICHAR
* FUNC_NAME(pf_parse_int
)(const APICHAR
*fmt
, int *val
)
67 while(isdigit(*fmt
)) {
75 /* pf_fill: takes care of signs, alignment, zero and field padding */
76 static inline int FUNC_NAME(pf_fill
)(FUNC_NAME(puts_clbk
) pf_puts
, void *puts_ctx
,
77 int len
, FUNC_NAME(pf_flags
) *flags
, BOOL left
)
79 int i
, r
= 0, written
;
81 if(flags
->Sign
&& !strchr("diaeEfgG", flags
->Format
))
84 if(left
&& flags
->Sign
) {
87 r
= pf_puts(puts_ctx
, 1, &flags
->Sign
);
91 if((!left
&& flags
->LeftAlign
) || (left
&& !flags
->LeftAlign
)) {
94 if(left
&& flags
->PadZero
)
99 for(i
=0; i
<flags
->FieldLength
-len
&& r
>=0; i
++) {
100 r
= pf_puts(puts_ctx
, 1, &ch
);
106 if(r
>=0 && left
&& flags
->Sign
&& !flags
->PadZero
) {
107 r
= pf_puts(puts_ctx
, 1, &flags
->Sign
);
111 return r
>=0 ? written
: r
;
114 static inline int FUNC_NAME(pf_output_wstr
)(FUNC_NAME(puts_clbk
) pf_puts
, void *puts_ctx
,
115 const MSVCRT_wchar_t
*str
, int len
, MSVCRT_pthreadlocinfo locinfo
)
118 return pf_puts(puts_ctx
, len
, str
);
121 int len_a
= WideCharToMultiByte(locinfo
->lc_codepage
, 0, str
, len
, NULL
, 0, NULL
, NULL
);
123 out
= HeapAlloc(GetProcessHeap(), 0, len_a
);
127 WideCharToMultiByte(locinfo
->lc_codepage
, 0, str
, len
, out
, len_a
, NULL
, NULL
);
128 len
= pf_puts(puts_ctx
, len_a
, out
);
129 HeapFree(GetProcessHeap(), 0, out
);
134 static inline int FUNC_NAME(pf_output_str
)(FUNC_NAME(puts_clbk
) pf_puts
, void *puts_ctx
,
135 const char *str
, int len
, MSVCRT_pthreadlocinfo locinfo
)
139 int len_w
= MultiByteToWideChar(locinfo
->lc_codepage
, 0, str
, len
, NULL
, 0);
141 out
= HeapAlloc(GetProcessHeap(), 0, len_w
*sizeof(WCHAR
));
145 MultiByteToWideChar(locinfo
->lc_codepage
, 0, str
, len
, out
, len_w
);
146 len
= pf_puts(puts_ctx
, len_w
, out
);
147 HeapFree(GetProcessHeap(), 0, out
);
150 return pf_puts(puts_ctx
, len
, str
);
154 static inline int FUNC_NAME(pf_output_format_wstr
)(FUNC_NAME(puts_clbk
) pf_puts
, void *puts_ctx
,
155 const MSVCRT_wchar_t
*str
, int len
, FUNC_NAME(pf_flags
) *flags
, MSVCRT_pthreadlocinfo locinfo
)
162 if(flags
->Precision
>=0 && flags
->Precision
<len
)
163 len
= flags
->Precision
;
165 r
= FUNC_NAME(pf_fill
)(pf_puts
, puts_ctx
, len
, flags
, TRUE
);
168 r
= FUNC_NAME(pf_output_wstr
)(pf_puts
, puts_ctx
, str
, len
, locinfo
);
172 r
= FUNC_NAME(pf_fill
)(pf_puts
, puts_ctx
, len
, flags
, FALSE
);
176 return r
>=0 ? ret
: r
;
179 static inline int FUNC_NAME(pf_output_format_str
)(FUNC_NAME(puts_clbk
) pf_puts
, void *puts_ctx
,
180 const char *str
, int len
, FUNC_NAME(pf_flags
) *flags
, MSVCRT_pthreadlocinfo locinfo
)
187 if(flags
->Precision
>=0 && flags
->Precision
<len
)
188 len
= flags
->Precision
;
190 r
= FUNC_NAME(pf_fill
)(pf_puts
, puts_ctx
, len
, flags
, TRUE
);
193 r
= FUNC_NAME(pf_output_str
)(pf_puts
, puts_ctx
, str
, len
, locinfo
);
197 r
= FUNC_NAME(pf_fill
)(pf_puts
, puts_ctx
, len
, flags
, FALSE
);
201 return r
>=0 ? ret
: r
;
204 static inline int FUNC_NAME(pf_handle_string
)(FUNC_NAME(puts_clbk
) pf_puts
, void *puts_ctx
,
205 const void *str
, int len
, FUNC_NAME(pf_flags
) *flags
, MSVCRT_pthreadlocinfo locinfo
)
208 static const MSVCRT_wchar_t nullW
[] = {'(','n','u','l','l',')',0};
211 return FUNC_NAME(pf_output_format_wstr
)(pf_puts
, puts_ctx
, nullW
, 6, flags
, locinfo
);
214 return FUNC_NAME(pf_output_format_str
)(pf_puts
, puts_ctx
, "(null)", 6, flags
, locinfo
);
217 if(flags
->WideString
|| flags
->IntegerLength
=='l')
218 return FUNC_NAME(pf_output_format_wstr
)(pf_puts
, puts_ctx
, str
, len
, flags
, locinfo
);
219 if(flags
->IntegerLength
== 'h')
220 return FUNC_NAME(pf_output_format_str
)(pf_puts
, puts_ctx
, str
, len
, flags
, locinfo
);
222 if((flags
->Format
=='S' || flags
->Format
=='C') == (sizeof(APICHAR
)==sizeof(MSVCRT_wchar_t
)))
223 return FUNC_NAME(pf_output_format_str
)(pf_puts
, puts_ctx
, str
, len
, flags
, locinfo
);
225 return FUNC_NAME(pf_output_format_wstr
)(pf_puts
, puts_ctx
, str
, len
, flags
, locinfo
);
228 static inline void FUNC_NAME(pf_rebuild_format_string
)(char *p
, FUNC_NAME(pf_flags
) *flags
)
232 *p
++ = flags
->Alternate
;
233 if(flags
->Precision
>= 0) {
234 sprintf(p
, ".%d", flags
->Precision
);
237 *p
++ = flags
->Format
;
241 /* pf_integer_conv: prints x to buf, including alternate formats and
242 additional precision digits, but not field characters or the sign */
243 static inline void FUNC_NAME(pf_integer_conv
)(APICHAR
*buf
, int buf_len
,
244 FUNC_NAME(pf_flags
) *flags
, LONGLONG x
)
250 if(flags
->Format
== 'o')
252 else if(flags
->Format
=='x' || flags
->Format
=='X')
257 if(flags
->Format
== 'X')
258 digits
= "0123456789ABCDEFX";
260 digits
= "0123456789abcdefx";
262 if(x
<0 && (flags
->Format
=='d' || flags
->Format
=='i')) {
269 flags
->Alternate
= 0;
274 j
= (ULONGLONG
)x
%base
;
275 x
= (ULONGLONG
)x
/base
;
276 buf
[i
++] = digits
[j
];
279 k
= flags
->Precision
-i
;
282 if(flags
->Alternate
) {
284 buf
[i
++] = digits
[16];
286 } else if(base
==8 && buf
[i
-1]!='0')
290 /* Adjust precision so pf_fill won't truncate the number later */
291 flags
->Precision
= i
;
296 APICHAR tmp
= buf
[j
];
303 static inline void FUNC_NAME(pf_fixup_exponent
)(char *buf
)
307 while(tmp
[0] && toupper(tmp
[0])!='E')
310 if(tmp
[0] && (tmp
[1]=='+' || tmp
[1]=='-') &&
311 isdigit(tmp
[2]) && isdigit(tmp
[3])) {
312 BOOL two_digit_exp
= (MSVCRT__get_output_format() == MSVCRT__TWO_DIGIT_EXPONENT
);
315 if(isdigit(tmp
[2])) {
316 if(two_digit_exp
&& tmp
[0]=='0') {
322 return; /* Exponent already 3 digits */
323 }else if(two_digit_exp
) {
334 int FUNC_NAME(pf_printf
)(FUNC_NAME(puts_clbk
) pf_puts
, void *puts_ctx
, const APICHAR
*fmt
,
335 MSVCRT__locale_t locale
, BOOL positional_params
, BOOL invoke_invalid_param_handler
,
336 args_clbk pf_args
, void *args_ctx
, __ms_va_list
*valist
)
338 MSVCRT_pthreadlocinfo locinfo
;
339 const APICHAR
*q
, *p
= fmt
;
341 int written
= 0, pos
, i
;
342 FUNC_NAME(pf_flags
) flags
;
344 TRACE("Format is: %s\n", FUNC_NAME(debugstr
)(fmt
));
347 locinfo
= get_locinfo();
349 locinfo
= locale
->locinfo
;
352 /* output characters before '%' */
353 for(q
=p
; *q
&& *q
!='%'; q
++);
355 i
= pf_puts(puts_ctx
, q
-p
, p
);
367 /* output a single '%' character */
369 i
= pf_puts(puts_ctx
, 1, p
++);
377 /* check parameter position */
378 if(positional_params
&& (q
= FUNC_NAME(pf_parse_int
)(p
, &pos
)) && *q
=='$')
383 /* parse the flags */
384 memset(&flags
, 0, sizeof(flags
));
386 if(*p
=='+' || *p
==' ') {
387 if(flags
.Sign
!= '+')
390 flags
.LeftAlign
= *p
;
394 flags
.Alternate
= *p
;
401 /* parse the width */
404 if(positional_params
&& (q
= FUNC_NAME(pf_parse_int
)(p
, &i
)) && *q
=='$')
409 flags
.FieldLength
= pf_args(args_ctx
, i
, VT_INT
, valist
).get_int
;
410 if(flags
.FieldLength
< 0) {
411 flags
.LeftAlign
= '-';
412 flags
.FieldLength
= -flags
.FieldLength
;
414 } else while(isdigit(*p
)) {
415 flags
.FieldLength
*= 10;
416 flags
.FieldLength
+= *p
++ - '0';
419 /* parse the precision */
420 flags
.Precision
= -1;
426 if(positional_params
&& (q
= FUNC_NAME(pf_parse_int
)(p
, &i
)) && *q
=='$')
431 flags
.Precision
= pf_args(args_ctx
, i
, VT_INT
, valist
).get_int
;
432 } else while(isdigit(*p
)) {
433 flags
.Precision
*= 10;
434 flags
.Precision
+= *p
++ - '0';
438 /* parse argument size modifier */
440 if(*p
=='l' && *(p
+1)=='l') {
441 flags
.IntegerDouble
++;
443 } else if(*p
=='h' || *p
=='l' || *p
=='L') {
444 flags
.IntegerLength
= *p
;
446 } else if(*p
== 'I') {
447 if(*(p
+1)=='6' && *(p
+2)=='4') {
448 flags
.IntegerDouble
++;
450 } else if(*(p
+1)=='3' && *(p
+2)=='2')
452 else if(isdigit(*(p
+1)) || !*(p
+1))
457 flags
.WideString
= *p
++;
466 if(flags
.Format
== 's' || flags
.Format
== 'S') {
467 i
= FUNC_NAME(pf_handle_string
)(pf_puts
, puts_ctx
,
468 pf_args(args_ctx
, pos
, VT_PTR
, valist
).get_ptr
,
469 -1, &flags
, locinfo
);
470 } else if(flags
.Format
== 'c' || flags
.Format
== 'C') {
471 int ch
= pf_args(args_ctx
, pos
, VT_INT
, valist
).get_int
;
474 FIXME("multibyte characters printing not supported\n");
476 i
= FUNC_NAME(pf_handle_string
)(pf_puts
, puts_ctx
, &ch
, 1, &flags
, locinfo
);
477 } else if(flags
.Format
== 'p') {
481 flags
.Precision
= 2*sizeof(void*);
482 FUNC_NAME(pf_integer_conv
)(buf
, sizeof(buf
)/sizeof(APICHAR
), &flags
,
483 (ULONG_PTR
)pf_args(args_ctx
, pos
, VT_PTR
, valist
).get_ptr
);
488 i
= FUNC_NAME(pf_output_format_wstr
)(pf_puts
, puts_ctx
, buf
, -1, &flags
, locinfo
);
490 i
= FUNC_NAME(pf_output_format_str
)(pf_puts
, puts_ctx
, buf
, -1, &flags
, locinfo
);
492 } else if(flags
.Format
== 'n') {
495 if(!n_format_enabled
) {
496 MSVCRT_INVALID_PMT("\'n\' format specifier disabled", MSVCRT_EINVAL
);
500 used
= pf_args(args_ctx
, pos
, VT_PTR
, valist
).get_ptr
;
503 } else if(flags
.Format
&& strchr("diouxX", flags
.Format
)) {
507 /* 0 padding is added after '0x' if Alternate flag is in use */
508 if((flags
.Format
=='x' || flags
.Format
=='X') && flags
.PadZero
&& flags
.Alternate
509 && !flags
.LeftAlign
&& flags
.Precision
<flags
.FieldLength
-2)
510 flags
.Precision
= flags
.FieldLength
- 2;
512 max_len
= (flags
.FieldLength
>flags
.Precision
? flags
.FieldLength
: flags
.Precision
) + 10;
513 if(max_len
> sizeof(buf
)/sizeof(APICHAR
))
514 tmp
= HeapAlloc(GetProcessHeap(), 0, max_len
);
518 if(flags
.IntegerDouble
)
519 FUNC_NAME(pf_integer_conv
)(tmp
, max_len
, &flags
, pf_args(args_ctx
, pos
,
520 VT_I8
, valist
).get_longlong
);
521 else if(flags
.Format
=='d' || flags
.Format
=='i')
522 FUNC_NAME(pf_integer_conv
)(tmp
, max_len
, &flags
, flags
.IntegerLength
!='h' ?
523 pf_args(args_ctx
, pos
, VT_INT
, valist
).get_int
:
524 (short)pf_args(args_ctx
, pos
, VT_INT
, valist
).get_int
);
526 FUNC_NAME(pf_integer_conv
)(tmp
, max_len
, &flags
, flags
.IntegerLength
!='h' ?
527 (unsigned)pf_args(args_ctx
, pos
, VT_INT
, valist
).get_int
:
528 (unsigned short)pf_args(args_ctx
, pos
, VT_INT
, valist
).get_int
);
531 i
= FUNC_NAME(pf_output_format_wstr
)(pf_puts
, puts_ctx
, tmp
, -1, &flags
, locinfo
);
533 i
= FUNC_NAME(pf_output_format_str
)(pf_puts
, puts_ctx
, tmp
, -1, &flags
, locinfo
);
536 HeapFree(GetProcessHeap(), 0, tmp
);
537 } else if(flags
.Format
&& strchr("aeEfgG", flags
.Format
)) {
538 char float_fmt
[20], buf_a
[32], *tmp
= buf_a
, *decimal_point
;
539 int len
= flags
.Precision
+ 10;
540 double val
= pf_args(args_ctx
, pos
, VT_R8
, valist
).get_double
;
542 BOOL inf
= FALSE
, nan
= FALSE
;
547 nan
= TRUE
; /* FIXME: NaN value may be displayed as #IND or #QNAN */
553 if(flags
.Format
=='g' || flags
.Format
=='G')
554 val
= 1.1234; /* fraction will be overwritten with #INF or #IND string */
558 if(flags
.Format
=='a') {
559 if(flags
.Precision
==-1)
560 flags
.Precision
= 6; /* strlen("#INF00") */
564 if(flags
.Format
=='f') {
565 if(val
>-10.0 && val
<10.0)
568 i
= 1 + log10(val
<0 ? -val
: val
);
569 /* Default precision is 6, additional space for sign, separator and nullbyte is required */
570 i
+= (flags
.Precision
==-1 ? 6 : flags
.Precision
) + 3;
576 if(len
> sizeof(buf_a
))
577 tmp
= HeapAlloc(GetProcessHeap(), 0, len
);
581 FUNC_NAME(pf_rebuild_format_string
)(float_fmt
, &flags
);
587 sprintf(tmp
, float_fmt
, val
);
588 if(toupper(flags
.Format
)=='E' || toupper(flags
.Format
)=='G')
589 FUNC_NAME(pf_fixup_exponent
)(tmp
);
591 decimal_point
= strchr(tmp
, '.');
593 *decimal_point
= *locinfo
->lconv
->decimal_point
;
596 static const char inf_str
[] = "#INF";
597 static const char ind_str
[] = "#IND";
599 for(i
=1; i
<(inf
? sizeof(inf_str
) : sizeof(ind_str
)); i
++) {
600 if(decimal_point
[i
]<'0' || decimal_point
[i
]>'9')
603 decimal_point
[i
] = inf
? inf_str
[i
-1] : ind_str
[i
-1];
606 if(i
!=sizeof(inf_str
) && i
!=1)
607 decimal_point
[i
-1]++;
612 i
= FUNC_NAME(pf_fill
)(pf_puts
, puts_ctx
, len
, &flags
, TRUE
);
615 r
= FUNC_NAME(pf_output_str
)(pf_puts
, puts_ctx
, tmp
, len
, locinfo
);
620 HeapFree(GetProcessHeap(), 0, tmp
);
621 r
= FUNC_NAME(pf_fill
)(pf_puts
, puts_ctx
, len
, &flags
, FALSE
);
626 if(invoke_invalid_param_handler
) {
627 MSVCRT__invalid_parameter(NULL
, NULL
, NULL
, 0, 0);
628 *MSVCRT__errno() = MSVCRT_EINVAL
;
645 enum types_clbk_flags
{
646 TYPE_CLBK_VA_LIST
= 1,
647 TYPE_CLBK_POSITIONAL
= 2,
648 TYPE_CLBK_ERROR_POS
= 4,
649 TYPE_CLBK_ERROR_TYPE
= 8
652 /* This functions stores types of arguments. It uses args[0] internally */
653 static printf_arg
arg_clbk_type(void *ctx
, int pos
, int type
, __ms_va_list
*valist
)
655 static const printf_arg ret
;
656 printf_arg
*args
= ctx
;
659 args
[0].get_int
|= TYPE_CLBK_VA_LIST
;
662 args
[0].get_int
|= TYPE_CLBK_POSITIONAL
;
664 if(pos
<1 || pos
>MSVCRT__ARGMAX
)
665 args
[0].get_int
|= TYPE_CLBK_ERROR_POS
;
666 else if(args
[pos
].get_int
&& args
[pos
].get_int
!=type
)
667 args
[0].get_int
|= TYPE_CLBK_ERROR_TYPE
;
669 args
[pos
].get_int
= type
;
675 static int FUNC_NAME(create_positional_ctx
)(void *args_ctx
, const APICHAR
*format
, __ms_va_list valist
)
677 struct FUNC_NAME(_str_ctx
) puts_ctx
= {INT_MAX
, NULL
};
678 printf_arg
*args
= args_ctx
;
681 i
= FUNC_NAME(pf_printf
)(FUNC_NAME(puts_clbk_str
), &puts_ctx
, format
, NULL
, TRUE
, FALSE
,
682 arg_clbk_type
, args_ctx
, NULL
);
686 if(args
[0].get_int
==0 || args
[0].get_int
==TYPE_CLBK_VA_LIST
)
688 if(args
[0].get_int
!= TYPE_CLBK_POSITIONAL
)
691 for(i
=MSVCRT__ARGMAX
; i
>0; i
--)
695 for(j
=1; j
<=i
; j
++) {
696 switch(args
[j
].get_int
) {
698 args
[j
].get_longlong
= va_arg(valist
, LONGLONG
);
701 args
[j
].get_int
= va_arg(valist
, int);
704 args
[j
].get_double
= va_arg(valist
, double);
707 args
[j
].get_ptr
= va_arg(valist
, void*);