1999-08-16 21:50:52 +00:00
|
|
|
/*
|
1999-12-09 23:27:55 +00:00
|
|
|
**********************************************************************
|
2001-03-21 20:44:20 +00:00
|
|
|
* Copyright (C) 1997-2001, International Business Machines
|
1999-12-09 23:27:55 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* File locid.cpp
|
|
|
|
*
|
|
|
|
* Created by: Richard Gillam
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 02/11/97 aliu Changed gLocPath to fgDataDirectory and added
|
|
|
|
* methods to get and set it.
|
|
|
|
* 04/02/97 aliu Made operator!= inline; fixed return value
|
|
|
|
* of getName().
|
|
|
|
* 04/15/97 aliu Cleanup for AIX/Win32.
|
|
|
|
* 04/24/97 aliu Numerous changes per code review.
|
|
|
|
* 08/18/98 stephen Changed getDisplayName()
|
|
|
|
* Added SIMPLIFIED_CHINESE, TRADITIONAL_CHINESE
|
|
|
|
* Added getISOCountries(), getISOLanguages(),
|
|
|
|
* getLanguagesForCountry()
|
|
|
|
* 03/16/99 bertrand rehaul.
|
1999-10-18 22:48:32 +00:00
|
|
|
* 07/21/99 stephen Added U_CFUNC setDefault
|
2000-04-15 21:19:44 +00:00
|
|
|
* 11/09/99 weiv Added const char * getName() const;
|
|
|
|
* 04/12/00 srl removing unicodestring api's and cached hash code
|
2001-08-10 22:36:26 +00:00
|
|
|
* 08/10/01 grhoten Change the static Locales to accessor functions
|
2001-03-21 20:44:20 +00:00
|
|
|
******************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/locid.h"
|
|
|
|
#include "unicode/uloc.h"
|
|
|
|
#include "unicode/resbund.h"
|
2000-05-15 18:39:17 +00:00
|
|
|
#include "uresimp.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "mutex.h"
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/unicode.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "cmemory.h"
|
|
|
|
#include "cstring.h"
|
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
/*Character separating the posix id fields*/
|
|
|
|
// '_'
|
|
|
|
#define SEP_UCHAR 0x005F
|
|
|
|
// In the platform codepage.
|
|
|
|
#define SEP_CHAR '_'
|
2001-05-17 15:30:07 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/**
|
|
|
|
* static variables
|
|
|
|
*/
|
2001-08-10 22:36:26 +00:00
|
|
|
Locale* availableLocaleList = NULL;
|
|
|
|
int32_t availableLocaleListCount;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-03-31 00:49:03 +00:00
|
|
|
#ifdef ICU_LOCID_USE_DEPRECATES
|
2001-08-10 22:36:26 +00:00
|
|
|
Locale Locale::fgDefaultLocale;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constant definitions
|
|
|
|
*/
|
2000-04-15 21:19:44 +00:00
|
|
|
const Locale Locale::ENGLISH("en");
|
|
|
|
const Locale Locale::FRENCH("fr");
|
|
|
|
const Locale Locale::GERMAN("de");
|
|
|
|
const Locale Locale::ITALIAN("it");
|
|
|
|
const Locale Locale::JAPANESE("ja");
|
|
|
|
const Locale Locale::KOREAN("ko");
|
|
|
|
const Locale Locale::CHINESE("zh");
|
|
|
|
const Locale Locale::SIMPLIFIED_CHINESE("zh", "CN");
|
2000-07-17 23:33:38 +00:00
|
|
|
const Locale Locale::TRADITIONAL_CHINESE("zh", "TW");
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
// Useful constant for country.
|
|
|
|
|
2000-04-15 21:19:44 +00:00
|
|
|
const Locale Locale::FRANCE ("fr", "FR");
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale Locale::GERMANY ("de", "DE");
|
2000-04-15 21:19:44 +00:00
|
|
|
const Locale Locale::ITALY ("it", "IT");
|
|
|
|
const Locale Locale::JAPAN ("ja", "JP");
|
|
|
|
const Locale Locale::KOREA ("ko", "KR");
|
|
|
|
const Locale Locale::CHINA ("zh", "CN");
|
|
|
|
const Locale Locale::PRC ("zh", "CN");
|
|
|
|
const Locale Locale::TAIWAN ("zh", "TW");
|
|
|
|
const Locale Locale::UK ("en", "GB");
|
|
|
|
const Locale Locale::US ("en", "US");
|
|
|
|
const Locale Locale::CANADA ("en", "CA");
|
|
|
|
const Locale Locale::CANADA_FRENCH("fr", "CA");
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
#else
|
|
|
|
typedef enum ELocalePos {
|
|
|
|
eENGLISH,
|
|
|
|
eFRENCH,
|
|
|
|
eGERMAN,
|
|
|
|
eITALIAN,
|
|
|
|
eJAPANESE,
|
|
|
|
eKOREAN,
|
|
|
|
eCHINESE,
|
|
|
|
|
|
|
|
eFRANCE,
|
|
|
|
eGERMANY,
|
|
|
|
eITALY,
|
|
|
|
eJAPAN,
|
|
|
|
eKOREA,
|
|
|
|
eCHINA, /* Alias for PRC */
|
|
|
|
eTAIWAN,
|
|
|
|
eUK,
|
|
|
|
eUS,
|
|
|
|
eCANADA,
|
|
|
|
eCANADA_FRENCH,
|
|
|
|
|
|
|
|
|
|
|
|
eDEFAULT,
|
|
|
|
eMAX_LOCALES
|
|
|
|
} ELocalePos;
|
|
|
|
|
|
|
|
const Locale::LocaleProxy Locale::ENGLISH = {eENGLISH};
|
|
|
|
const Locale::LocaleProxy Locale::FRENCH = {eFRENCH};
|
|
|
|
const Locale::LocaleProxy Locale::GERMAN = {eGERMAN};
|
|
|
|
const Locale::LocaleProxy Locale::ITALIAN = {eITALIAN};
|
|
|
|
const Locale::LocaleProxy Locale::JAPANESE = {eJAPANESE};
|
|
|
|
const Locale::LocaleProxy Locale::KOREAN = {eKOREAN};
|
|
|
|
const Locale::LocaleProxy Locale::CHINESE = {eCHINESE};
|
|
|
|
const Locale::LocaleProxy Locale::SIMPLIFIED_CHINESE={eCHINA};
|
|
|
|
const Locale::LocaleProxy Locale::TRADITIONAL_CHINESE={eTAIWAN};
|
|
|
|
|
|
|
|
const Locale::LocaleProxy Locale::FRANCE = {eFRANCE};
|
|
|
|
const Locale::LocaleProxy Locale::GERMANY = {eGERMANY};
|
|
|
|
const Locale::LocaleProxy Locale::ITALY = {eITALY};
|
|
|
|
const Locale::LocaleProxy Locale::JAPAN = {eJAPAN};
|
|
|
|
const Locale::LocaleProxy Locale::KOREA = {eKOREA};
|
|
|
|
const Locale::LocaleProxy Locale::CHINA = {eCHINA};
|
|
|
|
const Locale::LocaleProxy Locale::PRC = {eCHINA};
|
|
|
|
const Locale::LocaleProxy Locale::TAIWAN = {eTAIWAN};
|
|
|
|
const Locale::LocaleProxy Locale::UK = {eUK};
|
|
|
|
const Locale::LocaleProxy Locale::US = {eUS};
|
|
|
|
const Locale::LocaleProxy Locale::CANADA = {eCANADA};
|
|
|
|
const Locale::LocaleProxy Locale::CANADA_FRENCH={eCANADA_FRENCH};
|
|
|
|
|
|
|
|
#define LOCALE_CACHE_SIZE (eMAX_LOCALES * sizeof(Locale))
|
|
|
|
uint8_t gByteLocaleCache[LOCALE_CACHE_SIZE];
|
|
|
|
|
|
|
|
Locale *gLocaleCache = NULL;
|
|
|
|
|
|
|
|
Locale::LocaleProxy::operator const class Locale&(void) const
|
|
|
|
{
|
|
|
|
return Locale::getLocale(magicLocaleNumber);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-05-17 15:30:07 +00:00
|
|
|
#endif
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
Locale::~Locale()
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
/*if fullName is on the heap, we delete it*/
|
|
|
|
if (fullName != fullNameBuffer)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
delete []fullName;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Locale::Locale()
|
|
|
|
{
|
|
|
|
init(uloc_getDefault());
|
|
|
|
}
|
|
|
|
|
2000-04-15 21:19:44 +00:00
|
|
|
Locale::Locale( const char * newLanguage,
|
|
|
|
const char * newCountry,
|
|
|
|
const char * newVariant)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
char togo_stack[ULOC_FULLNAME_CAPACITY];
|
|
|
|
char *togo;
|
|
|
|
char *togo_heap = NULL;
|
|
|
|
int32_t size = 0;
|
|
|
|
int32_t lsize = 0;
|
|
|
|
int32_t csize = 0;
|
|
|
|
int32_t vsize = 0;
|
|
|
|
char *p;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-03-07 02:43:22 +00:00
|
|
|
if( (newLanguage==NULL) && (newCountry == NULL) && (newVariant == NULL) )
|
|
|
|
{
|
|
|
|
init(NULL); /* shortcut */
|
|
|
|
}
|
2000-04-15 21:19:44 +00:00
|
|
|
else
|
2001-03-07 02:43:22 +00:00
|
|
|
{
|
|
|
|
// Calculate the size of the resulting string.
|
|
|
|
|
|
|
|
// Language
|
|
|
|
if ( newLanguage != NULL )
|
|
|
|
{
|
|
|
|
lsize = (int32_t)uprv_strlen(newLanguage);
|
|
|
|
size = lsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
// _Country
|
|
|
|
if ( newCountry != NULL )
|
|
|
|
{
|
|
|
|
csize = (int32_t)uprv_strlen(newCountry);
|
|
|
|
size += csize;
|
|
|
|
}
|
|
|
|
|
|
|
|
// _Variant
|
|
|
|
if ( newVariant != NULL )
|
|
|
|
{
|
|
|
|
// remove leading _'s
|
2001-03-31 00:49:03 +00:00
|
|
|
while(newVariant[0] == SEP_CHAR)
|
2001-03-07 02:43:22 +00:00
|
|
|
{
|
|
|
|
newVariant++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove trailing _'s
|
|
|
|
vsize = (int32_t)uprv_strlen(newVariant);
|
2001-03-31 00:49:03 +00:00
|
|
|
while( (vsize>1) && (newVariant[vsize-1] == SEP_CHAR) )
|
2001-03-07 02:43:22 +00:00
|
|
|
{
|
|
|
|
vsize--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( vsize > 0 )
|
|
|
|
{
|
|
|
|
size += vsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Separator rules:
|
|
|
|
if ( vsize > 0 )
|
|
|
|
{
|
|
|
|
size += 2; // at least: __v
|
|
|
|
}
|
|
|
|
else if ( csize > 0 )
|
|
|
|
{
|
|
|
|
size += 1; // at least: _v
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOW we have the full locale string..
|
|
|
|
|
|
|
|
/*if the whole string is longer than our internal limit, we need
|
|
|
|
to go to the heap for temporary buffers*/
|
|
|
|
if (size > ULOC_FULLNAME_CAPACITY)
|
|
|
|
{
|
|
|
|
togo_heap = new char[size+1];
|
|
|
|
togo = togo_heap;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
togo = togo_stack;
|
|
|
|
}
|
|
|
|
|
|
|
|
togo[0] = 0;
|
|
|
|
|
|
|
|
// Now, copy it back.
|
|
|
|
p = togo;
|
|
|
|
if ( lsize != 0 )
|
|
|
|
{
|
|
|
|
uprv_strcpy(p, newLanguage);
|
|
|
|
p += lsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ( vsize != 0 ) || (csize != 0) ) // at least: __v
|
|
|
|
{ // ^
|
2001-03-31 00:49:03 +00:00
|
|
|
*p++ = SEP_CHAR;
|
2001-03-07 02:43:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( csize != 0 )
|
|
|
|
{
|
|
|
|
uprv_strcpy(p, newCountry);
|
|
|
|
p += csize;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( vsize != 0)
|
|
|
|
{
|
2001-03-31 00:49:03 +00:00
|
|
|
*p++ = SEP_CHAR; // at least: __v
|
2001-03-07 02:43:22 +00:00
|
|
|
|
|
|
|
uprv_strncpy(p, newVariant, vsize); // Must use strncpy because
|
|
|
|
p += vsize; // of trimming (above).
|
|
|
|
*p = 0; // terminate
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse it, because for example 'language' might really be a complete
|
|
|
|
// string.
|
|
|
|
init(togo);
|
|
|
|
|
|
|
|
delete [] togo_heap; /* If it was needed */
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Locale::Locale(const Locale& other)
|
|
|
|
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
int j;
|
1999-08-16 21:50:52 +00:00
|
|
|
/*Copy the language and country fields*/
|
2001-03-07 02:43:22 +00:00
|
|
|
uprv_strcpy(language, other.language);
|
|
|
|
uprv_strcpy(country, other.country);
|
|
|
|
|
|
|
|
/*make fullName point to the heap if necessary*/
|
|
|
|
if ((j=(int)uprv_strlen(other.fullName)) > ULOC_FULLNAME_CAPACITY)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
fullName = new char[j+1];
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
else
|
|
|
|
fullName = fullNameBuffer;
|
|
|
|
|
|
|
|
uprv_strcpy(fullName, other.fullName);
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/*Make the variant point to the same offset as the copied*/
|
2001-08-10 22:36:26 +00:00
|
|
|
variantBegin = other.variantBegin;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool
|
1999-08-16 21:50:52 +00:00
|
|
|
Locale::operator==( const Locale& other) const
|
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
if (uprv_strcmp(other.fullName, fullName) == 0)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
return TRUE;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
|
|
|
|
return FALSE;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*This function initializes a Locale from a C locale ID*/
|
|
|
|
Locale& Locale::init(const char* localeID)
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
int k,l;
|
|
|
|
UErrorCode err = U_ZERO_ERROR;
|
|
|
|
|
2001-03-15 22:12:51 +00:00
|
|
|
if (localeID == NULL)
|
|
|
|
localeID = uloc_getDefault();
|
|
|
|
|
2001-03-07 02:43:22 +00:00
|
|
|
l = uloc_getLanguage(localeID,
|
|
|
|
this->language,
|
|
|
|
ULOC_LANG_CAPACITY,
|
|
|
|
&err);
|
|
|
|
|
|
|
|
l += k = uloc_getCountry(localeID,
|
|
|
|
this->country,
|
|
|
|
ULOC_COUNTRY_CAPACITY,
|
|
|
|
&err);
|
|
|
|
|
|
|
|
l--; //adjust for the 2 zero terminators
|
|
|
|
|
|
|
|
/*Go to heap for the fullName if necessary*/
|
|
|
|
int j;
|
|
|
|
if ((j=(int)uprv_strlen(localeID)) > ULOC_FULLNAME_CAPACITY)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
this->fullName = new char[j+1];
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2001-03-15 22:12:51 +00:00
|
|
|
else {
|
|
|
|
this->fullName = this->fullNameBuffer;
|
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
|
|
|
|
uprv_strcpy(this->fullName, localeID);
|
|
|
|
|
|
|
|
/*Setting up the variant:
|
1999-08-16 21:50:52 +00:00
|
|
|
-point to the zero terminator of fullName if there is none
|
|
|
|
-point to the first character of the variant if ther is one
|
|
|
|
*/
|
2001-03-15 22:12:51 +00:00
|
|
|
if (k > 1)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-15 22:12:51 +00:00
|
|
|
if (this->fullName[l] == '\0')
|
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
this->variantBegin = l;
|
2001-03-15 22:12:51 +00:00
|
|
|
}
|
2001-03-15 07:09:09 +00:00
|
|
|
else
|
2001-03-15 22:12:51 +00:00
|
|
|
{
|
|
|
|
int32_t varLength;
|
|
|
|
UErrorCode intErr = U_ZERO_ERROR;
|
2001-08-10 22:36:26 +00:00
|
|
|
varLength = uloc_getVariant(this->fullName, NULL, 0, &intErr);
|
2001-03-15 22:12:51 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
if((U_FAILURE(intErr) && (intErr != U_BUFFER_OVERFLOW_ERROR)) || (varLength <= 0))
|
2001-03-15 22:12:51 +00:00
|
|
|
{ /* bail - point at the null*/
|
2001-08-10 22:36:26 +00:00
|
|
|
this->variantBegin = j;
|
2001-03-15 22:12:51 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* variant is at the end. We just don't know where exactly it might be. */
|
2001-08-10 22:36:26 +00:00
|
|
|
this->variantBegin = j - varLength + 1 ;
|
2001-03-15 22:12:51 +00:00
|
|
|
}
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
else
|
2001-08-10 22:36:26 +00:00
|
|
|
this->variantBegin = l - 1;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-03-07 02:43:22 +00:00
|
|
|
return *this;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Locale& Locale::operator=(const Locale& other)
|
|
|
|
{
|
2001-03-15 22:12:51 +00:00
|
|
|
uprv_strcpy(language, other.language);
|
|
|
|
uprv_strcpy(country, other.country);
|
|
|
|
if (other.fullName == other.fullNameBuffer)
|
|
|
|
{
|
|
|
|
fullName = fullNameBuffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-08-16 21:50:52 +00:00
|
|
|
/*In case the assigner has some of its data on the heap
|
2001-03-15 22:12:51 +00:00
|
|
|
* we need to do the same*/
|
2001-03-31 00:49:03 +00:00
|
|
|
if (fullName != fullNameBuffer)
|
|
|
|
delete []fullName;
|
2001-03-15 22:12:51 +00:00
|
|
|
fullName = new char[(uprv_strlen(other.fullName)+1)];
|
|
|
|
}
|
|
|
|
uprv_strcpy(fullName, other.fullName);
|
|
|
|
/*Make the variant point to the same offset as the assigner*/
|
2001-08-10 22:36:26 +00:00
|
|
|
variantBegin = other.variantBegin;
|
2001-03-15 22:12:51 +00:00
|
|
|
|
|
|
|
return *this;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
Locale::hashCode() const
|
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
return UnicodeString(fullName, "").hashCode();
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale&
|
1999-08-16 21:50:52 +00:00
|
|
|
Locale::getDefault()
|
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
#ifdef ICU_LOCID_USE_DEPRECATES
|
2001-03-15 22:12:51 +00:00
|
|
|
return fgDefaultLocale;
|
2001-08-10 22:36:26 +00:00
|
|
|
#else
|
|
|
|
return getLocale(eDEFAULT);
|
|
|
|
#endif
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2000-04-15 21:19:44 +00:00
|
|
|
|
|
|
|
void locale_set_default_internal(const char *id)
|
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
#ifdef ICU_LOCID_USE_DEPRECATES
|
|
|
|
Locale::fgDefaultLocale.init(id);
|
|
|
|
#else
|
|
|
|
if (gLocaleCache == NULL) {
|
|
|
|
Locale::initLocaleCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
gLocaleCache[eDEFAULT].init(id);
|
|
|
|
#endif
|
2000-04-15 21:19:44 +00:00
|
|
|
}
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/* sfb 07/21/99 */
|
1999-10-18 22:48:32 +00:00
|
|
|
U_CFUNC void
|
1999-08-16 21:50:52 +00:00
|
|
|
locale_set_default(const char *id)
|
|
|
|
{
|
2001-03-15 22:12:51 +00:00
|
|
|
locale_set_default_internal(id);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
/* end */
|
|
|
|
|
2000-04-15 21:19:44 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
void
|
|
|
|
Locale::setDefault( const Locale& newLocale,
|
|
|
|
UErrorCode& status)
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
if (U_FAILURE(status))
|
|
|
|
return;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
uloc_setDefault(newLocale.fullName, &status);
|
2001-03-15 22:12:51 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
#ifdef ICU_LOCID_USE_DEPRECATES
|
1999-08-16 21:50:52 +00:00
|
|
|
fgDefaultLocale = newLocale;
|
2001-08-10 22:36:26 +00:00
|
|
|
#else
|
|
|
|
if (gLocaleCache == NULL) {
|
|
|
|
initLocaleCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
gLocaleCache[eDEFAULT] = newLocale;
|
|
|
|
#endif
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-02-17 13:33:57 +00:00
|
|
|
Locale
|
|
|
|
Locale::createFromName (const char *name)
|
|
|
|
{
|
2001-08-18 00:07:08 +00:00
|
|
|
if (name) {
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
char stack[ULOC_FULLNAME_CAPACITY];
|
|
|
|
char *heap = NULL;
|
|
|
|
char *buf = stack;
|
|
|
|
int32_t buflen = ULOC_FULLNAME_CAPACITY;
|
|
|
|
int32_t namelen = (int32_t)uprv_strlen(name);
|
|
|
|
|
|
|
|
/* for some reason */
|
|
|
|
if(namelen > buflen) {
|
|
|
|
buflen = namelen+1;
|
|
|
|
heap = (char*)uprv_malloc(buflen);
|
|
|
|
buf = heap;
|
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
|
2001-08-18 00:07:08 +00:00
|
|
|
uloc_getName(name, buf, buflen, &status);
|
2001-03-07 02:43:22 +00:00
|
|
|
|
2001-08-18 00:07:08 +00:00
|
|
|
Locale l(buf);
|
|
|
|
if(heap != NULL)
|
|
|
|
{
|
|
|
|
free(heap);
|
|
|
|
}
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return getDefault();
|
2001-03-07 02:43:22 +00:00
|
|
|
}
|
2001-02-17 13:33:57 +00:00
|
|
|
}
|
|
|
|
|
2001-03-31 00:49:03 +00:00
|
|
|
|
|
|
|
const char *
|
|
|
|
Locale::getISO3Language() const
|
|
|
|
{
|
|
|
|
return uloc_getISO3Language(fullName);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
Locale::getISO3Country() const
|
|
|
|
{
|
|
|
|
return uloc_getISO3Country(fullName);
|
|
|
|
}
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/**
|
|
|
|
* Return the LCID value as specified in the "LocaleID" resource for this
|
|
|
|
* locale. The LocaleID must be expressed as a hexadecimal number, from
|
|
|
|
* one to four digits. If the LocaleID resource is not present, or is
|
|
|
|
* in an incorrect format, 0 is returned. The LocaleID is for use in
|
|
|
|
* Windows (it is an LCID), but is available on all platforms.
|
|
|
|
*/
|
|
|
|
uint32_t
|
|
|
|
Locale::getLCID() const
|
|
|
|
{
|
|
|
|
return uloc_getLCID(fullName);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
Locale::getDisplayLanguage(UnicodeString& dispLang) const
|
|
|
|
{
|
|
|
|
return this->getDisplayLanguage(getDefault(), dispLang);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*We cannot make any assumptions on the size of the output display strings
|
|
|
|
* Yet, since we are calling through to a C API, we need to set limits on
|
|
|
|
* buffer size. For all the following getDisplay functions we first attempt
|
|
|
|
* to fill up a stack allocated buffer. If it is to small we heap allocated
|
|
|
|
* the exact buffer we need copy it to the UnicodeString and delete it*/
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
Locale::getDisplayLanguage( const Locale& inLocale,
|
|
|
|
UnicodeString& dispLang) const
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2001-08-10 22:36:26 +00:00
|
|
|
UChar bufBuffer[ULOC_FULLNAME_CAPACITY];
|
2001-03-07 02:43:22 +00:00
|
|
|
UChar* buf = bufBuffer;
|
|
|
|
|
|
|
|
// dispLang = "result";
|
|
|
|
// return dispLang;
|
|
|
|
int size = uloc_getDisplayLanguage(fullName,
|
|
|
|
inLocale.fullName,
|
|
|
|
buf,
|
2001-08-10 22:36:26 +00:00
|
|
|
ULOC_FULLNAME_CAPACITY,
|
2001-03-07 02:43:22 +00:00
|
|
|
&status);
|
|
|
|
|
|
|
|
|
|
|
|
if (status == U_BUFFER_OVERFLOW_ERROR)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
buf = new UChar[size];
|
|
|
|
|
|
|
|
uloc_getDisplayLanguage(fullName,
|
|
|
|
inLocale.fullName,
|
|
|
|
buf,
|
|
|
|
size,
|
|
|
|
&status);
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
|
|
|
|
dispLang = buf;
|
|
|
|
|
|
|
|
if (buf != bufBuffer)
|
|
|
|
delete []buf;
|
|
|
|
|
|
|
|
return dispLang;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
Locale::getDisplayCountry(UnicodeString& dispCntry) const
|
|
|
|
{
|
|
|
|
return this->getDisplayCountry(getDefault(), dispCntry);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
Locale::getDisplayCountry( const Locale& inLocale,
|
|
|
|
UnicodeString& dispCntry) const
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2001-08-10 22:36:26 +00:00
|
|
|
UChar bufBuffer[ULOC_FULLNAME_CAPACITY];
|
2001-03-07 02:43:22 +00:00
|
|
|
UChar* buf = bufBuffer;
|
|
|
|
|
|
|
|
int size = uloc_getDisplayCountry(fullName,
|
|
|
|
inLocale.fullName,
|
|
|
|
buf,
|
2001-08-10 22:36:26 +00:00
|
|
|
ULOC_FULLNAME_CAPACITY,
|
2001-03-07 02:43:22 +00:00
|
|
|
&status);
|
|
|
|
|
|
|
|
if (status == U_BUFFER_OVERFLOW_ERROR)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
buf = new UChar[size];
|
|
|
|
uloc_getDisplayCountry(fullName,
|
|
|
|
inLocale.fullName,
|
|
|
|
buf,
|
|
|
|
size,
|
|
|
|
&status);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-03-07 02:43:22 +00:00
|
|
|
dispCntry = buf;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-03-07 02:43:22 +00:00
|
|
|
if (buf != bufBuffer)
|
|
|
|
delete []buf;
|
|
|
|
|
|
|
|
return dispCntry;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
Locale::getDisplayVariant(UnicodeString& dispVar) const
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
return this->getDisplayVariant(getDefault(), dispVar);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString& Locale::getDisplayVariant(const Locale& inLocale,
|
|
|
|
UnicodeString& dispVar) const
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2001-08-10 22:36:26 +00:00
|
|
|
UChar bufBuffer[ULOC_FULLNAME_CAPACITY];
|
2001-03-07 02:43:22 +00:00
|
|
|
UChar* buf = bufBuffer;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-03-07 02:43:22 +00:00
|
|
|
int size = uloc_getDisplayVariant(fullName,
|
|
|
|
inLocale.fullName,
|
|
|
|
buf,
|
2001-08-10 22:36:26 +00:00
|
|
|
ULOC_FULLNAME_CAPACITY,
|
2001-03-07 02:43:22 +00:00
|
|
|
&status);
|
|
|
|
|
|
|
|
if (status == U_BUFFER_OVERFLOW_ERROR)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
buf = new UChar[size];
|
|
|
|
uloc_getDisplayVariant(fullName,
|
|
|
|
inLocale.fullName,
|
|
|
|
buf,
|
|
|
|
size,
|
|
|
|
&status);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
|
|
|
|
dispVar = buf;
|
|
|
|
|
|
|
|
if (buf != bufBuffer)
|
|
|
|
delete []buf;
|
|
|
|
|
|
|
|
return dispVar;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
Locale::getDisplayName( UnicodeString& name ) const
|
|
|
|
{
|
|
|
|
return this->getDisplayName(getDefault(), name);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
Locale::getDisplayName( const Locale& inLocale,
|
|
|
|
UnicodeString& result) const
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2001-08-10 22:36:26 +00:00
|
|
|
UChar bufBuffer[ULOC_FULLNAME_CAPACITY];
|
2001-03-07 02:43:22 +00:00
|
|
|
UChar* buf = bufBuffer;
|
|
|
|
|
|
|
|
int size = uloc_getDisplayName(fullName,
|
|
|
|
inLocale.fullName,
|
|
|
|
buf,
|
2001-08-10 22:36:26 +00:00
|
|
|
ULOC_FULLNAME_CAPACITY,
|
2001-03-07 02:43:22 +00:00
|
|
|
&status);
|
|
|
|
|
|
|
|
if (status == U_BUFFER_OVERFLOW_ERROR)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
|
|
|
|
buf = new UChar[size];
|
|
|
|
uloc_getDisplayName(fullName,
|
|
|
|
inLocale.fullName,
|
|
|
|
buf,
|
|
|
|
size,
|
|
|
|
&status);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
result = buf;
|
2001-03-07 02:43:22 +00:00
|
|
|
|
|
|
|
if (buf != bufBuffer) {
|
|
|
|
delete []buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const Locale*
|
|
|
|
Locale::getAvailableLocales(int32_t& count)
|
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
// for now, there is a hardcoded list, so just walk through that list and set it up.
|
2001-08-10 22:36:26 +00:00
|
|
|
if (availableLocaleList == 0) {
|
2001-03-07 02:43:22 +00:00
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
ResourceBundle index(UnicodeString(""), Locale(kIndexLocaleName), status);
|
|
|
|
ResourceBundle locales = index.get(kIndexTag, status);
|
|
|
|
|
|
|
|
char name[96];
|
|
|
|
locales.resetIterator();
|
|
|
|
|
|
|
|
count = locales.getSize();
|
|
|
|
|
|
|
|
Locale *newLocaleList = new Locale[count];
|
|
|
|
|
|
|
|
int32_t i = 0;
|
|
|
|
UnicodeString temp;
|
|
|
|
while(locales.hasNext()) {
|
|
|
|
temp = locales.getNextString(status);
|
|
|
|
temp.extract(0, temp.length(), name);
|
|
|
|
name[temp.length()] = '\0';
|
|
|
|
newLocaleList[i++].setFromPOSIXID(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
Mutex mutex;
|
2001-08-10 22:36:26 +00:00
|
|
|
if(availableLocaleList != 0) {
|
2001-03-07 02:43:22 +00:00
|
|
|
delete []newLocaleList;
|
|
|
|
}
|
|
|
|
else {
|
2001-08-10 22:36:26 +00:00
|
|
|
availableLocaleListCount = count;
|
|
|
|
availableLocaleList = newLocaleList;
|
2001-03-07 02:43:22 +00:00
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2001-08-10 22:36:26 +00:00
|
|
|
count = availableLocaleListCount;
|
|
|
|
return availableLocaleList;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2000-04-18 00:00:42 +00:00
|
|
|
const char* const* Locale::getISOCountries()
|
2000-04-15 21:19:44 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
return uloc_getISOCountries();
|
2000-04-15 21:19:44 +00:00
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-04-18 00:00:42 +00:00
|
|
|
const char* const* Locale::getISOLanguages()
|
2000-04-15 21:19:44 +00:00
|
|
|
{
|
2001-03-07 02:43:22 +00:00
|
|
|
return uloc_getISOLanguages();
|
2000-04-15 21:19:44 +00:00
|
|
|
}
|
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
// Set the locale's data based on a posix id.
|
|
|
|
void Locale::setFromPOSIXID(const char *posixID)
|
|
|
|
{
|
|
|
|
init(posixID);
|
|
|
|
}
|
2000-04-15 21:19:44 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
#ifndef ICU_LOCID_USE_DEPRECATES
|
|
|
|
const Locale &
|
|
|
|
Locale::getEnglish(void)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
return getLocale(eENGLISH);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getFrench(void)
|
|
|
|
{
|
|
|
|
return getLocale(eFRENCH);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getGerman(void)
|
|
|
|
{
|
|
|
|
return getLocale(eGERMAN);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getItalian(void)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
return getLocale(eITALIAN);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getJapanese(void)
|
|
|
|
{
|
|
|
|
return getLocale(eJAPANESE);
|
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getKorean(void)
|
|
|
|
{
|
|
|
|
return getLocale(eKOREAN);
|
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getChinese(void)
|
|
|
|
{
|
|
|
|
return getLocale(eCHINESE);
|
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getSimplifiedChinese(void)
|
|
|
|
{
|
|
|
|
return getLocale(eCHINESE);
|
|
|
|
}
|
2001-03-07 02:43:22 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getTraditionalChinese(void)
|
|
|
|
{
|
|
|
|
return getLocale(eTAIWAN);
|
|
|
|
}
|
2000-03-29 01:13:49 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
|
|
|
|
const Locale &
|
|
|
|
Locale::getFrance(void)
|
|
|
|
{
|
|
|
|
return getLocale(eFRANCE);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getGermany(void)
|
|
|
|
{
|
|
|
|
return getLocale(eGERMANY);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getItaly(void)
|
|
|
|
{
|
|
|
|
return getLocale(eITALY);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getJapan(void)
|
|
|
|
{
|
|
|
|
return getLocale(eJAPAN);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getKorea(void)
|
|
|
|
{
|
|
|
|
return getLocale(eKOREA);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getChina(void)
|
|
|
|
{
|
|
|
|
return getLocale(eCHINESE);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getPRC(void)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
return getLocale(eCHINESE);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getTaiwan(void)
|
2000-04-15 21:19:44 +00:00
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
return getLocale(eTAIWAN);
|
|
|
|
}
|
2000-04-15 21:19:44 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getUK(void)
|
|
|
|
{
|
|
|
|
return getLocale(eUK);
|
2000-04-15 21:19:44 +00:00
|
|
|
}
|
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getUS(void)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
return getLocale(eUS);
|
|
|
|
}
|
2000-04-15 21:19:44 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getCanada(void)
|
|
|
|
{
|
|
|
|
return getLocale(eCANADA);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getCanadaFrench(void)
|
|
|
|
{
|
|
|
|
return getLocale(eFRENCH);
|
|
|
|
}
|
2000-04-15 21:19:44 +00:00
|
|
|
|
2001-08-10 22:36:26 +00:00
|
|
|
const Locale &
|
|
|
|
Locale::getLocale(int locid)
|
2000-04-15 21:19:44 +00:00
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
if (gLocaleCache) {
|
|
|
|
return gLocaleCache[locid];
|
2000-04-15 21:19:44 +00:00
|
|
|
}
|
2001-08-10 22:36:26 +00:00
|
|
|
|
|
|
|
initLocaleCache();
|
|
|
|
|
|
|
|
return gLocaleCache[locid];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
This function is defined this way in order to get around static
|
|
|
|
initialization and static destruction.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Locale::initLocaleCache(void)
|
|
|
|
{
|
|
|
|
Locale newLocales[] = {
|
|
|
|
Locale("en"),
|
|
|
|
Locale("fr"),
|
|
|
|
Locale("de"),
|
|
|
|
Locale("it"),
|
|
|
|
Locale("ja"),
|
|
|
|
Locale("ko"),
|
|
|
|
Locale("zh"),
|
|
|
|
Locale("fr", "FR"),
|
|
|
|
Locale("de", "DE"),
|
|
|
|
Locale("it", "IT"),
|
|
|
|
Locale("ja", "JP"),
|
|
|
|
Locale("ko", "KR"),
|
|
|
|
Locale("zh", "CN"),
|
|
|
|
Locale("zh", "TW"),
|
|
|
|
Locale("en", "GB"),
|
|
|
|
Locale("en", "US"),
|
|
|
|
Locale("en", "CA"),
|
|
|
|
Locale("fr", "CA"),
|
|
|
|
Locale() // This can use a mutex
|
|
|
|
};
|
2001-08-21 00:00:31 +00:00
|
|
|
Locale *localeCache = (Locale *)(gByteLocaleCache);
|
2001-08-10 22:36:26 +00:00
|
|
|
|
2000-04-15 21:19:44 +00:00
|
|
|
{
|
2001-08-10 22:36:26 +00:00
|
|
|
Mutex lock;
|
|
|
|
if (gLocaleCache != NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
uprv_memcpy(gByteLocaleCache, newLocales ,sizeof(newLocales));
|
|
|
|
|
|
|
|
for (int idx = 0; idx < eMAX_LOCALES; idx++)
|
|
|
|
{
|
|
|
|
if (localeCache[idx].fullName == newLocales[idx].fullNameBuffer)
|
|
|
|
{
|
|
|
|
localeCache[idx].fullName = localeCache[idx].fullNameBuffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Since we did a memcpy we need to make sure that the local
|
|
|
|
// Locales do not destroy the memory of the permanent locales.
|
|
|
|
//
|
|
|
|
// This can be a memory leak, but this code shouldn't normally
|
|
|
|
// get executed.
|
|
|
|
localeCache[idx].fullName = new char[uprv_strlen(localeCache[idx].fullNameBuffer) + 1];
|
|
|
|
uprv_strcpy(localeCache[idx].fullName, localeCache[idx].fullNameBuffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gLocaleCache = localeCache;
|
2000-04-15 21:19:44 +00:00
|
|
|
}
|
|
|
|
}
|
2001-08-10 22:36:26 +00:00
|
|
|
|
2000-04-15 21:19:44 +00:00
|
|
|
#endif
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
//eof
|
2000-04-15 21:19:44 +00:00
|
|
|
|
|
|
|
|