2004-04-21 18:05:06 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2014-02-04 00:29:17 +00:00
|
|
|
* Copyright (c) 2004-2014, International Business Machines
|
2004-04-21 18:05:06 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
|
|
|
* Author: Alan Liu
|
|
|
|
* Created: April 20, 2004
|
|
|
|
* Since: ICU 3.0
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
|
|
|
|
#include "unicode/measfmt.h"
|
2014-02-04 00:29:17 +00:00
|
|
|
#include "unicode/numfmt.h"
|
2004-04-21 18:05:06 +00:00
|
|
|
#include "currfmt.h"
|
2014-02-04 00:29:17 +00:00
|
|
|
#include "unicode/localpointer.h"
|
|
|
|
#include "quantityformatter.h"
|
|
|
|
#include "unicode/plurrule.h"
|
|
|
|
#include "unicode/decimfmt.h"
|
|
|
|
#include "lrucache.h"
|
|
|
|
#include "uresimp.h"
|
|
|
|
#include "unicode/ures.h"
|
|
|
|
#include "cstring.h"
|
|
|
|
#include "mutex.h"
|
|
|
|
#include "ucln_in.h"
|
|
|
|
#include "unicode/listformatter.h"
|
|
|
|
#include "charstr.h"
|
|
|
|
#include "unicode/putil.h"
|
|
|
|
#include "unicode/smpdtfmt.h"
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
#include "sharednumberformat.h"
|
|
|
|
#include "sharedpluralrules.h"
|
2014-02-04 00:29:17 +00:00
|
|
|
|
|
|
|
#define LENGTHOF(array) (int32_t)(sizeof(array)/sizeof((array)[0]))
|
|
|
|
#define MEAS_UNIT_COUNT 46
|
2014-02-10 19:13:50 +00:00
|
|
|
#define WIDTH_INDEX_COUNT (UMEASFMT_WIDTH_NARROW + 1)
|
2014-02-04 00:29:17 +00:00
|
|
|
|
|
|
|
static icu::LRUCache *gCache = NULL;
|
|
|
|
static UMutex gCacheMutex = U_MUTEX_INITIALIZER;
|
|
|
|
static icu::UInitOnce gCacheInitOnce = U_INITONCE_INITIALIZER;
|
|
|
|
|
|
|
|
U_CDECL_BEGIN
|
|
|
|
static UBool U_CALLCONV measfmt_cleanup() {
|
|
|
|
gCacheInitOnce.reset();
|
|
|
|
if (gCache) {
|
|
|
|
delete gCache;
|
|
|
|
gCache = NULL;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
U_CDECL_END
|
2004-04-21 18:05:06 +00:00
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
// Used to format durations like 5:47 or 21:35:42.
|
2014-02-04 00:29:17 +00:00
|
|
|
class NumericDateFormatters : public UMemory {
|
|
|
|
public:
|
2014-02-10 19:13:50 +00:00
|
|
|
// Formats like H:mm
|
2014-02-04 00:29:17 +00:00
|
|
|
SimpleDateFormat hourMinute;
|
2014-02-10 19:13:50 +00:00
|
|
|
|
|
|
|
// formats like M:ss
|
2014-02-04 00:29:17 +00:00
|
|
|
SimpleDateFormat minuteSecond;
|
2014-02-10 19:13:50 +00:00
|
|
|
|
|
|
|
// formats like H:mm:ss
|
2014-02-04 00:29:17 +00:00
|
|
|
SimpleDateFormat hourMinuteSecond;
|
2014-02-10 19:13:50 +00:00
|
|
|
|
|
|
|
// Constructor that takes the actual patterns for hour-minute,
|
|
|
|
// minute-second, and hour-minute-second respectively.
|
2014-02-04 00:29:17 +00:00
|
|
|
NumericDateFormatters(
|
|
|
|
const UnicodeString &hm,
|
|
|
|
const UnicodeString &ms,
|
|
|
|
const UnicodeString &hms,
|
|
|
|
UErrorCode &status) :
|
|
|
|
hourMinute(hm, status),
|
|
|
|
minuteSecond(ms, status),
|
|
|
|
hourMinuteSecond(hms, status) {
|
|
|
|
const TimeZone *gmt = TimeZone::getGMT();
|
|
|
|
hourMinute.setTimeZone(*gmt);
|
|
|
|
minuteSecond.setTimeZone(*gmt);
|
|
|
|
hourMinuteSecond.setTimeZone(*gmt);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
NumericDateFormatters(const NumericDateFormatters &other);
|
|
|
|
NumericDateFormatters &operator=(const NumericDateFormatters &other);
|
|
|
|
};
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
// Instances contain all MeasureFormat specific data for a particular locale.
|
|
|
|
// This data is cached. It is never copied, but is shared via shared pointers.
|
|
|
|
class MeasureFormatCacheData : public SharedObject {
|
2014-02-04 00:29:17 +00:00
|
|
|
public:
|
2014-02-10 19:13:50 +00:00
|
|
|
QuantityFormatter formatters[MEAS_UNIT_COUNT][WIDTH_INDEX_COUNT];
|
|
|
|
MeasureFormatCacheData();
|
|
|
|
void adoptCurrencyFormat(int32_t widthIndex, NumberFormat *nfToAdopt) {
|
|
|
|
delete currencyFormats[widthIndex];
|
|
|
|
currencyFormats[widthIndex] = nfToAdopt;
|
|
|
|
}
|
|
|
|
const NumberFormat *getCurrencyFormat(int32_t widthIndex) const {
|
|
|
|
return currencyFormats[widthIndex];
|
|
|
|
}
|
2014-02-16 02:10:51 +00:00
|
|
|
void adoptIntegerFormat(NumberFormat *nfToAdopt) {
|
|
|
|
delete integerFormat;
|
|
|
|
integerFormat = nfToAdopt;
|
|
|
|
}
|
|
|
|
const NumberFormat *getIntegerFormat() const {
|
|
|
|
return integerFormat;
|
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
void adoptNumericDateFormatters(NumericDateFormatters *formattersToAdopt) {
|
|
|
|
delete numericDateFormatters;
|
|
|
|
numericDateFormatters = formattersToAdopt;
|
|
|
|
}
|
|
|
|
const NumericDateFormatters *getNumericDateFormatters() const {
|
|
|
|
return numericDateFormatters;
|
|
|
|
}
|
|
|
|
virtual ~MeasureFormatCacheData();
|
2014-02-04 00:29:17 +00:00
|
|
|
private:
|
2014-02-10 19:13:50 +00:00
|
|
|
NumberFormat *currencyFormats[WIDTH_INDEX_COUNT];
|
2014-02-16 02:10:51 +00:00
|
|
|
NumberFormat *integerFormat;
|
2014-02-10 19:13:50 +00:00
|
|
|
NumericDateFormatters *numericDateFormatters;
|
|
|
|
MeasureFormatCacheData(const MeasureFormatCacheData &other);
|
|
|
|
MeasureFormatCacheData &operator=(const MeasureFormatCacheData &other);
|
2014-02-04 00:29:17 +00:00
|
|
|
};
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
MeasureFormatCacheData::MeasureFormatCacheData() {
|
|
|
|
for (int32_t i = 0; i < LENGTHOF(currencyFormats); ++i) {
|
|
|
|
currencyFormats[i] = NULL;
|
|
|
|
}
|
2014-02-16 02:10:51 +00:00
|
|
|
integerFormat = NULL;
|
2014-02-10 19:13:50 +00:00
|
|
|
numericDateFormatters = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
MeasureFormatCacheData::~MeasureFormatCacheData() {
|
|
|
|
for (int32_t i = 0; i < LENGTHOF(currencyFormats); ++i) {
|
|
|
|
delete currencyFormats[i];
|
|
|
|
}
|
2014-02-16 02:10:51 +00:00
|
|
|
delete integerFormat;
|
2014-02-10 19:13:50 +00:00
|
|
|
delete numericDateFormatters;
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int32_t widthToIndex(UMeasureFormatWidth width) {
|
2014-02-10 19:13:50 +00:00
|
|
|
if (width >= WIDTH_INDEX_COUNT) {
|
|
|
|
return WIDTH_INDEX_COUNT - 1;
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UBool isCurrency(const MeasureUnit &unit) {
|
|
|
|
return (uprv_strcmp(unit.getType(), "currency") == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static UBool getString(
|
|
|
|
const UResourceBundle *resource,
|
|
|
|
UnicodeString &result,
|
|
|
|
UErrorCode &status) {
|
|
|
|
int32_t len = 0;
|
|
|
|
const UChar *resStr = ures_getString(resource, &len, &status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
result.setTo(TRUE, resStr, len);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
static UBool loadMeasureUnitData(
|
2014-02-04 00:29:17 +00:00
|
|
|
const UResourceBundle *resource,
|
2014-02-10 19:13:50 +00:00
|
|
|
MeasureFormatCacheData &cacheData,
|
2014-02-04 00:29:17 +00:00
|
|
|
UErrorCode &status) {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
static const char *widthPath[] = {"units", "unitsShort", "unitsNarrow"};
|
|
|
|
MeasureUnit *units = NULL;
|
|
|
|
int32_t unitCount = MeasureUnit::getAvailable(units, 0, status);
|
|
|
|
while (status == U_BUFFER_OVERFLOW_ERROR) {
|
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
delete [] units;
|
|
|
|
units = new MeasureUnit[unitCount];
|
|
|
|
if (units == NULL) {
|
|
|
|
status = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
unitCount = MeasureUnit::getAvailable(units, unitCount, status);
|
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
for (int32_t currentWidth = 0; currentWidth < WIDTH_INDEX_COUNT; ++currentWidth) {
|
2014-02-04 00:29:17 +00:00
|
|
|
// Be sure status is clear since next resource bundle lookup may fail.
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
delete [] units;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
LocalUResourceBundlePointer widthBundle(
|
|
|
|
ures_getByKeyWithFallback(
|
|
|
|
resource, widthPath[currentWidth], NULL, &status));
|
|
|
|
// We may not have data for all widths in all locales.
|
|
|
|
if (status == U_MISSING_RESOURCE_ERROR) {
|
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (int32_t currentUnit = 0; currentUnit < unitCount; ++currentUnit) {
|
|
|
|
// Be sure status is clear next lookup may fail.
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
delete [] units;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (isCurrency(units[currentUnit])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
CharString pathBuffer;
|
|
|
|
pathBuffer.append(units[currentUnit].getType(), status)
|
|
|
|
.append("/", status)
|
|
|
|
.append(units[currentUnit].getSubtype(), status);
|
|
|
|
LocalUResourceBundlePointer unitBundle(
|
|
|
|
ures_getByKeyWithFallback(
|
|
|
|
widthBundle.getAlias(),
|
|
|
|
pathBuffer.data(),
|
|
|
|
NULL,
|
|
|
|
&status));
|
|
|
|
// We may not have data for all units in all widths
|
|
|
|
if (status == U_MISSING_RESOURCE_ERROR) {
|
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// We must have the unit bundle to proceed
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
delete [] units;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
int32_t size = ures_getSize(unitBundle.getAlias());
|
|
|
|
for (int32_t plIndex = 0; plIndex < size; ++plIndex) {
|
|
|
|
LocalUResourceBundlePointer pluralBundle(
|
|
|
|
ures_getByIndex(
|
|
|
|
unitBundle.getAlias(), plIndex, NULL, &status));
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
delete [] units;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
UnicodeString rawPattern;
|
|
|
|
getString(pluralBundle.getAlias(), rawPattern, status);
|
2014-02-10 19:13:50 +00:00
|
|
|
cacheData.formatters[units[currentUnit].getIndex()][currentWidth].add(
|
2014-02-04 00:29:17 +00:00
|
|
|
ures_getKey(pluralBundle.getAlias()),
|
|
|
|
rawPattern,
|
|
|
|
status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete [] units;
|
|
|
|
return U_SUCCESS(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
static UnicodeString loadNumericDateFormatterPattern(
|
|
|
|
const UResourceBundle *resource,
|
|
|
|
const char *pattern,
|
|
|
|
UErrorCode &status) {
|
|
|
|
UnicodeString result;
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
CharString chs;
|
|
|
|
chs.append("durationUnits", status)
|
|
|
|
.append("/", status).append(pattern, status);
|
|
|
|
LocalUResourceBundlePointer patternBundle(
|
|
|
|
ures_getByKeyWithFallback(
|
|
|
|
resource,
|
|
|
|
chs.data(),
|
|
|
|
NULL,
|
|
|
|
&status));
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
getString(patternBundle.getAlias(), result, status);
|
|
|
|
// Replace 'h' with 'H'
|
|
|
|
int32_t len = result.length();
|
|
|
|
UChar *buffer = result.getBuffer(len);
|
|
|
|
for (int32_t i = 0; i < len; ++i) {
|
|
|
|
if (buffer[i] == 0x68) { // 'h'
|
|
|
|
buffer[i] = 0x48; // 'H'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result.releaseBuffer(len);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NumericDateFormatters *loadNumericDateFormatters(
|
|
|
|
const UResourceBundle *resource,
|
|
|
|
UErrorCode &status) {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
NumericDateFormatters *result = new NumericDateFormatters(
|
|
|
|
loadNumericDateFormatterPattern(resource, "hm", status),
|
|
|
|
loadNumericDateFormatterPattern(resource, "ms", status),
|
|
|
|
loadNumericDateFormatterPattern(resource, "hms", status),
|
|
|
|
status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
delete result;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
// Creates the MeasureFormatCacheData for a particular locale
|
2014-02-04 00:29:17 +00:00
|
|
|
static SharedObject *U_CALLCONV createData(
|
|
|
|
const char *localeId, UErrorCode &status) {
|
|
|
|
LocalUResourceBundlePointer topLevel(ures_open(NULL, localeId, &status));
|
|
|
|
static UNumberFormatStyle currencyStyles[] = {
|
|
|
|
UNUM_CURRENCY_PLURAL, UNUM_CURRENCY_ISO, UNUM_CURRENCY};
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
LocalPointer<MeasureFormatCacheData> result(new MeasureFormatCacheData());
|
|
|
|
if (result.getAlias() == NULL) {
|
2014-02-04 00:29:17 +00:00
|
|
|
status = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
if (!loadMeasureUnitData(
|
2014-02-04 00:29:17 +00:00
|
|
|
topLevel.getAlias(),
|
2014-02-10 19:13:50 +00:00
|
|
|
*result,
|
2014-02-04 00:29:17 +00:00
|
|
|
status)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
result->adoptNumericDateFormatters(loadNumericDateFormatters(
|
|
|
|
topLevel.getAlias(), status));
|
2014-02-04 00:29:17 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
for (int32_t i = 0; i < WIDTH_INDEX_COUNT; ++i) {
|
|
|
|
result->adoptCurrencyFormat(i, NumberFormat::createInstance(
|
|
|
|
localeId, currencyStyles[i], status));
|
2014-02-04 00:29:17 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2014-02-16 02:10:51 +00:00
|
|
|
NumberFormat *inf = NumberFormat::createInstance(
|
|
|
|
localeId, UNUM_DECIMAL, status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
inf->setMaximumFractionDigits(0);
|
|
|
|
DecimalFormat *decfmt = dynamic_cast<DecimalFormat *>(inf);
|
|
|
|
if (decfmt != NULL) {
|
|
|
|
decfmt->setRoundingMode(DecimalFormat::kRoundDown);
|
|
|
|
}
|
|
|
|
result->adoptIntegerFormat(inf);
|
2014-02-04 00:29:17 +00:00
|
|
|
return result.orphan();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void U_CALLCONV cacheInit(UErrorCode &status) {
|
|
|
|
U_ASSERT(gCache == NULL);
|
|
|
|
U_ASSERT(MeasureUnit::getIndexCount() == MEAS_UNIT_COUNT);
|
|
|
|
ucln_i18n_registerCleanup(UCLN_I18N_MEASFMT, measfmt_cleanup);
|
|
|
|
gCache = new SimpleLRUCache(100, &createData, status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
delete gCache;
|
|
|
|
gCache = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
static UBool getFromCache(
|
2014-02-04 00:29:17 +00:00
|
|
|
const char *locale,
|
2014-02-10 19:13:50 +00:00
|
|
|
const MeasureFormatCacheData *&ptr,
|
2014-02-04 00:29:17 +00:00
|
|
|
UErrorCode &status) {
|
|
|
|
umtx_initOnce(gCacheInitOnce, &cacheInit, status);
|
|
|
|
if (U_FAILURE(status)) {
|
2014-02-10 19:13:50 +00:00
|
|
|
return FALSE;
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
Mutex lock(&gCacheMutex);
|
|
|
|
gCache->get(locale, ptr, status);
|
2014-02-10 19:13:50 +00:00
|
|
|
return U_SUCCESS(status);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int32_t toHMS(
|
|
|
|
const Measure *measures,
|
|
|
|
int32_t measureCount,
|
|
|
|
Formattable *hms,
|
|
|
|
UErrorCode &status) {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int32_t result = 0;
|
|
|
|
LocalPointer<MeasureUnit> hourUnit(MeasureUnit::createHour(status));
|
|
|
|
LocalPointer<MeasureUnit> minuteUnit(MeasureUnit::createMinute(status));
|
|
|
|
LocalPointer<MeasureUnit> secondUnit(MeasureUnit::createSecond(status));
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int32_t count = 0;
|
|
|
|
for (int32_t i = 0; i < measureCount; ++i) {
|
|
|
|
if (measures[i].getUnit() == *hourUnit) {
|
|
|
|
if ((result & 1) == 0) {
|
|
|
|
++count;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
hms[0] = measures[i].getNumber();
|
|
|
|
result |= 1;
|
|
|
|
} else if (measures[i].getUnit() == *minuteUnit) {
|
|
|
|
if ((result & 2) == 0) {
|
|
|
|
++count;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
hms[1] = measures[i].getNumber();
|
|
|
|
result |= 2;
|
|
|
|
} else if (measures[i].getUnit() == *secondUnit) {
|
|
|
|
if ((result & 4) == 0) {
|
|
|
|
++count;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
hms[2] = measures[i].getNumber();
|
|
|
|
result |= 4;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-04-28 00:12:33 +00:00
|
|
|
|
2014-02-04 00:29:17 +00:00
|
|
|
MeasureFormat::MeasureFormat(
|
|
|
|
const Locale &locale, UMeasureFormatWidth w, UErrorCode &status)
|
2014-02-10 19:13:50 +00:00
|
|
|
: cache(NULL),
|
|
|
|
numberFormat(NULL),
|
|
|
|
pluralRules(NULL),
|
|
|
|
width(w),
|
|
|
|
listFormatter(NULL) {
|
|
|
|
initMeasureFormat(locale, w, NULL, status);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MeasureFormat::MeasureFormat(
|
|
|
|
const Locale &locale,
|
|
|
|
UMeasureFormatWidth w,
|
|
|
|
NumberFormat *nfToAdopt,
|
|
|
|
UErrorCode &status)
|
2014-02-10 19:13:50 +00:00
|
|
|
: cache(NULL),
|
|
|
|
numberFormat(NULL),
|
|
|
|
pluralRules(NULL),
|
|
|
|
width(w),
|
|
|
|
listFormatter(NULL) {
|
|
|
|
initMeasureFormat(locale, w, nfToAdopt, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
MeasureFormat::MeasureFormat(const MeasureFormat &other) :
|
|
|
|
Format(other),
|
|
|
|
cache(other.cache),
|
|
|
|
numberFormat(other.numberFormat),
|
|
|
|
pluralRules(other.pluralRules),
|
|
|
|
width(other.width),
|
|
|
|
listFormatter(NULL) {
|
|
|
|
cache->addRef();
|
|
|
|
numberFormat->addRef();
|
|
|
|
pluralRules->addRef();
|
|
|
|
listFormatter = new ListFormatter(*other.listFormatter);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MeasureFormat &MeasureFormat::operator=(const MeasureFormat &other) {
|
|
|
|
if (this == &other) {
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
Format::operator=(other);
|
2014-02-10 19:13:50 +00:00
|
|
|
SharedObject::copyPtr(other.cache, cache);
|
|
|
|
SharedObject::copyPtr(other.numberFormat, numberFormat);
|
|
|
|
SharedObject::copyPtr(other.pluralRules, pluralRules);
|
2014-02-04 00:29:17 +00:00
|
|
|
width = other.width;
|
2014-02-10 19:13:50 +00:00
|
|
|
delete listFormatter;
|
|
|
|
listFormatter = new ListFormatter(*other.listFormatter);
|
2014-02-04 00:29:17 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
MeasureFormat::MeasureFormat() :
|
|
|
|
cache(NULL),
|
|
|
|
numberFormat(NULL),
|
|
|
|
pluralRules(NULL),
|
|
|
|
width(UMEASFMT_WIDTH_WIDE),
|
|
|
|
listFormatter(NULL) {
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MeasureFormat::~MeasureFormat() {
|
2014-02-10 19:13:50 +00:00
|
|
|
if (cache != NULL) {
|
|
|
|
cache->removeRef();
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
if (numberFormat != NULL) {
|
|
|
|
numberFormat->removeRef();
|
|
|
|
}
|
|
|
|
if (pluralRules != NULL) {
|
|
|
|
pluralRules->removeRef();
|
|
|
|
}
|
|
|
|
delete listFormatter;
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UBool MeasureFormat::operator==(const Format &other) const {
|
|
|
|
const MeasureFormat *rhs = dynamic_cast<const MeasureFormat *>(&other);
|
|
|
|
if (rhs == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
|
|
|
|
// Note: Since the ListFormatter depends only on Locale and width, we
|
|
|
|
// don't have to check it here.
|
|
|
|
|
2014-02-04 00:29:17 +00:00
|
|
|
// Same objects are equivalent
|
|
|
|
if (this == rhs) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
// differing widths aren't equivalent
|
|
|
|
if (width != rhs->width) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
// Width the same check locales.
|
|
|
|
// We don't need to check locales if both objects have same cache.
|
|
|
|
if (cache != rhs->cache) {
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
const char *localeId = getLocaleID(status);
|
|
|
|
const char *rhsLocaleId = rhs->getLocaleID(status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
// On failure, assume not equal
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (uprv_strcmp(localeId, rhsLocaleId) != 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
// Locales same, check NumberFormat if shared data differs.
|
|
|
|
return (
|
|
|
|
numberFormat == rhs->numberFormat ||
|
|
|
|
**numberFormat == **rhs->numberFormat);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Format *MeasureFormat::clone() const {
|
|
|
|
return new MeasureFormat(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString &MeasureFormat::format(
|
|
|
|
const Formattable &obj,
|
|
|
|
UnicodeString &appendTo,
|
|
|
|
FieldPosition &pos,
|
|
|
|
UErrorCode &status) const {
|
|
|
|
if (U_FAILURE(status)) return appendTo;
|
|
|
|
if (obj.getType() == Formattable::kObject) {
|
|
|
|
const UObject* formatObj = obj.getObject();
|
|
|
|
const Measure* amount = dynamic_cast<const Measure*>(formatObj);
|
|
|
|
if (amount != NULL) {
|
2014-02-16 02:10:51 +00:00
|
|
|
return formatMeasure(
|
|
|
|
*amount, **numberFormat, appendTo, pos, status);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
status = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MeasureFormat::parseObject(
|
|
|
|
const UnicodeString & /*source*/,
|
|
|
|
Formattable & /*result*/,
|
|
|
|
ParsePosition& /*pos*/) const {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString &MeasureFormat::formatMeasures(
|
|
|
|
const Measure *measures,
|
|
|
|
int32_t measureCount,
|
|
|
|
UnicodeString &appendTo,
|
|
|
|
FieldPosition &pos,
|
|
|
|
UErrorCode &status) const {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
if (measureCount == 0) {
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
if (measureCount == 1) {
|
2014-02-16 02:10:51 +00:00
|
|
|
return formatMeasure(measures[0], **numberFormat, appendTo, pos, status);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
if (width == UMEASFMT_WIDTH_NUMERIC) {
|
|
|
|
Formattable hms[3];
|
|
|
|
int32_t bitMap = toHMS(measures, measureCount, hms, status);
|
|
|
|
if (bitMap > 0) {
|
|
|
|
return formatNumeric(hms, bitMap, appendTo, status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pos.getField() != FieldPosition::DONT_CARE) {
|
|
|
|
return formatMeasuresSlowTrack(
|
2014-02-10 19:13:50 +00:00
|
|
|
measures, measureCount, appendTo, pos, status);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
UnicodeString *results = new UnicodeString[measureCount];
|
|
|
|
if (results == NULL) {
|
|
|
|
status = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
for (int32_t i = 0; i < measureCount; ++i) {
|
2014-02-16 02:10:51 +00:00
|
|
|
const NumberFormat *nf = cache->getIntegerFormat();
|
|
|
|
if (i == measureCount - 1) {
|
|
|
|
nf = numberFormat->get();
|
|
|
|
}
|
|
|
|
formatMeasure(
|
|
|
|
measures[i],
|
|
|
|
*nf,
|
|
|
|
results[i],
|
|
|
|
pos,
|
|
|
|
status);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
listFormatter->format(results, measureCount, appendTo, status);
|
2014-02-04 00:29:17 +00:00
|
|
|
delete [] results;
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MeasureFormat::initMeasureFormat(
|
2014-02-10 19:13:50 +00:00
|
|
|
const Locale &locale,
|
|
|
|
UMeasureFormatWidth w,
|
|
|
|
NumberFormat *nfToAdopt,
|
|
|
|
UErrorCode &status) {
|
|
|
|
static const char *listStyles[] = {"unit", "unit-short", "unit-narrow"};
|
2014-02-10 22:52:01 +00:00
|
|
|
LocalPointer<NumberFormat> nf(nfToAdopt);
|
2014-02-04 00:29:17 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const char *name = locale.getName();
|
|
|
|
setLocaleIDs(name, name);
|
|
|
|
|
2014-02-10 19:13:50 +00:00
|
|
|
if (!getFromCache(name, cache, status)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SharedObject::copyPtr(
|
|
|
|
PluralRules::createSharedInstance(
|
|
|
|
locale, UPLURAL_TYPE_CARDINAL, status),
|
|
|
|
pluralRules);
|
2014-02-04 00:29:17 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return;
|
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
pluralRules->removeRef();
|
2014-02-10 22:52:01 +00:00
|
|
|
if (nf.getAlias() == NULL) {
|
2014-02-10 19:13:50 +00:00
|
|
|
SharedObject::copyPtr(
|
|
|
|
NumberFormat::createSharedInstance(
|
|
|
|
locale, UNUM_DECIMAL, status),
|
|
|
|
numberFormat);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
numberFormat->removeRef();
|
|
|
|
} else {
|
2014-02-10 22:52:01 +00:00
|
|
|
adoptNumberFormat(nf.orphan(), status);
|
2014-02-10 19:13:50 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
width = w;
|
|
|
|
delete listFormatter;
|
|
|
|
listFormatter = ListFormatter::createInstance(
|
|
|
|
locale,
|
|
|
|
listStyles[widthToIndex(width)],
|
|
|
|
status);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MeasureFormat::adoptNumberFormat(
|
|
|
|
NumberFormat *nfToAdopt, UErrorCode &status) {
|
2014-02-10 22:55:18 +00:00
|
|
|
LocalPointer<NumberFormat> nf(nfToAdopt);
|
2014-02-10 19:13:50 +00:00
|
|
|
if (U_FAILURE(status)) {
|
2014-02-04 00:29:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-02-10 22:55:18 +00:00
|
|
|
SharedNumberFormat *shared = new SharedNumberFormat(nf.getAlias());
|
2014-02-10 19:13:50 +00:00
|
|
|
if (shared == NULL) {
|
2014-02-04 00:29:17 +00:00
|
|
|
status = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
2014-02-10 22:55:18 +00:00
|
|
|
nf.orphan();
|
2014-02-10 19:13:50 +00:00
|
|
|
SharedObject::copyPtr(shared, numberFormat);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UBool MeasureFormat::setMeasureFormatLocale(const Locale &locale, UErrorCode &status) {
|
|
|
|
if (U_FAILURE(status) || locale == getLocale(status)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-02-10 19:13:50 +00:00
|
|
|
initMeasureFormat(locale, width, NULL, status);
|
2014-02-04 00:29:17 +00:00
|
|
|
return U_SUCCESS(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
const NumberFormat &MeasureFormat::getNumberFormat() const {
|
2014-02-10 19:13:50 +00:00
|
|
|
return **numberFormat;
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const PluralRules &MeasureFormat::getPluralRules() const {
|
2014-02-10 19:13:50 +00:00
|
|
|
return **pluralRules;
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Locale MeasureFormat::getLocale(UErrorCode &status) const {
|
|
|
|
return Format::getLocale(ULOC_VALID_LOCALE, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *MeasureFormat::getLocaleID(UErrorCode &status) const {
|
|
|
|
return Format::getLocaleID(ULOC_VALID_LOCALE, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString &MeasureFormat::formatMeasure(
|
|
|
|
const Measure &measure,
|
2014-02-16 02:10:51 +00:00
|
|
|
const NumberFormat &nf,
|
2014-02-04 00:29:17 +00:00
|
|
|
UnicodeString &appendTo,
|
|
|
|
FieldPosition &pos,
|
|
|
|
UErrorCode &status) const {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
const Formattable& amtNumber = measure.getNumber();
|
|
|
|
const MeasureUnit& amtUnit = measure.getUnit();
|
|
|
|
if (isCurrency(amtUnit)) {
|
|
|
|
UChar isoCode[4];
|
|
|
|
u_charsToUChars(amtUnit.getSubtype(), isoCode, 4);
|
2014-02-10 19:13:50 +00:00
|
|
|
return cache->getCurrencyFormat(widthToIndex(width))->format(
|
2014-02-04 00:29:17 +00:00
|
|
|
new CurrencyAmount(amtNumber, isoCode, status),
|
|
|
|
appendTo,
|
|
|
|
pos,
|
|
|
|
status);
|
|
|
|
}
|
|
|
|
const QuantityFormatter *quantityFormatter = getQuantityFormatter(
|
|
|
|
amtUnit.getIndex(), widthToIndex(width), status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
return quantityFormatter->format(
|
|
|
|
amtNumber,
|
2014-02-16 02:10:51 +00:00
|
|
|
nf,
|
2014-02-10 19:13:50 +00:00
|
|
|
**pluralRules,
|
|
|
|
appendTo,
|
2014-02-04 00:29:17 +00:00
|
|
|
pos,
|
|
|
|
status);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString &MeasureFormat::formatNumeric(
|
|
|
|
const Formattable *hms, // always length 3
|
|
|
|
int32_t bitMap, // 1=hourset, 2=minuteset, 4=secondset
|
|
|
|
UnicodeString &appendTo,
|
|
|
|
UErrorCode &status) const {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
UDate millis =
|
|
|
|
(UDate) (((hms[0].getDouble(status) * 60.0
|
|
|
|
+ hms[1].getDouble(status)) * 60.0
|
|
|
|
+ hms[2].getDouble(status)) * 1000.0);
|
|
|
|
switch (bitMap) {
|
|
|
|
case 5: // hs
|
|
|
|
case 7: // hms
|
|
|
|
return formatNumeric(
|
|
|
|
millis,
|
2014-02-10 19:13:50 +00:00
|
|
|
cache->getNumericDateFormatters()->hourMinuteSecond,
|
2014-02-04 00:29:17 +00:00
|
|
|
UDAT_SECOND_FIELD,
|
|
|
|
hms[2],
|
|
|
|
appendTo,
|
|
|
|
status);
|
|
|
|
break;
|
|
|
|
case 6: // ms
|
|
|
|
return formatNumeric(
|
|
|
|
millis,
|
2014-02-10 19:13:50 +00:00
|
|
|
cache->getNumericDateFormatters()->minuteSecond,
|
2014-02-04 00:29:17 +00:00
|
|
|
UDAT_SECOND_FIELD,
|
|
|
|
hms[2],
|
|
|
|
appendTo,
|
|
|
|
status);
|
|
|
|
break;
|
|
|
|
case 3: // hm
|
|
|
|
return formatNumeric(
|
|
|
|
millis,
|
2014-02-10 19:13:50 +00:00
|
|
|
cache->getNumericDateFormatters()->hourMinute,
|
2014-02-04 00:29:17 +00:00
|
|
|
UDAT_MINUTE_FIELD,
|
|
|
|
hms[1],
|
|
|
|
appendTo,
|
|
|
|
status);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
status = U_INTERNAL_PROGRAM_ERROR;
|
|
|
|
return appendTo;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString &MeasureFormat::formatNumeric(
|
|
|
|
UDate date,
|
|
|
|
const DateFormat &dateFmt,
|
|
|
|
UDateFormatField smallestField,
|
|
|
|
const Formattable &smallestAmount,
|
|
|
|
UnicodeString &appendTo,
|
|
|
|
UErrorCode &status) const {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
UnicodeString smallestAmountFormatted;
|
2014-02-10 19:13:50 +00:00
|
|
|
(*numberFormat)->format(
|
2014-02-04 00:29:17 +00:00
|
|
|
smallestAmount, smallestAmountFormatted, status);
|
|
|
|
FieldPosition smallestFieldPosition(smallestField);
|
|
|
|
UnicodeString draft;
|
|
|
|
dateFmt.format(date, draft, smallestFieldPosition, status);
|
|
|
|
if (smallestFieldPosition.getBeginIndex() != 0 ||
|
|
|
|
smallestFieldPosition.getEndIndex() != 0) {
|
|
|
|
appendTo.append(draft, 0, smallestFieldPosition.getBeginIndex());
|
|
|
|
appendTo.append(smallestAmountFormatted);
|
|
|
|
appendTo.append(
|
|
|
|
draft,
|
|
|
|
smallestFieldPosition.getEndIndex(),
|
|
|
|
draft.length());
|
|
|
|
} else {
|
|
|
|
appendTo.append(draft);
|
|
|
|
}
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QuantityFormatter *MeasureFormat::getQuantityFormatter(
|
|
|
|
int32_t index,
|
|
|
|
int32_t widthIndex,
|
|
|
|
UErrorCode &status) const {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
const QuantityFormatter *formatters =
|
2014-02-10 19:13:50 +00:00
|
|
|
cache->formatters[index];
|
2014-02-04 00:29:17 +00:00
|
|
|
if (formatters[widthIndex].isValid()) {
|
|
|
|
return &formatters[widthIndex];
|
|
|
|
}
|
|
|
|
if (formatters[UMEASFMT_WIDTH_SHORT].isValid()) {
|
|
|
|
return &formatters[UMEASFMT_WIDTH_SHORT];
|
|
|
|
}
|
|
|
|
if (formatters[UMEASFMT_WIDTH_WIDE].isValid()) {
|
|
|
|
return &formatters[UMEASFMT_WIDTH_WIDE];
|
|
|
|
}
|
|
|
|
status = U_MISSING_RESOURCE_ERROR;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString &MeasureFormat::formatMeasuresSlowTrack(
|
|
|
|
const Measure *measures,
|
|
|
|
int32_t measureCount,
|
|
|
|
UnicodeString& appendTo,
|
|
|
|
FieldPosition& pos,
|
|
|
|
UErrorCode& status) const {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
FieldPosition dontCare(FieldPosition::DONT_CARE);
|
|
|
|
FieldPosition fpos(pos.getField());
|
|
|
|
UnicodeString *results = new UnicodeString[measureCount];
|
|
|
|
int32_t fieldPositionFoundIndex = -1;
|
|
|
|
for (int32_t i = 0; i < measureCount; ++i) {
|
2014-02-16 02:10:51 +00:00
|
|
|
const NumberFormat *nf = cache->getIntegerFormat();
|
|
|
|
if (i == measureCount - 1) {
|
|
|
|
nf = numberFormat->get();
|
|
|
|
}
|
2014-02-04 00:29:17 +00:00
|
|
|
if (fieldPositionFoundIndex == -1) {
|
2014-02-16 02:10:51 +00:00
|
|
|
formatMeasure(measures[i], *nf, results[i], fpos, status);
|
2014-02-04 00:29:17 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
delete [] results;
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
if (fpos.getBeginIndex() != 0 || fpos.getEndIndex() != 0) {
|
|
|
|
fieldPositionFoundIndex = i;
|
|
|
|
}
|
|
|
|
} else {
|
2014-02-16 02:10:51 +00:00
|
|
|
formatMeasure(measures[i], *nf, results[i], dontCare, status);
|
2014-02-04 00:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
int32_t offset;
|
2014-02-10 19:13:50 +00:00
|
|
|
listFormatter->format(
|
2014-02-04 00:29:17 +00:00
|
|
|
results,
|
|
|
|
measureCount,
|
|
|
|
appendTo,
|
|
|
|
fieldPositionFoundIndex,
|
|
|
|
offset,
|
|
|
|
status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
delete [] results;
|
|
|
|
return appendTo;
|
|
|
|
}
|
|
|
|
if (offset != -1) {
|
|
|
|
pos.setBeginIndex(fpos.getBeginIndex() + offset);
|
|
|
|
pos.setEndIndex(fpos.getEndIndex() + offset);
|
|
|
|
}
|
|
|
|
delete [] results;
|
|
|
|
return appendTo;
|
|
|
|
}
|
2011-07-26 05:32:25 +00:00
|
|
|
|
2004-08-24 17:38:33 +00:00
|
|
|
MeasureFormat* U_EXPORT2 MeasureFormat::createCurrencyFormat(const Locale& locale,
|
2004-04-21 18:05:06 +00:00
|
|
|
UErrorCode& ec) {
|
|
|
|
CurrencyFormat* fmt = NULL;
|
|
|
|
if (U_SUCCESS(ec)) {
|
|
|
|
fmt = new CurrencyFormat(locale, ec);
|
|
|
|
if (U_FAILURE(ec)) {
|
|
|
|
delete fmt;
|
|
|
|
fmt = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fmt;
|
|
|
|
}
|
|
|
|
|
2004-08-24 17:38:33 +00:00
|
|
|
MeasureFormat* U_EXPORT2 MeasureFormat::createCurrencyFormat(UErrorCode& ec) {
|
2004-04-21 18:05:06 +00:00
|
|
|
if (U_FAILURE(ec)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return MeasureFormat::createCurrencyFormat(Locale::getDefault(), ec);
|
|
|
|
}
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
|
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|