Jungshik Shin | 87232d8 | 2017-05-13 21:10:13 -0700 | [diff] [blame] | 1 | // © 2016 and later: Unicode, Inc. and others. |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 2 | // License & terms of use: http://www.unicode.org/copyright.html |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 3 | /* |
| 4 | ****************************************************************************** |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 5 | * Copyright (C) 2014-2016, International Business Machines |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 6 | * Corporation and others. All Rights Reserved. |
| 7 | ****************************************************************************** |
| 8 | * quantityformatter.cpp |
| 9 | */ |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 10 | |
| 11 | #include "unicode/utypes.h" |
| 12 | |
| 13 | #if !UCONFIG_NO_FORMATTING |
| 14 | |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 15 | #include "unicode/simpleformatter.h" |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 16 | #include "quantityformatter.h" |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 17 | #include "uassert.h" |
| 18 | #include "unicode/unistr.h" |
| 19 | #include "unicode/decimfmt.h" |
| 20 | #include "cstring.h" |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 21 | #include "unicode/plurrule.h" |
| 22 | #include "charstr.h" |
| 23 | #include "unicode/fmtable.h" |
| 24 | #include "unicode/fieldpos.h" |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 25 | #include "standardplural.h" |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 26 | #include "uassert.h" |
Jungshik Shin | a9a2bd3 | 2018-07-07 03:36:01 -0700 | [diff] [blame^] | 27 | #include "number_decimalquantity.h" |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 28 | |
| 29 | U_NAMESPACE_BEGIN |
| 30 | |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 31 | QuantityFormatter::QuantityFormatter() { |
| 32 | for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { |
| 33 | formatters[i] = NULL; |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | QuantityFormatter::QuantityFormatter(const QuantityFormatter &other) { |
| 38 | for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { |
| 39 | if (other.formatters[i] == NULL) { |
| 40 | formatters[i] = NULL; |
| 41 | } else { |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 42 | formatters[i] = new SimpleFormatter(*other.formatters[i]); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 43 | } |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | QuantityFormatter &QuantityFormatter::operator=( |
| 48 | const QuantityFormatter& other) { |
| 49 | if (this == &other) { |
| 50 | return *this; |
| 51 | } |
| 52 | for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { |
| 53 | delete formatters[i]; |
| 54 | if (other.formatters[i] == NULL) { |
| 55 | formatters[i] = NULL; |
| 56 | } else { |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 57 | formatters[i] = new SimpleFormatter(*other.formatters[i]); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 58 | } |
| 59 | } |
| 60 | return *this; |
| 61 | } |
| 62 | |
| 63 | QuantityFormatter::~QuantityFormatter() { |
| 64 | for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { |
| 65 | delete formatters[i]; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | void QuantityFormatter::reset() { |
| 70 | for (int32_t i = 0; i < UPRV_LENGTHOF(formatters); ++i) { |
| 71 | delete formatters[i]; |
| 72 | formatters[i] = NULL; |
| 73 | } |
| 74 | } |
| 75 | |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 76 | UBool QuantityFormatter::addIfAbsent( |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 77 | const char *variant, |
| 78 | const UnicodeString &rawPattern, |
| 79 | UErrorCode &status) { |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 80 | int32_t pluralIndex = StandardPlural::indexFromString(variant, status); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 81 | if (U_FAILURE(status)) { |
| 82 | return FALSE; |
| 83 | } |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 84 | if (formatters[pluralIndex] != NULL) { |
| 85 | return TRUE; |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 86 | } |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 87 | SimpleFormatter *newFmt = new SimpleFormatter(rawPattern, 0, 1, status); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 88 | if (newFmt == NULL) { |
| 89 | status = U_MEMORY_ALLOCATION_ERROR; |
| 90 | return FALSE; |
| 91 | } |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 92 | if (U_FAILURE(status)) { |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 93 | delete newFmt; |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 94 | return FALSE; |
| 95 | } |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 96 | formatters[pluralIndex] = newFmt; |
| 97 | return TRUE; |
| 98 | } |
| 99 | |
| 100 | UBool QuantityFormatter::isValid() const { |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 101 | return formatters[StandardPlural::OTHER] != NULL; |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 102 | } |
| 103 | |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 104 | const SimpleFormatter *QuantityFormatter::getByVariant( |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 105 | const char *variant) const { |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 106 | U_ASSERT(isValid()); |
| 107 | int32_t pluralIndex = StandardPlural::indexOrOtherIndexFromString(variant); |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 108 | const SimpleFormatter *pattern = formatters[pluralIndex]; |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 109 | if (pattern == NULL) { |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 110 | pattern = formatters[StandardPlural::OTHER]; |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 111 | } |
| 112 | return pattern; |
| 113 | } |
| 114 | |
| 115 | UnicodeString &QuantityFormatter::format( |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 116 | const Formattable &number, |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 117 | const NumberFormat &fmt, |
| 118 | const PluralRules &rules, |
| 119 | UnicodeString &appendTo, |
| 120 | FieldPosition &pos, |
| 121 | UErrorCode &status) const { |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 122 | UnicodeString formattedNumber; |
| 123 | StandardPlural::Form p = selectPlural(number, fmt, rules, formattedNumber, pos, status); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 124 | if (U_FAILURE(status)) { |
| 125 | return appendTo; |
| 126 | } |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 127 | const SimpleFormatter *pattern = formatters[p]; |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 128 | if (pattern == NULL) { |
| 129 | pattern = formatters[StandardPlural::OTHER]; |
| 130 | if (pattern == NULL) { |
| 131 | status = U_INVALID_STATE_ERROR; |
| 132 | return appendTo; |
| 133 | } |
| 134 | } |
| 135 | return format(*pattern, formattedNumber, appendTo, pos, status); |
| 136 | } |
| 137 | |
| 138 | // The following methods live here so that class PluralRules does not depend on number formatting, |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 139 | // and the SimpleFormatter does not depend on FieldPosition. |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 140 | |
| 141 | StandardPlural::Form QuantityFormatter::selectPlural( |
| 142 | const Formattable &number, |
| 143 | const NumberFormat &fmt, |
| 144 | const PluralRules &rules, |
| 145 | UnicodeString &formattedNumber, |
| 146 | FieldPosition &pos, |
| 147 | UErrorCode &status) { |
| 148 | if (U_FAILURE(status)) { |
| 149 | return StandardPlural::OTHER; |
| 150 | } |
| 151 | UnicodeString pluralKeyword; |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 152 | const DecimalFormat *decFmt = dynamic_cast<const DecimalFormat *>(&fmt); |
| 153 | if (decFmt != NULL) { |
Jungshik Shin | a9a2bd3 | 2018-07-07 03:36:01 -0700 | [diff] [blame^] | 154 | number::impl::DecimalQuantity dq; |
| 155 | decFmt->formatToDecimalQuantity(number, dq, status); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 156 | if (U_FAILURE(status)) { |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 157 | return StandardPlural::OTHER; |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 158 | } |
Jungshik Shin | a9a2bd3 | 2018-07-07 03:36:01 -0700 | [diff] [blame^] | 159 | pluralKeyword = rules.select(dq); |
| 160 | decFmt->format(number, formattedNumber, pos, status); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 161 | } else { |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 162 | if (number.getType() == Formattable::kDouble) { |
| 163 | pluralKeyword = rules.select(number.getDouble()); |
| 164 | } else if (number.getType() == Formattable::kLong) { |
| 165 | pluralKeyword = rules.select(number.getLong()); |
| 166 | } else if (number.getType() == Formattable::kInt64) { |
| 167 | pluralKeyword = rules.select((double) number.getInt64()); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 168 | } else { |
| 169 | status = U_ILLEGAL_ARGUMENT_ERROR; |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 170 | return StandardPlural::OTHER; |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 171 | } |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 172 | fmt.format(number, formattedNumber, pos, status); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 173 | } |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 174 | return StandardPlural::orOtherFromString(pluralKeyword); |
| 175 | } |
| 176 | |
| 177 | UnicodeString &QuantityFormatter::format( |
Jungshik Shin | 5feb9ad | 2016-10-21 12:52:48 -0700 | [diff] [blame] | 178 | const SimpleFormatter &pattern, |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 179 | const UnicodeString &value, |
| 180 | UnicodeString &appendTo, |
| 181 | FieldPosition &pos, |
| 182 | UErrorCode &status) { |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 183 | if (U_FAILURE(status)) { |
| 184 | return appendTo; |
| 185 | } |
Jungshik Shin | 825221b | 2016-01-29 01:05:51 -0800 | [diff] [blame] | 186 | const UnicodeString *param = &value; |
| 187 | int32_t offset; |
| 188 | pattern.formatAndAppend(¶m, 1, appendTo, &offset, 1, status); |
| 189 | if (pos.getBeginIndex() != 0 || pos.getEndIndex() != 0) { |
| 190 | if (offset >= 0) { |
| 191 | pos.setBeginIndex(pos.getBeginIndex() + offset); |
| 192 | pos.setEndIndex(pos.getEndIndex() + offset); |
| 193 | } else { |
| 194 | pos.setBeginIndex(0); |
| 195 | pos.setEndIndex(0); |
Jungshik Shin (jungshik at google) | 0f8746a | 2015-01-08 15:46:45 -0800 | [diff] [blame] | 196 | } |
| 197 | } |
| 198 | return appendTo; |
| 199 | } |
| 200 | |
| 201 | U_NAMESPACE_END |
| 202 | |
| 203 | #endif /* #if !UCONFIG_NO_FORMATTING */ |