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., 675 Mass Ave,
17 Cambridge, MA 02139, USA. */
19 #include "../locale/localeinfo.h"
30 #define LONGLONG long long
35 /* Those are flags in the conversion format. */
36 # define LONG 0x001 /* l: long or double */
37 # define LONGDBL 0x002 /* L: long long or long double */
38 # define SHORT 0x004 /* h: short */
39 # define SUPPRESS 0x008 /* *: suppress assignment */
40 # define POINTER 0x010 /* weird %p pointer (`fake hex') */
41 # define NOSKIP 0x020 /* do not skip blanks */
42 # define WIDTH 0x040 /* width was given */
43 # define GROUP 0x080 /* ': group numbers */
44 # define MALLOC 0x100 /* a: malloc strings */
46 # define TYPEMOD (LONG|LONGDBL|SHORT)
53 # define va_list _IO_va_list
54 # define ungetc(c, s) _IO_ungetc (c, s)
55 # define inchar() ((c = _IO_getc_unlocked (s)), (void) ++read_in, c)
56 # define conv_error() do { \
57 if (errp != NULL) *errp |= 2; \
58 if (c != EOF) _IO_ungetc (c, s); \
59 _IO_funlockfile (s); \
62 # define input_error() do { \
63 _IO_funlockfile (s); \
64 if (errp != NULL) *errp |= 1; \
67 # define memory_error() do { \
68 _IO_funlockfile (s); \
72 # define ARGCHECK(s, format) \
75 /* Check file argument for consistence. */ \
76 CHECK_FILE (s, EOF); \
77 if (s->_flags & _IO_NO_READS || format == NULL) \
84 # define inchar() ((c = getc (s)), (void) ++read_in, c)
85 # define conv_error() do { \
90 # define input_error() do { \
94 # define memory_error() do { \
99 # define ARGCHECK(s, format) \
102 /* Check file argument for consistence. */ \
103 if (!__validfp (s) || !s->__mode.__read || format == NULL) \
109 # define flockfile(S) /* nothing */
110 # define funlockfile(S) /* nothing */
114 /* Read formatted input from S according to the format string
115 FORMAT, using the argument list in ARG.
116 Return the number of assignments made, or -1 for an input error. */
119 _IO_vfscanf (s
, format
, argptr
, errp
)
126 __vfscanf (FILE *s
, const char *format
, va_list argptr
)
129 va_list arg
= (va_list) argptr
;
131 register const char *f
= format
;
132 register unsigned char fc
; /* Current character of the format. */
133 register size_t done
= 0; /* Assignments done. */
134 register size_t read_in
= 0; /* Chars read in. */
135 register int c
; /* Last char read. */
136 register int width
; /* Maximum field width. */
137 register int flags
; /* Modifiers for current format element. */
139 /* Status for reading F-P nums. */
140 char got_dot
, got_e
, negative
;
141 /* If a [...] is a [^...]. */
143 /* Base for integral numbers. */
145 /* Signedness for integral numbers. */
147 /* Decimal point character. */
149 /* The thousands character of the current locale. */
151 /* Integral holding variables. */
155 unsigned long long int uq
;
157 unsigned long int ul
;
159 /* Character-buffer pointer. */
160 register char *str
, **strptr
;
162 /* We must not react on white spaces immediately because they can
163 possibly be matched even if in the input stream no character is
164 available anymore. */
167 char *tw
; /* Temporary pointer. */
168 char *wp
= NULL
; /* Workspace. */
169 size_t wpmax
= 0; /* Maximal size of workspace. */
170 size_t wpsize
; /* Currently used bytes in workspace. */
174 if (wpsize == wpmax) \
177 wpmax = UCHAR_MAX > 2 * wpmax ? UCHAR_MAX : 2 * wpmax; \
178 wp = (char *) alloca (wpmax); \
180 memcpy (wp, old, wpsize); \
182 wp[wpsize++] = (Ch); \
186 ARGCHECK (s
, format
);
188 /* Figure out the decimal point character. */
189 if (mbtowc (&decimal
, _NL_CURRENT (LC_NUMERIC
, DECIMAL_POINT
),
190 strlen (_NL_CURRENT (LC_NUMERIC
, DECIMAL_POINT
))) <= 0)
191 decimal
= (wchar_t) *_NL_CURRENT (LC_NUMERIC
, DECIMAL_POINT
);
192 /* Figure out the thousands separator character. */
193 if (mbtowc (&thousands
, _NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
),
194 strlen (_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
))) <= 0)
195 thousands
= (wchar_t) *_NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
);
197 /* Lock the stream. */
202 /* Run through the format string. */
206 /* Extract the next argument, which is of type TYPE.
207 For a %N$... spec, this is the Nth argument from the beginning;
208 otherwise it is the next argument after the state now in ARG. */
210 /* XXX Possible optimization. */
211 # define ARG(type) (argpos == 0 ? va_arg (arg, type) : \
212 ({ va_list arg = (va_list) argptr; \
213 arg = (va_list) ((char *) arg \
215 * __va_rounded_size (void *)); \
216 va_arg (arg, type); \
219 # define ARG(type) (argpos == 0 ? va_arg (arg, type) : \
220 ({ unsigned int pos = argpos; \
221 va_list arg = (va_list) argptr; \
223 (void) va_arg (arg, void *); \
224 va_arg (arg, type); \
230 /* Non-ASCII, may be a multibyte. */
231 int len
= mblen (f
, strlen (f
));
248 /* Remember to skip spaces. */
255 /* Characters other than format specs must just match. */
259 /* We saw white space char as the last character in the format
260 string. Now it's time to skip all leading white space. */
276 /* This is the start of the conversion string. */
279 /* Initialize state of modifiers. */
282 /* Prepare temporary buffer. */
285 /* Check for a positional parameter specification. */
290 argpos
= argpos
* 10 + (*f
++ - '0');
295 /* Oops; that was actually the field width. */
303 /* Check for the assignment-suppressant and the number grouping flag. */
304 while (*f
== '*' || *f
== '\'')
315 /* We have seen width. */
319 /* Find the maximum field width. */
330 /* Check for type modifiers. */
331 while (*f
== 'h' || *f
== 'l' || *f
== 'L' || *f
== 'a' || *f
== 'q')
335 /* int's are short int's. */
337 /* Signal illegal format element. */
342 if (flags
& (SHORT
|LONGDBL
))
344 else if (flags
& LONG
)
346 /* A double `l' is equivalent to an `L'. */
351 /* int's are long int's. */
356 /* double's are long double's, and int's are long long int's. */
358 /* Signal illegal format element. */
364 /* Signal illegal format element. */
366 /* String conversions (%s, %[) take a `char **'
367 arg and fill it in with a malloc'd pointer. */
372 /* End of the format string? */
376 /* Find the conversion specifier. */
378 if (skip_space
|| (fc
!= '[' && fc
!= 'c' && fc
!= 'n'))
380 /* Eat whitespace. */
388 case '%': /* Must match a literal '%'. */
394 case 'n': /* Answer number of assignments done. */
395 /* Corrigendum 1 to ISO C 1990 describes the allowed flags
396 with the 'n' conversion specifier. */
397 if (!(flags
& SUPPRESS
))
398 /* Don't count the read-ahead. */
400 *ARG (long long int *) = read_in
- 1;
401 else if (flags
& LONG
)
402 *ARG (long int *) = read_in
- 1;
403 else if (flags
& SHORT
)
404 *ARG (short int *) = read_in
- 1;
406 *ARG (int *) = read_in
- 1;
409 case 'c': /* Match characters. */
410 if (!(flags
& SUPPRESS
))
423 if (!(flags
& SUPPRESS
))
427 while (inchar () != EOF
&& --width
> 0);
430 while (inchar () != EOF
&& --width
> 0);
432 if (!(flags
& SUPPRESS
))
437 case 's': /* Read a string. */
439 if (!(flags & SUPPRESS)) \
441 if (flags & MALLOC) \
443 /* The string is to be stored in a malloc'd buffer. */ \
444 strptr = ARG (char **); \
445 if (strptr == NULL) \
447 /* Allocate an initial buffer. */ \
449 *strptr = str = malloc (strsize); \
452 str = ARG (char *); \
465 #define STRING_ADD_CHAR(c) \
466 if (!(flags & SUPPRESS)) \
469 if ((flags & MALLOC) && str == *strptr + strsize) \
471 /* Enlarge the buffer. */ \
472 str = realloc (*strptr, strsize * 2); \
475 /* Can't allocate that much. Last-ditch effort. */\
476 str = realloc (*strptr, strsize + 1); \
479 /* We lose. Oh well. \
480 Terminate the string and stop converting, \
481 so at least we don't skip any input. */ \
482 (*strptr)[strsize] = '\0'; \
502 } while (inchar () != EOF
&& (width
<= 0 || --width
> 0));
504 if (!(flags
& SUPPRESS
))
511 case 'x': /* Hexadecimal integer. */
512 case 'X': /* Ditto. */
517 case 'o': /* Octal integer. */
522 case 'u': /* Unsigned decimal integer. */
527 case 'd': /* Signed decimal integer. */
532 case 'i': /* Generic number. */
540 /* Check for a sign. */
541 if (c
== '-' || c
== '+')
549 /* Look for a leading indication of base. */
550 if (width
!= 0 && c
== '0')
558 if (width
!= 0 && tolower (c
) == 'x')
576 /* Read the number into workspace. */
577 while (c
!= EOF
&& width
!= 0)
579 if (base
== 16 ? !isxdigit (c
) :
580 ((!isdigit (c
) || c
- '0' >= base
) &&
581 !((flags
& GROUP
) && base
== 10 && c
== thousands
)))
591 (wpsize
== 1 && (wp
[0] == '+' || wp
[0] == '-')))
592 /* There was no number. */
595 /* Convert the number. */
600 num
.q
= __strtoq_internal (wp
, &tw
, base
, flags
& GROUP
);
602 num
.uq
= __strtouq_internal (wp
, &tw
, base
, flags
& GROUP
);
607 num
.l
= __strtol_internal (wp
, &tw
, base
, flags
& GROUP
);
609 num
.ul
= __strtoul_internal (wp
, &tw
, base
, flags
& GROUP
);
614 if (!(flags
& SUPPRESS
))
619 *ARG (unsigned LONGLONG
int *) = num
.uq
;
620 else if (flags
& LONG
)
621 *ARG (unsigned long int *) = num
.ul
;
622 else if (flags
& SHORT
)
623 *ARG (unsigned short int *)
624 = (unsigned short int) num
.ul
;
626 *ARG (unsigned int *) = (unsigned int) num
.ul
;
631 *ARG (LONGLONG
int *) = num
.q
;
632 else if (flags
& LONG
)
633 *ARG (long int *) = num
.l
;
634 else if (flags
& SHORT
)
635 *ARG (short int *) = (short int) num
.l
;
637 *ARG (int *) = (int) num
.l
;
643 case 'e': /* Floating-point numbers. */
651 /* Check for a sign. */
652 if (c
== '-' || c
== '+')
655 if (inchar () == EOF
)
656 /* EOF is only an input error before we read any chars. */
669 else if (got_e
&& wp
[wpsize
- 1] == 'e'
670 && (c
== '-' || c
== '+'))
672 else if (wpsize
> 0 && !got_e
&& tolower (c
) == 'e')
677 else if (c
== decimal
&& !got_dot
)
682 else if ((flags
& GROUP
) && c
== thousands
&& !got_dot
)
689 while (inchar () != EOF
&& width
!= 0);
694 /* Convert the number. */
698 long double d
= __strtold_internal (wp
, &tw
, flags
& GROUP
);
699 if (!(flags
& SUPPRESS
) && tw
!= wp
)
700 *ARG (long double *) = negative
? -d
: d
;
702 else if (flags
& LONG
)
704 double d
= __strtod_internal (wp
, &tw
, flags
& GROUP
);
705 if (!(flags
& SUPPRESS
) && tw
!= wp
)
706 *ARG (double *) = negative
? -d
: d
;
710 float d
= __strtof_internal (wp
, &tw
, flags
& GROUP
);
711 if (!(flags
& SUPPRESS
) && tw
!= wp
)
712 *ARG (float *) = negative
? -d
: d
;
718 if (!(flags
& SUPPRESS
))
722 case '[': /* Character class. */
736 /* Fill WP with byte flags indexed by character.
737 We will use this flag map for matching input characters. */
738 if (wpmax
< UCHAR_MAX
)
741 wp
= (char *) alloca (wpmax
);
743 memset (wp
, 0, UCHAR_MAX
);
746 if (fc
== ']' || fc
== '-')
748 /* If ] or - appears before any char in the set, it is not
749 the terminator or separator, but the first char in the
755 while ((fc
= *f
++) != '\0' && fc
!= ']')
757 if (fc
== '-' && *f
!= '\0' && *f
!= ']' &&
758 (unsigned char) f
[-2] <= (unsigned char) *f
)
760 /* Add all characters from the one before the '-'
761 up to (but not including) the next format char. */
762 for (fc
= f
[-2]; fc
< *f
; ++fc
)
766 /* Add the character to the flag map. */
781 while (inchar () != EOF
&& width
!= 0);
782 if (read_in
== num
.ul
)
785 if (!(flags
& SUPPRESS
))
792 case 'p': /* Generic pointer. */
794 /* A PTR must be the same size as a `long int'. */
795 flags
&= ~(SHORT
|LONGDBL
);
802 /* The last thing we saw int the format string was a white space.
803 Consume the last white spaces. */
811 return ((void) (c
== EOF
|| ungetc (c
, s
)), done
);
816 __vfscanf (FILE *s
, const char *format
, va_list argptr
)
818 return _IO_vfscanf (s
, format
, argptr
, NULL
);
822 weak_alias (__vfscanf
, vfscanf
)