diff options
author | Eike Rathke <erack@redhat.com> | 2013-09-05 14:11:59 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-09-05 14:57:28 +0200 |
commit | 41f02355e0a10556b4e902457755e1206aaf0294 (patch) | |
tree | 13cda8139d9db6a96179ef90de2b7623d4bcbb74 /i18npool | |
parent | 5ef76b39e21773783ad735859edeeb2a8d0ea4ff (diff) |
use get*LocaleServiceName
Change-Id: I976d6d565c7970858a5a259199fe14075e4f5d2e
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/indexentry/indexentrysupplier.cxx | 61 |
1 files changed, 31 insertions, 30 deletions
diff --git a/i18npool/source/indexentry/indexentrysupplier.cxx b/i18npool/source/indexentry/indexentrysupplier.cxx index 8cd16a1b0ff0..407e159009b1 100644 --- a/i18npool/source/indexentry/indexentrysupplier.cxx +++ b/i18npool/source/indexentry/indexentrysupplier.cxx @@ -129,39 +129,40 @@ IndexEntrySupplier::getLocaleSpecificIndexEntrySupplier(const Locale& rLocale, c if (!module.isEmpty() && createLocaleSpecificIndexEntrySupplier(module)) return xIES; - sal_Int32 l = rLocale.Language.getLength(); - sal_Int32 c = rLocale.Country.getLength(); - sal_Int32 v = rLocale.Variant.getLength(); - sal_Int32 a = aSortAlgorithm.getLength(); - OUStringBuffer aBuf(l+c+v+a+4); - - if ((l > 0 && c > 0 && v > 0 && a > 0 && - // load service with name <base>_<lang>_<country>_<varian>_<algorithm> - createLocaleSpecificIndexEntrySupplier(aBuf.append(rLocale.Language).append(under).append( - rLocale.Country).append(under).append(rLocale.Variant).append(under).append( - aSortAlgorithm).makeStringAndClear())) || - (l > 0 && c > 0 && a > 0 && - // load service with name <base>_<lang>_<country>_<algorithm> - createLocaleSpecificIndexEntrySupplier(aBuf.append(rLocale.Language).append(under).append( - rLocale.Country).append(under).append(aSortAlgorithm).makeStringAndClear())) || - (l > 0 && c > 0 && a > 0 && rLocale.Language.compareToAscii("zh") == 0 && - (rLocale.Country.compareToAscii("HK") == 0 || - rLocale.Country.compareToAscii("MO") == 0) && - // if the country code is HK or MO, one more step to try TW. - createLocaleSpecificIndexEntrySupplier(aBuf.append(rLocale.Language).append(under).appendAscii( - "TW").append(under).append(aSortAlgorithm).makeStringAndClear())) || - (l > 0 && a > 0 && - // load service with name <base>_<lang>_<algorithm> - createLocaleSpecificIndexEntrySupplier(aBuf.append(rLocale.Language).append(under).append( - aSortAlgorithm).makeStringAndClear())) || + bool bLoaded = false; + if (!aSortAlgorithm.isEmpty()) + { + // Load service with name <base>_<lang>_<country>_<algorithm> + // or <base>_<bcp47>_<algorithm> and fallbacks. + bLoaded = createLocaleSpecificIndexEntrySupplier( + LocaleDataImpl::getFirstLocaleServiceName( rLocale) + "_" + aSortAlgorithm); + if (!bLoaded) + { + ::std::vector< OUString > aFallbacks( LocaleDataImpl::getFallbackLocaleServiceNames( rLocale)); + for (::std::vector< OUString >::const_iterator it( aFallbacks.begin()); it != aFallbacks.end(); ++it) + { + bLoaded = createLocaleSpecificIndexEntrySupplier( *it + "_" + aSortAlgorithm); + if (bLoaded) + break; + } + if (!bLoaded) + { // load service with name <base>_<algorithm> - (a > 0 && createLocaleSpecificIndexEntrySupplier(aSortAlgorithm)) || - // load default service with name <base>_Unicode - createLocaleSpecificIndexEntrySupplier(OUString("Unicode"))) { - return xIES; + bLoaded = createLocaleSpecificIndexEntrySupplier( aSortAlgorithm); + } + } + } + if (!bLoaded) + { + // load default service with name <base>_Unicode + bLoaded = createLocaleSpecificIndexEntrySupplier( "Unicode"); + if (!bLoaded) + { + throw RuntimeException(); // could not load any service + } } + return xIES; } - throw RuntimeException(); } OUString SAL_CALL IndexEntrySupplier::getIndexFollowPageWord( sal_Bool bMorePages, |