]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/engine/Index.java
Switch to default Java Collator.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / Index.java
1 // Copyright 2011 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 /**
16  * 
17  */
18
19 package com.hughes.android.dictionary.engine;
20
21 import com.hughes.android.dictionary.DictionaryInfo;
22 import com.hughes.android.dictionary.DictionaryInfo.IndexInfo;
23 import com.hughes.android.dictionary.engine.RowBase.RowKey;
24 import com.hughes.util.CachingList;
25 import com.hughes.util.StringUtil;
26 import com.hughes.util.TransformingList;
27 import com.hughes.util.raf.RAFList;
28 import com.hughes.util.raf.RAFSerializable;
29 import com.hughes.util.raf.RAFSerializer;
30 import com.hughes.util.raf.SerializableSerializer;
31 import com.hughes.util.raf.UniformRAFList;
32 import java.text.Collator;
33 import com.ibm.icu.text.Transliterator;
34
35 import java.io.DataInput;
36 import java.io.DataOutput;
37 import java.io.IOException;
38 import java.io.PrintStream;
39 import java.io.RandomAccessFile;
40 import java.util.AbstractList;
41 import java.util.ArrayList;
42 import java.util.Collection;
43 import java.util.Collections;
44 import java.util.Comparator;
45 import java.util.EnumMap;
46 import java.util.HashSet;
47 import java.util.LinkedHashMap;
48 import java.util.LinkedHashSet;
49 import java.util.List;
50 import java.util.Map;
51 import java.util.Set;
52 import java.util.concurrent.atomic.AtomicBoolean;
53 import java.util.regex.Pattern;
54
55 public final class Index implements RAFSerializable<Index> {
56
57     static final int CACHE_SIZE = 5000;
58
59     public final Dictionary dict;
60
61     public final String shortName; // Typically the ISO code for the language.
62     public final String longName;
63
64     // persisted: tells how the entries are sorted.
65     public final Language sortLanguage;
66     final String normalizerRules;
67
68     // Built from the two above.
69     private Transliterator normalizer;
70
71     // persisted
72     public final List<IndexEntry> sortedIndexEntries;
73
74     // persisted.
75     public final Set<String> stoplist;
76
77     // One big list!
78     // Various sub-types.
79     // persisted
80     public final List<RowBase> rows;
81     public final boolean swapPairEntries;
82
83     // Version 2:
84     int mainTokenCount = -1;
85
86     // --------------------------------------------------------------------------
87
88     public Index(final Dictionary dict, final String shortName, final String longName,
89             final Language sortLanguage, final String normalizerRules,
90             final boolean swapPairEntries, final Set<String> stoplist) {
91         this.dict = dict;
92         this.shortName = shortName;
93         this.longName = longName;
94         this.sortLanguage = sortLanguage;
95         this.normalizerRules = normalizerRules;
96         this.swapPairEntries = swapPairEntries;
97         sortedIndexEntries = new ArrayList<IndexEntry>();
98         this.stoplist = stoplist;
99         rows = new ArrayList<RowBase>();
100
101         normalizer = null;
102     }
103
104     /**
105      * Deferred initialization because it can be slow.
106      */
107     public synchronized Transliterator normalizer() {
108         if (normalizer == null) {
109             normalizer = Transliterator
110                     .createFromRules("", normalizerRules, Transliterator.FORWARD);
111         }
112         return normalizer;
113     }
114
115     /**
116      * Note that using this comparator probably involves doing too many text
117      * normalizations.
118      */
119     public NormalizeComparator getSortComparator() {
120         return new NormalizeComparator(normalizer(), sortLanguage.getCollator());
121     }
122
123     public Index(final Dictionary dict, final DataInput inp) throws IOException {
124         this.dict = dict;
125         RandomAccessFile raf = (RandomAccessFile)inp;
126         shortName = raf.readUTF();
127         longName = raf.readUTF();
128         final String languageCode = raf.readUTF();
129         sortLanguage = Language.lookup(languageCode);
130         normalizerRules = raf.readUTF();
131         swapPairEntries = raf.readBoolean();
132         if (sortLanguage == null) {
133             throw new IOException("Unsupported language: " + languageCode);
134         }
135         if (dict.dictFileVersion >= 2) {
136             mainTokenCount = raf.readInt();
137         }
138         sortedIndexEntries = CachingList.create(
139                 RAFList.create(raf, indexEntrySerializer, raf.getFilePointer(),
140                                dict.dictFileVersion), CACHE_SIZE);
141         if (dict.dictFileVersion >= 7) {
142             int count = StringUtil.readVarInt(raf);
143             stoplist = new HashSet<String>(count);
144             for (int i = 0; i < count; ++i) {
145                 stoplist.add(raf.readUTF());
146             }
147         } else if (dict.dictFileVersion >= 4) {
148             stoplist = new SerializableSerializer<Set<String>>().read(raf);
149         } else {
150             stoplist = Collections.emptySet();
151         }
152         rows = CachingList.create(
153                 UniformRAFList.create(raf, new RowBase.Serializer(this), raf.getFilePointer()),
154                 CACHE_SIZE);
155     }
156
157     @Override
158     public void write(final DataOutput out) throws IOException {
159         RandomAccessFile raf = (RandomAccessFile)out;
160         raf.writeUTF(shortName);
161         raf.writeUTF(longName);
162         raf.writeUTF(sortLanguage.getIsoCode());
163         raf.writeUTF(normalizerRules);
164         raf.writeBoolean(swapPairEntries);
165         if (dict.dictFileVersion >= 2) {
166             raf.writeInt(mainTokenCount);
167         }
168         RAFList.write(raf, sortedIndexEntries, indexEntrySerializer, 32, true);
169         StringUtil.writeVarInt(raf, stoplist.size());
170         for (String i : stoplist) {
171             raf.writeUTF(i);
172         }
173         UniformRAFList.write(raf, rows, new RowBase.Serializer(this), 3 /* bytes per entry */);
174     }
175
176     public void print(final PrintStream out) {
177         for (final RowBase row : rows) {
178             row.print(out);
179         }
180     }
181
182     private final RAFSerializer<IndexEntry> indexEntrySerializer = new RAFSerializer<IndexEntry>() {
183         @Override
184         public IndexEntry read(DataInput raf) throws IOException {
185             return new IndexEntry(Index.this, raf);
186         }
187
188         @Override
189         public void write(DataOutput raf, IndexEntry t) throws IOException {
190             t.write(raf);
191         }
192     };
193
194     public static final class IndexEntry implements RAFSerializable<Index.IndexEntry> {
195         private final Index index;
196         public final String token;
197         private final String normalizedToken;
198         public final int startRow;
199         public final int numRows; // doesn't count the token row!
200         public List<HtmlEntry> htmlEntries;
201         private int[] htmlEntryIndices;
202
203         public IndexEntry(final Index index, final String token, final String normalizedToken,
204                 final int startRow, final int numRows) {
205             this.index = index;
206             assert token.equals(token.trim());
207             assert token.length() > 0;
208             this.token = token;
209             this.normalizedToken = normalizedToken;
210             this.startRow = startRow;
211             this.numRows = numRows;
212             this.htmlEntries = new ArrayList<HtmlEntry>();
213         }
214
215         public IndexEntry(final Index index, final DataInput raf) throws IOException {
216             this.index = index;
217             token = raf.readUTF();
218             if (index.dict.dictFileVersion >= 7) {
219                 startRow = StringUtil.readVarInt(raf);
220                 numRows = StringUtil.readVarInt(raf);
221             } else {
222                 startRow = raf.readInt();
223                 numRows = raf.readInt();
224             }
225             final boolean hasNormalizedForm = raf.readBoolean();
226             normalizedToken = hasNormalizedForm ? raf.readUTF() : token;
227             htmlEntryIndices = null;
228             if (index.dict.dictFileVersion >= 7) {
229                 int size = StringUtil.readVarInt(raf);
230                 htmlEntryIndices = new int[size];
231                 for (int i = 0; i < size; ++i) {
232                     htmlEntryIndices[i] = StringUtil.readVarInt(raf);
233                 }
234                 this.htmlEntries = CachingList.create(new AbstractList<HtmlEntry>() {
235                     @Override
236                     public HtmlEntry get(int i) {
237                         return index.dict.htmlEntries.get(htmlEntryIndices[i]);
238                     }
239                     @Override
240                     public int size() {
241                         return htmlEntryIndices.length;
242                     }
243                     }, 1);
244             } else if (index.dict.dictFileVersion >= 6) {
245                 this.htmlEntries = CachingList.create(
246                         RAFList.create((RandomAccessFile)raf, index.dict.htmlEntryIndexSerializer,
247                                 ((RandomAccessFile)raf).getFilePointer(), index.dict.dictFileVersion), 1);
248             } else {
249                 this.htmlEntries = Collections.emptyList();
250             }
251         }
252
253         public void write(DataOutput raf) throws IOException {
254             raf.writeUTF(token);
255             StringUtil.writeVarInt(raf, startRow);
256             StringUtil.writeVarInt(raf, numRows);
257             final boolean hasNormalizedForm = !token.equals(normalizedToken);
258             raf.writeBoolean(hasNormalizedForm);
259             if (hasNormalizedForm) {
260                 raf.writeUTF(normalizedToken);
261             }
262             StringUtil.writeVarInt(raf, htmlEntries.size());
263             for (HtmlEntry e : htmlEntries)
264                 StringUtil.writeVarInt(raf, e.index());
265         }
266
267         public String toString() {
268             return String.format("%s@%d(%d)", token, startRow, numRows);
269         }
270
271         public String normalizedToken() {
272             return normalizedToken;
273         }
274     }
275
276     static final TransformingList.Transformer<IndexEntry, String> INDEX_ENTRY_TO_TOKEN = new TransformingList.Transformer<IndexEntry, String>() {
277         @Override
278         public String transform(IndexEntry t1) {
279             return t1.token;
280         }
281     };
282
283     public IndexEntry findExact(final String exactToken) {
284         final int result = Collections.binarySearch(
285                 TransformingList.create(sortedIndexEntries, INDEX_ENTRY_TO_TOKEN), exactToken,
286                 getSortComparator());
287         if (result >= 0) {
288             return sortedIndexEntries.get(result);
289         }
290         return null;
291     }
292
293     public IndexEntry findInsertionPoint(String token, final AtomicBoolean interrupted) {
294         final int index = findInsertionPointIndex(token, interrupted);
295         return index != -1 ? sortedIndexEntries.get(index) : null;
296     }
297
298     public int findInsertionPointIndex(String token, final AtomicBoolean interrupted) {
299         token = normalizeToken(token);
300
301         int start = 0;
302         int end = sortedIndexEntries.size();
303
304         final Comparator sortCollator = sortLanguage.getCollator();
305         while (start < end) {
306             final int mid = (start + end) / 2;
307             if (interrupted.get()) {
308                 return -1;
309             }
310             final IndexEntry midEntry = sortedIndexEntries.get(mid);
311
312             final int comp = sortCollator.compare(token, midEntry.normalizedToken());
313             if (comp == 0) {
314                 final int result = windBackCase(token, mid, interrupted);
315                 return result;
316             } else if (comp < 0) {
317                 // System.out.println("Upper bound: " + midEntry + ", norm=" +
318                 // midEntry.normalizedToken() + ", mid=" + mid);
319                 end = mid;
320             } else {
321                 // System.out.println("Lower bound: " + midEntry + ", norm=" +
322                 // midEntry.normalizedToken() + ", mid=" + mid);
323                 start = mid + 1;
324             }
325         }
326
327         // If we search for a substring of a string that's in there, return
328         // that.
329         int result = Math.min(start, sortedIndexEntries.size() - 1);
330         result = windBackCase(sortedIndexEntries.get(result).normalizedToken(), result, interrupted);
331         return result;
332     }
333
334     private final int windBackCase(final String token, int result, final AtomicBoolean interrupted) {
335         while (result > 0 && sortedIndexEntries.get(result - 1).normalizedToken().equals(token)) {
336             --result;
337             if (interrupted.get()) {
338                 return result;
339             }
340         }
341         return result;
342     }
343
344     public IndexInfo getIndexInfo() {
345         return new DictionaryInfo.IndexInfo(shortName, sortedIndexEntries.size(), mainTokenCount);
346     }
347
348     private static final int MAX_SEARCH_ROWS = 1000;
349
350     private final Map<String, Integer> prefixToNumRows = new LinkedHashMap<String, Integer>();
351
352     private synchronized final int getUpperBoundOnRowsStartingWith(final String normalizedPrefix,
353             final int maxRows, final AtomicBoolean interrupted) {
354         final Integer numRows = prefixToNumRows.get(normalizedPrefix);
355         if (numRows != null) {
356             return numRows;
357         }
358         final int insertionPointIndex = findInsertionPointIndex(normalizedPrefix, interrupted);
359
360         int rowCount = 0;
361         for (int index = insertionPointIndex; index < sortedIndexEntries.size(); ++index) {
362             if (interrupted.get()) {
363                 return -1;
364             }
365             final IndexEntry indexEntry = sortedIndexEntries.get(index);
366             if (!indexEntry.normalizedToken.startsWith(normalizedPrefix)) {
367                 break;
368             }
369             rowCount += indexEntry.numRows + indexEntry.htmlEntries.size();
370             if (rowCount > maxRows) {
371                 System.out.println("Giving up, too many words with prefix: " + normalizedPrefix);
372                 break;
373             }
374         }
375         prefixToNumRows.put(normalizedPrefix, numRows);
376         return rowCount;
377     }
378
379     public final List<RowBase> multiWordSearch(
380             final String searchText, final List<String> searchTokens,
381             final AtomicBoolean interrupted) {
382         final long startMills = System.currentTimeMillis();
383         final List<RowBase> result = new ArrayList<RowBase>();
384
385         final Set<String> normalizedNonStoplist = new LinkedHashSet<String>();
386
387         String bestPrefix = null;
388         int leastRows = Integer.MAX_VALUE;
389         final StringBuilder searchTokensRegex = new StringBuilder();
390         for (int i = 0; i < searchTokens.size(); ++i) {
391             if (interrupted.get()) {
392                 return null;
393             }
394             final String searchToken = searchTokens.get(i);
395             final String normalized = normalizeToken(searchTokens.get(i));
396             // Normalize them all.
397             searchTokens.set(i, normalized);
398
399             if (!stoplist.contains(searchToken)) {
400                 if (normalizedNonStoplist.add(normalized)) {
401                     final int numRows = getUpperBoundOnRowsStartingWith(normalized,
402                             MAX_SEARCH_ROWS, interrupted);
403                     if (numRows != -1 && numRows < leastRows) {
404                         if (numRows == 0) {
405                             // We really are done here.
406                             return Collections.emptyList();
407                         }
408                         leastRows = numRows;
409                         bestPrefix = normalized;
410                     }
411                 }
412             }
413
414             if (searchTokensRegex.length() > 0) {
415                 searchTokensRegex.append("[\\s]*");
416             }
417             searchTokensRegex.append(Pattern.quote(normalized));
418         }
419         final Pattern pattern = Pattern.compile(searchTokensRegex.toString());
420
421         if (bestPrefix == null) {
422             bestPrefix = searchTokens.get(0);
423             System.out.println("Everything was in the stoplist!");
424         }
425         System.out.println("Searching using prefix: " + bestPrefix + ", leastRows=" + leastRows
426                 + ", searchTokens=" + searchTokens);
427
428         // Place to store the things that match.
429         final Map<RowMatchType, List<RowBase>> matches = new EnumMap<RowMatchType, List<RowBase>>(
430                 RowMatchType.class);
431         for (final RowMatchType rowMatchType : RowMatchType.values()) {
432             if (rowMatchType != RowMatchType.NO_MATCH) {
433                 matches.put(rowMatchType, new ArrayList<RowBase>());
434             }
435         }
436
437         int matchCount = 0;
438
439         final int exactMatchIndex = findInsertionPointIndex(searchText, interrupted);
440         if (exactMatchIndex != -1) {
441             final IndexEntry exactMatch = sortedIndexEntries.get(exactMatchIndex);
442             if (pattern.matcher(exactMatch.token).find()) {
443                 matches.get(RowMatchType.TITLE_MATCH).add(rows.get(exactMatch.startRow));
444             }
445         }
446
447         final String searchToken = bestPrefix;
448         final int insertionPointIndex = findInsertionPointIndex(searchToken, interrupted);
449         final Set<RowKey> rowsAlreadySeen = new HashSet<RowBase.RowKey>();
450         for (int index = insertionPointIndex; index < sortedIndexEntries.size()
451                 && matchCount < MAX_SEARCH_ROWS; ++index) {
452             if (interrupted.get()) {
453                 return null;
454             }
455             final IndexEntry indexEntry = sortedIndexEntries.get(index);
456             if (!indexEntry.normalizedToken.startsWith(searchToken)) {
457                 break;
458             }
459
460             // System.out.println("Searching indexEntry: " + indexEntry.token);
461
462             // Extra +1 to skip token row.
463             for (int rowIndex = indexEntry.startRow + 1; rowIndex < indexEntry.startRow + 1
464                     + indexEntry.numRows
465                     && rowIndex < rows.size(); ++rowIndex) {
466                 if (interrupted.get()) {
467                     return null;
468                 }
469                 final RowBase row = rows.get(rowIndex);
470                 final RowBase.RowKey rowKey = row.getRowKey();
471                 if (rowsAlreadySeen.contains(rowKey)) {
472                     continue;
473                 }
474                 rowsAlreadySeen.add(rowKey);
475                 final RowMatchType matchType = row.matches(searchTokens, pattern, normalizer(),
476                         swapPairEntries);
477                 if (matchType != RowMatchType.NO_MATCH) {
478                     matches.get(matchType).add(row);
479                     ++matchCount;
480                 }
481             }
482         }
483         // } // searchTokens
484
485         // Sort them into a reasonable order.
486         final RowBase.LengthComparator lengthComparator = new RowBase.LengthComparator(
487                 swapPairEntries);
488         for (final Collection<RowBase> rows : matches.values()) {
489             final List<RowBase> ordered = new ArrayList<RowBase>(rows);
490             Collections.sort(ordered, lengthComparator);
491             result.addAll(ordered);
492         }
493
494         System.out.println("searchDuration: " + (System.currentTimeMillis() - startMills));
495         return result;
496     }
497
498     private String normalizeToken(final String searchToken) {
499         if (TransliteratorManager.init(null)) {
500             final Transliterator normalizer = normalizer();
501             return normalizer.transliterate(searchToken);
502         } else {
503             // Do our best since the Transliterators aren't up yet.
504             return searchToken.toLowerCase();
505         }
506     }
507
508 }