564 lines
25 KiB
Java
564 lines
25 KiB
Java
/*
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
*
|
|
* 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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;
|
|
|
|
import android.content.Context;
|
|
import android.text.TextUtils;
|
|
import android.util.Log;
|
|
|
|
import com.android.inputmethod.annotations.UsedForTesting;
|
|
import com.android.inputmethod.keyboard.ProximityInfo;
|
|
import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
|
import com.android.inputmethod.latin.personalization.PersonalizationDictionary;
|
|
import com.android.inputmethod.latin.personalization.PersonalizationHelper;
|
|
import com.android.inputmethod.latin.personalization.UserHistoryDictionary;
|
|
import com.android.inputmethod.latin.utils.CollectionUtils;
|
|
import com.android.inputmethod.latin.utils.ExecutorUtils;
|
|
import com.android.inputmethod.latin.utils.LanguageModelParam;
|
|
import com.android.inputmethod.latin.utils.SuggestionResults;
|
|
|
|
import java.io.File;
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.Locale;
|
|
import java.util.Map;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
import java.util.concurrent.CountDownLatch;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
// TODO: Consolidate dictionaries in native code.
|
|
public class DictionaryFacilitatorForSuggest {
|
|
public static final String TAG = DictionaryFacilitatorForSuggest.class.getSimpleName();
|
|
|
|
// HACK: This threshold is being used when adding a capitalized entry in the User History
|
|
// dictionary.
|
|
private static final int CAPITALIZED_FORM_MAX_PROBABILITY_FOR_INSERT = 140;
|
|
|
|
private Dictionaries mDictionaries = new Dictionaries();
|
|
private volatile CountDownLatch mLatchForWaitingLoadingMainDictionary = new CountDownLatch(0);
|
|
// To synchronize assigning mDictionaries to ensure closing dictionaries.
|
|
private Object mLock = new Object();
|
|
|
|
private static final String[] dictTypesOrderedToGetSuggestion =
|
|
new String[] {
|
|
Dictionary.TYPE_MAIN,
|
|
Dictionary.TYPE_USER_HISTORY,
|
|
Dictionary.TYPE_PERSONALIZATION,
|
|
Dictionary.TYPE_USER,
|
|
Dictionary.TYPE_CONTACTS
|
|
};
|
|
|
|
/**
|
|
* Class contains dictionaries for a locale.
|
|
*/
|
|
private static class Dictionaries {
|
|
public final Locale mLocale;
|
|
public final ConcurrentHashMap<String, Dictionary> mDictMap =
|
|
CollectionUtils.newConcurrentHashMap();
|
|
public final ConcurrentHashMap<String, ExpandableBinaryDictionary> mSubDictMap =
|
|
CollectionUtils.newConcurrentHashMap();
|
|
// TODO: Remove sub dictionary members and use mSubDictMap.
|
|
public final ContactsBinaryDictionary mContactsDictionary;
|
|
public final UserBinaryDictionary mUserDictionary;
|
|
public final UserHistoryDictionary mUserHistoryDictionary;
|
|
public final PersonalizationDictionary mPersonalizationDictionary;
|
|
|
|
public Dictionaries() {
|
|
mLocale = null;
|
|
mContactsDictionary = null;
|
|
mUserDictionary = null;
|
|
mUserHistoryDictionary = null;
|
|
mPersonalizationDictionary = null;
|
|
}
|
|
|
|
public Dictionaries(final Locale locale, final Dictionary mainDict,
|
|
final ContactsBinaryDictionary contactsDict, final UserBinaryDictionary userDict,
|
|
final UserHistoryDictionary userHistoryDict,
|
|
final PersonalizationDictionary personalizationDict) {
|
|
mLocale = locale;
|
|
// Main dictionary can be asynchronously loaded.
|
|
setMainDict(mainDict);
|
|
mContactsDictionary = contactsDict;
|
|
setSubDict(Dictionary.TYPE_CONTACTS, mContactsDictionary);
|
|
mUserDictionary = userDict;
|
|
setSubDict(Dictionary.TYPE_USER, mUserDictionary);
|
|
mUserHistoryDictionary = userHistoryDict;
|
|
setSubDict(Dictionary.TYPE_USER_HISTORY, mUserHistoryDictionary);
|
|
mPersonalizationDictionary = personalizationDict;
|
|
setSubDict(Dictionary.TYPE_PERSONALIZATION, mPersonalizationDictionary);
|
|
}
|
|
|
|
private void setSubDict(final String dictType, final ExpandableBinaryDictionary dict) {
|
|
if (dict != null) {
|
|
mDictMap.put(dictType, dict);
|
|
mSubDictMap.put(dictType, dict);
|
|
}
|
|
}
|
|
|
|
public void setMainDict(final Dictionary mainDict) {
|
|
// Close old dictionary if exists. Main dictionary can be assigned multiple times.
|
|
final Dictionary oldDict;
|
|
if (mainDict != null) {
|
|
oldDict = mDictMap.put(Dictionary.TYPE_MAIN, mainDict);
|
|
} else {
|
|
oldDict = mDictMap.remove(Dictionary.TYPE_MAIN);
|
|
}
|
|
if (oldDict != null && mainDict != oldDict) {
|
|
oldDict.close();
|
|
}
|
|
}
|
|
|
|
public Dictionary getMainDict() {
|
|
return mDictMap.get(Dictionary.TYPE_MAIN);
|
|
}
|
|
|
|
public ExpandableBinaryDictionary getSubDict(final String dictType) {
|
|
return mSubDictMap.get(dictType);
|
|
}
|
|
|
|
public boolean hasDict(final String dictType) {
|
|
return mDictMap.contains(dictType);
|
|
}
|
|
|
|
public void closeDict(final String dictType) {
|
|
final Dictionary dict = mDictMap.remove(dictType);
|
|
mSubDictMap.remove(dictType);
|
|
if (dict != null) {
|
|
dict.close();
|
|
}
|
|
}
|
|
}
|
|
|
|
public interface DictionaryInitializationListener {
|
|
public void onUpdateMainDictionaryAvailability(boolean isMainDictionaryAvailable);
|
|
}
|
|
|
|
public DictionaryFacilitatorForSuggest() {}
|
|
|
|
public Locale getLocale() {
|
|
return mDictionaries.mLocale;
|
|
}
|
|
|
|
public void resetDictionaries(final Context context, final Locale newLocale,
|
|
final boolean useContactsDict, final boolean usePersonalizedDicts,
|
|
final boolean forceReloadMainDictionary,
|
|
final DictionaryInitializationListener listener) {
|
|
final boolean localeHasBeenChanged = !newLocale.equals(mDictionaries.mLocale);
|
|
// We always try to have the main dictionary. Other dictionaries can be unused.
|
|
final boolean reloadMainDictionary = localeHasBeenChanged || forceReloadMainDictionary;
|
|
final boolean closeContactsDictionary = localeHasBeenChanged || !useContactsDict;
|
|
final boolean closeUserDictionary = localeHasBeenChanged;
|
|
final boolean closeUserHistoryDictionary = localeHasBeenChanged || !usePersonalizedDicts;
|
|
final boolean closePersonalizationDictionary =
|
|
localeHasBeenChanged || !usePersonalizedDicts;
|
|
|
|
final Dictionary newMainDict;
|
|
if (reloadMainDictionary) {
|
|
// The main dictionary will be asynchronously loaded.
|
|
newMainDict = null;
|
|
} else {
|
|
newMainDict = mDictionaries.getMainDict();
|
|
}
|
|
|
|
// Open or move contacts dictionary.
|
|
final ContactsBinaryDictionary newContactsDict;
|
|
if (!closeContactsDictionary && mDictionaries.hasDict(Dictionary.TYPE_CONTACTS)) {
|
|
newContactsDict = mDictionaries.mContactsDictionary;
|
|
} else if (useContactsDict) {
|
|
newContactsDict = new ContactsBinaryDictionary(context, newLocale);
|
|
} else {
|
|
newContactsDict = null;
|
|
}
|
|
|
|
// Open or move user dictionary.
|
|
final UserBinaryDictionary newUserDictionary;
|
|
if (!closeUserDictionary && mDictionaries.hasDict(Dictionary.TYPE_USER)) {
|
|
newUserDictionary = mDictionaries.mUserDictionary;
|
|
} else {
|
|
newUserDictionary = new UserBinaryDictionary(context, newLocale);
|
|
}
|
|
|
|
// Open or move user history dictionary.
|
|
final UserHistoryDictionary newUserHistoryDict;
|
|
if (!closeUserHistoryDictionary && mDictionaries.hasDict(Dictionary.TYPE_USER_HISTORY)) {
|
|
newUserHistoryDict = mDictionaries.mUserHistoryDictionary;
|
|
} else if (usePersonalizedDicts) {
|
|
newUserHistoryDict = PersonalizationHelper.getUserHistoryDictionary(context, newLocale);
|
|
} else {
|
|
newUserHistoryDict = null;
|
|
}
|
|
|
|
// Open or move personalization dictionary.
|
|
final PersonalizationDictionary newPersonalizationDict;
|
|
if (!closePersonalizationDictionary
|
|
&& mDictionaries.hasDict(Dictionary.TYPE_PERSONALIZATION)) {
|
|
newPersonalizationDict = mDictionaries.mPersonalizationDictionary;
|
|
} else if (usePersonalizedDicts) {
|
|
newPersonalizationDict =
|
|
PersonalizationHelper.getPersonalizationDictionary(context, newLocale);
|
|
} else {
|
|
newPersonalizationDict = null;
|
|
}
|
|
|
|
// Replace Dictionaries.
|
|
final Dictionaries newDictionaries = new Dictionaries(newLocale, newMainDict,
|
|
newContactsDict, newUserDictionary, newUserHistoryDict, newPersonalizationDict);
|
|
final Dictionaries oldDictionaries;
|
|
synchronized (mLock) {
|
|
oldDictionaries = mDictionaries;
|
|
mDictionaries = newDictionaries;
|
|
if (reloadMainDictionary) {
|
|
asyncReloadMainDictionary(context, newLocale, listener);
|
|
}
|
|
}
|
|
if (listener != null) {
|
|
listener.onUpdateMainDictionaryAvailability(hasInitializedMainDictionary());
|
|
}
|
|
|
|
// Clean up old dictionaries.
|
|
if (reloadMainDictionary) {
|
|
oldDictionaries.closeDict(Dictionary.TYPE_MAIN);
|
|
}
|
|
if (closeContactsDictionary) {
|
|
oldDictionaries.closeDict(Dictionary.TYPE_CONTACTS);
|
|
}
|
|
if (closeUserDictionary) {
|
|
oldDictionaries.closeDict(Dictionary.TYPE_USER);
|
|
}
|
|
if (closeUserHistoryDictionary) {
|
|
oldDictionaries.closeDict(Dictionary.TYPE_USER_HISTORY);
|
|
}
|
|
if (closePersonalizationDictionary) {
|
|
oldDictionaries.closeDict(Dictionary.TYPE_PERSONALIZATION);
|
|
}
|
|
oldDictionaries.mDictMap.clear();
|
|
oldDictionaries.mSubDictMap.clear();
|
|
}
|
|
|
|
private void asyncReloadMainDictionary(final Context context, final Locale locale,
|
|
final DictionaryInitializationListener listener) {
|
|
final CountDownLatch latchForWaitingLoadingMainDictionary = new CountDownLatch(1);
|
|
mLatchForWaitingLoadingMainDictionary = latchForWaitingLoadingMainDictionary;
|
|
ExecutorUtils.getExecutor("InitializeBinaryDictionary").execute(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
final Dictionary mainDict =
|
|
DictionaryFactory.createMainDictionaryFromManager(context, locale);
|
|
synchronized (mLock) {
|
|
if (locale.equals(mDictionaries.mLocale)) {
|
|
mDictionaries.setMainDict(mainDict);
|
|
} else {
|
|
// Dictionary facilitator has been reset for another locale.
|
|
mainDict.close();
|
|
}
|
|
}
|
|
if (listener != null) {
|
|
listener.onUpdateMainDictionaryAvailability(hasInitializedMainDictionary());
|
|
}
|
|
latchForWaitingLoadingMainDictionary.countDown();
|
|
}
|
|
});
|
|
}
|
|
|
|
@UsedForTesting
|
|
public void resetDictionariesForTesting(final Context context, final Locale locale,
|
|
final ArrayList<String> dictionaryTypes, final HashMap<String, File> dictionaryFiles,
|
|
final Map<String, Map<String, String>> additionalDictAttributes) {
|
|
Dictionary mainDictionary = null;
|
|
ContactsBinaryDictionary contactsDictionary = null;
|
|
UserBinaryDictionary userDictionary = null;
|
|
UserHistoryDictionary userHistoryDictionary = null;
|
|
PersonalizationDictionary personalizationDictionary = null;
|
|
|
|
for (final String dictType : dictionaryTypes) {
|
|
if (dictType.equals(Dictionary.TYPE_MAIN)) {
|
|
mainDictionary = DictionaryFactory.createMainDictionaryFromManager(context, locale);
|
|
} else if (dictType.equals(Dictionary.TYPE_USER_HISTORY)) {
|
|
userHistoryDictionary =
|
|
PersonalizationHelper.getUserHistoryDictionary(context, locale);
|
|
// Staring with an empty user history dictionary for testing.
|
|
// Testing program may populate this dictionary before actual testing.
|
|
userHistoryDictionary.reloadDictionaryIfRequired();
|
|
userHistoryDictionary.waitAllTasksForTests();
|
|
if (additionalDictAttributes.containsKey(dictType)) {
|
|
userHistoryDictionary.clearAndFlushDictionaryWithAdditionalAttributes(
|
|
additionalDictAttributes.get(dictType));
|
|
}
|
|
} else if (dictType.equals(Dictionary.TYPE_PERSONALIZATION)) {
|
|
personalizationDictionary =
|
|
PersonalizationHelper.getPersonalizationDictionary(context, locale);
|
|
// Staring with an empty personalization dictionary for testing.
|
|
// Testing program may populate this dictionary before actual testing.
|
|
personalizationDictionary.reloadDictionaryIfRequired();
|
|
personalizationDictionary.waitAllTasksForTests();
|
|
if (additionalDictAttributes.containsKey(dictType)) {
|
|
personalizationDictionary.clearAndFlushDictionaryWithAdditionalAttributes(
|
|
additionalDictAttributes.get(dictType));
|
|
}
|
|
} else if (dictType.equals(Dictionary.TYPE_USER)) {
|
|
final File file = dictionaryFiles.get(dictType);
|
|
userDictionary = new UserBinaryDictionary(context, locale, file);
|
|
userDictionary.reloadDictionaryIfRequired();
|
|
userDictionary.waitAllTasksForTests();
|
|
} else if (dictType.equals(Dictionary.TYPE_CONTACTS)) {
|
|
final File file = dictionaryFiles.get(dictType);
|
|
contactsDictionary = new ContactsBinaryDictionary(context, locale, file);
|
|
contactsDictionary.reloadDictionaryIfRequired();
|
|
contactsDictionary.waitAllTasksForTests();
|
|
} else {
|
|
throw new RuntimeException("Unknown dictionary type: " + dictType);
|
|
}
|
|
}
|
|
mDictionaries = new Dictionaries(locale, mainDictionary, contactsDictionary,
|
|
userDictionary, userHistoryDictionary, personalizationDictionary);
|
|
}
|
|
|
|
public void closeDictionaries() {
|
|
final Dictionaries dictionaries;
|
|
synchronized (mLock) {
|
|
dictionaries = mDictionaries;
|
|
mDictionaries = new Dictionaries();
|
|
}
|
|
for (final Dictionary dict : dictionaries.mDictMap.values()) {
|
|
dict.close();
|
|
}
|
|
}
|
|
|
|
// The main dictionary could have been loaded asynchronously. Don't cache the return value
|
|
// of this method.
|
|
public boolean hasInitializedMainDictionary() {
|
|
final Dictionary mainDict = mDictionaries.getMainDict();
|
|
return mainDict != null && mainDict.isInitialized();
|
|
}
|
|
|
|
public boolean hasPersonalizationDictionary() {
|
|
return mDictionaries.hasDict(Dictionary.TYPE_PERSONALIZATION);
|
|
}
|
|
|
|
public void flushPersonalizationDictionary() {
|
|
final PersonalizationDictionary personalizationDict =
|
|
mDictionaries.mPersonalizationDictionary;
|
|
if (personalizationDict != null) {
|
|
personalizationDict.flush();
|
|
}
|
|
}
|
|
|
|
public void waitForLoadingMainDictionary(final long timeout, final TimeUnit unit)
|
|
throws InterruptedException {
|
|
mLatchForWaitingLoadingMainDictionary.await(timeout, unit);
|
|
}
|
|
|
|
@UsedForTesting
|
|
public void waitForLoadingDictionariesForTesting(final long timeout, final TimeUnit unit)
|
|
throws InterruptedException {
|
|
waitForLoadingMainDictionary(timeout, unit);
|
|
final Map<String, ExpandableBinaryDictionary> dictMap = mDictionaries.mSubDictMap;
|
|
for (final ExpandableBinaryDictionary dict : dictMap.values()) {
|
|
dict.waitAllTasksForTests();
|
|
}
|
|
}
|
|
|
|
public boolean isUserDictionaryEnabled() {
|
|
final UserBinaryDictionary userDictionary = mDictionaries.mUserDictionary;
|
|
if (userDictionary == null) {
|
|
return false;
|
|
}
|
|
return userDictionary.mEnabled;
|
|
}
|
|
|
|
public void addWordToUserDictionary(String word) {
|
|
final UserBinaryDictionary userDictionary = mDictionaries.mUserDictionary;
|
|
if (userDictionary == null) {
|
|
return;
|
|
}
|
|
userDictionary.addWordToUserDictionary(word);
|
|
}
|
|
|
|
public void addToUserHistory(final String suggestion, final boolean wasAutoCapitalized,
|
|
final String previousWord, final int timeStampInSeconds) {
|
|
final Dictionaries dictionaries = mDictionaries;
|
|
if (!dictionaries.hasDict(Dictionary.TYPE_USER_HISTORY)) {
|
|
return;
|
|
}
|
|
final int maxFreq = getMaxFrequency(suggestion);
|
|
if (maxFreq == 0) {
|
|
return;
|
|
}
|
|
final String suggestionLowerCase = suggestion.toLowerCase(dictionaries.mLocale);
|
|
final String secondWord;
|
|
if (wasAutoCapitalized) {
|
|
if (isValidWord(suggestion, false /* ignoreCase */)
|
|
&& !isValidWord(suggestionLowerCase, false /* ignoreCase */)) {
|
|
// If the word was auto-capitalized and exists only as a capitalized word in the
|
|
// dictionary, then we must not downcase it before registering it. For example,
|
|
// the name of the contacts in start-of-sentence position would come here with the
|
|
// wasAutoCapitalized flag: if we downcase it, we'd register a lower-case version
|
|
// of that contact's name which would end up popping in suggestions.
|
|
secondWord = suggestion;
|
|
} else {
|
|
// If however the word is not in the dictionary, or exists as a lower-case word
|
|
// only, then we consider that was a lower-case word that had been auto-capitalized.
|
|
secondWord = suggestionLowerCase;
|
|
}
|
|
} else {
|
|
// HACK: We'd like to avoid adding the capitalized form of common words to the User
|
|
// History dictionary in order to avoid suggesting them until the dictionary
|
|
// consolidation is done.
|
|
// TODO: Remove this hack when ready.
|
|
final int lowerCaseFreqInMainDict = dictionaries.hasDict(Dictionary.TYPE_MAIN) ?
|
|
dictionaries.getMainDict().getFrequency(suggestionLowerCase) :
|
|
Dictionary.NOT_A_PROBABILITY;
|
|
if (maxFreq < lowerCaseFreqInMainDict
|
|
&& lowerCaseFreqInMainDict >= CAPITALIZED_FORM_MAX_PROBABILITY_FOR_INSERT) {
|
|
// Use lower cased word as the word can be a distracter of the popular word.
|
|
secondWord = suggestionLowerCase;
|
|
} else {
|
|
secondWord = suggestion;
|
|
}
|
|
}
|
|
// We demote unrecognized words (frequency < 0, below) by specifying them as "invalid".
|
|
// We don't add words with 0-frequency (assuming they would be profanity etc.).
|
|
final boolean isValid = maxFreq > 0;
|
|
dictionaries.mUserHistoryDictionary.addToDictionary(
|
|
previousWord, secondWord, isValid, timeStampInSeconds);
|
|
}
|
|
|
|
public void cancelAddingUserHistory(final String previousWord, final String committedWord) {
|
|
final UserHistoryDictionary userHistoryDictionary = mDictionaries.mUserHistoryDictionary;
|
|
if (userHistoryDictionary != null) {
|
|
userHistoryDictionary.cancelAddingUserHistory(previousWord, committedWord);
|
|
}
|
|
}
|
|
|
|
// TODO: Revise the way to fusion suggestion results.
|
|
public SuggestionResults getSuggestionResults(final WordComposer composer,
|
|
final String prevWord, final ProximityInfo proximityInfo,
|
|
final boolean blockOffensiveWords, final int[] additionalFeaturesOptions,
|
|
final int sessionId, final ArrayList<SuggestedWordInfo> rawSuggestions) {
|
|
final Dictionaries dictionaries = mDictionaries;
|
|
final Map<String, Dictionary> dictMap = dictionaries.mDictMap;
|
|
final SuggestionResults suggestionResults =
|
|
new SuggestionResults(dictionaries.mLocale, SuggestedWords.MAX_SUGGESTIONS);
|
|
final float[] languageWeight = new float[] { Dictionary.NOT_A_LANGUAGE_WEIGHT };
|
|
for (final String dictType : dictTypesOrderedToGetSuggestion) {
|
|
final Dictionary dictionary = dictMap.get(dictType);
|
|
if (null == dictionary) continue;
|
|
final ArrayList<SuggestedWordInfo> dictionarySuggestions =
|
|
dictionary.getSuggestionsWithSessionId(composer, prevWord, proximityInfo,
|
|
blockOffensiveWords, additionalFeaturesOptions, sessionId,
|
|
languageWeight);
|
|
if (null == dictionarySuggestions) continue;
|
|
suggestionResults.addAll(dictionarySuggestions);
|
|
if (null != rawSuggestions) {
|
|
rawSuggestions.addAll(dictionarySuggestions);
|
|
}
|
|
}
|
|
return suggestionResults;
|
|
}
|
|
|
|
public boolean isValidMainDictWord(final String word) {
|
|
final Dictionaries dictionaries = mDictionaries;
|
|
if (TextUtils.isEmpty(word) || !dictionaries.hasDict(Dictionary.TYPE_MAIN)) {
|
|
return false;
|
|
}
|
|
return dictionaries.getMainDict().isValidWord(word);
|
|
}
|
|
|
|
public boolean isValidWord(final String word, final boolean ignoreCase) {
|
|
if (TextUtils.isEmpty(word)) {
|
|
return false;
|
|
}
|
|
final Dictionaries dictionaries = mDictionaries;
|
|
if (dictionaries.mLocale == null) {
|
|
return false;
|
|
}
|
|
final String lowerCasedWord = word.toLowerCase(dictionaries.mLocale);
|
|
final Map<String, Dictionary> dictMap = dictionaries.mDictMap;
|
|
for (final Dictionary dictionary : dictMap.values()) {
|
|
// Ideally the passed map would come out of a {@link java.util.concurrent.Future} and
|
|
// would be immutable once it's finished initializing, but concretely a null test is
|
|
// probably good enough for the time being.
|
|
if (null == dictionary) continue;
|
|
if (dictionary.isValidWord(word)
|
|
|| (ignoreCase && dictionary.isValidWord(lowerCasedWord))) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private int getMaxFrequency(final String word) {
|
|
if (TextUtils.isEmpty(word)) {
|
|
return Dictionary.NOT_A_PROBABILITY;
|
|
}
|
|
int maxFreq = -1;
|
|
final Map<String, Dictionary> dictMap = mDictionaries.mDictMap;
|
|
for (final Dictionary dictionary : dictMap.values()) {
|
|
final int tempFreq = dictionary.getFrequency(word);
|
|
if (tempFreq >= maxFreq) {
|
|
maxFreq = tempFreq;
|
|
}
|
|
}
|
|
return maxFreq;
|
|
}
|
|
|
|
|
|
public void clearUserHistoryDictionary() {
|
|
final ExpandableBinaryDictionary userHistoryDict =
|
|
mDictionaries.getSubDict(Dictionary.TYPE_USER_HISTORY);
|
|
if (userHistoryDict == null) {
|
|
return;
|
|
}
|
|
userHistoryDict.clear();
|
|
}
|
|
|
|
// This method gets called only when the IME receives a notification to remove the
|
|
// personalization dictionary.
|
|
public void clearPersonalizationDictionary() {
|
|
final ExpandableBinaryDictionary personalizationDict =
|
|
mDictionaries.getSubDict(Dictionary.TYPE_PERSONALIZATION);
|
|
if (personalizationDict == null) {
|
|
return;
|
|
}
|
|
personalizationDict.clear();
|
|
}
|
|
|
|
public void addMultipleDictionaryEntriesToPersonalizationDictionary(
|
|
final ArrayList<LanguageModelParam> languageModelParams,
|
|
final ExpandableBinaryDictionary.AddMultipleDictionaryEntriesCallback callback) {
|
|
final PersonalizationDictionary personalizationDict =
|
|
mDictionaries.mPersonalizationDictionary;
|
|
if (personalizationDict == null) {
|
|
if (callback != null) {
|
|
callback.onFinished();
|
|
}
|
|
return;
|
|
}
|
|
personalizationDict.addMultipleDictionaryEntriesToDictionary(languageModelParams, callback);
|
|
}
|
|
|
|
public void dumpDictionaryForDebug(final String dictName) {
|
|
final ExpandableBinaryDictionary dictToDump = mDictionaries.getSubDict(dictName);
|
|
if (dictToDump == null) {
|
|
Log.e(TAG, "Cannot dump " + dictName + ". "
|
|
+ "The dictionary is not being used for suggestion or cannot be dumped.");
|
|
return;
|
|
}
|
|
dictToDump.dumpAllWordsForDebug();
|
|
}
|
|
}
|