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
|
|
|
*
|
2013-01-21 12:52:57 +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
|
|
|
*
|
2013-01-21 12:52:57 +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
|
2013-01-21 12:52:57 +00:00
|
|
|
* 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.
|
2009-03-13 22:11:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.latin;
|
|
|
|
|
2012-04-27 06:50:21 +00:00
|
|
|
import android.text.TextUtils;
|
2014-02-21 06:09:37 +00:00
|
|
|
import android.util.Log;
|
2012-08-14 13:49:59 +00:00
|
|
|
import android.util.SparseArray;
|
2010-11-29 08:57:48 +00:00
|
|
|
|
2013-09-17 09:07:16 +00:00
|
|
|
import com.android.inputmethod.annotations.UsedForTesting;
|
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;
|
2014-10-23 09:37:32 +00:00
|
|
|
import com.android.inputmethod.latin.common.Constants;
|
2014-02-04 12:39:44 +00:00
|
|
|
import com.android.inputmethod.latin.makedict.DictionaryHeader;
|
|
|
|
import com.android.inputmethod.latin.makedict.FormatSpec;
|
2014-03-05 08:42:36 +00:00
|
|
|
import com.android.inputmethod.latin.makedict.FormatSpec.DictionaryOptions;
|
2014-02-04 12:39:44 +00:00
|
|
|
import com.android.inputmethod.latin.makedict.UnsupportedFormatException;
|
2014-02-06 06:13:33 +00:00
|
|
|
import com.android.inputmethod.latin.makedict.WordProperty;
|
2014-07-08 07:36:06 +00:00
|
|
|
import com.android.inputmethod.latin.settings.SettingsValuesForSuggestion;
|
2014-03-27 08:46:35 +00:00
|
|
|
import com.android.inputmethod.latin.utils.BinaryDictionaryUtils;
|
|
|
|
import com.android.inputmethod.latin.utils.FileUtils;
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.utils.JniUtils;
|
|
|
|
import com.android.inputmethod.latin.utils.StringUtils;
|
2014-10-23 05:32:45 +00:00
|
|
|
import com.android.inputmethod.latin.utils.WordInputEventForPersonalization;
|
2011-10-04 01:54:23 +00:00
|
|
|
|
2013-09-24 13:57:15 +00:00
|
|
|
import java.io.File;
|
2012-06-12 18:31:46 +00:00
|
|
|
import java.util.ArrayList;
|
2009-03-13 22:11:42 +00:00
|
|
|
import java.util.Arrays;
|
2014-02-04 12:39:44 +00:00
|
|
|
import java.util.HashMap;
|
2012-04-04 12:39:23 +00:00
|
|
|
import java.util.Locale;
|
2014-04-22 20:18:34 +00:00
|
|
|
import java.util.Map;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2014-10-06 06:50:38 +00:00
|
|
|
import javax.annotation.Nonnull;
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
/**
|
|
|
|
* Implements a static, compacted, binary dictionary of standard words.
|
|
|
|
*/
|
2013-09-25 09:32:40 +00:00
|
|
|
// TODO: All methods which should be locked need to have a suffix "Locked".
|
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
|
|
|
|
2013-10-01 08:30:40 +00:00
|
|
|
// The cutoff returned by native for auto-commit confidence.
|
|
|
|
// Must be equal to CONFIDENCE_TO_AUTO_COMMIT in native/jni/src/defines.h
|
|
|
|
private static final int CONFIDENCE_TO_AUTO_COMMIT = 1000000;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2013-09-27 14:12:12 +00:00
|
|
|
@UsedForTesting
|
|
|
|
public static final String UNIGRAM_COUNT_QUERY = "UNIGRAM_COUNT";
|
|
|
|
@UsedForTesting
|
|
|
|
public static final String BIGRAM_COUNT_QUERY = "BIGRAM_COUNT";
|
2013-10-07 08:05:24 +00:00
|
|
|
@UsedForTesting
|
|
|
|
public static final String MAX_UNIGRAM_COUNT_QUERY = "MAX_UNIGRAM_COUNT";
|
|
|
|
@UsedForTesting
|
|
|
|
public static final String MAX_BIGRAM_COUNT_QUERY = "MAX_BIGRAM_COUNT";
|
2013-09-27 14:12:12 +00:00
|
|
|
|
2013-12-13 08:09:16 +00:00
|
|
|
public static final int NOT_A_VALID_TIMESTAMP = -1;
|
|
|
|
|
2014-01-31 02:06:42 +00:00
|
|
|
// Format to get unigram flags from native side via getWordPropertyNative().
|
2014-06-24 03:37:07 +00:00
|
|
|
private static final int FORMAT_WORD_PROPERTY_OUTPUT_FLAG_COUNT = 5;
|
2014-01-31 02:06:42 +00:00
|
|
|
private static final int FORMAT_WORD_PROPERTY_IS_NOT_A_WORD_INDEX = 0;
|
2014-10-14 03:13:11 +00:00
|
|
|
private static final int FORMAT_WORD_PROPERTY_IS_POSSIBLY_OFFENSIVE_INDEX = 1;
|
2014-10-09 06:26:10 +00:00
|
|
|
private static final int FORMAT_WORD_PROPERTY_HAS_NGRAMS_INDEX = 2;
|
2014-01-31 02:06:42 +00:00
|
|
|
private static final int FORMAT_WORD_PROPERTY_HAS_SHORTCUTS_INDEX = 3;
|
2014-06-24 03:37:07 +00:00
|
|
|
private static final int FORMAT_WORD_PROPERTY_IS_BEGINNING_OF_SENTENCE_INDEX = 4;
|
2013-12-13 08:09:16 +00:00
|
|
|
|
2014-01-31 11:32:44 +00:00
|
|
|
// Format to get probability and historical info from native side via getWordPropertyNative().
|
|
|
|
public static final int FORMAT_WORD_PROPERTY_OUTPUT_PROBABILITY_INFO_COUNT = 4;
|
|
|
|
public static final int FORMAT_WORD_PROPERTY_PROBABILITY_INDEX = 0;
|
|
|
|
public static final int FORMAT_WORD_PROPERTY_TIMESTAMP_INDEX = 1;
|
|
|
|
public static final int FORMAT_WORD_PROPERTY_LEVEL_INDEX = 2;
|
|
|
|
public static final int FORMAT_WORD_PROPERTY_COUNT_INDEX = 3;
|
2013-12-13 08:09:16 +00:00
|
|
|
|
2014-03-27 08:46:35 +00:00
|
|
|
public static final String DICT_FILE_NAME_SUFFIX_FOR_MIGRATION = ".migrate";
|
2014-07-14 07:25:55 +00:00
|
|
|
public static final String DIR_NAME_SUFFIX_FOR_RECORD_MIGRATION = ".migrating";
|
2014-03-27 08:46:35 +00:00
|
|
|
|
2011-10-31 11:44:01 +00:00
|
|
|
private long mNativeDict;
|
2013-09-12 09:47:56 +00:00
|
|
|
private final long mDictSize;
|
2013-09-17 09:07:16 +00:00
|
|
|
private final String mDictFilePath;
|
2014-06-17 08:50:32 +00:00
|
|
|
private final boolean mUseFullEditDistance;
|
2014-02-21 06:09:37 +00:00
|
|
|
private final boolean mIsUpdatable;
|
2014-04-03 09:08:23 +00:00
|
|
|
private boolean mHasUpdated;
|
|
|
|
|
2014-05-23 11:18:17 +00:00
|
|
|
private final SparseArray<DicTraverseSession> mDicTraverseSessions = new SparseArray<>();
|
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) {
|
2014-05-16 08:57:03 +00:00
|
|
|
traverseSession = new DicTraverseSession(mLocale, mNativeDict, mDictSize);
|
|
|
|
mDicTraverseSessions.put(traverseSessionId, traverseSession);
|
2012-08-14 13:49:59 +00:00
|
|
|
}
|
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
|
|
|
|
|
|
|
/**
|
2014-04-22 20:18:34 +00:00
|
|
|
* Constructs binary dictionary using existing dictionary file.
|
2011-04-26 12:49:09 +00:00
|
|
|
* @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
|
2013-06-25 08:39:06 +00:00
|
|
|
* @param isUpdatable whether to open the dictionary file in writable mode.
|
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,
|
2013-06-25 08:39:06 +00:00
|
|
|
final boolean useFullEditDistance, final Locale locale, final String dictType,
|
|
|
|
final boolean isUpdatable) {
|
2014-09-01 11:08:19 +00:00
|
|
|
super(dictType, locale);
|
2013-09-12 09:47:56 +00:00
|
|
|
mDictSize = length;
|
2013-09-17 09:07:16 +00:00
|
|
|
mDictFilePath = filename;
|
2014-02-21 06:09:37 +00:00
|
|
|
mIsUpdatable = isUpdatable;
|
2014-04-03 09:08:23 +00:00
|
|
|
mHasUpdated = false;
|
2014-06-17 08:50:32 +00:00
|
|
|
mUseFullEditDistance = useFullEditDistance;
|
2013-06-25 08:39:06 +00:00
|
|
|
loadDictionary(filename, offset, length, isUpdatable);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
2014-04-22 20:18:34 +00:00
|
|
|
/**
|
|
|
|
* Constructs binary dictionary on memory.
|
|
|
|
* @param filename the name of the file used to flush.
|
|
|
|
* @param useFullEditDistance whether to use the full edit distance in suggestions
|
|
|
|
* @param dictType the dictionary type, as a human-readable string
|
|
|
|
* @param formatVersion the format version of the dictionary
|
|
|
|
* @param attributeMap the attributes of the dictionary
|
|
|
|
*/
|
|
|
|
public BinaryDictionary(final String filename, final boolean useFullEditDistance,
|
|
|
|
final Locale locale, final String dictType, final long formatVersion,
|
|
|
|
final Map<String, String> attributeMap) {
|
2014-09-01 11:08:19 +00:00
|
|
|
super(dictType, locale);
|
2014-04-22 20:18:34 +00:00
|
|
|
mDictSize = 0;
|
|
|
|
mDictFilePath = filename;
|
|
|
|
// On memory dictionary is always updatable.
|
|
|
|
mIsUpdatable = true;
|
|
|
|
mHasUpdated = false;
|
2014-06-17 08:50:32 +00:00
|
|
|
mUseFullEditDistance = useFullEditDistance;
|
2014-04-22 20:18:34 +00:00
|
|
|
final String[] keyArray = new String[attributeMap.size()];
|
|
|
|
final String[] valueArray = new String[attributeMap.size()];
|
|
|
|
int index = 0;
|
|
|
|
for (final String key : attributeMap.keySet()) {
|
|
|
|
keyArray[index] = key;
|
|
|
|
valueArray[index] = attributeMap.get(key);
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
mNativeDict = createOnMemoryNative(formatVersion, locale.toString(), keyArray, valueArray);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-06-25 05:25:01 +00:00
|
|
|
private static native long openNative(String sourceDir, long dictOffset, long dictSize,
|
|
|
|
boolean isUpdatable);
|
2014-04-21 23:22:00 +00:00
|
|
|
private static native long createOnMemoryNative(long formatVersion,
|
|
|
|
String locale, String[] attributeKeyStringArray, String[] attributeValueStringArray);
|
2014-02-04 12:39:44 +00:00
|
|
|
private static native void getHeaderInfoNative(long dict, int[] outHeaderSize,
|
|
|
|
int[] outFormatVersion, ArrayList<int[]> outAttributeKeys,
|
|
|
|
ArrayList<int[]> outAttributeValues);
|
2014-05-27 08:28:29 +00:00
|
|
|
private static native boolean flushNative(long dict, String filePath);
|
2013-09-30 04:57:54 +00:00
|
|
|
private static native boolean needsToRunGCNative(long dict, boolean mindsBlockByGC);
|
2014-05-27 08:28:29 +00:00
|
|
|
private static native boolean flushWithGCNative(long dict, String filePath);
|
2013-01-11 16:18:00 +00:00
|
|
|
private static native void closeNative(long dict);
|
2013-12-13 08:09:16 +00:00
|
|
|
private static native int getFormatVersionNative(long dict);
|
2013-03-18 04:08:31 +00:00
|
|
|
private static native int getProbabilityNative(long dict, int[] word);
|
2014-06-05 09:16:11 +00:00
|
|
|
private static native int getMaxProbabilityOfExactMatchesNative(long dict, int[] word);
|
2014-06-26 09:47:25 +00:00
|
|
|
private static native int getNgramProbabilityNative(long dict, int[][] prevWordCodePointArrays,
|
|
|
|
boolean[] isBeginningOfSentenceArray, int[] word);
|
2014-01-31 02:06:42 +00:00
|
|
|
private static native void getWordPropertyNative(long dict, int[] word,
|
2014-06-24 03:37:07 +00:00
|
|
|
boolean isBeginningOfSentence, int[] outCodePoints, boolean[] outFlags,
|
2014-10-09 06:26:10 +00:00
|
|
|
int[] outProbabilityInfo, ArrayList<int[][]> outNgramPrevWordsArray,
|
|
|
|
ArrayList<boolean[]> outNgramPrevWordIsBeginningOfSentenceArray,
|
|
|
|
ArrayList<int[]> outNgramTargets, ArrayList<int[]> outNgramProbabilityInfo,
|
|
|
|
ArrayList<int[]> outShortcutTargets, ArrayList<Integer> outShortcutProbabilities);
|
2014-06-24 03:37:07 +00:00
|
|
|
private static native int getNextWordNative(long dict, int token, int[] outCodePoints,
|
|
|
|
boolean[] outIsBeginningOfSentence);
|
2014-03-07 10:36:19 +00:00
|
|
|
private static native void getSuggestionsNative(long dict, long proximityInfo,
|
2013-01-11 16:18:00 +00:00
|
|
|
long traverseSession, int[] xCoordinates, int[] yCoordinates, int[] times,
|
2014-03-20 09:47:45 +00:00
|
|
|
int[] pointerIds, int[] inputCodePoints, int inputSize, int[] suggestOptions,
|
2014-06-26 09:47:25 +00:00
|
|
|
int[][] prevWordCodePointArrays, boolean[] isBeginningOfSentenceArray,
|
2014-09-16 11:52:32 +00:00
|
|
|
int prevWordCount, int[] outputSuggestionCount, int[] outputCodePoints,
|
|
|
|
int[] outputScores, int[] outputIndices, int[] outputTypes,
|
2014-09-12 13:26:09 +00:00
|
|
|
int[] outputAutoCommitFirstWordConfidence,
|
|
|
|
float[] inOutWeightOfLangModelVsSpatialModel);
|
2014-06-24 09:13:24 +00:00
|
|
|
private static native boolean addUnigramEntryNative(long dict, int[] word, int probability,
|
2014-05-23 10:58:58 +00:00
|
|
|
int[] shortcutTarget, int shortcutProbability, boolean isBeginningOfSentence,
|
2014-10-14 03:13:11 +00:00
|
|
|
boolean isNotAWord, boolean isPossiblyOffensive, int timestamp);
|
2014-06-24 09:13:24 +00:00
|
|
|
private static native boolean removeUnigramEntryNative(long dict, int[] word);
|
2014-06-26 09:47:25 +00:00
|
|
|
private static native boolean addNgramEntryNative(long dict,
|
|
|
|
int[][] prevWordCodePointArrays, boolean[] isBeginningOfSentenceArray,
|
|
|
|
int[] word, int probability, int timestamp);
|
|
|
|
private static native boolean removeNgramEntryNative(long dict,
|
|
|
|
int[][] prevWordCodePointArrays, boolean[] isBeginningOfSentenceArray, int[] word);
|
2014-10-09 08:34:29 +00:00
|
|
|
private static native boolean updateEntriesForWordWithNgramContextNative(long dict,
|
2014-10-01 08:40:20 +00:00
|
|
|
int[][] prevWordCodePointArrays, boolean[] isBeginningOfSentenceArray,
|
|
|
|
int[] word, boolean isValidWord, int count, int timestamp);
|
2014-10-23 05:32:45 +00:00
|
|
|
private static native int updateEntriesForInputEventsNative(long dict,
|
|
|
|
WordInputEventForPersonalization[] inputEvents, int startIndex);
|
2013-09-27 14:12:12 +00:00
|
|
|
private static native String getPropertyNative(long dict, String query);
|
2014-02-21 06:09:37 +00:00
|
|
|
private static native boolean isCorruptedNative(long dict);
|
2014-05-08 03:31:04 +00:00
|
|
|
private static native boolean migrateNative(long dict, String dictFilePath,
|
|
|
|
long newFormatVersion);
|
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,
|
2013-06-25 08:39:06 +00:00
|
|
|
final long length, final boolean isUpdatable) {
|
2014-04-03 09:08:23 +00:00
|
|
|
mHasUpdated = false;
|
2013-06-25 08:39:06 +00:00
|
|
|
mNativeDict = openNative(path, startOffset, length, isUpdatable);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
2014-02-21 06:09:37 +00:00
|
|
|
// TODO: Check isCorrupted() for main dictionaries.
|
|
|
|
public boolean isCorrupted() {
|
|
|
|
if (!isValidDictionary()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!isCorruptedNative(mNativeDict)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// TODO: Record the corruption.
|
|
|
|
Log.e(TAG, "BinaryDictionary (" + mDictFilePath + ") is corrupted.");
|
|
|
|
Log.e(TAG, "locale: " + mLocale);
|
|
|
|
Log.e(TAG, "dict size: " + mDictSize);
|
|
|
|
Log.e(TAG, "updatable: " + mIsUpdatable);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-04 12:39:44 +00:00
|
|
|
public DictionaryHeader getHeader() throws UnsupportedFormatException {
|
|
|
|
if (mNativeDict == 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
final int[] outHeaderSize = new int[1];
|
|
|
|
final int[] outFormatVersion = new int[1];
|
2014-05-23 11:18:17 +00:00
|
|
|
final ArrayList<int[]> outAttributeKeys = new ArrayList<>();
|
|
|
|
final ArrayList<int[]> outAttributeValues = new ArrayList<>();
|
2014-02-04 12:39:44 +00:00
|
|
|
getHeaderInfoNative(mNativeDict, outHeaderSize, outFormatVersion, outAttributeKeys,
|
|
|
|
outAttributeValues);
|
2014-05-23 11:18:17 +00:00
|
|
|
final HashMap<String, String> attributes = new HashMap<>();
|
2014-02-04 12:39:44 +00:00
|
|
|
for (int i = 0; i < outAttributeKeys.size(); i++) {
|
|
|
|
final String attributeKey = StringUtils.getStringFromNullTerminatedCodePointArray(
|
|
|
|
outAttributeKeys.get(i));
|
|
|
|
final String attributeValue = StringUtils.getStringFromNullTerminatedCodePointArray(
|
|
|
|
outAttributeValues.get(i));
|
|
|
|
attributes.put(attributeKey, attributeValue);
|
|
|
|
}
|
2014-02-06 08:55:45 +00:00
|
|
|
final boolean hasHistoricalInfo = DictionaryHeader.ATTRIBUTE_VALUE_TRUE.equals(
|
|
|
|
attributes.get(DictionaryHeader.HAS_HISTORICAL_INFO_KEY));
|
2014-02-04 12:39:44 +00:00
|
|
|
return new DictionaryHeader(outHeaderSize[0], new DictionaryOptions(attributes),
|
|
|
|
new FormatSpec.FormatOptions(outFormatVersion[0], hasHistoricalInfo));
|
|
|
|
}
|
|
|
|
|
2012-07-09 09:25:27 +00:00
|
|
|
@Override
|
|
|
|
public ArrayList<SuggestedWordInfo> getSuggestions(final WordComposer composer,
|
2014-09-29 01:52:18 +00:00
|
|
|
final NgramContext ngramContext, final ProximityInfo proximityInfo,
|
2014-07-08 07:36:06 +00:00
|
|
|
final SettingsValuesForSuggestion settingsValuesForSuggestion,
|
2014-09-12 13:26:09 +00:00
|
|
|
final int sessionId, final float weightForLocale,
|
|
|
|
final float[] inOutWeightOfLangModelVsSpatialModel) {
|
2014-04-07 14:41:29 +00:00
|
|
|
if (!isValidDictionary()) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-06-17 08:50:32 +00:00
|
|
|
final DicTraverseSession session = getTraverseSession(sessionId);
|
|
|
|
Arrays.fill(session.mInputCodePoints, Constants.NOT_A_CODE);
|
2014-09-29 01:52:18 +00:00
|
|
|
ngramContext.outputToArray(session.mPrevWordCodePointArrays,
|
2014-06-25 05:14:37 +00:00
|
|
|
session.mIsBeginningOfSentenceArray);
|
2014-04-08 04:54:34 +00:00
|
|
|
final InputPointers inputPointers = composer.getInputPointers();
|
2012-07-10 11:50:52 +00:00
|
|
|
final boolean isGesture = composer.isBatchMode();
|
2014-04-08 04:54:34 +00:00
|
|
|
final int inputSize;
|
|
|
|
if (!isGesture) {
|
2014-04-07 14:41:29 +00:00
|
|
|
inputSize = composer.copyCodePointsExceptTrailingSingleQuotesAndReturnCodePointCount(
|
2014-06-17 08:50:32 +00:00
|
|
|
session.mInputCodePoints);
|
2014-04-07 14:41:29 +00:00
|
|
|
if (inputSize < 0) {
|
|
|
|
return null;
|
2012-07-10 11:43:19 +00:00
|
|
|
}
|
2014-04-08 04:54:34 +00:00
|
|
|
} else {
|
|
|
|
inputSize = inputPointers.getPointerSize();
|
2012-07-10 11:43:19 +00:00
|
|
|
}
|
2014-06-17 08:50:32 +00:00
|
|
|
session.mNativeSuggestOptions.setUseFullEditDistance(mUseFullEditDistance);
|
|
|
|
session.mNativeSuggestOptions.setIsGesture(isGesture);
|
2014-07-08 07:36:06 +00:00
|
|
|
session.mNativeSuggestOptions.setBlockOffensiveWords(
|
|
|
|
settingsValuesForSuggestion.mBlockPotentiallyOffensive);
|
|
|
|
session.mNativeSuggestOptions.setSpaceAwareGestureEnabled(
|
|
|
|
settingsValuesForSuggestion.mSpaceAwareGestureEnabled);
|
|
|
|
session.mNativeSuggestOptions.setAdditionalFeaturesOptions(
|
|
|
|
settingsValuesForSuggestion.mAdditionalFeaturesSettingValues);
|
2014-10-10 06:50:44 +00:00
|
|
|
session.mNativeSuggestOptions.setWeightForLocale(weightForLocale);
|
2014-09-12 13:26:09 +00:00
|
|
|
if (inOutWeightOfLangModelVsSpatialModel != null) {
|
|
|
|
session.mInputOutputWeightOfLangModelVsSpatialModel[0] =
|
|
|
|
inOutWeightOfLangModelVsSpatialModel[0];
|
2014-04-02 16:01:51 +00:00
|
|
|
} else {
|
2014-09-12 13:26:09 +00:00
|
|
|
session.mInputOutputWeightOfLangModelVsSpatialModel[0] =
|
|
|
|
Dictionary.NOT_A_WEIGHT_OF_LANG_MODEL_VS_SPATIAL_MODEL;
|
2014-04-02 16:01:51 +00:00
|
|
|
}
|
2014-06-25 05:14:37 +00:00
|
|
|
// TOOD: Pass multiple previous words information for n-gram.
|
2014-03-07 10:36:19 +00:00
|
|
|
getSuggestionsNative(mNativeDict, proximityInfo.getNativeProximityInfo(),
|
2014-04-08 04:54:34 +00:00
|
|
|
getTraverseSession(sessionId).getSession(), inputPointers.getXCoordinates(),
|
|
|
|
inputPointers.getYCoordinates(), inputPointers.getTimes(),
|
2014-06-17 08:50:32 +00:00
|
|
|
inputPointers.getPointerIds(), session.mInputCodePoints, inputSize,
|
2014-06-26 09:47:25 +00:00
|
|
|
session.mNativeSuggestOptions.getOptions(), session.mPrevWordCodePointArrays,
|
2014-09-29 01:52:18 +00:00
|
|
|
session.mIsBeginningOfSentenceArray, ngramContext.getPrevWordCount(),
|
2014-09-16 11:52:32 +00:00
|
|
|
session.mOutputSuggestionCount, session.mOutputCodePoints, session.mOutputScores,
|
|
|
|
session.mSpaceIndices, session.mOutputTypes,
|
2014-09-12 13:26:09 +00:00
|
|
|
session.mOutputAutoCommitFirstWordConfidence,
|
|
|
|
session.mInputOutputWeightOfLangModelVsSpatialModel);
|
|
|
|
if (inOutWeightOfLangModelVsSpatialModel != null) {
|
|
|
|
inOutWeightOfLangModelVsSpatialModel[0] =
|
|
|
|
session.mInputOutputWeightOfLangModelVsSpatialModel[0];
|
2014-04-02 16:01:51 +00:00
|
|
|
}
|
2014-06-17 08:50:32 +00:00
|
|
|
final int count = session.mOutputSuggestionCount[0];
|
2014-05-23 11:18:17 +00:00
|
|
|
final ArrayList<SuggestedWordInfo> suggestions = new ArrayList<>();
|
2010-12-06 12:28:24 +00:00
|
|
|
for (int j = 0; j < count; ++j) {
|
2014-06-17 08:50:32 +00:00
|
|
|
final int start = j * Constants.DICTIONARY_MAX_WORD_LENGTH;
|
2010-08-20 05:35:02 +00:00
|
|
|
int len = 0;
|
2014-06-17 08:50:32 +00:00
|
|
|
while (len < Constants.DICTIONARY_MAX_WORD_LENGTH
|
|
|
|
&& session.mOutputCodePoints[start + len] != 0) {
|
2010-12-06 12:28:24 +00:00
|
|
|
++len;
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
if (len > 0) {
|
2014-06-17 08:50:32 +00:00
|
|
|
suggestions.add(new SuggestedWordInfo(
|
|
|
|
new String(session.mOutputCodePoints, start, len),
|
2014-09-12 13:26:09 +00:00
|
|
|
(int)(session.mOutputScores[j] * weightForLocale), session.mOutputTypes[j],
|
|
|
|
this /* sourceDict */,
|
2014-06-17 08:50:32 +00:00
|
|
|
session.mSpaceIndices[j] /* indexOfTouchPointOfSecondWord */,
|
|
|
|
session.mOutputAutoCommitFirstWordConfidence[0]));
|
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;
|
|
|
|
}
|
|
|
|
|
2013-12-13 08:09:16 +00:00
|
|
|
public int getFormatVersion() {
|
|
|
|
return getFormatVersionNative(mNativeDict);
|
|
|
|
}
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
@Override
|
2014-06-09 02:04:28 +00:00
|
|
|
public boolean isInDictionary(final String word) {
|
2013-09-18 02:18:28 +00:00
|
|
|
return getFrequency(word) != NOT_A_PROBABILITY;
|
2012-05-29 10:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-10-03 06:19:43 +00:00
|
|
|
public int getFrequency(final String word) {
|
2014-10-22 05:04:07 +00:00
|
|
|
if (TextUtils.isEmpty(word)) {
|
|
|
|
return NOT_A_PROBABILITY;
|
|
|
|
}
|
|
|
|
final int[] codePoints = StringUtils.toCodePointArray(word);
|
2013-03-18 04:08:31 +00:00
|
|
|
return getProbabilityNative(mNativeDict, codePoints);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2009-06-04 19:20:45 +00:00
|
|
|
|
2014-06-06 08:37:46 +00:00
|
|
|
@Override
|
2014-06-05 09:16:11 +00:00
|
|
|
public int getMaxFrequencyOfExactMatches(final String word) {
|
2014-10-22 05:04:07 +00:00
|
|
|
if (TextUtils.isEmpty(word)) {
|
|
|
|
return NOT_A_PROBABILITY;
|
|
|
|
}
|
|
|
|
final int[] codePoints = StringUtils.toCodePointArray(word);
|
2014-06-05 09:16:11 +00:00
|
|
|
return getMaxProbabilityOfExactMatchesNative(mNativeDict, codePoints);
|
|
|
|
}
|
|
|
|
|
2014-05-09 05:44:44 +00:00
|
|
|
@UsedForTesting
|
2014-09-29 01:52:18 +00:00
|
|
|
public boolean isValidNgram(final NgramContext ngramContext, final String word) {
|
|
|
|
return getNgramProbability(ngramContext, word) != NOT_A_PROBABILITY;
|
2013-09-18 02:18:28 +00:00
|
|
|
}
|
|
|
|
|
2014-09-29 01:52:18 +00:00
|
|
|
public int getNgramProbability(final NgramContext ngramContext, final String word) {
|
|
|
|
if (!ngramContext.isValid() || TextUtils.isEmpty(word)) {
|
2014-05-21 02:15:38 +00:00
|
|
|
return NOT_A_PROBABILITY;
|
|
|
|
}
|
2014-09-29 01:52:18 +00:00
|
|
|
final int[][] prevWordCodePointArrays = new int[ngramContext.getPrevWordCount()][];
|
|
|
|
final boolean[] isBeginningOfSentenceArray = new boolean[ngramContext.getPrevWordCount()];
|
|
|
|
ngramContext.outputToArray(prevWordCodePointArrays, isBeginningOfSentenceArray);
|
2014-06-25 05:14:37 +00:00
|
|
|
final int[] wordCodePoints = StringUtils.toCodePointArray(word);
|
2014-06-26 09:47:25 +00:00
|
|
|
return getNgramProbabilityNative(mNativeDict, prevWordCodePointArrays,
|
|
|
|
isBeginningOfSentenceArray, wordCodePoints);
|
2013-07-04 12:17:49 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 03:37:07 +00:00
|
|
|
public WordProperty getWordProperty(final String word, final boolean isBeginningOfSentence) {
|
|
|
|
if (word == null) {
|
2013-12-13 08:09:16 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
final int[] codePoints = StringUtils.toCodePointArray(word);
|
2014-06-17 08:50:32 +00:00
|
|
|
final int[] outCodePoints = new int[Constants.DICTIONARY_MAX_WORD_LENGTH];
|
2014-01-31 02:06:42 +00:00
|
|
|
final boolean[] outFlags = new boolean[FORMAT_WORD_PROPERTY_OUTPUT_FLAG_COUNT];
|
2014-01-31 11:32:44 +00:00
|
|
|
final int[] outProbabilityInfo =
|
|
|
|
new int[FORMAT_WORD_PROPERTY_OUTPUT_PROBABILITY_INFO_COUNT];
|
2014-10-09 06:26:10 +00:00
|
|
|
final ArrayList<int[][]> outNgramPrevWordsArray = new ArrayList<>();
|
|
|
|
final ArrayList<boolean[]> outNgramPrevWordIsBeginningOfSentenceArray =
|
|
|
|
new ArrayList<>();
|
|
|
|
final ArrayList<int[]> outNgramTargets = new ArrayList<>();
|
|
|
|
final ArrayList<int[]> outNgramProbabilityInfo = new ArrayList<>();
|
2014-05-23 11:18:17 +00:00
|
|
|
final ArrayList<int[]> outShortcutTargets = new ArrayList<>();
|
|
|
|
final ArrayList<Integer> outShortcutProbabilities = new ArrayList<>();
|
2014-06-24 03:37:07 +00:00
|
|
|
getWordPropertyNative(mNativeDict, codePoints, isBeginningOfSentence, outCodePoints,
|
2014-10-09 06:26:10 +00:00
|
|
|
outFlags, outProbabilityInfo, outNgramPrevWordsArray,
|
|
|
|
outNgramPrevWordIsBeginningOfSentenceArray, outNgramTargets,
|
|
|
|
outNgramProbabilityInfo, outShortcutTargets, outShortcutProbabilities);
|
2014-01-31 02:06:42 +00:00
|
|
|
return new WordProperty(codePoints,
|
|
|
|
outFlags[FORMAT_WORD_PROPERTY_IS_NOT_A_WORD_INDEX],
|
2014-10-14 03:13:11 +00:00
|
|
|
outFlags[FORMAT_WORD_PROPERTY_IS_POSSIBLY_OFFENSIVE_INDEX],
|
2014-10-09 06:26:10 +00:00
|
|
|
outFlags[FORMAT_WORD_PROPERTY_HAS_NGRAMS_INDEX],
|
2014-06-24 03:37:07 +00:00
|
|
|
outFlags[FORMAT_WORD_PROPERTY_HAS_SHORTCUTS_INDEX],
|
|
|
|
outFlags[FORMAT_WORD_PROPERTY_IS_BEGINNING_OF_SENTENCE_INDEX], outProbabilityInfo,
|
2014-10-09 06:26:10 +00:00
|
|
|
outNgramPrevWordsArray, outNgramPrevWordIsBeginningOfSentenceArray,
|
|
|
|
outNgramTargets, outNgramProbabilityInfo, outShortcutTargets,
|
2014-01-31 11:32:44 +00:00
|
|
|
outShortcutProbabilities);
|
2013-12-13 08:09:16 +00:00
|
|
|
}
|
|
|
|
|
2014-02-03 05:51:58 +00:00
|
|
|
public static class GetNextWordPropertyResult {
|
|
|
|
public WordProperty mWordProperty;
|
|
|
|
public int mNextToken;
|
|
|
|
|
2014-05-12 16:32:27 +00:00
|
|
|
public GetNextWordPropertyResult(final WordProperty wordProperty, final int nextToken) {
|
|
|
|
mWordProperty = wordProperty;
|
2014-02-03 05:51:58 +00:00
|
|
|
mNextToken = nextToken;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to iterate all words in the dictionary for makedict.
|
|
|
|
* If token is 0, this method newly starts iterating the dictionary.
|
|
|
|
*/
|
|
|
|
public GetNextWordPropertyResult getNextWordProperty(final int token) {
|
2014-06-17 08:50:32 +00:00
|
|
|
final int[] codePoints = new int[Constants.DICTIONARY_MAX_WORD_LENGTH];
|
2014-06-24 03:37:07 +00:00
|
|
|
final boolean[] isBeginningOfSentence = new boolean[1];
|
|
|
|
final int nextToken = getNextWordNative(mNativeDict, token, codePoints,
|
|
|
|
isBeginningOfSentence);
|
2014-02-04 12:42:06 +00:00
|
|
|
final String word = StringUtils.getStringFromNullTerminatedCodePointArray(codePoints);
|
2014-06-24 03:37:07 +00:00
|
|
|
return new GetNextWordPropertyResult(
|
|
|
|
getWordProperty(word, isBeginningOfSentence[0]), nextToken);
|
2014-02-03 05:51:58 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 08:09:16 +00:00
|
|
|
// Add a unigram entry to binary dictionary with unigram attributes in native code.
|
2014-05-27 08:28:29 +00:00
|
|
|
public boolean addUnigramEntry(final String word, final int probability,
|
2014-05-23 10:58:58 +00:00
|
|
|
final String shortcutTarget, final int shortcutProbability,
|
|
|
|
final boolean isBeginningOfSentence, final boolean isNotAWord,
|
2014-10-14 03:13:11 +00:00
|
|
|
final boolean isPossiblyOffensive, final int timestamp) {
|
2014-05-23 10:58:58 +00:00
|
|
|
if (word == null || (word.isEmpty() && !isBeginningOfSentence)) {
|
2014-05-27 08:28:29 +00:00
|
|
|
return false;
|
2013-07-04 12:17:49 +00:00
|
|
|
}
|
|
|
|
final int[] codePoints = StringUtils.toCodePointArray(word);
|
2013-12-13 08:09:16 +00:00
|
|
|
final int[] shortcutTargetCodePoints = (shortcutTarget != null) ?
|
|
|
|
StringUtils.toCodePointArray(shortcutTarget) : null;
|
2014-06-24 09:13:24 +00:00
|
|
|
if (!addUnigramEntryNative(mNativeDict, codePoints, probability, shortcutTargetCodePoints,
|
2014-10-14 03:13:11 +00:00
|
|
|
shortcutProbability, isBeginningOfSentence, isNotAWord, isPossiblyOffensive,
|
|
|
|
timestamp)) {
|
2014-05-27 08:28:29 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-03 09:08:23 +00:00
|
|
|
mHasUpdated = true;
|
2014-05-27 08:28:29 +00:00
|
|
|
return true;
|
2013-07-04 12:17:49 +00:00
|
|
|
}
|
|
|
|
|
2014-06-12 03:21:44 +00:00
|
|
|
// Remove a unigram entry from the binary dictionary in native code.
|
|
|
|
public boolean removeUnigramEntry(final String word) {
|
|
|
|
if (TextUtils.isEmpty(word)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
final int[] codePoints = StringUtils.toCodePointArray(word);
|
2014-06-24 09:13:24 +00:00
|
|
|
if (!removeUnigramEntryNative(mNativeDict, codePoints)) {
|
2014-06-12 03:21:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
mHasUpdated = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-21 02:15:38 +00:00
|
|
|
// Add an n-gram entry to the binary dictionary with timestamp in native code.
|
2014-09-29 01:52:18 +00:00
|
|
|
public boolean addNgramEntry(final NgramContext ngramContext, final String word,
|
2014-05-27 08:28:29 +00:00
|
|
|
final int probability, final int timestamp) {
|
2014-09-29 01:52:18 +00:00
|
|
|
if (!ngramContext.isValid() || TextUtils.isEmpty(word)) {
|
2014-05-27 08:28:29 +00:00
|
|
|
return false;
|
2013-07-04 12:17:49 +00:00
|
|
|
}
|
2014-09-29 01:52:18 +00:00
|
|
|
final int[][] prevWordCodePointArrays = new int[ngramContext.getPrevWordCount()][];
|
|
|
|
final boolean[] isBeginningOfSentenceArray = new boolean[ngramContext.getPrevWordCount()];
|
|
|
|
ngramContext.outputToArray(prevWordCodePointArrays, isBeginningOfSentenceArray);
|
2014-06-25 05:14:37 +00:00
|
|
|
final int[] wordCodePoints = StringUtils.toCodePointArray(word);
|
2014-06-26 09:47:25 +00:00
|
|
|
if (!addNgramEntryNative(mNativeDict, prevWordCodePointArrays,
|
|
|
|
isBeginningOfSentenceArray, wordCodePoints, probability, timestamp)) {
|
2014-05-27 08:28:29 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-03 09:08:23 +00:00
|
|
|
mHasUpdated = true;
|
2014-05-27 08:28:29 +00:00
|
|
|
return true;
|
2013-07-04 12:17:49 +00:00
|
|
|
}
|
|
|
|
|
2014-05-21 02:15:38 +00:00
|
|
|
// Remove an n-gram entry from the binary dictionary in native code.
|
2014-09-29 01:52:18 +00:00
|
|
|
public boolean removeNgramEntry(final NgramContext ngramContext, final String word) {
|
|
|
|
if (!ngramContext.isValid() || TextUtils.isEmpty(word)) {
|
2014-05-27 08:28:29 +00:00
|
|
|
return false;
|
2013-07-04 12:17:49 +00:00
|
|
|
}
|
2014-09-29 01:52:18 +00:00
|
|
|
final int[][] prevWordCodePointArrays = new int[ngramContext.getPrevWordCount()][];
|
|
|
|
final boolean[] isBeginningOfSentenceArray = new boolean[ngramContext.getPrevWordCount()];
|
|
|
|
ngramContext.outputToArray(prevWordCodePointArrays, isBeginningOfSentenceArray);
|
2014-06-25 05:14:37 +00:00
|
|
|
final int[] wordCodePoints = StringUtils.toCodePointArray(word);
|
2014-06-26 09:47:25 +00:00
|
|
|
if (!removeNgramEntryNative(mNativeDict, prevWordCodePointArrays,
|
|
|
|
isBeginningOfSentenceArray, wordCodePoints)) {
|
2014-05-27 08:28:29 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-03 09:08:23 +00:00
|
|
|
mHasUpdated = true;
|
2014-05-27 08:28:29 +00:00
|
|
|
return true;
|
2012-04-27 06:50:21 +00:00
|
|
|
}
|
|
|
|
|
2014-10-06 03:09:15 +00:00
|
|
|
// Update entries for the word occurrence with the ngramContext.
|
2014-10-06 06:50:38 +00:00
|
|
|
public boolean updateEntriesForWordWithNgramContext(@Nonnull final NgramContext ngramContext,
|
2014-10-06 03:09:15 +00:00
|
|
|
final String word, final boolean isValidWord, final int count, final int timestamp) {
|
|
|
|
if (TextUtils.isEmpty(word)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
final int[][] prevWordCodePointArrays = new int[ngramContext.getPrevWordCount()][];
|
|
|
|
final boolean[] isBeginningOfSentenceArray = new boolean[ngramContext.getPrevWordCount()];
|
|
|
|
ngramContext.outputToArray(prevWordCodePointArrays, isBeginningOfSentenceArray);
|
|
|
|
final int[] wordCodePoints = StringUtils.toCodePointArray(word);
|
2014-10-09 08:34:29 +00:00
|
|
|
if (!updateEntriesForWordWithNgramContextNative(mNativeDict, prevWordCodePointArrays,
|
2014-10-06 03:09:15 +00:00
|
|
|
isBeginningOfSentenceArray, wordCodePoints, isValidWord, count, timestamp)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
mHasUpdated = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-09-19 05:30:26 +00:00
|
|
|
@UsedForTesting
|
2014-10-23 05:32:45 +00:00
|
|
|
public void updateEntriesForInputEvents(final WordInputEventForPersonalization[] inputEvents) {
|
2014-10-22 05:04:07 +00:00
|
|
|
if (!isValidDictionary()) {
|
|
|
|
return;
|
|
|
|
}
|
2014-10-23 05:32:45 +00:00
|
|
|
int processedEventCount = 0;
|
|
|
|
while (processedEventCount < inputEvents.length) {
|
2013-12-13 08:09:16 +00:00
|
|
|
if (needsToRunGC(true /* mindsBlockByGC */)) {
|
|
|
|
flushWithGC();
|
|
|
|
}
|
2014-10-23 05:32:45 +00:00
|
|
|
processedEventCount = updateEntriesForInputEventsNative(mNativeDict, inputEvents,
|
|
|
|
processedEventCount);
|
2014-04-03 09:08:23 +00:00
|
|
|
mHasUpdated = true;
|
2014-10-23 05:32:45 +00:00
|
|
|
if (processedEventCount <= 0) {
|
2013-12-13 08:09:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-25 09:32:40 +00:00
|
|
|
private void reopen() {
|
|
|
|
close();
|
2013-09-24 13:57:15 +00:00
|
|
|
final File dictFile = new File(mDictFilePath);
|
2013-12-13 08:09:16 +00:00
|
|
|
// WARNING: Because we pass 0 as the offset and file.length() as the length, this can
|
|
|
|
// only be called for actual files. Right now it's only called by the flush() family of
|
|
|
|
// functions, which require an updatable dictionary, so it's okay. But beware.
|
|
|
|
loadDictionary(dictFile.getAbsolutePath(), 0 /* startOffset */,
|
2014-02-21 06:09:37 +00:00
|
|
|
dictFile.length(), mIsUpdatable);
|
2013-09-17 09:07:16 +00:00
|
|
|
}
|
|
|
|
|
2014-04-21 22:21:55 +00:00
|
|
|
// Flush to dict file if the dictionary has been updated.
|
2014-05-27 08:28:29 +00:00
|
|
|
public boolean flush() {
|
2014-10-22 05:04:07 +00:00
|
|
|
if (!isValidDictionary()) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-04-03 09:08:23 +00:00
|
|
|
if (mHasUpdated) {
|
2014-05-27 08:28:29 +00:00
|
|
|
if (!flushNative(mNativeDict, mDictFilePath)) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-04-03 09:08:23 +00:00
|
|
|
reopen();
|
|
|
|
}
|
2014-05-27 08:28:29 +00:00
|
|
|
return true;
|
2013-09-25 09:32:40 +00:00
|
|
|
}
|
|
|
|
|
2014-04-21 22:21:55 +00:00
|
|
|
// Run GC and flush to dict file if the dictionary has been updated.
|
2014-05-27 08:28:29 +00:00
|
|
|
public boolean flushWithGCIfHasUpdated() {
|
2014-04-21 22:21:55 +00:00
|
|
|
if (mHasUpdated) {
|
2014-05-27 08:28:29 +00:00
|
|
|
return flushWithGC();
|
2014-04-21 22:21:55 +00:00
|
|
|
}
|
2014-05-27 08:28:29 +00:00
|
|
|
return true;
|
2014-04-21 22:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run GC and flush to dict file.
|
2014-05-27 08:28:29 +00:00
|
|
|
public boolean flushWithGC() {
|
2014-10-22 05:04:07 +00:00
|
|
|
if (!isValidDictionary()) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-05-27 08:28:29 +00:00
|
|
|
if (!flushWithGCNative(mNativeDict, mDictFilePath)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-25 09:32:40 +00:00
|
|
|
reopen();
|
2014-05-27 08:28:29 +00:00
|
|
|
return true;
|
2013-09-17 09:07:16 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 04:57:54 +00:00
|
|
|
/**
|
|
|
|
* Checks whether GC is needed to run or not.
|
|
|
|
* @param mindsBlockByGC Whether to mind operations blocked by GC. We don't need to care about
|
|
|
|
* the blocking in some situations such as in idle time or just before closing.
|
|
|
|
* @return whether GC is needed to run or not.
|
|
|
|
*/
|
|
|
|
public boolean needsToRunGC(final boolean mindsBlockByGC) {
|
2014-10-22 05:04:07 +00:00
|
|
|
if (!isValidDictionary()) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-30 04:57:54 +00:00
|
|
|
return needsToRunGCNative(mNativeDict, mindsBlockByGC);
|
2013-09-17 09:07:16 +00:00
|
|
|
}
|
|
|
|
|
2014-03-27 08:46:35 +00:00
|
|
|
public boolean migrateTo(final int newFormatVersion) {
|
|
|
|
if (!isValidDictionary()) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-07-14 07:25:55 +00:00
|
|
|
final File isMigratingDir =
|
|
|
|
new File(mDictFilePath + DIR_NAME_SUFFIX_FOR_RECORD_MIGRATION);
|
|
|
|
if (isMigratingDir.exists()) {
|
|
|
|
isMigratingDir.delete();
|
|
|
|
Log.e(TAG, "Previous migration attempt failed probably due to a crash. "
|
|
|
|
+ "Giving up using the old dictionary (" + mDictFilePath + ").");
|
2014-05-08 03:31:04 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-07-14 07:25:55 +00:00
|
|
|
if (!isMigratingDir.mkdir()) {
|
|
|
|
Log.e(TAG, "Cannot create a dir (" + isMigratingDir.getAbsolutePath()
|
|
|
|
+ ") to record migration.");
|
2014-05-09 06:17:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-07-14 07:25:55 +00:00
|
|
|
try {
|
|
|
|
final String tmpDictFilePath = mDictFilePath + DICT_FILE_NAME_SUFFIX_FOR_MIGRATION;
|
|
|
|
if (!migrateNative(mNativeDict, tmpDictFilePath, newFormatVersion)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
close();
|
|
|
|
final File dictFile = new File(mDictFilePath);
|
|
|
|
final File tmpDictFile = new File(tmpDictFilePath);
|
|
|
|
if (!FileUtils.deleteRecursively(dictFile)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!BinaryDictionaryUtils.renameDict(tmpDictFile, dictFile)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
loadDictionary(dictFile.getAbsolutePath(), 0 /* startOffset */,
|
|
|
|
dictFile.length(), mIsUpdatable);
|
|
|
|
return true;
|
|
|
|
} finally {
|
|
|
|
isMigratingDir.delete();
|
2014-03-27 08:46:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-27 14:12:12 +00:00
|
|
|
@UsedForTesting
|
2014-09-19 11:58:07 +00:00
|
|
|
public String getPropertyForGettingStats(final String query) {
|
2014-10-22 05:04:07 +00:00
|
|
|
if (!isValidDictionary()) {
|
|
|
|
return "";
|
|
|
|
}
|
2013-09-27 14:12:12 +00:00
|
|
|
return getPropertyNative(mNativeDict, query);
|
|
|
|
}
|
|
|
|
|
2013-08-20 09:00:21 +00:00
|
|
|
@Override
|
|
|
|
public boolean shouldAutoCommit(final SuggestedWordInfo candidate) {
|
2013-10-01 08:30:40 +00:00
|
|
|
return candidate.mAutoCommitFirstWordConfidence > CONFIDENCE_TO_AUTO_COMMIT;
|
2013-08-20 09:00: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
|
|
|
}
|
2013-09-25 09:32:40 +00:00
|
|
|
mDicTraverseSessions.clear();
|
2012-08-14 13:49:59 +00:00
|
|
|
}
|
2013-09-25 09:32:40 +00:00
|
|
|
closeInternalLocked();
|
2011-01-17 06:13:45 +00:00
|
|
|
}
|
|
|
|
|
2013-09-25 09:32:40 +00:00
|
|
|
private synchronized void closeInternalLocked() {
|
2009-03-13 22:11:42 +00:00
|
|
|
if (mNativeDict != 0) {
|
|
|
|
closeNative(mNativeDict);
|
|
|
|
mNativeDict = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-25 09:32:40 +00:00
|
|
|
// TODO: Manage BinaryDictionary instances without using WeakReference or something.
|
2009-03-13 22:11:42 +00:00
|
|
|
@Override
|
|
|
|
protected void finalize() throws Throwable {
|
2011-01-17 06:13:45 +00:00
|
|
|
try {
|
2013-09-25 09:32:40 +00:00
|
|
|
closeInternalLocked();
|
2011-01-17 06:13:45 +00:00
|
|
|
} finally {
|
|
|
|
super.finalize();
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
}
|