]>
git.saurik.com Git - apple/libc.git/blob - stdio/FreeBSD/vfwprintf.c
02a5effc6946015d522fc589acf768f5a14cba7f
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #include <sys/cdefs.h>
39 #if defined(LIBC_SCCS) && !defined(lint)
40 static char sccsid
[] = "@(#)vfprintf.c 8.1 (Berkeley) 6/4/93";
41 #endif /* LIBC_SCCS and not lint */
42 __FBSDID("FreeBSD: src/lib/libc/stdio/vfprintf.c,v 1.58 2003/04/14 11:24:53 das Exp");
44 __FBSDID("$FreeBSD: src/lib/libc/stdio/vfwprintf.c,v 1.14 2003/11/12 08:49:12 tjr Exp $");
47 * Actual wprintf innards.
49 * Avoid making gratuitous changes to this source file; it should be kept
50 * as close as possible to vfprintf.c for ease of maintenance.
53 #include "namespace.h"
54 #include <sys/types.h>
67 #include "un-namespace.h"
69 #include "libc_private.h"
73 /* Define FLOATING_POINT to get floating point. */
74 #define FLOATING_POINT
81 long long longlongarg
;
82 unsigned long long ulonglongarg
;
89 signed char *pschararg
;
93 long long *plonglongarg
;
94 ptrdiff_t *pptrdiffarg
;
99 long double longdoublearg
;
106 * Type ids for argument type table.
109 T_UNUSED
, TP_SHORT
, T_INT
, T_U_INT
, TP_INT
,
110 T_LONG
, T_U_LONG
, TP_LONG
, T_LLONG
, T_U_LLONG
, TP_LLONG
,
111 T_PTRDIFFT
, TP_PTRDIFFT
, T_SIZET
, TP_SIZET
,
112 T_INTMAXT
, T_UINTMAXT
, TP_INTMAXT
, TP_VOID
, TP_CHAR
, TP_SCHAR
,
113 T_DOUBLE
, T_LONG_DOUBLE
, T_WINT
, TP_WCHAR
116 static int __sbprintf(FILE *, const wchar_t *, va_list);
117 static wint_t __xfputwc(wchar_t, FILE *);
118 static wchar_t *__ujtoa(uintmax_t, wchar_t *, int, int, const wchar_t *, int,
120 static wchar_t *__ultoa(u_long
, wchar_t *, int, int, const wchar_t *, int,
122 static wchar_t *__mbsconv(char *, int);
123 static void __find_arguments(const wchar_t *, va_list, union arg
**);
124 static void __grow_type_table(int, enum typeid **, int *);
127 * Helper function for `fprintf to unbuffered unix file': creates a
128 * temporary buffer. We only work on write-only files; this avoids
129 * worries about ungetc buffers and so forth.
132 __sbprintf(FILE *fp
, const wchar_t *fmt
, va_list ap
)
136 unsigned char buf
[BUFSIZ
];
138 /* copy the important variables */
139 fake
._flags
= fp
->_flags
& ~__SNBF
;
140 fake
._file
= fp
->_file
;
141 fake
._cookie
= fp
->_cookie
;
142 fake
._write
= fp
->_write
;
143 fake
._extra
= fp
->_extra
;
145 /* set up the buffer */
146 fake
._bf
._base
= fake
._p
= buf
;
147 fake
._bf
._size
= fake
._w
= sizeof(buf
);
148 fake
._lbfsize
= 0; /* not actually used, but Just In Case */
150 /* do the work, then copy any error status */
151 ret
= __vfwprintf(&fake
, fmt
, ap
);
152 if (ret
>= 0 && __fflush(&fake
))
154 if (fake
._flags
& __SERR
)
155 fp
->_flags
|= __SERR
;
160 * Like __fputwc, but handles fake string (__SSTR) files properly.
161 * File must already be locked.
164 __xfputwc(wchar_t wc
, FILE *fp
)
166 char buf
[MB_LEN_MAX
];
172 if ((fp
->_flags
& __SSTR
) == 0)
173 return (__fputwc(wc
, fp
));
175 if ((len
= wcrtomb(buf
, wc
, NULL
)) == (size_t)-1) {
176 fp
->_flags
|= __SERR
;
184 return (__sfvwrite(fp
, &uio
) != EOF
? (wint_t)wc
: WEOF
);
188 * Macros for converting digits to letters and vice versa
190 #define to_digit(c) ((c) - '0')
191 #define is_digit(c) ((unsigned)to_digit(c) <= 9)
192 #define to_char(n) ((n) + '0')
195 * Convert an unsigned long to ASCII for printf purposes, returning
196 * a pointer to the first character of the string representation.
197 * Octal numbers can be forced to have a leading zero; hex numbers
198 * use the given digits.
201 __ultoa(u_long val
, wchar_t *endp
, int base
, int octzero
, const wchar_t *xdigs
,
202 int needgrp
, char thousep
, const char *grp
)
209 * Handle the three cases separately, in the hope of getting
210 * better/faster code.
214 if (val
< 10) { /* many numbers are 1 digit */
215 *--cp
= to_char(val
);
220 * On many machines, unsigned arithmetic is harder than
221 * signed arithmetic, so we do at most one unsigned mod and
222 * divide; this is sufficient to reduce the range of
223 * the incoming value to where signed arithmetic works.
225 if (val
> LONG_MAX
) {
226 *--cp
= to_char(val
% 10);
232 *--cp
= to_char(sval
% 10);
235 * If (*grp == CHAR_MAX) then no more grouping
236 * should be performed.
238 if (needgrp
&& ndig
== *grp
&& *grp
!= CHAR_MAX
243 * If (*(grp+1) == '\0') then we have to
244 * use *grp character (last grouping rule)
247 if (*(grp
+1) != '\0')
256 *--cp
= to_char(val
& 7);
259 if (octzero
&& *cp
!= '0')
265 *--cp
= xdigs
[val
& 15];
276 /* Identical to __ultoa, but for intmax_t. */
278 __ujtoa(uintmax_t val
, wchar_t *endp
, int base
, int octzero
,
279 const wchar_t *xdigs
, int needgrp
, char thousep
, const char *grp
)
285 /* quick test for small values; __ultoa is typically much faster */
286 /* (perhaps instead we should run until small, then call __ultoa?) */
287 if (val
<= ULONG_MAX
)
288 return (__ultoa((u_long
)val
, endp
, base
, octzero
, xdigs
,
289 needgrp
, thousep
, grp
));
293 *--cp
= to_char(val
% 10);
297 if (val
> INTMAX_MAX
) {
298 *--cp
= to_char(val
% 10);
304 *--cp
= to_char(sval
% 10);
307 * If (*grp == CHAR_MAX) then no more grouping
308 * should be performed.
310 if (needgrp
&& *grp
!= CHAR_MAX
&& ndig
== *grp
315 * If (*(grp+1) == '\0') then we have to
316 * use *grp character (last grouping rule)
319 if (*(grp
+1) != '\0')
328 *--cp
= to_char(val
& 7);
331 if (octzero
&& *cp
!= '0')
337 *--cp
= xdigs
[val
& 15];
349 * Convert a multibyte character string argument for the %s format to a wide
350 * string representation. ``prec'' specifies the maximum number of bytes
351 * to output. If ``prec'' is greater than or equal to zero, we can't assume
352 * that the multibyte char. string ends in a null character.
355 __mbsconv(char *mbsarg
, int prec
)
357 wchar_t *convbuf
, *wcp
;
359 size_t insize
, nchars
, nconv
;
365 * Supplied argument is a multibyte string; convert it to wide
370 * String is not guaranteed to be NUL-terminated. Find the
371 * number of characters to print.
375 while (nchars
!= (size_t)prec
) {
376 nconv
= mbrlen(p
, MB_CUR_MAX
, NULL
);
377 if (nconv
== 0 || nconv
== (size_t)-1 ||
384 if (nconv
== (size_t)-1 || nconv
== (size_t)-2)
387 insize
= strlen(mbsarg
);
390 * Allocate buffer for the result and perform the conversion,
391 * converting at most `size' bytes of the input multibyte string to
392 * wide characters for printing.
394 convbuf
= malloc((insize
+ 1) * sizeof(*convbuf
));
399 while (insize
!= 0) {
400 nconv
= mbrtowc(wcp
, p
, insize
, NULL
);
401 if (nconv
== 0 || nconv
== (size_t)-1 || nconv
== (size_t)-2)
407 if (nconv
== (size_t)-1 || nconv
== (size_t)-2) {
420 vfwprintf(FILE * __restrict fp
, const wchar_t * __restrict fmt0
, va_list ap
)
426 ret
= __vfwprintf(fp
, fmt0
, ap
);
431 #ifdef FLOATING_POINT
434 #define freedtoa __freedtoa
443 static int exponent(wchar_t *, int, wchar_t);
445 #endif /* FLOATING_POINT */
448 * The size of the buffer we use as scratch space for integer
449 * conversions, among other things. Technically, we would need the
450 * most space for base 10 conversions with thousands' grouping
451 * characters between each pair of digits. 100 bytes is a
452 * conservative overestimate even for a 128-bit uintmax_t.
456 #define STATIC_ARG_TBL_SIZE 8 /* Size of static argument table. */
459 * Flags used during conversion.
461 #define ALT 0x001 /* alternate form */
462 #define LADJUST 0x004 /* left adjustment */
463 #define LONGDBL 0x008 /* long double */
464 #define LONGINT 0x010 /* long integer */
465 #define LLONGINT 0x020 /* long long integer */
466 #define SHORTINT 0x040 /* short integer */
467 #define ZEROPAD 0x080 /* zero (as opposed to blank) pad */
468 #define FPT 0x100 /* Floating point number */
469 #define GROUPING 0x200 /* use grouping ("'" flag) */
470 /* C99 additional size modifiers: */
471 #define SIZET 0x400 /* size_t */
472 #define PTRDIFFT 0x800 /* ptrdiff_t */
473 #define INTMAXT 0x1000 /* intmax_t */
474 #define CHARINT 0x2000 /* print char using int format */
477 * Non-MT-safe version
480 __vfwprintf(FILE *fp
, const wchar_t *fmt0
, va_list ap
)
482 wchar_t *fmt
; /* format string */
483 wchar_t ch
; /* character from fmt */
484 int n
, n2
, n3
; /* handy integer (short term usage) */
485 wchar_t *cp
; /* handy char pointer (short term usage) */
486 int flags
; /* flags as above */
487 int ret
; /* return value accumulator */
488 int width
; /* width from format (%8d), or 0 */
489 int prec
; /* precision from format; <0 for N/A */
490 wchar_t sign
; /* sign prefix (' ', '+', '-', or \0) */
491 char thousands_sep
; /* locale specific thousands separator */
492 const char *grouping
; /* locale specific numeric grouping rules */
493 #ifdef FLOATING_POINT
495 * We can decompose the printed representation of floating
496 * point numbers into several parts, some of which may be empty:
498 * [+|-| ] [0x|0X] MMM . NNN [e|E|p|P] [+|-] ZZ
501 * A: 'sign' holds this value if present; '\0' otherwise
502 * B: ox[1] holds the 'x' or 'X'; '\0' if not hexadecimal
503 * C: cp points to the string MMMNNN. Leading and trailing
504 * zeros are not in the string and must be added.
505 * D: expchar holds this character; '\0' if no exponent, e.g. %f
506 * F: at least two digits for decimal, at least one digit for hex
508 char *decimal_point
; /* locale specific decimal point */
509 int signflag
; /* true if float is negative */
510 union { /* floating point arguments %[aAeEfFgG] */
514 int expt
; /* integer value of exponent */
515 char expchar
; /* exponent character: [eEpP\0] */
516 char *dtoaend
; /* pointer to end of converted digits */
517 int expsize
; /* character count for expstr */
518 int lead
; /* sig figs before decimal or group sep */
519 int ndig
; /* actual number of digits returned by dtoa */
520 wchar_t expstr
[MAXEXPDIG
+2]; /* buffer for exponent string: e+ZZZ */
521 char *dtoaresult
; /* buffer allocated by dtoa */
522 int nseps
; /* number of group separators with ' */
523 int nrepeats
; /* number of repeats of the last group */
525 u_long ulval
; /* integer arguments %[diouxX] */
526 uintmax_t ujval
; /* %j, %ll, %q, %t, %z integers */
527 int base
; /* base for [diouxX] conversion */
528 int dprec
; /* a copy of prec if [diouxX], 0 otherwise */
529 int realsz
; /* field size expanded by dprec, sign, etc */
530 int size
; /* size of converted field or string */
531 int prsize
; /* max size of printed field */
532 const wchar_t *xdigs
; /* digits for [xX] conversion */
533 wchar_t buf
[BUF
]; /* buffer with space for digits of uintmax_t */
534 wchar_t ox
[2]; /* space for 0x hex-prefix */
535 union arg
*argtable
; /* args, built due to positional arg */
536 union arg statargtable
[STATIC_ARG_TBL_SIZE
];
537 int nextarg
; /* 1-based argument index */
538 va_list orgap
; /* original argument pointer */
539 wchar_t *convbuf
; /* multibyte to wide conversion result */
542 * Choose PADSIZE to trade efficiency vs. size. If larger printf
543 * fields occur frequently, increase PADSIZE and make the initialisers
546 #define PADSIZE 16 /* pad chunk size */
547 static wchar_t blanks
[PADSIZE
] =
548 {' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '};
549 static wchar_t zeroes
[PADSIZE
] =
550 {'0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0'};
552 static const wchar_t xdigs_lower
[16] = L
"0123456789abcdef";
553 static const wchar_t xdigs_upper
[16] = L
"0123456789ABCDEF";
556 * BEWARE, these `goto error' on error, PRINT uses `n2' and
559 #define PRINT(ptr, len) do { \
560 for (n3 = 0; n3 < (len); n3++) \
561 __xfputwc((ptr)[n3], fp); \
563 #define PAD(howmany, with) do { \
564 if ((n = (howmany)) > 0) { \
565 while (n > PADSIZE) { \
566 PRINT(with, PADSIZE); \
572 #define PRINTANDPAD(p, ep, len, with) do { \
578 PAD((len) - (n2 > 0 ? n2 : 0), (with)); \
582 * Get the argument indexed by nextarg. If the argument table is
583 * built, use it to get the argument. If its not, get the next
584 * argument (and arguments must be gotten sequentially).
586 #define GETARG(type) \
587 ((argtable != NULL) ? *((type*)(&argtable[nextarg++])) : \
588 (nextarg++, va_arg(ap, type)))
591 * To extend shorts properly, we need both signed and unsigned
592 * argument extraction methods.
595 (flags&LONGINT ? GETARG(long) : \
596 flags&SHORTINT ? (long)(short)GETARG(int) : \
597 flags&CHARINT ? (long)(signed char)GETARG(int) : \
600 (flags&LONGINT ? GETARG(u_long) : \
601 flags&SHORTINT ? (u_long)(u_short)GETARG(int) : \
602 flags&CHARINT ? (u_long)(u_char)GETARG(int) : \
603 (u_long)GETARG(u_int))
604 #define INTMAX_SIZE (INTMAXT|SIZET|PTRDIFFT|LLONGINT)
606 (flags&INTMAXT ? GETARG(intmax_t) : \
607 flags&SIZET ? (intmax_t)GETARG(size_t) : \
608 flags&PTRDIFFT ? (intmax_t)GETARG(ptrdiff_t) : \
609 (intmax_t)GETARG(long long))
611 (flags&INTMAXT ? GETARG(uintmax_t) : \
612 flags&SIZET ? (uintmax_t)GETARG(size_t) : \
613 flags&PTRDIFFT ? (uintmax_t)GETARG(ptrdiff_t) : \
614 (uintmax_t)GETARG(unsigned long long))
617 * Get * arguments, including the form *nn$. Preserve the nextarg
618 * that the argument can be gotten once the type is determined.
620 #define GETASTER(val) \
623 while (is_digit(*cp)) { \
624 n2 = 10 * n2 + to_digit(*cp); \
628 int hold = nextarg; \
629 if (argtable == NULL) { \
630 argtable = statargtable; \
631 __find_arguments (fmt0, orgap, &argtable); \
634 val = GETARG (int); \
638 val = GETARG (int); \
642 thousands_sep
= '\0';
644 #ifdef FLOATING_POINT
645 decimal_point
= localeconv()->decimal_point
;
648 /* sorry, fwprintf(read_only_file, L"") returns WEOF, not 0 */
652 /* optimise fprintf(stderr) (and other unbuffered Unix files) */
653 if ((fp
->_flags
& (__SNBF
|__SWR
|__SRW
)) == (__SNBF
|__SWR
) &&
655 return (__sbprintf(fp
, fmt0
, ap
));
657 fmt
= (wchar_t *)fmt0
;
664 * Scan the format for conversions (`%' character).
667 for (cp
= fmt
; (ch
= *fmt
) != '\0' && ch
!= '%'; fmt
++)
669 if ((n
= fmt
- cp
) != 0) {
670 if ((unsigned)ret
+ n
> INT_MAX
) {
679 fmt
++; /* skip over '%' */
689 reswitch
: switch (ch
) {
692 * ``If the space and + flags both appear, the space
693 * flag will be ignored.''
704 * ``A negative field width argument is taken as a
705 * - flag followed by a positive field width.''
707 * They don't exclude field widths read from args.
722 thousands_sep
= *(localeconv()->thousands_sep
);
723 grouping
= localeconv()->grouping
;
726 if ((ch
= *fmt
++) == '*') {
731 while (is_digit(ch
)) {
732 prec
= 10 * prec
+ to_digit(ch
);
738 * ``Note that 0 is taken as a flag, not as the
739 * beginning of a field width.''
744 case '1': case '2': case '3': case '4':
745 case '5': case '6': case '7': case '8': case '9':
748 n
= 10 * n
+ to_digit(ch
);
750 } while (is_digit(ch
));
753 if (argtable
== NULL
) {
754 argtable
= statargtable
;
755 __find_arguments (fmt0
, orgap
,
762 #ifdef FLOATING_POINT
768 if (flags
& SHORTINT
) {
778 if (flags
& LONGINT
) {
785 flags
|= LLONGINT
; /* not necessarily */
798 *(cp
= buf
) = (wchar_t)GETARG(wint_t);
800 *(cp
= buf
) = (wchar_t)btowc(GETARG(int));
809 if (flags
& INTMAX_SIZE
) {
811 if ((intmax_t)ujval
< 0) {
817 if ((long)ulval
< 0) {
824 #ifdef FLOATING_POINT
838 * XXX We don't actually have a conversion
839 * XXX routine for this yet.
841 if (flags
& LONGDBL
) {
842 fparg
.ldbl
= (double)GETARG(long double);
844 __hldtoa(fparg
.ldbl
, xdigs
, prec
,
845 &expt
, &signflag
, &dtoaend
);
847 fparg
.dbl
= GETARG(double);
849 __hdtoa(fparg
.dbl
, xdigs
, prec
,
850 &expt
, &signflag
, &dtoaend
);
854 cp
= convbuf
= __mbsconv(dtoaresult
, -1);
855 freedtoa(dtoaresult
);
861 if (prec
< 0) /* account for digit before decpt */
872 expchar
= ch
- ('g' - 'e');
880 if (flags
& LONGDBL
) {
881 fparg
.ldbl
= GETARG(long double);
883 __ldtoa(&fparg
.ldbl
, expchar
? 2 : 3, prec
,
884 &expt
, &signflag
, &dtoaend
);
886 fparg
.dbl
= GETARG(double);
888 dtoa(fparg
.dbl
, expchar
? 2 : 3, prec
,
889 &expt
, &signflag
, &dtoaend
);
893 ndig
= dtoaend
- dtoaresult
;
894 cp
= convbuf
= __mbsconv(dtoaresult
, -1);
895 freedtoa(dtoaresult
);
898 if (expt
== INT_MAX
) { /* inf or nan */
900 cp
= (ch
>= 'a') ? L
"nan" : L
"NAN";
903 cp
= (ch
>= 'a') ? L
"inf" : L
"INF";
908 if (ch
== 'g' || ch
== 'G') {
909 if (expt
> -4 && expt
<= prec
) {
910 /* Make %[gG] smell like %[fF] */
920 * Make %[gG] smell like %[eE], but
921 * trim trailing zeroes if no # flag.
928 expsize
= exponent(expstr
, expt
- 1, expchar
);
929 size
= expsize
+ prec
;
930 if (prec
> 1 || flags
& ALT
)
933 /* space for digits before decimal point */
938 /* space for decimal pt and following digits */
939 if (prec
|| flags
& ALT
)
941 if (grouping
&& expt
> 0) {
942 /* space for thousands' grouping */
943 nseps
= nrepeats
= 0;
945 while (*grouping
!= CHAR_MAX
) {
946 if (lead
<= *grouping
)
955 size
+= nseps
+ nrepeats
;
960 #endif /* FLOATING_POINT */
963 * Assignment-like behavior is specified if the
964 * value overflows or is otherwise unrepresentable.
965 * C99 says to use `signed char' for %hhn conversions.
967 if (flags
& LLONGINT
)
968 *GETARG(long long *) = ret
;
969 else if (flags
& SIZET
)
970 *GETARG(ssize_t
*) = (ssize_t
)ret
;
971 else if (flags
& PTRDIFFT
)
972 *GETARG(ptrdiff_t *) = ret
;
973 else if (flags
& INTMAXT
)
974 *GETARG(intmax_t *) = ret
;
975 else if (flags
& LONGINT
)
976 *GETARG(long *) = ret
;
977 else if (flags
& SHORTINT
)
978 *GETARG(short *) = ret
;
979 else if (flags
& CHARINT
)
980 *GETARG(signed char *) = ret
;
982 *GETARG(int *) = ret
;
983 continue; /* no output */
988 if (flags
& INTMAX_SIZE
)
996 * ``The argument shall be a pointer to void. The
997 * value of the pointer is converted to a sequence
998 * of printable characters, in an implementation-
1002 ujval
= (uintmax_t)(uintptr_t)GETARG(void *);
1004 xdigs
= xdigs_lower
;
1005 flags
= flags
| INTMAXT
;
1012 if (flags
& LONGINT
) {
1013 if ((cp
= GETARG(wchar_t *)) == NULL
)
1018 if (convbuf
!= NULL
)
1020 if ((mbp
= GETARG(char *)) == NULL
)
1023 convbuf
= __mbsconv(mbp
, prec
);
1024 if (convbuf
== NULL
) {
1025 fp
->_flags
|= __SERR
;
1034 * can't use wcslen; can only look for the
1035 * NUL in the first `prec' characters, and
1036 * wcslen() will go further.
1038 wchar_t *p
= wmemchr(cp
, 0, (size_t)prec
);
1054 if (flags
& INTMAX_SIZE
)
1061 xdigs
= xdigs_upper
;
1064 xdigs
= xdigs_lower
;
1066 if (flags
& INTMAX_SIZE
)
1071 /* leading 0x/X only if non-zero */
1073 (flags
& INTMAX_SIZE
? ujval
!= 0 : ulval
!= 0))
1077 /* unsigned conversions */
1078 nosign
: sign
= '\0';
1080 * ``... diouXx conversions ... if a precision is
1081 * specified, the 0 flag will be ignored.''
1084 number
: if ((dprec
= prec
) >= 0)
1088 * ``The result of converting a zero value with an
1089 * explicit precision of zero is no characters.''
1093 if (flags
& INTMAX_SIZE
) {
1094 if (ujval
!= 0 || prec
!= 0)
1095 cp
= __ujtoa(ujval
, cp
, base
,
1097 flags
& GROUPING
, thousands_sep
,
1100 if (ulval
!= 0 || prec
!= 0)
1101 cp
= __ultoa(ulval
, cp
, base
,
1103 flags
& GROUPING
, thousands_sep
,
1106 size
= buf
+ BUF
- cp
;
1107 if (size
> BUF
) /* should never happen */
1110 default: /* "%?" prints ?, unless ? is NUL */
1113 /* pretend it was %c with argument ch */
1122 * All reasonable formats wind up here. At this point, `cp'
1123 * points to a string which (if not flags&LADJUST) should be
1124 * padded out to `width' places. If flags&ZEROPAD, it should
1125 * first be prefixed by any sign or other prefix; otherwise,
1126 * it should be blank padded before the prefix is emitted.
1127 * After any left-hand padding and prefixing, emit zeroes
1128 * required by a decimal [diouxX] precision, then print the
1129 * string proper, then emit zeroes required by any leftover
1130 * floating precision; finally, if LADJUST, pad with blanks.
1132 * Compute actual size, so we know how much to pad.
1133 * size excludes decimal prec; realsz includes it.
1135 realsz
= dprec
> size
? dprec
: size
;
1141 prsize
= width
> realsz
? width
: realsz
;
1142 if ((unsigned)ret
+ prsize
> INT_MAX
) {
1147 /* right-adjusting blank padding */
1148 if ((flags
& (LADJUST
|ZEROPAD
)) == 0)
1149 PAD(width
- realsz
, blanks
);
1154 } else if (ox
[1]) { /* ox[1] is either x, X, or \0 */
1159 /* right-adjusting zero padding */
1160 if ((flags
& (LADJUST
|ZEROPAD
)) == ZEROPAD
)
1161 PAD(width
- realsz
, zeroes
);
1163 /* leading zeroes from decimal precision */
1164 PAD(dprec
- size
, zeroes
);
1166 /* the string or number proper */
1167 #ifdef FLOATING_POINT
1168 if ((flags
& FPT
) == 0) {
1170 } else { /* glue together f_p fragments */
1171 if (!expchar
) { /* %[fF] or sufficiently short %[gG] */
1174 if (prec
|| flags
& ALT
)
1175 PRINT(decimal_point
, 1);
1177 /* already handled initial 0's */
1180 PRINTANDPAD(cp
, convbuf
+ ndig
, lead
, zeroes
);
1183 while (nseps
>0 || nrepeats
>0) {
1190 PRINT(&thousands_sep
,
1197 if (cp
> convbuf
+ ndig
)
1198 cp
= convbuf
+ ndig
;
1200 if (prec
|| flags
& ALT
) {
1201 buf
[0] = *decimal_point
;
1205 PRINTANDPAD(cp
, convbuf
+ ndig
, prec
, zeroes
);
1206 } else { /* %[eE] or sufficiently long %[gG] */
1207 if (prec
> 1 || flags
& ALT
) {
1209 buf
[1] = *decimal_point
;
1212 PAD(prec
- ndig
, zeroes
);
1215 PRINT(expstr
, expsize
);
1221 /* left-adjusting padding (always blank) */
1222 if (flags
& LADJUST
)
1223 PAD(width
- realsz
, blanks
);
1225 /* finally, adjust ret */
1230 if (convbuf
!= NULL
)
1234 if ((argtable
!= NULL
) && (argtable
!= statargtable
))
1241 * Find all arguments when a positional parameter is encountered. Returns a
1242 * table, indexed by argument number, of pointers to each arguments. The
1243 * initial argument table should be an array of STATIC_ARG_TBL_SIZE entries.
1244 * It will be replaces with a malloc-ed one if it overflows.
1247 __find_arguments (const wchar_t *fmt0
, va_list ap
, union arg
**argtable
)
1249 wchar_t *fmt
; /* format string */
1250 wchar_t ch
; /* character from fmt */
1251 int n
, n2
; /* handy integer (short term usage) */
1252 wchar_t *cp
; /* handy char pointer (short term usage) */
1253 int flags
; /* flags as above */
1254 int width
; /* width from format (%8d), or 0 */
1255 enum typeid *typetable
; /* table of types */
1256 enum typeid stattypetable
[STATIC_ARG_TBL_SIZE
];
1257 int tablesize
; /* current size of type table */
1258 int tablemax
; /* largest used index in table */
1259 int nextarg
; /* 1-based argument index */
1262 * Add an argument type to the table, expanding if necessary.
1264 #define ADDTYPE(type) \
1265 ((nextarg >= tablesize) ? \
1266 __grow_type_table(nextarg, &typetable, &tablesize) : 0, \
1267 (nextarg > tablemax) ? tablemax = nextarg : 0, \
1268 typetable[nextarg++] = type)
1271 ((flags&INTMAXT) ? ADDTYPE(T_INTMAXT) : \
1272 ((flags&SIZET) ? ADDTYPE(T_SIZET) : \
1273 ((flags&PTRDIFFT) ? ADDTYPE(T_PTRDIFFT) : \
1274 ((flags&LLONGINT) ? ADDTYPE(T_LLONG) : \
1275 ((flags&LONGINT) ? ADDTYPE(T_LONG) : ADDTYPE(T_INT))))))
1278 ((flags&INTMAXT) ? ADDTYPE(T_UINTMAXT) : \
1279 ((flags&SIZET) ? ADDTYPE(T_SIZET) : \
1280 ((flags&PTRDIFFT) ? ADDTYPE(T_PTRDIFFT) : \
1281 ((flags&LLONGINT) ? ADDTYPE(T_U_LLONG) : \
1282 ((flags&LONGINT) ? ADDTYPE(T_U_LONG) : ADDTYPE(T_U_INT))))))
1285 * Add * arguments to the type array.
1287 #define ADDASTER() \
1290 while (is_digit(*cp)) { \
1291 n2 = 10 * n2 + to_digit(*cp); \
1295 int hold = nextarg; \
1303 fmt
= (wchar_t *)fmt0
;
1304 typetable
= stattypetable
;
1305 tablesize
= STATIC_ARG_TBL_SIZE
;
1308 memset (typetable
, T_UNUSED
, STATIC_ARG_TBL_SIZE
);
1311 * Scan the format for conversions (`%' character).
1314 for (cp
= fmt
; (ch
= *fmt
) != '\0' && ch
!= '%'; fmt
++)
1318 fmt
++; /* skip over '%' */
1324 reswitch
: switch (ch
) {
1336 if ((ch
= *fmt
++) == '*') {
1340 while (is_digit(ch
)) {
1346 case '1': case '2': case '3': case '4':
1347 case '5': case '6': case '7': case '8': case '9':
1350 n
= 10 * n
+ to_digit(ch
);
1352 } while (is_digit(ch
));
1359 #ifdef FLOATING_POINT
1365 if (flags
& SHORTINT
) {
1375 if (flags
& LONGINT
) {
1382 flags
|= LLONGINT
; /* not necessarily */
1394 if (flags
& LONGINT
)
1406 #ifdef FLOATING_POINT
1416 if (flags
& LONGDBL
)
1417 ADDTYPE(T_LONG_DOUBLE
);
1421 #endif /* FLOATING_POINT */
1423 if (flags
& INTMAXT
)
1424 ADDTYPE(TP_INTMAXT
);
1425 else if (flags
& PTRDIFFT
)
1426 ADDTYPE(TP_PTRDIFFT
);
1427 else if (flags
& SIZET
)
1429 else if (flags
& LLONGINT
)
1431 else if (flags
& LONGINT
)
1433 else if (flags
& SHORTINT
)
1435 else if (flags
& CHARINT
)
1439 continue; /* no output */
1453 if (flags
& LONGINT
)
1466 default: /* "%?" prints ?, unless ? is NUL */
1474 * Build the argument table.
1476 if (tablemax
>= STATIC_ARG_TBL_SIZE
) {
1477 *argtable
= (union arg
*)
1478 malloc (sizeof (union arg
) * (tablemax
+ 1));
1481 (*argtable
) [0].intarg
= 0;
1482 for (n
= 1; n
<= tablemax
; n
++) {
1483 switch (typetable
[n
]) {
1484 case T_UNUSED
: /* whoops! */
1485 (*argtable
) [n
].intarg
= va_arg (ap
, int);
1488 (*argtable
) [n
].pschararg
= va_arg (ap
, signed char *);
1491 (*argtable
) [n
].pshortarg
= va_arg (ap
, short *);
1494 (*argtable
) [n
].intarg
= va_arg (ap
, int);
1497 (*argtable
) [n
].uintarg
= va_arg (ap
, unsigned int);
1500 (*argtable
) [n
].pintarg
= va_arg (ap
, int *);
1503 (*argtable
) [n
].longarg
= va_arg (ap
, long);
1506 (*argtable
) [n
].ulongarg
= va_arg (ap
, unsigned long);
1509 (*argtable
) [n
].plongarg
= va_arg (ap
, long *);
1512 (*argtable
) [n
].longlongarg
= va_arg (ap
, long long);
1515 (*argtable
) [n
].ulonglongarg
= va_arg (ap
, unsigned long long);
1518 (*argtable
) [n
].plonglongarg
= va_arg (ap
, long long *);
1521 (*argtable
) [n
].ptrdiffarg
= va_arg (ap
, ptrdiff_t);
1524 (*argtable
) [n
].pptrdiffarg
= va_arg (ap
, ptrdiff_t *);
1527 (*argtable
) [n
].sizearg
= va_arg (ap
, size_t);
1530 (*argtable
) [n
].psizearg
= va_arg (ap
, ssize_t
*);
1533 (*argtable
) [n
].intmaxarg
= va_arg (ap
, intmax_t);
1536 (*argtable
) [n
].uintmaxarg
= va_arg (ap
, uintmax_t);
1539 (*argtable
) [n
].pintmaxarg
= va_arg (ap
, intmax_t *);
1541 #ifdef FLOATING_POINT
1543 (*argtable
) [n
].doublearg
= va_arg (ap
, double);
1546 (*argtable
) [n
].longdoublearg
= va_arg (ap
, long double);
1550 (*argtable
) [n
].pchararg
= va_arg (ap
, char *);
1553 (*argtable
) [n
].pvoidarg
= va_arg (ap
, void *);
1556 (*argtable
) [n
].wintarg
= va_arg (ap
, wint_t);
1559 (*argtable
) [n
].pwchararg
= va_arg (ap
, wchar_t *);
1564 if ((typetable
!= NULL
) && (typetable
!= stattypetable
))
1569 * Increase the size of the type table.
1572 __grow_type_table (int nextarg
, enum typeid **typetable
, int *tablesize
)
1574 enum typeid *const oldtable
= *typetable
;
1575 const int oldsize
= *tablesize
;
1576 enum typeid *newtable
;
1577 int newsize
= oldsize
* 2;
1579 if (newsize
< nextarg
+ 1)
1580 newsize
= nextarg
+ 1;
1581 if (oldsize
== STATIC_ARG_TBL_SIZE
) {
1582 if ((newtable
= malloc(newsize
)) == NULL
)
1583 abort(); /* XXX handle better */
1584 bcopy(oldtable
, newtable
, oldsize
);
1586 if ((newtable
= reallocf(oldtable
, newsize
)) == NULL
)
1587 abort(); /* XXX handle better */
1589 memset(&newtable
[oldsize
], T_UNUSED
, newsize
- oldsize
);
1591 *typetable
= newtable
;
1592 *tablesize
= newsize
;
1596 #ifdef FLOATING_POINT
1599 exponent(wchar_t *p0
, int exp
, wchar_t fmtch
)
1602 wchar_t expbuf
[MAXEXPDIG
];
1612 t
= expbuf
+ MAXEXPDIG
;
1615 *--t
= to_char(exp
% 10);
1616 } while ((exp
/= 10) > 9);
1617 *--t
= to_char(exp
);
1618 for (; t
< expbuf
+ MAXEXPDIG
; *p
++ = *t
++);
1622 * Exponents for decimal floating point conversions
1623 * (%[eEgG]) must be at least two characters long,
1624 * whereas exponents for hexadecimal conversions can
1625 * be only one character long.
1627 if (fmtch
== 'e' || fmtch
== 'E')
1629 *p
++ = to_char(exp
);
1633 #endif /* FLOATING_POINT */