diff options
author | mcheshkov <mcheshkov@yandex-team.ru> | 2022-02-10 16:46:16 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:16 +0300 |
commit | 1312621288956f199a5bd5342b0133d4395fa725 (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/libs/icu/i18n/number_integerwidth.cpp | |
parent | e9d19cec64684c9c1e6b0c98297e5b895cf904fe (diff) | |
download | ydb-1312621288956f199a5bd5342b0133d4395fa725.tar.gz |
Restoring authorship annotation for <mcheshkov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/icu/i18n/number_integerwidth.cpp')
-rw-r--r-- | contrib/libs/icu/i18n/number_integerwidth.cpp | 136 |
1 files changed, 68 insertions, 68 deletions
diff --git a/contrib/libs/icu/i18n/number_integerwidth.cpp b/contrib/libs/icu/i18n/number_integerwidth.cpp index 1efb63de75..d62aef444d 100644 --- a/contrib/libs/icu/i18n/number_integerwidth.cpp +++ b/contrib/libs/icu/i18n/number_integerwidth.cpp @@ -1,68 +1,68 @@ -// © 2017 and later: Unicode, Inc. and others. -// License & terms of use: http://www.unicode.org/copyright.html - -#include "unicode/utypes.h" - -#if !UCONFIG_NO_FORMATTING - -#include "unicode/numberformatter.h" -#include "number_types.h" -#include "number_decimalquantity.h" - -using namespace icu; -using namespace icu::number; -using namespace icu::number::impl; - -IntegerWidth::IntegerWidth(digits_t minInt, digits_t maxInt, bool formatFailIfMoreThanMaxDigits) { - fUnion.minMaxInt.fMinInt = minInt; - fUnion.minMaxInt.fMaxInt = maxInt; - fUnion.minMaxInt.fFormatFailIfMoreThanMaxDigits = formatFailIfMoreThanMaxDigits; -} - -IntegerWidth IntegerWidth::zeroFillTo(int32_t minInt) { - if (minInt >= 0 && minInt <= kMaxIntFracSig) { - return {static_cast<digits_t>(minInt), -1, false}; - } else { - return {U_NUMBER_ARG_OUTOFBOUNDS_ERROR}; - } -} - -IntegerWidth IntegerWidth::truncateAt(int32_t maxInt) { - if (fHasError) { return *this; } // No-op on error - digits_t minInt = fUnion.minMaxInt.fMinInt; - if (maxInt >= 0 && maxInt <= kMaxIntFracSig && minInt <= maxInt) { - return {minInt, static_cast<digits_t>(maxInt), false}; - } else if (maxInt == -1) { - return {minInt, -1, false}; - } else { - return {U_NUMBER_ARG_OUTOFBOUNDS_ERROR}; - } -} - -void IntegerWidth::apply(impl::DecimalQuantity& quantity, UErrorCode& status) const { - if (fHasError) { - status = U_ILLEGAL_ARGUMENT_ERROR; - } else if (fUnion.minMaxInt.fMaxInt == -1) { - quantity.setMinInteger(fUnion.minMaxInt.fMinInt); - } else { - // Enforce the backwards-compatibility feature "FormatFailIfMoreThanMaxDigits" - if (fUnion.minMaxInt.fFormatFailIfMoreThanMaxDigits && - fUnion.minMaxInt.fMaxInt < quantity.getMagnitude()) { - status = U_ILLEGAL_ARGUMENT_ERROR; - } - quantity.setMinInteger(fUnion.minMaxInt.fMinInt); - quantity.applyMaxInteger(fUnion.minMaxInt.fMaxInt); - } -} - -bool IntegerWidth::operator==(const IntegerWidth& other) const { - // Private operator==; do error and bogus checking first! - U_ASSERT(!fHasError); - U_ASSERT(!other.fHasError); - U_ASSERT(!isBogus()); - U_ASSERT(!other.isBogus()); - return fUnion.minMaxInt.fMinInt == other.fUnion.minMaxInt.fMinInt && - fUnion.minMaxInt.fMaxInt == other.fUnion.minMaxInt.fMaxInt; -} - -#endif /* #if !UCONFIG_NO_FORMATTING */ +// © 2017 and later: Unicode, Inc. and others. +// License & terms of use: http://www.unicode.org/copyright.html + +#include "unicode/utypes.h" + +#if !UCONFIG_NO_FORMATTING + +#include "unicode/numberformatter.h" +#include "number_types.h" +#include "number_decimalquantity.h" + +using namespace icu; +using namespace icu::number; +using namespace icu::number::impl; + +IntegerWidth::IntegerWidth(digits_t minInt, digits_t maxInt, bool formatFailIfMoreThanMaxDigits) { + fUnion.minMaxInt.fMinInt = minInt; + fUnion.minMaxInt.fMaxInt = maxInt; + fUnion.minMaxInt.fFormatFailIfMoreThanMaxDigits = formatFailIfMoreThanMaxDigits; +} + +IntegerWidth IntegerWidth::zeroFillTo(int32_t minInt) { + if (minInt >= 0 && minInt <= kMaxIntFracSig) { + return {static_cast<digits_t>(minInt), -1, false}; + } else { + return {U_NUMBER_ARG_OUTOFBOUNDS_ERROR}; + } +} + +IntegerWidth IntegerWidth::truncateAt(int32_t maxInt) { + if (fHasError) { return *this; } // No-op on error + digits_t minInt = fUnion.minMaxInt.fMinInt; + if (maxInt >= 0 && maxInt <= kMaxIntFracSig && minInt <= maxInt) { + return {minInt, static_cast<digits_t>(maxInt), false}; + } else if (maxInt == -1) { + return {minInt, -1, false}; + } else { + return {U_NUMBER_ARG_OUTOFBOUNDS_ERROR}; + } +} + +void IntegerWidth::apply(impl::DecimalQuantity& quantity, UErrorCode& status) const { + if (fHasError) { + status = U_ILLEGAL_ARGUMENT_ERROR; + } else if (fUnion.minMaxInt.fMaxInt == -1) { + quantity.setMinInteger(fUnion.minMaxInt.fMinInt); + } else { + // Enforce the backwards-compatibility feature "FormatFailIfMoreThanMaxDigits" + if (fUnion.minMaxInt.fFormatFailIfMoreThanMaxDigits && + fUnion.minMaxInt.fMaxInt < quantity.getMagnitude()) { + status = U_ILLEGAL_ARGUMENT_ERROR; + } + quantity.setMinInteger(fUnion.minMaxInt.fMinInt); + quantity.applyMaxInteger(fUnion.minMaxInt.fMaxInt); + } +} + +bool IntegerWidth::operator==(const IntegerWidth& other) const { + // Private operator==; do error and bogus checking first! + U_ASSERT(!fHasError); + U_ASSERT(!other.fHasError); + U_ASSERT(!isBogus()); + U_ASSERT(!other.isBogus()); + return fUnion.minMaxInt.fMinInt == other.fUnion.minMaxInt.fMinInt && + fUnion.minMaxInt.fMaxInt == other.fUnion.minMaxInt.fMaxInt; +} + +#endif /* #if !UCONFIG_NO_FORMATTING */ |