1 /* Copyright (C) 1991, 92, 93, 94, 95, 96 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
16 not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
27 #include "../locale/localeinfo.h"
29 /* This code is shared between the standard stdio implementation found
30 in GNU C library and the libio implementation originally found in
33 Beside this it is also shared between the normal and wide character
34 implementation as defined in ISO/IEC 9899:1990/Amendment 1:1995. */
36 #ifndef COMPILE_WPRINTF
38 # define UCHAR_T unsigned char
41 # define ISDIGIT(Ch) isdigit (Ch)
44 # define PUT(F, S, N) _IO_sputn (F, S, N)
45 # define PAD(Padchar) \
47 done += _IO_padn (s, Padchar, width)
49 # define PUTC(C, F) putc (C, F)
50 ssize_t __printf_pad
__P ((FILE *, char pad
, size_t n
));
51 # define PAD(Padchar) \
53 { if (__printf_pad (s, Padchar, width) == -1) \
54 return -1; else done += width; }
57 # define vfprintf vfwprintf
58 # define CHAR_T wchar_t
59 # define UCHAR_T uwchar_t
61 # define L_(Str) L##Str
62 # define ISDIGIT(Ch) iswdigit (Ch)
65 # define PUT(F, S, N) _IO_sputn (F, S, N)
66 # define PAD(Padchar) \
68 done += _IO_wpadn (s, Padchar, width)
70 # define PUTC(C, F) wputc (C, F)
71 ssize_t __wprintf_pad
__P ((FILE *, wchar_t pad
, size_t n
));
72 # define PAD(Padchar) \
74 { if (__wprintf_pad (s, Padchar, width) == -1) \
75 return -1; else done += width; }
79 /* Include the shared code for parsing the format string. */
80 #include "printf-parse.h"
84 /* This code is for use in libio. */
86 # define PUTC(C, F) _IO_putc_unlocked (C, F)
87 # define vfprintf _IO_vfprintf
88 # define FILE _IO_FILE
89 # define va_list _IO_va_list
91 # define BUFSIZ _IO_BUFSIZ
92 # define ARGCHECK(S, Format) \
95 /* Check file argument for consistence. */ \
97 if (S->_flags & _IO_NO_WRITES || Format == NULL) \
103 # define UNBUFFERED_P(S) ((S)->_IO_file_flags & _IO_UNBUFFERED)
104 #else /* ! USE_IN_LIBIO */
105 /* This code is for use in the GNU C library. */
107 # define PUT(F, S, N) fwrite (S, 1, N, F)
108 # define ARGCHECK(S, Format) \
111 /* Check file argument for consistence. */ \
112 if (!__validfp(S) || !S->__mode.__write || Format == NULL) \
119 if (__flshfp (S, EOF) == EOF) \
124 # define UNBUFFERED_P(s) ((s)->__buffer == NULL)
125 # define flockfile(S) /* nothing */
126 # define funlockfile(S) /* nothing */
127 #endif /* USE_IN_LIBIO */
130 #define outchar(Ch) \
133 register const int outc = (Ch); \
134 if (PUTC (outc, s) == EOF) \
141 #define outstring(String, Len) \
144 if (PUT (s, String, Len) != Len) \
150 /* For handling long_double and longlong we use the same flag. */
152 # define is_longlong is_long_double
156 /* Global variables. */
157 static const char null
[] = "(null)";
160 /* Helper function to provide temporary buffering for unbuffered streams. */
161 static int buffered_vfprintf
__P ((FILE *stream
, const CHAR_T
*fmt
, va_list));
163 /* Handle unknown format specifier. */
164 static int printf_unknown
__P ((FILE *, const struct printf_info
*,
165 const void *const *));
167 /* Group digits of number string. */
168 static char *group_number
__P ((CHAR_T
*, CHAR_T
*, const CHAR_T
*, wchar_t));
171 /* The function itself. */
173 vfprintf (FILE *s
, const CHAR_T
*format
, va_list ap
)
175 /* The character used as thousands separator. */
176 wchar_t thousands_sep
;
178 /* The string describing the size of groups of digits. */
179 const char *grouping
;
181 /* Place to accumulate the result. */
184 /* Current character in format string. */
187 /* End of leading constant string. */
188 const UCHAR_T
*lead_str_end
;
190 /* Points to next format specifier. */
191 const UCHAR_T
*end_of_spec
;
193 /* Buffer intermediate results. */
194 char work_buffer
[1000];
195 #define workend (&work_buffer[sizeof (work_buffer) - 1])
197 /* State for restartable multibyte character handling functions. */
200 /* We have to save the original argument pointer. */
203 /* Count number of specifiers we already processed. */
207 /* This table maps a character into a number representing a
208 class. In each step there is a destination label for each
210 static const int jump_table
[] =
212 /* ' ' */ 1, 0, 0, /* '#' */ 4,
213 0, /* '%' */ 14, 0, /* '\''*/ 6,
214 0, 0, /* '*' */ 7, /* '+' */ 2,
215 0, /* '-' */ 3, /* '.' */ 9, 0,
216 /* '0' */ 5, /* '1' */ 8, /* '2' */ 8, /* '3' */ 8,
217 /* '4' */ 8, /* '5' */ 8, /* '6' */ 8, /* '7' */ 8,
218 /* '8' */ 8, /* '9' */ 8, 0, 0,
221 0, /* 'E' */ 19, 0, /* 'G' */ 19,
223 /* 'L' */ 12, 0, 0, 0,
226 /* 'X' */ 18, 0, /* 'Z' */ 13, 0,
228 0, 0, 0, /* 'c' */ 20,
229 /* 'd' */ 15, /* 'e' */ 19, /* 'f' */ 19, /* 'g' */ 19,
230 /* 'h' */ 10, /* 'i' */ 15, 0, 0,
231 /* 'l' */ 11, /* 'm' */ 24, /* 'n' */ 23, /* 'o' */ 17,
232 /* 'p' */ 22, /* 'q' */ 12, 0, /* 's' */ 21,
233 0, /* 'u' */ 16, 0, 0,
237 #define NOT_IN_JUMP_RANGE(Ch) ((Ch) < ' ' || (Ch) > 'x')
238 #define CHAR_CLASS(Ch) (jump_table[(int) (Ch) - ' '])
239 #define JUMP(ChExpr, table) \
244 ptr = NOT_IN_JUMP_RANGE (spec) ? REF (form_unknown) \
245 : table[CHAR_CLASS (spec)]; \
250 #define STEP0_3_TABLE \
251 /* Step 0: at the beginning. */ \
252 static const void *step0_jumps[25] = \
254 REF (form_unknown), \
255 REF (flag_space), /* for ' ' */ \
256 REF (flag_plus), /* for '+' */ \
257 REF (flag_minus), /* for '-' */ \
258 REF (flag_hash), /* for '<hash>' */ \
259 REF (flag_zero), /* for '0' */ \
260 REF (flag_quote), /* for '\'' */ \
261 REF (width_asterics), /* for '*' */ \
262 REF (width), /* for '1'...'9' */ \
263 REF (precision), /* for '.' */ \
264 REF (mod_half), /* for 'h' */ \
265 REF (mod_long), /* for 'l' */ \
266 REF (mod_longlong), /* for 'L', 'q' */ \
267 REF (mod_size_t), /* for 'Z' */ \
268 REF (form_percent), /* for '%' */ \
269 REF (form_integer), /* for 'd', 'i' */ \
270 REF (form_unsigned), /* for 'u' */ \
271 REF (form_octal), /* for 'o' */ \
272 REF (form_hexa), /* for 'X', 'x' */ \
273 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
274 REF (form_character), /* for 'c' */ \
275 REF (form_string), /* for 's' */ \
276 REF (form_pointer), /* for 'p' */ \
277 REF (form_number), /* for 'n' */ \
278 REF (form_strerror) /* for 'm' */ \
280 /* Step 1: after processing width. */ \
281 static const void *step1_jumps[25] = \
283 REF (form_unknown), \
284 REF (form_unknown), /* for ' ' */ \
285 REF (form_unknown), /* for '+' */ \
286 REF (form_unknown), /* for '-' */ \
287 REF (form_unknown), /* for '<hash>' */ \
288 REF (form_unknown), /* for '0' */ \
289 REF (form_unknown), /* for '\'' */ \
290 REF (form_unknown), /* for '*' */ \
291 REF (form_unknown), /* for '1'...'9' */ \
292 REF (precision), /* for '.' */ \
293 REF (mod_half), /* for 'h' */ \
294 REF (mod_long), /* for 'l' */ \
295 REF (mod_longlong), /* for 'L', 'q' */ \
296 REF (mod_size_t), /* for 'Z' */ \
297 REF (form_percent), /* for '%' */ \
298 REF (form_integer), /* for 'd', 'i' */ \
299 REF (form_unsigned), /* for 'u' */ \
300 REF (form_octal), /* for 'o' */ \
301 REF (form_hexa), /* for 'X', 'x' */ \
302 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
303 REF (form_character), /* for 'c' */ \
304 REF (form_string), /* for 's' */ \
305 REF (form_pointer), /* for 'p' */ \
306 REF (form_number), /* for 'n' */ \
307 REF (form_strerror) /* for 'm' */ \
309 /* Step 2: after processing precision. */ \
310 static const void *step2_jumps[25] = \
312 REF (form_unknown), \
313 REF (form_unknown), /* for ' ' */ \
314 REF (form_unknown), /* for '+' */ \
315 REF (form_unknown), /* for '-' */ \
316 REF (form_unknown), /* for '<hash>' */ \
317 REF (form_unknown), /* for '0' */ \
318 REF (form_unknown), /* for '\'' */ \
319 REF (form_unknown), /* for '*' */ \
320 REF (form_unknown), /* for '1'...'9' */ \
321 REF (form_unknown), /* for '.' */ \
322 REF (mod_half), /* for 'h' */ \
323 REF (mod_long), /* for 'l' */ \
324 REF (mod_longlong), /* for 'L', 'q' */ \
325 REF (mod_size_t), /* for 'Z' */ \
326 REF (form_percent), /* for '%' */ \
327 REF (form_integer), /* for 'd', 'i' */ \
328 REF (form_unsigned), /* for 'u' */ \
329 REF (form_octal), /* for 'o' */ \
330 REF (form_hexa), /* for 'X', 'x' */ \
331 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
332 REF (form_character), /* for 'c' */ \
333 REF (form_string), /* for 's' */ \
334 REF (form_pointer), /* for 'p' */ \
335 REF (form_number), /* for 'n' */ \
336 REF (form_strerror) /* for 'm' */ \
338 /* Step 3: after processing first 'l' modifier. */ \
339 static const void *step3_jumps[25] = \
341 REF (form_unknown), \
342 REF (form_unknown), /* for ' ' */ \
343 REF (form_unknown), /* for '+' */ \
344 REF (form_unknown), /* for '-' */ \
345 REF (form_unknown), /* for '<hash>' */ \
346 REF (form_unknown), /* for '0' */ \
347 REF (form_unknown), /* for '\'' */ \
348 REF (form_unknown), /* for '*' */ \
349 REF (form_unknown), /* for '1'...'9' */ \
350 REF (form_unknown), /* for '.' */ \
351 REF (form_unknown), /* for 'h' */ \
352 REF (mod_longlong), /* for 'l' */ \
353 REF (form_unknown), /* for 'L', 'q' */ \
354 REF (form_unknown), /* for 'Z' */ \
355 REF (form_percent), /* for '%' */ \
356 REF (form_integer), /* for 'd', 'i' */ \
357 REF (form_unsigned), /* for 'u' */ \
358 REF (form_octal), /* for 'o' */ \
359 REF (form_hexa), /* for 'X', 'x' */ \
360 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
361 REF (form_character), /* for 'c' */ \
362 REF (form_string), /* for 's' */ \
363 REF (form_pointer), /* for 'p' */ \
364 REF (form_number), /* for 'n' */ \
365 REF (form_strerror) /* for 'm' */ \
368 #define STEP4_TABLE \
369 /* Step 4: processing format specifier. */ \
370 static const void *step4_jumps[25] = \
372 REF (form_unknown), \
373 REF (form_unknown), /* for ' ' */ \
374 REF (form_unknown), /* for '+' */ \
375 REF (form_unknown), /* for '-' */ \
376 REF (form_unknown), /* for '<hash>' */ \
377 REF (form_unknown), /* for '0' */ \
378 REF (form_unknown), /* for '\'' */ \
379 REF (form_unknown), /* for '*' */ \
380 REF (form_unknown), /* for '1'...'9' */ \
381 REF (form_unknown), /* for '.' */ \
382 REF (form_unknown), /* for 'h' */ \
383 REF (form_unknown), /* for 'l' */ \
384 REF (form_unknown), /* for 'L', 'q' */ \
385 REF (form_unknown), /* for 'Z' */ \
386 REF (form_percent), /* for '%' */ \
387 REF (form_integer), /* for 'd', 'i' */ \
388 REF (form_unsigned), /* for 'u' */ \
389 REF (form_octal), /* for 'o' */ \
390 REF (form_hexa), /* for 'X', 'x' */ \
391 REF (form_float), /* for 'E', 'e', 'f', 'G', 'g' */ \
392 REF (form_character), /* for 'c' */ \
393 REF (form_string), /* for 's' */ \
394 REF (form_pointer), /* for 'p' */ \
395 REF (form_number), /* for 'n' */ \
396 REF (form_strerror) /* for 'm' */ \
400 #define process_arg(fspec) \
401 /* Start real work. We know about all flag and modifiers and \
402 now process the wanted format specifier. */ \
403 LABEL (form_percent): \
404 /* Write a literal "%". */ \
408 LABEL (form_integer): \
409 /* Signed decimal integer. */ \
414 long long int signed_number; \
417 signed_number = va_arg (ap, long long int); \
419 signed_number = args_value[fspec->data_arg].pa_long_long_int; \
421 is_negative = signed_number < 0; \
422 number.longlong = is_negative ? (- signed_number) : signed_number; \
424 goto LABEL (longlong_number); \
428 long int signed_number; \
432 signed_number = va_arg (ap, long int); \
433 else /* `short int' will be promoted to `int'. */ \
434 signed_number = va_arg (ap, int); \
437 signed_number = args_value[fspec->data_arg].pa_long_int; \
439 signed_number = args_value[fspec->data_arg].pa_int; \
441 is_negative = signed_number < 0; \
442 number.word = is_negative ? (- signed_number) : signed_number; \
444 goto LABEL (number); \
448 LABEL (form_unsigned): \
449 /* Unsigned decimal integer. */ \
451 goto LABEL (unsigned_number); \
454 LABEL (form_octal): \
455 /* Unsigned octal integer. */ \
457 goto LABEL (unsigned_number); \
461 /* Unsigned hexadecimal integer. */ \
464 LABEL (unsigned_number): /* Unsigned number of base BASE. */ \
466 /* ANSI specifies the `+' and ` ' flags only for signed \
475 number.longlong = va_arg (ap, unsigned long long int); \
477 number.longlong = args_value[fspec->data_arg].pa_u_long_long_int; \
479 LABEL (longlong_number): \
481 /* Supply a default precision if none was given. */ \
484 /* We have to take care for the '0' flag. If a precision \
485 is given it must be ignored. */ \
488 /* If the precision is 0 and the number is 0 nothing has to \
489 be written for the number. */ \
490 if (prec == 0 && number.longlong == 0) \
494 /* Put the number in WORK. */ \
495 string = _itoa (number.longlong, workend + 1, base, \
498 if (group && grouping) \
499 string = group_number (string, workend, grouping, \
502 /* Simply further test for num != 0. */ \
503 number.word = number.longlong != 0; \
509 number.word = va_arg (ap, unsigned long int); \
510 else if (!is_short) \
511 number.word = va_arg (ap, unsigned int); \
513 number.word = (unsigned short int) va_arg (ap, unsigned int); \
516 number.word = args_value[fspec->data_arg].pa_u_long_int; \
517 else if (!is_short) \
518 number.word = args_value[fspec->data_arg].pa_u_int; \
520 number.word = (unsigned short int) \
521 args_value[fspec->data_arg].pa_u_short_int; \
525 /* Supply a default precision if none was given. */ \
528 /* We have to take care for the '0' flag. If a precision \
529 is given it must be ignored. */ \
532 /* If the precision is 0 and the number is 0 nothing has to \
533 be written for the number. */ \
534 if (prec == 0 && number.word == 0) \
538 /* Put the number in WORK. */ \
539 string = _itoa_word (number.word, workend + 1, base, \
542 if (group && grouping) \
543 string = group_number (string, workend, grouping, \
548 prec -= workend - string; \
551 /* Add zeros to the precision. */ \
554 else if (number.word != 0 && alt && base == 8) \
555 /* Add octal marker. */ \
560 width -= workend - string; \
562 if (number.word != 0 && alt && base == 16) \
563 /* Account for 0X hex marker. */ \
566 if (is_negative || showsign || space) \
571 while (width-- > 0) \
574 if (number.word != 0 && alt && base == 16) \
589 if (number.word != 0 && alt && base == 16) \
602 while (width-- > 0) \
606 outstring (string + 1, workend - string); \
612 if (number.word != 0 && alt && base == 16) \
625 width -= workend - string; \
626 outstring (string + 1, workend - string); \
632 LABEL (form_float): \
634 /* Floating-point number. This is handled by printf_fp.c. */ \
635 extern int __printf_fp __P ((FILE *, const struct printf_info *, \
636 const void **const)); \
642 struct printf_info info = { prec: prec, \
645 is_long_double: is_long_double, \
646 is_short: is_short, \
651 showsign: showsign, \
656 if (is_long_double) \
657 the_arg.pa_long_double = va_arg (ap, long double); \
659 the_arg.pa_double = va_arg (ap, double); \
660 ptr = (const void *) &the_arg; \
662 function_done = __printf_fp (s, &info, &ptr); \
666 ptr = (const void *) &args_value[fspec->data_arg]; \
668 function_done = __printf_fp (s, &fspec->info, &ptr); \
671 if (function_done < 0) \
672 /* Error in print handler. */ \
675 done += function_done; \
679 LABEL (form_character): \
681 --width; /* Account for the character itself. */ \
685 outchar ((unsigned char) va_arg (ap, int)); /* Promoted. */ \
687 outchar ((unsigned char) args_value[fspec->data_arg].pa_char); \
692 LABEL (form_string): \
696 /* The string argument could in fact be `char *' or `wchar_t *'. \
697 But this should not make a difference here. */ \
699 string = (char *) va_arg (ap, const char *); \
701 string = (char *) args_value[fspec->data_arg].pa_string; \
703 /* Entry point for printing other strings. */ \
704 LABEL (print_string): \
706 if (string == NULL) \
708 /* Write "(null)" if there's space. */ \
709 if (prec == -1 || prec >= (int) sizeof (null) - 1) \
711 string = (char *) null; \
712 len = sizeof (null) - 1; \
716 string = (char *) ""; \
724 /* Search for the end of the string, but don't search past \
725 the length specified by the precision. */ \
726 const char *end = memchr (string, '\0', prec); \
728 len = end - string; \
733 len = strlen (string); \
737 const wchar_t *s2 = (const wchar_t *) string; \
740 len = wcsrtombs (NULL, &s2, 0, &mbstate); \
741 if (len == (size_t) -1) \
742 /* Illegal wide-character string. */ \
745 s2 = (const wchar_t *) string; \
746 string = alloca (len + 1); \
747 (void) wcsrtombs (string, &s2, prec != -1 ? prec : UINT_MAX, \
751 if ((width -= len) < 0) \
753 outstring (string, len); \
759 outstring (string, len); \
765 LABEL (form_pointer): \
766 /* Generic pointer. */ \
770 ptr = va_arg (ap, void *); \
772 ptr = args_value[fspec->data_arg].pa_pointer; \
775 /* If the pointer is not NULL, write it as a %#x spec. */ \
777 number.word = (unsigned long int) ptr; \
782 goto LABEL (number); \
786 /* Write "(nil)" for a nil pointer. */ \
787 string = (char *) "(nil)"; \
788 /* Make sure the full string "(nil)" is printed. */ \
791 is_long = 0; /* This is no wide-char string. */ \
792 goto LABEL (print_string); \
797 LABEL (form_number): \
798 /* Answer the count of characters written. */ \
801 *(long long int *) va_arg (ap, void *) = done; \
803 *(long int *) va_arg (ap, void *) = done; \
804 else if (!is_short) \
805 *(int *) va_arg (ap, void *) = done; \
807 *(short int *) va_arg (ap, void *) = done; \
810 *(long long int *) args_value[fspec->data_arg].pa_pointer = done; \
812 *(long int *) args_value[fspec->data_arg].pa_pointer = done; \
813 else if (!is_short) \
814 *(int *) args_value[fspec->data_arg].pa_pointer = done; \
816 *(short int *) args_value[fspec->data_arg].pa_pointer = done; \
819 LABEL (form_strerror): \
820 /* Print description of error ERRNO. */ \
822 extern char *_strerror_internal __P ((int, char *buf, size_t)); \
825 _strerror_internal (errno, work_buffer, sizeof work_buffer); \
827 is_long = 0; /* This is no wide-char string. */ \
828 goto LABEL (print_string)
831 /* Sanity check of arguments. */
832 ARGCHECK (s
, format
);
834 if (UNBUFFERED_P (s
))
835 /* Use a helper function which will allocate a local temporary buffer
836 for the stream and then call us again. */
837 return buffered_vfprintf (s
, format
, ap
);
839 /* Initialize local variables. */
841 grouping
= (const char *) -1;
845 /* Find the first format specifier. */
846 f
= lead_str_end
= find_spec (format
, &mbstate
);
851 /* Write the literal text before the first format. */
852 outstring ((const UCHAR_T
*) format
,
853 lead_str_end
- (const UCHAR_T
*) format
);
855 /* If we only have to print a simple string, return now. */
862 /* Process whole format string. */
865 #define REF(Name) &&do_##Name
866 #define LABEL(Name) do_##Name
870 union printf_arg
*args_value
; /* This is not used here but ... */
871 int is_negative
; /* Flag for negative number. */
874 unsigned long long int longlong
;
875 unsigned long int word
;
878 union printf_arg the_arg
;
879 char *string
; /* Pointer to argument string. */
880 int alt
= 0; /* Alternate format. */
881 int space
= 0; /* Use space prefix if no sign is needed. */
882 int left
= 0; /* Left-justify output. */
883 int showsign
= 0; /* Always begin with plus or minus sign. */
884 int group
= 0; /* Print numbers according grouping rules. */
885 int is_long_double
= 0; /* Argument is long double/ long long int. */
886 int is_short
= 0; /* Argument is long int. */
887 int is_long
= 0; /* Argument is short int. */
888 int width
= 0; /* Width of output; 0 means none specified. */
889 int prec
= -1; /* Precision of output; -1 means none specified. */
890 char pad
= ' '; /* Padding character. */
893 /* Get current character in format string. */
894 JUMP (*++f
, step0_jumps
);
899 JUMP (*++f
, step0_jumps
);
904 JUMP (*++f
, step0_jumps
);
910 JUMP (*++f
, step0_jumps
);
915 JUMP (*++f
, step0_jumps
);
921 JUMP (*++f
, step0_jumps
);
927 /* XXX Completely wrong. Use wctob. */
928 if (grouping
== (const char *) -1)
930 /* Figure out the thousands separator character. */
931 if (mbtowc (&thousands_sep
,
932 _NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
),
933 strlen (_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
))) <= 0)
934 thousands_sep
= (wchar_t)
935 *_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
);
936 grouping
= _NL_CURRENT (LC_NUMERIC
, GROUPING
);
937 if (*grouping
== '\0' || *grouping
== CHAR_MAX
938 || thousands_sep
== L
'\0')
941 JUMP (*++f
, step0_jumps
);
943 /* Get width from argument. */
944 LABEL (width_asterics
):
946 const UCHAR_T
*tmp
; /* Temporary value. */
949 if (ISDIGIT (*tmp
) && read_int (&tmp
) && *tmp
== L_('$'))
950 /* The width comes from a positional parameter. */
953 width
= va_arg (ap
, int);
955 /* Negative width means left justified. */
963 JUMP (*f
, step1_jumps
);
965 /* Given width in format string. */
967 width
= read_int (&f
);
969 /* Oh, oh. The argument comes from a positional parameter. */
971 JUMP (*f
, step1_jumps
);
977 const UCHAR_T
*tmp
; /* Temporary value. */
980 if (ISDIGIT (*tmp
) && read_int (&tmp
) > 0 && *tmp
== L_('$'))
981 /* The precision comes from a positional parameter. */
984 prec
= va_arg (ap
, int);
986 /* If the precision is negative the precision is omitted. */
990 else if (ISDIGIT (*f
))
991 prec
= read_int (&f
);
994 JUMP (*f
, step2_jumps
);
996 /* Process 'h' modifier. No other modifier is allowed to
1000 JUMP (*++f
, step4_jumps
);
1002 /* Process 'l' modifier. There might another 'l' follow. */
1005 JUMP (*++f
, step3_jumps
);
1007 /* Process 'L', 'q', or 'll' modifier. No other modifier is
1008 allowed to follow. */
1009 LABEL (mod_longlong
):
1011 JUMP (*++f
, step4_jumps
);
1014 is_longlong
= sizeof (size_t) > sizeof (unsigned long int);
1015 is_long
= sizeof (size_t) > sizeof (unsigned int);
1016 JUMP (*++f
, step4_jumps
);
1019 /* Process current format. */
1022 process_arg (((struct printf_spec
*) NULL
));
1024 LABEL (form_unknown
):
1025 if (spec
== L_('\0'))
1027 /* The format string ended before the specifier is complete. */
1032 /* If we are in the fast loop force entering the complicated
1037 /* Look for next format specifier. */
1038 f
= find_spec ((end_of_spec
= ++f
), &mbstate
);
1040 /* Write the following constant string. */
1041 outstring (end_of_spec
, f
- end_of_spec
);
1043 while (*f
!= L_('\0'));
1045 /* Unlock stream. */
1048 /* We processed the whole format without any positional parameters. */
1051 /* Here starts the more complex loop to handle positional parameters. */
1054 /* Array with information about the needed arguments. This has to
1055 be dynamically extendable. */
1057 size_t nspecs_max
= 32; /* A more or less arbitrary start value. */
1058 struct printf_spec
*specs
1059 = alloca (nspecs_max
* sizeof (struct printf_spec
));
1061 /* The number of arguments the format string requests. This will
1062 determine the size of the array needed to store the argument
1066 union printf_arg
*args_value
;
1068 /* Positional parameters refer to arguments directly. This could
1069 also determine the maximum number of arguments. Track the
1071 size_t max_ref_arg
= 0;
1073 /* Just a counter. */
1077 if (grouping
== (const char *) -1)
1079 /* XXX Use wctob. But this is incompatible for now. */
1080 /* Figure out the thousands separator character. */
1081 if (mbtowc (&thousands_sep
,
1082 _NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
),
1083 strlen (_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
))) <= 0)
1084 thousands_sep
= (wchar_t) *_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
);
1085 grouping
= _NL_CURRENT (LC_NUMERIC
, GROUPING
);
1086 if (*grouping
== '\0' || *grouping
== CHAR_MAX
1087 || thousands_sep
== L
'\0')
1091 for (f
= lead_str_end
; *f
!= '\0'; f
= specs
[nspecs
++].next_fmt
)
1093 if (nspecs
>= nspecs_max
)
1095 /* Extend the array of format specifiers. */
1096 struct printf_spec
*old
= specs
;
1099 specs
= alloca (nspecs_max
* sizeof (struct printf_spec
));
1101 if (specs
== &old
[nspecs
])
1102 /* Stack grows up, OLD was the last thing allocated;
1104 nspecs_max
+= nspecs_max
/ 2;
1107 /* Copy the old array's elements to the new space. */
1108 memcpy (specs
, old
, nspecs
* sizeof (struct printf_spec
));
1109 if (old
== &specs
[nspecs
])
1110 /* Stack grows down, OLD was just below the new
1111 SPECS. We can use that space when the new space
1113 nspecs_max
+= nspecs_max
/ 2;
1117 /* Parse the format specifier. */
1118 nargs
+= parse_one_spec (f
, nargs
, &specs
[nspecs
], &max_ref_arg
,
1122 /* Determine the number of arguments the format string consumes. */
1123 nargs
= MAX (nargs
, max_ref_arg
);
1125 /* Allocate memory for the argument descriptions. */
1126 args_type
= alloca (nargs
* sizeof (int));
1127 memset (args_type
, 0, nargs
* sizeof (int));
1128 args_value
= alloca (nargs
* sizeof (union printf_arg
));
1130 /* XXX Could do sanity check here: If any element in ARGS_TYPE is
1131 still zero after this loop, format is invalid. For now we
1132 simply use 0 as the value. */
1134 /* Fill in the types of all the arguments. */
1135 for (cnt
= 0; cnt
< nspecs
; ++cnt
)
1137 /* If the width is determined by an argument this is an int. */
1138 if (specs
[cnt
].width_arg
!= -1)
1139 args_type
[specs
[cnt
].width_arg
] = PA_INT
;
1141 /* If the precision is determined by an argument this is an int. */
1142 if (specs
[cnt
].prec_arg
!= -1)
1143 args_type
[specs
[cnt
].prec_arg
] = PA_INT
;
1145 switch (specs
[cnt
].ndata_args
)
1147 case 0: /* No arguments. */
1149 case 1: /* One argument; we already have the type. */
1150 args_type
[specs
[cnt
].data_arg
] = specs
[cnt
].data_arg_type
;
1153 /* We have more than one argument for this format spec.
1154 We must call the arginfo function again to determine
1156 (void) (*__printf_arginfo_table
[specs
[cnt
].info
.spec
])
1158 specs
[cnt
].ndata_args
, &args_type
[specs
[cnt
].data_arg
]);
1163 /* Now we know all the types and the order. Fill in the argument
1165 for (cnt
= 0, ap
= ap_save
; cnt
< nargs
; ++cnt
)
1166 switch (args_type
[cnt
])
1168 #define T(tag, mem, type) \
1170 args_value[cnt].mem = va_arg (ap, type); \
1173 T (PA_CHAR
, pa_char
, int); /* Promoted. */
1174 T (PA_INT
|PA_FLAG_SHORT
, pa_short_int
, int); /* Promoted. */
1175 T (PA_INT
, pa_int
, int);
1176 T (PA_INT
|PA_FLAG_LONG
, pa_long_int
, long int);
1177 T (PA_INT
|PA_FLAG_LONG_LONG
, pa_long_long_int
, long long int);
1178 T (PA_FLOAT
, pa_float
, double); /* Promoted. */
1179 T (PA_DOUBLE
, pa_double
, double);
1180 T (PA_DOUBLE
|PA_FLAG_LONG_DOUBLE
, pa_long_double
, long double);
1181 T (PA_STRING
, pa_string
, const char *);
1182 T (PA_POINTER
, pa_pointer
, void *);
1185 if ((args_type
[cnt
] & PA_FLAG_PTR
) != 0)
1186 args_value
[cnt
].pa_pointer
= va_arg (ap
, void *);
1188 args_value
[cnt
].pa_long_double
= 0.0;
1192 /* Now walk through all format specifiers and process them. */
1193 for (; nspecs_done
< nspecs
; ++nspecs_done
)
1196 #define REF(Name) &&do2_##Name
1198 #define LABEL(Name) do2_##Name
1204 unsigned long long int longlong
;
1205 unsigned long int word
;
1208 union printf_arg the_arg
;
1209 char *string
; /* Pointer to argument string. */
1211 /* Fill variables from values in struct. */
1212 int alt
= specs
[nspecs_done
].info
.alt
;
1213 int space
= specs
[nspecs_done
].info
.space
;
1214 int left
= specs
[nspecs_done
].info
.left
;
1215 int showsign
= specs
[nspecs_done
].info
.showsign
;
1216 int group
= specs
[nspecs_done
].info
.group
;
1217 int is_long_double
= specs
[nspecs_done
].info
.is_long_double
;
1218 int is_short
= specs
[nspecs_done
].info
.is_short
;
1219 int is_long
= specs
[nspecs_done
].info
.is_long
;
1220 int width
= specs
[nspecs_done
].info
.width
;
1221 int prec
= specs
[nspecs_done
].info
.prec
;
1222 char pad
= specs
[nspecs_done
].info
.pad
;
1223 CHAR_T spec
= specs
[nspecs_done
].info
.spec
;
1225 /* Fill in last information. */
1226 if (specs
[nspecs_done
].width_arg
!= -1)
1228 /* Extract the field width from an argument. */
1229 specs
[nspecs_done
].info
.width
=
1230 args_value
[specs
[nspecs_done
].width_arg
].pa_int
;
1232 if (specs
[nspecs_done
].info
.width
< 0)
1233 /* If the width value is negative left justification is
1234 selected and the value is taken as being positive. */
1236 specs
[nspecs_done
].info
.width
*= -1;
1237 left
= specs
[nspecs_done
].info
.left
= 1;
1239 width
= specs
[nspecs_done
].info
.width
;
1242 if (specs
[nspecs_done
].prec_arg
!= -1)
1244 /* Extract the precision from an argument. */
1245 specs
[nspecs_done
].info
.prec
=
1246 args_value
[specs
[nspecs_done
].prec_arg
].pa_int
;
1248 if (specs
[nspecs_done
].info
.prec
< 0)
1249 /* If the precision is negative the precision is
1251 specs
[nspecs_done
].info
.prec
= -1;
1253 prec
= specs
[nspecs_done
].info
.prec
;
1256 /* Process format specifiers. */
1259 JUMP (spec
, step4_jumps
);
1261 process_arg ((&specs
[nspecs_done
]));
1263 LABEL (form_unknown
):
1265 extern printf_function
**__printf_function_table
;
1267 printf_function
*function
;
1272 (__printf_function_table
== NULL
? NULL
:
1273 __printf_function_table
[specs
[nspecs_done
].info
.spec
]);
1275 if (function
== NULL
)
1276 function
= &printf_unknown
;
1278 ptr
= alloca (specs
[nspecs_done
].ndata_args
1279 * sizeof (const void *));
1281 /* Fill in an array of pointers to the argument values. */
1282 for (i
= 0; i
< specs
[nspecs_done
].ndata_args
; ++i
)
1283 ptr
[i
] = &args_value
[specs
[nspecs_done
].data_arg
+ i
];
1285 /* Call the function. */
1286 function_done
= (*function
) (s
, &specs
[nspecs_done
].info
, ptr
);
1288 /* If an error occured we don't have information about #
1290 if (function_done
< 0)
1296 done
+= function_done
;
1301 /* Write the following constant string. */
1302 outstring (specs
[nspecs_done
].end_of_fmt
,
1303 specs
[nspecs_done
].next_fmt
1304 - specs
[nspecs_done
].end_of_fmt
);
1308 /* Unlock the stream. */
1316 # ifdef strong_alias
1317 /* This is for glibc. */
1318 strong_alias (_IO_vfprintf
, vfprintf
);
1320 # if defined __ELF__ || defined __GNU_LIBRARY__
1321 # include <gnu-stabs.h>
1323 weak_alias (_IO_vfprintf
, vfprintf
);
1329 /* Handle an unknown format specifier. This prints out a canonicalized
1330 representation of the format spec itself. */
1332 printf_unknown (FILE *s
, const struct printf_info
*info
,
1333 const void *const *args
)
1337 char work_buffer
[BUFSIZ
];
1348 else if (info
->space
)
1352 if (info
->pad
== '0')
1355 if (info
->width
!= 0)
1357 w
= _itoa_word (info
->width
, workend
+ 1, 10, 0);
1358 while (++w
<= workend
)
1362 if (info
->prec
!= -1)
1365 w
= _itoa_word (info
->prec
, workend
+ 1, 10, 0);
1366 while (++w
<= workend
)
1370 if (info
->spec
!= '\0')
1371 outchar (info
->spec
);
1376 /* Group the digits according to the grouping rules of the current locale.
1377 The interpretation of GROUPING is as in `struct lconv' from <locale.h>. */
1379 group_number (CHAR_T
*w
, CHAR_T
*rear_ptr
, const CHAR_T
*grouping
,
1380 wchar_t thousands_sep
)
1385 /* We treat all negative values like CHAR_MAX. */
1387 if (*grouping
== CHAR_MAX
|| *grouping
< 0)
1388 /* No grouping should be done. */
1393 /* Copy existing string so that nothing gets overwritten. */
1394 src
= (char *) alloca (rear_ptr
- w
);
1395 memcpy (src
, w
+ 1, rear_ptr
- w
);
1396 s
= &src
[rear_ptr
- w
- 1];
1399 /* Process all characters in the string. */
1404 if (--len
== 0 && s
>= src
)
1406 /* A new group begins. */
1407 *w
-- = thousands_sep
;
1410 if (*grouping
== '\0')
1411 /* The previous grouping repeats ad infinitum. */
1413 else if (*grouping
== CHAR_MAX
|| *grouping
< 0)
1415 /* No further grouping to be done.
1416 Copy the rest of the number. */
1428 /* Helper "class" for `fprintf to unbuffered': creates a temporary buffer. */
1431 struct _IO_FILE_plus _f
;
1432 _IO_FILE
*_put_stream
;
1436 _IO_helper_overflow (_IO_FILE
*s
, int c
)
1438 _IO_FILE
*target
= ((struct helper_file
*) s
)->_put_stream
;
1439 int used
= s
->_IO_write_ptr
- s
->_IO_write_base
;
1442 _IO_size_t written
= _IO_sputn (target
, s
->_IO_write_base
, used
);
1443 s
->_IO_write_ptr
-= written
;
1448 static const struct _IO_jump_t _IO_helper_jumps
=
1451 JUMP_INIT (finish
, _IO_default_finish
),
1452 JUMP_INIT (overflow
, _IO_helper_overflow
),
1453 JUMP_INIT (underflow
, _IO_default_underflow
),
1454 JUMP_INIT (uflow
, _IO_default_uflow
),
1455 JUMP_INIT (pbackfail
, _IO_default_pbackfail
),
1456 JUMP_INIT (xsputn
, _IO_default_xsputn
),
1457 JUMP_INIT (xsgetn
, _IO_default_xsgetn
),
1458 JUMP_INIT (seekoff
, _IO_default_seekoff
),
1459 JUMP_INIT (seekpos
, _IO_default_seekpos
),
1460 JUMP_INIT (setbuf
, _IO_default_setbuf
),
1461 JUMP_INIT (sync
, _IO_default_sync
),
1462 JUMP_INIT (doallocate
, _IO_default_doallocate
),
1463 JUMP_INIT (read
, _IO_default_read
),
1464 JUMP_INIT (write
, _IO_default_write
),
1465 JUMP_INIT (seek
, _IO_default_seek
),
1466 JUMP_INIT (close
, _IO_default_close
),
1467 JUMP_INIT (stat
, _IO_default_stat
)
1471 buffered_vfprintf (register _IO_FILE
*s
, const CHAR_T
*format
,
1474 char buf
[_IO_BUFSIZ
];
1475 struct helper_file helper
;
1476 register _IO_FILE
*hp
= (_IO_FILE
*) &helper
;
1477 int result
, to_flush
;
1479 /* Initialize helper. */
1480 helper
._put_stream
= s
;
1481 hp
->_IO_write_base
= buf
;
1482 hp
->_IO_write_ptr
= buf
;
1483 hp
->_IO_write_end
= buf
+ sizeof buf
;
1484 hp
->_IO_file_flags
= _IO_MAGIC
|_IO_NO_READS
;
1485 _IO_JUMPS (hp
) = (struct _IO_jump_t
*) &_IO_helper_jumps
;
1487 /* Now print to helper instead. */
1488 result
= _IO_vfprintf (hp
, format
, args
);
1490 /* Now flush anything from the helper to the S. */
1491 if ((to_flush
= hp
->_IO_write_ptr
- hp
->_IO_write_base
) > 0)
1493 if (_IO_sputn (s
, hp
->_IO_write_base
, to_flush
) != to_flush
)
1500 #else /* !USE_IN_LIBIO */
1503 buffered_vfprintf (register FILE *s
, const CHAR_T
*format
, va_list args
)
1508 s
->__bufp
= s
->__buffer
= buf
;
1509 s
->__bufsize
= sizeof buf
;
1510 s
->__put_limit
= s
->__buffer
+ s
->__bufsize
;
1511 s
->__get_limit
= s
->__buffer
;
1513 /* Now use buffer to print. */
1514 result
= vfprintf (s
, format
, args
);
1516 if (fflush (s
) == EOF
)
1518 s
->__buffer
= s
->__bufp
= s
->__get_limit
= s
->__put_limit
= NULL
;
1524 /* Pads string with given number of a specified character.
1525 This code is taken from iopadn.c of the GNU I/O library. */
1527 static const CHAR_T blanks
[PADSIZE
] =
1528 { L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '),
1529 L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' ') };
1530 static const CHAR_T zeroes
[PADSIZE
] =
1531 { L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'),
1532 L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0') };
1535 #ifndef COMPILE_WPRINTF
1536 __printf_pad (FILE *s
, char pad
, size_t count
)
1538 __wprintf_pad (FILE *s
, wchar_t pad
, size_t count
)
1541 const CHAR_T
*padptr
;
1544 padptr
= pad
== L_(' ') ? blanks
: zeroes
;
1546 for (i
= count
; i
>= PADSIZE
; i
-= PADSIZE
)
1547 if (PUT (s
, padptr
, PADSIZE
) != PADSIZE
)
1550 if (PUT (s
, padptr
, i
) != i
)
1556 #endif /* USE_IN_LIBIO */