2 ********************************************************************************
3 * Copyright (C) 1997-2004, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 ********************************************************************************
9 * Modification History:
11 * Date Name Description
12 * 02/19/97 aliu Converted from java.
13 * 03/18/97 clhuang Updated per C++ implementation.
14 * 03/27/97 helena Updated to pass the simple test after code review.
15 * 08/26/97 aliu Added currency/intl currency symbol support.
16 * 07/22/98 stephen Changed to match C++ style
17 * currencySymbol -> fCurrencySymbol
18 * Constants changed from CAPS to kCaps
19 * 06/24/99 helena Integrated Alan's NF enhancements and Java2 bug fixes
20 * 09/22/00 grhoten Marked deprecation tags with a pointer to replacement
22 ********************************************************************************
28 #include "unicode/utypes.h"
30 #if !UCONFIG_NO_FORMATTING
32 #include "unicode/uobject.h"
33 #include "unicode/locid.h"
38 * This class represents the set of symbols needed by DecimalFormat
39 * to format numbers. DecimalFormat creates for itself an instance of
40 * DecimalFormatSymbols from its locale data. If you need to change any
41 * of these symbols, you can get the DecimalFormatSymbols object from
42 * your DecimalFormat and modify it.
44 * Here are the special characters used in the parts of the
45 * subpattern, with notes on their usage.
50 * # a digit, zero shows as absent
51 * . placeholder for decimal separator
52 * , placeholder for grouping separator.
53 * ; separates formats.
54 * - default negative prefix.
55 * % divide by 100 and show as percentage
56 * X any other characters can be used in the prefix or suffix
57 * ' used to quote special characters in a prefix or suffix.
62 * If there is no explicit negative subpattern, - is prefixed to the
63 * positive form. That is, "0.00" alone is equivalent to "0.00;-0.00".
65 * The grouping separator is commonly used for thousands, but in some
66 * countries for ten-thousands. The interval is a constant number of
67 * digits between the grouping characters, such as 100,000,000 or 1,0000,0000.
68 * If you supply a pattern with multiple grouping characters, the interval
69 * between the last one and the end of the integer is the one that is
70 * used. So "#,##,###,####" == "######,####" == "##,####,####".
72 * This class only handles localized digits where the 10 digits are
73 * contiguous in Unicode, from 0 to 9. Other digits sets (such as
74 * superscripts) would need a different subclass.
76 class U_I18N_API DecimalFormatSymbols
: public UObject
{
79 * Constants for specifying a number format symbol.
82 enum ENumberFormatSymbol
{
83 /** The decimal separator */
84 kDecimalSeparatorSymbol
,
85 /** The grouping separator */
86 kGroupingSeparatorSymbol
,
87 /** The pattern separator */
88 kPatternSeparatorSymbol
,
89 /** The percent sign */
93 /** Character representing a digit in the pattern */
99 /** The currency symbol */
101 /** The international currency symbol */
103 /** The monetary separator */
104 kMonetarySeparatorSymbol
,
105 /** The exponential symbol */
107 /** Per mill symbol - replaces kPermillSymbol */
109 /** Escape padding character */
111 /** Infinity symbol */
115 /** Significant digit symbol
117 kSignificantDigitSymbol
,
118 /** count symbol constants */
123 * Create a DecimalFormatSymbols object for the given locale.
125 * @param locale The locale to get symbols for.
126 * @param status Input/output parameter, set to success or
127 * failure code upon return.
130 DecimalFormatSymbols(const Locale
& locale
, UErrorCode
& status
);
133 * Create a DecimalFormatSymbols object for the default locale.
134 * This constructor will not fail. If the resource file data is
135 * not available, it will use hard-coded last-resort data and
136 * set status to U_USING_FALLBACK_ERROR.
138 * @param status Input/output parameter, set to success or
139 * failure code upon return.
142 DecimalFormatSymbols( UErrorCode
& status
);
148 DecimalFormatSymbols(const DecimalFormatSymbols
&);
151 * Assignment operator.
154 DecimalFormatSymbols
& operator=(const DecimalFormatSymbols
&);
160 virtual ~DecimalFormatSymbols();
163 * Return true if another object is semantically equal to this one.
165 * @param other the object to be compared with.
166 * @return true if another object is semantically equal to this one.
169 UBool
operator==(const DecimalFormatSymbols
& other
) const;
172 * Return true if another object is semantically unequal to this one.
174 * @param other the object to be compared with.
175 * @return true if another object is semantically unequal to this one.
178 UBool
operator!=(const DecimalFormatSymbols
& other
) const { return !operator==(other
); }
181 * Get one of the format symbols by its enum constant.
182 * Each symbol is stored as a string so that graphemes
183 * (characters with modifyer letters) can be used.
185 * @param symbol Constant to indicate a number format symbol.
186 * @return the format symbols by the param 'symbol'
189 inline UnicodeString
getSymbol(ENumberFormatSymbol symbol
) const;
192 * Set one of the format symbols by its enum constant.
193 * Each symbol is stored as a string so that graphemes
194 * (characters with modifyer letters) can be used.
196 * @param symbol Constant to indicate a number format symbol.
197 * @param value value of the format sybmol
200 void setSymbol(ENumberFormatSymbol symbol
, const UnicodeString
&value
);
203 * Returns the locale for which this object was constructed.
206 inline Locale
getLocale() const;
209 * Returns the locale for this object. Two flavors are available:
210 * valid and actual locale.
211 * @draft ICU 2.8 likely to change in ICU 3.0, based on feedback
213 Locale
getLocale(ULocDataLocaleType type
, UErrorCode
& status
) const;
216 * ICU "poor man's RTTI", returns a UClassID for the actual class.
220 virtual UClassID
getDynamicClassID() const;
223 * ICU "poor man's RTTI", returns a UClassID for this class.
227 static UClassID U_EXPORT2
getStaticClassID();
230 DecimalFormatSymbols(); // default constructor not implemented
233 * Initializes the symbols from the LocaleElements resource bundle.
234 * Note: The organization of LocaleElements badly needs to be
237 * @param locale The locale to get symbols for.
238 * @param success Input/output parameter, set to success or
239 * failure code upon return.
240 * @param useLastResortData determine if use last resort data
242 void initialize(const Locale
& locale
, UErrorCode
& success
, UBool useLastResortData
= FALSE
);
245 * Initialize the symbols from the given array of UnicodeStrings.
246 * The array must be of the correct size.
248 * @param numberElements the number format symbols
249 * @param numberElementsLength length of numberElements
251 void initialize(const UChar
** numberElements
, int32_t *numberElementsStrLen
, int32_t numberElementsLength
);
254 * Initialize the symbols with default values.
258 void setCurrencyForSymbols();
262 * _Internal_ function - more efficient version of getSymbol,
263 * returning a const reference to one of the symbol strings.
264 * The returned reference becomes invalid when the symbol is changed
265 * or when the DecimalFormatSymbols are destroyed.
266 * ### TODO markus 2002oct11: Consider proposing getConstSymbol() to be really public.
268 * @param symbol Constant to indicate a number format symbol.
269 * @return the format symbol by the param 'symbol'
272 inline const UnicodeString
&getConstSymbol(ENumberFormatSymbol symbol
) const;
276 * Private symbol strings.
277 * They are either loaded from a resource bundle or otherwise owned.
278 * setSymbol() clones the symbol string.
279 * Readonly aliases can only come from a resource bundle, so that we can always
280 * use fastCopyFrom() with them.
282 * If DecimalFormatSymbols becomes subclassable and the status of fSymbols changes
283 * from private to protected,
284 * or when fSymbols can be set any other way that allows them to be readonly aliases
285 * to non-resource bundle strings,
286 * then regular UnicodeString copies must be used instead of fastCopyFrom().
290 UnicodeString fSymbols
[kFormatSymbolCount
];
293 * Non-symbol variable for getConstSymbol(). Always empty.
296 UnicodeString fNoSymbol
;
300 char actualLocale
[ULOC_FULLNAME_CAPACITY
];
301 char validLocale
[ULOC_FULLNAME_CAPACITY
];
304 // -------------------------------------
307 DecimalFormatSymbols::getSymbol(ENumberFormatSymbol symbol
) const {
308 const UnicodeString
*strPtr
;
309 if(symbol
< kFormatSymbolCount
) {
310 strPtr
= &fSymbols
[symbol
];
317 inline const UnicodeString
&
318 DecimalFormatSymbols::getConstSymbol(ENumberFormatSymbol symbol
) const {
319 const UnicodeString
*strPtr
;
320 if(symbol
< kFormatSymbolCount
) {
321 strPtr
= &fSymbols
[symbol
];
328 // -------------------------------------
331 DecimalFormatSymbols::setSymbol(ENumberFormatSymbol symbol
, const UnicodeString
&value
) {
332 if(symbol
<kFormatSymbolCount
) {
333 fSymbols
[symbol
]=value
;
337 // -------------------------------------
340 DecimalFormatSymbols::getLocale() const {
347 #endif /* #if !UCONFIG_NO_FORMATTING */