2009-03-13 22:11:42 +00:00
|
|
|
/*
|
2010-03-26 22:07:10 +00:00
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
2011-01-07 06:01:51 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
|
|
* use this file except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at
|
2011-01-07 06:01:51 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-01-07 06:01:51 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations under
|
|
|
|
* the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.latin;
|
|
|
|
|
2010-11-29 08:57:48 +00:00
|
|
|
import android.content.Context;
|
2012-04-27 06:50:21 +00:00
|
|
|
import android.text.TextUtils;
|
2012-08-14 13:49:59 +00:00
|
|
|
import android.util.SparseArray;
|
2010-11-29 08:57:48 +00:00
|
|
|
|
2011-10-04 01:54:23 +00:00
|
|
|
import com.android.inputmethod.keyboard.ProximityInfo;
|
2012-06-12 18:31:46 +00:00
|
|
|
import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
2011-10-04 01:54:23 +00:00
|
|
|
|
2012-06-12 18:31:46 +00:00
|
|
|
import java.util.ArrayList;
|
2009-03-13 22:11:42 +00:00
|
|
|
import java.util.Arrays;
|
2012-04-04 12:39:23 +00:00
|
|
|
import java.util.Locale;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements a static, compacted, binary dictionary of standard words.
|
|
|
|
*/
|
2012-09-27 09:16:16 +00:00
|
|
|
public final class BinaryDictionary extends Dictionary {
|
2012-10-08 02:46:14 +00:00
|
|
|
private static final String TAG = BinaryDictionary.class.getSimpleName();
|
2011-03-14 18:46:15 +00:00
|
|
|
public static final String DICTIONARY_PACK_AUTHORITY =
|
|
|
|
"com.android.inputmethod.latin.dictionarypack";
|
|
|
|
|
2013-01-11 16:18:00 +00:00
|
|
|
// Must be identical to MAX_WORD_LENGTH in native/jni/src/defines.h
|
2012-12-17 08:43:09 +00:00
|
|
|
private static final int MAX_WORD_LENGTH = Constants.Dictionary.MAX_WORD_LENGTH;
|
2013-01-11 16:18:00 +00:00
|
|
|
// Must be identical to MAX_RESULTS in native/jni/src/defines.h
|
|
|
|
private static final int MAX_RESULTS = 18;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2011-10-31 11:44:01 +00:00
|
|
|
private long mNativeDict;
|
2012-08-14 13:49:59 +00:00
|
|
|
private final Locale mLocale;
|
2012-08-10 08:16:39 +00:00
|
|
|
private final int[] mInputCodePoints = new int[MAX_WORD_LENGTH];
|
2012-10-29 09:06:22 +00:00
|
|
|
private final int[] mOutputCodePoints = new int[MAX_WORD_LENGTH * MAX_RESULTS];
|
2013-01-11 09:59:01 +00:00
|
|
|
private final int[] mSpaceIndices = new int[MAX_RESULTS];
|
2012-07-10 11:18:10 +00:00
|
|
|
private final int[] mOutputScores = new int[MAX_RESULTS];
|
2012-07-12 03:55:48 +00:00
|
|
|
private final int[] mOutputTypes = new int[MAX_RESULTS];
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2012-04-06 10:28:34 +00:00
|
|
|
private final boolean mUseFullEditDistance;
|
2012-08-14 13:49:59 +00:00
|
|
|
|
|
|
|
private final SparseArray<DicTraverseSession> mDicTraverseSessions =
|
2012-08-22 05:22:20 +00:00
|
|
|
CollectionUtils.newSparseArray();
|
2012-08-20 05:37:16 +00:00
|
|
|
|
|
|
|
// TODO: There should be a way to remove used DicTraverseSession objects from
|
|
|
|
// {@code mDicTraverseSessions}.
|
2012-10-03 06:19:43 +00:00
|
|
|
private DicTraverseSession getTraverseSession(final int traverseSessionId) {
|
2012-08-20 05:37:16 +00:00
|
|
|
synchronized(mDicTraverseSessions) {
|
|
|
|
DicTraverseSession traverseSession = mDicTraverseSessions.get(traverseSessionId);
|
|
|
|
if (traverseSession == null) {
|
2012-08-14 13:49:59 +00:00
|
|
|
traverseSession = mDicTraverseSessions.get(traverseSessionId);
|
|
|
|
if (traverseSession == null) {
|
|
|
|
traverseSession = new DicTraverseSession(mLocale, mNativeDict);
|
|
|
|
mDicTraverseSessions.put(traverseSessionId, traverseSession);
|
|
|
|
}
|
|
|
|
}
|
2012-08-20 05:37:16 +00:00
|
|
|
return traverseSession;
|
2012-08-14 13:49:59 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
|
|
|
|
/**
|
2011-04-26 12:49:09 +00:00
|
|
|
* Constructor for the binary dictionary. This is supposed to be called from the
|
|
|
|
* dictionary factory.
|
|
|
|
* @param filename the name of the file to read through native code.
|
|
|
|
* @param offset the offset of the dictionary data within the file.
|
|
|
|
* @param length the length of the binary data.
|
2012-04-06 10:12:05 +00:00
|
|
|
* @param useFullEditDistance whether to use the full edit distance in suggestions
|
2012-06-27 08:31:09 +00:00
|
|
|
* @param dictType the dictionary type, as a human-readable string
|
2009-03-13 22:11:42 +00:00
|
|
|
*/
|
2013-01-11 09:59:01 +00:00
|
|
|
public BinaryDictionary(final String filename, final long offset, final long length,
|
|
|
|
final boolean useFullEditDistance, final Locale locale, final String dictType) {
|
2012-06-27 08:31:09 +00:00
|
|
|
super(dictType);
|
2012-08-14 13:49:59 +00:00
|
|
|
mLocale = locale;
|
2012-04-06 10:28:34 +00:00
|
|
|
mUseFullEditDistance = useFullEditDistance;
|
2011-04-26 12:49:09 +00:00
|
|
|
loadDictionary(filename, offset, length);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
2011-02-25 09:21:02 +00:00
|
|
|
static {
|
2012-03-08 08:07:02 +00:00
|
|
|
JniUtils.loadNativeLibrary();
|
2011-02-25 09:21:02 +00:00
|
|
|
}
|
2011-02-25 08:56:53 +00:00
|
|
|
|
2013-01-11 16:18:00 +00:00
|
|
|
private static native long openNative(String sourceDir, long dictOffset, long dictSize);
|
|
|
|
private static native void closeNative(long dict);
|
|
|
|
private static native int getFrequencyNative(long dict, int[] word);
|
|
|
|
private static native boolean isValidBigramNative(long dict, int[] word1, int[] word2);
|
|
|
|
private static native int getSuggestionsNative(long dict, long proximityInfo,
|
|
|
|
long traverseSession, int[] xCoordinates, int[] yCoordinates, int[] times,
|
|
|
|
int[] pointerIds, int[] inputCodePoints, int inputSize, int commitPoint,
|
|
|
|
boolean isGesture, int[] prevWordCodePointArray, boolean useFullEditDistance,
|
|
|
|
int[] outputCodePoints, int[] outputScores, int[] outputIndices, int[] outputTypes);
|
2012-10-29 09:06:22 +00:00
|
|
|
private static native float calcNormalizedScoreNative(int[] before, int[] after, int score);
|
|
|
|
private static native int editDistanceNative(int[] before, int[] after);
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2012-08-09 14:23:08 +00:00
|
|
|
// TODO: Move native dict into session
|
2012-10-03 06:19:43 +00:00
|
|
|
private final void loadDictionary(final String path, final long startOffset,
|
|
|
|
final long length) {
|
2013-01-11 16:18:00 +00:00
|
|
|
mNativeDict = openNative(path, startOffset, length);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
2012-07-09 09:25:27 +00:00
|
|
|
@Override
|
|
|
|
public ArrayList<SuggestedWordInfo> getSuggestions(final WordComposer composer,
|
2012-10-03 06:19:43 +00:00
|
|
|
final String prevWord, final ProximityInfo proximityInfo) {
|
2012-08-14 13:49:59 +00:00
|
|
|
return getSuggestionsWithSessionId(composer, prevWord, proximityInfo, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ArrayList<SuggestedWordInfo> getSuggestionsWithSessionId(final WordComposer composer,
|
2012-10-03 06:19:43 +00:00
|
|
|
final String prevWord, final ProximityInfo proximityInfo, int sessionId) {
|
2012-07-10 11:21:13 +00:00
|
|
|
if (!isValidDictionary()) return null;
|
2012-08-14 13:49:59 +00:00
|
|
|
|
2012-08-21 05:05:57 +00:00
|
|
|
Arrays.fill(mInputCodePoints, Constants.NOT_A_CODE);
|
2012-07-10 11:26:34 +00:00
|
|
|
// TODO: toLowerCase in the native code
|
2012-07-11 07:07:08 +00:00
|
|
|
final int[] prevWordCodePointArray = (null == prevWord)
|
2012-10-03 06:19:43 +00:00
|
|
|
? null : StringUtils.toCodePointArray(prevWord);
|
2012-07-10 11:43:19 +00:00
|
|
|
final int composerSize = composer.size();
|
|
|
|
|
2012-07-10 11:50:52 +00:00
|
|
|
final boolean isGesture = composer.isBatchMode();
|
|
|
|
if (composerSize <= 1 || !isGesture) {
|
2012-07-10 11:43:19 +00:00
|
|
|
if (composerSize > MAX_WORD_LENGTH - 1) return null;
|
|
|
|
for (int i = 0; i < composerSize; i++) {
|
2012-08-10 08:16:39 +00:00
|
|
|
mInputCodePoints[i] = composer.getCodeAt(i);
|
2012-07-10 11:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-11 03:56:57 +00:00
|
|
|
final InputPointers ips = composer.getInputPointers();
|
2013-01-11 16:18:00 +00:00
|
|
|
final int inputSize = isGesture ? ips.getPointerSize() : composerSize;
|
2012-07-11 03:56:57 +00:00
|
|
|
// proximityInfo and/or prevWordForBigrams may not be null.
|
2013-01-11 09:59:01 +00:00
|
|
|
final int count = getSuggestionsNative(mNativeDict, proximityInfo.getNativeProximityInfo(),
|
|
|
|
getTraverseSession(sessionId).getSession(), ips.getXCoordinates(),
|
|
|
|
ips.getYCoordinates(), ips.getTimes(), ips.getPointerIds(), mInputCodePoints,
|
2013-01-11 16:18:00 +00:00
|
|
|
inputSize, 0 /* commitPoint */, isGesture, prevWordCodePointArray,
|
2012-10-29 09:06:22 +00:00
|
|
|
mUseFullEditDistance, mOutputCodePoints, mOutputScores, mSpaceIndices,
|
|
|
|
mOutputTypes);
|
2012-08-21 07:34:55 +00:00
|
|
|
final ArrayList<SuggestedWordInfo> suggestions = CollectionUtils.newArrayList();
|
2010-12-06 12:28:24 +00:00
|
|
|
for (int j = 0; j < count; ++j) {
|
2012-07-10 11:50:52 +00:00
|
|
|
if (composerSize > 0 && mOutputScores[j] < 1) break;
|
2010-12-06 12:28:24 +00:00
|
|
|
final int start = j * MAX_WORD_LENGTH;
|
2010-08-20 05:35:02 +00:00
|
|
|
int len = 0;
|
2012-10-29 09:06:22 +00:00
|
|
|
while (len < MAX_WORD_LENGTH && mOutputCodePoints[start + len] != 0) {
|
2010-12-06 12:28:24 +00:00
|
|
|
++len;
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
if (len > 0) {
|
2012-08-10 04:14:45 +00:00
|
|
|
final int score = SuggestedWordInfo.KIND_WHITELIST == mOutputTypes[j]
|
|
|
|
? SuggestedWordInfo.MAX_SCORE : mOutputScores[j];
|
2012-10-29 09:06:22 +00:00
|
|
|
suggestions.add(new SuggestedWordInfo(new String(mOutputCodePoints, start, len),
|
|
|
|
score, mOutputTypes[j], mDictType));
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
}
|
2012-06-12 21:57:40 +00:00
|
|
|
return suggestions;
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
2012-10-03 08:36:45 +00:00
|
|
|
public boolean isValidDictionary() {
|
2011-02-28 22:54:04 +00:00
|
|
|
return mNativeDict != 0;
|
|
|
|
}
|
|
|
|
|
2012-10-03 06:19:43 +00:00
|
|
|
public static float calcNormalizedScore(final String before, final String after,
|
|
|
|
final int score) {
|
2012-10-29 09:06:22 +00:00
|
|
|
return calcNormalizedScoreNative(StringUtils.toCodePointArray(before),
|
|
|
|
StringUtils.toCodePointArray(after), score);
|
2012-01-12 09:44:40 +00:00
|
|
|
}
|
|
|
|
|
2012-10-03 06:19:43 +00:00
|
|
|
public static int editDistance(final String before, final String after) {
|
2012-10-03 08:15:47 +00:00
|
|
|
if (before == null || after == null) {
|
|
|
|
throw new IllegalArgumentException();
|
|
|
|
}
|
2012-10-29 09:06:22 +00:00
|
|
|
return editDistanceNative(StringUtils.toCodePointArray(before),
|
|
|
|
StringUtils.toCodePointArray(after));
|
2012-01-12 09:44:40 +00:00
|
|
|
}
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
@Override
|
2012-10-03 06:19:43 +00:00
|
|
|
public boolean isValidWord(final String word) {
|
2012-05-29 10:07:22 +00:00
|
|
|
return getFrequency(word) >= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-10-03 06:19:43 +00:00
|
|
|
public int getFrequency(final String word) {
|
2012-05-29 10:07:22 +00:00
|
|
|
if (word == null) return -1;
|
2012-10-03 06:19:43 +00:00
|
|
|
int[] codePoints = StringUtils.toCodePointArray(word);
|
2012-08-09 15:40:34 +00:00
|
|
|
return getFrequencyNative(mNativeDict, codePoints);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2009-06-04 19:20:45 +00:00
|
|
|
|
2012-04-27 06:50:21 +00:00
|
|
|
// TODO: Add a batch process version (isValidBigramMultiple?) to avoid excessive numbers of jni
|
|
|
|
// calls when checking for changes in an entire dictionary.
|
2012-10-03 06:19:43 +00:00
|
|
|
public boolean isValidBigram(final String word1, final String word2) {
|
2012-04-27 06:50:21 +00:00
|
|
|
if (TextUtils.isEmpty(word1) || TextUtils.isEmpty(word2)) return false;
|
2012-10-29 09:06:22 +00:00
|
|
|
final int[] codePoints1 = StringUtils.toCodePointArray(word1);
|
|
|
|
final int[] codePoints2 = StringUtils.toCodePointArray(word2);
|
|
|
|
return isValidBigramNative(mNativeDict, codePoints1, codePoints2);
|
2012-04-27 06:50:21 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 20:48:35 +00:00
|
|
|
@Override
|
2012-08-20 05:37:16 +00:00
|
|
|
public void close() {
|
|
|
|
synchronized (mDicTraverseSessions) {
|
|
|
|
final int sessionsSize = mDicTraverseSessions.size();
|
|
|
|
for (int index = 0; index < sessionsSize; ++index) {
|
|
|
|
final DicTraverseSession traverseSession = mDicTraverseSessions.valueAt(index);
|
|
|
|
if (traverseSession != null) {
|
|
|
|
traverseSession.close();
|
|
|
|
}
|
2012-08-14 13:49:59 +00:00
|
|
|
}
|
|
|
|
}
|
2011-01-17 06:13:45 +00:00
|
|
|
closeInternal();
|
|
|
|
}
|
|
|
|
|
2012-08-20 05:37:16 +00:00
|
|
|
private synchronized void closeInternal() {
|
2009-03-13 22:11:42 +00:00
|
|
|
if (mNativeDict != 0) {
|
|
|
|
closeNative(mNativeDict);
|
|
|
|
mNativeDict = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void finalize() throws Throwable {
|
2011-01-17 06:13:45 +00:00
|
|
|
try {
|
|
|
|
closeInternal();
|
|
|
|
} finally {
|
|
|
|
super.finalize();
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
}
|