2002-08-17 03:22:00 +02:00
|
|
|
/*
|
|
|
|
* general implementation of scanf used by scanf, sscanf, fscanf,
|
|
|
|
* _cscanf, wscanf, swscanf and fwscanf
|
|
|
|
*
|
|
|
|
* Copyright 1996,1998 Marcus Meissner
|
|
|
|
* Copyright 1996 Jukka Iivonen
|
2003-05-14 01:38:46 +02:00
|
|
|
* Copyright 1997,2000, 2003 Uwe Bonnes
|
2002-08-17 03:22:00 +02:00
|
|
|
* Copyright 2000 Jon Griffiths
|
|
|
|
* Copyright 2002 Daniel Gudbjartsson
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-08-17 03:22:00 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef WIDE_SCANF
|
2002-12-19 05:21:30 +01:00
|
|
|
#define _CHAR_ MSVCRT_wchar_t
|
2002-08-17 03:22:00 +02:00
|
|
|
#define _EOF_ MSVCRT_WEOF
|
2003-01-11 22:06:02 +01:00
|
|
|
#define _EOF_RET MSVCRT_WEOF
|
2002-08-17 03:22:00 +02:00
|
|
|
#define _ISSPACE_(c) MSVCRT_iswspace(c)
|
|
|
|
#define _ISDIGIT_(c) MSVCRT_iswdigit(c)
|
2004-01-06 21:38:37 +01:00
|
|
|
#define _WIDE2SUPPORTED_(c) c /* No conversion needed (wide to wide) */
|
|
|
|
#define _CHAR2SUPPORTED_(c) c /* FIXME: convert char to wide char */
|
2002-08-17 03:22:00 +02:00
|
|
|
#define _CHAR2DIGIT_(c, base) wchar2digit((c), (base))
|
2004-01-06 21:38:37 +01:00
|
|
|
#define _BITMAPSIZE_ 256*256
|
2002-08-17 03:22:00 +02:00
|
|
|
#else /* WIDE_SCANF */
|
|
|
|
#define _CHAR_ char
|
|
|
|
#define _EOF_ MSVCRT_EOF
|
2003-01-11 22:06:02 +01:00
|
|
|
#define _EOF_RET MSVCRT_EOF
|
2002-08-17 03:22:00 +02:00
|
|
|
#define _ISSPACE_(c) isspace(c)
|
|
|
|
#define _ISDIGIT_(c) isdigit(c)
|
2004-01-06 21:38:37 +01:00
|
|
|
#define _WIDE2SUPPORTED_(c) c /* FIXME: convert wide char to char */
|
|
|
|
#define _CHAR2SUPPORTED_(c) c /* No conversion needed (char to char) */
|
2002-08-17 03:22:00 +02:00
|
|
|
#define _CHAR2DIGIT_(c, base) char2digit((c), (base))
|
2004-01-06 21:38:37 +01:00
|
|
|
#define _BITMAPSIZE_ 256
|
2002-08-17 03:22:00 +02:00
|
|
|
#endif /* WIDE_SCANF */
|
|
|
|
|
|
|
|
#ifdef CONSOLE
|
2003-10-10 02:00:19 +02:00
|
|
|
#define _GETC_(file) (consumed++, _getch())
|
|
|
|
#define _UNGETC_(nch, file) do { _ungetch(nch); consumed--; } while(0)
|
2004-02-19 02:13:12 +01:00
|
|
|
#define _FUNCTION_ static int MSVCRT_vcscanf(const char *format, va_list ap)
|
2002-08-17 03:22:00 +02:00
|
|
|
#else
|
|
|
|
#ifdef STRING
|
2002-09-29 20:00:23 +02:00
|
|
|
#undef _EOF_
|
|
|
|
#define _EOF_ 0
|
2003-10-10 02:00:19 +02:00
|
|
|
#define _GETC_(file) (consumed++, *file++)
|
|
|
|
#define _UNGETC_(nch, file) do { file--; consumed--; } while(0)
|
2002-08-17 03:22:00 +02:00
|
|
|
#ifdef WIDE_SCANF
|
2004-02-19 02:13:12 +01:00
|
|
|
#define _FUNCTION_ static int MSVCRT_vswscanf(const MSVCRT_wchar_t *file, const MSVCRT_wchar_t *format, va_list ap)
|
2002-08-17 03:22:00 +02:00
|
|
|
#else /* WIDE_SCANF */
|
2004-02-19 02:13:12 +01:00
|
|
|
#define _FUNCTION_ static int MSVCRT_vsscanf(const char *file, const char *format, va_list ap)
|
2002-08-17 03:22:00 +02:00
|
|
|
#endif /* WIDE_SCANF */
|
|
|
|
#else /* STRING */
|
|
|
|
#ifdef WIDE_SCANF
|
2003-10-10 02:00:19 +02:00
|
|
|
#define _GETC_(file) (consumed++, MSVCRT_fgetwc(file))
|
|
|
|
#define _UNGETC_(nch, file) do { MSVCRT_ungetwc(nch, file); consumed--; } while(0)
|
2004-02-19 02:13:12 +01:00
|
|
|
#define _FUNCTION_ static int MSVCRT_vfwscanf(MSVCRT_FILE* file, const MSVCRT_wchar_t *format, va_list ap)
|
2002-08-17 03:22:00 +02:00
|
|
|
#else /* WIDE_SCANF */
|
2003-10-10 02:00:19 +02:00
|
|
|
#define _GETC_(file) (consumed++, MSVCRT_fgetc(file))
|
|
|
|
#define _UNGETC_(nch, file) do { MSVCRT_ungetc(nch, file); consumed--; } while(0)
|
2004-02-19 02:13:12 +01:00
|
|
|
#define _FUNCTION_ static int MSVCRT_vfscanf(MSVCRT_FILE* file, const char *format, va_list ap)
|
2002-08-17 03:22:00 +02:00
|
|
|
#endif /* WIDE_SCANF */
|
|
|
|
#endif /* STRING */
|
|
|
|
#endif /* CONSOLE */
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* Implemented based on
|
|
|
|
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/html/_crt_format_specification_fields_.2d_.scanf_and_wscanf_functions.asp
|
|
|
|
* Extended by C. Scott Ananian <cananian@alumni.princeton.edu> to handle
|
|
|
|
* more types of format spec.
|
|
|
|
*/
|
2004-02-19 02:13:12 +01:00
|
|
|
_FUNCTION_ {
|
2003-10-10 02:00:19 +02:00
|
|
|
int rd = 0, consumed = 0;
|
2002-08-17 03:22:00 +02:00
|
|
|
int nch;
|
|
|
|
if (!*format) return 0;
|
|
|
|
#ifndef WIDE_SCANF
|
|
|
|
#ifdef CONSOLE
|
2004-02-24 02:09:39 +01:00
|
|
|
TRACE("(%s): \n", debugstr_a(format));
|
2002-08-17 03:22:00 +02:00
|
|
|
#else /* CONSOLE */
|
|
|
|
#ifdef STRING
|
2004-02-24 02:09:39 +01:00
|
|
|
TRACE("%s (%s)\n", file, debugstr_a(format));
|
2002-08-17 03:22:00 +02:00
|
|
|
#else /* STRING */
|
2004-02-24 02:09:39 +01:00
|
|
|
TRACE("%p (%s)\n", file, debugstr_a(format));
|
2002-08-17 03:22:00 +02:00
|
|
|
#endif /* STRING */
|
|
|
|
#endif /* CONSOLE */
|
|
|
|
#endif /* WIDE_SCANF */
|
|
|
|
nch = _GETC_(file);
|
2003-01-11 22:06:02 +01:00
|
|
|
if (nch == _EOF_) return _EOF_RET;
|
|
|
|
|
2002-08-17 03:22:00 +02:00
|
|
|
while (*format) {
|
|
|
|
/* a whitespace character in the format string causes scanf to read,
|
|
|
|
* but not store, all consecutive white-space characters in the input
|
|
|
|
* up to the next non-white-space character. One white space character
|
|
|
|
* in the input matches any number (including zero) and combination of
|
|
|
|
* white-space characters in the input. */
|
|
|
|
if (_ISSPACE_(*format)) {
|
|
|
|
/* skip whitespace */
|
|
|
|
while ((nch!=_EOF_) && _ISSPACE_(nch))
|
|
|
|
nch = _GETC_(file);
|
|
|
|
}
|
|
|
|
/* a format specification causes scanf to read and convert characters
|
|
|
|
* in the input into values of a specified type. The value is assigned
|
|
|
|
* to an argument in the argument list. Format specifications have
|
|
|
|
* the form %[*][width][{h | l | I64 | L}]type */
|
2002-12-20 01:35:41 +01:00
|
|
|
else if (*format == '%') {
|
2002-08-17 03:22:00 +02:00
|
|
|
int st = 0; int suppress = 0; int width = 0;
|
2006-03-26 04:10:28 +02:00
|
|
|
int base;
|
2002-08-17 03:22:00 +02:00
|
|
|
int h_prefix = 0;
|
|
|
|
int l_prefix = 0;
|
|
|
|
int L_prefix = 0;
|
|
|
|
int w_prefix = 0;
|
|
|
|
int prefix_finished = 0;
|
2004-02-24 02:09:39 +01:00
|
|
|
int I64_prefix = 0;
|
2002-08-17 03:22:00 +02:00
|
|
|
format++;
|
|
|
|
/* look for leading asterisk, which means 'suppress assignment of
|
|
|
|
* this field'. */
|
2002-12-20 01:35:41 +01:00
|
|
|
if (*format=='*') {
|
2002-08-17 03:22:00 +02:00
|
|
|
format++;
|
|
|
|
suppress=1;
|
|
|
|
}
|
|
|
|
/* look for width specification */
|
|
|
|
while (_ISDIGIT_(*format)) {
|
|
|
|
width*=10;
|
2002-12-20 01:35:41 +01:00
|
|
|
width+=*format++ - '0';
|
2002-08-17 03:22:00 +02:00
|
|
|
}
|
|
|
|
if (width==0) width=-1; /* no width spec seen */
|
|
|
|
/* read prefix (if any) */
|
|
|
|
while (!prefix_finished) {
|
|
|
|
switch(*format) {
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'h': h_prefix = 1; break;
|
|
|
|
case 'l': l_prefix = 1; break;
|
|
|
|
case 'w': w_prefix = 1; break;
|
|
|
|
case 'L': L_prefix = 1; break;
|
|
|
|
case 'I':
|
|
|
|
if (*(format + 1) == '6' &&
|
|
|
|
*(format + 2) == '4') {
|
2004-02-24 02:09:39 +01:00
|
|
|
I64_prefix = 1;
|
2002-08-17 03:22:00 +02:00
|
|
|
format += 2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
prefix_finished = 1;
|
|
|
|
}
|
|
|
|
if (!prefix_finished) format++;
|
|
|
|
}
|
|
|
|
/* read type */
|
|
|
|
switch(*format) {
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'x':
|
|
|
|
case 'X': /* hexadecimal integer. */
|
2006-03-26 04:10:28 +02:00
|
|
|
base = 16;
|
2002-08-17 03:22:00 +02:00
|
|
|
goto number;
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'o': /* octal integer */
|
2006-03-26 04:10:28 +02:00
|
|
|
base = 8;
|
2002-08-17 03:22:00 +02:00
|
|
|
goto number;
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'u': /* unsigned decimal integer */
|
2006-03-26 04:10:28 +02:00
|
|
|
base = 10;
|
2002-08-17 03:22:00 +02:00
|
|
|
goto number;
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'd': /* signed decimal integer */
|
2006-03-26 04:10:28 +02:00
|
|
|
base = 10;
|
2002-08-17 03:22:00 +02:00
|
|
|
goto number;
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'i': /* generic integer */
|
2006-08-22 19:38:56 +02:00
|
|
|
base = 0;
|
2002-08-17 03:22:00 +02:00
|
|
|
number: {
|
|
|
|
/* read an integer */
|
2004-02-24 02:09:39 +01:00
|
|
|
ULONGLONG cur = 0;
|
2002-08-17 03:22:00 +02:00
|
|
|
int negative = 0;
|
|
|
|
int seendigit=0;
|
|
|
|
/* skip initial whitespace */
|
|
|
|
while ((nch!=_EOF_) && _ISSPACE_(nch))
|
|
|
|
nch = _GETC_(file);
|
|
|
|
/* get sign */
|
2006-03-26 04:10:28 +02:00
|
|
|
if (nch == '-' || nch == '+') {
|
2002-12-20 01:35:41 +01:00
|
|
|
negative = (nch=='-');
|
2002-08-17 03:22:00 +02:00
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
}
|
|
|
|
/* look for leading indication of base */
|
2002-12-20 01:35:41 +01:00
|
|
|
if (width!=0 && nch == '0') {
|
2002-08-17 03:22:00 +02:00
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
seendigit=1;
|
2002-12-20 01:35:41 +01:00
|
|
|
if (width!=0 && (nch=='x' || nch=='X')) {
|
2002-08-17 03:22:00 +02:00
|
|
|
if (base==0)
|
|
|
|
base=16;
|
|
|
|
if (base==16) {
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
seendigit=0;
|
|
|
|
}
|
|
|
|
} else if (base==0)
|
|
|
|
base = 8;
|
|
|
|
}
|
2006-08-22 19:38:56 +02:00
|
|
|
/* format %i without indication of base */
|
|
|
|
if (base==0)
|
|
|
|
base = 10;
|
2002-08-17 03:22:00 +02:00
|
|
|
/* throw away leading zeros */
|
2002-12-20 01:35:41 +01:00
|
|
|
while (width!=0 && nch=='0') {
|
2002-08-17 03:22:00 +02:00
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
seendigit=1;
|
|
|
|
}
|
|
|
|
if (width!=0 && _CHAR2DIGIT_(nch, base)!=-1) {
|
|
|
|
cur = _CHAR2DIGIT_(nch, base);
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
seendigit=1;
|
|
|
|
}
|
|
|
|
/* read until no more digits */
|
2002-09-09 21:18:53 +02:00
|
|
|
while (width!=0 && (nch!=_EOF_) && _CHAR2DIGIT_(nch, base)!=-1) {
|
2002-08-17 03:22:00 +02:00
|
|
|
cur = cur*base + _CHAR2DIGIT_(nch, base);
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
seendigit=1;
|
|
|
|
}
|
|
|
|
/* okay, done! */
|
|
|
|
if (!seendigit) break; /* not a valid number */
|
|
|
|
st = 1;
|
|
|
|
if (!suppress) {
|
|
|
|
#define _SET_NUMBER_(type) *va_arg(ap, type*) = negative ? -cur : cur
|
2006-03-26 04:10:28 +02:00
|
|
|
if (I64_prefix) _SET_NUMBER_(LONGLONG);
|
|
|
|
else if (l_prefix) _SET_NUMBER_(long int);
|
|
|
|
else if (h_prefix) _SET_NUMBER_(short int);
|
|
|
|
else _SET_NUMBER_(int);
|
2002-08-17 03:22:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'e':
|
|
|
|
case 'E':
|
|
|
|
case 'f':
|
|
|
|
case 'g':
|
|
|
|
case 'G': { /* read a float */
|
2002-08-17 03:22:00 +02:00
|
|
|
long double cur = 0;
|
|
|
|
int negative = 0;
|
|
|
|
/* skip initial whitespace */
|
|
|
|
while ((nch!=_EOF_) && _ISSPACE_(nch))
|
|
|
|
nch = _GETC_(file);
|
|
|
|
/* get sign. */
|
2002-12-20 01:35:41 +01:00
|
|
|
if (nch == '-' || nch == '+') {
|
|
|
|
negative = (nch=='-');
|
2002-08-17 03:22:00 +02:00
|
|
|
if (width>0) width--;
|
|
|
|
if (width==0) break;
|
|
|
|
nch = _GETC_(file);
|
|
|
|
}
|
|
|
|
/* get first digit. */
|
2004-05-17 21:49:44 +02:00
|
|
|
if ('.' != nch) {
|
|
|
|
if (!_ISDIGIT_(nch)) break;
|
|
|
|
cur = (nch - '0');
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
/* read until no more digits */
|
|
|
|
while (width!=0 && (nch!=_EOF_) && _ISDIGIT_(nch)) {
|
2002-12-20 01:35:41 +01:00
|
|
|
cur = cur*10 + (nch - '0');
|
2002-08-17 03:22:00 +02:00
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
2004-05-17 21:49:44 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cur = 0; /* MaxPayneDemo Fix: .8 -> 0.8 */
|
|
|
|
}
|
2002-08-17 03:22:00 +02:00
|
|
|
/* handle decimals */
|
2002-12-20 01:35:41 +01:00
|
|
|
if (width!=0 && nch == '.') {
|
2002-08-17 03:22:00 +02:00
|
|
|
float dec = 1;
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
while (width!=0 && (nch!=_EOF_) && _ISDIGIT_(nch)) {
|
|
|
|
dec /= 10;
|
2002-12-20 01:35:41 +01:00
|
|
|
cur += dec * (nch - '0');
|
2002-08-17 03:22:00 +02:00
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* handle exponent */
|
2002-12-20 01:35:41 +01:00
|
|
|
if (width!=0 && (nch == 'e' || nch == 'E')) {
|
2002-08-17 03:22:00 +02:00
|
|
|
int exponent = 0, negexp = 0;
|
|
|
|
float expcnt;
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
/* possible sign on the exponent */
|
2002-12-20 01:35:41 +01:00
|
|
|
if (width!=0 && (nch=='+' || nch=='-')) {
|
|
|
|
negexp = (nch=='-');
|
2002-08-17 03:22:00 +02:00
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
}
|
|
|
|
/* exponent digits */
|
|
|
|
while (width!=0 && (nch!=_EOF_) && _ISDIGIT_(nch)) {
|
|
|
|
exponent *= 10;
|
2002-12-20 01:35:41 +01:00
|
|
|
exponent += (nch - '0');
|
2002-08-17 03:22:00 +02:00
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
}
|
|
|
|
/* update 'cur' with this exponent. */
|
|
|
|
expcnt = negexp ? .1 : 10;
|
|
|
|
while (exponent!=0) {
|
|
|
|
if (exponent&1)
|
|
|
|
cur*=expcnt;
|
|
|
|
exponent/=2;
|
|
|
|
expcnt=expcnt*expcnt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
st = 1;
|
|
|
|
if (!suppress) {
|
|
|
|
if (L_prefix) _SET_NUMBER_(long double);
|
|
|
|
else if (l_prefix) _SET_NUMBER_(double);
|
|
|
|
else _SET_NUMBER_(float);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
/* According to
|
|
|
|
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt_scanf_type_field_characters.asp
|
|
|
|
* 's' reads a character string in a call to fscanf
|
|
|
|
* and 'S' a wide character string and vice versa in a
|
|
|
|
* call to fwscanf. The 'h', 'w' and 'l' prefixes override
|
|
|
|
* this behaviour. 'h' forces reading char * but 'l' and 'w'
|
|
|
|
* force reading WCHAR. */
|
2002-12-20 01:35:41 +01:00
|
|
|
case 's':
|
2002-08-17 03:22:00 +02:00
|
|
|
if (w_prefix || l_prefix) goto widecharstring;
|
|
|
|
else if (h_prefix) goto charstring;
|
|
|
|
#ifdef WIDE_SCANF
|
|
|
|
else goto widecharstring;
|
|
|
|
#else /* WIDE_SCANF */
|
|
|
|
else goto charstring;
|
|
|
|
#endif /* WIDE_SCANF */
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'S':
|
2002-08-17 03:22:00 +02:00
|
|
|
if (w_prefix || l_prefix) goto widecharstring;
|
|
|
|
else if (h_prefix) goto charstring;
|
|
|
|
#ifdef WIDE_SCANF
|
|
|
|
else goto charstring;
|
|
|
|
#else /* WIDE_SCANF */
|
|
|
|
else goto widecharstring;
|
|
|
|
#endif /* WIDE_SCANF */
|
|
|
|
charstring: { /* read a word into a char */
|
|
|
|
char*str = suppress ? NULL : va_arg(ap, char*);
|
|
|
|
char*sptr = str;
|
|
|
|
/* skip initial whitespace */
|
|
|
|
while ((nch!=_EOF_) && _ISSPACE_(nch))
|
|
|
|
nch = _GETC_(file);
|
|
|
|
/* read until whitespace */
|
|
|
|
while (width!=0 && (nch!=_EOF_) && !_ISSPACE_(nch)) {
|
2004-01-06 21:38:37 +01:00
|
|
|
if (!suppress) *sptr++ = _CHAR2SUPPORTED_(nch);
|
2002-08-17 03:22:00 +02:00
|
|
|
st++;
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
}
|
|
|
|
/* terminate */
|
|
|
|
if (!suppress) *sptr = 0;
|
|
|
|
}
|
|
|
|
break;
|
2002-12-19 05:21:30 +01:00
|
|
|
widecharstring: { /* read a word into a wchar_t* */
|
|
|
|
MSVCRT_wchar_t*str =
|
|
|
|
suppress ? NULL : va_arg(ap, MSVCRT_wchar_t*);
|
|
|
|
MSVCRT_wchar_t*sptr = str;
|
2002-08-17 03:22:00 +02:00
|
|
|
/* skip initial whitespace */
|
|
|
|
while ((nch!=_EOF_) && _ISSPACE_(nch))
|
|
|
|
nch = _GETC_(file);
|
|
|
|
/* read until whitespace */
|
|
|
|
while (width!=0 && (nch!=_EOF_) && !_ISSPACE_(nch)) {
|
2004-01-06 21:38:37 +01:00
|
|
|
if (!suppress) *sptr++ = _WIDE2SUPPORTED_(nch);
|
2002-08-17 03:22:00 +02:00
|
|
|
st++;
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
}
|
|
|
|
/* terminate */
|
|
|
|
if (!suppress) *sptr = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
/* 'c' and 'C work analogously to 's' and 'S' as described
|
|
|
|
* above */
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'c':
|
2002-08-17 03:22:00 +02:00
|
|
|
if (w_prefix || l_prefix) goto widecharacter;
|
|
|
|
else if (h_prefix) goto character;
|
|
|
|
#ifdef WIDE_SCANF
|
|
|
|
else goto widecharacter;
|
|
|
|
#else /* WIDE_SCANF */
|
|
|
|
else goto character;
|
|
|
|
#endif /* WIDE_SCANF */
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'C':
|
2002-08-17 03:22:00 +02:00
|
|
|
if (w_prefix || l_prefix) goto widecharacter;
|
|
|
|
else if (h_prefix) goto character;
|
|
|
|
#ifdef WIDE_SCANF
|
|
|
|
else goto character;
|
|
|
|
#else /* WIDE_SCANF */
|
|
|
|
else goto widecharacter;
|
|
|
|
#endif /* WIDE_SCANF */
|
|
|
|
character: { /* read single character into char */
|
2005-01-28 12:27:26 +01:00
|
|
|
if (nch!=_EOF_) {
|
|
|
|
if (!suppress) {
|
|
|
|
char*c = va_arg(ap, char*);
|
|
|
|
*c = _CHAR2SUPPORTED_(nch);
|
|
|
|
}
|
|
|
|
st = 1;
|
|
|
|
nch = _GETC_(file);
|
|
|
|
}
|
|
|
|
}
|
2002-08-17 03:22:00 +02:00
|
|
|
break;
|
2005-01-28 12:27:26 +01:00
|
|
|
widecharacter: { /* read single character into a wchar_t */
|
|
|
|
if (nch!=_EOF_) {
|
|
|
|
if (!suppress) {
|
|
|
|
MSVCRT_wchar_t*c = va_arg(ap, MSVCRT_wchar_t*);
|
|
|
|
*c = _WIDE2SUPPORTED_(nch);
|
|
|
|
}
|
|
|
|
nch = _GETC_(file);
|
|
|
|
st = 1;
|
|
|
|
}
|
2002-08-17 03:22:00 +02:00
|
|
|
}
|
|
|
|
break;
|
2002-12-20 01:35:41 +01:00
|
|
|
case 'n': {
|
2002-08-17 03:22:00 +02:00
|
|
|
if (!suppress) {
|
|
|
|
int*n = va_arg(ap, int*);
|
2007-01-17 05:14:27 +01:00
|
|
|
*n = consumed - 1;
|
2002-08-17 03:22:00 +02:00
|
|
|
}
|
2005-03-10 12:44:19 +01:00
|
|
|
/* This is an odd one: according to the standard,
|
|
|
|
* "Execution of a %n directive does not increment the
|
|
|
|
* assignment count returned at the completion of
|
|
|
|
* execution" even if it wasn't suppressed with the
|
|
|
|
* '*' flag. The Corrigendum to the standard seems
|
|
|
|
* to contradict this (comment out the assignment to
|
|
|
|
* suppress below if you want to implement these
|
|
|
|
* alternate semantics) but the windows program I'm
|
|
|
|
* looking at expects the behavior I've coded here
|
|
|
|
* (which happens to be what glibc does as well).
|
|
|
|
*/
|
|
|
|
suppress = 1;
|
|
|
|
st = 1;
|
2002-08-17 03:22:00 +02:00
|
|
|
}
|
|
|
|
break;
|
2002-12-20 01:35:41 +01:00
|
|
|
case '[': {
|
2002-10-15 04:20:07 +02:00
|
|
|
_CHAR_ *str = suppress ? NULL : va_arg(ap, _CHAR_*);
|
|
|
|
_CHAR_ *sptr = str;
|
|
|
|
RTL_BITMAP bitMask;
|
2004-08-23 20:52:54 +02:00
|
|
|
ULONG *Mask;
|
2002-10-15 04:20:07 +02:00
|
|
|
int invert = 0; /* Set if we are NOT to find the chars */
|
|
|
|
|
|
|
|
/* Init our bitmap */
|
2004-01-06 21:38:37 +01:00
|
|
|
Mask = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, _BITMAPSIZE_/8);
|
|
|
|
RtlInitializeBitMap(&bitMask, Mask, _BITMAPSIZE_);
|
2002-10-15 04:20:07 +02:00
|
|
|
|
|
|
|
/* Read the format */
|
|
|
|
format++;
|
|
|
|
if(*format == '^') {
|
|
|
|
invert = 1;
|
|
|
|
format++;
|
|
|
|
}
|
|
|
|
if(*format == ']') {
|
|
|
|
RtlSetBits(&bitMask, ']', 1);
|
|
|
|
format++;
|
|
|
|
}
|
|
|
|
while(*format && (*format != ']')) {
|
2004-01-06 22:36:10 +01:00
|
|
|
/* According to:
|
|
|
|
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/html/_crt_scanf_width_specification.asp
|
|
|
|
* "Note that %[a-z] and %[z-a] are interpreted as equivalent to %[abcde...z]." */
|
2002-10-15 04:20:07 +02:00
|
|
|
if((*format == '-') && (*(format + 1) != ']')) {
|
2004-01-06 22:36:10 +01:00
|
|
|
if ((*(format - 1)) < *(format + 1))
|
|
|
|
RtlSetBits(&bitMask, *(format - 1) +1 , *(format + 1) - *(format - 1));
|
|
|
|
else
|
|
|
|
RtlSetBits(&bitMask, *(format + 1) , *(format - 1) - *(format + 1));
|
2002-10-15 04:20:07 +02:00
|
|
|
format++;
|
2004-01-06 22:36:10 +01:00
|
|
|
} else
|
|
|
|
RtlSetBits(&bitMask, *format, 1);
|
2002-10-15 04:20:07 +02:00
|
|
|
format++;
|
|
|
|
}
|
|
|
|
/* read until char is not suitable */
|
|
|
|
while ((width != 0) && (nch != _EOF_)) {
|
|
|
|
if(!invert) {
|
|
|
|
if(RtlAreBitsSet(&bitMask, nch, 1)) {
|
2004-01-06 21:38:37 +01:00
|
|
|
if (!suppress) *sptr++ = _CHAR2SUPPORTED_(nch);
|
2002-10-15 04:20:07 +02:00
|
|
|
} else
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
if(RtlAreBitsClear(&bitMask, nch, 1)) {
|
2004-01-06 21:38:37 +01:00
|
|
|
if (!suppress) *sptr++ = _CHAR2SUPPORTED_(nch);
|
2002-10-15 04:20:07 +02:00
|
|
|
} else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
st++;
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (width>0) width--;
|
|
|
|
}
|
|
|
|
/* terminate */
|
|
|
|
if (!suppress) *sptr = 0;
|
|
|
|
HeapFree(GetProcessHeap(), 0, Mask);
|
|
|
|
}
|
|
|
|
break;
|
2002-12-20 01:35:41 +01:00
|
|
|
default:
|
2002-08-17 03:22:00 +02:00
|
|
|
/* From spec: "if a percent sign is followed by a character
|
|
|
|
* that has no meaning as a format-control character, that
|
|
|
|
* character and the following characters are treated as
|
|
|
|
* an ordinary sequence of characters, that is, a sequence
|
|
|
|
* of characters that must match the input. For example,
|
|
|
|
* to specify that a percent-sign character is to be input,
|
2002-12-20 01:35:41 +01:00
|
|
|
* use %%." */
|
|
|
|
while ((nch!=_EOF_) && _ISSPACE_(nch))
|
|
|
|
nch = _GETC_(file);
|
|
|
|
if (nch==*format) {
|
|
|
|
suppress = 1; /* whoops no field to be read */
|
|
|
|
st = 1; /* but we got what we expected */
|
|
|
|
nch = _GETC_(file);
|
|
|
|
}
|
|
|
|
break;
|
2002-08-17 03:22:00 +02:00
|
|
|
}
|
|
|
|
if (st && !suppress) rd++;
|
|
|
|
else if (!st) break;
|
|
|
|
}
|
|
|
|
/* a non-white-space character causes scanf to read, but not store,
|
|
|
|
* a matching non-white-space character. */
|
|
|
|
else {
|
|
|
|
/* check for character match */
|
|
|
|
if (nch == *format) {
|
|
|
|
nch = _GETC_(file);
|
|
|
|
} else break;
|
|
|
|
}
|
|
|
|
format++;
|
|
|
|
}
|
|
|
|
if (nch!=_EOF_) {
|
|
|
|
_UNGETC_(nch, file);
|
|
|
|
}
|
|
|
|
TRACE("returning %d\n", rd);
|
|
|
|
return rd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef _CHAR_
|
|
|
|
#undef _EOF_
|
2003-01-11 23:50:15 +01:00
|
|
|
#undef _EOF_RET
|
2002-08-17 03:22:00 +02:00
|
|
|
#undef _ISSPACE_
|
|
|
|
#undef _ISDIGIT_
|
2004-01-06 21:38:37 +01:00
|
|
|
#undef _CHAR2SUPPORTED_
|
|
|
|
#undef _WIDE2SUPPORTED_
|
2002-08-17 03:22:00 +02:00
|
|
|
#undef _CHAR2DIGIT_
|
|
|
|
#undef _GETC_
|
|
|
|
#undef _UNGETC_
|
|
|
|
#undef _FUNCTION_
|
2004-01-06 21:38:37 +01:00
|
|
|
#undef _BITMAPSIZE_
|