2010-12-10 11:50:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
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
|
2010-12-10 11:50:30 +00:00
|
|
|
*
|
2013-01-21 12:52:57 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2010-12-10 11:50:30 +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.
|
2010-12-10 11:50:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.latin;
|
|
|
|
|
2012-03-14 10:23:15 +00:00
|
|
|
import android.text.TextUtils;
|
2010-12-10 11:50:30 +00:00
|
|
|
import android.view.inputmethod.CompletionInfo;
|
|
|
|
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.utils.CollectionUtils;
|
|
|
|
import com.android.inputmethod.latin.utils.StringUtils;
|
|
|
|
|
2010-12-10 11:50:30 +00:00
|
|
|
import java.util.ArrayList;
|
2012-03-14 10:23:15 +00:00
|
|
|
import java.util.Arrays;
|
2011-01-21 06:03:09 +00:00
|
|
|
import java.util.HashSet;
|
2010-12-10 11:50:30 +00:00
|
|
|
|
2012-09-27 09:16:16 +00:00
|
|
|
public final class SuggestedWords {
|
2013-05-30 14:47:54 +00:00
|
|
|
public static final int INDEX_OF_TYPED_WORD = 0;
|
|
|
|
public static final int INDEX_OF_AUTO_CORRECTION = 1;
|
|
|
|
|
2012-08-21 07:34:55 +00:00
|
|
|
private static final ArrayList<SuggestedWordInfo> EMPTY_WORD_INFO_LIST =
|
|
|
|
CollectionUtils.newArrayList(0);
|
2012-03-14 06:33:47 +00:00
|
|
|
public static final SuggestedWords EMPTY = new SuggestedWords(
|
2012-08-21 07:34:55 +00:00
|
|
|
EMPTY_WORD_INFO_LIST, false, false, false, false, false);
|
2010-12-10 11:50:30 +00:00
|
|
|
|
|
|
|
public final boolean mTypedWordValid;
|
2012-06-28 10:45:24 +00:00
|
|
|
// Note: this INCLUDES cases where the word will auto-correct to itself. A good definition
|
|
|
|
// of what this flag means would be "the top suggestion is strong enough to auto-correct",
|
|
|
|
// whether this exactly matches the user entry or not.
|
2012-06-28 10:27:48 +00:00
|
|
|
public final boolean mWillAutoCorrect;
|
2011-06-30 01:09:21 +00:00
|
|
|
public final boolean mIsPunctuationSuggestions;
|
2012-03-15 04:12:08 +00:00
|
|
|
public final boolean mIsObsoleteSuggestions;
|
2012-05-14 05:42:40 +00:00
|
|
|
public final boolean mIsPrediction;
|
2012-03-16 15:50:51 +00:00
|
|
|
private final ArrayList<SuggestedWordInfo> mSuggestedWordInfoList;
|
2010-12-10 11:50:30 +00:00
|
|
|
|
2012-03-16 15:50:51 +00:00
|
|
|
public SuggestedWords(final ArrayList<SuggestedWordInfo> suggestedWordInfoList,
|
2012-03-14 06:33:47 +00:00
|
|
|
final boolean typedWordValid,
|
2012-06-28 10:45:24 +00:00
|
|
|
final boolean willAutoCorrect,
|
2012-03-15 04:12:08 +00:00
|
|
|
final boolean isPunctuationSuggestions,
|
2012-05-14 05:42:40 +00:00
|
|
|
final boolean isObsoleteSuggestions,
|
|
|
|
final boolean isPrediction) {
|
2012-03-14 06:33:47 +00:00
|
|
|
mSuggestedWordInfoList = suggestedWordInfoList;
|
2010-12-10 11:50:30 +00:00
|
|
|
mTypedWordValid = typedWordValid;
|
2012-06-28 10:45:24 +00:00
|
|
|
mWillAutoCorrect = willAutoCorrect;
|
2012-03-14 06:33:47 +00:00
|
|
|
mIsPunctuationSuggestions = isPunctuationSuggestions;
|
2012-03-15 04:12:08 +00:00
|
|
|
mIsObsoleteSuggestions = isObsoleteSuggestions;
|
2012-05-14 05:42:40 +00:00
|
|
|
mIsPrediction = isPrediction;
|
2010-12-10 11:50:30 +00:00
|
|
|
}
|
|
|
|
|
2012-10-03 05:06:44 +00:00
|
|
|
public boolean isEmpty() {
|
|
|
|
return mSuggestedWordInfoList.isEmpty();
|
|
|
|
}
|
|
|
|
|
2010-12-10 11:50:30 +00:00
|
|
|
public int size() {
|
2012-03-12 09:56:02 +00:00
|
|
|
return mSuggestedWordInfoList.size();
|
2010-12-10 11:50:30 +00:00
|
|
|
}
|
|
|
|
|
2013-05-30 14:47:54 +00:00
|
|
|
public String getWord(final int index) {
|
|
|
|
return mSuggestedWordInfoList.get(index).mWord;
|
2010-12-10 11:50:30 +00:00
|
|
|
}
|
|
|
|
|
2013-05-30 14:47:54 +00:00
|
|
|
public SuggestedWordInfo getInfo(final int index) {
|
|
|
|
return mSuggestedWordInfoList.get(index);
|
2011-08-04 05:38:22 +00:00
|
|
|
}
|
|
|
|
|
2013-07-05 09:23:22 +00:00
|
|
|
public String getDebugString(final int pos) {
|
|
|
|
if (!LatinImeLogger.sDBG) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
final SuggestedWordInfo wordInfo = getInfo(pos);
|
|
|
|
if (wordInfo == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
final String debugString = wordInfo.getDebugString();
|
|
|
|
if (TextUtils.isEmpty(debugString)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return debugString;
|
|
|
|
}
|
|
|
|
|
2012-03-05 10:54:21 +00:00
|
|
|
public boolean willAutoCorrect() {
|
2012-06-28 10:27:48 +00:00
|
|
|
return mWillAutoCorrect;
|
2012-03-05 13:08:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
// Pretty-print method to help debug
|
|
|
|
return "SuggestedWords:"
|
|
|
|
+ " mTypedWordValid=" + mTypedWordValid
|
2012-06-28 10:45:24 +00:00
|
|
|
+ " mWillAutoCorrect=" + mWillAutoCorrect
|
2012-03-14 10:23:15 +00:00
|
|
|
+ " mIsPunctuationSuggestions=" + mIsPunctuationSuggestions
|
|
|
|
+ " words=" + Arrays.toString(mSuggestedWordInfoList.toArray());
|
2012-03-05 05:19:35 +00:00
|
|
|
}
|
|
|
|
|
2012-03-16 15:50:51 +00:00
|
|
|
public static ArrayList<SuggestedWordInfo> getFromApplicationSpecifiedCompletions(
|
2012-03-13 11:39:21 +00:00
|
|
|
final CompletionInfo[] infos) {
|
2012-08-21 07:34:55 +00:00
|
|
|
final ArrayList<SuggestedWordInfo> result = CollectionUtils.newArrayList();
|
2012-10-03 06:19:43 +00:00
|
|
|
for (final CompletionInfo info : infos) {
|
|
|
|
if (info == null) continue;
|
|
|
|
final CharSequence text = info.getText();
|
|
|
|
if (null == text) continue;
|
|
|
|
final SuggestedWordInfo suggestedWordInfo = new SuggestedWordInfo(text.toString(),
|
|
|
|
SuggestedWordInfo.MAX_SCORE, SuggestedWordInfo.KIND_APP_DEFINED,
|
2013-08-20 07:11:03 +00:00
|
|
|
Dictionary.DICTIONARY_APPLICATION_DEFINED,
|
2013-08-20 09:00:21 +00:00
|
|
|
SuggestedWordInfo.NOT_AN_INDEX /* indexOfTouchPointOfSecondWord */,
|
|
|
|
SuggestedWordInfo.NOT_A_CONFIDENCE /* autoCommitFirstWordConfidence */);
|
2012-10-03 06:19:43 +00:00
|
|
|
result.add(suggestedWordInfo);
|
2010-12-10 11:50:30 +00:00
|
|
|
}
|
2012-03-13 11:39:21 +00:00
|
|
|
return result;
|
|
|
|
}
|
2010-12-10 11:50:30 +00:00
|
|
|
|
2012-03-13 11:39:21 +00:00
|
|
|
// Should get rid of the first one (what the user typed previously) from suggestions
|
|
|
|
// and replace it with what the user currently typed.
|
|
|
|
public static ArrayList<SuggestedWordInfo> getTypedWordAndPreviousSuggestions(
|
2012-10-03 06:19:43 +00:00
|
|
|
final String typedWord, final SuggestedWords previousSuggestions) {
|
2012-08-21 07:34:55 +00:00
|
|
|
final ArrayList<SuggestedWordInfo> suggestionsList = CollectionUtils.newArrayList();
|
|
|
|
final HashSet<String> alreadySeen = CollectionUtils.newHashSet();
|
2012-06-12 16:10:18 +00:00
|
|
|
suggestionsList.add(new SuggestedWordInfo(typedWord, SuggestedWordInfo.MAX_SCORE,
|
2013-08-20 07:11:03 +00:00
|
|
|
SuggestedWordInfo.KIND_TYPED, Dictionary.DICTIONARY_USER_TYPED,
|
2013-08-20 09:00:21 +00:00
|
|
|
SuggestedWordInfo.NOT_AN_INDEX /* indexOfTouchPointOfSecondWord */,
|
|
|
|
SuggestedWordInfo.NOT_A_CONFIDENCE /* autoCommitFirstWordConfidence */));
|
2012-03-13 11:39:21 +00:00
|
|
|
alreadySeen.add(typedWord.toString());
|
|
|
|
final int previousSize = previousSuggestions.size();
|
2013-05-30 14:47:54 +00:00
|
|
|
for (int index = 1; index < previousSize; index++) {
|
|
|
|
final SuggestedWordInfo prevWordInfo = previousSuggestions.getInfo(index);
|
2012-10-03 06:19:43 +00:00
|
|
|
final String prevWord = prevWordInfo.mWord;
|
2012-03-13 11:39:21 +00:00
|
|
|
// Filter out duplicate suggestion.
|
|
|
|
if (!alreadySeen.contains(prevWord)) {
|
2012-04-02 07:33:24 +00:00
|
|
|
suggestionsList.add(prevWordInfo);
|
2012-03-13 11:39:21 +00:00
|
|
|
alreadySeen.add(prevWord);
|
|
|
|
}
|
2010-12-10 11:50:30 +00:00
|
|
|
}
|
2012-03-13 11:39:21 +00:00
|
|
|
return suggestionsList;
|
2010-12-10 11:50:30 +00:00
|
|
|
}
|
2011-01-19 08:29:27 +00:00
|
|
|
|
2013-08-20 07:21:27 +00:00
|
|
|
public SuggestedWordInfo getAutoCommitCandidate() {
|
|
|
|
if (mSuggestedWordInfoList.size() <= 0) return null;
|
|
|
|
final SuggestedWordInfo candidate = mSuggestedWordInfoList.get(0);
|
|
|
|
return candidate.isEligibleForAutoCommit() ? candidate : null;
|
|
|
|
}
|
|
|
|
|
2012-09-27 09:16:16 +00:00
|
|
|
public static final class SuggestedWordInfo {
|
2013-08-20 03:21:07 +00:00
|
|
|
public static final int NOT_AN_INDEX = -1;
|
2013-08-20 09:00:21 +00:00
|
|
|
public static final int NOT_A_CONFIDENCE = -1;
|
2012-04-02 07:33:24 +00:00
|
|
|
public static final int MAX_SCORE = Integer.MAX_VALUE;
|
2013-04-22 10:48:23 +00:00
|
|
|
public static final int KIND_MASK_KIND = 0xFF; // Mask to get only the kind
|
2012-06-12 16:10:18 +00:00
|
|
|
public static final int KIND_TYPED = 0; // What user typed
|
|
|
|
public static final int KIND_CORRECTION = 1; // Simple correction/suggestion
|
|
|
|
public static final int KIND_COMPLETION = 2; // Completion (suggestion with appended chars)
|
|
|
|
public static final int KIND_WHITELIST = 3; // Whitelisted word
|
|
|
|
public static final int KIND_BLACKLIST = 4; // Blacklisted word
|
|
|
|
public static final int KIND_HARDCODED = 5; // Hardcoded suggestion, e.g. punctuation
|
|
|
|
public static final int KIND_APP_DEFINED = 6; // Suggested by the application
|
2012-06-12 17:11:45 +00:00
|
|
|
public static final int KIND_SHORTCUT = 7; // A shortcut
|
2012-07-12 06:21:11 +00:00
|
|
|
public static final int KIND_PREDICTION = 8; // A prediction (== a suggestion with no input)
|
2013-05-28 01:53:43 +00:00
|
|
|
// KIND_RESUMED: A resumed suggestion (comes from a span, currently this type is used only
|
|
|
|
// in java for re-correction)
|
|
|
|
public static final int KIND_RESUMED = 9;
|
|
|
|
public static final int KIND_OOV_CORRECTION = 10; // Most probable string correction
|
2013-04-22 10:48:23 +00:00
|
|
|
|
|
|
|
public static final int KIND_MASK_FLAGS = 0xFFFFFF00; // Mask to get the flags
|
|
|
|
public static final int KIND_FLAG_POSSIBLY_OFFENSIVE = 0x80000000;
|
|
|
|
public static final int KIND_FLAG_EXACT_MATCH = 0x40000000;
|
|
|
|
|
2012-07-04 07:01:00 +00:00
|
|
|
public final String mWord;
|
2012-04-02 07:33:24 +00:00
|
|
|
public final int mScore;
|
2012-06-12 17:11:45 +00:00
|
|
|
public final int mKind; // one of the KIND_* constants above
|
2012-04-02 07:33:24 +00:00
|
|
|
public final int mCodePointCount;
|
2013-08-20 07:11:03 +00:00
|
|
|
public final Dictionary mSourceDict;
|
2013-08-20 03:21:07 +00:00
|
|
|
// For auto-commit. This keeps track of the index inside the touch coordinates array
|
|
|
|
// passed to native code to get suggestions for a gesture that corresponds to the first
|
|
|
|
// letter of the second word.
|
|
|
|
public final int mIndexOfTouchPointOfSecondWord;
|
2013-08-20 09:00:21 +00:00
|
|
|
// For auto-commit. This is a measure of how confident we are that we can commit the
|
|
|
|
// first word of this suggestion.
|
|
|
|
public final int mAutoCommitFirstWordConfidence;
|
2012-04-02 07:33:24 +00:00
|
|
|
private String mDebugString = "";
|
2011-01-19 08:29:27 +00:00
|
|
|
|
2013-08-20 09:00:21 +00:00
|
|
|
/**
|
|
|
|
* Create a new suggested word info.
|
|
|
|
* @param word The string to suggest.
|
|
|
|
* @param score A measure of how likely this suggestion is.
|
|
|
|
* @param kind The kind of suggestion, as one of the above KIND_* constants.
|
|
|
|
* @param sourceDict What instance of Dictionary produced this suggestion.
|
|
|
|
* @param indexOfTouchPointOfSecondWord See mIndexOfTouchPointOfSecondWord.
|
|
|
|
* @param autoCommitFirstWordConfidence See mAutoCommitFirstWordConfidence.
|
|
|
|
*/
|
2012-10-03 06:19:43 +00:00
|
|
|
public SuggestedWordInfo(final String word, final int score, final int kind,
|
2013-08-20 09:00:21 +00:00
|
|
|
final Dictionary sourceDict, final int indexOfTouchPointOfSecondWord,
|
|
|
|
final int autoCommitFirstWordConfidence) {
|
2012-10-03 06:19:43 +00:00
|
|
|
mWord = word;
|
2012-04-02 07:33:24 +00:00
|
|
|
mScore = score;
|
2012-06-12 16:10:18 +00:00
|
|
|
mKind = kind;
|
2012-06-27 09:17:28 +00:00
|
|
|
mSourceDict = sourceDict;
|
2012-07-04 07:01:00 +00:00
|
|
|
mCodePointCount = StringUtils.codePointCount(mWord);
|
2013-08-20 03:21:07 +00:00
|
|
|
mIndexOfTouchPointOfSecondWord = indexOfTouchPointOfSecondWord;
|
2013-08-20 09:00:21 +00:00
|
|
|
mAutoCommitFirstWordConfidence = autoCommitFirstWordConfidence;
|
2011-01-19 08:29:27 +00:00
|
|
|
}
|
|
|
|
|
2013-08-20 07:21:27 +00:00
|
|
|
public boolean isEligibleForAutoCommit() {
|
|
|
|
return (KIND_CORRECTION == mKind && NOT_AN_INDEX != mIndexOfTouchPointOfSecondWord);
|
|
|
|
}
|
|
|
|
|
2012-10-03 06:19:43 +00:00
|
|
|
public void setDebugString(final String str) {
|
2012-04-02 07:33:24 +00:00
|
|
|
if (null == str) throw new NullPointerException("Debug info is null");
|
|
|
|
mDebugString = str;
|
2011-01-19 08:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getDebugString() {
|
2012-03-15 05:40:45 +00:00
|
|
|
return mDebugString;
|
2011-01-19 08:29:27 +00:00
|
|
|
}
|
|
|
|
|
2012-04-02 07:33:24 +00:00
|
|
|
public int codePointCount() {
|
|
|
|
return mCodePointCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int codePointAt(int i) {
|
2012-07-04 07:01:00 +00:00
|
|
|
return mWord.codePointAt(i);
|
2012-04-02 07:33:24 +00:00
|
|
|
}
|
|
|
|
|
2012-03-14 10:23:15 +00:00
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
if (TextUtils.isEmpty(mDebugString)) {
|
2012-07-04 07:01:00 +00:00
|
|
|
return mWord;
|
2012-03-14 10:23:15 +00:00
|
|
|
} else {
|
2012-10-03 06:19:43 +00:00
|
|
|
return mWord + " (" + mDebugString + ")";
|
2012-04-02 07:33:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Consolidate this method and StringUtils.removeDupes() in the future.
|
|
|
|
public static void removeDups(ArrayList<SuggestedWordInfo> candidates) {
|
|
|
|
if (candidates.size() <= 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int i = 1;
|
2012-09-04 03:49:46 +00:00
|
|
|
while (i < candidates.size()) {
|
2012-04-02 07:33:24 +00:00
|
|
|
final SuggestedWordInfo cur = candidates.get(i);
|
|
|
|
for (int j = 0; j < i; ++j) {
|
|
|
|
final SuggestedWordInfo previous = candidates.get(j);
|
2012-07-04 07:01:00 +00:00
|
|
|
if (cur.mWord.equals(previous.mWord)) {
|
2012-04-02 07:33:24 +00:00
|
|
|
candidates.remove(cur.mScore < previous.mScore ? i : j);
|
|
|
|
--i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++i;
|
2012-03-14 10:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
2011-01-19 08:29:27 +00:00
|
|
|
}
|
2013-04-10 09:30:11 +00:00
|
|
|
|
|
|
|
// SuggestedWords is an immutable object, as much as possible. We must not just remove
|
|
|
|
// words from the member ArrayList as some other parties may expect the object to never change.
|
|
|
|
public SuggestedWords getSuggestedWordsExcludingTypedWord() {
|
|
|
|
final ArrayList<SuggestedWordInfo> newSuggestions = CollectionUtils.newArrayList();
|
|
|
|
for (int i = 0; i < mSuggestedWordInfoList.size(); ++i) {
|
|
|
|
final SuggestedWordInfo info = mSuggestedWordInfoList.get(i);
|
|
|
|
if (SuggestedWordInfo.KIND_TYPED != info.mKind) {
|
|
|
|
newSuggestions.add(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// We should never autocorrect, so we say the typed word is valid. Also, in this case,
|
|
|
|
// no auto-correction should take place hence willAutoCorrect = false.
|
|
|
|
return new SuggestedWords(newSuggestions, true /* typedWordValid */,
|
|
|
|
false /* willAutoCorrect */, mIsPunctuationSuggestions, mIsObsoleteSuggestions,
|
|
|
|
mIsPrediction);
|
|
|
|
}
|
2013-09-13 07:49:41 +00:00
|
|
|
|
|
|
|
// Creates a new SuggestedWordInfo from the currently suggested words that removes all but the
|
|
|
|
// last word of all suggestions, separated by a space. This is necessary because when we commit
|
|
|
|
// a multiple-word suggestion, the IME only retains the last word as the composing word, and
|
|
|
|
// we should only suggest replacements for this last word.
|
|
|
|
// TODO: make this work with languages without spaces.
|
|
|
|
public SuggestedWords getSuggestedWordsForLastWordOfPhraseGesture() {
|
|
|
|
final ArrayList<SuggestedWordInfo> newSuggestions = CollectionUtils.newArrayList();
|
|
|
|
for (int i = 0; i < mSuggestedWordInfoList.size(); ++i) {
|
|
|
|
final SuggestedWordInfo info = mSuggestedWordInfoList.get(i);
|
|
|
|
final int indexOfLastSpace = info.mWord.lastIndexOf(Constants.CODE_SPACE) + 1;
|
|
|
|
final String lastWord = info.mWord.substring(indexOfLastSpace);
|
|
|
|
newSuggestions.add(new SuggestedWordInfo(lastWord, info.mScore, info.mKind,
|
|
|
|
info.mSourceDict, SuggestedWordInfo.NOT_AN_INDEX,
|
|
|
|
SuggestedWordInfo.NOT_A_CONFIDENCE));
|
|
|
|
}
|
|
|
|
return new SuggestedWords(newSuggestions, mTypedWordValid,
|
|
|
|
mWillAutoCorrect, mIsPunctuationSuggestions, mIsObsoleteSuggestions,
|
|
|
|
mIsPrediction);
|
|
|
|
}
|
2010-12-10 11:50:30 +00:00
|
|
|
}
|