1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
// © 2018 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#include <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_FORMATTING
// Allow implicit conversion from char16_t* to UnicodeString for this file:
// Helpful in toString methods and elsewhere.
#define UNISTR_FROM_STRING_EXPLICIT
#include "numparse_types.h"
#include "numparse_validators.h"
#include "static_unicode_sets.h"
using namespace icu;
using namespace icu::numparse;
using namespace icu::numparse::impl;
void RequireAffixValidator::postProcess(ParsedNumber& result) const {
if (result.prefix.isBogus() || result.suffix.isBogus()) {
// We saw a prefix or a suffix but not both. Fail the parse.
result.flags |= FLAG_FAIL;
}
}
UnicodeString RequireAffixValidator::toString() const {
return u"<ReqAffix>";
}
void RequireCurrencyValidator::postProcess(ParsedNumber& result) const {
if (result.currencyCode[0] == 0) {
result.flags |= FLAG_FAIL;
}
}
UnicodeString RequireCurrencyValidator::toString() const {
return u"<ReqCurrency>";
}
RequireDecimalSeparatorValidator::RequireDecimalSeparatorValidator(bool patternHasDecimalSeparator)
: fPatternHasDecimalSeparator(patternHasDecimalSeparator) {
}
void RequireDecimalSeparatorValidator::postProcess(ParsedNumber& result) const {
bool parseHasDecimalSeparator = 0 != (result.flags & FLAG_HAS_DECIMAL_SEPARATOR);
if (parseHasDecimalSeparator != fPatternHasDecimalSeparator) {
result.flags |= FLAG_FAIL;
}
}
UnicodeString RequireDecimalSeparatorValidator::toString() const {
return u"<ReqDecimal>";
}
void RequireNumberValidator::postProcess(ParsedNumber& result) const {
// Require that a number is matched.
if (!result.seenNumber()) {
result.flags |= FLAG_FAIL;
}
}
UnicodeString RequireNumberValidator::toString() const {
return u"<ReqNumber>";
}
MultiplierParseHandler::MultiplierParseHandler(::icu::number::Scale multiplier)
: fMultiplier(std::move(multiplier)) {}
void MultiplierParseHandler::postProcess(ParsedNumber& result) const {
if (!result.quantity.bogus) {
fMultiplier.applyReciprocalTo(result.quantity);
// NOTE: It is okay if the multiplier was negative.
}
}
UnicodeString MultiplierParseHandler::toString() const {
return u"<Scale>";
}
#endif /* #if !UCONFIG_NO_FORMATTING */
|