12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463 |
- // © 2016 and later: Unicode, Inc. and others.
- // License & terms of use: http://www.unicode.org/copyright.html
- /*
- *******************************************************************************
- *
- * Copyright (C) 1998-2016, International Business Machines
- * Corporation and others. All Rights Reserved.
- *
- *******************************************************************************
- *
- * File uscnnf_p.c
- *
- * Modification History:
- *
- * Date Name Description
- * 12/02/98 stephen Creation.
- * 03/13/99 stephen Modified for new C API.
- *******************************************************************************
- */
- #include "unicode/utypes.h"
- #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION
- #include "unicode/uchar.h"
- #include "unicode/ustring.h"
- #include "unicode/unum.h"
- #include "unicode/udat.h"
- #include "unicode/uset.h"
- #include "uscanf.h"
- #include "ufmt_cmn.h"
- #include "ufile.h"
- #include "locbund.h"
- #include "cmemory.h"
- #include "ustr_cnv.h"
- /* flag characters for u_scanf */
- #define FLAG_ASTERISK 0x002A
- #define FLAG_PAREN 0x0028
- #define ISFLAG(s) (s) == FLAG_ASTERISK || \
- (s) == FLAG_PAREN
- /* special characters for u_scanf */
- #define SPEC_DOLLARSIGN 0x0024
- /* unicode digits */
- #define DIGIT_ZERO 0x0030
- #define DIGIT_ONE 0x0031
- #define DIGIT_TWO 0x0032
- #define DIGIT_THREE 0x0033
- #define DIGIT_FOUR 0x0034
- #define DIGIT_FIVE 0x0035
- #define DIGIT_SIX 0x0036
- #define DIGIT_SEVEN 0x0037
- #define DIGIT_EIGHT 0x0038
- #define DIGIT_NINE 0x0039
- #define ISDIGIT(s) (s) == DIGIT_ZERO || \
- (s) == DIGIT_ONE || \
- (s) == DIGIT_TWO || \
- (s) == DIGIT_THREE || \
- (s) == DIGIT_FOUR || \
- (s) == DIGIT_FIVE || \
- (s) == DIGIT_SIX || \
- (s) == DIGIT_SEVEN || \
- (s) == DIGIT_EIGHT || \
- (s) == DIGIT_NINE
- /* u_scanf modifiers */
- #define MOD_H 0x0068
- #define MOD_LOWERL 0x006C
- #define MOD_L 0x004C
- #define ISMOD(s) (s) == MOD_H || \
- (s) == MOD_LOWERL || \
- (s) == MOD_L
- /**
- * Struct encapsulating a single uscanf format specification.
- */
- typedef struct u_scanf_spec_info {
- int32_t fWidth; /* Width */
- char16_t fSpec; /* Format specification */
- char16_t fPadChar; /* Padding character */
- UBool fSkipArg; /* true if arg should be skipped */
- UBool fIsLongDouble; /* L flag */
- UBool fIsShort; /* h flag */
- UBool fIsLong; /* l flag */
- UBool fIsLongLong; /* ll flag */
- UBool fIsString; /* true if this is a NUL-terminated string. */
- } u_scanf_spec_info;
- /**
- * Struct encapsulating a single u_scanf format specification.
- */
- typedef struct u_scanf_spec {
- u_scanf_spec_info fInfo; /* Information on this spec */
- int32_t fArgPos; /* Position of data in arg list */
- } u_scanf_spec;
- /**
- * Parse a single u_scanf format specifier in Unicode.
- * @param fmt A pointer to a '%' character in a u_scanf format specification.
- * @param spec A pointer to a <TT>u_scanf_spec</TT> to receive the parsed
- * format specifier.
- * @return The number of characters contained in this specifier.
- */
- static int32_t
- u_scanf_parse_spec (const char16_t *fmt,
- u_scanf_spec *spec)
- {
- const char16_t *s = fmt;
- const char16_t *backup;
- u_scanf_spec_info *info = &(spec->fInfo);
- /* initialize spec to default values */
- spec->fArgPos = -1;
- info->fWidth = -1;
- info->fSpec = 0x0000;
- info->fPadChar = 0x0020;
- info->fSkipArg = false;
- info->fIsLongDouble = false;
- info->fIsShort = false;
- info->fIsLong = false;
- info->fIsLongLong = false;
- info->fIsString = true;
- /* skip over the initial '%' */
- s++;
- /* Check for positional argument */
- if(ISDIGIT(*s)) {
- /* Save the current position */
- backup = s;
- /* handle positional parameters */
- if(ISDIGIT(*s)) {
- spec->fArgPos = (int) (*s++ - DIGIT_ZERO);
- while(ISDIGIT(*s)) {
- spec->fArgPos *= 10;
- spec->fArgPos += (int) (*s++ - DIGIT_ZERO);
- }
- }
- /* if there is no '$', don't read anything */
- if(*s != SPEC_DOLLARSIGN) {
- spec->fArgPos = -1;
- s = backup;
- }
- /* munge the '$' */
- else
- s++;
- }
- /* Get any format flags */
- while(ISFLAG(*s)) {
- switch(*s++) {
- /* skip argument */
- case FLAG_ASTERISK:
- info->fSkipArg = true;
- break;
- /* pad character specified */
- case FLAG_PAREN:
- /* first four characters are hex values for pad char */
- info->fPadChar = (char16_t)ufmt_digitvalue(*s++);
- info->fPadChar = (char16_t)((info->fPadChar * 16) + ufmt_digitvalue(*s++));
- info->fPadChar = (char16_t)((info->fPadChar * 16) + ufmt_digitvalue(*s++));
- info->fPadChar = (char16_t)((info->fPadChar * 16) + ufmt_digitvalue(*s++));
- /* final character is ignored */
- s++;
- break;
- }
- }
- /* Get the width */
- if(ISDIGIT(*s)){
- info->fWidth = (int) (*s++ - DIGIT_ZERO);
- while(ISDIGIT(*s)) {
- info->fWidth *= 10;
- info->fWidth += (int) (*s++ - DIGIT_ZERO);
- }
- }
- /* Get any modifiers */
- if(ISMOD(*s)) {
- switch(*s++) {
- /* short */
- case MOD_H:
- info->fIsShort = true;
- break;
- /* long or long long */
- case MOD_LOWERL:
- if(*s == MOD_LOWERL) {
- info->fIsLongLong = true;
- /* skip over the next 'l' */
- s++;
- }
- else
- info->fIsLong = true;
- break;
- /* long double */
- case MOD_L:
- info->fIsLongDouble = true;
- break;
- }
- }
- /* finally, get the specifier letter */
- info->fSpec = *s++;
- /* return # of characters in this specifier */
- return (int32_t)(s - fmt);
- }
- #define UP_PERCENT 0x0025
- /* ANSI style formatting */
- /* Use US-ASCII characters only for formatting */
- /* % */
- #define UFMT_SIMPLE_PERCENT {ufmt_simple_percent, u_scanf_simple_percent_handler}
- /* s */
- #define UFMT_STRING {ufmt_string, u_scanf_string_handler}
- /* c */
- #define UFMT_CHAR {ufmt_string, u_scanf_char_handler}
- /* d, i */
- #define UFMT_INT {ufmt_int, u_scanf_integer_handler}
- /* u */
- #define UFMT_UINT {ufmt_int, u_scanf_uinteger_handler}
- /* o */
- #define UFMT_OCTAL {ufmt_int, u_scanf_octal_handler}
- /* x, X */
- #define UFMT_HEX {ufmt_int, u_scanf_hex_handler}
- /* f */
- #define UFMT_DOUBLE {ufmt_double, u_scanf_double_handler}
- /* e, E */
- #define UFMT_SCIENTIFIC {ufmt_double, u_scanf_scientific_handler}
- /* g, G */
- #define UFMT_SCIDBL {ufmt_double, u_scanf_scidbl_handler}
- /* n */
- #define UFMT_COUNT {ufmt_count, u_scanf_count_handler}
- /* [ */
- #define UFMT_SCANSET {ufmt_string, u_scanf_scanset_handler}
- /* non-ANSI extensions */
- /* Use US-ASCII characters only for formatting */
- /* p */
- #define UFMT_POINTER {ufmt_pointer, u_scanf_pointer_handler}
- /* V */
- #define UFMT_SPELLOUT {ufmt_double, u_scanf_spellout_handler}
- /* P */
- #define UFMT_PERCENT {ufmt_double, u_scanf_percent_handler}
- /* C K is old format */
- #define UFMT_UCHAR {ufmt_uchar, u_scanf_uchar_handler}
- /* S U is old format */
- #define UFMT_USTRING {ufmt_ustring, u_scanf_ustring_handler}
- #define UFMT_EMPTY {ufmt_empty, nullptr}
- /**
- * A u_scanf handler function.
- * A u_scanf handler is responsible for handling a single u_scanf
- * format specification, for example 'd' or 's'.
- * @param stream The UFILE to which to write output.
- * @param info A pointer to a <TT>u_scanf_spec_info</TT> struct containing
- * information on the format specification.
- * @param args A pointer to the argument data
- * @param fmt A pointer to the first character in the format string
- * following the spec.
- * @param fmtConsumed On output, set to the number of characters consumed
- * in <TT>fmt</TT>. Do nothing, if the argument isn't variable width.
- * @param argConverted The number of arguments converted and assigned, or -1 if an
- * error occurred.
- * @return The number of code points consumed during reading.
- */
- typedef int32_t (*u_scanf_handler) (UFILE *stream,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted);
- typedef struct u_scanf_info {
- ufmt_type_info info;
- u_scanf_handler handler;
- } u_scanf_info;
- #define USCANF_NUM_FMT_HANDLERS 108
- #define USCANF_SYMBOL_BUFFER_SIZE 8
- /* We do not use handlers for 0-0x1f */
- #define USCANF_BASE_FMT_HANDLERS 0x20
- static int32_t
- u_scanf_skip_leading_ws(UFILE *input,
- char16_t pad)
- {
- char16_t c;
- int32_t count = 0;
- UBool isNotEOF;
- /* skip all leading ws in the input */
- while( ((isNotEOF = ufile_getch(input, &c))==(UBool)true) && (c == pad || u_isWhitespace(c)) )
- {
- count++;
- }
- /* put the final character back on the input */
- if(isNotEOF)
- u_fungetc(c, input);
- return count;
- }
- /* TODO: Is always skipping the prefix symbol as a positive sign a good idea in all locales? */
- static int32_t
- u_scanf_skip_leading_positive_sign(UFILE *input,
- UNumberFormat *format,
- UErrorCode *status)
- {
- char16_t c;
- int32_t count = 0;
- UBool isNotEOF;
- char16_t plusSymbol[USCANF_SYMBOL_BUFFER_SIZE];
- int32_t symbolLen;
- UErrorCode localStatus = U_ZERO_ERROR;
- if (U_SUCCESS(*status)) {
- symbolLen = unum_getSymbol(format,
- UNUM_PLUS_SIGN_SYMBOL,
- plusSymbol,
- UPRV_LENGTHOF(plusSymbol),
- &localStatus);
- if (U_SUCCESS(localStatus)) {
- /* skip all leading ws in the input */
- while( ((isNotEOF = ufile_getch(input, &c))==(UBool)true) && (count < symbolLen && c == plusSymbol[count]) )
- {
- count++;
- }
- /* put the final character back on the input */
- if(isNotEOF) {
- u_fungetc(c, input);
- }
- }
- }
- return count;
- }
- static int32_t
- u_scanf_simple_percent_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)info;
- (void)args;
- (void)fmt;
- (void)fmtConsumed;
- /* make sure the next character in the input is a percent */
- *argConverted = 0;
- if(u_fgetc(input) != 0x0025) {
- *argConverted = -1;
- }
- return 1;
- }
- static int32_t
- u_scanf_count_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)input;
- (void)fmt;
- (void)fmtConsumed;
- /* in the special case of count, the u_scanf_spec_info's width */
- /* will contain the # of items converted thus far */
- if (!info->fSkipArg) {
- if (info->fIsShort)
- *(int16_t*)(args[0].ptrValue) = (int16_t)(UINT16_MAX & info->fWidth);
- else if (info->fIsLongLong)
- *(int64_t*)(args[0].ptrValue) = info->fWidth;
- else
- *(int32_t*)(args[0].ptrValue) = (int32_t)(UINT32_MAX & info->fWidth);
- }
- *argConverted = 0;
- /* we converted 0 args */
- return 0;
- }
- static int32_t
- u_scanf_double_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- int32_t len;
- double num;
- UNumberFormat *format;
- int32_t parsePos = 0;
- int32_t skipped;
- UErrorCode status = U_ZERO_ERROR;
- /* skip all ws in the input */
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- /* fill the input's internal buffer */
- ufile_fill_uchar_buffer(input);
- /* determine the size of the input's buffer */
- len = (int32_t)(input->str.fLimit - input->str.fPos);
- /* truncate to the width, if specified */
- if(info->fWidth != -1)
- len = ufmt_min(len, info->fWidth);
- /* get the formatter */
- format = u_locbund_getNumberFormat(&input->str.fBundle, UNUM_DECIMAL);
- /* handle error */
- if(format == 0)
- return 0;
- /* Skip the positive prefix. ICU normally can't handle this due to strict parsing. */
- skipped += u_scanf_skip_leading_positive_sign(input, format, &status);
- /* parse the number */
- num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
- if (!info->fSkipArg) {
- if (info->fIsLong)
- *(double*)(args[0].ptrValue) = num;
- else if (info->fIsLongDouble)
- *(long double*)(args[0].ptrValue) = num;
- else
- *(float*)(args[0].ptrValue) = (float)num;
- }
- /* mask off any necessary bits */
- /* if(! info->fIsLong_double)
- num &= DBL_MAX;*/
- /* update the input's position to reflect consumed data */
- input->str.fPos += parsePos;
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return parsePos + skipped;
- }
- #define UPRINTF_SYMBOL_BUFFER_SIZE 8
- static int32_t
- u_scanf_scientific_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- int32_t len;
- double num;
- UNumberFormat *format;
- int32_t parsePos = 0;
- int32_t skipped;
- UErrorCode status = U_ZERO_ERROR;
- char16_t srcExpBuf[UPRINTF_SYMBOL_BUFFER_SIZE];
- int32_t srcLen, expLen;
- char16_t expBuf[UPRINTF_SYMBOL_BUFFER_SIZE];
- /* skip all ws in the input */
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- /* fill the input's internal buffer */
- ufile_fill_uchar_buffer(input);
- /* determine the size of the input's buffer */
- len = (int32_t)(input->str.fLimit - input->str.fPos);
- /* truncate to the width, if specified */
- if(info->fWidth != -1)
- len = ufmt_min(len, info->fWidth);
- /* get the formatter */
- format = u_locbund_getNumberFormat(&input->str.fBundle, UNUM_SCIENTIFIC);
- /* handle error */
- if(format == 0)
- return 0;
- /* set the appropriate flags on the formatter */
- srcLen = unum_getSymbol(format,
- UNUM_EXPONENTIAL_SYMBOL,
- srcExpBuf,
- sizeof(srcExpBuf),
- &status);
- /* Upper/lower case the e */
- if (info->fSpec == (char16_t)0x65 /* e */) {
- expLen = u_strToLower(expBuf, (int32_t)sizeof(expBuf),
- srcExpBuf, srcLen,
- input->str.fBundle.fLocale,
- &status);
- }
- else {
- expLen = u_strToUpper(expBuf, (int32_t)sizeof(expBuf),
- srcExpBuf, srcLen,
- input->str.fBundle.fLocale,
- &status);
- }
- unum_setSymbol(format,
- UNUM_EXPONENTIAL_SYMBOL,
- expBuf,
- expLen,
- &status);
- /* Skip the positive prefix. ICU normally can't handle this due to strict parsing. */
- skipped += u_scanf_skip_leading_positive_sign(input, format, &status);
- /* parse the number */
- num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
- if (!info->fSkipArg) {
- if (info->fIsLong)
- *(double*)(args[0].ptrValue) = num;
- else if (info->fIsLongDouble)
- *(long double*)(args[0].ptrValue) = num;
- else
- *(float*)(args[0].ptrValue) = (float)num;
- }
- /* mask off any necessary bits */
- /* if(! info->fIsLong_double)
- num &= DBL_MAX;*/
- /* update the input's position to reflect consumed data */
- input->str.fPos += parsePos;
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return parsePos + skipped;
- }
- static int32_t
- u_scanf_scidbl_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- int32_t len;
- double num;
- UNumberFormat *scientificFormat, *genericFormat;
- /*int32_t scientificResult, genericResult;*/
- double scientificResult, genericResult;
- int32_t scientificParsePos = 0, genericParsePos = 0, parsePos = 0;
- int32_t skipped;
- UErrorCode scientificStatus = U_ZERO_ERROR;
- UErrorCode genericStatus = U_ZERO_ERROR;
- /* since we can't determine by scanning the characters whether */
- /* a number was formatted in the 'f' or 'g' styles, parse the */
- /* string with both formatters, and assume whichever one */
- /* parsed the most is the correct formatter to use */
- /* skip all ws in the input */
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- /* fill the input's internal buffer */
- ufile_fill_uchar_buffer(input);
- /* determine the size of the input's buffer */
- len = (int32_t)(input->str.fLimit - input->str.fPos);
- /* truncate to the width, if specified */
- if(info->fWidth != -1)
- len = ufmt_min(len, info->fWidth);
- /* get the formatters */
- scientificFormat = u_locbund_getNumberFormat(&input->str.fBundle, UNUM_SCIENTIFIC);
- genericFormat = u_locbund_getNumberFormat(&input->str.fBundle, UNUM_DECIMAL);
- /* handle error */
- if(scientificFormat == 0 || genericFormat == 0)
- return 0;
- /* Skip the positive prefix. ICU normally can't handle this due to strict parsing. */
- skipped += u_scanf_skip_leading_positive_sign(input, genericFormat, &genericStatus);
- /* parse the number using each format*/
- scientificResult = unum_parseDouble(scientificFormat, input->str.fPos, len,
- &scientificParsePos, &scientificStatus);
- genericResult = unum_parseDouble(genericFormat, input->str.fPos, len,
- &genericParsePos, &genericStatus);
- /* determine which parse made it farther */
- if(scientificParsePos > genericParsePos) {
- /* stash the result in num */
- num = scientificResult;
- /* update the input's position to reflect consumed data */
- parsePos += scientificParsePos;
- }
- else {
- /* stash the result in num */
- num = genericResult;
- /* update the input's position to reflect consumed data */
- parsePos += genericParsePos;
- }
- input->str.fPos += parsePos;
- if (!info->fSkipArg) {
- if (info->fIsLong)
- *(double*)(args[0].ptrValue) = num;
- else if (info->fIsLongDouble)
- *(long double*)(args[0].ptrValue) = num;
- else
- *(float*)(args[0].ptrValue) = (float)num;
- }
- /* mask off any necessary bits */
- /* if(! info->fIsLong_double)
- num &= DBL_MAX;*/
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return parsePos + skipped;
- }
- static int32_t
- u_scanf_integer_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- int32_t len;
- void *num = (void*) (args[0].ptrValue);
- UNumberFormat *format, *localFormat;
- int32_t parsePos = 0;
- int32_t skipped;
- int32_t parseIntOnly = 0;
- UErrorCode status = U_ZERO_ERROR;
- int64_t result;
- /* skip all ws in the input */
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- /* fill the input's internal buffer */
- ufile_fill_uchar_buffer(input);
- /* determine the size of the input's buffer */
- len = (int32_t)(input->str.fLimit - input->str.fPos);
- /* truncate to the width, if specified */
- if(info->fWidth != -1)
- len = ufmt_min(len, info->fWidth);
- /* get the formatter */
- format = u_locbund_getNumberFormat(&input->str.fBundle, UNUM_DECIMAL);
- /* handle error */
- if(format == 0)
- return 0;
- /* for integer types, do not attempt to parse fractions */
- localFormat = unum_clone(format, &status);
- if(U_FAILURE(status))
- return 0;
- if(info->fSpec == 'd' || info->fSpec == 'i' || info->fSpec == 'u')
- parseIntOnly = 1;
- unum_setAttribute(localFormat, UNUM_PARSE_INT_ONLY, parseIntOnly);
- /* Skip the positive prefix. ICU normally can't handle this due to strict parsing. */
- skipped += u_scanf_skip_leading_positive_sign(input, localFormat, &status);
- /* parse the number */
- result = unum_parseInt64(localFormat, input->str.fPos, len, &parsePos, &status);
- /* mask off any necessary bits */
- if (!info->fSkipArg) {
- if (info->fIsShort)
- *(int16_t*)num = (int16_t)(UINT16_MAX & result);
- else if (info->fIsLongLong)
- *(int64_t*)num = result;
- else
- *(int32_t*)num = (int32_t)(UINT32_MAX & result);
- }
- /* update the input's position to reflect consumed data */
- input->str.fPos += parsePos;
- /* cleanup cloned formatter */
- unum_close(localFormat);
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return parsePos + skipped;
- }
- static int32_t
- u_scanf_uinteger_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- /* TODO Fix this when Numberformat handles uint64_t */
- return u_scanf_integer_handler(input, info, args, fmt, fmtConsumed, argConverted);
- }
- static int32_t
- u_scanf_percent_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- int32_t len;
- double num;
- UNumberFormat *format;
- int32_t parsePos = 0;
- UErrorCode status = U_ZERO_ERROR;
- /* skip all ws in the input */
- u_scanf_skip_leading_ws(input, info->fPadChar);
- /* fill the input's internal buffer */
- ufile_fill_uchar_buffer(input);
- /* determine the size of the input's buffer */
- len = (int32_t)(input->str.fLimit - input->str.fPos);
- /* truncate to the width, if specified */
- if(info->fWidth != -1)
- len = ufmt_min(len, info->fWidth);
- /* get the formatter */
- format = u_locbund_getNumberFormat(&input->str.fBundle, UNUM_PERCENT);
- /* handle error */
- if(format == 0)
- return 0;
- /* Skip the positive prefix. ICU normally can't handle this due to strict parsing. */
- u_scanf_skip_leading_positive_sign(input, format, &status);
- /* parse the number */
- num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
- if (!info->fSkipArg) {
- *(double*)(args[0].ptrValue) = num;
- }
- /* mask off any necessary bits */
- /* if(! info->fIsLong_double)
- num &= DBL_MAX;*/
- /* update the input's position to reflect consumed data */
- input->str.fPos += parsePos;
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return parsePos;
- }
- static int32_t
- u_scanf_string_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- const char16_t *source;
- UConverter *conv;
- char *arg = (char*)(args[0].ptrValue);
- char *alias = arg;
- char *limit;
- UErrorCode status = U_ZERO_ERROR;
- int32_t count;
- int32_t skipped = 0;
- char16_t c;
- UBool isNotEOF = false;
- /* skip all ws in the input */
- if (info->fIsString) {
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- }
- /* get the string one character at a time, truncating to the width */
- count = 0;
- /* open the default converter */
- conv = u_getDefaultConverter(&status);
- if(U_FAILURE(status))
- return -1;
- while( (info->fWidth == -1 || count < info->fWidth)
- && ((isNotEOF = ufile_getch(input, &c))==(UBool)true)
- && (!info->fIsString || (c != info->fPadChar && !u_isWhitespace(c))))
- {
- if (!info->fSkipArg) {
- /* put the character from the input onto the target */
- source = &c;
- /* Since we do this one character at a time, do it this way. */
- if (info->fWidth > 0) {
- limit = alias + info->fWidth - count;
- }
- else {
- limit = alias + ucnv_getMaxCharSize(conv);
- }
- /* convert the character to the default codepage */
- ucnv_fromUnicode(conv, &alias, limit, &source, source + 1,
- nullptr, true, &status);
- if(U_FAILURE(status)) {
- /* clean up */
- u_releaseDefaultConverter(conv);
- return -1;
- }
- }
- /* increment the count */
- ++count;
- }
- /* put the final character we read back on the input */
- if (!info->fSkipArg) {
- if ((info->fWidth == -1 || count < info->fWidth) && isNotEOF)
- u_fungetc(c, input);
- /* add the terminator */
- if (info->fIsString) {
- *alias = 0x00;
- }
- }
- /* clean up */
- u_releaseDefaultConverter(conv);
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return count + skipped;
- }
- static int32_t
- u_scanf_char_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- if (info->fWidth < 0) {
- info->fWidth = 1;
- }
- info->fIsString = false;
- return u_scanf_string_handler(input, info, args, fmt, fmtConsumed, argConverted);
- }
- static int32_t
- u_scanf_ustring_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- char16_t *arg = (char16_t*)(args[0].ptrValue);
- char16_t *alias = arg;
- int32_t count;
- int32_t skipped = 0;
- char16_t c;
- UBool isNotEOF = false;
- /* skip all ws in the input */
- if (info->fIsString) {
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- }
- /* get the string one character at a time, truncating to the width */
- count = 0;
- while( (info->fWidth == -1 || count < info->fWidth)
- && ((isNotEOF = ufile_getch(input, &c))==(UBool)true)
- && (!info->fIsString || (c != info->fPadChar && !u_isWhitespace(c))))
- {
- /* put the character from the input onto the target */
- if (!info->fSkipArg) {
- *alias++ = c;
- }
- /* increment the count */
- ++count;
- }
- /* put the final character we read back on the input */
- if (!info->fSkipArg) {
- if((info->fWidth == -1 || count < info->fWidth) && isNotEOF) {
- u_fungetc(c, input);
- }
- /* add the terminator */
- if (info->fIsString) {
- *alias = 0x0000;
- }
- }
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return count + skipped;
- }
- static int32_t
- u_scanf_uchar_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- if (info->fWidth < 0) {
- info->fWidth = 1;
- }
- info->fIsString = false;
- return u_scanf_ustring_handler(input, info, args, fmt, fmtConsumed, argConverted);
- }
- static int32_t
- u_scanf_spellout_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- int32_t len;
- double num;
- UNumberFormat *format;
- int32_t parsePos = 0;
- int32_t skipped;
- UErrorCode status = U_ZERO_ERROR;
- /* skip all ws in the input */
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- /* fill the input's internal buffer */
- ufile_fill_uchar_buffer(input);
- /* determine the size of the input's buffer */
- len = (int32_t)(input->str.fLimit - input->str.fPos);
- /* truncate to the width, if specified */
- if(info->fWidth != -1)
- len = ufmt_min(len, info->fWidth);
- /* get the formatter */
- format = u_locbund_getNumberFormat(&input->str.fBundle, UNUM_SPELLOUT);
- /* handle error */
- if(format == 0)
- return 0;
- /* Skip the positive prefix. ICU normally can't handle this due to strict parsing. */
- /* This is not applicable to RBNF. */
- /*skipped += u_scanf_skip_leading_positive_sign(input, format, &status);*/
- /* parse the number */
- num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
- if (!info->fSkipArg) {
- *(double*)(args[0].ptrValue) = num;
- }
- /* mask off any necessary bits */
- /* if(! info->fIsLong_double)
- num &= DBL_MAX;*/
- /* update the input's position to reflect consumed data */
- input->str.fPos += parsePos;
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return parsePos + skipped;
- }
- static int32_t
- u_scanf_hex_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- int32_t len;
- int32_t skipped;
- void *num = (void*) (args[0].ptrValue);
- int64_t result;
- /* skip all ws in the input */
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- /* fill the input's internal buffer */
- ufile_fill_uchar_buffer(input);
- /* determine the size of the input's buffer */
- len = (int32_t)(input->str.fLimit - input->str.fPos);
- /* truncate to the width, if specified */
- if(info->fWidth != -1)
- len = ufmt_min(len, info->fWidth);
- /* check for alternate form */
- if( *(input->str.fPos) == 0x0030 &&
- (*(input->str.fPos + 1) == 0x0078 || *(input->str.fPos + 1) == 0x0058) ) {
- /* skip the '0' and 'x' or 'X' if present */
- input->str.fPos += 2;
- len -= 2;
- }
- /* parse the number */
- result = ufmt_uto64(input->str.fPos, &len, 16);
- /* update the input's position to reflect consumed data */
- input->str.fPos += len;
- /* mask off any necessary bits */
- if (!info->fSkipArg) {
- if (info->fIsShort)
- *(int16_t*)num = (int16_t)(UINT16_MAX & result);
- else if (info->fIsLongLong)
- *(int64_t*)num = result;
- else
- *(int32_t*)num = (int32_t)(UINT32_MAX & result);
- }
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return len + skipped;
- }
- static int32_t
- u_scanf_octal_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- int32_t len;
- int32_t skipped;
- void *num = (void*) (args[0].ptrValue);
- int64_t result;
- /* skip all ws in the input */
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- /* fill the input's internal buffer */
- ufile_fill_uchar_buffer(input);
- /* determine the size of the input's buffer */
- len = (int32_t)(input->str.fLimit - input->str.fPos);
- /* truncate to the width, if specified */
- if(info->fWidth != -1)
- len = ufmt_min(len, info->fWidth);
- /* parse the number */
- result = ufmt_uto64(input->str.fPos, &len, 8);
- /* update the input's position to reflect consumed data */
- input->str.fPos += len;
- /* mask off any necessary bits */
- if (!info->fSkipArg) {
- if (info->fIsShort)
- *(int16_t*)num = (int16_t)(UINT16_MAX & result);
- else if (info->fIsLongLong)
- *(int64_t*)num = result;
- else
- *(int32_t*)num = (int32_t)(UINT32_MAX & result);
- }
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return len + skipped;
- }
- static int32_t
- u_scanf_pointer_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- (void)fmt;
- (void)fmtConsumed;
- int32_t len;
- int32_t skipped;
- void *result;
- void **p = (void**)(args[0].ptrValue);
- /* skip all ws in the input */
- skipped = u_scanf_skip_leading_ws(input, info->fPadChar);
- /* fill the input's internal buffer */
- ufile_fill_uchar_buffer(input);
- /* determine the size of the input's buffer */
- len = (int32_t)(input->str.fLimit - input->str.fPos);
- /* truncate to the width, if specified */
- if(info->fWidth != -1) {
- len = ufmt_min(len, info->fWidth);
- }
- /* Make sure that we don't consume too much */
- if (len > (int32_t)(sizeof(void*)*2)) {
- len = (int32_t)(sizeof(void*)*2);
- }
- /* parse the pointer - assign to temporary value */
- result = ufmt_utop(input->str.fPos, &len);
- if (!info->fSkipArg) {
- *p = result;
- }
- /* update the input's position to reflect consumed data */
- input->str.fPos += len;
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return len + skipped;
- }
- static int32_t
- u_scanf_scanset_handler(UFILE *input,
- u_scanf_spec_info *info,
- ufmt_args *args,
- const char16_t *fmt,
- int32_t *fmtConsumed,
- int32_t *argConverted)
- {
- USet *scanset;
- UErrorCode status = U_ZERO_ERROR;
- int32_t chLeft = INT32_MAX;
- UChar32 c;
- char16_t *alias = (char16_t*) (args[0].ptrValue);
- UBool isNotEOF = false;
- UBool readCharacter = false;
- /* Create an empty set */
- scanset = uset_open(0, -1);
- /* Back up one to get the [ */
- fmt--;
- /* truncate to the width, if specified and alias the target */
- if(info->fWidth >= 0) {
- chLeft = info->fWidth;
- }
- /* parse the scanset from the fmt string */
- *fmtConsumed = uset_applyPattern(scanset, fmt, -1, 0, &status);
- /* verify that the parse was successful */
- if (U_SUCCESS(status)) {
- c=0;
- /* grab characters one at a time and make sure they are in the scanset */
- while(chLeft > 0) {
- if ( ((isNotEOF = ufile_getch32(input, &c))==(UBool)true) && uset_contains(scanset, c) ) {
- readCharacter = true;
- if (!info->fSkipArg) {
- int32_t idx = 0;
- UBool isError = false;
- U16_APPEND(alias, idx, chLeft, c, isError);
- if (isError) {
- break;
- }
- alias += idx;
- }
- chLeft -= (1 + U_IS_SUPPLEMENTARY(c));
- }
- else {
- /* if the character's not in the scanset, break out */
- break;
- }
- }
- /* put the final character we read back on the input */
- if(isNotEOF && chLeft > 0) {
- u_fungetc(c, input);
- }
- }
- uset_close(scanset);
- /* if we didn't match at least 1 character, fail */
- if(!readCharacter)
- return -1;
- /* otherwise, add the terminator */
- else if (!info->fSkipArg) {
- *alias = 0x00;
- }
- /* we converted 1 arg */
- *argConverted = !info->fSkipArg;
- return (info->fWidth >= 0 ? info->fWidth : INT32_MAX) - chLeft;
- }
- /* Use US-ASCII characters only for formatting. Most codepages have
- characters 20-7F from Unicode. Using any other codepage specific
- characters will make it very difficult to format the string on
- non-Unicode machines */
- static const u_scanf_info g_u_scanf_infos[USCANF_NUM_FMT_HANDLERS] = {
- /* 0x20 */
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- UFMT_EMPTY, UFMT_SIMPLE_PERCENT,UFMT_EMPTY, UFMT_EMPTY,
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- /* 0x30 */
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- /* 0x40 */
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_UCHAR,
- UFMT_EMPTY, UFMT_SCIENTIFIC, UFMT_EMPTY, UFMT_SCIDBL,
- #ifdef U_USE_OBSOLETE_IO_FORMATTING
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_UCHAR/*deprecated*/,
- #else
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- #endif
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- /* 0x50 */
- UFMT_PERCENT, UFMT_EMPTY, UFMT_EMPTY, UFMT_USTRING,
- #ifdef U_USE_OBSOLETE_IO_FORMATTING
- UFMT_EMPTY, UFMT_USTRING/*deprecated*/,UFMT_SPELLOUT, UFMT_EMPTY,
- #else
- UFMT_EMPTY, UFMT_EMPTY, UFMT_SPELLOUT, UFMT_EMPTY,
- #endif
- UFMT_HEX, UFMT_EMPTY, UFMT_EMPTY, UFMT_SCANSET,
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- /* 0x60 */
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_CHAR,
- UFMT_INT, UFMT_SCIENTIFIC, UFMT_DOUBLE, UFMT_SCIDBL,
- UFMT_EMPTY, UFMT_INT, UFMT_EMPTY, UFMT_EMPTY,
- UFMT_EMPTY, UFMT_EMPTY, UFMT_COUNT, UFMT_OCTAL,
- /* 0x70 */
- UFMT_POINTER, UFMT_EMPTY, UFMT_EMPTY, UFMT_STRING,
- UFMT_EMPTY, UFMT_UINT, UFMT_EMPTY, UFMT_EMPTY,
- UFMT_HEX, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
- };
- U_CFUNC int32_t
- u_scanf_parse(UFILE *f,
- const char16_t *patternSpecification,
- va_list ap)
- {
- const char16_t *alias;
- int32_t count, converted, argConsumed, cpConsumed;
- uint16_t handlerNum;
- ufmt_args args;
- u_scanf_spec spec;
- ufmt_type_info info;
- u_scanf_handler handler;
- /* alias the pattern */
- alias = patternSpecification;
- /* haven't converted anything yet */
- argConsumed = 0;
- converted = 0;
- cpConsumed = 0;
- /* iterate through the pattern */
- for(;;) {
- /* match any characters up to the next '%' */
- while(*alias != UP_PERCENT && *alias != 0x0000 && u_fgetc(f) == *alias) {
- alias++;
- }
- /* if we aren't at a '%', or if we're at end of string, break*/
- if(*alias != UP_PERCENT || *alias == 0x0000)
- break;
- /* parse the specifier */
- count = u_scanf_parse_spec(alias, &spec);
- /* update the pointer in pattern */
- alias += count;
- handlerNum = (uint16_t)(spec.fInfo.fSpec - USCANF_BASE_FMT_HANDLERS);
- if (handlerNum < USCANF_NUM_FMT_HANDLERS) {
- /* skip the argument, if necessary */
- /* query the info function for argument information */
- info = g_u_scanf_infos[ handlerNum ].info;
- if (info != ufmt_count && u_feof(f)) {
- break;
- }
- else if(spec.fInfo.fSkipArg) {
- args.ptrValue = nullptr;
- }
- else {
- switch(info) {
- case ufmt_count:
- /* set the spec's width to the # of items converted */
- spec.fInfo.fWidth = cpConsumed;
- U_FALLTHROUGH;
- case ufmt_char:
- case ufmt_uchar:
- case ufmt_int:
- case ufmt_string:
- case ufmt_ustring:
- case ufmt_pointer:
- case ufmt_float:
- case ufmt_double:
- args.ptrValue = va_arg(ap, void*);
- break;
- default:
- /* else args is ignored */
- args.ptrValue = nullptr;
- break;
- }
- }
- /* call the handler function */
- handler = g_u_scanf_infos[ handlerNum ].handler;
- if(handler != 0) {
- /* reset count to 1 so that += for alias works. */
- count = 1;
- cpConsumed += (*handler)(f, &spec.fInfo, &args, alias, &count, &argConsumed);
- /* if the handler encountered an error condition, break */
- if(argConsumed < 0) {
- converted = -1;
- break;
- }
- /* add to the # of items converted */
- converted += argConsumed;
- /* update the pointer in pattern */
- alias += count-1;
- }
- /* else do nothing */
- }
- /* else do nothing */
- /* just ignore unknown tags */
- }
- /* return # of items converted */
- return converted;
- }
- #endif /* #if !UCONFIG_NO_FORMATTING */
|