1 /* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C 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 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
26 #include <bits/libc-lock.h>
27 #include <sys/param.h>
29 #include "../locale/localeinfo.h"
31 /* This code is shared between the standard stdio implementation found
32 in GNU C library and the libio implementation originally found in
35 Beside this it is also shared between the normal and wide character
36 implementation as defined in ISO/IEC 9899:1990/Amendment 1:1995. */
38 #ifndef COMPILE_WPRINTF
40 # define UCHAR_T unsigned char
43 # define ISDIGIT(Ch) isdigit (Ch)
46 # define PUT(F, S, N) _IO_sputn ((F), (S), (N))
47 # define PAD(Padchar) \
49 done += _IO_padn (s, (Padchar), width)
51 # define PUTC(C, F) putc (C, F)
52 ssize_t __printf_pad
__P ((FILE *, char pad
, size_t n
));
53 # define PAD(Padchar) \
55 { ssize_t __res = __printf_pad (s, (Padchar), width); \
56 if (__res == -1) return -1; \
60 # define vfprintf vfwprintf
61 # define CHAR_T wchar_t
62 # define UCHAR_T uwchar_t
64 # define L_(Str) L##Str
65 # define ISDIGIT(Ch) iswdigit (Ch)
68 # define PUT(F, S, N) _IO_sputn ((F), (S), (N))
69 # define PAD(Padchar) \
71 done += _IO_wpadn (s, (Padchar), width)
73 # define PUTC(C, F) wputc (C, F)
74 ssize_t __wprintf_pad
__P ((FILE *, wchar_t pad
, size_t n
));
75 # define PAD(Padchar) \
77 { ssize_t __res = __wprintf_pad (s, (Padchar), width); \
78 if (__res == -1) return -1; \
83 /* Include the shared code for parsing the format string. */
84 #include "printf-parse.h"
88 /* This code is for use in libio. */
90 # define PUTC(C, F) _IO_putc_unlocked (C, F)
91 # define vfprintf _IO_vfprintf
92 # define FILE _IO_FILE
94 # define va_list _IO_va_list
96 # define BUFSIZ _IO_BUFSIZ
97 # define ARGCHECK(S, Format) \
100 /* Check file argument for consistence. */ \
101 CHECK_FILE (S, -1); \
102 if (S->_flags & _IO_NO_WRITES) \
104 __set_errno (EBADF); \
107 if (Format == NULL) \
113 # define UNBUFFERED_P(S) ((S)->_IO_file_flags & _IO_UNBUFFERED)
114 #else /* ! USE_IN_LIBIO */
115 /* This code is for use in the GNU C library. */
117 # define PUT(F, S, N) fwrite (S, 1, N, F)
118 # define ARGCHECK(S, Format) \
121 /* Check file argument for consistence. */ \
122 if (!__validfp (S) || !S->__mode.__write) \
124 __set_errno (EBADF); \
127 if (Format == NULL) \
129 __set_errno (EINVAL); \
134 if (__flshfp (S, EOF) == EOF) \
139 # define UNBUFFERED_P(s) ((s)->__buffer == NULL)
141 /* XXX These declarations should go as soon as the stdio header files
142 have these prototypes. */
143 extern void __flockfile (FILE *);
144 extern void __funlockfile (FILE *);
145 #endif /* USE_IN_LIBIO */
148 #define outchar(Ch) \
151 register const int outc = (Ch); \
152 if (PUTC (outc, s) == EOF) \
159 #define outstring(String, Len) \
162 if ((size_t) PUT (s, (String), (Len)) != (size_t) (Len)) \
168 /* For handling long_double and longlong we use the same flag. */
170 # define is_longlong is_long_double
174 /* Global variables. */
175 static const char null
[] = "(null)";
178 /* Helper function to provide temporary buffering for unbuffered streams. */
179 static int buffered_vfprintf
__P ((FILE *stream
, const CHAR_T
*fmt
, va_list));
181 /* Handle unknown format specifier. */
182 static int printf_unknown
__P ((FILE *, const struct printf_info
*,
183 const void *const *));
185 /* Group digits of number string. */
186 static char *group_number
__P ((CHAR_T
*, CHAR_T
*, const CHAR_T
*, wchar_t));
189 /* The function itself. */
191 vfprintf (FILE *s
, const CHAR_T
*format
, va_list ap
)
193 /* The character used as thousands separator. */
194 wchar_t thousands_sep
;
196 /* The string describing the size of groups of digits. */
197 const char *grouping
;
199 /* Place to accumulate the result. */
202 /* Current character in format string. */
205 /* End of leading constant string. */
206 const UCHAR_T
*lead_str_end
;
208 /* Points to next format specifier. */
209 const UCHAR_T
*end_of_spec
;
211 /* Buffer intermediate results. */
212 char work_buffer
[1000];
213 #define workend (&work_buffer[sizeof (work_buffer) - 1])
215 /* State for restartable multibyte character handling functions. */
218 /* We have to save the original argument pointer. */
221 /* Count number of specifiers we already processed. */
224 /* For the %m format we may need the current `errno' value. */
225 int save_errno
= errno
;
228 /* This table maps a character into a number representing a
229 class. In each step there is a destination label for each
231 static const int jump_table
[] =
233 /* ' ' */ 1, 0, 0, /* '#' */ 4,
234 0, /* '%' */ 14, 0, /* '\''*/ 6,
235 0, 0, /* '*' */ 7, /* '+' */ 2,
236 0, /* '-' */ 3, /* '.' */ 9, 0,
237 /* '0' */ 5, /* '1' */ 8, /* '2' */ 8, /* '3' */ 8,
238 /* '4' */ 8, /* '5' */ 8, /* '6' */ 8, /* '7' */ 8,
239 /* '8' */ 8, /* '9' */ 8, 0, 0,
241 0, /* 'A' */ 26, 0, /* 'C' */ 25,
242 0, /* 'E' */ 19, 0, /* 'G' */ 19,
244 /* 'L' */ 12, 0, 0, 0,
245 0, 0, 0, /* 'S' */ 21,
247 /* 'X' */ 18, 0, /* 'Z' */ 13, 0,
249 0, /* 'a' */ 26, 0, /* 'c' */ 20,
250 /* 'd' */ 15, /* 'e' */ 19, /* 'f' */ 19, /* 'g' */ 19,
251 /* 'h' */ 10, /* 'i' */ 15, 0, 0,
252 /* 'l' */ 11, /* 'm' */ 24, /* 'n' */ 23, /* 'o' */ 17,
253 /* 'p' */ 22, /* 'q' */ 12, 0, /* 's' */ 21,
254 0, /* 'u' */ 16, 0, 0,
258 #define NOT_IN_JUMP_RANGE(Ch) ((Ch) < ' ' || (Ch) > 'x')
259 #define CHAR_CLASS(Ch) (jump_table[(int) (Ch) - ' '])
260 #define JUMP(ChExpr, table) \
265 ptr = NOT_IN_JUMP_RANGE (spec) ? REF (form_unknown) \
266 : table[CHAR_CLASS (spec)]; \
271 #define STEP0_3_TABLE \
272 /* Step 0: at the beginning. */ \
273 static const void *step0_jumps[27] = \
275 REF (form_unknown), \
276 REF (flag_space), /* for ' ' */ \
277 REF (flag_plus), /* for '+' */ \
278 REF (flag_minus), /* for '-' */ \
279 REF (flag_hash), /* for '<hash>' */ \
280 REF (flag_zero), /* for '0' */ \
281 REF (flag_quote), /* for '\'' */ \
282 REF (width_asterics), /* for '*' */ \
283 REF (width), /* for '1'...'9' */ \
284 REF (precision), /* for '.' */ \
285 REF (mod_half), /* for 'h' */ \
286 REF (mod_long), /* for 'l' */ \
287 REF (mod_longlong), /* for 'L', 'q' */ \
288 REF (mod_size_t), /* for 'Z' */ \
289 REF (form_percent), /* for '%' */ \
290 REF (form_integer), /* for 'd', 'i' */ \
291 REF (form_unsigned), /* for 'u' */ \
292 REF (form_octal), /* for 'o' */ \
293 REF (form_hexa), /* for 'X', 'x' */ \
294 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
295 REF (form_character), /* for 'c' */ \
296 REF (form_string), /* for 's', 'S' */ \
297 REF (form_pointer), /* for 'p' */ \
298 REF (form_number), /* for 'n' */ \
299 REF (form_strerror), /* for 'm' */ \
300 REF (form_wcharacter), /* for 'C' */ \
301 REF (form_floathex) /* for 'A', 'a' */ \
303 /* Step 1: after processing width. */ \
304 static const void *step1_jumps[27] = \
306 REF (form_unknown), \
307 REF (form_unknown), /* for ' ' */ \
308 REF (form_unknown), /* for '+' */ \
309 REF (form_unknown), /* for '-' */ \
310 REF (form_unknown), /* for '<hash>' */ \
311 REF (form_unknown), /* for '0' */ \
312 REF (form_unknown), /* for '\'' */ \
313 REF (form_unknown), /* for '*' */ \
314 REF (form_unknown), /* for '1'...'9' */ \
315 REF (precision), /* for '.' */ \
316 REF (mod_half), /* for 'h' */ \
317 REF (mod_long), /* for 'l' */ \
318 REF (mod_longlong), /* for 'L', 'q' */ \
319 REF (mod_size_t), /* for 'Z' */ \
320 REF (form_percent), /* for '%' */ \
321 REF (form_integer), /* for 'd', 'i' */ \
322 REF (form_unsigned), /* for 'u' */ \
323 REF (form_octal), /* for 'o' */ \
324 REF (form_hexa), /* for 'X', 'x' */ \
325 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
326 REF (form_character), /* for 'c' */ \
327 REF (form_string), /* for 's', 'S' */ \
328 REF (form_pointer), /* for 'p' */ \
329 REF (form_number), /* for 'n' */ \
330 REF (form_strerror), /* for 'm' */ \
331 REF (form_wcharacter), /* for 'C' */ \
332 REF (form_floathex) /* for 'A', 'a' */ \
334 /* Step 2: after processing precision. */ \
335 static const void *step2_jumps[27] = \
337 REF (form_unknown), \
338 REF (form_unknown), /* for ' ' */ \
339 REF (form_unknown), /* for '+' */ \
340 REF (form_unknown), /* for '-' */ \
341 REF (form_unknown), /* for '<hash>' */ \
342 REF (form_unknown), /* for '0' */ \
343 REF (form_unknown), /* for '\'' */ \
344 REF (form_unknown), /* for '*' */ \
345 REF (form_unknown), /* for '1'...'9' */ \
346 REF (form_unknown), /* for '.' */ \
347 REF (mod_half), /* for 'h' */ \
348 REF (mod_long), /* for 'l' */ \
349 REF (mod_longlong), /* for 'L', 'q' */ \
350 REF (mod_size_t), /* for 'Z' */ \
351 REF (form_percent), /* for '%' */ \
352 REF (form_integer), /* for 'd', 'i' */ \
353 REF (form_unsigned), /* for 'u' */ \
354 REF (form_octal), /* for 'o' */ \
355 REF (form_hexa), /* for 'X', 'x' */ \
356 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
357 REF (form_character), /* for 'c' */ \
358 REF (form_string), /* for 's', 'S' */ \
359 REF (form_pointer), /* for 'p' */ \
360 REF (form_number), /* for 'n' */ \
361 REF (form_strerror), /* for 'm' */ \
362 REF (form_wcharacter), /* for 'C' */ \
363 REF (form_floathex) /* for 'A', 'a' */ \
365 /* Step 3: after processing first 'l' modifier. */ \
366 static const void *step3_jumps[27] = \
368 REF (form_unknown), \
369 REF (form_unknown), /* for ' ' */ \
370 REF (form_unknown), /* for '+' */ \
371 REF (form_unknown), /* for '-' */ \
372 REF (form_unknown), /* for '<hash>' */ \
373 REF (form_unknown), /* for '0' */ \
374 REF (form_unknown), /* for '\'' */ \
375 REF (form_unknown), /* for '*' */ \
376 REF (form_unknown), /* for '1'...'9' */ \
377 REF (form_unknown), /* for '.' */ \
378 REF (form_unknown), /* for 'h' */ \
379 REF (mod_longlong), /* for 'l' */ \
380 REF (form_unknown), /* for 'L', 'q' */ \
381 REF (form_unknown), /* for 'Z' */ \
382 REF (form_percent), /* for '%' */ \
383 REF (form_integer), /* for 'd', 'i' */ \
384 REF (form_unsigned), /* for 'u' */ \
385 REF (form_octal), /* for 'o' */ \
386 REF (form_hexa), /* for 'X', 'x' */ \
387 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
388 REF (form_character), /* for 'c' */ \
389 REF (form_string), /* for 's', 'S' */ \
390 REF (form_pointer), /* for 'p' */ \
391 REF (form_number), /* for 'n' */ \
392 REF (form_strerror), /* for 'm' */ \
393 REF (form_wcharacter), /* for 'C' */ \
394 REF (form_floathex) /* for 'A', 'a' */ \
397 #define STEP4_TABLE \
398 /* Step 4: processing format specifier. */ \
399 static const void *step4_jumps[27] = \
401 REF (form_unknown), \
402 REF (form_unknown), /* for ' ' */ \
403 REF (form_unknown), /* for '+' */ \
404 REF (form_unknown), /* for '-' */ \
405 REF (form_unknown), /* for '<hash>' */ \
406 REF (form_unknown), /* for '0' */ \
407 REF (form_unknown), /* for '\'' */ \
408 REF (form_unknown), /* for '*' */ \
409 REF (form_unknown), /* for '1'...'9' */ \
410 REF (form_unknown), /* for '.' */ \
411 REF (form_unknown), /* for 'h' */ \
412 REF (form_unknown), /* for 'l' */ \
413 REF (form_unknown), /* for 'L', 'q' */ \
414 REF (form_unknown), /* for 'Z' */ \
415 REF (form_percent), /* for '%' */ \
416 REF (form_integer), /* for 'd', 'i' */ \
417 REF (form_unsigned), /* for 'u' */ \
418 REF (form_octal), /* for 'o' */ \
419 REF (form_hexa), /* for 'X', 'x' */ \
420 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
421 REF (form_character), /* for 'c' */ \
422 REF (form_string), /* for 's', 'S' */ \
423 REF (form_pointer), /* for 'p' */ \
424 REF (form_number), /* for 'n' */ \
425 REF (form_strerror), /* for 'm' */ \
426 REF (form_wcharacter), /* for 'C' */ \
427 REF (form_floathex) /* for 'A', 'a' */ \
431 #define process_arg(fspec) \
432 /* Start real work. We know about all flags and modifiers and \
433 now process the wanted format specifier. */ \
434 LABEL (form_percent): \
435 /* Write a literal "%". */ \
439 LABEL (form_integer): \
440 /* Signed decimal integer. */ \
445 long long int signed_number; \
448 signed_number = va_arg (ap, long long int); \
450 signed_number = args_value[fspec->data_arg].pa_long_long_int; \
452 is_negative = signed_number < 0; \
453 number.longlong = is_negative ? (- signed_number) : signed_number; \
455 goto LABEL (longlong_number); \
459 long int signed_number; \
463 signed_number = va_arg (ap, long int); \
464 else /* `short int' will be promoted to `int'. */ \
465 signed_number = va_arg (ap, int); \
468 signed_number = args_value[fspec->data_arg].pa_long_int; \
470 signed_number = args_value[fspec->data_arg].pa_int; \
472 is_negative = signed_number < 0; \
473 number.word = is_negative ? (- signed_number) : signed_number; \
475 goto LABEL (number); \
479 LABEL (form_unsigned): \
480 /* Unsigned decimal integer. */ \
482 goto LABEL (unsigned_number); \
485 LABEL (form_octal): \
486 /* Unsigned octal integer. */ \
488 goto LABEL (unsigned_number); \
492 /* Unsigned hexadecimal integer. */ \
495 LABEL (unsigned_number): /* Unsigned number of base BASE. */ \
497 /* ANSI specifies the `+' and ` ' flags only for signed \
506 number.longlong = va_arg (ap, unsigned long long int); \
508 number.longlong = args_value[fspec->data_arg].pa_u_long_long_int; \
510 LABEL (longlong_number): \
512 /* Supply a default precision if none was given. */ \
515 /* We have to take care for the '0' flag. If a precision \
516 is given it must be ignored. */ \
519 /* If the precision is 0 and the number is 0 nothing has to \
520 be written for the number. */ \
521 if (prec == 0 && number.longlong == 0) \
525 /* Put the number in WORK. */ \
526 string = _itoa (number.longlong, workend + 1, base, \
529 if (group && grouping) \
530 string = group_number (string, workend, grouping, \
533 /* Simply further test for num != 0. */ \
534 number.word = number.longlong != 0; \
540 number.word = va_arg (ap, unsigned long int); \
541 else if (!is_short) \
542 number.word = va_arg (ap, unsigned int); \
544 number.word = (unsigned short int) va_arg (ap, unsigned int); \
547 number.word = args_value[fspec->data_arg].pa_u_long_int; \
548 else if (!is_short) \
549 number.word = args_value[fspec->data_arg].pa_u_int; \
551 number.word = (unsigned short int) \
552 args_value[fspec->data_arg].pa_u_short_int; \
556 /* Supply a default precision if none was given. */ \
559 /* We have to take care for the '0' flag. If a precision \
560 is given it must be ignored. */ \
563 /* If the precision is 0 and the number is 0 nothing has to \
564 be written for the number. */ \
565 if (prec == 0 && number.word == 0) \
569 /* Put the number in WORK. */ \
570 string = _itoa_word (number.word, workend + 1, base, \
573 if (group && grouping) \
574 string = group_number (string, workend, grouping, \
579 prec -= workend - string; \
582 /* Add zeros to the precision. */ \
585 else if (number.word != 0 && alt && base == 8) \
586 /* Add octal marker. */ \
591 width -= workend - string; \
593 if (number.word != 0 && alt && base == 16) \
594 /* Account for 0X hex marker. */ \
597 if (is_negative || showsign || space) \
602 while (width-- > 0) \
605 if (number.word != 0 && alt && base == 16) \
620 if (number.word != 0 && alt && base == 16) \
633 while (width-- > 0) \
637 outstring (string + 1, workend - string); \
643 if (number.word != 0 && alt && base == 16) \
656 width -= workend - string; \
657 outstring (string + 1, workend - string); \
663 LABEL (form_float): \
665 /* Floating-point number. This is handled by printf_fp.c. */ \
666 extern int __printf_fp __P ((FILE *, const struct printf_info *, \
667 const void **const)); \
673 struct printf_info info = { prec: prec, \
676 is_long_double: is_long_double, \
677 is_short: is_short, \
682 showsign: showsign, \
687 if (is_long_double) \
688 the_arg.pa_long_double = va_arg (ap, long double); \
690 the_arg.pa_double = va_arg (ap, double); \
691 ptr = (const void *) &the_arg; \
693 function_done = __printf_fp (s, &info, &ptr); \
697 ptr = (const void *) &args_value[fspec->data_arg]; \
699 function_done = __printf_fp (s, &fspec->info, &ptr); \
702 if (function_done < 0) \
703 /* Error in print handler. */ \
706 done += function_done; \
710 LABEL (form_floathex): \
712 /* FLoating point number printed as hexadecimal number. */ \
713 extern int __printf_fphex __P ((FILE *, const struct printf_info *, \
714 const void **const)); \
720 struct printf_info info = { prec: prec, \
723 is_long_double: is_long_double, \
724 is_short: is_short, \
729 showsign: showsign, \
734 if (is_long_double) \
735 the_arg.pa_long_double = va_arg (ap, long double); \
737 the_arg.pa_double = va_arg (ap, double); \
738 ptr = (const void *) &the_arg; \
740 function_done = __printf_fphex (s, &info, &ptr); \
744 ptr = (const void *) &args_value[fspec->data_arg]; \
746 function_done = __printf_fphex (s, &fspec->info, &ptr); \
749 if (function_done < 0) \
750 /* Error in print handler. */ \
753 done += function_done; \
757 LABEL (form_character): \
760 goto LABEL (form_wcharacter); \
761 --width; /* Account for the character itself. */ \
765 outchar ((unsigned char) va_arg (ap, int)); /* Promoted. */ \
767 outchar ((unsigned char) args_value[fspec->data_arg].pa_char); \
772 LABEL (form_wcharacter): \
774 /* Wide character. */ \
775 char buf[MB_CUR_MAX]; \
779 len = __wcrtomb (buf, (fspec == NULL ? va_arg (ap, wint_t) \
780 : args_value[fspec->data_arg].pa_wchar), \
785 outstring (buf, len); \
791 LABEL (form_string): \
795 /* The string argument could in fact be `char *' or `wchar_t *'. \
796 But this should not make a difference here. */ \
798 string = (char *) va_arg (ap, const char *); \
800 string = (char *) args_value[fspec->data_arg].pa_string; \
802 /* Entry point for printing other strings. */ \
803 LABEL (print_string): \
805 if (string == NULL) \
807 /* Write "(null)" if there's space. */ \
808 if (prec == -1 || prec >= (int) sizeof (null) - 1) \
810 string = (char *) null; \
811 len = sizeof (null) - 1; \
815 string = (char *) ""; \
819 else if (!is_long && spec != L_('S')) \
822 /* Search for the end of the string, but don't search past \
823 the length specified by the precision. */ \
824 len = strnlen (string, prec); \
826 len = strlen (string); \
830 const wchar_t *s2 = (const wchar_t *) string; \
833 len = __wcsrtombs (NULL, &s2, 0, &mbstate); \
834 if (len == (size_t) -1) \
835 /* Illegal wide-character string. */ \
838 s2 = (const wchar_t *) string; \
839 string = alloca (len + 1); \
840 (void) __wcsrtombs (string, &s2, prec != -1 ? prec : UINT_MAX, \
844 if ((width -= len) < 0) \
846 outstring (string, len); \
852 outstring (string, len); \
858 LABEL (form_pointer): \
859 /* Generic pointer. */ \
863 ptr = va_arg (ap, void *); \
865 ptr = args_value[fspec->data_arg].pa_pointer; \
868 /* If the pointer is not NULL, write it as a %#x spec. */ \
870 number.word = (unsigned long int) ptr; \
875 goto LABEL (number); \
879 /* Write "(nil)" for a nil pointer. */ \
880 string = (char *) "(nil)"; \
881 /* Make sure the full string "(nil)" is printed. */ \
884 is_long = 0; /* This is no wide-char string. */ \
885 goto LABEL (print_string); \
890 LABEL (form_number): \
891 /* Answer the count of characters written. */ \
894 *(long long int *) va_arg (ap, void *) = done; \
896 *(long int *) va_arg (ap, void *) = done; \
897 else if (!is_short) \
898 *(int *) va_arg (ap, void *) = done; \
900 *(short int *) va_arg (ap, void *) = done; \
903 *(long long int *) args_value[fspec->data_arg].pa_pointer = done; \
905 *(long int *) args_value[fspec->data_arg].pa_pointer = done; \
906 else if (!is_short) \
907 *(int *) args_value[fspec->data_arg].pa_pointer = done; \
909 *(short int *) args_value[fspec->data_arg].pa_pointer = done; \
912 LABEL (form_strerror): \
913 /* Print description of error ERRNO. */ \
915 extern char *_strerror_internal __P ((int, char *buf, size_t)); \
918 _strerror_internal (save_errno, work_buffer, sizeof work_buffer); \
920 is_long = 0; /* This is no wide-char string. */ \
921 goto LABEL (print_string)
924 /* Sanity check of arguments. */
925 ARGCHECK (s
, format
);
927 if (UNBUFFERED_P (s
))
928 /* Use a helper function which will allocate a local temporary buffer
929 for the stream and then call us again. */
930 return buffered_vfprintf (s
, format
, ap
);
932 /* Initialize local variables. */
934 grouping
= (const char *) -1;
936 /* This macro will be available soon in gcc's <stdarg.h>. We need it
937 since on some systems `va_list' is not an integral type. */
938 __va_copy (ap_save
, ap
);
944 /* Find the first format specifier. */
945 f
= lead_str_end
= find_spec (format
, &mbstate
);
949 __libc_cleanup_region_start ((void (*) (void *)) &_IO_funlockfile
, s
);
952 __libc_cleanup_region_start ((void (*) (void *)) &__funlockfile
, s
);
956 /* Write the literal text before the first format. */
957 outstring ((const UCHAR_T
*) format
,
958 lead_str_end
- (const UCHAR_T
*) format
);
960 /* If we only have to print a simple string, return now. */
964 /* Process whole format string. */
967 #define REF(Name) &&do_##Name
968 #define LABEL(Name) do_##Name
972 union printf_arg
*args_value
; /* This is not used here but ... */
973 int is_negative
; /* Flag for negative number. */
976 unsigned long long int longlong
;
977 unsigned long int word
;
980 union printf_arg the_arg
;
981 char *string
; /* Pointer to argument string. */
982 int alt
= 0; /* Alternate format. */
983 int space
= 0; /* Use space prefix if no sign is needed. */
984 int left
= 0; /* Left-justify output. */
985 int showsign
= 0; /* Always begin with plus or minus sign. */
986 int group
= 0; /* Print numbers according grouping rules. */
987 int is_long_double
= 0; /* Argument is long double/ long long int. */
988 int is_short
= 0; /* Argument is long int. */
989 int is_long
= 0; /* Argument is short int. */
990 int width
= 0; /* Width of output; 0 means none specified. */
991 int prec
= -1; /* Precision of output; -1 means none specified. */
992 char pad
= ' '; /* Padding character. */
995 /* Get current character in format string. */
996 JUMP (*++f
, step0_jumps
);
1001 JUMP (*++f
, step0_jumps
);
1006 JUMP (*++f
, step0_jumps
);
1012 JUMP (*++f
, step0_jumps
);
1017 JUMP (*++f
, step0_jumps
);
1023 JUMP (*++f
, step0_jumps
);
1025 /* The '\'' flag. */
1029 /* XXX Completely wrong. Use wctob. */
1030 if (grouping
== (const char *) -1)
1032 /* Figure out the thousands separator character. */
1033 if (mbtowc (&thousands_sep
,
1034 _NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
),
1035 strlen (_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
))) <= 0)
1036 thousands_sep
= (wchar_t)
1037 *_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
);
1038 grouping
= _NL_CURRENT (LC_NUMERIC
, GROUPING
);
1039 if (*grouping
== '\0' || *grouping
== CHAR_MAX
1040 || thousands_sep
== L
'\0')
1043 JUMP (*++f
, step0_jumps
);
1045 /* Get width from argument. */
1046 LABEL (width_asterics
):
1048 const UCHAR_T
*tmp
; /* Temporary value. */
1051 if (ISDIGIT (*tmp
) && read_int (&tmp
) && *tmp
== L_('$'))
1052 /* The width comes from a positional parameter. */
1055 width
= va_arg (ap
, int);
1057 /* Negative width means left justified. */
1065 JUMP (*f
, step1_jumps
);
1067 /* Given width in format string. */
1069 width
= read_int (&f
);
1071 /* Oh, oh. The argument comes from a positional parameter. */
1073 JUMP (*f
, step1_jumps
);
1079 const UCHAR_T
*tmp
; /* Temporary value. */
1082 if (ISDIGIT (*tmp
) && read_int (&tmp
) > 0 && *tmp
== L_('$'))
1083 /* The precision comes from a positional parameter. */
1086 prec
= va_arg (ap
, int);
1088 /* If the precision is negative the precision is omitted. */
1092 else if (ISDIGIT (*f
))
1093 prec
= read_int (&f
);
1096 JUMP (*f
, step2_jumps
);
1098 /* Process 'h' modifier. No other modifier is allowed to
1102 JUMP (*++f
, step4_jumps
);
1104 /* Process 'l' modifier. There might another 'l' follow. */
1107 JUMP (*++f
, step3_jumps
);
1109 /* Process 'L', 'q', or 'll' modifier. No other modifier is
1110 allowed to follow. */
1111 LABEL (mod_longlong
):
1113 JUMP (*++f
, step4_jumps
);
1116 is_longlong
= sizeof (size_t) > sizeof (unsigned long int);
1117 is_long
= sizeof (size_t) > sizeof (unsigned int);
1118 JUMP (*++f
, step4_jumps
);
1120 /* Process current format. */
1123 process_arg (((struct printf_spec
*) NULL
));
1125 LABEL (form_unknown
):
1126 if (spec
== L_('\0'))
1128 /* The format string ended before the specifier is complete. */
1133 /* If we are in the fast loop force entering the complicated
1138 /* The format is correctly handled. */
1141 /* Look for next format specifier. */
1142 f
= find_spec ((end_of_spec
= ++f
), &mbstate
);
1144 /* Write the following constant string. */
1145 outstring (end_of_spec
, f
- end_of_spec
);
1147 while (*f
!= L_('\0'));
1149 /* Unlock stream and return. */
1152 /* Here starts the more complex loop to handle positional parameters. */
1155 /* Array with information about the needed arguments. This has to
1156 be dynamically extensible. */
1158 size_t nspecs_max
= 32; /* A more or less arbitrary start value. */
1159 struct printf_spec
*specs
1160 = alloca (nspecs_max
* sizeof (struct printf_spec
));
1162 /* The number of arguments the format string requests. This will
1163 determine the size of the array needed to store the argument
1167 union printf_arg
*args_value
;
1169 /* Positional parameters refer to arguments directly. This could
1170 also determine the maximum number of arguments. Track the
1172 size_t max_ref_arg
= 0;
1174 /* Just a counter. */
1178 if (grouping
== (const char *) -1)
1180 /* XXX Use wctob. But this is incompatible for now. */
1181 /* Figure out the thousands separator character. */
1182 if (mbtowc (&thousands_sep
,
1183 _NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
),
1184 strlen (_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
))) <= 0)
1185 thousands_sep
= (wchar_t) *_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
);
1186 grouping
= _NL_CURRENT (LC_NUMERIC
, GROUPING
);
1187 if (*grouping
== '\0' || *grouping
== CHAR_MAX
1188 || thousands_sep
== L
'\0')
1192 for (f
= lead_str_end
; *f
!= '\0'; f
= specs
[nspecs
++].next_fmt
)
1194 if (nspecs
>= nspecs_max
)
1196 /* Extend the array of format specifiers. */
1197 struct printf_spec
*old
= specs
;
1200 specs
= alloca (nspecs_max
* sizeof (struct printf_spec
));
1202 if (specs
== &old
[nspecs
])
1203 /* Stack grows up, OLD was the last thing allocated;
1205 nspecs_max
+= nspecs_max
/ 2;
1208 /* Copy the old array's elements to the new space. */
1209 memcpy (specs
, old
, nspecs
* sizeof (struct printf_spec
));
1210 if (old
== &specs
[nspecs
])
1211 /* Stack grows down, OLD was just below the new
1212 SPECS. We can use that space when the new space
1214 nspecs_max
+= nspecs_max
/ 2;
1218 /* Parse the format specifier. */
1219 nargs
+= parse_one_spec (f
, nargs
, &specs
[nspecs
], &max_ref_arg
,
1223 /* Determine the number of arguments the format string consumes. */
1224 nargs
= MAX (nargs
, max_ref_arg
);
1226 /* Allocate memory for the argument descriptions. */
1227 args_type
= alloca (nargs
* sizeof (int));
1228 memset (args_type
, 0, nargs
* sizeof (int));
1229 args_value
= alloca (nargs
* sizeof (union printf_arg
));
1231 /* XXX Could do sanity check here: If any element in ARGS_TYPE is
1232 still zero after this loop, format is invalid. For now we
1233 simply use 0 as the value. */
1235 /* Fill in the types of all the arguments. */
1236 for (cnt
= 0; cnt
< nspecs
; ++cnt
)
1238 /* If the width is determined by an argument this is an int. */
1239 if (specs
[cnt
].width_arg
!= -1)
1240 args_type
[specs
[cnt
].width_arg
] = PA_INT
;
1242 /* If the precision is determined by an argument this is an int. */
1243 if (specs
[cnt
].prec_arg
!= -1)
1244 args_type
[specs
[cnt
].prec_arg
] = PA_INT
;
1246 switch (specs
[cnt
].ndata_args
)
1248 case 0: /* No arguments. */
1250 case 1: /* One argument; we already have the type. */
1251 args_type
[specs
[cnt
].data_arg
] = specs
[cnt
].data_arg_type
;
1254 /* We have more than one argument for this format spec.
1255 We must call the arginfo function again to determine
1257 (void) (*__printf_arginfo_table
[specs
[cnt
].info
.spec
])
1259 specs
[cnt
].ndata_args
, &args_type
[specs
[cnt
].data_arg
]);
1264 /* Now we know all the types and the order. Fill in the argument
1266 for (cnt
= 0; cnt
< nargs
; ++cnt
)
1267 switch (args_type
[cnt
])
1269 #define T(tag, mem, type) \
1271 args_value[cnt].mem = va_arg (ap_save, type); \
1274 T (PA_CHAR
, pa_char
, int); /* Promoted. */
1275 T (PA_WCHAR
, pa_wchar
, wint_t);
1276 T (PA_INT
|PA_FLAG_SHORT
, pa_short_int
, int); /* Promoted. */
1277 T (PA_INT
, pa_int
, int);
1278 T (PA_INT
|PA_FLAG_LONG
, pa_long_int
, long int);
1279 T (PA_INT
|PA_FLAG_LONG_LONG
, pa_long_long_int
, long long int);
1280 T (PA_FLOAT
, pa_float
, double); /* Promoted. */
1281 T (PA_DOUBLE
, pa_double
, double);
1282 T (PA_DOUBLE
|PA_FLAG_LONG_DOUBLE
, pa_long_double
, long double);
1283 T (PA_STRING
, pa_string
, const char *);
1284 T (PA_WSTRING
, pa_wstring
, const wchar_t *);
1285 T (PA_POINTER
, pa_pointer
, void *);
1288 if ((args_type
[cnt
] & PA_FLAG_PTR
) != 0)
1289 args_value
[cnt
].pa_pointer
= va_arg (ap_save
, void *);
1291 args_value
[cnt
].pa_long_double
= 0.0;
1295 /* Now walk through all format specifiers and process them. */
1296 for (; (size_t) nspecs_done
< nspecs
; ++nspecs_done
)
1299 #define REF(Name) &&do2_##Name
1301 #define LABEL(Name) do2_##Name
1307 unsigned long long int longlong
;
1308 unsigned long int word
;
1311 union printf_arg the_arg
;
1312 char *string
; /* Pointer to argument string. */
1314 /* Fill variables from values in struct. */
1315 int alt
= specs
[nspecs_done
].info
.alt
;
1316 int space
= specs
[nspecs_done
].info
.space
;
1317 int left
= specs
[nspecs_done
].info
.left
;
1318 int showsign
= specs
[nspecs_done
].info
.showsign
;
1319 int group
= specs
[nspecs_done
].info
.group
;
1320 int is_long_double
= specs
[nspecs_done
].info
.is_long_double
;
1321 int is_short
= specs
[nspecs_done
].info
.is_short
;
1322 int is_long
= specs
[nspecs_done
].info
.is_long
;
1323 int width
= specs
[nspecs_done
].info
.width
;
1324 int prec
= specs
[nspecs_done
].info
.prec
;
1325 char pad
= specs
[nspecs_done
].info
.pad
;
1326 CHAR_T spec
= specs
[nspecs_done
].info
.spec
;
1328 /* Fill in last information. */
1329 if (specs
[nspecs_done
].width_arg
!= -1)
1331 /* Extract the field width from an argument. */
1332 specs
[nspecs_done
].info
.width
=
1333 args_value
[specs
[nspecs_done
].width_arg
].pa_int
;
1335 if (specs
[nspecs_done
].info
.width
< 0)
1336 /* If the width value is negative left justification is
1337 selected and the value is taken as being positive. */
1339 specs
[nspecs_done
].info
.width
*= -1;
1340 left
= specs
[nspecs_done
].info
.left
= 1;
1342 width
= specs
[nspecs_done
].info
.width
;
1345 if (specs
[nspecs_done
].prec_arg
!= -1)
1347 /* Extract the precision from an argument. */
1348 specs
[nspecs_done
].info
.prec
=
1349 args_value
[specs
[nspecs_done
].prec_arg
].pa_int
;
1351 if (specs
[nspecs_done
].info
.prec
< 0)
1352 /* If the precision is negative the precision is
1354 specs
[nspecs_done
].info
.prec
= -1;
1356 prec
= specs
[nspecs_done
].info
.prec
;
1359 /* Process format specifiers. */
1362 JUMP (spec
, step4_jumps
);
1364 process_arg ((&specs
[nspecs_done
]));
1366 LABEL (form_unknown
):
1368 extern printf_function
**__printf_function_table
;
1370 printf_function
*function
;
1375 (__printf_function_table
== NULL
? NULL
:
1376 __printf_function_table
[specs
[nspecs_done
].info
.spec
]);
1378 if (function
== NULL
)
1379 function
= &printf_unknown
;
1381 ptr
= alloca (specs
[nspecs_done
].ndata_args
1382 * sizeof (const void *));
1384 /* Fill in an array of pointers to the argument values. */
1385 for (i
= 0; i
< specs
[nspecs_done
].ndata_args
; ++i
)
1386 ptr
[i
] = &args_value
[specs
[nspecs_done
].data_arg
+ i
];
1388 /* Call the function. */
1389 function_done
= (*function
) (s
, &specs
[nspecs_done
].info
, ptr
);
1391 /* If an error occurred we don't have information about #
1393 if (function_done
< 0)
1399 done
+= function_done
;
1404 /* Write the following constant string. */
1405 outstring (specs
[nspecs_done
].end_of_fmt
,
1406 specs
[nspecs_done
].next_fmt
1407 - specs
[nspecs_done
].end_of_fmt
);
1412 /* Unlock the stream. */
1413 __libc_cleanup_region_end (1);
1420 # ifdef strong_alias
1421 /* This is for glibc. */
1422 strong_alias (_IO_vfprintf
, vfprintf
);
1424 # if defined __ELF__ || defined __GNU_LIBRARY__
1425 # include <gnu-stabs.h>
1427 weak_alias (_IO_vfprintf
, vfprintf
);
1433 /* Handle an unknown format specifier. This prints out a canonicalized
1434 representation of the format spec itself. */
1436 printf_unknown (FILE *s
, const struct printf_info
*info
,
1437 const void *const *args
)
1441 char work_buffer
[BUFSIZ
];
1452 else if (info
->space
)
1456 if (info
->pad
== '0')
1459 if (info
->width
!= 0)
1461 w
= _itoa_word (info
->width
, workend
+ 1, 10, 0);
1462 while (w
<= workend
)
1466 if (info
->prec
!= -1)
1469 w
= _itoa_word (info
->prec
, workend
+ 1, 10, 0);
1470 while (w
<= workend
)
1474 if (info
->spec
!= '\0')
1475 outchar (info
->spec
);
1480 /* Group the digits according to the grouping rules of the current locale.
1481 The interpretation of GROUPING is as in `struct lconv' from <locale.h>. */
1483 group_number (CHAR_T
*w
, CHAR_T
*rear_ptr
, const CHAR_T
*grouping
,
1484 wchar_t thousands_sep
)
1489 /* We treat all negative values like CHAR_MAX. */
1491 if (*grouping
== CHAR_MAX
|| *grouping
<= 0)
1492 /* No grouping should be done. */
1497 /* Copy existing string so that nothing gets overwritten. */
1498 src
= (char *) alloca (rear_ptr
- w
);
1499 memcpy (src
, w
+ 1, rear_ptr
- w
);
1500 s
= &src
[rear_ptr
- w
- 1];
1503 /* Process all characters in the string. */
1508 if (--len
== 0 && s
>= src
)
1510 /* A new group begins. */
1511 *w
-- = thousands_sep
;
1514 if (*grouping
== '\0')
1515 /* The previous grouping repeats ad infinitum. */
1517 else if (*grouping
== CHAR_MAX
|| *grouping
< 0)
1519 /* No further grouping to be done.
1520 Copy the rest of the number. */
1532 /* Helper "class" for `fprintf to unbuffered': creates a temporary buffer. */
1535 struct _IO_FILE_plus _f
;
1536 _IO_FILE
*_put_stream
;
1537 #ifdef _IO_MTSAFE_IO
1543 _IO_helper_overflow (_IO_FILE
*s
, int c
)
1545 _IO_FILE
*target
= ((struct helper_file
*) s
)->_put_stream
;
1546 int used
= s
->_IO_write_ptr
- s
->_IO_write_base
;
1549 _IO_size_t written
= _IO_sputn (target
, s
->_IO_write_base
, used
);
1550 s
->_IO_write_ptr
-= written
;
1555 static const struct _IO_jump_t _IO_helper_jumps
=
1558 JUMP_INIT (finish
, _IO_default_finish
),
1559 JUMP_INIT (overflow
, _IO_helper_overflow
),
1560 JUMP_INIT (underflow
, _IO_default_underflow
),
1561 JUMP_INIT (uflow
, _IO_default_uflow
),
1562 JUMP_INIT (pbackfail
, _IO_default_pbackfail
),
1563 JUMP_INIT (xsputn
, _IO_default_xsputn
),
1564 JUMP_INIT (xsgetn
, _IO_default_xsgetn
),
1565 JUMP_INIT (seekoff
, _IO_default_seekoff
),
1566 JUMP_INIT (seekpos
, _IO_default_seekpos
),
1567 JUMP_INIT (setbuf
, _IO_default_setbuf
),
1568 JUMP_INIT (sync
, _IO_default_sync
),
1569 JUMP_INIT (doallocate
, _IO_default_doallocate
),
1570 JUMP_INIT (read
, _IO_default_read
),
1571 JUMP_INIT (write
, _IO_default_write
),
1572 JUMP_INIT (seek
, _IO_default_seek
),
1573 JUMP_INIT (close
, _IO_default_close
),
1574 JUMP_INIT (stat
, _IO_default_stat
)
1578 buffered_vfprintf (register _IO_FILE
*s
, const CHAR_T
*format
,
1581 char buf
[_IO_BUFSIZ
];
1582 struct helper_file helper
;
1583 register _IO_FILE
*hp
= (_IO_FILE
*) &helper
;
1584 int result
, to_flush
;
1586 /* Initialize helper. */
1587 helper
._put_stream
= s
;
1588 hp
->_IO_write_base
= buf
;
1589 hp
->_IO_write_ptr
= buf
;
1590 hp
->_IO_write_end
= buf
+ sizeof buf
;
1591 hp
->_IO_file_flags
= _IO_MAGIC
|_IO_NO_READS
;
1592 #ifdef _IO_MTSAFE_IO
1593 hp
->_lock
= &helper
.lock
;
1594 __libc_lock_init (*hp
->_lock
);
1596 _IO_JUMPS (hp
) = (struct _IO_jump_t
*) &_IO_helper_jumps
;
1598 /* Now print to helper instead. */
1599 result
= _IO_vfprintf (hp
, format
, args
);
1601 /* Now flush anything from the helper to the S. */
1602 if ((to_flush
= hp
->_IO_write_ptr
- hp
->_IO_write_base
) > 0)
1604 if ((int) _IO_sputn (s
, hp
->_IO_write_base
, to_flush
) != to_flush
)
1611 #else /* !USE_IN_LIBIO */
1614 buffered_vfprintf (register FILE *s
, const CHAR_T
*format
, va_list args
)
1619 s
->__bufp
= s
->__buffer
= buf
;
1620 s
->__bufsize
= sizeof buf
;
1621 s
->__put_limit
= s
->__buffer
+ s
->__bufsize
;
1622 s
->__get_limit
= s
->__buffer
;
1624 /* Now use buffer to print. */
1625 result
= vfprintf (s
, format
, args
);
1627 if (fflush (s
) == EOF
)
1629 s
->__buffer
= s
->__bufp
= s
->__get_limit
= s
->__put_limit
= NULL
;
1635 /* Pads string with given number of a specified character.
1636 This code is taken from iopadn.c of the GNU I/O library. */
1638 static const CHAR_T blanks
[PADSIZE
] =
1639 { L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '),
1640 L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' ') };
1641 static const CHAR_T zeroes
[PADSIZE
] =
1642 { L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'),
1643 L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0') };
1646 #ifndef COMPILE_WPRINTF
1647 __printf_pad (FILE *s
, char pad
, size_t count
)
1649 __wprintf_pad (FILE *s
, wchar_t pad
, size_t count
)
1652 const CHAR_T
*padptr
;
1655 padptr
= pad
== L_(' ') ? blanks
: zeroes
;
1657 for (i
= count
; i
>= PADSIZE
; i
-= PADSIZE
)
1658 if (PUT (s
, padptr
, PADSIZE
) != PADSIZE
)
1661 if (PUT (s
, padptr
, i
) != i
)
1667 #endif /* USE_IN_LIBIO */