build fix
[LibreOffice.git] / i18npool / source / indexentry / indexentrysupplier_default.cxx
blob2c902cf002b7f6e557a0629a043a687d48f2514b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <indexentrysupplier_default.hxx>
21 #include <localedata.hxx>
22 #include <i18nutil/unicode.hxx>
23 #include <com/sun/star/i18n/CollatorOptions.hpp>
25 using namespace ::com::sun::star::uno;
26 using namespace ::com::sun::star::lang;
28 namespace com { namespace sun { namespace star { namespace i18n {
30 IndexEntrySupplier_Unicode::IndexEntrySupplier_Unicode(
31 const css::uno::Reference < css::uno::XComponentContext >& rxContext ) :
32 IndexEntrySupplier_Common(rxContext)
34 implementationName = "com.sun.star.i18n.IndexEntrySupplier_Unicode";
35 index = new Index(rxContext);
38 IndexEntrySupplier_Unicode::~IndexEntrySupplier_Unicode()
40 delete index;
43 sal_Bool SAL_CALL IndexEntrySupplier_Unicode::loadAlgorithm( const lang::Locale& rLocale,
44 const OUString& rAlgorithm, sal_Int32 collatorOptions ) throw (RuntimeException, std::exception)
46 index->init(rLocale, rAlgorithm);
47 return IndexEntrySupplier_Common::loadAlgorithm(rLocale, rAlgorithm, collatorOptions);
50 OUString SAL_CALL IndexEntrySupplier_Unicode::getIndexKey( const OUString& rIndexEntry,
51 const OUString& rPhoneticEntry, const lang::Locale& rLocale ) throw (RuntimeException, std::exception)
53 return index->getIndexDescription(getEntry(rIndexEntry, rPhoneticEntry, rLocale));
56 sal_Int16 SAL_CALL IndexEntrySupplier_Unicode::compareIndexEntry(
57 const OUString& rIndexEntry1, const OUString& rPhoneticEntry1, const lang::Locale& rLocale1,
58 const OUString& rIndexEntry2, const OUString& rPhoneticEntry2, const lang::Locale& rLocale2 )
59 throw (RuntimeException, std::exception)
61 sal_Int16 result =
62 index->getIndexWeight(getEntry(rIndexEntry1, rPhoneticEntry1, rLocale1)) -
63 index->getIndexWeight(getEntry(rIndexEntry2, rPhoneticEntry2, rLocale2));
64 if (result == 0)
65 return IndexEntrySupplier_Common::compareIndexEntry(
66 rIndexEntry1, rPhoneticEntry1, rLocale1,
67 rIndexEntry2, rPhoneticEntry2, rLocale2);
68 return result > 0 ? 1 : -1;
71 OUString SAL_CALL IndexEntrySupplier_Unicode::getIndexCharacter( const OUString& rIndexEntry,
72 const lang::Locale& rLocale, const OUString& rAlgorithm ) throw (RuntimeException, std::exception) {
74 if (loadAlgorithm( rLocale, rAlgorithm, CollatorOptions::CollatorOptions_IGNORE_CASE_ACCENT))
75 return index->getIndexDescription(rIndexEntry);
76 else
77 return IndexEntrySupplier_Common::getIndexCharacter(rIndexEntry, rLocale, rAlgorithm);
80 IndexTable::IndexTable()
81 : start(0)
82 , end(0)
83 , table(nullptr)
87 IndexTable::~IndexTable()
89 if (table) free(table);
92 void IndexTable::init(sal_Unicode start_, sal_Unicode end_, IndexKey *keys, sal_Int16 key_count, Index *index)
94 start=start_;
95 end=end_;
96 table = static_cast<sal_uInt8*>(malloc((end-start+1)*sizeof(sal_uInt8)));
97 for (sal_Unicode i = start; i <= end; i++) {
98 sal_Int16 j;
99 for (j = 0; j < key_count; j++) {
100 if (keys[j].key > 0 && (i == keys[j].key || index->compare(i, keys[j].key) == 0)) {
101 table[i-start] = sal::static_int_cast<sal_uInt8>(j);
102 break;
105 if (j == key_count)
106 table[i-start] = 0xFF;
110 Index::Index(const css::uno::Reference < css::uno::XComponentContext >& rxContext)
111 : table_count(0)
112 , key_count(0)
113 , mkey_count(0)
115 collator = new CollatorImpl(rxContext);
118 Index::~Index()
120 delete collator;
123 sal_Int16 Index::compare(sal_Unicode c1, sal_Unicode c2)
125 return sal::static_int_cast<sal_Int16>( collator->compareString(OUString(&c1, 1), OUString(&c2, 1)) );
128 sal_Int16 Index::getIndexWeight(const OUString& rIndexEntry)
130 sal_Int32 startPos=0;
131 if (!skipping_chars.isEmpty())
132 while (skipping_chars.indexOf(rIndexEntry[startPos]) >= 0)
133 startPos++;
134 if (mkey_count > 0) {
135 for (sal_Int16 i = 0; i < mkey_count; i++) {
136 sal_Int32 len = keys[mkeys[i]].mkey.getLength();
137 if (collator->compareSubstring(rIndexEntry, startPos, len,
138 keys[mkeys[i]].mkey, 0, len) == 0)
139 return mkeys[i];
142 sal_Unicode code = rIndexEntry[startPos];
143 for (sal_Int16 i = 0; i < table_count; i++) {
144 if (tables[i].start <= code && code <= tables[i].end)
145 return tables[i].table[code-tables[i].start];
147 return 0xFF;
150 OUString Index::getIndexDescription(const OUString& rIndexEntry)
152 sal_Int16 wgt = getIndexWeight(rIndexEntry);
153 if (wgt < MAX_KEYS) {
154 if (!keys[wgt].desc.isEmpty())
155 return keys[wgt].desc;
156 else if (keys[wgt].key > 0)
157 return OUString(&keys[wgt].key, 1);
158 else
159 return keys[wgt].mkey;
161 sal_Int32 nPos=0;
162 sal_uInt32 indexChar=rIndexEntry.iterateCodePoints(&nPos, 0);
163 return OUString(&indexChar, 1);
166 #define LOCALE_EN lang::Locale(OUString("en"), OUString(), OUString())
168 void Index::makeIndexKeys(const lang::Locale &rLocale, const OUString &algorithm) throw (RuntimeException, std::exception)
170 OUString keyStr = LocaleDataImpl::get()->getIndexKeysByAlgorithm(rLocale, algorithm);
172 if (keyStr.isEmpty()) {
173 keyStr = LocaleDataImpl::get()->getIndexKeysByAlgorithm(LOCALE_EN,
174 LocaleDataImpl::get()->getDefaultIndexAlgorithm(LOCALE_EN));
175 if (keyStr.isEmpty())
176 throw RuntimeException();
179 sal_Int16 len = sal::static_int_cast<sal_Int16>( keyStr.getLength() );
180 mkey_count=key_count=0;
181 skipping_chars=OUString();
182 sal_Int16 i, j;
184 for (i = 0; i < len && key_count < MAX_KEYS; i++)
186 sal_Unicode curr = keyStr[i];
187 sal_Unicode close = ')';
189 if (unicode::isWhiteSpace(curr))
190 continue;
192 switch(curr) {
193 case sal_Unicode('-'):
194 if (key_count > 0 && i + 1 < len ) {
195 for (curr = keyStr[++i]; key_count < MAX_KEYS && keys[key_count-1].key < curr; key_count++) {
196 keys[key_count].key = keys[key_count-1].key+1;
197 keys[key_count].desc.clear();
199 } else
200 throw RuntimeException();
201 break;
202 case sal_Unicode('['):
203 for (i++; i < len && keyStr[i] != ']'; i++) {
204 if (unicode::isWhiteSpace(keyStr[i])) {
205 continue;
206 } else if (keyStr[i] == '_') {
207 for (curr=keyStr[i-1]+1; curr <= keyStr[i+1]; curr++)
208 skipping_chars+=OUStringLiteral1(curr);
209 i+=2;
210 } else {
211 skipping_chars+=OUStringLiteral1(keyStr[i]);
214 break;
215 case sal_Unicode('{'):
216 close = '}';
217 SAL_FALLTHROUGH;
218 case sal_Unicode('('):
219 if (key_count > 0) {
220 sal_Int16 end = i+1;
221 for (; end < len && keyStr[end] != close; end++) ;
223 if (end >= len) // no found
224 throw RuntimeException();
225 if (close == ')')
226 keys[key_count-1].desc = keyStr.copy(i+1, end-i-1);
227 else {
228 mkeys[mkey_count++]=key_count;
229 keys[key_count].key = 0;
230 keys[key_count].mkey = keyStr.copy(i+1, end-i-1);
231 keys[key_count++].desc.clear();
233 i=end+1;
234 } else
235 throw RuntimeException();
236 break;
237 default:
238 keys[key_count].key = curr;
239 keys[key_count++].desc.clear();
240 break;
243 for (i = 0; i < mkey_count; i++) {
244 for (j=i+1; j < mkey_count; j++) {
245 if (keys[mkeys[i]].mkey.getLength() < keys[mkeys[j]].mkey.getLength()) {
246 sal_Int16 k = mkeys[i];
247 mkeys[i] = mkeys[j];
248 mkeys[j] = k;
254 void Index::init(const lang::Locale &rLocale, const OUString& algorithm) throw (RuntimeException, std::exception)
256 makeIndexKeys(rLocale, algorithm);
258 Sequence< UnicodeScript > scriptList = LocaleDataImpl::get()->getUnicodeScripts( rLocale );
260 if (scriptList.getLength() == 0) {
261 scriptList = LocaleDataImpl::get()->getUnicodeScripts(LOCALE_EN);
262 if (scriptList.getLength() == 0)
263 throw RuntimeException();
266 table_count = sal::static_int_cast<sal_Int16>( scriptList.getLength() );
267 if (table_count > MAX_TABLES)
268 throw RuntimeException();
270 collator->loadCollatorAlgorithm(algorithm, rLocale, CollatorOptions::CollatorOptions_IGNORE_CASE_ACCENT);
271 sal_Int16 j=0;
272 sal_Unicode start = unicode::getUnicodeScriptStart((UnicodeScript)0);
273 sal_Unicode end = unicode::getUnicodeScriptEnd((UnicodeScript)0);
274 for (sal_Int32 i= (scriptList[0] == (UnicodeScript)0) ? 1 : 0; i< scriptList.getLength(); i++) {
275 if (unicode::getUnicodeScriptStart(scriptList[i]) != end+1) {
276 tables[j++].init(start, end, keys, key_count, this);
277 start = unicode::getUnicodeScriptStart(scriptList[i]);
279 end = unicode::getUnicodeScriptEnd(scriptList[i]);
281 tables[j++].init(start, end, keys, key_count, this);
282 table_count = j;
285 } } } }
287 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */