]> git.saurik.com Git - apple/icu.git/blob - icuSources/i18n/numfmt.cpp
ICU-531.30.tar.gz
[apple/icu.git] / icuSources / i18n / numfmt.cpp
1 /*
2 *******************************************************************************
3 * Copyright (C) 1997-2014, International Business Machines Corporation and
4 * others. All Rights Reserved.
5 *******************************************************************************
6 *
7 * File NUMFMT.CPP
8 *
9 * Modification History:
10 *
11 * Date Name Description
12 * 02/19/97 aliu Converted from java.
13 * 03/18/97 clhuang Implemented with C++ APIs.
14 * 04/17/97 aliu Enlarged MAX_INTEGER_DIGITS to fully accomodate the
15 * largest double, by default.
16 * Changed DigitCount to int per code review.
17 * 07/20/98 stephen Changed operator== to check for grouping
18 * Changed setMaxIntegerDigits per Java implementation.
19 * Changed setMinIntegerDigits per Java implementation.
20 * Changed setMinFractionDigits per Java implementation.
21 * Changed setMaxFractionDigits per Java implementation.
22 ********************************************************************************
23 */
24
25 #include "unicode/utypes.h"
26
27 #if !UCONFIG_NO_FORMATTING
28
29 #include "unicode/numfmt.h"
30 #include "unicode/locid.h"
31 #include "unicode/dcfmtsym.h"
32 #include "unicode/decimfmt.h"
33 #include "unicode/ustring.h"
34 #include "unicode/ucurr.h"
35 #include "unicode/curramt.h"
36 #include "unicode/numsys.h"
37 #include "unicode/rbnf.h"
38 #include "unicode/localpointer.h"
39 #include "unicode/udisplaycontext.h"
40 #include "charstr.h"
41 #include "winnmfmt.h"
42 #include "uresimp.h"
43 #include "uhash.h"
44 #include "cmemory.h"
45 #include "servloc.h"
46 #include "ucln_in.h"
47 #include "cstring.h"
48 #include "putilimp.h"
49 #include "uassert.h"
50 #include "umutex.h"
51 #include "mutex.h"
52 #include "digitlst.h"
53 #include <float.h>
54 #include "sharednumberformat.h"
55 #include "lrucache.h"
56
57 //#define FMT_DEBUG
58
59 #ifdef FMT_DEBUG
60 #include <stdio.h>
61 static inline void debugout(UnicodeString s) {
62 char buf[2000];
63 s.extract((int32_t) 0, s.length(), buf);
64 printf("%s", buf);
65 }
66 #define debug(x) printf("%s", x);
67 #else
68 #define debugout(x)
69 #define debug(x)
70 #endif
71
72 // If no number pattern can be located for a locale, this is the last
73 // resort. The patterns are same as the ones in root locale.
74 static const UChar gLastResortDecimalPat[] = {
75 0x23, 0x2C, 0x23, 0x23, 0x30, 0x2E, 0x23, 0x23, 0x23, 0 /* "#,##0.###" */
76 };
77 static const UChar gLastResortCurrencyPat[] = {
78 0xA4, 0xA0, 0x23, 0x2C, 0x23, 0x23, 0x30, 0x2E, 0x30, 0x30, 0 /* "\u00A4\u00A0#,##0.00" */
79 };
80 static const UChar gLastResortPercentPat[] = {
81 0x23, 0x2C, 0x23, 0x23, 0x30, 0x25, 0 /* "#,##0%" */
82 };
83 static const UChar gLastResortScientificPat[] = {
84 0x23, 0x45, 0x30, 0 /* "#E0" */
85 };
86 static const UChar gLastResortIsoCurrencyPat[] = {
87 0xA4, 0xA4, 0xA0, 0x23, 0x2C, 0x23, 0x23, 0x30, 0x2E, 0x30, 0x30, 0 /* "\u00A4\u00A4\u00A0#,##0.00" */
88 };
89 static const UChar gLastResortPluralCurrencyPat[] = {
90 0x23, 0x2C, 0x23, 0x23, 0x30, 0x2E, 0x23, 0x23, 0x23, 0x20, 0xA4, 0xA4, 0xA4, 0 /* "#,##0.### \u00A4\u00A4\u00A4*/
91 };
92 static const UChar gLastResortAccountingCurrencyPat[] = {
93 0xA4, 0xA0, 0x23, 0x2C, 0x23, 0x23, 0x30, 0x2E, 0x30, 0x30, 0 /* "\u00A4\u00A0#,##0.00" */
94 };
95
96 static const UChar gSingleCurrencySign[] = {0xA4, 0};
97 static const UChar gDoubleCurrencySign[] = {0xA4, 0xA4, 0};
98
99 static const UChar gSlash = 0x2f;
100
101 // If the maximum base 10 exponent were 4, then the largest number would
102 // be 99,999 which has 5 digits.
103 // On IEEE754 systems gMaxIntegerDigits is 308 + possible denormalized 15 digits + rounding digit
104 // With big decimal, the max exponent is 999,999,999 and the max number of digits is the same, 999,999,999
105 const int32_t icu::NumberFormat::gDefaultMaxIntegerDigits = 2000000000;
106 const int32_t icu::NumberFormat::gDefaultMinIntegerDigits = 127;
107
108 static const UChar * const gLastResortNumberPatterns[UNUM_FORMAT_STYLE_COUNT] = {
109 NULL, // UNUM_PATTERN_DECIMAL
110 gLastResortDecimalPat, // UNUM_DECIMAL
111 gLastResortCurrencyPat, // UNUM_CURRENCY
112 gLastResortPercentPat, // UNUM_PERCENT
113 gLastResortScientificPat, // UNUM_SCIENTIFIC
114 NULL, // UNUM_SPELLOUT
115 NULL, // UNUM_ORDINAL
116 NULL, // UNUM_DURATION
117 NULL, // UNUM_NUMBERING_SYSTEM
118 NULL, // UNUM_PATTERN_RULEBASED
119 gLastResortIsoCurrencyPat, // UNUM_CURRENCY_ISO
120 gLastResortPluralCurrencyPat, // UNUM_CURRENCY_PLURAL
121 gLastResortAccountingCurrencyPat // UNUM_CURRENCY_ACCOUNTING
122 };
123
124 // Keys used for accessing resource bundles
125
126 static const char *gNumberElements = "NumberElements";
127 static const char *gLatn = "latn";
128 static const char *gPatterns = "patterns";
129 static const char *gFormatKeys[UNUM_FORMAT_STYLE_COUNT] = {
130 NULL, // UNUM_PATTERN_DECIMAL
131 "decimalFormat", // UNUM_DECIMAL
132 "currencyFormat", // UNUM_CURRENCY
133 "percentFormat", // UNUM_PERCENT
134 "scientificFormat", // UNUM_SCIENTIFIC
135 NULL, // UNUM_SPELLOUT
136 NULL, // UNUM_ORDINAL
137 NULL, // UNUM_DURATION
138 NULL, // UNUM_NUMBERING_SYSTEM
139 NULL, // UNUM_PATTERN_RULEBASED
140 // For UNUM_CURRENCY_ISO and UNUM_CURRENCY_PLURAL,
141 // the pattern is the same as the pattern of UNUM_CURRENCY
142 // except for replacing the single currency sign with
143 // double currency sign or triple currency sign.
144 "currencyFormat", // UNUM_CURRENCY_ISO
145 "currencyFormat", // UNUM_CURRENCY_PLURAL
146 "accountingFormat" // UNUM_CURRENCY_ACCOUNTING
147 };
148
149 static icu::LRUCache *gNumberFormatCache = NULL;
150 static UMutex gNumberFormatCacheMutex = U_MUTEX_INITIALIZER;
151 static icu::UInitOnce gNumberFormatCacheInitOnce = U_INITONCE_INITIALIZER;
152
153 // Static hashtable cache of NumberingSystem objects used by NumberFormat
154 static UHashtable * NumberingSystem_cache = NULL;
155 static UMutex nscacheMutex = U_MUTEX_INITIALIZER;
156 static icu::UInitOnce gNSCacheInitOnce = U_INITONCE_INITIALIZER;
157
158 #if !UCONFIG_NO_SERVICE
159 static icu::ICULocaleService* gService = NULL;
160 static icu::UInitOnce gServiceInitOnce = U_INITONCE_INITIALIZER;
161 #endif
162
163 /**
164 * Release all static memory held by Number Format.
165 */
166 U_CDECL_BEGIN
167 static void U_CALLCONV
168 deleteNumberingSystem(void *obj) {
169 delete (icu::NumberingSystem *)obj;
170 }
171
172 static UBool U_CALLCONV numfmt_cleanup(void) {
173 #if !UCONFIG_NO_SERVICE
174 gServiceInitOnce.reset();
175 if (gService) {
176 delete gService;
177 gService = NULL;
178 }
179 #endif
180 gNSCacheInitOnce.reset();
181 if (NumberingSystem_cache) {
182 // delete NumberingSystem_cache;
183 uhash_close(NumberingSystem_cache);
184 NumberingSystem_cache = NULL;
185 }
186 gNumberFormatCacheInitOnce.reset();
187 if (gNumberFormatCache) {
188 delete gNumberFormatCache;
189 gNumberFormatCache = NULL;
190 }
191 return TRUE;
192 }
193 U_CDECL_END
194
195 // *****************************************************************************
196 // class NumberFormat
197 // *****************************************************************************
198
199 U_NAMESPACE_BEGIN
200
201 UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION(NumberFormat)
202
203 #if !UCONFIG_NO_SERVICE
204 // -------------------------------------
205 // SimpleNumberFormatFactory implementation
206 NumberFormatFactory::~NumberFormatFactory() {}
207 SimpleNumberFormatFactory::SimpleNumberFormatFactory(const Locale& locale, UBool visible)
208 : _visible(visible)
209 {
210 LocaleUtility::initNameFromLocale(locale, _id);
211 }
212
213 SimpleNumberFormatFactory::~SimpleNumberFormatFactory() {}
214
215 UBool SimpleNumberFormatFactory::visible(void) const {
216 return _visible;
217 }
218
219 const UnicodeString *
220 SimpleNumberFormatFactory::getSupportedIDs(int32_t &count, UErrorCode& status) const
221 {
222 if (U_SUCCESS(status)) {
223 count = 1;
224 return &_id;
225 }
226 count = 0;
227 return NULL;
228 }
229 #endif /* #if !UCONFIG_NO_SERVICE */
230
231 // -------------------------------------
232 // default constructor
233 NumberFormat::NumberFormat()
234 : fGroupingUsed(TRUE),
235 fMaxIntegerDigits(gDefaultMaxIntegerDigits),
236 fMinIntegerDigits(1),
237 fMaxFractionDigits(3), // invariant, >= minFractionDigits
238 fMinFractionDigits(0),
239 fParseIntegerOnly(FALSE),
240 fLenient(FALSE),
241 fCapitalizationContext(UDISPCTX_CAPITALIZATION_NONE)
242 {
243 fCurrency[0] = 0;
244 }
245
246 // -------------------------------------
247
248 NumberFormat::~NumberFormat()
249 {
250 }
251
252 SharedNumberFormat::~SharedNumberFormat() {
253 delete ptr;
254 }
255
256 // -------------------------------------
257 // copy constructor
258
259 NumberFormat::NumberFormat(const NumberFormat &source)
260 : Format(source)
261 {
262 *this = source;
263 }
264
265 // -------------------------------------
266 // assignment operator
267
268 NumberFormat&
269 NumberFormat::operator=(const NumberFormat& rhs)
270 {
271 if (this != &rhs)
272 {
273 Format::operator=(rhs);
274 fGroupingUsed = rhs.fGroupingUsed;
275 fMaxIntegerDigits = rhs.fMaxIntegerDigits;
276 fMinIntegerDigits = rhs.fMinIntegerDigits;
277 fMaxFractionDigits = rhs.fMaxFractionDigits;
278 fMinFractionDigits = rhs.fMinFractionDigits;
279 fParseIntegerOnly = rhs.fParseIntegerOnly;
280 u_strncpy(fCurrency, rhs.fCurrency, 4);
281 fLenient = rhs.fLenient;
282 fCapitalizationContext = rhs.fCapitalizationContext;
283 }
284 return *this;
285 }
286
287 // -------------------------------------
288
289 UBool
290 NumberFormat::operator==(const Format& that) const
291 {
292 // Format::operator== guarantees this cast is safe
293 NumberFormat* other = (NumberFormat*)&that;
294
295 #ifdef FMT_DEBUG
296 // This code makes it easy to determine why two format objects that should
297 // be equal aren't.
298 UBool first = TRUE;
299 if (!Format::operator==(that)) {
300 if (first) { printf("[ "); first = FALSE; } else { printf(", "); }
301 debug("Format::!=");
302 }
303 if (!(fMaxIntegerDigits == other->fMaxIntegerDigits &&
304 fMinIntegerDigits == other->fMinIntegerDigits)) {
305 if (first) { printf("[ "); first = FALSE; } else { printf(", "); }
306 debug("Integer digits !=");
307 }
308 if (!(fMaxFractionDigits == other->fMaxFractionDigits &&
309 fMinFractionDigits == other->fMinFractionDigits)) {
310 if (first) { printf("[ "); first = FALSE; } else { printf(", "); }
311 debug("Fraction digits !=");
312 }
313 if (!(fGroupingUsed == other->fGroupingUsed)) {
314 if (first) { printf("[ "); first = FALSE; } else { printf(", "); }
315 debug("fGroupingUsed != ");
316 }
317 if (!(fParseIntegerOnly == other->fParseIntegerOnly)) {
318 if (first) { printf("[ "); first = FALSE; } else { printf(", "); }
319 debug("fParseIntegerOnly != ");
320 }
321 if (!(u_strcmp(fCurrency, other->fCurrency) == 0)) {
322 if (first) { printf("[ "); first = FALSE; } else { printf(", "); }
323 debug("fCurrency !=");
324 }
325 if (!(fLenient == other->fLenient)) {
326 if (first) { printf("[ "); first = FALSE; } else { printf(", "); }
327 debug("fLenient != ");
328 }
329 if (!(fCapitalizationContext == other->fCapitalizationContext)) {
330 if (first) { printf("[ "); first = FALSE; } else { printf(", "); }
331 debug("fCapitalizationContext != ");
332 }
333 if (!first) { printf(" ]"); }
334 #endif
335
336 return ((this == &that) ||
337 ((Format::operator==(that) &&
338 fMaxIntegerDigits == other->fMaxIntegerDigits &&
339 fMinIntegerDigits == other->fMinIntegerDigits &&
340 fMaxFractionDigits == other->fMaxFractionDigits &&
341 fMinFractionDigits == other->fMinFractionDigits &&
342 fGroupingUsed == other->fGroupingUsed &&
343 fParseIntegerOnly == other->fParseIntegerOnly &&
344 u_strcmp(fCurrency, other->fCurrency) == 0 &&
345 fLenient == other->fLenient &&
346 fCapitalizationContext == other->fCapitalizationContext)));
347 }
348
349 // -------------------------------------
350 // Default implementation sets unsupported error; subclasses should
351 // override.
352
353 UnicodeString&
354 NumberFormat::format(double /* unused number */,
355 UnicodeString& toAppendTo,
356 FieldPositionIterator* /* unused posIter */,
357 UErrorCode& status) const
358 {
359 if (!U_FAILURE(status)) {
360 status = U_UNSUPPORTED_ERROR;
361 }
362 return toAppendTo;
363 }
364
365 // -------------------------------------
366 // Default implementation sets unsupported error; subclasses should
367 // override.
368
369 UnicodeString&
370 NumberFormat::format(int32_t /* unused number */,
371 UnicodeString& toAppendTo,
372 FieldPositionIterator* /* unused posIter */,
373 UErrorCode& status) const
374 {
375 if (!U_FAILURE(status)) {
376 status = U_UNSUPPORTED_ERROR;
377 }
378 return toAppendTo;
379 }
380
381 // -------------------------------------
382 // Default implementation sets unsupported error; subclasses should
383 // override.
384
385 UnicodeString&
386 NumberFormat::format(int64_t /* unused number */,
387 UnicodeString& toAppendTo,
388 FieldPositionIterator* /* unused posIter */,
389 UErrorCode& status) const
390 {
391 if (!U_FAILURE(status)) {
392 status = U_UNSUPPORTED_ERROR;
393 }
394 return toAppendTo;
395 }
396
397 // ------------------------------------------
398 // These functions add the status code, just fall back to the non-status versions
399 UnicodeString&
400 NumberFormat::format(double number,
401 UnicodeString& appendTo,
402 FieldPosition& pos,
403 UErrorCode &status) const {
404 if(U_SUCCESS(status)) {
405 return format(number,appendTo,pos);
406 } else {
407 return appendTo;
408 }
409 }
410
411 UnicodeString&
412 NumberFormat::format(int32_t number,
413 UnicodeString& appendTo,
414 FieldPosition& pos,
415 UErrorCode &status) const {
416 if(U_SUCCESS(status)) {
417 return format(number,appendTo,pos);
418 } else {
419 return appendTo;
420 }
421 }
422
423 UnicodeString&
424 NumberFormat::format(int64_t number,
425 UnicodeString& appendTo,
426 FieldPosition& pos,
427 UErrorCode &status) const {
428 if(U_SUCCESS(status)) {
429 return format(number,appendTo,pos);
430 } else {
431 return appendTo;
432 }
433 }
434
435
436
437 // -------------------------------------
438 // Decimal Number format() default implementation
439 // Subclasses do not normally override this function, but rather the DigitList
440 // formatting functions..
441 // The expected call chain from here is
442 // this function ->
443 // NumberFormat::format(Formattable ->
444 // DecimalFormat::format(DigitList
445 //
446 // Or, for subclasses of Formattable that do not know about DigitList,
447 // this Function ->
448 // NumberFormat::format(Formattable ->
449 // NumberFormat::format(DigitList ->
450 // XXXFormat::format(double
451
452 UnicodeString&
453 NumberFormat::format(const StringPiece &decimalNum,
454 UnicodeString& toAppendTo,
455 FieldPositionIterator* fpi,
456 UErrorCode& status) const
457 {
458 Formattable f;
459 f.setDecimalNumber(decimalNum, status);
460 format(f, toAppendTo, fpi, status);
461 return toAppendTo;
462 }
463
464 /**
465 *
466 // Formats the number object and save the format
467 // result in the toAppendTo string buffer.
468
469 // utility to save/restore state, used in two overloads
470 // of format(const Formattable&...) below.
471 *
472 * Old purpose of ArgExtractor was to avoid const. Not thread safe!
473 *
474 * keeping it around as a shim.
475 */
476 class ArgExtractor {
477 const Formattable* num;
478 UChar save[4];
479 UBool fWasCurrency;
480
481 public:
482 ArgExtractor(const NumberFormat& nf, const Formattable& obj, UErrorCode& status);
483 ~ArgExtractor();
484
485 const Formattable* number(void) const;
486 const UChar *iso(void) const;
487 UBool wasCurrency(void) const;
488 };
489
490 inline const Formattable*
491 ArgExtractor::number(void) const {
492 return num;
493 }
494
495 inline UBool
496 ArgExtractor::wasCurrency(void) const {
497 return fWasCurrency;
498 }
499
500 inline const UChar *
501 ArgExtractor::iso(void) const {
502 return save;
503 }
504
505 ArgExtractor::ArgExtractor(const NumberFormat& /*nf*/, const Formattable& obj, UErrorCode& /*status*/)
506 : num(&obj), fWasCurrency(FALSE) {
507
508 const UObject* o = obj.getObject(); // most commonly o==NULL
509 const CurrencyAmount* amt;
510 if (o != NULL && (amt = dynamic_cast<const CurrencyAmount*>(o)) != NULL) {
511 // getISOCurrency() returns a pointer to internal storage, so we
512 // copy it to retain it across the call to setCurrency().
513 //const UChar* curr = amt->getISOCurrency();
514 u_strcpy(save, amt->getISOCurrency());
515 num = &amt->getNumber();
516 fWasCurrency=TRUE;
517 } else {
518 save[0]=0;
519 }
520 }
521
522 ArgExtractor::~ArgExtractor() {
523 }
524
525 UnicodeString& NumberFormat::format(const DigitList &number,
526 UnicodeString& appendTo,
527 FieldPositionIterator* posIter,
528 UErrorCode& status) const {
529 // DecimalFormat overrides this function, and handles DigitList based big decimals.
530 // Other subclasses (ChoiceFormat, RuleBasedNumberFormat) do not (yet) handle DigitLists,
531 // so this default implementation falls back to formatting decimal numbers as doubles.
532 if (U_FAILURE(status)) {
533 return appendTo;
534 }
535 double dnum = number.getDouble();
536 format(dnum, appendTo, posIter, status);
537 return appendTo;
538 }
539
540
541
542 UnicodeString&
543 NumberFormat::format(const DigitList &number,
544 UnicodeString& appendTo,
545 FieldPosition& pos,
546 UErrorCode &status) const {
547 // DecimalFormat overrides this function, and handles DigitList based big decimals.
548 // Other subclasses (ChoiceFormat, RuleBasedNumberFormat) do not (yet) handle DigitLists,
549 // so this default implementation falls back to formatting decimal numbers as doubles.
550 if (U_FAILURE(status)) {
551 return appendTo;
552 }
553 double dnum = number.getDouble();
554 format(dnum, appendTo, pos, status);
555 return appendTo;
556 }
557
558 UnicodeString&
559 NumberFormat::format(const Formattable& obj,
560 UnicodeString& appendTo,
561 FieldPosition& pos,
562 UErrorCode& status) const
563 {
564 if (U_FAILURE(status)) return appendTo;
565
566 ArgExtractor arg(*this, obj, status);
567 const Formattable *n = arg.number();
568 const UChar *iso = arg.iso();
569
570 if(arg.wasCurrency() && u_strcmp(iso, getCurrency())) {
571 // trying to format a different currency.
572 // Right now, we clone.
573 LocalPointer<NumberFormat> cloneFmt((NumberFormat*)this->clone());
574 cloneFmt->setCurrency(iso, status);
575 // next line should NOT recurse, because n is numeric whereas obj was a wrapper around currency amount.
576 return cloneFmt->format(*n, appendTo, pos, status);
577 }
578
579 if (n->isNumeric() && n->getDigitList() != NULL) {
580 // Decimal Number. We will have a DigitList available if the value was
581 // set to a decimal number, or if the value originated with a parse.
582 //
583 // The default implementation for formatting a DigitList converts it
584 // to a double, and formats that, allowing formatting classes that don't
585 // know about DigitList to continue to operate as they had.
586 //
587 // DecimalFormat overrides the DigitList formatting functions.
588 format(*n->getDigitList(), appendTo, pos, status);
589 } else {
590 switch (n->getType()) {
591 case Formattable::kDouble:
592 format(n->getDouble(), appendTo, pos);
593 break;
594 case Formattable::kLong:
595 format(n->getLong(), appendTo, pos);
596 break;
597 case Formattable::kInt64:
598 format(n->getInt64(), appendTo, pos);
599 break;
600 default:
601 status = U_INVALID_FORMAT_ERROR;
602 break;
603 }
604 }
605
606 return appendTo;
607 }
608
609 // -------------------------------------x
610 // Formats the number object and save the format
611 // result in the toAppendTo string buffer.
612
613 UnicodeString&
614 NumberFormat::format(const Formattable& obj,
615 UnicodeString& appendTo,
616 FieldPositionIterator* posIter,
617 UErrorCode& status) const
618 {
619 if (U_FAILURE(status)) return appendTo;
620
621 ArgExtractor arg(*this, obj, status);
622 const Formattable *n = arg.number();
623 const UChar *iso = arg.iso();
624
625 if(arg.wasCurrency() && u_strcmp(iso, getCurrency())) {
626 // trying to format a different currency.
627 // Right now, we clone.
628 LocalPointer<NumberFormat> cloneFmt((NumberFormat*)this->clone());
629 cloneFmt->setCurrency(iso, status);
630 // next line should NOT recurse, because n is numeric whereas obj was a wrapper around currency amount.
631 return cloneFmt->format(*n, appendTo, posIter, status);
632 }
633
634 if (n->isNumeric() && n->getDigitList() != NULL) {
635 // Decimal Number
636 format(*n->getDigitList(), appendTo, posIter, status);
637 } else {
638 switch (n->getType()) {
639 case Formattable::kDouble:
640 format(n->getDouble(), appendTo, posIter, status);
641 break;
642 case Formattable::kLong:
643 format(n->getLong(), appendTo, posIter, status);
644 break;
645 case Formattable::kInt64:
646 format(n->getInt64(), appendTo, posIter, status);
647 break;
648 default:
649 status = U_INVALID_FORMAT_ERROR;
650 break;
651 }
652 }
653
654 return appendTo;
655 }
656
657 // -------------------------------------
658
659 UnicodeString&
660 NumberFormat::format(int64_t number,
661 UnicodeString& appendTo,
662 FieldPosition& pos) const
663 {
664 // default so we don't introduce a new abstract method
665 return format((int32_t)number, appendTo, pos);
666 }
667
668 // -------------------------------------
669 // Parses the string and save the result object as well
670 // as the final parsed position.
671
672 void
673 NumberFormat::parseObject(const UnicodeString& source,
674 Formattable& result,
675 ParsePosition& parse_pos) const
676 {
677 parse(source, result, parse_pos);
678 }
679
680 // -------------------------------------
681 // Formats a double number and save the result in a string.
682
683 UnicodeString&
684 NumberFormat::format(double number, UnicodeString& appendTo) const
685 {
686 FieldPosition pos(0);
687 return format(number, appendTo, pos);
688 }
689
690 // -------------------------------------
691 // Formats a long number and save the result in a string.
692
693 UnicodeString&
694 NumberFormat::format(int32_t number, UnicodeString& appendTo) const
695 {
696 FieldPosition pos(0);
697 return format(number, appendTo, pos);
698 }
699
700 // -------------------------------------
701 // Formats a long number and save the result in a string.
702
703 UnicodeString&
704 NumberFormat::format(int64_t number, UnicodeString& appendTo) const
705 {
706 FieldPosition pos(0);
707 return format(number, appendTo, pos);
708 }
709
710 // -------------------------------------
711 // Parses the text and save the result object. If the returned
712 // parse position is 0, that means the parsing failed, the status
713 // code needs to be set to failure. Ignores the returned parse
714 // position, otherwise.
715
716 void
717 NumberFormat::parse(const UnicodeString& text,
718 Formattable& result,
719 UErrorCode& status) const
720 {
721 if (U_FAILURE(status)) return;
722
723 ParsePosition parsePosition(0);
724 parse(text, result, parsePosition);
725 if (parsePosition.getIndex() == 0) {
726 status = U_INVALID_FORMAT_ERROR;
727 }
728 }
729
730 CurrencyAmount* NumberFormat::parseCurrency(const UnicodeString& text,
731 ParsePosition& pos) const {
732 // Default implementation only -- subclasses should override
733 Formattable parseResult;
734 int32_t start = pos.getIndex();
735 parse(text, parseResult, pos);
736 if (pos.getIndex() != start) {
737 UChar curr[4];
738 UErrorCode ec = U_ZERO_ERROR;
739 getEffectiveCurrency(curr, ec);
740 if (U_SUCCESS(ec)) {
741 LocalPointer<CurrencyAmount> currAmt(new CurrencyAmount(parseResult, curr, ec));
742 if (U_FAILURE(ec)) {
743 pos.setIndex(start); // indicate failure
744 } else {
745 return currAmt.orphan();
746 }
747 }
748 }
749 return NULL;
750 }
751
752 // -------------------------------------
753 // Sets to only parse integers.
754
755 void
756 NumberFormat::setParseIntegerOnly(UBool value)
757 {
758 fParseIntegerOnly = value;
759 }
760
761 // -------------------------------------
762 // Sets whether lenient parse is enabled.
763
764 void
765 NumberFormat::setLenient(UBool enable)
766 {
767 fLenient = enable;
768 }
769
770 // -------------------------------------
771 // Create a number style NumberFormat instance with the default locale.
772
773 NumberFormat* U_EXPORT2
774 NumberFormat::createInstance(UErrorCode& status)
775 {
776 return createInstance(Locale::getDefault(), UNUM_DECIMAL, status);
777 }
778
779 // -------------------------------------
780 // Create a number style NumberFormat instance with the inLocale locale.
781
782 NumberFormat* U_EXPORT2
783 NumberFormat::createInstance(const Locale& inLocale, UErrorCode& status)
784 {
785 return createInstance(inLocale, UNUM_DECIMAL, status);
786 }
787
788 // -------------------------------------
789 // Create a currency style NumberFormat instance with the default locale.
790
791 NumberFormat* U_EXPORT2
792 NumberFormat::createCurrencyInstance(UErrorCode& status)
793 {
794 return createCurrencyInstance(Locale::getDefault(), status);
795 }
796
797 // -------------------------------------
798 // Create a currency style NumberFormat instance with the inLocale locale.
799
800 NumberFormat* U_EXPORT2
801 NumberFormat::createCurrencyInstance(const Locale& inLocale, UErrorCode& status)
802 {
803 return createInstance(inLocale, UNUM_CURRENCY, status);
804 }
805
806 // -------------------------------------
807 // Create a percent style NumberFormat instance with the default locale.
808
809 NumberFormat* U_EXPORT2
810 NumberFormat::createPercentInstance(UErrorCode& status)
811 {
812 return createInstance(Locale::getDefault(), UNUM_PERCENT, status);
813 }
814
815 // -------------------------------------
816 // Create a percent style NumberFormat instance with the inLocale locale.
817
818 NumberFormat* U_EXPORT2
819 NumberFormat::createPercentInstance(const Locale& inLocale, UErrorCode& status)
820 {
821 return createInstance(inLocale, UNUM_PERCENT, status);
822 }
823
824 // -------------------------------------
825 // Create a scientific style NumberFormat instance with the default locale.
826
827 NumberFormat* U_EXPORT2
828 NumberFormat::createScientificInstance(UErrorCode& status)
829 {
830 return createInstance(Locale::getDefault(), UNUM_SCIENTIFIC, status);
831 }
832
833 // -------------------------------------
834 // Create a scientific style NumberFormat instance with the inLocale locale.
835
836 NumberFormat* U_EXPORT2
837 NumberFormat::createScientificInstance(const Locale& inLocale, UErrorCode& status)
838 {
839 return createInstance(inLocale, UNUM_SCIENTIFIC, status);
840 }
841
842 // -------------------------------------
843
844 const Locale* U_EXPORT2
845 NumberFormat::getAvailableLocales(int32_t& count)
846 {
847 return Locale::getAvailableLocales(count);
848 }
849
850 // ------------------------------------------
851 //
852 // Registration
853 //
854 //-------------------------------------------
855
856 #if !UCONFIG_NO_SERVICE
857
858 // -------------------------------------
859
860 class ICUNumberFormatFactory : public ICUResourceBundleFactory {
861 public:
862 virtual ~ICUNumberFormatFactory();
863 protected:
864 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* /* service */, UErrorCode& status) const {
865 return NumberFormat::makeInstance(loc, (UNumberFormatStyle)kind, status);
866 }
867 };
868
869 ICUNumberFormatFactory::~ICUNumberFormatFactory() {}
870
871 // -------------------------------------
872
873 class NFFactory : public LocaleKeyFactory {
874 private:
875 NumberFormatFactory* _delegate;
876 Hashtable* _ids;
877
878 public:
879 NFFactory(NumberFormatFactory* delegate)
880 : LocaleKeyFactory(delegate->visible() ? VISIBLE : INVISIBLE)
881 , _delegate(delegate)
882 , _ids(NULL)
883 {
884 }
885
886 virtual ~NFFactory();
887
888 virtual UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const
889 {
890 if (handlesKey(key, status)) {
891 const LocaleKey& lkey = (const LocaleKey&)key;
892 Locale loc;
893 lkey.canonicalLocale(loc);
894 int32_t kind = lkey.kind();
895
896 UObject* result = _delegate->createFormat(loc, (UNumberFormatStyle)kind);
897 if (result == NULL) {
898 result = service->getKey((ICUServiceKey&)key /* cast away const */, NULL, this, status);
899 }
900 return result;
901 }
902 return NULL;
903 }
904
905 protected:
906 /**
907 * Return the set of ids that this factory supports (visible or
908 * otherwise). This can be called often and might need to be
909 * cached if it is expensive to create.
910 */
911 virtual const Hashtable* getSupportedIDs(UErrorCode& status) const
912 {
913 if (U_SUCCESS(status)) {
914 if (!_ids) {
915 int32_t count = 0;
916 const UnicodeString * const idlist = _delegate->getSupportedIDs(count, status);
917 ((NFFactory*)this)->_ids = new Hashtable(status); /* cast away const */
918 if (_ids) {
919 for (int i = 0; i < count; ++i) {
920 _ids->put(idlist[i], (void*)this, status);
921 }
922 }
923 }
924 return _ids;
925 }
926 return NULL;
927 }
928 };
929
930 NFFactory::~NFFactory()
931 {
932 delete _delegate;
933 delete _ids;
934 }
935
936 class ICUNumberFormatService : public ICULocaleService {
937 public:
938 ICUNumberFormatService()
939 : ICULocaleService(UNICODE_STRING_SIMPLE("Number Format"))
940 {
941 UErrorCode status = U_ZERO_ERROR;
942 registerFactory(new ICUNumberFormatFactory(), status);
943 }
944
945 virtual ~ICUNumberFormatService();
946
947 virtual UObject* cloneInstance(UObject* instance) const {
948 return ((NumberFormat*)instance)->clone();
949 }
950
951 virtual UObject* handleDefault(const ICUServiceKey& key, UnicodeString* /* actualID */, UErrorCode& status) const {
952 LocaleKey& lkey = (LocaleKey&)key;
953 int32_t kind = lkey.kind();
954 Locale loc;
955 lkey.currentLocale(loc);
956 return NumberFormat::makeInstance(loc, (UNumberFormatStyle)kind, status);
957 }
958
959 virtual UBool isDefault() const {
960 return countFactories() == 1;
961 }
962 };
963
964 ICUNumberFormatService::~ICUNumberFormatService() {}
965
966 // -------------------------------------
967
968 static void U_CALLCONV initNumberFormatService() {
969 U_ASSERT(gService == NULL);
970 ucln_i18n_registerCleanup(UCLN_I18N_NUMFMT, numfmt_cleanup);
971 gService = new ICUNumberFormatService();
972 }
973
974 static ICULocaleService*
975 getNumberFormatService(void)
976 {
977 umtx_initOnce(gServiceInitOnce, &initNumberFormatService);
978 return gService;
979 }
980
981 static UBool haveService() {
982 return !gServiceInitOnce.isReset() && (getNumberFormatService() != NULL);
983 }
984
985 // -------------------------------------
986
987 URegistryKey U_EXPORT2
988 NumberFormat::registerFactory(NumberFormatFactory* toAdopt, UErrorCode& status)
989 {
990 ICULocaleService *service = getNumberFormatService();
991 if (service) {
992 NFFactory *tempnnf = new NFFactory(toAdopt);
993 if (tempnnf != NULL) {
994 return service->registerFactory(tempnnf, status);
995 }
996 }
997 status = U_MEMORY_ALLOCATION_ERROR;
998 return NULL;
999 }
1000
1001 // -------------------------------------
1002
1003 UBool U_EXPORT2
1004 NumberFormat::unregister(URegistryKey key, UErrorCode& status)
1005 {
1006 if (U_FAILURE(status)) {
1007 return FALSE;
1008 }
1009 if (haveService()) {
1010 return gService->unregister(key, status);
1011 } else {
1012 status = U_ILLEGAL_ARGUMENT_ERROR;
1013 return FALSE;
1014 }
1015 }
1016
1017 // -------------------------------------
1018 StringEnumeration* U_EXPORT2
1019 NumberFormat::getAvailableLocales(void)
1020 {
1021 ICULocaleService *service = getNumberFormatService();
1022 if (service) {
1023 return service->getAvailableLocales();
1024 }
1025 return NULL; // no way to return error condition
1026 }
1027 #endif /* UCONFIG_NO_SERVICE */
1028 // -------------------------------------
1029
1030 NumberFormat*
1031 NumberFormat::internalCreateInstance(const Locale& loc, UNumberFormatStyle kind, UErrorCode& status) {
1032 #if !UCONFIG_NO_SERVICE
1033 if (haveService()) {
1034 return (NumberFormat*)gService->get(loc, kind, status);
1035 }
1036 #endif
1037 return makeInstance(loc, kind, status);
1038 }
1039
1040 NumberFormat* U_EXPORT2
1041 NumberFormat::createInstance(const Locale& loc, UNumberFormatStyle kind, UErrorCode& status) {
1042 if (kind != UNUM_DECIMAL) {
1043 return internalCreateInstance(loc, kind, status);
1044 }
1045 const SharedNumberFormat *shared = createSharedInstance(loc, kind, status);
1046 if (U_FAILURE(status)) {
1047 return NULL;
1048 }
1049 NumberFormat *result = static_cast<NumberFormat *>((*shared)->clone());
1050 shared->removeRef();
1051 if (result == NULL) {
1052 status = U_MEMORY_ALLOCATION_ERROR;
1053 }
1054 return result;
1055 }
1056
1057
1058 // -------------------------------------
1059 // Checks if the thousand/10 thousand grouping is used in the
1060 // NumberFormat instance.
1061
1062 UBool
1063 NumberFormat::isGroupingUsed() const
1064 {
1065 return fGroupingUsed;
1066 }
1067
1068 // -------------------------------------
1069 // Sets to use the thousand/10 thousand grouping in the
1070 // NumberFormat instance.
1071
1072 void
1073 NumberFormat::setGroupingUsed(UBool newValue)
1074 {
1075 fGroupingUsed = newValue;
1076 }
1077
1078 // -------------------------------------
1079 // Gets the maximum number of digits for the integral part for
1080 // this NumberFormat instance.
1081
1082 int32_t NumberFormat::getMaximumIntegerDigits() const
1083 {
1084 return fMaxIntegerDigits;
1085 }
1086
1087 // -------------------------------------
1088 // Sets the maximum number of digits for the integral part for
1089 // this NumberFormat instance.
1090
1091 void
1092 NumberFormat::setMaximumIntegerDigits(int32_t newValue)
1093 {
1094 fMaxIntegerDigits = uprv_max(0, uprv_min(newValue, gDefaultMaxIntegerDigits));
1095 if(fMinIntegerDigits > fMaxIntegerDigits)
1096 fMinIntegerDigits = fMaxIntegerDigits;
1097 }
1098
1099 // -------------------------------------
1100 // Gets the minimum number of digits for the integral part for
1101 // this NumberFormat instance.
1102
1103 int32_t
1104 NumberFormat::getMinimumIntegerDigits() const
1105 {
1106 return fMinIntegerDigits;
1107 }
1108
1109 // -------------------------------------
1110 // Sets the minimum number of digits for the integral part for
1111 // this NumberFormat instance.
1112
1113 void
1114 NumberFormat::setMinimumIntegerDigits(int32_t newValue)
1115 {
1116 fMinIntegerDigits = uprv_max(0, uprv_min(newValue, gDefaultMinIntegerDigits));
1117 if(fMinIntegerDigits > fMaxIntegerDigits)
1118 fMaxIntegerDigits = fMinIntegerDigits;
1119 }
1120
1121 // -------------------------------------
1122 // Gets the maximum number of digits for the fractional part for
1123 // this NumberFormat instance.
1124
1125 int32_t
1126 NumberFormat::getMaximumFractionDigits() const
1127 {
1128 return fMaxFractionDigits;
1129 }
1130
1131 // -------------------------------------
1132 // Sets the maximum number of digits for the fractional part for
1133 // this NumberFormat instance.
1134
1135 void
1136 NumberFormat::setMaximumFractionDigits(int32_t newValue)
1137 {
1138 fMaxFractionDigits = uprv_max(0, uprv_min(newValue, gDefaultMaxIntegerDigits));
1139 if(fMaxFractionDigits < fMinFractionDigits)
1140 fMinFractionDigits = fMaxFractionDigits;
1141 }
1142
1143 // -------------------------------------
1144 // Gets the minimum number of digits for the fractional part for
1145 // this NumberFormat instance.
1146
1147 int32_t
1148 NumberFormat::getMinimumFractionDigits() const
1149 {
1150 return fMinFractionDigits;
1151 }
1152
1153 // -------------------------------------
1154 // Sets the minimum number of digits for the fractional part for
1155 // this NumberFormat instance.
1156
1157 void
1158 NumberFormat::setMinimumFractionDigits(int32_t newValue)
1159 {
1160 fMinFractionDigits = uprv_max(0, uprv_min(newValue, gDefaultMinIntegerDigits));
1161 if (fMaxFractionDigits < fMinFractionDigits)
1162 fMaxFractionDigits = fMinFractionDigits;
1163 }
1164
1165 // -------------------------------------
1166
1167 void NumberFormat::setCurrency(const UChar* theCurrency, UErrorCode& ec) {
1168 if (U_FAILURE(ec)) {
1169 return;
1170 }
1171 if (theCurrency) {
1172 u_strncpy(fCurrency, theCurrency, 3);
1173 fCurrency[3] = 0;
1174 } else {
1175 fCurrency[0] = 0;
1176 }
1177 }
1178
1179 const UChar* NumberFormat::getCurrency() const {
1180 return fCurrency;
1181 }
1182
1183 void NumberFormat::getEffectiveCurrency(UChar* result, UErrorCode& ec) const {
1184 const UChar* c = getCurrency();
1185 if (*c != 0) {
1186 u_strncpy(result, c, 3);
1187 result[3] = 0;
1188 } else {
1189 const char* loc = getLocaleID(ULOC_VALID_LOCALE, ec);
1190 if (loc == NULL) {
1191 loc = uloc_getDefault();
1192 }
1193 ucurr_forLocale(loc, result, 4, &ec);
1194 }
1195 }
1196
1197 //----------------------------------------------------------------------
1198
1199
1200 void NumberFormat::setContext(UDisplayContext value, UErrorCode& status)
1201 {
1202 if (U_FAILURE(status))
1203 return;
1204 if ( (UDisplayContextType)((uint32_t)value >> 8) == UDISPCTX_TYPE_CAPITALIZATION ) {
1205 fCapitalizationContext = value;
1206 } else {
1207 status = U_ILLEGAL_ARGUMENT_ERROR;
1208 }
1209 }
1210
1211
1212 UDisplayContext NumberFormat::getContext(UDisplayContextType type, UErrorCode& status) const
1213 {
1214 if (U_FAILURE(status))
1215 return (UDisplayContext)0;
1216 if (type != UDISPCTX_TYPE_CAPITALIZATION) {
1217 status = U_ILLEGAL_ARGUMENT_ERROR;
1218 return (UDisplayContext)0;
1219 }
1220 return fCapitalizationContext;
1221 }
1222
1223
1224 // -------------------------------------
1225 // Creates the NumberFormat instance of the specified style (number, currency,
1226 // or percent) for the desired locale.
1227
1228 static void U_CALLCONV nscacheInit() {
1229 U_ASSERT(NumberingSystem_cache == NULL);
1230 ucln_i18n_registerCleanup(UCLN_I18N_NUMFMT, numfmt_cleanup);
1231 UErrorCode status = U_ZERO_ERROR;
1232 NumberingSystem_cache = uhash_open(uhash_hashLong,
1233 uhash_compareLong,
1234 NULL,
1235 &status);
1236 if (U_FAILURE(status)) {
1237 // Number Format code will run with no cache if creation fails.
1238 NumberingSystem_cache = NULL;
1239 return;
1240 }
1241 uhash_setValueDeleter(NumberingSystem_cache, deleteNumberingSystem);
1242 }
1243
1244 static SharedObject *U_CALLCONV createSharedNumberFormat(
1245 const char *localeId, UErrorCode &status) {
1246 if (U_FAILURE(status)) {
1247 return NULL;
1248 }
1249 NumberFormat *nf = NumberFormat::internalCreateInstance(
1250 localeId, UNUM_DECIMAL, status);
1251 if (U_FAILURE(status)) {
1252 return NULL;
1253 }
1254 SharedObject *result = new SharedNumberFormat(nf);
1255 if (result == NULL) {
1256 status = U_MEMORY_ALLOCATION_ERROR;
1257 delete nf;
1258 return NULL;
1259 }
1260 return result;
1261 }
1262
1263 static void U_CALLCONV numberFormatCacheInit(UErrorCode &status) {
1264 U_ASSERT(gNumberFormatCache == NULL);
1265 ucln_i18n_registerCleanup(UCLN_I18N_NUMFMT, numfmt_cleanup);
1266 gNumberFormatCache = new SimpleLRUCache(100, &createSharedNumberFormat, status);
1267 if (U_FAILURE(status)) {
1268 delete gNumberFormatCache;
1269 gNumberFormatCache = NULL;
1270 }
1271 }
1272
1273 static void getSharedNumberFormatFromCache(
1274 const char *locale,
1275 const SharedNumberFormat *&ptr,
1276 UErrorCode &status) {
1277 umtx_initOnce(gNumberFormatCacheInitOnce, &numberFormatCacheInit, status);
1278 if (U_FAILURE(status)) {
1279 return;
1280 }
1281 Mutex lock(&gNumberFormatCacheMutex);
1282 gNumberFormatCache->get(locale, ptr, status);
1283 }
1284
1285 const SharedNumberFormat* U_EXPORT2
1286 NumberFormat::createSharedInstance(const Locale& loc, UNumberFormatStyle kind, UErrorCode& status) {
1287 if (U_FAILURE(status)) {
1288 return NULL;
1289 }
1290 if (kind != UNUM_DECIMAL) {
1291 status = U_UNSUPPORTED_ERROR;
1292 return NULL;
1293 }
1294 const SharedNumberFormat *result = NULL;
1295 getSharedNumberFormatFromCache(loc.getName(), result, status);
1296 return result;
1297 }
1298
1299 UBool
1300 NumberFormat::isStyleSupported(UNumberFormatStyle style) {
1301 return gLastResortNumberPatterns[style] != NULL;
1302 }
1303
1304 NumberFormat*
1305 NumberFormat::makeInstance(const Locale& desiredLocale,
1306 UNumberFormatStyle style,
1307 UErrorCode& status) {
1308 return makeInstance(desiredLocale, style, false, status);
1309 }
1310
1311 NumberFormat*
1312 NumberFormat::makeInstance(const Locale& desiredLocale,
1313 UNumberFormatStyle style,
1314 UBool mustBeDecimalFormat,
1315 UErrorCode& status) {
1316 if (U_FAILURE(status)) return NULL;
1317
1318 if (style < 0 || style >= UNUM_FORMAT_STYLE_COUNT) {
1319 status = U_ILLEGAL_ARGUMENT_ERROR;
1320 return NULL;
1321 }
1322
1323 // Some styles are not supported. This is a result of merging
1324 // the @draft ICU 4.2 NumberFormat::EStyles into the long-existing UNumberFormatStyle.
1325 // Ticket #8503 is for reviewing/fixing/merging the two relevant implementations:
1326 // this one and unum_open().
1327 // The UNUM_PATTERN_ styles are not supported here
1328 // because this method does not take a pattern string.
1329 if (!isStyleSupported(style)) {
1330 status = U_UNSUPPORTED_ERROR;
1331 return NULL;
1332 }
1333
1334 #if U_PLATFORM_USES_ONLY_WIN32_API
1335 if (!mustBeDecimalFormat) {
1336 char buffer[8];
1337 int32_t count = desiredLocale.getKeywordValue("compat", buffer, sizeof(buffer), status);
1338
1339 // if the locale has "@compat=host", create a host-specific NumberFormat
1340 if (U_SUCCESS(status) && count > 0 && uprv_strcmp(buffer, "host") == 0) {
1341 Win32NumberFormat *f = NULL;
1342 UBool curr = TRUE;
1343
1344 switch (style) {
1345 case UNUM_DECIMAL:
1346 curr = FALSE;
1347 // fall-through
1348
1349 case UNUM_CURRENCY:
1350 case UNUM_CURRENCY_ISO: // do not support plural formatting here
1351 case UNUM_CURRENCY_PLURAL:
1352 case UNUM_CURRENCY_ACCOUNTING:
1353 f = new Win32NumberFormat(desiredLocale, curr, status);
1354
1355 if (U_SUCCESS(status)) {
1356 return f;
1357 }
1358
1359 delete f;
1360 break;
1361 default:
1362 break;
1363 }
1364 }
1365 }
1366 #endif
1367 // Use numbering system cache hashtable
1368 umtx_initOnce(gNSCacheInitOnce, &nscacheInit);
1369
1370 // Get cached numbering system
1371 LocalPointer<NumberingSystem> ownedNs;
1372 NumberingSystem *ns = NULL;
1373 if (NumberingSystem_cache != NULL) {
1374 // TODO: Bad hash key usage, see ticket #8504.
1375 int32_t hashKey = desiredLocale.hashCode();
1376
1377 Mutex lock(&nscacheMutex);
1378 ns = (NumberingSystem *)uhash_iget(NumberingSystem_cache, hashKey);
1379 if (ns == NULL) {
1380 ns = NumberingSystem::createInstance(desiredLocale,status);
1381 uhash_iput(NumberingSystem_cache, hashKey, (void*)ns, &status);
1382 }
1383 } else {
1384 ownedNs.adoptInstead(NumberingSystem::createInstance(desiredLocale,status));
1385 ns = ownedNs.getAlias();
1386 }
1387
1388 // check results of getting a numbering system
1389 if (U_FAILURE(status)) {
1390 return NULL;
1391 }
1392
1393 if (mustBeDecimalFormat && ns->isAlgorithmic()) {
1394 status = U_UNSUPPORTED_ERROR;
1395 return NULL;
1396 }
1397
1398 LocalPointer<DecimalFormatSymbols> symbolsToAdopt;
1399 UnicodeString pattern;
1400 LocalUResourceBundlePointer ownedResource(ures_open(NULL, desiredLocale.getName(), &status));
1401 if (U_FAILURE(status)) {
1402 // We don't appear to have resource data available -- use the last-resort data
1403 status = U_USING_FALLBACK_WARNING;
1404 // When the data is unavailable, and locale isn't passed in, last resort data is used.
1405 symbolsToAdopt.adoptInstead(new DecimalFormatSymbols(status));
1406 if (symbolsToAdopt.isNull()) {
1407 status = U_MEMORY_ALLOCATION_ERROR;
1408 return NULL;
1409 }
1410
1411 // Creates a DecimalFormat instance with the last resort number patterns.
1412 pattern.setTo(TRUE, gLastResortNumberPatterns[style], -1);
1413 }
1414 else {
1415 // Loads the decimal symbols of the desired locale.
1416 symbolsToAdopt.adoptInstead(new DecimalFormatSymbols(desiredLocale, status));
1417 if (symbolsToAdopt.isNull()) {
1418 status = U_MEMORY_ALLOCATION_ERROR;
1419 return NULL;
1420 }
1421
1422 UResourceBundle *resource = ownedResource.orphan();
1423 UResourceBundle *numElements = ures_getByKeyWithFallback(resource, gNumberElements, NULL, &status);
1424 resource = ures_getByKeyWithFallback(numElements, ns->getName(), resource, &status);
1425 resource = ures_getByKeyWithFallback(resource, gPatterns, resource, &status);
1426 ownedResource.adoptInstead(resource);
1427
1428 int32_t patLen = 0;
1429 const UChar *patResStr = ures_getStringByKeyWithFallback(resource, gFormatKeys[style], &patLen, &status);
1430
1431 // Didn't find a pattern specific to the numbering system, so fall back to "latn"
1432 if ( status == U_MISSING_RESOURCE_ERROR && uprv_strcmp(gLatn,ns->getName())) {
1433 status = U_ZERO_ERROR;
1434 resource = ures_getByKeyWithFallback(numElements, gLatn, resource, &status);
1435 resource = ures_getByKeyWithFallback(resource, gPatterns, resource, &status);
1436 patResStr = ures_getStringByKeyWithFallback(resource, gFormatKeys[style], &patLen, &status);
1437 }
1438
1439 ures_close(numElements);
1440
1441 // Creates the specified decimal format style of the desired locale.
1442 pattern.setTo(TRUE, patResStr, patLen);
1443 }
1444 if (U_FAILURE(status)) {
1445 return NULL;
1446 }
1447 if(style==UNUM_CURRENCY || style == UNUM_CURRENCY_ISO || style == UNUM_CURRENCY_ACCOUNTING){
1448 const UChar* currPattern = symbolsToAdopt->getCurrencyPattern();
1449 if(currPattern!=NULL){
1450 pattern.setTo(currPattern, u_strlen(currPattern));
1451 }
1452 }
1453
1454
1455 NumberFormat *f;
1456 if (ns->isAlgorithmic()) {
1457 UnicodeString nsDesc;
1458 UnicodeString nsRuleSetGroup;
1459 UnicodeString nsRuleSetName;
1460 Locale nsLoc;
1461 URBNFRuleSetTag desiredRulesType = URBNF_NUMBERING_SYSTEM;
1462
1463 nsDesc.setTo(ns->getDescription());
1464 int32_t firstSlash = nsDesc.indexOf(gSlash);
1465 int32_t lastSlash = nsDesc.lastIndexOf(gSlash);
1466 if ( lastSlash > firstSlash ) {
1467 CharString nsLocID;
1468
1469 nsLocID.appendInvariantChars(nsDesc.tempSubString(0, firstSlash), status);
1470 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1);
1471 nsRuleSetName.setTo(nsDesc,lastSlash+1);
1472
1473 nsLoc = Locale::createFromName(nsLocID.data());
1474
1475 UnicodeString SpelloutRules = UNICODE_STRING_SIMPLE("SpelloutRules");
1476 if ( nsRuleSetGroup.compare(SpelloutRules) == 0 ) {
1477 desiredRulesType = URBNF_SPELLOUT;
1478 }
1479 } else {
1480 nsLoc = desiredLocale;
1481 nsRuleSetName.setTo(nsDesc);
1482 }
1483
1484 RuleBasedNumberFormat *r = new RuleBasedNumberFormat(desiredRulesType,nsLoc,status);
1485 if (r == NULL) {
1486 status = U_MEMORY_ALLOCATION_ERROR;
1487 return NULL;
1488 }
1489 r->setDefaultRuleSet(nsRuleSetName,status);
1490 f = r;
1491 } else {
1492 // replace single currency sign in the pattern with double currency sign
1493 // if the style is UNUM_CURRENCY_ISO
1494 if (style == UNUM_CURRENCY_ISO) {
1495 pattern.findAndReplace(UnicodeString(TRUE, gSingleCurrencySign, 1),
1496 UnicodeString(TRUE, gDoubleCurrencySign, 2));
1497 }
1498
1499 // "new DecimalFormat()" does not adopt the symbols if its memory allocation fails.
1500 DecimalFormatSymbols *syms = symbolsToAdopt.orphan();
1501 f = new DecimalFormat(pattern, syms, style, status);
1502 if (f == NULL) {
1503 delete syms;
1504 status = U_MEMORY_ALLOCATION_ERROR;
1505 return NULL;
1506 }
1507 }
1508
1509 f->setLocaleIDs(ures_getLocaleByType(ownedResource.getAlias(), ULOC_VALID_LOCALE, &status),
1510 ures_getLocaleByType(ownedResource.getAlias(), ULOC_ACTUAL_LOCALE, &status));
1511 if (U_FAILURE(status)) {
1512 delete f;
1513 return NULL;
1514 }
1515 return f;
1516 }
1517
1518 U_NAMESPACE_END
1519
1520 #endif /* #if !UCONFIG_NO_FORMATTING */
1521
1522 //eof