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;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.text.TextUtils;
|
|
|
|
import android.util.Log;
|
|
|
|
|
2011-11-18 11:03:38 +00:00
|
|
|
import com.android.inputmethod.keyboard.Keyboard;
|
2011-08-04 03:08:22 +00:00
|
|
|
import com.android.inputmethod.keyboard.ProximityInfo;
|
|
|
|
|
2011-02-08 08:12:13 +00:00
|
|
|
import java.io.File;
|
2010-11-29 08:57:48 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Arrays;
|
2011-03-04 00:02:28 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.HashSet;
|
2011-03-14 18:46:15 +00:00
|
|
|
import java.util.Locale;
|
2011-03-04 00:02:28 +00:00
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Set;
|
2010-11-29 08:57:48 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
/**
|
2011-01-07 06:01:51 +00:00
|
|
|
* This class loads a dictionary and provides a list of suggestions for a given sequence of
|
2009-03-13 22:11:42 +00:00
|
|
|
* characters. This includes corrections and completions.
|
|
|
|
*/
|
|
|
|
public class Suggest implements Dictionary.WordCallback {
|
|
|
|
|
2011-01-18 08:22:01 +00:00
|
|
|
public static final String TAG = Suggest.class.getSimpleName();
|
2010-12-08 07:04:16 +00:00
|
|
|
|
2010-08-20 05:35:02 +00:00
|
|
|
public static final int APPROX_MAX_WORD_LENGTH = 32;
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
public static final int CORRECTION_NONE = 0;
|
2011-12-08 13:04:06 +00:00
|
|
|
public static final int CORRECTION_FULL = 1;
|
|
|
|
public static final int CORRECTION_FULL_BIGRAM = 2;
|
2010-08-20 05:35:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Words that appear in both bigram and unigram data gets multiplier ranging from
|
2011-03-15 18:46:32 +00:00
|
|
|
* BIGRAM_MULTIPLIER_MIN to BIGRAM_MULTIPLIER_MAX depending on the score from
|
2010-08-20 05:35:02 +00:00
|
|
|
* bigram data.
|
|
|
|
*/
|
|
|
|
public static final double BIGRAM_MULTIPLIER_MIN = 1.2;
|
|
|
|
public static final double BIGRAM_MULTIPLIER_MAX = 1.5;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maximum possible bigram frequency. Will depend on how many bits are being used in data
|
2011-04-26 07:28:56 +00:00
|
|
|
* structure. Maximum bigram frequency will get the BIGRAM_MULTIPLIER_MAX as the multiplier.
|
2010-08-20 05:35:02 +00:00
|
|
|
*/
|
|
|
|
public static final int MAXIMUM_BIGRAM_FREQUENCY = 127;
|
|
|
|
|
2011-07-14 22:57:26 +00:00
|
|
|
// It seems the following values are only used for logging.
|
2010-08-20 05:35:02 +00:00
|
|
|
public static final int DIC_USER_TYPED = 0;
|
|
|
|
public static final int DIC_MAIN = 1;
|
|
|
|
public static final int DIC_USER = 2;
|
2011-07-14 22:57:26 +00:00
|
|
|
public static final int DIC_USER_UNIGRAM = 3;
|
2010-08-20 05:35:02 +00:00
|
|
|
public static final int DIC_CONTACTS = 4;
|
2011-07-14 22:57:26 +00:00
|
|
|
public static final int DIC_USER_BIGRAM = 5;
|
2011-10-06 06:57:43 +00:00
|
|
|
public static final int DIC_WHITELIST = 6;
|
2010-08-20 05:35:02 +00:00
|
|
|
// If you add a type of dictionary, increment DIC_TYPE_LAST_ID
|
2011-07-14 22:57:26 +00:00
|
|
|
// TODO: this value seems unused. Remove it?
|
2011-10-06 06:57:43 +00:00
|
|
|
public static final int DIC_TYPE_LAST_ID = 6;
|
2011-03-04 07:56:10 +00:00
|
|
|
public static final String DICT_KEY_MAIN = "main";
|
|
|
|
public static final String DICT_KEY_CONTACTS = "contacts";
|
2011-07-14 22:57:26 +00:00
|
|
|
// User dictionary, the system-managed one.
|
2011-03-04 07:56:10 +00:00
|
|
|
public static final String DICT_KEY_USER = "user";
|
2011-07-14 22:57:26 +00:00
|
|
|
// User unigram dictionary, internal to LatinIME
|
|
|
|
public static final String DICT_KEY_USER_UNIGRAM = "user_unigram";
|
|
|
|
// User bigram dictionary, internal to LatinIME
|
2011-03-04 07:56:10 +00:00
|
|
|
public static final String DICT_KEY_USER_BIGRAM = "user_bigram";
|
|
|
|
public static final String DICT_KEY_WHITELIST ="whitelist";
|
|
|
|
|
2011-01-31 05:49:33 +00:00
|
|
|
private static final boolean DBG = LatinImeLogger.sDBG;
|
2011-01-18 08:22:01 +00:00
|
|
|
|
2011-04-26 12:49:09 +00:00
|
|
|
private Dictionary mMainDict;
|
2011-08-09 02:54:10 +00:00
|
|
|
private ContactsDictionary mContactsDict;
|
2011-03-04 07:56:10 +00:00
|
|
|
private WhitelistDictionary mWhiteListDictionary;
|
2011-03-04 00:02:28 +00:00
|
|
|
private final Map<String, Dictionary> mUnigramDictionaries = new HashMap<String, Dictionary>();
|
|
|
|
private final Map<String, Dictionary> mBigramDictionaries = new HashMap<String, Dictionary>();
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-06-14 07:28:57 +00:00
|
|
|
private int mPrefMaxSuggestions = 18;
|
2009-07-17 19:51:45 +00:00
|
|
|
|
2010-08-20 05:35:02 +00:00
|
|
|
private static final int PREF_MAX_BIGRAMS = 60;
|
|
|
|
|
2010-12-11 08:06:24 +00:00
|
|
|
private double mAutoCorrectionThreshold;
|
2011-03-15 18:46:32 +00:00
|
|
|
private int[] mScores = new int[mPrefMaxSuggestions];
|
|
|
|
private int[] mBigramScores = new int[PREF_MAX_BIGRAMS];
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2009-10-28 01:08:19 +00:00
|
|
|
private ArrayList<CharSequence> mSuggestions = new ArrayList<CharSequence>();
|
2012-03-13 07:52:42 +00:00
|
|
|
private ArrayList<CharSequence> mBigramSuggestions = new ArrayList<CharSequence>();
|
2011-11-18 11:03:38 +00:00
|
|
|
private CharSequence mConsideredWord;
|
2010-09-27 15:32:35 +00:00
|
|
|
|
|
|
|
// TODO: Remove these member variables by passing more context to addWord() callback method
|
|
|
|
private boolean mIsFirstCharCapitalized;
|
|
|
|
private boolean mIsAllUpperCase;
|
2011-11-29 05:15:41 +00:00
|
|
|
private int mTrailingSingleQuotesCount;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2012-03-08 08:07:02 +00:00
|
|
|
private static final int MINIMUM_SAFETY_NET_CHAR_LENGTH = 4;
|
|
|
|
|
2011-07-21 09:01:58 +00:00
|
|
|
public Suggest(final Context context, final int dictionaryResId, final Locale locale) {
|
|
|
|
initAsynchronously(context, dictionaryResId, locale);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
2011-10-06 06:57:43 +00:00
|
|
|
/* package for test */ Suggest(final Context context, final File dictionary,
|
|
|
|
final long startOffset, final long length, final Flag[] flagArray,
|
|
|
|
final Locale locale) {
|
2012-01-13 05:32:44 +00:00
|
|
|
initSynchronously(context, DictionaryFactory.createDictionaryForTest(context, dictionary,
|
2011-10-06 06:57:43 +00:00
|
|
|
startOffset, length, flagArray), locale);
|
2011-03-02 06:40:08 +00:00
|
|
|
}
|
|
|
|
|
2011-10-06 06:57:43 +00:00
|
|
|
private void initWhitelistAndAutocorrectAndPool(final Context context, final Locale locale) {
|
|
|
|
mWhiteListDictionary = new WhitelistDictionary(context, locale);
|
2011-06-20 09:01:38 +00:00
|
|
|
addOrReplaceDictionary(mUnigramDictionaries, DICT_KEY_WHITELIST, mWhiteListDictionary);
|
2011-02-08 08:12:13 +00:00
|
|
|
}
|
|
|
|
|
2011-07-21 09:01:58 +00:00
|
|
|
private void initAsynchronously(final Context context, final int dictionaryResId,
|
|
|
|
final Locale locale) {
|
|
|
|
resetMainDict(context, dictionaryResId, locale);
|
|
|
|
|
|
|
|
// TODO: read the whitelist and init the pool asynchronously too.
|
2011-08-17 08:32:25 +00:00
|
|
|
// initPool should be done asynchronously now that the pool is thread-safe.
|
2011-10-06 06:57:43 +00:00
|
|
|
initWhitelistAndAutocorrectAndPool(context, locale);
|
2011-07-21 09:01:58 +00:00
|
|
|
}
|
|
|
|
|
2011-10-06 06:57:43 +00:00
|
|
|
private void initSynchronously(final Context context, final Dictionary mainDict,
|
|
|
|
final Locale locale) {
|
2011-07-21 09:01:58 +00:00
|
|
|
mMainDict = mainDict;
|
|
|
|
addOrReplaceDictionary(mUnigramDictionaries, DICT_KEY_MAIN, mainDict);
|
|
|
|
addOrReplaceDictionary(mBigramDictionaries, DICT_KEY_MAIN, mainDict);
|
2011-10-06 06:57:43 +00:00
|
|
|
initWhitelistAndAutocorrectAndPool(context, locale);
|
2011-07-21 09:01:58 +00:00
|
|
|
}
|
|
|
|
|
2011-10-28 04:31:31 +00:00
|
|
|
private static void addOrReplaceDictionary(Map<String, Dictionary> dictionaries, String key,
|
2011-06-20 09:01:38 +00:00
|
|
|
Dictionary dict) {
|
|
|
|
final Dictionary oldDict = (dict == null)
|
|
|
|
? dictionaries.remove(key)
|
|
|
|
: dictionaries.put(key, dict);
|
|
|
|
if (oldDict != null && dict != oldDict) {
|
|
|
|
oldDict.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-21 09:01:58 +00:00
|
|
|
public void resetMainDict(final Context context, final int dictionaryResId,
|
|
|
|
final Locale locale) {
|
|
|
|
mMainDict = null;
|
|
|
|
new Thread("InitializeBinaryDictionary") {
|
2011-10-03 05:28:40 +00:00
|
|
|
@Override
|
2011-07-21 09:01:58 +00:00
|
|
|
public void run() {
|
|
|
|
final Dictionary newMainDict = DictionaryFactory.createDictionaryFromManager(
|
|
|
|
context, locale, dictionaryResId);
|
|
|
|
mMainDict = newMainDict;
|
|
|
|
addOrReplaceDictionary(mUnigramDictionaries, DICT_KEY_MAIN, newMainDict);
|
|
|
|
addOrReplaceDictionary(mBigramDictionaries, DICT_KEY_MAIN, newMainDict);
|
|
|
|
}
|
|
|
|
}.start();
|
2011-03-14 18:46:15 +00:00
|
|
|
}
|
|
|
|
|
2011-08-08 09:33:56 +00:00
|
|
|
// The main dictionary could have been loaded asynchronously. Don't cache the return value
|
|
|
|
// of this method.
|
2009-12-18 21:39:18 +00:00
|
|
|
public boolean hasMainDictionary() {
|
2011-04-26 12:49:09 +00:00
|
|
|
return mMainDict != null;
|
2009-12-18 21:39:18 +00:00
|
|
|
}
|
|
|
|
|
2011-08-09 02:54:10 +00:00
|
|
|
public ContactsDictionary getContactsDictionary() {
|
|
|
|
return mContactsDict;
|
|
|
|
}
|
|
|
|
|
2011-03-04 07:56:10 +00:00
|
|
|
public Map<String, Dictionary> getUnigramDictionaries() {
|
|
|
|
return mUnigramDictionaries;
|
|
|
|
}
|
|
|
|
|
2010-08-20 05:35:02 +00:00
|
|
|
public int getApproxMaxWordLength() {
|
|
|
|
return APPROX_MAX_WORD_LENGTH;
|
|
|
|
}
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
/**
|
|
|
|
* Sets an optional user dictionary resource to be loaded. The user dictionary is consulted
|
2011-07-14 22:57:26 +00:00
|
|
|
* before the main dictionary, if set. This refers to the system-managed user dictionary.
|
2009-03-13 22:11:42 +00:00
|
|
|
*/
|
|
|
|
public void setUserDictionary(Dictionary userDictionary) {
|
2011-06-20 09:01:38 +00:00
|
|
|
addOrReplaceDictionary(mUnigramDictionaries, DICT_KEY_USER, userDictionary);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2009-07-28 23:48:47 +00:00
|
|
|
|
|
|
|
/**
|
2011-06-10 09:16:21 +00:00
|
|
|
* Sets an optional contacts dictionary resource to be loaded. It is also possible to remove
|
|
|
|
* the contacts dictionary by passing null to this method. In this case no contacts dictionary
|
|
|
|
* won't be used.
|
2009-07-28 23:48:47 +00:00
|
|
|
*/
|
2011-08-09 02:54:10 +00:00
|
|
|
public void setContactsDictionary(ContactsDictionary contactsDictionary) {
|
|
|
|
mContactsDict = contactsDictionary;
|
2011-06-20 09:01:38 +00:00
|
|
|
addOrReplaceDictionary(mUnigramDictionaries, DICT_KEY_CONTACTS, contactsDictionary);
|
|
|
|
addOrReplaceDictionary(mBigramDictionaries, DICT_KEY_CONTACTS, contactsDictionary);
|
2009-07-28 23:48:47 +00:00
|
|
|
}
|
2011-01-07 06:01:51 +00:00
|
|
|
|
2011-07-14 22:57:26 +00:00
|
|
|
public void setUserUnigramDictionary(Dictionary userUnigramDictionary) {
|
|
|
|
addOrReplaceDictionary(mUnigramDictionaries, DICT_KEY_USER_UNIGRAM, userUnigramDictionary);
|
2009-07-17 19:51:45 +00:00
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2010-08-20 05:35:02 +00:00
|
|
|
public void setUserBigramDictionary(Dictionary userBigramDictionary) {
|
2011-06-20 09:01:38 +00:00
|
|
|
addOrReplaceDictionary(mBigramDictionaries, DICT_KEY_USER_BIGRAM, userBigramDictionary);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
2010-12-11 08:06:24 +00:00
|
|
|
public void setAutoCorrectionThreshold(double threshold) {
|
|
|
|
mAutoCorrectionThreshold = threshold;
|
2010-09-28 03:23:26 +00:00
|
|
|
}
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
/**
|
|
|
|
* Number of suggestions to generate from the input key sequence. This has
|
|
|
|
* to be a number between 1 and 100 (inclusive).
|
|
|
|
* @param maxSuggestions
|
|
|
|
* @throws IllegalArgumentException if the number is out of range
|
|
|
|
*/
|
|
|
|
public void setMaxSuggestions(int maxSuggestions) {
|
|
|
|
if (maxSuggestions < 1 || maxSuggestions > 100) {
|
|
|
|
throw new IllegalArgumentException("maxSuggestions must be between 1 and 100");
|
|
|
|
}
|
|
|
|
mPrefMaxSuggestions = maxSuggestions;
|
2011-03-15 18:46:32 +00:00
|
|
|
mScores = new int[mPrefMaxSuggestions];
|
|
|
|
mBigramScores = new int[PREF_MAX_BIGRAMS];
|
2012-03-13 07:52:42 +00:00
|
|
|
mSuggestions = new ArrayList<CharSequence>(mPrefMaxSuggestions);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2009-07-30 17:11:33 +00:00
|
|
|
|
2011-03-04 07:56:10 +00:00
|
|
|
private CharSequence capitalizeWord(boolean all, boolean first, CharSequence word) {
|
|
|
|
if (TextUtils.isEmpty(word) || !(all || first)) return word;
|
|
|
|
final int wordLength = word.length();
|
2012-03-13 07:52:42 +00:00
|
|
|
final StringBuilder sb = new StringBuilder(getApproxMaxWordLength());
|
2011-06-21 07:00:58 +00:00
|
|
|
// TODO: Must pay attention to locale when changing case.
|
2011-03-04 07:56:10 +00:00
|
|
|
if (all) {
|
|
|
|
sb.append(word.toString().toUpperCase());
|
|
|
|
} else if (first) {
|
|
|
|
sb.append(Character.toUpperCase(word.charAt(0)));
|
|
|
|
if (wordLength > 1) {
|
|
|
|
sb.append(word.subSequence(1, wordLength));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sb;
|
|
|
|
}
|
|
|
|
|
2011-04-20 02:50:05 +00:00
|
|
|
protected void addBigramToSuggestions(CharSequence bigram) {
|
2012-03-13 07:52:42 +00:00
|
|
|
final StringBuilder sb = new StringBuilder(getApproxMaxWordLength());
|
2011-08-23 05:30:26 +00:00
|
|
|
sb.append(bigram);
|
|
|
|
mSuggestions.add(sb);
|
2011-04-20 02:50:05 +00:00
|
|
|
}
|
|
|
|
|
2012-03-09 09:01:31 +00:00
|
|
|
private static final WordComposer sEmptyWordComposer = new WordComposer();
|
2012-03-09 09:24:41 +00:00
|
|
|
public SuggestedWords.Builder getBigramPredictionWordBuilder(CharSequence prevWordForBigram) {
|
2012-03-09 09:01:31 +00:00
|
|
|
LatinImeLogger.onStartSuggestion(prevWordForBigram);
|
2012-03-09 09:04:44 +00:00
|
|
|
mIsFirstCharCapitalized = false;
|
|
|
|
mIsAllUpperCase = false;
|
|
|
|
mTrailingSingleQuotesCount = 0;
|
2012-03-13 07:52:42 +00:00
|
|
|
mSuggestions = new ArrayList<CharSequence>(mPrefMaxSuggestions);
|
2012-03-09 09:01:31 +00:00
|
|
|
Arrays.fill(mScores, 0);
|
|
|
|
|
|
|
|
// Treating USER_TYPED as UNIGRAM suggestion for logging now.
|
2012-03-09 09:18:24 +00:00
|
|
|
LatinImeLogger.onAddSuggestedWord("", Suggest.DIC_USER_TYPED, Dictionary.UNIGRAM);
|
2012-03-09 09:15:45 +00:00
|
|
|
mConsideredWord = "";
|
2012-03-09 09:01:31 +00:00
|
|
|
|
2012-03-09 09:24:41 +00:00
|
|
|
Arrays.fill(mBigramScores, 0);
|
2012-03-13 07:52:42 +00:00
|
|
|
mBigramSuggestions = new ArrayList<CharSequence>(PREF_MAX_BIGRAMS);
|
2012-03-09 09:24:41 +00:00
|
|
|
|
2012-03-09 09:36:07 +00:00
|
|
|
CharSequence lowerPrevWord = prevWordForBigram.toString().toLowerCase();
|
|
|
|
if (mMainDict != null && mMainDict.isValidWord(lowerPrevWord)) {
|
|
|
|
prevWordForBigram = lowerPrevWord;
|
|
|
|
}
|
|
|
|
for (final Dictionary dictionary : mBigramDictionaries.values()) {
|
|
|
|
dictionary.getBigrams(sEmptyWordComposer, prevWordForBigram, this);
|
|
|
|
}
|
|
|
|
// Nothing entered: return all bigrams for the previous word
|
|
|
|
int insertCount = Math.min(mBigramSuggestions.size(), mPrefMaxSuggestions);
|
|
|
|
for (int i = 0; i < insertCount; ++i) {
|
|
|
|
addBigramToSuggestions(mBigramSuggestions.get(i));
|
2012-03-09 09:01:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StringUtils.removeDupes(mSuggestions);
|
|
|
|
|
2012-03-13 06:05:44 +00:00
|
|
|
return new SuggestedWords.Builder()
|
|
|
|
.addWords(SuggestedWords.Builder.getFromCharSequenceList(mSuggestions))
|
2012-03-09 09:18:24 +00:00
|
|
|
.setAllowsToBeAutoCorrected(false)
|
2012-03-09 09:15:45 +00:00
|
|
|
.setHasAutoCorrection(false);
|
2012-03-09 09:01:31 +00:00
|
|
|
}
|
|
|
|
|
2010-12-10 11:50:30 +00:00
|
|
|
// TODO: cleanup dictionaries looking up and suggestions building with SuggestedWords.Builder
|
2011-10-03 05:28:40 +00:00
|
|
|
public SuggestedWords.Builder getSuggestedWordBuilder(
|
2011-08-04 03:08:22 +00:00
|
|
|
final WordComposer wordComposer, CharSequence prevWordForBigram,
|
2011-12-08 13:04:06 +00:00
|
|
|
final ProximityInfo proximityInfo, final int correctionMode) {
|
2010-08-20 05:35:02 +00:00
|
|
|
LatinImeLogger.onStartSuggestion(prevWordForBigram);
|
2010-09-27 15:32:35 +00:00
|
|
|
mIsFirstCharCapitalized = wordComposer.isFirstCharCapitalized();
|
|
|
|
mIsAllUpperCase = wordComposer.isAllUpperCase();
|
2011-11-29 05:15:41 +00:00
|
|
|
mTrailingSingleQuotesCount = wordComposer.trailingSingleQuotesCount();
|
2012-03-13 07:52:42 +00:00
|
|
|
mSuggestions = new ArrayList<CharSequence>(mPrefMaxSuggestions);
|
2011-03-15 18:46:32 +00:00
|
|
|
Arrays.fill(mScores, 0);
|
2010-02-05 22:07:04 +00:00
|
|
|
|
2011-11-18 11:03:38 +00:00
|
|
|
final String typedWord = wordComposer.getTypedWord();
|
2011-11-29 05:15:41 +00:00
|
|
|
final String consideredWord = mTrailingSingleQuotesCount > 0
|
|
|
|
? typedWord.substring(0, typedWord.length() - mTrailingSingleQuotesCount)
|
|
|
|
: typedWord;
|
2012-03-09 05:48:03 +00:00
|
|
|
// Treating USER_TYPED as UNIGRAM suggestion for logging now.
|
|
|
|
LatinImeLogger.onAddSuggestedWord(typedWord, Suggest.DIC_USER_TYPED,
|
|
|
|
Dictionary.UNIGRAM);
|
2011-11-18 11:03:38 +00:00
|
|
|
mConsideredWord = consideredWord;
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2012-03-09 08:31:53 +00:00
|
|
|
// TODO: Change this scheme - a boolean is not enough. A whitelisted word may be "valid"
|
|
|
|
// but still autocorrected from - in the case the whitelist only capitalizes the word.
|
|
|
|
// The whitelist should be case-insensitive, so it's not possible to be consistent with
|
|
|
|
// a boolean flag. Right now this is handled with a slight hack in
|
|
|
|
// WhitelistDictionary#shouldForciblyAutoCorrectFrom.
|
|
|
|
final boolean allowsToBeAutoCorrected = AutoCorrection.allowsToBeAutoCorrected(
|
|
|
|
getUnigramDictionaries(), consideredWord, wordComposer.isFirstCharCapitalized());
|
|
|
|
|
2011-12-08 13:04:06 +00:00
|
|
|
if (wordComposer.size() <= 1 && (correctionMode == CORRECTION_FULL_BIGRAM)) {
|
2010-08-20 05:35:02 +00:00
|
|
|
// At first character typed, search only the bigrams
|
2011-03-15 18:46:32 +00:00
|
|
|
Arrays.fill(mBigramScores, 0);
|
2012-03-13 07:52:42 +00:00
|
|
|
mBigramSuggestions = new ArrayList<CharSequence>(PREF_MAX_BIGRAMS);
|
2010-08-20 05:35:02 +00:00
|
|
|
|
|
|
|
if (!TextUtils.isEmpty(prevWordForBigram)) {
|
|
|
|
CharSequence lowerPrevWord = prevWordForBigram.toString().toLowerCase();
|
2011-01-07 06:01:51 +00:00
|
|
|
if (mMainDict != null && mMainDict.isValidWord(lowerPrevWord)) {
|
2010-08-20 05:35:02 +00:00
|
|
|
prevWordForBigram = lowerPrevWord;
|
|
|
|
}
|
2011-03-04 00:02:28 +00:00
|
|
|
for (final Dictionary dictionary : mBigramDictionaries.values()) {
|
|
|
|
dictionary.getBigrams(wordComposer, prevWordForBigram, this);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
2011-11-18 11:03:38 +00:00
|
|
|
if (TextUtils.isEmpty(consideredWord)) {
|
2011-04-20 02:50:05 +00:00
|
|
|
// Nothing entered: return all bigrams for the previous word
|
|
|
|
int insertCount = Math.min(mBigramSuggestions.size(), mPrefMaxSuggestions);
|
|
|
|
for (int i = 0; i < insertCount; ++i) {
|
|
|
|
addBigramToSuggestions(mBigramSuggestions.get(i));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Word entered: return only bigrams that match the first char of the typed word
|
2011-11-18 11:03:38 +00:00
|
|
|
final char currentChar = consideredWord.charAt(0);
|
2011-06-21 07:00:58 +00:00
|
|
|
// TODO: Must pay attention to locale when changing case.
|
2011-04-20 02:50:05 +00:00
|
|
|
final char currentCharUpper = Character.toUpperCase(currentChar);
|
|
|
|
int count = 0;
|
|
|
|
final int bigramSuggestionSize = mBigramSuggestions.size();
|
|
|
|
for (int i = 0; i < bigramSuggestionSize; i++) {
|
|
|
|
final CharSequence bigramSuggestion = mBigramSuggestions.get(i);
|
|
|
|
final char bigramSuggestionFirstChar = bigramSuggestion.charAt(0);
|
|
|
|
if (bigramSuggestionFirstChar == currentChar
|
|
|
|
|| bigramSuggestionFirstChar == currentCharUpper) {
|
|
|
|
addBigramToSuggestions(bigramSuggestion);
|
|
|
|
if (++count > mPrefMaxSuggestions) break;
|
|
|
|
}
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (wordComposer.size() > 1) {
|
|
|
|
// At second character typed, search the unigrams (scores being affected by bigrams)
|
2011-03-04 00:02:28 +00:00
|
|
|
for (final String key : mUnigramDictionaries.keySet()) {
|
2011-07-14 22:57:26 +00:00
|
|
|
// Skip UserUnigramDictionary and WhitelistDictionary to lookup
|
|
|
|
if (key.equals(DICT_KEY_USER_UNIGRAM) || key.equals(DICT_KEY_WHITELIST))
|
2011-03-04 00:02:28 +00:00
|
|
|
continue;
|
|
|
|
final Dictionary dictionary = mUnigramDictionaries.get(key);
|
2011-11-29 05:15:41 +00:00
|
|
|
if (mTrailingSingleQuotesCount > 0) {
|
2011-11-18 11:03:38 +00:00
|
|
|
final WordComposer tmpWordComposer = new WordComposer(wordComposer);
|
2011-11-29 05:15:41 +00:00
|
|
|
for (int i = mTrailingSingleQuotesCount - 1; i >= 0; --i) {
|
|
|
|
tmpWordComposer.deleteLast();
|
|
|
|
}
|
2011-11-18 11:03:38 +00:00
|
|
|
dictionary.getWords(tmpWordComposer, this, proximityInfo);
|
|
|
|
} else {
|
|
|
|
dictionary.getWords(wordComposer, this, proximityInfo);
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-02 06:40:08 +00:00
|
|
|
|
2011-03-04 07:56:10 +00:00
|
|
|
CharSequence whitelistedWord = capitalizeWord(mIsAllUpperCase, mIsFirstCharCapitalized,
|
2012-03-09 09:10:13 +00:00
|
|
|
mWhiteListDictionary.getWhitelistedWord(consideredWord));
|
2011-03-04 07:56:10 +00:00
|
|
|
|
2012-03-09 08:53:20 +00:00
|
|
|
final boolean hasAutoCorrection;
|
2012-03-09 03:51:15 +00:00
|
|
|
if (CORRECTION_FULL == correctionMode
|
|
|
|
|| CORRECTION_FULL_BIGRAM == correctionMode) {
|
|
|
|
final CharSequence autoCorrection =
|
|
|
|
AutoCorrection.computeAutoCorrectionWord(mUnigramDictionaries, wordComposer,
|
|
|
|
mSuggestions, mScores, consideredWord, mAutoCorrectionThreshold,
|
|
|
|
whitelistedWord);
|
2012-03-09 08:53:20 +00:00
|
|
|
hasAutoCorrection = (null != autoCorrection);
|
2012-03-09 03:51:15 +00:00
|
|
|
} else {
|
2012-03-09 08:53:20 +00:00
|
|
|
hasAutoCorrection = false;
|
2012-03-09 03:51:15 +00:00
|
|
|
}
|
2011-03-02 06:40:08 +00:00
|
|
|
|
2011-03-04 07:56:10 +00:00
|
|
|
if (whitelistedWord != null) {
|
2011-11-29 05:15:41 +00:00
|
|
|
if (mTrailingSingleQuotesCount > 0) {
|
|
|
|
final StringBuilder sb = new StringBuilder(whitelistedWord);
|
|
|
|
for (int i = mTrailingSingleQuotesCount - 1; i >= 0; --i) {
|
|
|
|
sb.appendCodePoint(Keyboard.CODE_SINGLE_QUOTE);
|
|
|
|
}
|
|
|
|
mSuggestions.add(0, sb.toString());
|
|
|
|
} else {
|
|
|
|
mSuggestions.add(0, whitelistedWord);
|
|
|
|
}
|
2011-03-04 07:56:10 +00:00
|
|
|
}
|
|
|
|
|
2012-03-09 09:10:13 +00:00
|
|
|
mSuggestions.add(0, typedWord);
|
2012-03-08 08:07:02 +00:00
|
|
|
StringUtils.removeDupes(mSuggestions);
|
2011-03-02 06:40:08 +00:00
|
|
|
|
2012-03-09 10:42:20 +00:00
|
|
|
final SuggestedWords.Builder builder;
|
2011-01-31 05:49:33 +00:00
|
|
|
if (DBG) {
|
2012-03-12 09:56:02 +00:00
|
|
|
// TODO: this doesn't take into account the fact that removing dupes from mSuggestions
|
|
|
|
// may have made mScores[] and mSuggestions out of sync.
|
2012-03-08 11:35:47 +00:00
|
|
|
final CharSequence autoCorrectionSuggestion = mSuggestions.get(0);
|
|
|
|
final int autoCorrectionSuggestionScore = mScores[0];
|
|
|
|
double normalizedScore = BinaryDictionary.calcNormalizedScore(
|
2012-03-09 09:10:13 +00:00
|
|
|
typedWord, autoCorrectionSuggestion.toString(),
|
2012-03-08 11:35:47 +00:00
|
|
|
autoCorrectionSuggestionScore);
|
2011-03-15 18:46:32 +00:00
|
|
|
ArrayList<SuggestedWords.SuggestedWordInfo> scoreInfoList =
|
2011-01-31 05:49:33 +00:00
|
|
|
new ArrayList<SuggestedWords.SuggestedWordInfo>();
|
2012-03-12 09:56:02 +00:00
|
|
|
scoreInfoList.add(new SuggestedWords.SuggestedWordInfo(autoCorrectionSuggestion, "+",
|
|
|
|
false));
|
|
|
|
final int suggestionsSize = mSuggestions.size();
|
|
|
|
// Note: i here is the index in mScores[], but the index in mSuggestions is one more
|
|
|
|
// than i because we added the typed word to mSuggestions without touching mScores.
|
|
|
|
for (int i = 0; i < mScores.length && i < suggestionsSize - 1; ++i) {
|
2011-01-31 05:49:33 +00:00
|
|
|
if (normalizedScore > 0) {
|
2011-03-15 00:23:26 +00:00
|
|
|
final String scoreThreshold = String.format("%d (%4.2f)", mScores[i],
|
|
|
|
normalizedScore);
|
2011-03-15 18:46:32 +00:00
|
|
|
scoreInfoList.add(
|
2012-03-12 09:56:02 +00:00
|
|
|
new SuggestedWords.SuggestedWordInfo(mSuggestions.get(i + 1),
|
|
|
|
scoreThreshold, false));
|
2011-01-31 05:49:33 +00:00
|
|
|
normalizedScore = 0.0;
|
|
|
|
} else {
|
2011-03-15 18:46:32 +00:00
|
|
|
final String score = Integer.toString(mScores[i]);
|
2012-03-12 09:56:02 +00:00
|
|
|
scoreInfoList.add(new SuggestedWords.SuggestedWordInfo(mSuggestions.get(i + 1),
|
|
|
|
score, false));
|
2011-01-31 05:49:33 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-12 09:56:02 +00:00
|
|
|
for (int i = mScores.length; i < suggestionsSize; ++i) {
|
|
|
|
scoreInfoList.add(new SuggestedWords.SuggestedWordInfo(mSuggestions.get(i),
|
|
|
|
"--", false));
|
2011-01-31 05:49:33 +00:00
|
|
|
}
|
2012-03-13 06:05:44 +00:00
|
|
|
builder = new SuggestedWords.Builder().addWords(scoreInfoList)
|
2012-03-09 10:42:20 +00:00
|
|
|
.setAllowsToBeAutoCorrected(allowsToBeAutoCorrected)
|
|
|
|
.setHasAutoCorrection(hasAutoCorrection);
|
|
|
|
} else {
|
2012-03-13 06:05:44 +00:00
|
|
|
builder = new SuggestedWords.Builder()
|
|
|
|
.addWords(SuggestedWords.Builder.getFromCharSequenceList(mSuggestions))
|
2012-03-09 08:53:20 +00:00
|
|
|
.setAllowsToBeAutoCorrected(allowsToBeAutoCorrected)
|
|
|
|
.setHasAutoCorrection(hasAutoCorrection);
|
2011-01-31 05:49:33 +00:00
|
|
|
}
|
2012-03-09 10:42:20 +00:00
|
|
|
|
|
|
|
boolean autoCorrectionAvailable = hasAutoCorrection;
|
|
|
|
if (correctionMode == Suggest.CORRECTION_FULL
|
|
|
|
|| correctionMode == Suggest.CORRECTION_FULL_BIGRAM) {
|
|
|
|
autoCorrectionAvailable |= !allowsToBeAutoCorrected;
|
|
|
|
}
|
|
|
|
// Don't auto-correct words with multiple capital letter
|
|
|
|
autoCorrectionAvailable &= !wordComposer.isMostlyCaps();
|
|
|
|
builder.setTypedWordValid(!allowsToBeAutoCorrected).setHasMinimalSuggestion(
|
|
|
|
autoCorrectionAvailable);
|
2012-03-09 12:33:47 +00:00
|
|
|
if (allowsToBeAutoCorrected && builder.size() > 1 && mAutoCorrectionThreshold > 0
|
2012-03-09 12:44:40 +00:00
|
|
|
&& Suggest.shouldBlockAutoCorrectionBySafetyNet(typedWord, builder.getWord(1))) {
|
2012-03-09 10:42:20 +00:00
|
|
|
builder.setShouldBlockAutoCorrectionBySafetyNet();
|
|
|
|
}
|
|
|
|
return builder;
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
@Override
|
2011-03-15 18:46:32 +00:00
|
|
|
public boolean addWord(final char[] word, final int offset, final int length, int score,
|
2012-01-26 03:49:43 +00:00
|
|
|
final int dicTypeId, final int dataType) {
|
|
|
|
int dataTypeForLog = dataType;
|
2011-03-15 18:46:32 +00:00
|
|
|
final ArrayList<CharSequence> suggestions;
|
|
|
|
final int[] sortedScores;
|
|
|
|
final int prefMaxSuggestions;
|
2012-01-26 03:49:43 +00:00
|
|
|
if (dataType == Dictionary.BIGRAM) {
|
2010-08-20 05:35:02 +00:00
|
|
|
suggestions = mBigramSuggestions;
|
2011-03-15 18:46:32 +00:00
|
|
|
sortedScores = mBigramScores;
|
2010-08-20 05:35:02 +00:00
|
|
|
prefMaxSuggestions = PREF_MAX_BIGRAMS;
|
|
|
|
} else {
|
|
|
|
suggestions = mSuggestions;
|
2011-03-15 18:46:32 +00:00
|
|
|
sortedScores = mScores;
|
2010-08-20 05:35:02 +00:00
|
|
|
prefMaxSuggestions = mPrefMaxSuggestions;
|
|
|
|
}
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
int pos = 0;
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
// Check if it's the same word, only caps are different
|
2012-03-08 08:07:02 +00:00
|
|
|
if (StringUtils.equalsIgnoreCase(mConsideredWord, word, offset, length)) {
|
Avoid the removal of high-ranking exactly typed candidates.
It used to be the case that the scoring system turns up the same word
that was entered with a different capitalization, but with a lower
score than some other, more frequent word. To cope with this, there
was code that would order such candidates in the first slot no matter
what. This processing is now useless because fully matching words now
have a huge boost that ensures they will get to the top of the list,
before any non-fully matching word (which means, differing only by
capitalization or accents).
The bug that did happen with this was, if a fully-matching word got
matched by several processing passes, and the (chronologically) later
score affected to this word was weaker, it would result in the
duplicate removal pass removing the stronger score. This in turn would
mess with autocorrect.
In an effort to keep the risk at a minimum for MR1, this change does
not actually remove the useless code, but adds a check in the odd case
to avoid the bad situation. Another change will remove the code for
ICS release.
bug: 4100269
Change-Id: I18c0575332981ffec0e257e26a360995838d521e
2011-03-15 22:56:29 +00:00
|
|
|
// TODO: remove this surrounding if clause and move this logic to
|
|
|
|
// getSuggestedWordBuilder.
|
|
|
|
if (suggestions.size() > 0) {
|
2011-03-15 18:46:32 +00:00
|
|
|
final String currentHighestWord = suggestions.get(0).toString();
|
Avoid the removal of high-ranking exactly typed candidates.
It used to be the case that the scoring system turns up the same word
that was entered with a different capitalization, but with a lower
score than some other, more frequent word. To cope with this, there
was code that would order such candidates in the first slot no matter
what. This processing is now useless because fully matching words now
have a huge boost that ensures they will get to the top of the list,
before any non-fully matching word (which means, differing only by
capitalization or accents).
The bug that did happen with this was, if a fully-matching word got
matched by several processing passes, and the (chronologically) later
score affected to this word was weaker, it would result in the
duplicate removal pass removing the stronger score. This in turn would
mess with autocorrect.
In an effort to keep the risk at a minimum for MR1, this change does
not actually remove the useless code, but adds a check in the odd case
to avoid the bad situation. Another change will remove the code for
ICS release.
bug: 4100269
Change-Id: I18c0575332981ffec0e257e26a360995838d521e
2011-03-15 22:56:29 +00:00
|
|
|
// If the current highest word is also equal to typed word, we need to compare
|
|
|
|
// frequency to determine the insertion position. This does not ensure strictly
|
|
|
|
// correct ordering, but ensures the top score is on top which is enough for
|
|
|
|
// removing duplicates correctly.
|
2012-03-08 08:07:02 +00:00
|
|
|
if (StringUtils.equalsIgnoreCase(currentHighestWord, word, offset, length)
|
2011-03-15 18:46:32 +00:00
|
|
|
&& score <= sortedScores[0]) {
|
Avoid the removal of high-ranking exactly typed candidates.
It used to be the case that the scoring system turns up the same word
that was entered with a different capitalization, but with a lower
score than some other, more frequent word. To cope with this, there
was code that would order such candidates in the first slot no matter
what. This processing is now useless because fully matching words now
have a huge boost that ensures they will get to the top of the list,
before any non-fully matching word (which means, differing only by
capitalization or accents).
The bug that did happen with this was, if a fully-matching word got
matched by several processing passes, and the (chronologically) later
score affected to this word was weaker, it would result in the
duplicate removal pass removing the stronger score. This in turn would
mess with autocorrect.
In an effort to keep the risk at a minimum for MR1, this change does
not actually remove the useless code, but adds a check in the odd case
to avoid the bad situation. Another change will remove the code for
ICS release.
bug: 4100269
Change-Id: I18c0575332981ffec0e257e26a360995838d521e
2011-03-15 22:56:29 +00:00
|
|
|
pos = 1;
|
|
|
|
}
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
} else {
|
2012-01-26 03:49:43 +00:00
|
|
|
if (dataType == Dictionary.UNIGRAM) {
|
2010-08-20 05:35:02 +00:00
|
|
|
// Check if the word was already added before (by bigram data)
|
|
|
|
int bigramSuggestion = searchBigramSuggestion(word,offset,length);
|
|
|
|
if(bigramSuggestion >= 0) {
|
2012-01-26 03:49:43 +00:00
|
|
|
dataTypeForLog = Dictionary.BIGRAM;
|
2010-08-20 05:35:02 +00:00
|
|
|
// turn freq from bigram into multiplier specified above
|
2011-03-15 18:46:32 +00:00
|
|
|
double multiplier = (((double) mBigramScores[bigramSuggestion])
|
2010-08-20 05:35:02 +00:00
|
|
|
/ MAXIMUM_BIGRAM_FREQUENCY)
|
|
|
|
* (BIGRAM_MULTIPLIER_MAX - BIGRAM_MULTIPLIER_MIN)
|
|
|
|
+ BIGRAM_MULTIPLIER_MIN;
|
|
|
|
/* Log.d(TAG,"bigram num: " + bigramSuggestion
|
|
|
|
+ " wordB: " + mBigramSuggestions.get(bigramSuggestion).toString()
|
2011-03-15 18:46:32 +00:00
|
|
|
+ " currentScore: " + score + " bigramScore: "
|
|
|
|
+ mBigramScores[bigramSuggestion]
|
2010-08-20 05:35:02 +00:00
|
|
|
+ " multiplier: " + multiplier); */
|
2011-03-15 18:46:32 +00:00
|
|
|
score = (int)Math.round((score * multiplier));
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-15 18:46:32 +00:00
|
|
|
// Check the last one's score and bail
|
|
|
|
if (sortedScores[prefMaxSuggestions - 1] >= score) return true;
|
2009-03-13 22:11:42 +00:00
|
|
|
while (pos < prefMaxSuggestions) {
|
2011-03-15 18:46:32 +00:00
|
|
|
if (sortedScores[pos] < score
|
|
|
|
|| (sortedScores[pos] == score && length < suggestions.get(pos).length())) {
|
2009-03-13 22:11:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pos >= prefMaxSuggestions) {
|
|
|
|
return true;
|
|
|
|
}
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-03-15 18:46:32 +00:00
|
|
|
System.arraycopy(sortedScores, pos, sortedScores, pos + 1, prefMaxSuggestions - pos - 1);
|
|
|
|
sortedScores[pos] = score;
|
2012-03-13 07:52:42 +00:00
|
|
|
final StringBuilder sb = new StringBuilder(getApproxMaxWordLength());
|
2011-06-21 07:00:58 +00:00
|
|
|
// TODO: Must pay attention to locale when changing case.
|
2010-09-27 15:32:35 +00:00
|
|
|
if (mIsAllUpperCase) {
|
|
|
|
sb.append(new String(word, offset, length).toUpperCase());
|
|
|
|
} else if (mIsFirstCharCapitalized) {
|
2010-01-16 02:21:58 +00:00
|
|
|
sb.append(Character.toUpperCase(word[offset]));
|
|
|
|
if (length > 1) {
|
|
|
|
sb.append(word, offset + 1, length - 1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sb.append(word, offset, length);
|
|
|
|
}
|
2011-11-29 05:15:41 +00:00
|
|
|
for (int i = mTrailingSingleQuotesCount - 1; i >= 0; --i) {
|
2011-11-18 11:03:38 +00:00
|
|
|
sb.appendCodePoint(Keyboard.CODE_SINGLE_QUOTE);
|
|
|
|
}
|
2010-08-20 05:35:02 +00:00
|
|
|
suggestions.add(pos, sb);
|
|
|
|
if (suggestions.size() > prefMaxSuggestions) {
|
2012-03-13 07:52:42 +00:00
|
|
|
suggestions.remove(prefMaxSuggestions);
|
2010-08-20 05:35:02 +00:00
|
|
|
} else {
|
|
|
|
LatinImeLogger.onAddSuggestedWord(sb.toString(), dicTypeId, dataTypeForLog);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-08-20 05:35:02 +00:00
|
|
|
private int searchBigramSuggestion(final char[] word, final int offset, final int length) {
|
|
|
|
// TODO This is almost O(n^2). Might need fix.
|
|
|
|
// search whether the word appeared in bigram data
|
|
|
|
int bigramSuggestSize = mBigramSuggestions.size();
|
|
|
|
for(int i = 0; i < bigramSuggestSize; i++) {
|
|
|
|
if(mBigramSuggestions.get(i).length() == length) {
|
|
|
|
boolean chk = true;
|
|
|
|
for(int j = 0; j < length; j++) {
|
|
|
|
if(mBigramSuggestions.get(i).charAt(j) != word[offset+j]) {
|
|
|
|
chk = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(chk) return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-10-12 20:48:35 +00:00
|
|
|
public void close() {
|
2011-03-04 00:02:28 +00:00
|
|
|
final Set<Dictionary> dictionaries = new HashSet<Dictionary>();
|
|
|
|
dictionaries.addAll(mUnigramDictionaries.values());
|
|
|
|
dictionaries.addAll(mBigramDictionaries.values());
|
|
|
|
for (final Dictionary dictionary : dictionaries) {
|
|
|
|
dictionary.close();
|
2009-10-12 20:48:35 +00:00
|
|
|
}
|
2011-03-04 00:02:28 +00:00
|
|
|
mMainDict = null;
|
2009-10-12 20:48:35 +00:00
|
|
|
}
|
2012-03-08 08:07:02 +00:00
|
|
|
|
|
|
|
// TODO: Resolve the inconsistencies between the native auto correction algorithms and
|
|
|
|
// this safety net
|
2012-03-09 12:44:40 +00:00
|
|
|
public static boolean shouldBlockAutoCorrectionBySafetyNet(final String typedWord,
|
|
|
|
final CharSequence suggestion) {
|
2012-03-08 08:07:02 +00:00
|
|
|
// Safety net for auto correction.
|
2012-03-09 12:33:47 +00:00
|
|
|
// Actually if we hit this safety net, it's a bug.
|
2012-03-08 08:07:02 +00:00
|
|
|
// If user selected aggressive auto correction mode, there is no need to use the safety
|
|
|
|
// net.
|
|
|
|
// If the length of typed word is less than MINIMUM_SAFETY_NET_CHAR_LENGTH,
|
|
|
|
// we should not use net because relatively edit distance can be big.
|
2012-03-09 12:44:40 +00:00
|
|
|
final int typedWordLength = typedWord.length();
|
|
|
|
if (typedWordLength < Suggest.MINIMUM_SAFETY_NET_CHAR_LENGTH) {
|
2012-03-08 08:07:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
final int maxEditDistanceOfNativeDictionary =
|
|
|
|
(typedWordLength < 5 ? 2 : typedWordLength / 2) + 1;
|
2012-03-09 12:44:40 +00:00
|
|
|
final int distance = BinaryDictionary.editDistance(typedWord, suggestion.toString());
|
2012-03-08 08:07:02 +00:00
|
|
|
if (DBG) {
|
|
|
|
Log.d(TAG, "Autocorrected edit distance = " + distance
|
|
|
|
+ ", " + maxEditDistanceOfNativeDictionary);
|
|
|
|
}
|
|
|
|
if (distance > maxEditDistanceOfNativeDictionary) {
|
|
|
|
if (DBG) {
|
2012-03-09 12:44:40 +00:00
|
|
|
Log.e(TAG, "Safety net: before = " + typedWord + ", after = " + suggestion);
|
2012-03-08 08:07:02 +00:00
|
|
|
Log.e(TAG, "(Error) The edit distance of this correction exceeds limit. "
|
|
|
|
+ "Turning off auto-correction.");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|