2 *******************************************************************************
3 * Copyright (C) 2002-2006, International Business Machines Corporation and *
4 * others. All Rights Reserved. *
5 *******************************************************************************
7 *******************************************************************************
9 #include "unicode/utypes.h"
11 #if !UCONFIG_NO_SERVICE || !UCONFIG_NO_TRANSLITERATION
13 #include "unicode/resbund.h"
22 // see LocaleUtility::getAvailableLocaleNames
23 static U_NAMESPACE_QUALIFIER Hashtable
* LocaleUtility_cache
= NULL
;
25 #define UNDERSCORE_CHAR ((UChar)0x005f)
26 #define AT_SIGN_CHAR ((UChar)64)
27 #define PERIOD_CHAR ((UChar)46)
30 ******************************************************************
34 * Release all static memory held by Locale Utility.
37 static UBool U_CALLCONV
service_cleanup(void) {
38 if (LocaleUtility_cache
) {
39 delete LocaleUtility_cache
;
40 LocaleUtility_cache
= NULL
;
49 LocaleUtility::canonicalLocaleString(const UnicodeString
* id
, UnicodeString
& result
)
54 // Fix case only (no other changes) up to the first '@' or '.' or
55 // end of string, whichever comes first. In 3.0 I changed this to
56 // stop at first '@' or '.'. It used to run out to the end of
57 // string. My fix makes the tests pass but is probably
58 // structurally incorrect. See below. [alan 3.0]
60 // TODO: Doug, you might want to revise this...
63 int32_t end
= result
.indexOf(AT_SIGN_CHAR
);
64 int32_t n
= result
.indexOf(PERIOD_CHAR
);
65 if (n
>= 0 && n
< end
) {
69 end
= result
.length();
71 n
= result
.indexOf(UNDERSCORE_CHAR
);
76 UChar c
= result
.charAt(i
);
77 if (c
>= 0x0041 && c
<= 0x005a) {
79 result
.setCharAt(i
, c
);
82 for (n
= end
; i
< n
; ++i
) {
83 UChar c
= result
.charAt(i
);
84 if (c
>= 0x0061 && c
<= 0x007a) {
86 result
.setCharAt(i
, c
);
93 // This code does a proper full level 2 canonicalization of id.
94 // It's nasty to go from UChar to char to char to UChar -- but
95 // that's what you have to do to use the uloc_canonicalize
96 // function on UnicodeStrings.
98 // I ended up doing the alternate fix (see above) not for
99 // performance reasons, although performance will certainly be
100 // better, but because doing a full level 2 canonicalization
101 // causes some tests to fail. [alan 3.0]
103 // TODO: Doug, you might want to revisit this...
106 int32_t buflen
= id
->length() + 8; // space for NUL
107 char* buf
= (char*) uprv_malloc(buflen
);
108 char* canon
= (buf
== 0) ? 0 : (char*) uprv_malloc(buflen
);
109 if (buf
!= 0 && canon
!= 0) {
110 U_ASSERT(id
->extract(0, INT32_MAX
, buf
, buflen
) < buflen
);
111 UErrorCode ec
= U_ZERO_ERROR
;
112 uloc_canonicalize(buf
, canon
, buflen
, &ec
);
114 result
= UnicodeString(canon
);
125 LocaleUtility::initLocaleFromName(const UnicodeString
& id
, Locale
& result
)
127 enum { BUFLEN
= 128 }; // larger than ever needed
129 if (id
.isBogus() || id
.length() >= BUFLEN
) {
133 * We need to convert from a UnicodeString to char * in order to
136 * Problem: Locale ID strings may contain '@' which is a variant
137 * character and cannot be handled by invariant-character conversion.
139 * Hack: Since ICU code can handle locale IDs with multiple encodings
140 * of '@' (at least for EBCDIC; it's not known to be a problem for
141 * ASCII-based systems),
142 * we use regular invariant-character conversion for everything else
143 * and manually convert U+0040 into a compiler-char-constant '@'.
144 * While this compilation-time constant may not match the runtime
145 * encoding of '@', it should be one of the encodings which ICU
148 * There should be only at most one '@' in a locale ID.
154 i
= id
.indexOf((UChar
)0x40, prev
);
156 // no @ between prev and the rest of the string
157 id
.extract(prev
, INT32_MAX
, buffer
+ prev
, BUFLEN
- prev
, US_INV
);
160 // normal invariant-character conversion for text between @s
161 id
.extract(prev
, i
- prev
, buffer
+ prev
, BUFLEN
- prev
, US_INV
);
162 // manually "convert" U+0040 at id[i] into '@' at buffer[i]
167 result
= Locale::createFromName(buffer
);
173 LocaleUtility::initNameFromLocale(const Locale
& locale
, UnicodeString
& result
)
175 if (locale
.isBogus()) {
178 result
.append(UnicodeString(locale
.getName(), -1, US_INV
));
184 LocaleUtility::getAvailableLocaleNames(const UnicodeString
& bundleID
)
186 // LocaleUtility_cache is a hash-of-hashes. The top-level keys
187 // are path strings ('bundleID') passed to
188 // ures_openAvailableLocales. The top-level values are
189 // second-level hashes. The second-level keys are result strings
190 // from ures_openAvailableLocales. The second-level values are
191 // garbage ((void*)1 or other random pointer).
193 UErrorCode status
= U_ZERO_ERROR
;
196 cache
= LocaleUtility_cache
;
200 cache
= new Hashtable(status
);
201 if (cache
== NULL
|| U_FAILURE(status
)) {
202 return NULL
; // catastrophic failure; e.g. out of memory
204 cache
->setValueDeleter(uhash_deleteHashtable
);
205 Hashtable
* h
; // set this to final LocaleUtility_cache value
207 h
= LocaleUtility_cache
;
209 LocaleUtility_cache
= h
= cache
;
211 ucln_common_registerCleanup(UCLN_COMMON_SERVICE
, service_cleanup
);
220 U_ASSERT(cache
!= NULL
);
224 htp
= (Hashtable
*) cache
->get(bundleID
);
228 htp
= new Hashtable(status
);
229 if (htp
&& U_SUCCESS(status
)) {
230 CharString
cbundleID(bundleID
);
231 const char* path
= (const char*) cbundleID
;
232 if (*path
== 0) path
= NULL
; // empty string => NULL
233 UEnumeration
*uenum
= ures_openAvailableLocales(path
, &status
);
235 const UChar
* id
= uenum_unext(uenum
, NULL
, &status
);
239 htp
->put(UnicodeString(id
), (void*)htp
, status
);
242 if (U_FAILURE(status
)) {
247 cache
->put(bundleID
, (void*)htp
, status
);
255 LocaleUtility::isFallbackOf(const UnicodeString
& root
, const UnicodeString
& child
)
257 return child
.indexOf(root
) == 0 &&
258 (child
.length() == root
.length() ||
259 child
.charAt(root
.length()) == UNDERSCORE_CHAR
);
264 /* !UCONFIG_NO_SERVICE */