blob: 0ace241adae8ab75dc58a2506328128a7df599f4 [file] [log] [blame]
Fredrik Roubertffdc27e2017-11-27 19:42:42 +01001// © 2017 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3
4#include "unicode/utypes.h"
5
Fredrik Roubert57b72de2018-06-21 14:29:02 +02006#if !UCONFIG_NO_FORMATTING
Fredrik Roubertffdc27e2017-11-27 19:42:42 +01007#ifndef __NUMBER_DECIMFMTPROPS_H__
8#define __NUMBER_DECIMFMTPROPS_H__
9
10#include "unicode/unistr.h"
11#include <cstdint>
12#include "unicode/plurrule.h"
13#include "unicode/currpinf.h"
14#include "unicode/unum.h"
15#include "unicode/localpointer.h"
16#include "number_types.h"
17
18U_NAMESPACE_BEGIN
19
20// Export an explicit template instantiation of the LocalPointer that is used as a
21// data member of CurrencyPluralInfoWrapper.
Fredrik Roubert8785a572018-03-26 20:54:58 +020022// (When building DLLs for Windows this is required.)
23#if U_PF_WINDOWS <= U_PLATFORM && U_PLATFORM <= U_PF_CYGWIN
Jerome Gaillard4ab7c422019-01-14 20:14:00 +000024#if defined(_MSC_VER)
Fredrik Roubertffdc27e2017-11-27 19:42:42 +010025// Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +010026#pragma warning(push)
27#pragma warning(disable: 4661)
Jerome Gaillard4ab7c422019-01-14 20:14:00 +000028#endif
Fredrik Roubertffdc27e2017-11-27 19:42:42 +010029template class U_I18N_API LocalPointerBase<CurrencyPluralInfo>;
30template class U_I18N_API LocalPointer<CurrencyPluralInfo>;
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +010031#if defined(_MSC_VER)
32#pragma warning(pop)
33#endif
Fredrik Roubertffdc27e2017-11-27 19:42:42 +010034#endif
35
36namespace number {
37namespace impl {
38
Fredrik Roubertffdc27e2017-11-27 19:42:42 +010039// Exported as U_I18N_API because it is a public member field of exported DecimalFormatProperties
Fredrik Roubert57b72de2018-06-21 14:29:02 +020040// Using this wrapper is rather unfortunate, but is needed on Windows platforms in order to allow
Victor Chang92c98b52021-04-27 16:37:23 +010041// for DLL-exporting a fully specified template instantiation.
Fredrik Roubert57b72de2018-06-21 14:29:02 +020042class U_I18N_API CurrencyPluralInfoWrapper {
43public:
Fredrik Roubertffdc27e2017-11-27 19:42:42 +010044 LocalPointer<CurrencyPluralInfo> fPtr;
45
Fredrik Roubert57b72de2018-06-21 14:29:02 +020046 CurrencyPluralInfoWrapper() = default;
47
Fredrik Roubertffdc27e2017-11-27 19:42:42 +010048 CurrencyPluralInfoWrapper(const CurrencyPluralInfoWrapper& other) {
49 if (!other.fPtr.isNull()) {
50 fPtr.adoptInstead(new CurrencyPluralInfo(*other.fPtr));
51 }
52 }
Fredrik Roubert57b72de2018-06-21 14:29:02 +020053
54 CurrencyPluralInfoWrapper& operator=(const CurrencyPluralInfoWrapper& other) {
Victor Chang92c98b52021-04-27 16:37:23 +010055 if (this != &other && // self-assignment: no-op
56 !other.fPtr.isNull()) {
Fredrik Roubert57b72de2018-06-21 14:29:02 +020057 fPtr.adoptInstead(new CurrencyPluralInfo(*other.fPtr));
58 }
59 return *this;
60 }
61};
62
63/** Controls the set of rules for parsing a string from the old DecimalFormat API. */
64enum ParseMode {
65 /**
66 * Lenient mode should be used if you want to accept malformed user input. It will use heuristics
67 * to attempt to parse through typographical errors in the string.
68 */
69 PARSE_MODE_LENIENT,
70
71 /**
72 * Strict mode should be used if you want to require that the input is well-formed. More
73 * specifically, it differs from lenient mode in the following ways:
74 *
75 * <ul>
76 * <li>Grouping widths must match the grouping settings. For example, "12,3,45" will fail if the
77 * grouping width is 3, as in the pattern "#,##0".
78 * <li>The string must contain a complete prefix and suffix. For example, if the pattern is
79 * "{#};(#)", then "{123}" or "(123)" would match, but "{123", "123}", and "123" would all fail.
80 * (The latter strings would be accepted in lenient mode.)
81 * <li>Whitespace may not appear at arbitrary places in the string. In lenient mode, whitespace
82 * is allowed to occur arbitrarily before and after prefixes and exponent separators.
83 * <li>Leading grouping separators are not allowed, as in ",123".
84 * <li>Minus and plus signs can only appear if specified in the pattern. In lenient mode, a plus
85 * or minus sign can always precede a number.
86 * <li>The set of characters that can be interpreted as a decimal or grouping separator is
87 * smaller.
88 * <li><strong>If currency parsing is enabled,</strong> currencies must only appear where
89 * specified in either the current pattern string or in a valid pattern string for the current
90 * locale. For example, if the pattern is "¤0.00", then "$1.23" would match, but "1.23$" would
91 * fail to match.
92 * </ul>
93 */
94 PARSE_MODE_STRICT,
Fredrik Roubertffdc27e2017-11-27 19:42:42 +010095};
96
97// Exported as U_I18N_API because it is needed for the unit test PatternStringTest
Fredrik Roubert57b72de2018-06-21 14:29:02 +020098struct U_I18N_API DecimalFormatProperties : public UMemory {
Fredrik Roubertffdc27e2017-11-27 19:42:42 +010099
100 public:
101 NullableValue<UNumberCompactStyle> compactStyle;
102 NullableValue<CurrencyUnit> currency;
103 CurrencyPluralInfoWrapper currencyPluralInfo;
104 NullableValue<UCurrencyUsage> currencyUsage;
105 bool decimalPatternMatchRequired;
106 bool decimalSeparatorAlwaysShown;
107 bool exponentSignAlwaysShown;
Fredrik Roubert57b72de2018-06-21 14:29:02 +0200108 bool formatFailIfMoreThanMaxDigits; // ICU4C-only
Fredrik Roubertffdc27e2017-11-27 19:42:42 +0100109 int32_t formatWidth;
110 int32_t groupingSize;
Fredrik Roubert57b72de2018-06-21 14:29:02 +0200111 bool groupingUsed;
112 int32_t magnitudeMultiplier; // internal field like multiplierScale but separate to avoid conflict
Fredrik Roubertffdc27e2017-11-27 19:42:42 +0100113 int32_t maximumFractionDigits;
114 int32_t maximumIntegerDigits;
115 int32_t maximumSignificantDigits;
116 int32_t minimumExponentDigits;
117 int32_t minimumFractionDigits;
118 int32_t minimumGroupingDigits;
119 int32_t minimumIntegerDigits;
120 int32_t minimumSignificantDigits;
121 int32_t multiplier;
Fredrik Roubert57b72de2018-06-21 14:29:02 +0200122 int32_t multiplierScale; // ICU4C-only
Fredrik Roubertffdc27e2017-11-27 19:42:42 +0100123 UnicodeString negativePrefix;
124 UnicodeString negativePrefixPattern;
125 UnicodeString negativeSuffix;
126 UnicodeString negativeSuffixPattern;
127 NullableValue<PadPosition> padPosition;
128 UnicodeString padString;
129 bool parseCaseSensitive;
130 bool parseIntegerOnly;
Fredrik Roubert57b72de2018-06-21 14:29:02 +0200131 NullableValue<ParseMode> parseMode;
Fredrik Roubertffdc27e2017-11-27 19:42:42 +0100132 bool parseNoExponent;
Fredrik Roubert57b72de2018-06-21 14:29:02 +0200133 bool parseToBigDecimal; // TODO: Not needed in ICU4C?
134 UNumberFormatAttributeValue parseAllInput; // ICU4C-only
Fredrik Roubertffdc27e2017-11-27 19:42:42 +0100135 //PluralRules pluralRules;
136 UnicodeString positivePrefix;
137 UnicodeString positivePrefixPattern;
138 UnicodeString positiveSuffix;
139 UnicodeString positiveSuffixPattern;
140 double roundingIncrement;
141 NullableValue<RoundingMode> roundingMode;
142 int32_t secondaryGroupingSize;
143 bool signAlwaysShown;
144
145 DecimalFormatProperties();
146
Fredrik Roubert57b72de2018-06-21 14:29:02 +0200147 inline bool operator==(const DecimalFormatProperties& other) const {
148 return _equals(other, false);
149 }
Fredrik Roubertffdc27e2017-11-27 19:42:42 +0100150
151 void clear();
Fredrik Roubert57b72de2018-06-21 14:29:02 +0200152
153 /**
154 * Checks for equality to the default DecimalFormatProperties, but ignores the prescribed set of
155 * options for fast-path formatting.
156 */
157 bool equalsDefaultExceptFastFormat() const;
158
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +0100159 /**
160 * Returns the default DecimalFormatProperties instance.
161 */
162 static const DecimalFormatProperties& getDefault();
163
Fredrik Roubert57b72de2018-06-21 14:29:02 +0200164 private:
165 bool _equals(const DecimalFormatProperties& other, bool ignoreForFastFormat) const;
Fredrik Roubertffdc27e2017-11-27 19:42:42 +0100166};
167
168} // namespace impl
169} // namespace number
170U_NAMESPACE_END
171
172
173#endif //__NUMBER_DECIMFMTPROPS_H__
174
175#endif /* #if !UCONFIG_NO_FORMATTING */