Update.
[glibc.git] / stdio-common / vfprintf.c
blob4f9cd9b424edc55ac8645bf9feaa05bd17a190aa
1 /* Copyright (C) 1991-1999, 2000, 2001, 2002 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 Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <ctype.h>
20 #include <limits.h>
21 #include <printf.h>
22 #include <stdarg.h>
23 #include <stdint.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <errno.h>
27 #include <wchar.h>
28 #include <bits/libc-lock.h>
29 #include <sys/param.h>
30 #include "_itoa.h"
31 #include <locale/localeinfo.h>
32 #include <stdio.h>
34 /* This code is shared between the standard stdio implementation found
35 in GNU C library and the libio implementation originally found in
36 GNU libg++.
38 Beside this it is also shared between the normal and wide character
39 implementation as defined in ISO/IEC 9899:1990/Amendment 1:1995. */
42 #ifdef USE_IN_LIBIO
43 /* This code is for use in libio. */
44 # include <libioP.h>
45 # define FILE _IO_FILE
46 # undef va_list
47 # define va_list _IO_va_list
48 # undef BUFSIZ
49 # define BUFSIZ _IO_BUFSIZ
50 # define ARGCHECK(S, Format) \
51 do \
52 { \
53 /* Check file argument for consistence. */ \
54 CHECK_FILE (S, -1); \
55 if (S->_flags & _IO_NO_WRITES) \
56 { \
57 __set_errno (EBADF); \
58 return -1; \
59 } \
60 if (Format == NULL) \
61 { \
62 MAYBE_SET_EINVAL; \
63 return -1; \
64 } \
65 } while (0)
66 # define UNBUFFERED_P(S) ((S)->_IO_file_flags & _IO_UNBUFFERED)
68 # ifndef COMPILE_WPRINTF
69 # define vfprintf _IO_vfprintf
70 # define CHAR_T char
71 # define UCHAR_T unsigned char
72 # define INT_T int
73 # define L_(Str) Str
74 # define ISDIGIT(Ch) ((unsigned int) ((Ch) - '0') < 10)
76 # define PUT(F, S, N) _IO_sputn ((F), (S), (N))
77 # define PAD(Padchar) \
78 if (width > 0) \
79 done += INTUSE(_IO_padn) (s, (Padchar), width)
80 # define PUTC(C, F) _IO_putc_unlocked (C, F)
81 # define ORIENT if (s->_vtable_offset == 0 && _IO_fwide (s, -1) != -1)\
82 return -1
83 # else
84 # define vfprintf _IO_vfwprintf
85 # define CHAR_T wchar_t
86 /* This is a hack!!! There should be a type uwchar_t. */
87 # define UCHAR_T unsigned int /* uwchar_t */
88 # define INT_T wint_t
89 # define L_(Str) L##Str
90 # define ISDIGIT(Ch) ((unsigned int) ((Ch) - L'0') < 10)
92 # include "_itowa.h"
94 # define PUT(F, S, N) _IO_sputn ((F), (S), (N))
95 # define PAD(Padchar) \
96 if (width > 0) \
97 done += _IO_wpadn (s, (Padchar), width)
98 # define PUTC(C, F) _IO_putwc_unlocked (C, F)
99 # define ORIENT if (_IO_fwide (s, 1) != 1) return -1
101 # define _itoa(Val, Buf, Base, Case) _itowa (Val, Buf, Base, Case)
102 # define _itoa_word(Val, Buf, Base, Case) _itowa_word (Val, Buf, Base, Case)
103 # undef EOF
104 # define EOF WEOF
105 # endif
106 #else /* ! USE_IN_LIBIO */
107 /* This code is for use in the GNU C library. */
108 # define ARGCHECK(S, Format) \
109 do \
111 /* Check file argument for consistence. */ \
112 if (!__validfp (S) || !S->__mode.__write) \
114 __set_errno (EBADF); \
115 return -1; \
117 if (Format == NULL) \
119 __set_errno (EINVAL); \
120 return -1; \
122 if (!S->__seen) \
124 if (__flshfp (S, EOF) == EOF) \
125 return -1; \
128 while (0)
129 # define UNBUFFERED_P(s) ((s)->__buffer == NULL)
131 # define CHAR_T char
132 # define UCHAR_T unsigned char
133 # define INT_T int
134 # define L_(Str) Str
135 # define ISDIGIT(Ch) isdigit (Ch)
137 # define PUT(F, S, N) fwrite (S, 1, N, F)
138 ssize_t __printf_pad __P ((FILE *, char pad, size_t n));
139 # define PAD(Padchar) \
140 if (width > 0) \
141 { ssize_t __res = __printf_pad (s, (Padchar), width); \
142 if (__res == -1) \
144 done = -1; \
145 goto all_done; \
147 done += __res; }
148 # define PUTC(C, F) putc (C, F)
150 /* XXX These declarations should go as soon as the stdio header files
151 have these prototypes. */
152 extern void __flockfile (FILE *);
153 extern void __funlockfile (FILE *);
154 #endif /* USE_IN_LIBIO */
156 #include "_i18n_number.h"
158 /* Include the shared code for parsing the format string. */
159 #include "printf-parse.h"
162 #define outchar(Ch) \
163 do \
165 register const INT_T outc = (Ch); \
166 if (PUTC (outc, s) == EOF) \
168 done = -1; \
169 goto all_done; \
171 else \
172 ++done; \
174 while (0)
176 #define outstring(String, Len) \
177 do \
179 if ((size_t) PUT (s, (String), (Len)) != (size_t) (Len)) \
181 done = -1; \
182 goto all_done; \
184 done += (Len); \
186 while (0)
188 /* For handling long_double and longlong we use the same flag. If
189 `long' and `long long' are effectively the same type define it to
190 zero. */
191 #if LONG_MAX == LONG_LONG_MAX
192 # define is_longlong 0
193 #else
194 # define is_longlong is_long_double
195 #endif
197 /* If `long' and `int' is effectively the same type we don't have to
198 handle `long separately. */
199 #if INT_MAX == LONG_MAX
200 # define is_long_num 0
201 #else
202 # define is_long_num is_long
203 #endif
206 /* Global variables. */
207 static const CHAR_T null[] = L_("(null)");
210 /* Helper function to provide temporary buffering for unbuffered streams. */
211 static int buffered_vfprintf __P ((FILE *stream, const CHAR_T *fmt, va_list))
212 internal_function;
214 /* Handle unknown format specifier. */
215 static int printf_unknown __P ((FILE *, const struct printf_info *,
216 const void *const *));
218 /* Group digits of number string. */
219 #ifdef COMPILE_WPRINTF
220 static CHAR_T *group_number __P ((CHAR_T *, CHAR_T *, const char *, wchar_t))
221 internal_function;
222 #else
223 static CHAR_T *group_number __P ((CHAR_T *, CHAR_T *, const char *,
224 const char *)) internal_function;
225 #endif
228 /* The function itself. */
230 vfprintf (FILE *s, const CHAR_T *format, va_list ap)
232 /* The character used as thousands separator. */
233 #ifdef COMPILE_WPRINTF
234 wchar_t thousands_sep = L'\0';
235 #else
236 const char *thousands_sep = NULL;
237 #endif
239 /* The string describing the size of groups of digits. */
240 const char *grouping;
242 /* Place to accumulate the result. */
243 int done;
245 /* Current character in format string. */
246 const UCHAR_T *f;
248 /* End of leading constant string. */
249 const UCHAR_T *lead_str_end;
251 /* Points to next format specifier. */
252 const UCHAR_T *end_of_spec;
254 /* Buffer intermediate results. */
255 CHAR_T work_buffer[1000];
256 CHAR_T *workstart = NULL;
257 CHAR_T *workend;
259 /* State for restartable multibyte character handling functions. */
260 #ifndef COMPILE_WPRINTF
261 mbstate_t mbstate;
262 #endif
264 /* We have to save the original argument pointer. */
265 va_list ap_save;
267 /* Count number of specifiers we already processed. */
268 int nspecs_done;
270 /* For the %m format we may need the current `errno' value. */
271 int save_errno = errno;
274 /* This table maps a character into a number representing a
275 class. In each step there is a destination label for each
276 class. */
277 static const int jump_table[] =
279 /* ' ' */ 1, 0, 0, /* '#' */ 4,
280 0, /* '%' */ 14, 0, /* '\''*/ 6,
281 0, 0, /* '*' */ 7, /* '+' */ 2,
282 0, /* '-' */ 3, /* '.' */ 9, 0,
283 /* '0' */ 5, /* '1' */ 8, /* '2' */ 8, /* '3' */ 8,
284 /* '4' */ 8, /* '5' */ 8, /* '6' */ 8, /* '7' */ 8,
285 /* '8' */ 8, /* '9' */ 8, 0, 0,
286 0, 0, 0, 0,
287 0, /* 'A' */ 26, 0, /* 'C' */ 25,
288 0, /* 'E' */ 19, /* F */ 19, /* 'G' */ 19,
289 0, /* 'I' */ 29, 0, 0,
290 /* 'L' */ 12, 0, 0, 0,
291 0, 0, 0, /* 'S' */ 21,
292 0, 0, 0, 0,
293 /* 'X' */ 18, 0, /* 'Z' */ 13, 0,
294 0, 0, 0, 0,
295 0, /* 'a' */ 26, 0, /* 'c' */ 20,
296 /* 'd' */ 15, /* 'e' */ 19, /* 'f' */ 19, /* 'g' */ 19,
297 /* 'h' */ 10, /* 'i' */ 15, /* 'j' */ 28, 0,
298 /* 'l' */ 11, /* 'm' */ 24, /* 'n' */ 23, /* 'o' */ 17,
299 /* 'p' */ 22, /* 'q' */ 12, 0, /* 's' */ 21,
300 /* 't' */ 27, /* 'u' */ 16, 0, 0,
301 /* 'x' */ 18, 0, /* 'z' */ 13
304 #define NOT_IN_JUMP_RANGE(Ch) ((Ch) < L_(' ') || (Ch) > L_('z'))
305 #define CHAR_CLASS(Ch) (jump_table[(INT_T) (Ch) - L_(' ')])
306 #if defined HAVE_SUBTRACT_LOCAL_LABELS && defined SHARED
307 /* 'int' is enough and it saves some space on 64 bit systems. */
308 # define JUMP_TABLE_TYPE const int
309 # define JUMP(ChExpr, table) \
310 do \
312 int offset; \
313 void *__unbounded ptr; \
314 spec = (ChExpr); \
315 offset = NOT_IN_JUMP_RANGE (spec) ? REF (form_unknown) \
316 : table[CHAR_CLASS (spec)]; \
317 ptr = &&do_form_unknown + offset; \
318 goto *ptr; \
320 while (0)
321 #else
322 # define JUMP_TABLE_TYPE const void *const
323 # define JUMP(ChExpr, table) \
324 do \
326 const void *__unbounded ptr; \
327 spec = (ChExpr); \
328 ptr = NOT_IN_JUMP_RANGE (spec) ? REF (form_unknown) \
329 : table[CHAR_CLASS (spec)]; \
330 goto *ptr; \
332 while (0)
333 #endif
335 #define STEP0_3_TABLE \
336 /* Step 0: at the beginning. */ \
337 static JUMP_TABLE_TYPE step0_jumps[30] = \
339 REF (form_unknown), \
340 REF (flag_space), /* for ' ' */ \
341 REF (flag_plus), /* for '+' */ \
342 REF (flag_minus), /* for '-' */ \
343 REF (flag_hash), /* for '<hash>' */ \
344 REF (flag_zero), /* for '0' */ \
345 REF (flag_quote), /* for '\'' */ \
346 REF (width_asterics), /* for '*' */ \
347 REF (width), /* for '1'...'9' */ \
348 REF (precision), /* for '.' */ \
349 REF (mod_half), /* for 'h' */ \
350 REF (mod_long), /* for 'l' */ \
351 REF (mod_longlong), /* for 'L', 'q' */ \
352 REF (mod_size_t), /* for 'z', 'Z' */ \
353 REF (form_percent), /* for '%' */ \
354 REF (form_integer), /* for 'd', 'i' */ \
355 REF (form_unsigned), /* for 'u' */ \
356 REF (form_octal), /* for 'o' */ \
357 REF (form_hexa), /* for 'X', 'x' */ \
358 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
359 REF (form_character), /* for 'c' */ \
360 REF (form_string), /* for 's', 'S' */ \
361 REF (form_pointer), /* for 'p' */ \
362 REF (form_number), /* for 'n' */ \
363 REF (form_strerror), /* for 'm' */ \
364 REF (form_wcharacter), /* for 'C' */ \
365 REF (form_floathex), /* for 'A', 'a' */ \
366 REF (mod_ptrdiff_t), /* for 't' */ \
367 REF (mod_intmax_t), /* for 'j' */ \
368 REF (flag_i18n), /* for 'I' */ \
369 }; \
370 /* Step 1: after processing width. */ \
371 static JUMP_TABLE_TYPE step1_jumps[30] = \
373 REF (form_unknown), \
374 REF (form_unknown), /* for ' ' */ \
375 REF (form_unknown), /* for '+' */ \
376 REF (form_unknown), /* for '-' */ \
377 REF (form_unknown), /* for '<hash>' */ \
378 REF (form_unknown), /* for '0' */ \
379 REF (form_unknown), /* for '\'' */ \
380 REF (form_unknown), /* for '*' */ \
381 REF (form_unknown), /* for '1'...'9' */ \
382 REF (precision), /* for '.' */ \
383 REF (mod_half), /* for 'h' */ \
384 REF (mod_long), /* for 'l' */ \
385 REF (mod_longlong), /* for 'L', 'q' */ \
386 REF (mod_size_t), /* for 'z', 'Z' */ \
387 REF (form_percent), /* for '%' */ \
388 REF (form_integer), /* for 'd', 'i' */ \
389 REF (form_unsigned), /* for 'u' */ \
390 REF (form_octal), /* for 'o' */ \
391 REF (form_hexa), /* for 'X', 'x' */ \
392 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
393 REF (form_character), /* for 'c' */ \
394 REF (form_string), /* for 's', 'S' */ \
395 REF (form_pointer), /* for 'p' */ \
396 REF (form_number), /* for 'n' */ \
397 REF (form_strerror), /* for 'm' */ \
398 REF (form_wcharacter), /* for 'C' */ \
399 REF (form_floathex), /* for 'A', 'a' */ \
400 REF (mod_ptrdiff_t), /* for 't' */ \
401 REF (mod_intmax_t), /* for 'j' */ \
402 REF (flag_i18n) /* for 'I' */ \
403 }; \
404 /* Step 2: after processing precision. */ \
405 static JUMP_TABLE_TYPE step2_jumps[30] = \
407 REF (form_unknown), \
408 REF (form_unknown), /* for ' ' */ \
409 REF (form_unknown), /* for '+' */ \
410 REF (form_unknown), /* for '-' */ \
411 REF (form_unknown), /* for '<hash>' */ \
412 REF (form_unknown), /* for '0' */ \
413 REF (form_unknown), /* for '\'' */ \
414 REF (form_unknown), /* for '*' */ \
415 REF (form_unknown), /* for '1'...'9' */ \
416 REF (form_unknown), /* for '.' */ \
417 REF (mod_half), /* for 'h' */ \
418 REF (mod_long), /* for 'l' */ \
419 REF (mod_longlong), /* for 'L', 'q' */ \
420 REF (mod_size_t), /* for 'z', 'Z' */ \
421 REF (form_percent), /* for '%' */ \
422 REF (form_integer), /* for 'd', 'i' */ \
423 REF (form_unsigned), /* for 'u' */ \
424 REF (form_octal), /* for 'o' */ \
425 REF (form_hexa), /* for 'X', 'x' */ \
426 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
427 REF (form_character), /* for 'c' */ \
428 REF (form_string), /* for 's', 'S' */ \
429 REF (form_pointer), /* for 'p' */ \
430 REF (form_number), /* for 'n' */ \
431 REF (form_strerror), /* for 'm' */ \
432 REF (form_wcharacter), /* for 'C' */ \
433 REF (form_floathex), /* for 'A', 'a' */ \
434 REF (mod_ptrdiff_t), /* for 't' */ \
435 REF (mod_intmax_t), /* for 'j' */ \
436 REF (flag_i18n) /* for 'I' */ \
437 }; \
438 /* Step 3a: after processing first 'h' modifier. */ \
439 static JUMP_TABLE_TYPE step3a_jumps[30] = \
441 REF (form_unknown), \
442 REF (form_unknown), /* for ' ' */ \
443 REF (form_unknown), /* for '+' */ \
444 REF (form_unknown), /* for '-' */ \
445 REF (form_unknown), /* for '<hash>' */ \
446 REF (form_unknown), /* for '0' */ \
447 REF (form_unknown), /* for '\'' */ \
448 REF (form_unknown), /* for '*' */ \
449 REF (form_unknown), /* for '1'...'9' */ \
450 REF (form_unknown), /* for '.' */ \
451 REF (mod_halfhalf), /* for 'h' */ \
452 REF (form_unknown), /* for 'l' */ \
453 REF (form_unknown), /* for 'L', 'q' */ \
454 REF (form_unknown), /* for 'z', 'Z' */ \
455 REF (form_percent), /* for '%' */ \
456 REF (form_integer), /* for 'd', 'i' */ \
457 REF (form_unsigned), /* for 'u' */ \
458 REF (form_octal), /* for 'o' */ \
459 REF (form_hexa), /* for 'X', 'x' */ \
460 REF (form_unknown), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
461 REF (form_unknown), /* for 'c' */ \
462 REF (form_unknown), /* for 's', 'S' */ \
463 REF (form_unknown), /* for 'p' */ \
464 REF (form_number), /* for 'n' */ \
465 REF (form_unknown), /* for 'm' */ \
466 REF (form_unknown), /* for 'C' */ \
467 REF (form_unknown), /* for 'A', 'a' */ \
468 REF (form_unknown), /* for 't' */ \
469 REF (form_unknown), /* for 'j' */ \
470 REF (form_unknown) /* for 'I' */ \
471 }; \
472 /* Step 3b: after processing first 'l' modifier. */ \
473 static JUMP_TABLE_TYPE step3b_jumps[30] = \
475 REF (form_unknown), \
476 REF (form_unknown), /* for ' ' */ \
477 REF (form_unknown), /* for '+' */ \
478 REF (form_unknown), /* for '-' */ \
479 REF (form_unknown), /* for '<hash>' */ \
480 REF (form_unknown), /* for '0' */ \
481 REF (form_unknown), /* for '\'' */ \
482 REF (form_unknown), /* for '*' */ \
483 REF (form_unknown), /* for '1'...'9' */ \
484 REF (form_unknown), /* for '.' */ \
485 REF (form_unknown), /* for 'h' */ \
486 REF (mod_longlong), /* for 'l' */ \
487 REF (form_unknown), /* for 'L', 'q' */ \
488 REF (form_unknown), /* for 'z', 'Z' */ \
489 REF (form_percent), /* for '%' */ \
490 REF (form_integer), /* for 'd', 'i' */ \
491 REF (form_unsigned), /* for 'u' */ \
492 REF (form_octal), /* for 'o' */ \
493 REF (form_hexa), /* for 'X', 'x' */ \
494 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
495 REF (form_character), /* for 'c' */ \
496 REF (form_string), /* for 's', 'S' */ \
497 REF (form_pointer), /* for 'p' */ \
498 REF (form_number), /* for 'n' */ \
499 REF (form_strerror), /* for 'm' */ \
500 REF (form_wcharacter), /* for 'C' */ \
501 REF (form_floathex), /* for 'A', 'a' */ \
502 REF (form_unknown), /* for 't' */ \
503 REF (form_unknown), /* for 'j' */ \
504 REF (form_unknown) /* for 'I' */ \
507 #define STEP4_TABLE \
508 /* Step 4: processing format specifier. */ \
509 static JUMP_TABLE_TYPE step4_jumps[30] = \
511 REF (form_unknown), \
512 REF (form_unknown), /* for ' ' */ \
513 REF (form_unknown), /* for '+' */ \
514 REF (form_unknown), /* for '-' */ \
515 REF (form_unknown), /* for '<hash>' */ \
516 REF (form_unknown), /* for '0' */ \
517 REF (form_unknown), /* for '\'' */ \
518 REF (form_unknown), /* for '*' */ \
519 REF (form_unknown), /* for '1'...'9' */ \
520 REF (form_unknown), /* for '.' */ \
521 REF (form_unknown), /* for 'h' */ \
522 REF (form_unknown), /* for 'l' */ \
523 REF (form_unknown), /* for 'L', 'q' */ \
524 REF (form_unknown), /* for 'z', 'Z' */ \
525 REF (form_percent), /* for '%' */ \
526 REF (form_integer), /* for 'd', 'i' */ \
527 REF (form_unsigned), /* for 'u' */ \
528 REF (form_octal), /* for 'o' */ \
529 REF (form_hexa), /* for 'X', 'x' */ \
530 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
531 REF (form_character), /* for 'c' */ \
532 REF (form_string), /* for 's', 'S' */ \
533 REF (form_pointer), /* for 'p' */ \
534 REF (form_number), /* for 'n' */ \
535 REF (form_strerror), /* for 'm' */ \
536 REF (form_wcharacter), /* for 'C' */ \
537 REF (form_floathex), /* for 'A', 'a' */ \
538 REF (form_unknown), /* for 't' */ \
539 REF (form_unknown), /* for 'j' */ \
540 REF (form_unknown) /* for 'I' */ \
544 #define process_arg(fspec) \
545 /* Start real work. We know about all flags and modifiers and \
546 now process the wanted format specifier. */ \
547 LABEL (form_percent): \
548 /* Write a literal "%". */ \
549 outchar (L_('%')); \
550 break; \
552 LABEL (form_integer): \
553 /* Signed decimal integer. */ \
554 base = 10; \
556 if (is_longlong) \
558 long long int signed_number; \
560 if (fspec == NULL) \
561 signed_number = va_arg (ap, long long int); \
562 else \
563 signed_number = args_value[fspec->data_arg].pa_long_long_int; \
565 is_negative = signed_number < 0; \
566 number.longlong = is_negative ? (- signed_number) : signed_number; \
568 goto LABEL (longlong_number); \
570 else \
572 long int signed_number; \
574 if (fspec == NULL) \
576 if (is_long_num) \
577 signed_number = va_arg (ap, long int); \
578 else /* `char' and `short int' will be promoted to `int'. */ \
579 signed_number = va_arg (ap, int); \
581 else \
582 if (is_long_num) \
583 signed_number = args_value[fspec->data_arg].pa_long_int; \
584 else if (!is_short) \
585 signed_number = args_value[fspec->data_arg].pa_int; \
586 else \
587 signed_number = args_value[fspec->data_arg].pa_short_int; \
589 is_negative = signed_number < 0; \
590 number.word = is_negative ? (- signed_number) : signed_number; \
592 goto LABEL (number); \
594 /* NOTREACHED */ \
596 LABEL (form_unsigned): \
597 /* Unsigned decimal integer. */ \
598 base = 10; \
599 goto LABEL (unsigned_number); \
600 /* NOTREACHED */ \
602 LABEL (form_octal): \
603 /* Unsigned octal integer. */ \
604 base = 8; \
605 goto LABEL (unsigned_number); \
606 /* NOTREACHED */ \
608 LABEL (form_hexa): \
609 /* Unsigned hexadecimal integer. */ \
610 base = 16; \
612 LABEL (unsigned_number): /* Unsigned number of base BASE. */ \
614 /* ISO specifies the `+' and ` ' flags only for signed \
615 conversions. */ \
616 is_negative = 0; \
617 showsign = 0; \
618 space = 0; \
620 if (is_longlong) \
622 if (fspec == NULL) \
623 number.longlong = va_arg (ap, unsigned long long int); \
624 else \
625 number.longlong = args_value[fspec->data_arg].pa_u_long_long_int; \
627 LABEL (longlong_number): \
628 if (prec < 0) \
629 /* Supply a default precision if none was given. */ \
630 prec = 1; \
631 else \
632 /* We have to take care for the '0' flag. If a precision \
633 is given it must be ignored. */ \
634 pad = L_(' '); \
636 /* If the precision is 0 and the number is 0 nothing has to \
637 be written for the number, except for the 'o' format in \
638 alternate form. */ \
639 if (prec == 0 && number.longlong == 0) \
641 string = workend; \
642 if (base == 8 && alt) \
643 *--string = L_('0'); \
645 else \
647 /* Put the number in WORK. */ \
648 string = _itoa (number.longlong, workend, base, \
649 spec == L_('X')); \
650 if (group && grouping) \
651 string = group_number (string, workend, grouping, \
652 thousands_sep); \
654 if (use_outdigits && base == 10) \
655 string = _i18n_number_rewrite (string, workend); \
657 /* Simplify further test for num != 0. */ \
658 number.word = number.longlong != 0; \
660 else \
662 if (fspec == NULL) \
664 if (is_long_num) \
665 number.word = va_arg (ap, unsigned long int); \
666 else if (is_char) \
667 number.word = (unsigned char) va_arg (ap, unsigned int); \
668 else if (!is_short) \
669 number.word = va_arg (ap, unsigned int); \
670 else \
671 number.word = (unsigned short int) va_arg (ap, unsigned int); \
673 else \
674 if (is_long_num) \
675 number.word = args_value[fspec->data_arg].pa_u_long_int; \
676 else if (is_char) \
677 number.word = (unsigned char) \
678 args_value[fspec->data_arg].pa_char; \
679 else if (!is_short) \
680 number.word = args_value[fspec->data_arg].pa_u_int; \
681 else \
682 number.word = (unsigned short int) \
683 args_value[fspec->data_arg].pa_u_short_int; \
685 LABEL (number): \
686 if (prec < 0) \
687 /* Supply a default precision if none was given. */ \
688 prec = 1; \
689 else \
690 /* We have to take care for the '0' flag. If a precision \
691 is given it must be ignored. */ \
692 pad = L_(' '); \
694 /* If the precision is 0 and the number is 0 nothing has to \
695 be written for the number, except for the 'o' format in \
696 alternate form. */ \
697 if (prec == 0 && number.word == 0) \
699 string = workend; \
700 if (base == 8 && alt) \
701 *--string = L_('0'); \
703 else \
705 /* Put the number in WORK. */ \
706 string = _itoa_word (number.word, workend, base, \
707 spec == L_('X')); \
708 if (group && grouping) \
709 string = group_number (string, workend, grouping, \
710 thousands_sep); \
712 if (use_outdigits && base == 10) \
713 string = _i18n_number_rewrite (string, workend); \
717 if (prec <= workend - string && number.word != 0 && alt && base == 8) \
718 /* Add octal marker. */ \
719 *--string = L_('0'); \
721 prec = MAX (0, prec - (workend - string)); \
723 if (!left) \
725 width -= workend - string + prec; \
727 if (number.word != 0 && alt && base == 16) \
728 /* Account for 0X hex marker. */ \
729 width -= 2; \
731 if (is_negative || showsign || space) \
732 --width; \
734 if (pad == L_(' ')) \
736 PAD (L_(' ')); \
737 width = 0; \
740 if (is_negative) \
741 outchar (L_('-')); \
742 else if (showsign) \
743 outchar (L_('+')); \
744 else if (space) \
745 outchar (L_(' ')); \
747 if (number.word != 0 && alt && base == 16) \
749 outchar (L_('0')); \
750 outchar (spec); \
753 width += prec; \
754 PAD (L_('0')); \
756 outstring (string, workend - string); \
758 break; \
760 else \
762 if (is_negative) \
764 outchar (L_('-')); \
765 --width; \
767 else if (showsign) \
769 outchar (L_('+')); \
770 --width; \
772 else if (space) \
774 outchar (L_(' ')); \
775 --width; \
778 if (number.word != 0 && alt && base == 16) \
780 outchar (L_('0')); \
781 outchar (spec); \
782 width -= 2; \
785 width -= workend - string + prec; \
787 if (prec > 0) \
789 int temp = width; \
790 width = prec; \
791 PAD (L_('0'));; \
792 width = temp; \
795 outstring (string, workend - string); \
797 PAD (L_(' ')); \
798 break; \
801 LABEL (form_float): \
803 /* Floating-point number. This is handled by printf_fp.c. */ \
804 const void *ptr; \
805 int function_done; \
807 if (fspec == NULL) \
809 struct printf_info info = { prec: prec, \
810 width: width, \
811 spec: spec, \
812 is_long_double: is_long_double, \
813 is_short: is_short, \
814 is_long: is_long, \
815 alt: alt, \
816 space: space, \
817 left: left, \
818 showsign: showsign, \
819 group: group, \
820 pad: pad, \
821 extra: 0, \
822 wide: sizeof (CHAR_T) != 1 }; \
824 if (is_long_double) \
825 the_arg.pa_long_double = va_arg (ap, long double); \
826 else \
827 the_arg.pa_double = va_arg (ap, double); \
828 ptr = (const void *) &the_arg; \
830 function_done = __printf_fp (s, &info, &ptr); \
832 else \
834 ptr = (const void *) &args_value[fspec->data_arg]; \
836 function_done = __printf_fp (s, &fspec->info, &ptr); \
839 if (function_done < 0) \
841 /* Error in print handler. */ \
842 done = -1; \
843 goto all_done; \
846 done += function_done; \
848 break; \
850 LABEL (form_floathex): \
852 /* Floating point number printed as hexadecimal number. */ \
853 const void *ptr; \
854 int function_done; \
856 if (fspec == NULL) \
858 struct printf_info info = { prec: prec, \
859 width: width, \
860 spec: spec, \
861 is_long_double: is_long_double, \
862 is_short: is_short, \
863 is_long: is_long, \
864 alt: alt, \
865 space: space, \
866 left: left, \
867 showsign: showsign, \
868 group: group, \
869 pad: pad, \
870 extra: 0, \
871 wide: sizeof (CHAR_T) != 1 }; \
873 if (is_long_double) \
874 the_arg.pa_long_double = va_arg (ap, long double); \
875 else \
876 the_arg.pa_double = va_arg (ap, double); \
877 ptr = (const void *) &the_arg; \
879 function_done = __printf_fphex (s, &info, &ptr); \
881 else \
883 ptr = (const void *) &args_value[fspec->data_arg]; \
885 function_done = __printf_fphex (s, &fspec->info, &ptr); \
888 if (function_done < 0) \
890 /* Error in print handler. */ \
891 done = -1; \
892 goto all_done; \
895 done += function_done; \
897 break; \
899 LABEL (form_pointer): \
900 /* Generic pointer. */ \
902 const void *ptr; \
903 if (fspec == NULL) \
904 ptr = va_arg (ap, void *); \
905 else \
906 ptr = args_value[fspec->data_arg].pa_pointer; \
907 if (ptr != NULL) \
909 /* If the pointer is not NULL, write it as a %#x spec. */ \
910 base = 16; \
911 number.word = (unsigned long int) ptr; \
912 is_negative = 0; \
913 alt = 1; \
914 group = 0; \
915 spec = L_('x'); \
916 goto LABEL (number); \
918 else \
920 /* Write "(nil)" for a nil pointer. */ \
921 string = (CHAR_T *) L_("(nil)"); \
922 /* Make sure the full string "(nil)" is printed. */ \
923 if (prec < 5) \
924 prec = 5; \
925 is_long = 0; /* This is no wide-char string. */ \
926 goto LABEL (print_string); \
929 /* NOTREACHED */ \
931 LABEL (form_number): \
932 /* Answer the count of characters written. */ \
933 if (fspec == NULL) \
935 if (is_longlong) \
936 *(long long int *) va_arg (ap, void *) = done; \
937 else if (is_long_num) \
938 *(long int *) va_arg (ap, void *) = done; \
939 else if (is_char) \
940 *(char *) va_arg (ap, void *) = done; \
941 else if (!is_short) \
942 *(int *) va_arg (ap, void *) = done; \
943 else \
944 *(short int *) va_arg (ap, void *) = done; \
946 else \
947 if (is_longlong) \
948 *(long long int *) args_value[fspec->data_arg].pa_pointer = done; \
949 else if (is_long_num) \
950 *(long int *) args_value[fspec->data_arg].pa_pointer = done; \
951 else if (is_char) \
952 *(char *) args_value[fspec->data_arg].pa_pointer = done; \
953 else if (!is_short) \
954 *(int *) args_value[fspec->data_arg].pa_pointer = done; \
955 else \
956 *(short int *) args_value[fspec->data_arg].pa_pointer = done; \
957 break; \
959 LABEL (form_strerror): \
960 /* Print description of error ERRNO. */ \
961 string = \
962 (CHAR_T *) __strerror_r (save_errno, (char *) work_buffer, \
963 sizeof work_buffer); \
964 is_long = 0; /* This is no wide-char string. */ \
965 goto LABEL (print_string)
967 #ifdef COMPILE_WPRINTF
968 # define process_string_arg(fspec) \
969 LABEL (form_character): \
970 /* Character. */ \
971 if (is_long) \
972 goto LABEL (form_wcharacter); \
973 --width; /* Account for the character itself. */ \
974 if (!left) \
975 PAD (L' '); \
976 if (fspec == NULL) \
977 outchar (__btowc ((unsigned char) va_arg (ap, int))); /* Promoted. */ \
978 else \
979 outchar (__btowc ((unsigned char) \
980 args_value[fspec->data_arg].pa_char)); \
981 if (left) \
982 PAD (L' '); \
983 break; \
985 LABEL (form_wcharacter): \
987 /* Wide character. */ \
988 --width; \
989 if (!left) \
990 PAD (L' '); \
991 if (fspec == NULL) \
992 outchar (va_arg (ap, wchar_t)); \
993 else \
994 outchar (args_value[fspec->data_arg].pa_wchar); \
995 if (left) \
996 PAD (L' '); \
998 break; \
1000 LABEL (form_string): \
1002 size_t len; \
1003 int string_malloced; \
1005 /* The string argument could in fact be `char *' or `wchar_t *'. \
1006 But this should not make a difference here. */ \
1007 if (fspec == NULL) \
1008 string = (CHAR_T *) va_arg (ap, const wchar_t *); \
1009 else \
1010 string = (CHAR_T *) args_value[fspec->data_arg].pa_wstring; \
1012 /* Entry point for printing other strings. */ \
1013 LABEL (print_string): \
1015 string_malloced = 0; \
1016 if (string == NULL) \
1018 /* Write "(null)" if there's space. */ \
1019 if (prec == -1 \
1020 || prec >= (int) (sizeof (null) / sizeof (null[0])) - 1) \
1022 string = (CHAR_T *) null; \
1023 len = (sizeof (null) / sizeof (null[0])) - 1; \
1025 else \
1027 string = (CHAR_T *) L""; \
1028 len = 0; \
1031 else if (!is_long && spec != L_('S')) \
1033 /* This is complicated. We have to transform the multibyte \
1034 string into a wide character string. */ \
1035 const char *mbs = (const char *) string; \
1036 mbstate_t mbstate; \
1038 len = prec != -1 ? (size_t) prec : strlen (mbs); \
1040 /* Allocate dynamically an array which definitely is long \
1041 enough for the wide character version. */ \
1042 if (__libc_use_alloca (len * sizeof (wchar_t))) \
1043 string = (CHAR_T *) alloca (len * sizeof (wchar_t)); \
1044 else if ((string = (CHAR_T *) malloc (len * sizeof (wchar_t))) \
1045 == NULL) \
1047 done = -1; \
1048 goto all_done; \
1050 else \
1051 string_malloced = 1; \
1053 memset (&mbstate, '\0', sizeof (mbstate_t)); \
1054 len = __mbsrtowcs (string, &mbs, len, &mbstate); \
1055 if (len == (size_t) -1) \
1057 /* Illegal multibyte character. */ \
1058 done = -1; \
1059 goto all_done; \
1062 else \
1064 if (prec != -1) \
1065 /* Search for the end of the string, but don't search past \
1066 the length specified by the precision. */ \
1067 len = __wcsnlen (string, prec); \
1068 else \
1069 len = __wcslen (string); \
1072 if ((width -= len) < 0) \
1074 outstring (string, len); \
1075 break; \
1078 if (!left) \
1079 PAD (L' '); \
1080 outstring (string, len); \
1081 if (left) \
1082 PAD (L' '); \
1083 if (__builtin_expect (string_malloced, 0)) \
1084 free (string); \
1086 break;
1087 #else
1088 # define process_string_arg(fspec) \
1089 LABEL (form_character): \
1090 /* Character. */ \
1091 if (is_long) \
1092 goto LABEL (form_wcharacter); \
1093 --width; /* Account for the character itself. */ \
1094 if (!left) \
1095 PAD (' '); \
1096 if (fspec == NULL) \
1097 outchar ((unsigned char) va_arg (ap, int)); /* Promoted. */ \
1098 else \
1099 outchar ((unsigned char) args_value[fspec->data_arg].pa_char); \
1100 if (left) \
1101 PAD (' '); \
1102 break; \
1104 LABEL (form_wcharacter): \
1106 /* Wide character. */ \
1107 char buf[MB_CUR_MAX]; \
1108 mbstate_t mbstate; \
1109 size_t len; \
1111 memset (&mbstate, '\0', sizeof (mbstate_t)); \
1112 len = __wcrtomb (buf, (fspec == NULL ? va_arg (ap, wchar_t) \
1113 : args_value[fspec->data_arg].pa_wchar), \
1114 &mbstate); \
1115 if (len == (size_t) -1) \
1117 /* Something went wron gduring the conversion. Bail out. */ \
1118 done = -1; \
1119 goto all_done; \
1121 width -= len; \
1122 if (!left) \
1123 PAD (' '); \
1124 outstring (buf, len); \
1125 if (left) \
1126 PAD (' '); \
1128 break; \
1130 LABEL (form_string): \
1132 size_t len; \
1133 int string_malloced; \
1135 /* The string argument could in fact be `char *' or `wchar_t *'. \
1136 But this should not make a difference here. */ \
1137 if (fspec == NULL) \
1138 string = (char *) va_arg (ap, const char *); \
1139 else \
1140 string = (char *) args_value[fspec->data_arg].pa_string; \
1142 /* Entry point for printing other strings. */ \
1143 LABEL (print_string): \
1145 string_malloced = 0; \
1146 if (string == NULL) \
1148 /* Write "(null)" if there's space. */ \
1149 if (prec == -1 || prec >= (int) sizeof (null) - 1) \
1151 string = (char *) null; \
1152 len = sizeof (null) - 1; \
1154 else \
1156 string = (char *) ""; \
1157 len = 0; \
1160 else if (!is_long && spec != L_('S')) \
1162 if (prec != -1) \
1164 /* Search for the end of the string, but don't search past \
1165 the length (in bytes) specified by the precision. Also \
1166 don't use incomplete characters. */ \
1167 if (_NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_MB_CUR_MAX) == 1) \
1168 len = __strnlen (string, prec); \
1169 else \
1171 /* In case we have a multibyte character set the \
1172 situation is more compilcated. We must not copy \
1173 bytes at the end which form an incomplete character. */\
1174 wchar_t ignore[prec]; \
1175 const char *str2 = string; \
1176 mbstate_t ps; \
1178 memset (&ps, '\0', sizeof (ps)); \
1179 if (__mbsnrtowcs (ignore, &str2, prec, prec, &ps) \
1180 == (size_t) -1) \
1182 done = -1; \
1183 goto all_done; \
1185 if (str2 == NULL) \
1186 len = strlen (string); \
1187 else \
1188 len = str2 - string - (ps.__count); \
1191 else \
1192 len = strlen (string); \
1194 else \
1196 const wchar_t *s2 = (const wchar_t *) string; \
1197 mbstate_t mbstate; \
1199 memset (&mbstate, '\0', sizeof (mbstate_t)); \
1201 if (prec >= 0) \
1203 /* The string `s2' might not be NUL terminated. */ \
1204 if (__libc_use_alloca (prec)) \
1205 string = (char *) alloca (prec); \
1206 else if ((string = (char *) malloc (prec)) == NULL) \
1208 done = -1; \
1209 goto all_done; \
1211 else \
1212 string_malloced = 1; \
1213 len = __wcsrtombs (string, &s2, prec, &mbstate); \
1215 else \
1217 len = __wcsrtombs (NULL, &s2, 0, &mbstate); \
1218 if (len != (size_t) -1) \
1220 assert (__mbsinit (&mbstate)); \
1221 s2 = (const wchar_t *) string; \
1222 if (__libc_use_alloca (len + 1)) \
1223 string = (char *) alloca (len + 1); \
1224 else if ((string = (char *) malloc (len + 1)) == NULL) \
1226 done = -1; \
1227 goto all_done; \
1229 else \
1230 string_malloced = 1; \
1231 (void) __wcsrtombs (string, &s2, len + 1, &mbstate); \
1235 if (len == (size_t) -1) \
1237 /* Illegal wide-character string. */ \
1238 done = -1; \
1239 goto all_done; \
1243 if ((width -= len) < 0) \
1245 outstring (string, len); \
1246 break; \
1249 if (!left) \
1250 PAD (' '); \
1251 outstring (string, len); \
1252 if (left) \
1253 PAD (' '); \
1254 if (__builtin_expect (string_malloced, 0)) \
1255 free (string); \
1257 break;
1258 #endif
1260 /* Orient the stream. */
1261 #ifdef ORIENT
1262 ORIENT;
1263 #endif
1265 /* Sanity check of arguments. */
1266 ARGCHECK (s, format);
1268 #ifdef ORIENT
1269 /* Check for correct orientation. */
1270 if (
1271 # ifdef USE_IN_LIBIO
1272 s->_vtable_offset == 0 &&
1273 # endif
1274 _IO_fwide (s, sizeof (CHAR_T) == 1 ? -1 : 1)
1275 != (sizeof (CHAR_T) == 1 ? -1 : 1))
1276 /* The stream is already oriented otherwise. */
1277 return EOF;
1278 #endif
1280 if (UNBUFFERED_P (s))
1281 /* Use a helper function which will allocate a local temporary buffer
1282 for the stream and then call us again. */
1283 return buffered_vfprintf (s, format, ap);
1285 /* Initialize local variables. */
1286 done = 0;
1287 grouping = (const char *) -1;
1288 #ifdef __va_copy
1289 /* This macro will be available soon in gcc's <stdarg.h>. We need it
1290 since on some systems `va_list' is not an integral type. */
1291 __va_copy (ap_save, ap);
1292 #else
1293 ap_save = ap;
1294 #endif
1295 nspecs_done = 0;
1297 #ifdef COMPILE_WPRINTF
1298 /* Find the first format specifier. */
1299 f = lead_str_end = find_spec ((const UCHAR_T *) format);
1300 #else
1301 /* Put state for processing format string in initial state. */
1302 memset (&mbstate, '\0', sizeof (mbstate_t));
1304 /* Find the first format specifier. */
1305 f = lead_str_end = find_spec (format, &mbstate);
1306 #endif
1308 /* Lock stream. */
1309 #ifdef USE_IN_LIBIO
1310 __libc_cleanup_region_start (1, (void (*) (void *)) &_IO_funlockfile, s);
1311 _IO_flockfile (s);
1312 #else
1313 __libc_cleanup_region_start (1, (void (*) (void *)) &__funlockfile, s);
1314 __flockfile (s);
1315 #endif
1317 /* Write the literal text before the first format. */
1318 outstring ((const UCHAR_T *) format,
1319 lead_str_end - (const UCHAR_T *) format);
1321 /* If we only have to print a simple string, return now. */
1322 if (*f == L_('\0'))
1323 goto all_done;
1325 /* Process whole format string. */
1328 #if defined HAVE_SUBTRACT_LOCAL_LABELS && defined SHARED
1329 # define REF(Name) &&do_##Name - &&do_form_unknown
1330 #else
1331 # define REF(Name) &&do_##Name
1332 #endif
1333 #define LABEL(Name) do_##Name
1334 STEP0_3_TABLE;
1335 STEP4_TABLE;
1337 union printf_arg *args_value; /* This is not used here but ... */
1338 int is_negative; /* Flag for negative number. */
1339 union
1341 unsigned long long int longlong;
1342 unsigned long int word;
1343 } number;
1344 int base;
1345 union printf_arg the_arg;
1346 CHAR_T *string; /* Pointer to argument string. */
1347 int alt = 0; /* Alternate format. */
1348 int space = 0; /* Use space prefix if no sign is needed. */
1349 int left = 0; /* Left-justify output. */
1350 int showsign = 0; /* Always begin with plus or minus sign. */
1351 int group = 0; /* Print numbers according grouping rules. */
1352 int is_long_double = 0; /* Argument is long double/ long long int. */
1353 int is_short = 0; /* Argument is short int. */
1354 int is_long = 0; /* Argument is long int. */
1355 int is_char = 0; /* Argument is promoted (unsigned) char. */
1356 int width = 0; /* Width of output; 0 means none specified. */
1357 int prec = -1; /* Precision of output; -1 means none specified. */
1358 /* This flag is set by the 'I' modifier and selects the use of the
1359 `outdigits' as determined by the current locale. */
1360 int use_outdigits = 0;
1361 UCHAR_T pad = L_(' ');/* Padding character. */
1362 CHAR_T spec;
1364 workstart = NULL;
1365 workend = &work_buffer[sizeof (work_buffer) / sizeof (CHAR_T)];
1367 /* Get current character in format string. */
1368 JUMP (*++f, step0_jumps);
1370 /* ' ' flag. */
1371 LABEL (flag_space):
1372 space = 1;
1373 JUMP (*++f, step0_jumps);
1375 /* '+' flag. */
1376 LABEL (flag_plus):
1377 showsign = 1;
1378 JUMP (*++f, step0_jumps);
1380 /* The '-' flag. */
1381 LABEL (flag_minus):
1382 left = 1;
1383 pad = L_(' ');
1384 JUMP (*++f, step0_jumps);
1386 /* The '#' flag. */
1387 LABEL (flag_hash):
1388 alt = 1;
1389 JUMP (*++f, step0_jumps);
1391 /* The '0' flag. */
1392 LABEL (flag_zero):
1393 if (!left)
1394 pad = L_('0');
1395 JUMP (*++f, step0_jumps);
1397 /* The '\'' flag. */
1398 LABEL (flag_quote):
1399 group = 1;
1401 if (grouping == (const char *) -1)
1403 #ifdef COMPILE_WPRINTF
1404 thousands_sep = _NL_CURRENT_WORD (LC_NUMERIC,
1405 _NL_NUMERIC_THOUSANDS_SEP_WC);
1406 #else
1407 thousands_sep = _NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP);
1408 #endif
1410 grouping = _NL_CURRENT (LC_NUMERIC, GROUPING);
1411 if (*grouping == '\0' || *grouping == CHAR_MAX
1412 #ifdef COMPILE_WPRINTF
1413 || thousands_sep == L'\0'
1414 #else
1415 || *thousands_sep == '\0'
1416 #endif
1418 grouping = NULL;
1420 JUMP (*++f, step0_jumps);
1422 LABEL (flag_i18n):
1423 use_outdigits = 1;
1424 JUMP (*++f, step0_jumps);
1426 /* Get width from argument. */
1427 LABEL (width_asterics):
1429 const UCHAR_T *tmp; /* Temporary value. */
1431 tmp = ++f;
1432 if (ISDIGIT (*tmp) && read_int (&tmp) && *tmp == L_('$'))
1433 /* The width comes from a positional parameter. */
1434 goto do_positional;
1436 width = va_arg (ap, int);
1438 /* Negative width means left justified. */
1439 if (width < 0)
1441 width = -width;
1442 pad = L_(' ');
1443 left = 1;
1446 if (width + 32 >= (int) (sizeof (work_buffer)
1447 / sizeof (work_buffer[0])))
1449 /* We have to use a special buffer. The "32" is just a safe
1450 bet for all the output which is not counted in the width. */
1451 if (__libc_use_alloca ((width + 32) * sizeof (CHAR_T)))
1452 workend = ((CHAR_T *) alloca ((width + 32) * sizeof (CHAR_T))
1453 + (width + 32));
1454 else
1456 workstart = (CHAR_T *) malloc ((width + 32) * sizeof (CHAR_T));
1457 if (workstart == NULL)
1459 done = -1;
1460 goto all_done;
1462 workend = workstart + (width + 32);
1466 JUMP (*f, step1_jumps);
1468 /* Given width in format string. */
1469 LABEL (width):
1470 width = read_int (&f);
1472 if (width + 32 >= (int) (sizeof (work_buffer) / sizeof (work_buffer[0])))
1474 /* We have to use a special buffer. The "32" is just a safe
1475 bet for all the output which is not counted in the width. */
1476 if (__libc_use_alloca ((width + 32) * sizeof (CHAR_T)))
1477 workend = ((CHAR_T *) alloca ((width + 32) * sizeof (CHAR_T))
1478 + (width + 32));
1479 else
1481 workstart = (CHAR_T *) malloc ((width + 32) * sizeof (CHAR_T));
1482 if (workstart == NULL)
1484 done = -1;
1485 goto all_done;
1487 workend = workstart + (width + 32);
1490 if (*f == L_('$'))
1491 /* Oh, oh. The argument comes from a positional parameter. */
1492 goto do_positional;
1493 JUMP (*f, step1_jumps);
1495 LABEL (precision):
1496 ++f;
1497 if (*f == L_('*'))
1499 const UCHAR_T *tmp; /* Temporary value. */
1501 tmp = ++f;
1502 if (ISDIGIT (*tmp) && read_int (&tmp) > 0 && *tmp == L_('$'))
1503 /* The precision comes from a positional parameter. */
1504 goto do_positional;
1506 prec = va_arg (ap, int);
1508 /* If the precision is negative the precision is omitted. */
1509 if (prec < 0)
1510 prec = -1;
1512 else if (ISDIGIT (*f))
1513 prec = read_int (&f);
1514 else
1515 prec = 0;
1516 if (prec > width
1517 && prec + 32 > (int)(sizeof (work_buffer) / sizeof (work_buffer[0])))
1519 if (__libc_use_alloca ((prec + 32) * sizeof (CHAR_T)))
1520 workend = ((CHAR_T *) alloca ((prec + 32) * sizeof (CHAR_T)))
1521 + (prec + 32);
1522 else
1524 workstart = (CHAR_T *) malloc ((prec + 32) * sizeof (CHAR_T));
1525 if (workstart == NULL)
1527 done = -1;
1528 goto all_done;
1530 workend = workstart + (prec + 32);
1533 JUMP (*f, step2_jumps);
1535 /* Process 'h' modifier. There might another 'h' following. */
1536 LABEL (mod_half):
1537 is_short = 1;
1538 JUMP (*++f, step3a_jumps);
1540 /* Process 'hh' modifier. */
1541 LABEL (mod_halfhalf):
1542 is_short = 0;
1543 is_char = 1;
1544 JUMP (*++f, step4_jumps);
1546 /* Process 'l' modifier. There might another 'l' following. */
1547 LABEL (mod_long):
1548 is_long = 1;
1549 JUMP (*++f, step3b_jumps);
1551 /* Process 'L', 'q', or 'll' modifier. No other modifier is
1552 allowed to follow. */
1553 LABEL (mod_longlong):
1554 is_long_double = 1;
1555 is_long = 1;
1556 JUMP (*++f, step4_jumps);
1558 LABEL (mod_size_t):
1559 is_long_double = sizeof (size_t) > sizeof (unsigned long int);
1560 is_long = sizeof (size_t) > sizeof (unsigned int);
1561 JUMP (*++f, step4_jumps);
1563 LABEL (mod_ptrdiff_t):
1564 is_long_double = sizeof (ptrdiff_t) > sizeof (unsigned long int);
1565 is_long = sizeof (ptrdiff_t) > sizeof (unsigned int);
1566 JUMP (*++f, step4_jumps);
1568 LABEL (mod_intmax_t):
1569 is_long_double = sizeof (intmax_t) > sizeof (unsigned long int);
1570 is_long = sizeof (intmax_t) > sizeof (unsigned int);
1571 JUMP (*++f, step4_jumps);
1573 /* Process current format. */
1574 while (1)
1576 process_arg (((struct printf_spec *) NULL));
1577 process_string_arg (((struct printf_spec *) NULL));
1579 LABEL (form_unknown):
1580 if (spec == L_('\0'))
1582 /* The format string ended before the specifier is complete. */
1583 done = -1;
1584 goto all_done;
1587 /* If we are in the fast loop force entering the complicated
1588 one. */
1589 goto do_positional;
1592 /* The format is correctly handled. */
1593 ++nspecs_done;
1595 if (__builtin_expect (workstart != NULL, 0))
1596 free (workstart);
1597 workstart = NULL;
1599 /* Look for next format specifier. */
1600 #ifdef COMPILE_WPRINTF
1601 f = find_spec ((end_of_spec = ++f));
1602 #else
1603 f = find_spec ((end_of_spec = ++f), &mbstate);
1604 #endif
1606 /* Write the following constant string. */
1607 outstring (end_of_spec, f - end_of_spec);
1609 while (*f != L_('\0'));
1611 /* Unlock stream and return. */
1612 goto all_done;
1614 /* Here starts the more complex loop to handle positional parameters. */
1615 do_positional:
1617 /* Array with information about the needed arguments. This has to
1618 be dynamically extensible. */
1619 size_t nspecs = 0;
1620 size_t nspecs_max = 32; /* A more or less arbitrary start value. */
1621 struct printf_spec *specs
1622 = alloca (nspecs_max * sizeof (struct printf_spec));
1624 /* The number of arguments the format string requests. This will
1625 determine the size of the array needed to store the argument
1626 attributes. */
1627 size_t nargs = 0;
1628 int *args_type;
1629 union printf_arg *args_value = NULL;
1631 /* Positional parameters refer to arguments directly. This could
1632 also determine the maximum number of arguments. Track the
1633 maximum number. */
1634 size_t max_ref_arg = 0;
1636 /* Just a counter. */
1637 size_t cnt;
1640 if (grouping == (const char *) -1)
1642 #ifdef COMPILE_WPRINTF
1643 thousands_sep = _NL_CURRENT_WORD (LC_NUMERIC,
1644 _NL_NUMERIC_THOUSANDS_SEP_WC);
1645 #else
1646 thousands_sep = _NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP);
1647 #endif
1649 grouping = _NL_CURRENT (LC_NUMERIC, GROUPING);
1650 if (*grouping == '\0' || *grouping == CHAR_MAX)
1651 grouping = NULL;
1654 for (f = lead_str_end; *f != L_('\0'); f = specs[nspecs++].next_fmt)
1656 if (nspecs >= nspecs_max)
1658 /* Extend the array of format specifiers. */
1659 struct printf_spec *old = specs;
1661 nspecs_max *= 2;
1662 specs = alloca (nspecs_max * sizeof (struct printf_spec));
1664 if (specs == &old[nspecs])
1665 /* Stack grows up, OLD was the last thing allocated;
1666 extend it. */
1667 nspecs_max += nspecs_max / 2;
1668 else
1670 /* Copy the old array's elements to the new space. */
1671 memcpy (specs, old, nspecs * sizeof (struct printf_spec));
1672 if (old == &specs[nspecs])
1673 /* Stack grows down, OLD was just below the new
1674 SPECS. We can use that space when the new space
1675 runs out. */
1676 nspecs_max += nspecs_max / 2;
1680 /* Parse the format specifier. */
1681 #ifdef COMPILE_WPRINTF
1682 nargs += parse_one_spec (f, nargs, &specs[nspecs], &max_ref_arg);
1683 #else
1684 nargs += parse_one_spec (f, nargs, &specs[nspecs], &max_ref_arg,
1685 &mbstate);
1686 #endif
1689 /* Determine the number of arguments the format string consumes. */
1690 nargs = MAX (nargs, max_ref_arg);
1692 /* Allocate memory for the argument descriptions. */
1693 args_type = alloca (nargs * sizeof (int));
1694 memset (args_type, 0, nargs * sizeof (int));
1695 args_value = alloca (nargs * sizeof (union printf_arg));
1697 /* XXX Could do sanity check here: If any element in ARGS_TYPE is
1698 still zero after this loop, format is invalid. For now we
1699 simply use 0 as the value. */
1701 /* Fill in the types of all the arguments. */
1702 for (cnt = 0; cnt < nspecs; ++cnt)
1704 /* If the width is determined by an argument this is an int. */
1705 if (specs[cnt].width_arg != -1)
1706 args_type[specs[cnt].width_arg] = PA_INT;
1708 /* If the precision is determined by an argument this is an int. */
1709 if (specs[cnt].prec_arg != -1)
1710 args_type[specs[cnt].prec_arg] = PA_INT;
1712 switch (specs[cnt].ndata_args)
1714 case 0: /* No arguments. */
1715 break;
1716 case 1: /* One argument; we already have the type. */
1717 args_type[specs[cnt].data_arg] = specs[cnt].data_arg_type;
1718 break;
1719 default:
1720 /* We have more than one argument for this format spec.
1721 We must call the arginfo function again to determine
1722 all the types. */
1723 (void) (*__printf_arginfo_table[specs[cnt].info.spec])
1724 (&specs[cnt].info,
1725 specs[cnt].ndata_args, &args_type[specs[cnt].data_arg]);
1726 break;
1730 /* Now we know all the types and the order. Fill in the argument
1731 values. */
1732 for (cnt = 0; cnt < nargs; ++cnt)
1733 switch (args_type[cnt])
1735 #define T(tag, mem, type) \
1736 case tag: \
1737 args_value[cnt].mem = va_arg (ap_save, type); \
1738 break
1740 T (PA_CHAR, pa_char, int); /* Promoted. */
1741 T (PA_WCHAR, pa_wchar, wint_t);
1742 T (PA_INT|PA_FLAG_SHORT, pa_short_int, int); /* Promoted. */
1743 T (PA_INT, pa_int, int);
1744 T (PA_INT|PA_FLAG_LONG, pa_long_int, long int);
1745 T (PA_INT|PA_FLAG_LONG_LONG, pa_long_long_int, long long int);
1746 T (PA_FLOAT, pa_float, double); /* Promoted. */
1747 T (PA_DOUBLE, pa_double, double);
1748 T (PA_DOUBLE|PA_FLAG_LONG_DOUBLE, pa_long_double, long double);
1749 T (PA_STRING, pa_string, const char *);
1750 T (PA_WSTRING, pa_wstring, const wchar_t *);
1751 T (PA_POINTER, pa_pointer, void *);
1752 #undef T
1753 default:
1754 if ((args_type[cnt] & PA_FLAG_PTR) != 0)
1755 args_value[cnt].pa_pointer = va_arg (ap_save, void *);
1756 else
1757 args_value[cnt].pa_long_double = 0.0;
1758 break;
1761 /* Now walk through all format specifiers and process them. */
1762 for (; (size_t) nspecs_done < nspecs; ++nspecs_done)
1764 #undef REF
1765 #if defined HAVE_SUBTRACT_LOCAL_LABELS && defined SHARED
1766 # define REF(Name) &&do2_##Name - &&do_form_unknown
1767 #else
1768 # define REF(Name) &&do2_##Name
1769 #endif
1770 #undef LABEL
1771 #define LABEL(Name) do2_##Name
1772 STEP4_TABLE;
1774 int is_negative;
1775 union
1777 unsigned long long int longlong;
1778 unsigned long int word;
1779 } number;
1780 int base;
1781 union printf_arg the_arg;
1782 CHAR_T *string; /* Pointer to argument string. */
1784 /* Fill variables from values in struct. */
1785 int alt = specs[nspecs_done].info.alt;
1786 int space = specs[nspecs_done].info.space;
1787 int left = specs[nspecs_done].info.left;
1788 int showsign = specs[nspecs_done].info.showsign;
1789 int group = specs[nspecs_done].info.group;
1790 int is_long_double = specs[nspecs_done].info.is_long_double;
1791 int is_short = specs[nspecs_done].info.is_short;
1792 int is_char = specs[nspecs_done].info.is_char;
1793 int is_long = specs[nspecs_done].info.is_long;
1794 int width = specs[nspecs_done].info.width;
1795 int prec = specs[nspecs_done].info.prec;
1796 int use_outdigits = specs[nspecs_done].info.i18n;
1797 char pad = specs[nspecs_done].info.pad;
1798 CHAR_T spec = specs[nspecs_done].info.spec;
1799 CHAR_T *workstart = NULL;
1801 /* Fill in last information. */
1802 if (specs[nspecs_done].width_arg != -1)
1804 /* Extract the field width from an argument. */
1805 specs[nspecs_done].info.width =
1806 args_value[specs[nspecs_done].width_arg].pa_int;
1808 if (specs[nspecs_done].info.width < 0)
1809 /* If the width value is negative left justification is
1810 selected and the value is taken as being positive. */
1812 specs[nspecs_done].info.width *= -1;
1813 left = specs[nspecs_done].info.left = 1;
1815 width = specs[nspecs_done].info.width;
1818 if (specs[nspecs_done].prec_arg != -1)
1820 /* Extract the precision from an argument. */
1821 specs[nspecs_done].info.prec =
1822 args_value[specs[nspecs_done].prec_arg].pa_int;
1824 if (specs[nspecs_done].info.prec < 0)
1825 /* If the precision is negative the precision is
1826 omitted. */
1827 specs[nspecs_done].info.prec = -1;
1829 prec = specs[nspecs_done].info.prec;
1832 /* Maybe the buffer is too small. */
1833 if (MAX (prec, width) + 32 > (int) (sizeof (work_buffer)
1834 / sizeof (CHAR_T)))
1836 if (__libc_use_alloca ((MAX (prec, width) + 32)
1837 * sizeof (CHAR_T)))
1838 workend = ((CHAR_T *) alloca ((MAX (prec, width) + 32)
1839 * sizeof (CHAR_T))
1840 + (MAX (prec, width) + 32));
1841 else
1843 workstart = (CHAR_T *) malloc ((MAX (prec, width) + 32)
1844 * sizeof (CHAR_T));
1845 workend = workstart + (MAX (prec, width) + 32);
1849 /* Process format specifiers. */
1850 while (1)
1852 JUMP (spec, step4_jumps);
1854 process_arg ((&specs[nspecs_done]));
1855 process_string_arg ((&specs[nspecs_done]));
1857 LABEL (form_unknown):
1859 extern printf_function **__printf_function_table;
1860 int function_done;
1861 printf_function *function;
1862 unsigned int i;
1863 const void **ptr;
1865 function =
1866 (__printf_function_table == NULL ? NULL :
1867 __printf_function_table[specs[nspecs_done].info.spec]);
1869 if (function == NULL)
1870 function = &printf_unknown;
1872 ptr = alloca (specs[nspecs_done].ndata_args
1873 * sizeof (const void *));
1875 /* Fill in an array of pointers to the argument values. */
1876 for (i = 0; i < specs[nspecs_done].ndata_args; ++i)
1877 ptr[i] = &args_value[specs[nspecs_done].data_arg + i];
1879 /* Call the function. */
1880 function_done = (*function) (s, &specs[nspecs_done].info, ptr);
1882 /* If an error occurred we don't have information about #
1883 of chars. */
1884 if (function_done < 0)
1886 done = -1;
1887 goto all_done;
1890 done += function_done;
1892 break;
1895 if (__builtin_expect (workstart != NULL, 0))
1896 free (workstart);
1897 workstart = NULL;
1899 /* Write the following constant string. */
1900 outstring (specs[nspecs_done].end_of_fmt,
1901 specs[nspecs_done].next_fmt
1902 - specs[nspecs_done].end_of_fmt);
1906 all_done:
1907 if (__builtin_expect (workstart != NULL, 0))
1908 free (workstart);
1909 /* Unlock the stream. */
1910 #ifdef USE_IN_LIBIO
1911 _IO_funlockfile (s);
1912 #else
1913 __funlockfile (s);
1914 #endif
1915 __libc_cleanup_region_end (0);
1917 return done;
1920 /* Handle an unknown format specifier. This prints out a canonicalized
1921 representation of the format spec itself. */
1922 static int
1923 printf_unknown (FILE *s, const struct printf_info *info,
1924 const void *const *args)
1927 int done = 0;
1928 CHAR_T work_buffer[MAX (info->width, info->spec) + 32];
1929 CHAR_T *const workend
1930 = &work_buffer[sizeof (work_buffer) / sizeof (CHAR_T)];
1931 register CHAR_T *w;
1933 outchar (L_('%'));
1935 if (info->alt)
1936 outchar (L_('#'));
1937 if (info->group)
1938 outchar (L_('\''));
1939 if (info->showsign)
1940 outchar (L_('+'));
1941 else if (info->space)
1942 outchar (L_(' '));
1943 if (info->left)
1944 outchar (L_('-'));
1945 if (info->pad == L_('0'))
1946 outchar (L_('0'));
1947 if (info->i18n)
1948 outchar (L_('I'));
1950 if (info->width != 0)
1952 w = _itoa_word (info->width, workend, 10, 0);
1953 while (w < workend)
1954 outchar (*w++);
1957 if (info->prec != -1)
1959 outchar (L_('.'));
1960 w = _itoa_word (info->prec, workend, 10, 0);
1961 while (w < workend)
1962 outchar (*w++);
1965 if (info->spec != L_('\0'))
1966 outchar (info->spec);
1968 all_done:
1969 return done;
1972 /* Group the digits according to the grouping rules of the current locale.
1973 The interpretation of GROUPING is as in `struct lconv' from <locale.h>. */
1974 static CHAR_T *
1975 internal_function
1976 group_number (CHAR_T *w, CHAR_T *rear_ptr, const char *grouping,
1977 #ifdef COMPILE_WPRINTF
1978 wchar_t thousands_sep
1979 #else
1980 const char *thousands_sep
1981 #endif
1984 int len;
1985 CHAR_T *src, *s;
1986 #ifndef COMPILE_WPRINTF
1987 int tlen = strlen (thousands_sep);
1988 #endif
1990 /* We treat all negative values like CHAR_MAX. */
1992 if (*grouping == CHAR_MAX || *grouping <= 0)
1993 /* No grouping should be done. */
1994 return w;
1996 len = *grouping;
1998 /* Copy existing string so that nothing gets overwritten. */
1999 src = (CHAR_T *) alloca ((rear_ptr - w) * sizeof (CHAR_T));
2000 s = (CHAR_T *) __mempcpy (src, w,
2001 (rear_ptr - w) * sizeof (CHAR_T));
2002 w = rear_ptr;
2004 /* Process all characters in the string. */
2005 while (s > src)
2007 *--w = *--s;
2009 if (--len == 0 && s > src)
2011 /* A new group begins. */
2012 #ifdef COMPILE_WPRINTF
2013 *--w = thousands_sep;
2014 #else
2015 int cnt = tlen;
2017 *--w = thousands_sep[--cnt];
2018 while (cnt > 0);
2019 #endif
2021 len = *grouping++;
2022 if (*grouping == '\0')
2023 /* The previous grouping repeats ad infinitum. */
2024 --grouping;
2025 else if (*grouping == CHAR_MAX
2026 #if CHAR_MIN < 0
2027 || *grouping < 0
2028 #endif
2031 /* No further grouping to be done.
2032 Copy the rest of the number. */
2034 *--w = *--s;
2035 while (s > src);
2036 break;
2040 return w;
2043 #ifdef USE_IN_LIBIO
2044 /* Helper "class" for `fprintf to unbuffered': creates a temporary buffer. */
2045 struct helper_file
2047 struct _IO_FILE_plus _f;
2048 #ifdef COMPILE_WPRINTF
2049 struct _IO_wide_data _wide_data;
2050 #endif
2051 _IO_FILE *_put_stream;
2052 #ifdef _IO_MTSAFE_IO
2053 _IO_lock_t lock;
2054 #endif
2057 static int
2058 _IO_helper_overflow (_IO_FILE *s, int c)
2060 _IO_FILE *target = ((struct helper_file*) s)->_put_stream;
2061 #ifdef COMPILE_WPRINTF
2062 int used = s->_wide_data->_IO_write_ptr - s->_wide_data->_IO_write_base;
2063 if (used)
2065 _IO_size_t written = _IO_sputn (target, s->_wide_data->_IO_write_base,
2066 used);
2067 s->_wide_data->_IO_write_ptr -= written;
2069 #else
2070 int used = s->_IO_write_ptr - s->_IO_write_base;
2071 if (used)
2073 _IO_size_t written = _IO_sputn (target, s->_IO_write_base, used);
2074 s->_IO_write_ptr -= written;
2076 #endif
2077 return PUTC (c, s);
2080 #ifdef COMPILE_WPRINTF
2081 static const struct _IO_jump_t _IO_helper_jumps =
2083 JUMP_INIT_DUMMY,
2084 JUMP_INIT (finish, INTUSE(_IO_wdefault_finish)),
2085 JUMP_INIT (overflow, _IO_helper_overflow),
2086 JUMP_INIT (underflow, _IO_default_underflow),
2087 JUMP_INIT (uflow, INTUSE(_IO_default_uflow)),
2088 JUMP_INIT (pbackfail, (_IO_pbackfail_t) INTUSE(_IO_wdefault_pbackfail)),
2089 JUMP_INIT (xsputn, INTUSE(_IO_wdefault_xsputn)),
2090 JUMP_INIT (xsgetn, INTUSE(_IO_wdefault_xsgetn)),
2091 JUMP_INIT (seekoff, _IO_default_seekoff),
2092 JUMP_INIT (seekpos, _IO_default_seekpos),
2093 JUMP_INIT (setbuf, _IO_default_setbuf),
2094 JUMP_INIT (sync, _IO_default_sync),
2095 JUMP_INIT (doallocate, INTUSE(_IO_wdefault_doallocate)),
2096 JUMP_INIT (read, _IO_default_read),
2097 JUMP_INIT (write, _IO_default_write),
2098 JUMP_INIT (seek, _IO_default_seek),
2099 JUMP_INIT (close, _IO_default_close),
2100 JUMP_INIT (stat, _IO_default_stat)
2102 #else
2103 static const struct _IO_jump_t _IO_helper_jumps =
2105 JUMP_INIT_DUMMY,
2106 JUMP_INIT (finish, INTUSE(_IO_default_finish)),
2107 JUMP_INIT (overflow, _IO_helper_overflow),
2108 JUMP_INIT (underflow, _IO_default_underflow),
2109 JUMP_INIT (uflow, INTUSE(_IO_default_uflow)),
2110 JUMP_INIT (pbackfail, INTUSE(_IO_default_pbackfail)),
2111 JUMP_INIT (xsputn, INTUSE(_IO_default_xsputn)),
2112 JUMP_INIT (xsgetn, INTUSE(_IO_default_xsgetn)),
2113 JUMP_INIT (seekoff, _IO_default_seekoff),
2114 JUMP_INIT (seekpos, _IO_default_seekpos),
2115 JUMP_INIT (setbuf, _IO_default_setbuf),
2116 JUMP_INIT (sync, _IO_default_sync),
2117 JUMP_INIT (doallocate, INTUSE(_IO_default_doallocate)),
2118 JUMP_INIT (read, _IO_default_read),
2119 JUMP_INIT (write, _IO_default_write),
2120 JUMP_INIT (seek, _IO_default_seek),
2121 JUMP_INIT (close, _IO_default_close),
2122 JUMP_INIT (stat, _IO_default_stat)
2124 #endif
2126 static int
2127 internal_function
2128 buffered_vfprintf (register _IO_FILE *s, const CHAR_T *format,
2129 _IO_va_list args)
2131 CHAR_T buf[_IO_BUFSIZ];
2132 struct helper_file helper;
2133 register _IO_FILE *hp = (_IO_FILE *) &helper._f;
2134 int result, to_flush;
2136 /* Orient the stream. */
2137 #ifdef ORIENT
2138 ORIENT;
2139 #endif
2141 /* Initialize helper. */
2142 helper._put_stream = s;
2143 #ifdef COMPILE_WPRINTF
2144 hp->_wide_data = &helper._wide_data;
2145 _IO_wsetp (hp, buf, buf + sizeof buf / sizeof (CHAR_T));
2146 hp->_mode = 1;
2147 #else
2148 _IO_setp (hp, buf, buf + sizeof buf);
2149 hp->_mode = -1;
2150 #endif
2151 hp->_IO_file_flags = _IO_MAGIC|_IO_NO_READS|_IO_USER_LOCK;
2152 #if _IO_JUMPS_OFFSET
2153 hp->_vtable_offset = 0;
2154 #endif
2155 #ifdef _IO_MTSAFE_IO
2156 hp->_lock = NULL;
2157 #endif
2158 _IO_JUMPS (&helper._f) = (struct _IO_jump_t *) &_IO_helper_jumps;
2160 /* Now print to helper instead. */
2161 #if defined USE_IN_LIBIO && !defined COMPILE_WPRINTF
2162 result = INTUSE(_IO_vfprintf) (hp, format, args);
2163 #else
2164 result = vfprintf (hp, format, args);
2165 #endif
2167 /* Lock stream. */
2168 __libc_cleanup_region_start (1, (void (*) (void *)) &_IO_funlockfile, s);
2169 _IO_flockfile (s);
2171 /* Now flush anything from the helper to the S. */
2172 #ifdef COMPILE_WPRINTF
2173 if ((to_flush = (hp->_wide_data->_IO_write_ptr
2174 - hp->_wide_data->_IO_write_base)) > 0)
2176 if ((int) _IO_sputn (s, hp->_wide_data->_IO_write_base, to_flush)
2177 != to_flush)
2178 result = -1;
2180 #else
2181 if ((to_flush = hp->_IO_write_ptr - hp->_IO_write_base) > 0)
2183 if ((int) _IO_sputn (s, hp->_IO_write_base, to_flush) != to_flush)
2184 result = -1;
2186 #endif
2188 /* Unlock the stream. */
2189 _IO_funlockfile (s);
2190 __libc_cleanup_region_end (0);
2192 return result;
2195 #else /* !USE_IN_LIBIO */
2197 static int
2198 internal_function
2199 buffered_vfprintf (register FILE *s, const CHAR_T *format, va_list args)
2201 char buf[BUFSIZ];
2202 int result;
2204 /* Orient the stream. */
2205 #ifdef ORIENT
2206 ORIENT;
2207 #endif
2209 s->__bufp = s->__buffer = buf;
2210 s->__bufsize = sizeof buf;
2211 s->__put_limit = s->__buffer + s->__bufsize;
2212 s->__get_limit = s->__buffer;
2214 /* Now use buffer to print. */
2215 result = vfprintf (s, format, args);
2217 if (fflush (s) == EOF)
2218 result = -1;
2219 s->__buffer = s->__bufp = s->__get_limit = s->__put_limit = NULL;
2220 s->__bufsize = 0;
2222 return result;
2225 /* Pads string with given number of a specified character.
2226 This code is taken from iopadn.c of the GNU I/O library. */
2227 #define PADSIZE 16
2228 static const CHAR_T blanks[PADSIZE] =
2229 { L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '),
2230 L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' ') };
2231 static const CHAR_T zeroes[PADSIZE] =
2232 { L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'),
2233 L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0') };
2235 ssize_t
2236 #ifndef COMPILE_WPRINTF
2237 __printf_pad (FILE *s, char pad, size_t count)
2238 #else
2239 __wprintf_pad (FILE *s, wchar_t pad, size_t count)
2240 #endif
2242 const CHAR_T *padptr;
2243 register size_t i;
2245 padptr = pad == L_(' ') ? blanks : zeroes;
2247 for (i = count; i >= PADSIZE; i -= PADSIZE)
2248 if (PUT (s, padptr, PADSIZE) != PADSIZE)
2249 return -1;
2250 if (i > 0)
2251 if (PUT (s, padptr, i) != i)
2252 return -1;
2254 return count;
2256 #undef PADSIZE
2257 #endif /* USE_IN_LIBIO */
2259 #ifdef USE_IN_LIBIO
2260 # undef vfprintf
2261 # ifdef strong_alias
2262 /* This is for glibc. */
2263 # ifdef COMPILE_WPRINTF
2264 strong_alias (_IO_vfwprintf, __vfwprintf);
2265 weak_alias (_IO_vfwprintf, vfwprintf);
2266 # else
2267 strong_alias (_IO_vfprintf, vfprintf);
2268 libc_hidden_def (vfprintf)
2269 INTDEF(_IO_vfprintf)
2270 # endif
2271 # else
2272 # if defined __ELF__ || defined __GNU_LIBRARY__
2273 # include <gnu-stabs.h>
2274 # ifdef weak_alias
2275 # ifdef COMPILE_WPRINTF
2276 weak_alias (_IO_vfwprintf, vfwprintf);
2277 # else
2278 weak_alias (_IO_vfprintf, vfprintf);
2279 # endif
2280 # endif
2281 # endif
2282 # endif
2283 #endif