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;
|
|
|
|
|
2014-08-24 21:37:24 +00:00
|
|
|
import com.android.inputmethod.annotations.UsedForTesting;
|
2014-10-28 12:31:09 +00:00
|
|
|
import com.android.inputmethod.latin.common.StringUtils;
|
2014-07-17 01:41:46 +00:00
|
|
|
import com.android.inputmethod.latin.define.DebugFlags;
|
2013-06-23 16:11:32 +00:00
|
|
|
|
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
|
|
|
|
2014-10-29 03:56:42 +00:00
|
|
|
import javax.annotation.Nonnull;
|
2014-11-17 09:26:15 +00:00
|
|
|
import javax.annotation.Nullable;
|
2014-10-29 03:56:42 +00:00
|
|
|
|
2014-02-13 09:43:48 +00:00
|
|
|
public 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;
|
2013-10-22 01:51:11 +00:00
|
|
|
public static final int NOT_A_SEQUENCE_NUMBER = -1;
|
2013-05-30 14:47:54 +00:00
|
|
|
|
2014-08-14 03:48:50 +00:00
|
|
|
public static final int INPUT_STYLE_NONE = 0;
|
|
|
|
public static final int INPUT_STYLE_TYPING = 1;
|
|
|
|
public static final int INPUT_STYLE_UPDATE_BATCH = 2;
|
|
|
|
public static final int INPUT_STYLE_TAIL_BATCH = 3;
|
|
|
|
public static final int INPUT_STYLE_APPLICATION_SPECIFIED = 4;
|
|
|
|
public static final int INPUT_STYLE_RECORRECTION = 5;
|
2014-08-26 09:54:08 +00:00
|
|
|
public static final int INPUT_STYLE_PREDICTION = 6;
|
2014-09-17 08:16:59 +00:00
|
|
|
public static final int INPUT_STYLE_BEGINNING_OF_SENTENCE_PREDICTION = 7;
|
2014-08-14 03:48:50 +00:00
|
|
|
|
2014-01-23 04:08:21 +00:00
|
|
|
// The maximum number of suggestions available.
|
|
|
|
public static final int MAX_SUGGESTIONS = 18;
|
|
|
|
|
2014-05-23 11:18:17 +00:00
|
|
|
private static final ArrayList<SuggestedWordInfo> EMPTY_WORD_INFO_LIST = new ArrayList<>(0);
|
2014-10-29 03:56:42 +00:00
|
|
|
@Nonnull
|
2014-09-22 03:40:41 +00:00
|
|
|
private static final SuggestedWords EMPTY = new SuggestedWords(
|
2014-11-07 08:10:36 +00:00
|
|
|
EMPTY_WORD_INFO_LIST, null /* rawSuggestions */, null /* typedWord */,
|
|
|
|
false /* typedWordValid */, false /* willAutoCorrect */,
|
|
|
|
false /* isObsoleteSuggestions */, INPUT_STYLE_NONE, NOT_A_SEQUENCE_NUMBER);
|
2010-12-10 11:50:30 +00:00
|
|
|
|
2014-11-17 09:26:15 +00:00
|
|
|
@Nullable
|
|
|
|
public final SuggestedWordInfo mTypedWordInfo;
|
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;
|
2012-03-15 04:12:08 +00:00
|
|
|
public final boolean mIsObsoleteSuggestions;
|
2014-08-14 03:48:50 +00:00
|
|
|
// How the input for these suggested words was done by the user. Must be one of the
|
|
|
|
// INPUT_STYLE_* constants above.
|
|
|
|
public final int mInputStyle;
|
2013-10-22 01:51:11 +00:00
|
|
|
public final int mSequenceNumber; // Sequence number for auto-commit.
|
2014-11-17 09:26:15 +00:00
|
|
|
@Nonnull
|
2014-02-13 09:43:48 +00:00
|
|
|
protected final ArrayList<SuggestedWordInfo> mSuggestedWordInfoList;
|
2014-11-17 09:26:15 +00:00
|
|
|
@Nullable
|
2014-02-06 06:51:04 +00:00
|
|
|
public final ArrayList<SuggestedWordInfo> mRawSuggestions;
|
2010-12-10 11:50:30 +00:00
|
|
|
|
2014-11-17 09:26:15 +00:00
|
|
|
public SuggestedWords(@Nonnull final ArrayList<SuggestedWordInfo> suggestedWordInfoList,
|
|
|
|
@Nullable final ArrayList<SuggestedWordInfo> rawSuggestions,
|
|
|
|
@Nullable final SuggestedWordInfo typedWordInfo,
|
2014-01-24 13:33:44 +00:00
|
|
|
final boolean typedWordValid,
|
|
|
|
final boolean willAutoCorrect,
|
|
|
|
final boolean isObsoleteSuggestions,
|
2014-08-14 03:48:50 +00:00
|
|
|
final int inputStyle,
|
2014-01-24 13:33:44 +00:00
|
|
|
final int sequenceNumber) {
|
2012-03-14 06:33:47 +00:00
|
|
|
mSuggestedWordInfoList = suggestedWordInfoList;
|
2014-02-06 06:51:04 +00:00
|
|
|
mRawSuggestions = rawSuggestions;
|
2010-12-10 11:50:30 +00:00
|
|
|
mTypedWordValid = typedWordValid;
|
2012-06-28 10:45:24 +00:00
|
|
|
mWillAutoCorrect = willAutoCorrect;
|
2012-03-15 04:12:08 +00:00
|
|
|
mIsObsoleteSuggestions = isObsoleteSuggestions;
|
2014-08-14 03:48:50 +00:00
|
|
|
mInputStyle = inputStyle;
|
2013-10-22 01:51:11 +00:00
|
|
|
mSequenceNumber = sequenceNumber;
|
2014-11-17 09:26:15 +00:00
|
|
|
mTypedWordInfo = typedWordInfo;
|
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
|
|
|
}
|
|
|
|
|
2014-10-06 08:20:10 +00:00
|
|
|
/**
|
|
|
|
* Get suggested word to show as suggestions to UI.
|
|
|
|
*
|
|
|
|
* @param shouldShowLxxSuggestionUi true if showing suggestion UI introduced in LXX and later.
|
|
|
|
* @return the count of suggested word to show as suggestions to UI.
|
|
|
|
*/
|
|
|
|
public int getWordCountToShow(final boolean shouldShowLxxSuggestionUi) {
|
|
|
|
if (isPrediction() || !shouldShowLxxSuggestionUi) {
|
|
|
|
return size();
|
|
|
|
}
|
|
|
|
return size() - /* typed word */ 1;
|
|
|
|
}
|
|
|
|
|
2015-02-05 02:35:20 +00:00
|
|
|
/**
|
|
|
|
* Get {@link SuggestedWordInfo} object for the typed word.
|
|
|
|
* @return The {@link SuggestedWordInfo} object for the typed word.
|
|
|
|
*/
|
|
|
|
public SuggestedWordInfo getTypedWordInfo() {
|
|
|
|
return mTypedWordInfo;
|
|
|
|
}
|
|
|
|
|
2014-02-13 09:43:48 +00:00
|
|
|
/**
|
|
|
|
* Get suggested word at <code>index</code>.
|
|
|
|
* @param index The index of the suggested word.
|
|
|
|
* @return The suggested word.
|
|
|
|
*/
|
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
|
|
|
}
|
|
|
|
|
2014-02-13 09:43:48 +00:00
|
|
|
/**
|
|
|
|
* Get displayed text at <code>index</code>.
|
|
|
|
* In RTL languages, the displayed text on the suggestion strip may be different from the
|
|
|
|
* suggested word that is returned from {@link #getWord(int)}. For example the displayed text
|
|
|
|
* of punctuation suggestion "(" should be ")".
|
|
|
|
* @param index The index of the text to display.
|
|
|
|
* @return The text to be displayed.
|
|
|
|
*/
|
|
|
|
public String getLabel(final int index) {
|
|
|
|
return mSuggestedWordInfoList.get(index).mWord;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get {@link SuggestedWordInfo} object at <code>index</code>.
|
|
|
|
* @param index The index of the {@link SuggestedWordInfo}.
|
|
|
|
* @return The {@link SuggestedWordInfo} object.
|
|
|
|
*/
|
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
|
|
|
}
|
|
|
|
|
2014-09-08 03:43:48 +00:00
|
|
|
/**
|
|
|
|
* Gets the suggestion index from the suggestions list.
|
|
|
|
* @param suggestedWordInfo The {@link SuggestedWordInfo} to find the index.
|
|
|
|
* @return The position of the suggestion in the suggestion list.
|
|
|
|
*/
|
|
|
|
public int indexOf(SuggestedWordInfo suggestedWordInfo) {
|
|
|
|
return mSuggestedWordInfoList.indexOf(suggestedWordInfo);
|
|
|
|
}
|
|
|
|
|
2013-07-05 09:23:22 +00:00
|
|
|
public String getDebugString(final int pos) {
|
2014-07-17 01:41:46 +00:00
|
|
|
if (!DebugFlags.DEBUG_ENABLED) {
|
2013-07-05 09:23:22 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-02-13 09:43:48 +00:00
|
|
|
/**
|
|
|
|
* The predicator to tell whether this object represents punctuation suggestions.
|
|
|
|
* @return false if this object desn't represent punctuation suggestions.
|
|
|
|
*/
|
|
|
|
public boolean isPunctuationSuggestions() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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
|
2014-09-17 08:16:59 +00:00
|
|
|
+ " mInputStyle=" + mInputStyle
|
2012-03-14 10:23:15 +00:00
|
|
|
+ " 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) {
|
2014-05-23 11:18:17 +00:00
|
|
|
final ArrayList<SuggestedWordInfo> result = new ArrayList<>();
|
2012-10-03 06:19:43 +00:00
|
|
|
for (final CompletionInfo info : infos) {
|
2014-02-26 05:39:51 +00:00
|
|
|
if (null == info || null == info.getText()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
result.add(new SuggestedWordInfo(info));
|
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
|
|
|
|
2014-10-29 03:56:42 +00:00
|
|
|
@Nonnull
|
2014-09-22 03:40:41 +00:00
|
|
|
public static final SuggestedWords getEmptyInstance() {
|
|
|
|
return SuggestedWords.EMPTY;
|
|
|
|
}
|
|
|
|
|
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(
|
2014-11-17 09:26:15 +00:00
|
|
|
@Nonnull final SuggestedWordInfo typedWordInfo,
|
|
|
|
@Nonnull final SuggestedWords previousSuggestions) {
|
2014-05-23 11:18:17 +00:00
|
|
|
final ArrayList<SuggestedWordInfo> suggestionsList = new ArrayList<>();
|
|
|
|
final HashSet<String> alreadySeen = new HashSet<>();
|
2014-11-17 09:26:15 +00:00
|
|
|
suggestionsList.add(typedWordInfo);
|
|
|
|
alreadySeen.add(typedWordInfo.mWord);
|
2012-03-13 11:39:21 +00:00
|
|
|
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;
|
2013-12-24 12:55:09 +00:00
|
|
|
// Filter out duplicate suggestions.
|
2012-03-13 11:39:21 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-10-08 01:42:24 +00:00
|
|
|
// non-final for testability.
|
|
|
|
public static 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;
|
2014-05-28 02:51:05 +00:00
|
|
|
|
2014-05-28 11:35:45 +00:00
|
|
|
private 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_FLAG_POSSIBLY_OFFENSIVE = 0x80000000;
|
|
|
|
public static final int KIND_FLAG_EXACT_MATCH = 0x40000000;
|
2014-05-26 09:45:32 +00:00
|
|
|
public static final int KIND_FLAG_EXACT_MATCH_WITH_INTENTIONAL_OMISSION = 0x20000000;
|
2014-12-09 10:23:27 +00:00
|
|
|
public static final int KIND_FLAG_APPROPRIATE_FOR_AUTO_CORRECTION = 0x10000000;
|
2013-04-22 10:48:23 +00:00
|
|
|
|
2012-07-04 07:01:00 +00:00
|
|
|
public final String mWord;
|
2015-03-19 23:07:04 +00:00
|
|
|
public final String mPrevWordsContext;
|
2014-02-26 05:39:51 +00:00
|
|
|
// The completion info from the application. Null for suggestions that don't come from
|
|
|
|
// the application (including keyboard-computed ones, so this is almost always null)
|
|
|
|
public final CompletionInfo mApplicationSpecifiedCompletionInfo;
|
2012-04-02 07:33:24 +00:00
|
|
|
public final int mScore;
|
2014-05-28 11:35:45 +00:00
|
|
|
public final int mKindAndFlags;
|
2012-04-02 07:33:24 +00:00
|
|
|
public final int mCodePointCount;
|
2015-03-13 21:30:18 +00:00
|
|
|
@Deprecated
|
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.
|
2015-03-19 23:07:04 +00:00
|
|
|
* @param prevWordsContext previous words context.
|
2013-08-20 09:00:21 +00:00
|
|
|
* @param score A measure of how likely this suggestion is.
|
2014-05-28 11:35:45 +00:00
|
|
|
* @param kindAndFlags The kind of suggestion, as one of the above KIND_* constants with
|
|
|
|
* flags.
|
2013-08-20 09:00:21 +00:00
|
|
|
* @param sourceDict What instance of Dictionary produced this suggestion.
|
|
|
|
* @param indexOfTouchPointOfSecondWord See mIndexOfTouchPointOfSecondWord.
|
|
|
|
* @param autoCommitFirstWordConfidence See mAutoCommitFirstWordConfidence.
|
|
|
|
*/
|
2015-03-19 23:07:04 +00:00
|
|
|
public SuggestedWordInfo(final String word, final String prevWordsContext,
|
|
|
|
final int score, final int kindAndFlags,
|
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;
|
2015-03-19 23:07:04 +00:00
|
|
|
mPrevWordsContext = prevWordsContext;
|
2014-02-26 05:39:51 +00:00
|
|
|
mApplicationSpecifiedCompletionInfo = null;
|
2012-04-02 07:33:24 +00:00
|
|
|
mScore = score;
|
2014-05-28 11:35:45 +00:00
|
|
|
mKindAndFlags = kindAndFlags;
|
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
|
|
|
}
|
|
|
|
|
2014-02-26 05:39:51 +00:00
|
|
|
/**
|
|
|
|
* Create a new suggested word info from an application-specified completion.
|
|
|
|
* If the passed argument or its contained text is null, this throws a NPE.
|
|
|
|
* @param applicationSpecifiedCompletion The application-specified completion info.
|
|
|
|
*/
|
|
|
|
public SuggestedWordInfo(final CompletionInfo applicationSpecifiedCompletion) {
|
|
|
|
mWord = applicationSpecifiedCompletion.getText().toString();
|
2015-03-19 23:07:04 +00:00
|
|
|
mPrevWordsContext = "";
|
2014-02-26 05:39:51 +00:00
|
|
|
mApplicationSpecifiedCompletionInfo = applicationSpecifiedCompletion;
|
|
|
|
mScore = SuggestedWordInfo.MAX_SCORE;
|
2014-05-28 11:35:45 +00:00
|
|
|
mKindAndFlags = SuggestedWordInfo.KIND_APP_DEFINED;
|
2014-02-26 05:39:51 +00:00
|
|
|
mSourceDict = Dictionary.DICTIONARY_APPLICATION_DEFINED;
|
|
|
|
mCodePointCount = StringUtils.codePointCount(mWord);
|
|
|
|
mIndexOfTouchPointOfSecondWord = SuggestedWordInfo.NOT_AN_INDEX;
|
|
|
|
mAutoCommitFirstWordConfidence = SuggestedWordInfo.NOT_A_CONFIDENCE;
|
|
|
|
}
|
|
|
|
|
2013-08-20 07:21:27 +00:00
|
|
|
public boolean isEligibleForAutoCommit() {
|
2014-05-26 09:45:32 +00:00
|
|
|
return (isKindOf(KIND_CORRECTION) && NOT_AN_INDEX != mIndexOfTouchPointOfSecondWord);
|
|
|
|
}
|
|
|
|
|
2014-05-28 11:35:45 +00:00
|
|
|
public int getKind() {
|
|
|
|
return (mKindAndFlags & KIND_MASK_KIND);
|
|
|
|
}
|
|
|
|
|
2014-05-26 09:45:32 +00:00
|
|
|
public boolean isKindOf(final int kind) {
|
2014-05-28 11:35:45 +00:00
|
|
|
return getKind() == kind;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isPossiblyOffensive() {
|
2014-05-29 04:16:24 +00:00
|
|
|
return (mKindAndFlags & KIND_FLAG_POSSIBLY_OFFENSIVE) != 0;
|
2013-08-20 07:21:27 +00:00
|
|
|
}
|
|
|
|
|
2014-05-28 11:35:45 +00:00
|
|
|
public boolean isExactMatch() {
|
2014-05-29 04:16:24 +00:00
|
|
|
return (mKindAndFlags & KIND_FLAG_EXACT_MATCH) != 0;
|
2014-05-28 11:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isExactMatchWithIntentionalOmission() {
|
2014-05-29 04:16:24 +00:00
|
|
|
return (mKindAndFlags & KIND_FLAG_EXACT_MATCH_WITH_INTENTIONAL_OMISSION) != 0;
|
2014-12-09 10:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isAprapreateForAutoCorrection() {
|
|
|
|
return (mKindAndFlags & KIND_FLAG_APPROPRIATE_FOR_AUTO_CORRECTION) != 0;
|
2014-05-28 11:35:45 +00:00
|
|
|
}
|
2014-05-28 02:51:05 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-02-05 02:35:20 +00:00
|
|
|
public String getWord() {
|
|
|
|
return mWord;
|
|
|
|
}
|
|
|
|
|
2015-03-13 21:30:18 +00:00
|
|
|
@Deprecated
|
2015-02-05 02:35:20 +00:00
|
|
|
public Dictionary getSourceDictionary() {
|
|
|
|
return mSourceDict;
|
|
|
|
}
|
|
|
|
|
2012-04-02 07:33:24 +00:00
|
|
|
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-04-02 07:33:24 +00:00
|
|
|
}
|
2014-10-20 05:48:56 +00:00
|
|
|
return mWord + " (" + mDebugString + ")";
|
2012-04-02 07:33:24 +00:00
|
|
|
}
|
|
|
|
|
2015-02-25 23:57:59 +00:00
|
|
|
/**
|
|
|
|
* This will always remove the higher index if a duplicate is found.
|
|
|
|
*
|
|
|
|
* @return position of typed word in the candidate list
|
|
|
|
*/
|
|
|
|
public static int removeDups(
|
|
|
|
@Nullable final String typedWord,
|
|
|
|
@Nonnull final ArrayList<SuggestedWordInfo> candidates) {
|
2014-06-19 07:12:34 +00:00
|
|
|
if (candidates.isEmpty()) {
|
2015-02-25 23:57:59 +00:00
|
|
|
return -1;
|
2012-04-02 07:33:24 +00:00
|
|
|
}
|
2015-02-25 23:57:59 +00:00
|
|
|
int firstOccurrenceOfWord = -1;
|
2014-06-19 07:12:34 +00:00
|
|
|
if (!TextUtils.isEmpty(typedWord)) {
|
2015-02-25 23:57:59 +00:00
|
|
|
firstOccurrenceOfWord = removeSuggestedWordInfoFromList(
|
|
|
|
typedWord, candidates, -1 /* startIndexExclusive */);
|
2014-06-19 07:12:34 +00:00
|
|
|
}
|
|
|
|
for (int i = 0; i < candidates.size(); ++i) {
|
2015-02-25 23:57:59 +00:00
|
|
|
removeSuggestedWordInfoFromList(
|
|
|
|
candidates.get(i).mWord, candidates, i /* startIndexExclusive */);
|
2014-06-19 07:12:34 +00:00
|
|
|
}
|
2015-02-25 23:57:59 +00:00
|
|
|
return firstOccurrenceOfWord;
|
2014-06-19 07:12:34 +00:00
|
|
|
}
|
|
|
|
|
2015-02-25 23:57:59 +00:00
|
|
|
private static int removeSuggestedWordInfoFromList(
|
|
|
|
@Nonnull final String word,
|
|
|
|
@Nonnull final ArrayList<SuggestedWordInfo> candidates,
|
2014-11-05 02:57:39 +00:00
|
|
|
final int startIndexExclusive) {
|
2015-02-25 23:57:59 +00:00
|
|
|
int firstOccurrenceOfWord = -1;
|
2014-06-24 09:26:51 +00:00
|
|
|
for (int i = startIndexExclusive + 1; i < candidates.size(); ++i) {
|
2014-06-19 07:12:34 +00:00
|
|
|
final SuggestedWordInfo previous = candidates.get(i);
|
|
|
|
if (word.equals(previous.mWord)) {
|
2015-02-25 23:57:59 +00:00
|
|
|
if (firstOccurrenceOfWord == -1) {
|
|
|
|
firstOccurrenceOfWord = i;
|
|
|
|
}
|
2014-06-19 07:12:34 +00:00
|
|
|
candidates.remove(i);
|
|
|
|
--i;
|
2012-04-02 07:33:24 +00:00
|
|
|
}
|
2012-03-14 10:23:15 +00:00
|
|
|
}
|
2015-02-25 23:57:59 +00:00
|
|
|
return firstOccurrenceOfWord;
|
2012-03-14 10:23:15 +00:00
|
|
|
}
|
2011-01-19 08:29:27 +00:00
|
|
|
}
|
2013-04-10 09:30:11 +00:00
|
|
|
|
2014-09-17 08:16:59 +00:00
|
|
|
private static boolean isPrediction(final int inputStyle) {
|
|
|
|
return INPUT_STYLE_PREDICTION == inputStyle
|
|
|
|
|| INPUT_STYLE_BEGINNING_OF_SENTENCE_PREDICTION == inputStyle;
|
|
|
|
}
|
|
|
|
|
2014-08-26 09:54:08 +00:00
|
|
|
public boolean isPrediction() {
|
2014-09-17 08:16:59 +00:00
|
|
|
return isPrediction(mInputStyle);
|
2014-08-26 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2014-08-24 21:37:24 +00:00
|
|
|
/**
|
|
|
|
* @return the {@link SuggestedWordInfo} which corresponds to the word that is originally
|
|
|
|
* typed by the user. Otherwise returns {@code null}. Note that gesture input is not
|
|
|
|
* considered to be a typed word.
|
|
|
|
*/
|
|
|
|
@UsedForTesting
|
|
|
|
public SuggestedWordInfo getTypedWordInfoOrNull() {
|
2014-08-29 04:18:23 +00:00
|
|
|
if (SuggestedWords.INDEX_OF_TYPED_WORD >= size()) {
|
2014-08-24 21:37:24 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
final SuggestedWordInfo info = getInfo(SuggestedWords.INDEX_OF_TYPED_WORD);
|
|
|
|
return (info.getKind() == SuggestedWordInfo.KIND_TYPED) ? info : null;
|
|
|
|
}
|
2010-12-10 11:50:30 +00:00
|
|
|
}
|