2002-11-06 22:14:49 +00:00
|
|
|
/**
|
|
|
|
*******************************************************************************
|
|
|
|
* Copyright (C) 2001-2002, International Business Machines Corporation and *
|
|
|
|
* others. All Rights Reserved. *
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_SERVICE
|
|
|
|
|
|
|
|
#include "unicode/resbund.h"
|
|
|
|
#include "cmemory.h"
|
|
|
|
#include "iculserv.h"
|
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
/*
|
|
|
|
******************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleUtility::canonicalLocaleString(const UnicodeString* id, UnicodeString& result)
|
|
|
|
{
|
|
|
|
if (id == NULL) {
|
|
|
|
result.setToBogus();
|
|
|
|
} else {
|
|
|
|
result = *id;
|
|
|
|
int32_t i = 0;
|
|
|
|
int32_t n = result.indexOf(UNDERSCORE_CHAR);
|
|
|
|
if (n < 0) {
|
|
|
|
n = result.length();
|
|
|
|
}
|
|
|
|
for (; i < n; ++i) {
|
|
|
|
UChar c = result.charAt(i);
|
|
|
|
if (c >= 0x0041 && c <= 0x005a) {
|
|
|
|
c += 0x20;
|
|
|
|
result.setCharAt(i, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (n = result.length(); i < n; ++i) {
|
|
|
|
UChar c = result.charAt(i);
|
|
|
|
if (c >= 0x0061 && c <= 0x007a) {
|
|
|
|
c -= 0x20;
|
|
|
|
result.setCharAt(i, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Locale&
|
|
|
|
LocaleUtility::initLocaleFromName(const UnicodeString& id, Locale& result)
|
|
|
|
{
|
|
|
|
if (id.isBogus()) {
|
|
|
|
result.setToBogus();
|
|
|
|
} else {
|
|
|
|
const int32_t BUFLEN = 128; // larger than ever needed
|
|
|
|
char buffer[BUFLEN];
|
|
|
|
int len = id.extract(0, BUFLEN, buffer);
|
|
|
|
if (len >= BUFLEN) {
|
|
|
|
result.setToBogus();
|
|
|
|
} else {
|
|
|
|
buffer[len] = '\0';
|
|
|
|
result = Locale::createFromName(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleUtility::initNameFromLocale(const Locale& locale, UnicodeString& result)
|
|
|
|
{
|
|
|
|
if (locale.isBogus()) {
|
|
|
|
result.setToBogus();
|
|
|
|
} else {
|
|
|
|
result.append(locale.getName());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Hashtable*
|
|
|
|
LocaleUtility::getAvailableLocaleNames(const UnicodeString& bundleID)
|
|
|
|
{
|
|
|
|
// have to ignore bundleID for the moment, since we don't have easy C++ api.
|
|
|
|
// assume it's the default bundle
|
|
|
|
|
|
|
|
if (cache == NULL) {
|
|
|
|
Hashtable* result = new Hashtable();
|
|
|
|
if (result) {
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
int32_t count = uloc_countAvailable();
|
|
|
|
for (int32_t i = 0; i < count; ++i) {
|
|
|
|
UnicodeString temp(uloc_getAvailable(i));
|
|
|
|
result->put(temp, (void*)result, status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
delete result;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Mutex mutex(&lock);
|
|
|
|
if (cache == NULL) {
|
|
|
|
cache = result;
|
|
|
|
return cache;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
UBool
|
|
|
|
LocaleUtility::isFallbackOf(const UnicodeString& root, const UnicodeString& child)
|
|
|
|
{
|
|
|
|
return child.indexOf(root) == 0 &&
|
|
|
|
(child.length() == root.length() ||
|
|
|
|
child.charAt(root.length()) == UNDERSCORE_CHAR);
|
|
|
|
}
|
|
|
|
|
|
|
|
Hashtable * LocaleUtility::cache = NULL;
|
|
|
|
|
|
|
|
const UChar LocaleUtility::UNDERSCORE_CHAR = 0x005f;
|
|
|
|
|
|
|
|
UMTX LocaleUtility::lock = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
******************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
const UChar LocaleKey::UNDERSCORE_CHAR = 0x005f;
|
|
|
|
|
|
|
|
const int32_t LocaleKey::KIND_ANY = -1;
|
|
|
|
|
|
|
|
LocaleKey*
|
|
|
|
LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID,
|
|
|
|
const UnicodeString* canonicalFallbackID)
|
|
|
|
{
|
|
|
|
return LocaleKey::createWithCanonicalFallback(primaryID, canonicalFallbackID, KIND_ANY);
|
|
|
|
}
|
|
|
|
|
|
|
|
LocaleKey*
|
|
|
|
LocaleKey::createWithCanonicalFallback(const UnicodeString* primaryID,
|
|
|
|
const UnicodeString* canonicalFallbackID,
|
|
|
|
int32_t kind)
|
|
|
|
{
|
|
|
|
if (primaryID == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
UnicodeString canonicalPrimaryID;
|
|
|
|
LocaleUtility::canonicalLocaleString(primaryID, canonicalPrimaryID);
|
|
|
|
return new LocaleKey(*primaryID, canonicalPrimaryID, canonicalFallbackID, kind);
|
|
|
|
}
|
|
|
|
|
|
|
|
LocaleKey::LocaleKey(const UnicodeString& primaryID,
|
|
|
|
const UnicodeString& canonicalPrimaryID,
|
|
|
|
const UnicodeString* canonicalFallbackID,
|
|
|
|
int32_t kind)
|
|
|
|
: Key(primaryID)
|
|
|
|
, _kind(kind)
|
|
|
|
, _primaryID(canonicalPrimaryID)
|
|
|
|
, _fallbackID()
|
|
|
|
, _currentID()
|
|
|
|
{
|
|
|
|
_fallbackID.setToBogus();
|
|
|
|
if (_primaryID.length() != 0) {
|
|
|
|
if (canonicalFallbackID != NULL && _primaryID != *canonicalFallbackID) {
|
|
|
|
_fallbackID = *canonicalFallbackID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_currentID = _primaryID;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleKey::prefix(UnicodeString& result) const {
|
|
|
|
if (_kind != KIND_ANY) {
|
|
|
|
DigitList list;
|
|
|
|
list.set(_kind);
|
|
|
|
UnicodeString temp(list.fDigits, list.fCount);
|
|
|
|
result.append(temp);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
LocaleKey::kind() const {
|
|
|
|
return _kind;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleKey::canonicalID(UnicodeString& result) const {
|
|
|
|
return result.append(_primaryID);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleKey::currentID(UnicodeString& result) const {
|
|
|
|
if (!_currentID.isBogus()) {
|
|
|
|
result.append(_currentID);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleKey::currentDescriptor(UnicodeString& result) const {
|
|
|
|
if (!_currentID.isBogus()) {
|
|
|
|
prefix(result).append(PREFIX_DELIMITER).append(_currentID);
|
|
|
|
} else {
|
|
|
|
result.setToBogus();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Locale&
|
|
|
|
LocaleKey::canonicalLocale(Locale& result) const {
|
|
|
|
return LocaleUtility::initLocaleFromName(_primaryID, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
Locale&
|
|
|
|
LocaleKey::currentLocale(Locale& result) const {
|
|
|
|
return LocaleUtility::initLocaleFromName(_currentID, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
UBool
|
|
|
|
LocaleKey::fallback() {
|
|
|
|
if (!_currentID.isBogus()) {
|
|
|
|
int x = _currentID.lastIndexOf(UNDERSCORE_CHAR);
|
|
|
|
if (x != -1) {
|
|
|
|
_currentID.remove(x); // truncate current or fallback, whichever we're pointing to
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_fallbackID.isBogus()) {
|
|
|
|
_currentID = _fallbackID;
|
|
|
|
_fallbackID.setToBogus();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_currentID.length() > 0) {
|
|
|
|
_currentID.remove(0); // completely truncate
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
_currentID.setToBogus();
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
UBool
|
|
|
|
LocaleKey::isFallbackOf(const UnicodeString& id) const {
|
|
|
|
UnicodeString temp(id);
|
|
|
|
parseSuffix(temp);
|
|
|
|
return temp.indexOf(_primaryID) == 0 &&
|
|
|
|
(temp.length() == _primaryID.length() ||
|
|
|
|
temp.charAt(_primaryID.length()) == UNDERSCORE_CHAR);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleKey::debug(UnicodeString& result) const
|
|
|
|
{
|
|
|
|
Key::debug(result);
|
|
|
|
result.append(" kind: ");
|
|
|
|
result.append(_kind);
|
|
|
|
result.append(" primaryID: ");
|
|
|
|
result.append(_primaryID);
|
|
|
|
result.append(" fallbackID: ");
|
|
|
|
result.append(_fallbackID);
|
|
|
|
result.append(" currentID: ");
|
|
|
|
result.append(_currentID);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleKey::debugClass(UnicodeString& result) const
|
|
|
|
{
|
|
|
|
return result.append("LocaleKey ");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char LocaleKey::fgClassID = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
******************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
LocaleKeyFactory::LocaleKeyFactory(int32_t coverage)
|
|
|
|
: _name()
|
|
|
|
, _coverage(coverage)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
LocaleKeyFactory::LocaleKeyFactory(int32_t coverage, const UnicodeString& name)
|
|
|
|
: _name(name)
|
|
|
|
, _coverage(coverage)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
LocaleKeyFactory::~LocaleKeyFactory() {
|
|
|
|
}
|
|
|
|
|
|
|
|
UObject*
|
|
|
|
LocaleKeyFactory::create(const Key& key, const ICUService* service, UErrorCode& status) const {
|
|
|
|
if (handlesKey(key, status)) {
|
|
|
|
const LocaleKey& lkey = (const LocaleKey&)key;
|
|
|
|
int32_t kind = lkey.kind();
|
|
|
|
Locale loc;
|
|
|
|
lkey.canonicalLocale(loc);
|
|
|
|
|
|
|
|
return handleCreate(loc, kind, service, status);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
UBool
|
|
|
|
LocaleKeyFactory::handlesKey(const Key& key, UErrorCode& status) const {
|
|
|
|
const Hashtable* supported = getSupportedIDs(status);
|
|
|
|
if (supported) {
|
|
|
|
UnicodeString id;
|
|
|
|
key.currentID(id);
|
|
|
|
return supported->get(id) != NULL;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LocaleKeyFactory::updateVisibleIDs(Hashtable& result, UErrorCode& status) const {
|
|
|
|
const Hashtable* supported = getSupportedIDs(status);
|
|
|
|
if (supported) {
|
|
|
|
UBool visible = (_coverage & 0x1) == 0;
|
|
|
|
|
|
|
|
const UHashElement* elem = NULL;
|
|
|
|
int32_t pos = 0;
|
|
|
|
while (elem = supported->nextElement(pos)) {
|
|
|
|
const UnicodeString& id = *((const UnicodeString*)elem->key.pointer);
|
|
|
|
if (!visible) {
|
|
|
|
result.remove(id);
|
|
|
|
} else {
|
|
|
|
result.put(id, (void*)this, status); // this is dummy non-void marker used for set semantics
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleKeyFactory::getDisplayName(const UnicodeString& id, const Locale& locale, UnicodeString& result) const {
|
|
|
|
Locale loc;
|
|
|
|
LocaleUtility::initLocaleFromName(id, loc);
|
|
|
|
return loc.getDisplayName(locale, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
UObject*
|
|
|
|
LocaleKeyFactory::handleCreate(const Locale& loc, int32_t kind, const ICUService* service, UErrorCode& status) const {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Hashtable*
|
|
|
|
LocaleKeyFactory::getSupportedIDs(UErrorCode& status) const {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleKeyFactory::debug(UnicodeString& result) const
|
|
|
|
{
|
|
|
|
debugClass(result);
|
|
|
|
result.append(", name: ");
|
|
|
|
result.append(_name);
|
|
|
|
result.append(", coverage: ");
|
|
|
|
result.append(_coverage);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
LocaleKeyFactory::debugClass(UnicodeString& result) const
|
|
|
|
{
|
|
|
|
return result.append("LocaleKeyFactory");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char LocaleKeyFactory::fgClassID = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
******************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
SimpleLocaleKeyFactory::SimpleLocaleKeyFactory(UObject* objToAdopt,
|
|
|
|
const Locale& locale,
|
|
|
|
int32_t kind,
|
|
|
|
int32_t coverage)
|
|
|
|
: LocaleKeyFactory(coverage)
|
|
|
|
, _obj(objToAdopt)
|
|
|
|
, _id(locale.getName())
|
|
|
|
, _kind(kind)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleLocaleKeyFactory::SimpleLocaleKeyFactory(UObject* objToAdopt,
|
|
|
|
const Locale& locale,
|
|
|
|
int32_t kind,
|
|
|
|
int32_t coverage,
|
|
|
|
const UnicodeString& name)
|
|
|
|
: LocaleKeyFactory(coverage, name)
|
|
|
|
, _obj(objToAdopt)
|
|
|
|
, _id(locale.getName())
|
|
|
|
, _kind(kind)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
UObject*
|
|
|
|
SimpleLocaleKeyFactory::create(const Key& key, const ICUService* service, UErrorCode& status) const
|
|
|
|
{
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
const LocaleKey& lkey = (const LocaleKey&)key;
|
|
|
|
if (_kind == LocaleKey::KIND_ANY || _kind == lkey.kind()) {
|
|
|
|
UnicodeString keyID;
|
|
|
|
lkey.currentID(keyID);
|
|
|
|
if (_id == keyID) {
|
|
|
|
return service->cloneInstance(_obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SimpleLocaleKeyFactory::updateVisibleIDs(Hashtable& result, UErrorCode& status) const
|
|
|
|
{
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
if (_coverage & 0x1) {
|
|
|
|
result.remove(_id);
|
|
|
|
} else {
|
|
|
|
result.put(_id, (void*)this, status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
SimpleLocaleKeyFactory::debug(UnicodeString& result) const
|
|
|
|
{
|
|
|
|
LocaleKeyFactory::debug(result);
|
|
|
|
result.append(", id: ");
|
|
|
|
result.append(_id);
|
|
|
|
result.append(", kind: ");
|
|
|
|
result.append(_kind);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
SimpleLocaleKeyFactory::debugClass(UnicodeString& result) const
|
|
|
|
{
|
|
|
|
return result.append("SimpleLocaleKeyFactory");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char SimpleLocaleKeyFactory::fgClassID = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
******************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
ICUResourceBundleFactory::ICUResourceBundleFactory()
|
|
|
|
: LocaleKeyFactory(VISIBLE)
|
|
|
|
, _bundleName()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ICUResourceBundleFactory::ICUResourceBundleFactory(const UnicodeString& bundleName)
|
|
|
|
: LocaleKeyFactory(VISIBLE)
|
|
|
|
, _bundleName(bundleName)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const Hashtable*
|
|
|
|
ICUResourceBundleFactory::getSupportedIDs(UErrorCode& status) const
|
|
|
|
{
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
return LocaleUtility::getAvailableLocaleNames(_bundleName);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
UObject*
|
|
|
|
ICUResourceBundleFactory::handleCreate(const Locale& loc, int32_t kind, const ICUService* service, UErrorCode& status) const
|
|
|
|
{
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
return new ResourceBundle(_bundleName, loc, status);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
ICUResourceBundleFactory::debug(UnicodeString& result) const
|
|
|
|
{
|
|
|
|
LocaleKeyFactory::debug(result);
|
|
|
|
result.append(", bundle: ");
|
|
|
|
return result.append(_bundleName);
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString&
|
|
|
|
ICUResourceBundleFactory::debugClass(UnicodeString& result) const
|
|
|
|
{
|
|
|
|
return result.append("ICUResourceBundleFactory");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char ICUResourceBundleFactory::fgClassID = '\0';
|
|
|
|
|
|
|
|
/*
|
|
|
|
******************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
ICULocaleService::ICULocaleService()
|
|
|
|
: fallbackLocale(Locale::getDefault())
|
2002-11-07 08:02:41 +00:00
|
|
|
, llock(0)
|
2002-11-06 22:14:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ICULocaleService::ICULocaleService(const UnicodeString& name)
|
|
|
|
: ICUService(name)
|
|
|
|
, fallbackLocale(Locale::getDefault())
|
2002-11-07 08:02:41 +00:00
|
|
|
, llock(0)
|
2002-11-06 22:14:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ICULocaleService::~ICULocaleService()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
UObject*
|
|
|
|
ICULocaleService::get(const Locale& locale, UErrorCode& status) const
|
|
|
|
{
|
|
|
|
return get(locale, LocaleKey::KIND_ANY, NULL, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
UObject*
|
|
|
|
ICULocaleService::get(const Locale& locale, int32_t kind, UErrorCode& status) const
|
|
|
|
{
|
|
|
|
return get(locale, kind, NULL, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
UObject*
|
|
|
|
ICULocaleService::get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const
|
|
|
|
{
|
|
|
|
return get(locale, LocaleKey::KIND_ANY, actualReturn, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
UObject*
|
|
|
|
ICULocaleService::get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const
|
|
|
|
{
|
|
|
|
UObject* result = NULL;
|
|
|
|
|
|
|
|
UnicodeString locName(locale.getName());
|
|
|
|
if (locName.isBogus()) {
|
|
|
|
status = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
} else {
|
|
|
|
Key* key = createKey(&locName, kind);
|
|
|
|
if (key) {
|
|
|
|
if (actualReturn == NULL) {
|
|
|
|
result = getKey(*key, status);
|
|
|
|
} else {
|
|
|
|
UnicodeString temp;
|
|
|
|
result = getKey(*key, &temp, status);
|
|
|
|
|
|
|
|
if (result != NULL) {
|
|
|
|
key->parseSuffix(temp);
|
|
|
|
LocaleUtility::initLocaleFromName(temp, *actualReturn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Factory*
|
|
|
|
ICULocaleService::registerObject(UObject* objToAdopt, const Locale& locale)
|
|
|
|
{
|
|
|
|
return registerObject(objToAdopt, locale, LocaleKey::KIND_ANY, LocaleKeyFactory::VISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Factory*
|
|
|
|
ICULocaleService::registerObject(UObject* objToAdopt, const Locale& locale, int32_t kind)
|
|
|
|
{
|
|
|
|
return registerObject(objToAdopt, locale, kind, LocaleKeyFactory::VISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Factory*
|
|
|
|
ICULocaleService::registerObject(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage)
|
|
|
|
{
|
|
|
|
Factory * factory = new SimpleLocaleKeyFactory(objToAdopt, locale, kind, coverage);
|
|
|
|
if (factory != NULL) {
|
|
|
|
return registerFactory(factory);
|
|
|
|
}
|
|
|
|
delete objToAdopt;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ServiceEnumeration : public StringEnumeration {
|
|
|
|
private:
|
|
|
|
const ICULocaleService* _service;
|
|
|
|
int32_t _timestamp;
|
|
|
|
UVector _ids;
|
|
|
|
int32_t _pos;
|
|
|
|
void* _bufp;
|
|
|
|
int32_t _buflen;
|
|
|
|
|
|
|
|
private:
|
|
|
|
ServiceEnumeration(const ICULocaleService* service, UErrorCode status)
|
|
|
|
: _service(service)
|
|
|
|
, _timestamp(service->getTimestamp())
|
|
|
|
, _ids(uhash_deleteUnicodeString, NULL, status)
|
|
|
|
, _pos(0)
|
|
|
|
, _bufp(NULL)
|
|
|
|
, _buflen(0)
|
|
|
|
{
|
|
|
|
_service->getVisibleIDs(_ids, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
static ServiceEnumeration* create(const ICULocaleService* service) {
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
ServiceEnumeration* result = new ServiceEnumeration(service, status);
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
delete result;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~ServiceEnumeration() {
|
|
|
|
uprv_free(_bufp);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int32_t count(UErrorCode& status) const {
|
|
|
|
return upToDate(status) ? _ids.size() : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* next(UErrorCode& status) {
|
|
|
|
const UnicodeString* us = snext(status);
|
|
|
|
if (us) {
|
2002-11-07 08:02:41 +00:00
|
|
|
while (TRUE) {
|
|
|
|
int32_t newlen = us->extract((char*)_bufp, _buflen / sizeof(char), NULL, status);
|
|
|
|
if (status == U_STRING_NOT_TERMINATED_WARNING || status == U_BUFFER_OVERFLOW_ERROR) {
|
|
|
|
resizeBuffer((newlen + 1) * sizeof(char));
|
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
} else if (U_SUCCESS(status)) {
|
|
|
|
((char*)_bufp)[newlen] = 0;
|
|
|
|
return (const char*)_bufp;
|
|
|
|
} else {
|
|
|
|
break;
|
2002-11-06 22:14:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const UChar* unext(UErrorCode& status) {
|
|
|
|
const UnicodeString* us = snext(status);
|
|
|
|
if (us) {
|
2002-11-07 08:02:41 +00:00
|
|
|
while (TRUE) {
|
|
|
|
int32_t newlen = us->extract((UChar*)_bufp, _buflen / sizeof(UChar), status);
|
|
|
|
if (status == U_STRING_NOT_TERMINATED_WARNING || status == U_BUFFER_OVERFLOW_ERROR) {
|
|
|
|
resizeBuffer((newlen + 1) * sizeof(UChar));
|
|
|
|
} else if (U_SUCCESS(status)) {
|
|
|
|
((UChar*)_bufp)[newlen] = 0;
|
|
|
|
return (const UChar*)_bufp;
|
|
|
|
} else {
|
|
|
|
break;
|
2002-11-06 22:14:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const UnicodeString* snext(UErrorCode& status) {
|
|
|
|
if (upToDate(status) && (_pos < _ids.size())) {
|
|
|
|
return (const UnicodeString*)_ids[_pos++];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void resizeBuffer(int32_t newlen) {
|
|
|
|
if (_bufp) {
|
|
|
|
_bufp = uprv_realloc(_bufp, newlen);
|
|
|
|
} else {
|
|
|
|
_bufp = uprv_malloc(newlen);
|
|
|
|
}
|
2002-11-07 08:02:41 +00:00
|
|
|
_buflen = newlen;
|
2002-11-06 22:14:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UBool upToDate(UErrorCode& status) const {
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
if (_timestamp == _service->getTimestamp()) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
status = U_ENUM_OUT_OF_SYNC_ERROR;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset(UErrorCode& status) {
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
_timestamp = _service->getTimestamp();
|
|
|
|
_pos = 0;
|
|
|
|
_service->getVisibleIDs(_ids, status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
StringEnumeration*
|
|
|
|
ICULocaleService::getAvailableLocales(void) const
|
|
|
|
{
|
|
|
|
return ServiceEnumeration::create(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
const UnicodeString&
|
|
|
|
ICULocaleService::validateFallbackLocale() const
|
|
|
|
{
|
|
|
|
const Locale& loc = Locale::getDefault();
|
|
|
|
if (loc != fallbackLocale) {
|
|
|
|
ICULocaleService* ncThis = (ICULocaleService*)this;
|
2002-11-07 08:02:41 +00:00
|
|
|
Mutex mutex(&ncThis->llock);
|
2002-11-06 22:14:49 +00:00
|
|
|
if (loc != fallbackLocale) {
|
|
|
|
ncThis->fallbackLocale = loc;
|
|
|
|
LocaleUtility::initNameFromLocale(loc, ncThis->fallbackLocaleName);
|
|
|
|
ncThis->clearServiceCache();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fallbackLocaleName;
|
|
|
|
}
|
|
|
|
|
|
|
|
Key*
|
|
|
|
ICULocaleService::createKey(const UnicodeString* id) const
|
|
|
|
{
|
|
|
|
return LocaleKey::createWithCanonicalFallback(id, &validateFallbackLocale());
|
|
|
|
}
|
|
|
|
|
|
|
|
Key*
|
|
|
|
ICULocaleService::createKey(const UnicodeString* id, int32_t kind) const
|
|
|
|
{
|
|
|
|
return LocaleKey::createWithCanonicalFallback(id, &validateFallbackLocale(), kind);
|
|
|
|
}
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
|
|
|
|
/* !UCONFIG_NO_SERVICE */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|