1 /* Helper functions for parsing printf format strings.
2 Copyright (C) 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
3 This file is part of th GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 #include <sys/param.h>
28 #ifndef COMPILE_WPRINTF
30 # define UCHAR_T unsigned char
33 # define ISDIGIT(Ch) isdigit (Ch)
35 # define CHAR_T wchar_t
36 # define UCHAR_T unsigned int
38 # define L_(Str) L##Str
39 # define ISDIGIT(Ch) iswdigit (Ch)
42 #include "printf-parse.h"
49 /* Find the next spec in FORMAT, or the end of the string. Returns
50 a pointer into FORMAT, to a '%' or a '\0'. */
52 #ifdef COMPILE_WPRINTF
53 __find_specwc (const UCHAR_T
*format
)
55 __find_specmb (const UCHAR_T
*format
, mbstate_t *ps
)
58 #ifdef COMPILE_WPRINTF
59 return (const UCHAR_T
*) __wcschrnul ((const CHAR_T
*) format
, L
'%');
61 while (*format
!= L_('\0') && *format
!= L_('%'))
65 /* Remove any hints of a wrong encoding. */
67 if (! isascii (*format
) && (len
= __mbrlen (format
, MB_CUR_MAX
, ps
)) > 0)
77 /* FORMAT must point to a '%' at the beginning of a spec. Fills in *SPEC
78 with the parsed details. POSN is the number of arguments already
79 consumed. At most MAXTYPES - POSN types are filled in TYPES. Return
80 the number of args consumed by this spec; *MAX_REF_ARG is updated so it
81 remains the highest argument index used. */
84 #ifdef COMPILE_WPRINTF
85 __parse_one_specwc (const UCHAR_T
*format
, size_t posn
,
86 struct printf_spec
*spec
, size_t *max_ref_arg
)
88 __parse_one_specmb (const UCHAR_T
*format
, size_t posn
,
89 struct printf_spec
*spec
, size_t *max_ref_arg
,
99 /* Clear information structure. */
102 spec
->info
.space
= 0;
104 spec
->info
.showsign
= 0;
105 spec
->info
.group
= 0;
107 spec
->info
.extra
= 0;
108 spec
->info
.pad
= ' ';
109 spec
->info
.wide
= sizeof (UCHAR_T
) > 1;
111 /* Test for positional argument. */
112 if (ISDIGIT (*format
))
114 const UCHAR_T
*begin
= format
;
116 n
= read_int (&format
);
118 if (n
> 0 && *format
== L_('$'))
119 /* Is positional parameter. */
121 ++format
; /* Skip the '$'. */
122 spec
->data_arg
= n
- 1;
123 *max_ref_arg
= MAX (*max_ref_arg
, n
);
126 /* Oops; that was actually the width and/or 0 padding flag.
127 Step back and read it again. */
131 /* Check for spec modifiers. */
137 /* Output a space in place of a sign, when there is no sign. */
138 spec
->info
.space
= 1;
141 /* Always output + or - for numbers. */
142 spec
->info
.showsign
= 1;
145 /* Left-justify things. */
149 /* Use the "alternate form":
150 Hex has 0x or 0X, FP always has a decimal point. */
155 spec
->info
.pad
= '0';
158 /* Show grouping in numbers if the locale information
160 spec
->info
.group
= 1;
163 /* Use the internationalized form of the output. Currently
164 means to use the `outdigits' of the current locale. */
175 spec
->info
.pad
= ' ';
177 /* Get the field width. */
178 spec
->width_arg
= -1;
179 spec
->info
.width
= 0;
180 if (*format
== L_('*'))
182 /* The field width is given in an argument.
183 A negative field width indicates left justification. */
184 const UCHAR_T
*begin
= ++format
;
186 if (ISDIGIT (*format
))
188 /* The width argument might be found in a positional parameter. */
189 n
= read_int (&format
);
191 if (n
> 0 && *format
== L_('$'))
193 spec
->width_arg
= n
- 1;
194 *max_ref_arg
= MAX (*max_ref_arg
, n
);
195 ++format
; /* Skip '$'. */
199 if (spec
->width_arg
< 0)
201 /* Not in a positional parameter. Consume one argument. */
202 spec
->width_arg
= posn
++;
204 format
= begin
; /* Step back and reread. */
207 else if (ISDIGIT (*format
))
208 /* Constant width specification. */
209 spec
->info
.width
= read_int (&format
);
211 /* Get the precision. */
213 /* -1 means none given; 0 means explicit 0. */
214 spec
->info
.prec
= -1;
215 if (*format
== L_('.'))
218 if (*format
== L_('*'))
220 /* The precision is given in an argument. */
221 const UCHAR_T
*begin
= ++format
;
223 if (ISDIGIT (*format
))
225 n
= read_int (&format
);
227 if (n
> 0 && *format
== L_('$'))
229 spec
->prec_arg
= n
- 1;
230 *max_ref_arg
= MAX (*max_ref_arg
, n
);
235 if (spec
->prec_arg
< 0)
237 /* Not in a positional parameter. */
238 spec
->prec_arg
= posn
++;
243 else if (ISDIGIT (*format
))
244 spec
->info
.prec
= read_int (&format
);
246 /* "%.?" is treated like "%.0?". */
250 /* Check for type modifiers. */
251 spec
->info
.is_long_double
= 0;
252 spec
->info
.is_short
= 0;
253 spec
->info
.is_long
= 0;
254 spec
->info
.is_char
= 0;
259 /* ints are short ints or chars. */
260 if (*format
!= L_('h'))
261 spec
->info
.is_short
= 1;
265 spec
->info
.is_char
= 1;
269 /* ints are long ints. */
270 spec
->info
.is_long
= 1;
271 if (*format
!= L_('l'))
276 /* doubles are long doubles, and ints are long long ints. */
278 /* 4.4 uses this for long long. */
279 spec
->info
.is_long_double
= 1;
283 /* ints are size_ts. */
284 assert (sizeof (size_t) <= sizeof (unsigned long long int));
285 #if LONG_MAX != LONG_LONG_MAX
286 spec
->info
.is_long_double
= sizeof (size_t) > sizeof (unsigned long int);
288 spec
->info
.is_long
= sizeof (size_t) > sizeof (unsigned int);
291 assert (sizeof (ptrdiff_t) <= sizeof (long long int));
292 #if LONG_MAX != LONG_LONG_MAX
293 spec
->info
.is_long_double
= (sizeof (ptrdiff_t) > sizeof (long int));
295 spec
->info
.is_long
= sizeof (ptrdiff_t) > sizeof (int);
298 assert (sizeof (uintmax_t) <= sizeof (unsigned long long int));
299 #if LONG_MAX != LONG_LONG_MAX
300 spec
->info
.is_long_double
= (sizeof (uintmax_t)
301 > sizeof (unsigned long int));
303 spec
->info
.is_long
= sizeof (uintmax_t) > sizeof (unsigned int);
306 /* Not a recognized modifier. Backup. */
311 /* Get the format specification. */
312 spec
->info
.spec
= (wchar_t) *format
++;
313 if (__builtin_expect (__printf_function_table
!= NULL
, 0)
314 && spec
->info
.spec
<= UCHAR_MAX
315 && __printf_arginfo_table
[spec
->info
.spec
] != NULL
)
316 /* We don't try to get the types for all arguments if the format
317 uses more than one. The normal case is covered though. */
318 spec
->ndata_args
= (*__printf_arginfo_table
[spec
->info
.spec
])
319 (&spec
->info
, 1, &spec
->data_arg_type
);
322 /* Find the data argument types of a built-in spec. */
323 spec
->ndata_args
= 1;
325 switch (spec
->info
.spec
)
333 #if LONG_MAX != LONG_LONG_MAX
334 if (spec
->info
.is_long_double
)
335 spec
->data_arg_type
= PA_INT
|PA_FLAG_LONG_LONG
;
338 if (spec
->info
.is_long
)
339 spec
->data_arg_type
= PA_INT
|PA_FLAG_LONG
;
340 else if (spec
->info
.is_short
)
341 spec
->data_arg_type
= PA_INT
|PA_FLAG_SHORT
;
342 else if (spec
->info
.is_char
)
343 spec
->data_arg_type
= PA_CHAR
;
345 spec
->data_arg_type
= PA_INT
;
355 if (spec
->info
.is_long_double
)
356 spec
->data_arg_type
= PA_DOUBLE
|PA_FLAG_LONG_DOUBLE
;
358 spec
->data_arg_type
= PA_DOUBLE
;
361 spec
->data_arg_type
= PA_CHAR
;
364 spec
->data_arg_type
= PA_WCHAR
;
367 spec
->data_arg_type
= PA_STRING
;
370 spec
->data_arg_type
= PA_WSTRING
;
373 spec
->data_arg_type
= PA_POINTER
;
376 spec
->data_arg_type
= PA_INT
|PA_FLAG_PTR
;
381 /* An unknown spec will consume no args. */
382 spec
->ndata_args
= 0;
387 if (spec
->data_arg
== -1 && spec
->ndata_args
> 0)
389 /* There are args consumed, but no positional spec. Use the
390 next sequential arg position. */
391 spec
->data_arg
= posn
;
392 nargs
+= spec
->ndata_args
;
395 if (spec
->info
.spec
== L
'\0')
396 /* Format ended before this spec was complete. */
397 spec
->end_of_fmt
= spec
->next_fmt
= format
- 1;
400 /* Find the next format spec. */
401 spec
->end_of_fmt
= format
;
402 #ifdef COMPILE_WPRINTF
403 spec
->next_fmt
= __find_specwc (format
);
405 spec
->next_fmt
= __find_specmb (format
, ps
);