1999-08-16 21:50:52 +00:00
|
|
|
/*
|
1999-11-22 20:25:35 +00:00
|
|
|
*******************************************************************************
|
|
|
|
* Copyright (C) 1997-1999, International Business Machines Corporation and *
|
|
|
|
* others. All Rights Reserved. *
|
|
|
|
*******************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* File DCFMTSYM.CPP
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 02/19/97 aliu Converted from java.
|
|
|
|
* 03/18/97 clhuang Implemented with C++ APIs.
|
|
|
|
* 03/27/97 helena Updated to pass the simple test after code review.
|
|
|
|
* 08/26/97 aliu Added currency/intl currency symbol support.
|
|
|
|
* 07/20/98 stephen Slightly modified initialization of monetarySeparator
|
|
|
|
********************************************************************************
|
|
|
|
*/
|
|
|
|
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/dcfmtsym.h"
|
|
|
|
#include "unicode/resbund.h"
|
|
|
|
#include "unicode/decimfmt.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
// *****************************************************************************
|
|
|
|
// class DecimalFormatSymbols
|
|
|
|
// *****************************************************************************
|
|
|
|
|
|
|
|
// -------------------------------------
|
|
|
|
// Initializes this with the decimal format symbols in the default locale.
|
|
|
|
|
|
|
|
DecimalFormatSymbols::DecimalFormatSymbols(UErrorCode& status)
|
|
|
|
{
|
|
|
|
initialize(Locale::getDefault(), status, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------
|
|
|
|
// Initializes this with the decimal format symbols in the desired locale.
|
|
|
|
|
|
|
|
DecimalFormatSymbols::DecimalFormatSymbols(const Locale& locale, UErrorCode& status)
|
|
|
|
{
|
|
|
|
initialize(locale, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------
|
|
|
|
|
|
|
|
DecimalFormatSymbols::~DecimalFormatSymbols()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------
|
|
|
|
// copy constructor
|
|
|
|
|
2000-05-25 01:10:55 +00:00
|
|
|
DecimalFormatSymbols::DecimalFormatSymbols(const DecimalFormatSymbols &source) {
|
|
|
|
int i;
|
2000-05-25 23:15:15 +00:00
|
|
|
for(i = 0; i < (int)kFormatSymbolCount; ++i) {
|
2000-05-25 01:10:55 +00:00
|
|
|
fSymbols[(ENumberFormatSymbol)i] = source.fSymbols[(ENumberFormatSymbol)i];
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------
|
|
|
|
// assignment operator
|
|
|
|
|
|
|
|
DecimalFormatSymbols&
|
|
|
|
DecimalFormatSymbols::operator=(const DecimalFormatSymbols& rhs)
|
|
|
|
{
|
|
|
|
if (this != &rhs)
|
|
|
|
{
|
2000-05-25 01:10:55 +00:00
|
|
|
int i;
|
2000-05-25 23:15:15 +00:00
|
|
|
for(i = 0; i < (int)kFormatSymbolCount; ++i) {
|
2000-05-25 01:10:55 +00:00
|
|
|
fSymbols[(ENumberFormatSymbol)i] = rhs.fSymbols[(ENumberFormatSymbol)i];
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------
|
|
|
|
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool
|
1999-08-16 21:50:52 +00:00
|
|
|
DecimalFormatSymbols::operator==(const DecimalFormatSymbols& that) const
|
|
|
|
{
|
2000-05-25 01:10:55 +00:00
|
|
|
if (this == &that) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int i;
|
2000-05-25 23:15:15 +00:00
|
|
|
for(i = 0; i < (int)kFormatSymbolCount; ++i) {
|
2000-05-25 01:10:55 +00:00
|
|
|
if(fSymbols[(ENumberFormatSymbol)i] != that.fSymbols[(ENumberFormatSymbol)i]) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------
|
|
|
|
|
|
|
|
void
|
|
|
|
DecimalFormatSymbols::initialize(const Locale& locale, UErrorCode& status,
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool useLastResortData)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(status)) return;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-06-30 20:31:39 +00:00
|
|
|
ResourceBundle resource((char *)0, locale, status);
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(status))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
// Initializes with last resort data if necessary.
|
|
|
|
if (useLastResortData)
|
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
status = U_USING_FALLBACK_ERROR;
|
2000-05-25 23:15:15 +00:00
|
|
|
initialize();
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gets the number element array.
|
2000-05-15 18:39:17 +00:00
|
|
|
int32_t i = 0;
|
2000-05-25 23:15:15 +00:00
|
|
|
ResourceBundle numberElementsRes = resource.get("NumberElements", status);
|
2000-05-15 18:39:17 +00:00
|
|
|
int32_t numberElementsLength = numberElementsRes.getSize();
|
|
|
|
UnicodeString* numberElements = new UnicodeString[numberElementsLength];
|
|
|
|
for(i = 0; i<numberElementsLength; i++) {
|
|
|
|
numberElements[i] = numberElementsRes.getStringEx(i, status);
|
|
|
|
}
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
// Gets the currency element array.
|
2000-05-25 23:15:15 +00:00
|
|
|
ResourceBundle currencyElementsRes = resource.get("CurrencyElements", status);
|
2000-05-15 18:39:17 +00:00
|
|
|
int32_t currencyElementsLength = currencyElementsRes.getSize();
|
|
|
|
UnicodeString* currencyElements = new UnicodeString[currencyElementsLength];
|
|
|
|
for(i = 0; i<currencyElementsLength; i++) {
|
|
|
|
currencyElements[i] = currencyElementsRes.getStringEx(i, status);
|
|
|
|
}
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(status)) return;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
// If the array size is too small, something is wrong with the resource
|
|
|
|
// bundle, returns the failure error code.
|
2000-05-25 23:15:15 +00:00
|
|
|
if (numberElementsLength < 11 ||
|
|
|
|
currencyElementsLength < 3) {
|
1999-10-07 00:07:53 +00:00
|
|
|
status = U_INVALID_FORMAT_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
initialize(numberElements, currencyElements);
|
2000-06-26 22:46:15 +00:00
|
|
|
|
|
|
|
delete[] numberElements;
|
|
|
|
delete[] currencyElements;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Initializes the DecimalFormatSymbol instance with the data obtained
|
|
|
|
// from ResourceBundle in the desired locale.
|
|
|
|
|
|
|
|
void
|
|
|
|
DecimalFormatSymbols::initialize(const UnicodeString* numberElements, const UnicodeString* currencyElements)
|
|
|
|
{
|
2000-05-25 23:15:15 +00:00
|
|
|
fSymbols[kDecimalSeparatorSymbol] = numberElements[0];
|
|
|
|
fSymbols[kGroupingSeparatorSymbol] = numberElements[1];
|
|
|
|
fSymbols[kPatternSeparatorSymbol] = numberElements[2];
|
|
|
|
fSymbols[kPercentSymbol] = numberElements[3];
|
|
|
|
fSymbols[kZeroDigitSymbol] = numberElements[4];
|
|
|
|
fSymbols[kDigitSymbol] = numberElements[5];
|
|
|
|
fSymbols[kMinusSignSymbol] = numberElements[6];
|
|
|
|
fSymbols[kPlusSignSymbol] = (UChar)0x002b; // '+' Hard coded for now; get from resource later
|
|
|
|
fSymbols[kCurrencySymbol] = currencyElements[0];
|
|
|
|
fSymbols[kIntlCurrencySymbol] = currencyElements[1];
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
// if the resource data specified the empty string as the monetary decimal
|
|
|
|
// separator, that means we should just use the regular separator as the
|
|
|
|
// monetary separator
|
2000-05-25 23:15:15 +00:00
|
|
|
fSymbols[kMonetarySeparatorSymbol] =
|
2000-05-25 01:10:55 +00:00
|
|
|
currencyElements[2].length() > 0 ?
|
|
|
|
currencyElements[2] :
|
2000-05-25 23:15:15 +00:00
|
|
|
fSymbols[kDecimalSeparatorSymbol];
|
2000-05-25 01:10:55 +00:00
|
|
|
|
2000-05-25 23:15:15 +00:00
|
|
|
fSymbols[kExponentialSymbol] = numberElements[7];
|
|
|
|
fSymbols[kPermillSymbol] = numberElements[8];
|
|
|
|
fSymbols[kPadEscapeSymbol] = (UChar)0x002a; // '*' Hard coded for now; get from resource later
|
|
|
|
fSymbols[kInfinitySymbol] = numberElements[9];
|
|
|
|
fSymbols[kNaNSymbol] = numberElements[10];
|
|
|
|
}
|
|
|
|
|
|
|
|
// initialize with default values
|
|
|
|
void
|
|
|
|
DecimalFormatSymbols::initialize() {
|
|
|
|
/*
|
|
|
|
* These strings used to be in static arrays, but the HP/UX aCC compiler
|
|
|
|
* cannot initialize a static array with class constructors.
|
|
|
|
* markus 2000may25
|
|
|
|
*/
|
|
|
|
fSymbols[kDecimalSeparatorSymbol] = (UChar)0x2e; // '.' decimal separator
|
|
|
|
fSymbols[kGroupingSeparatorSymbol].remove(); // group (thousands) separator
|
|
|
|
fSymbols[kPatternSeparatorSymbol] = (UChar)0x3b; // ';' pattern separator
|
|
|
|
fSymbols[kPercentSymbol] = (UChar)0x25; // '%' percent sign
|
|
|
|
fSymbols[kZeroDigitSymbol] = (UChar)0x30; // '0' native 0 digit
|
|
|
|
fSymbols[kDigitSymbol] = (UChar)0x23; // '#' pattern digit
|
|
|
|
fSymbols[kMinusSignSymbol] = (UChar)0x2d; // '-' minus sign
|
|
|
|
fSymbols[kPlusSignSymbol] = (UChar)0x002b; // '+' plus sign
|
|
|
|
fSymbols[kCurrencySymbol] = (UChar)0xa4; // 'OX' currency symbol
|
|
|
|
(fSymbols[kIntlCurrencySymbol] = (UChar)0xa4).append((UChar)0xa4);
|
|
|
|
fSymbols[kMonetarySeparatorSymbol] = (UChar)0x2e; // '.' monetary decimal separator
|
|
|
|
fSymbols[kExponentialSymbol] = (UChar)0x45; // 'E' exponential
|
|
|
|
fSymbols[kPermillSymbol] = (UChar)0x2030; // '%o' per mill
|
|
|
|
fSymbols[kPadEscapeSymbol] = (UChar)0x2a; // '*' pad escape symbol
|
|
|
|
fSymbols[kInfinitySymbol] = (UChar)0x221e; // 'oo' infinite
|
|
|
|
fSymbols[kNaNSymbol] = (UChar)0xfffd; // SUB NaN
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//eof
|