2012-06-08 10:04:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 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
|
2012-06-08 10:04:09 +00:00
|
|
|
*
|
2013-01-21 12:52:57 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-06-08 10:04:09 +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.
|
2012-06-08 10:04:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.latin;
|
|
|
|
|
2012-07-05 03:36:06 +00:00
|
|
|
import android.inputmethodservice.InputMethodService;
|
2012-06-08 11:23:13 +00:00
|
|
|
import android.text.TextUtils;
|
2012-06-08 10:04:09 +00:00
|
|
|
import android.util.Log;
|
|
|
|
import android.view.KeyEvent;
|
|
|
|
import android.view.inputmethod.CompletionInfo;
|
|
|
|
import android.view.inputmethod.CorrectionInfo;
|
2012-06-08 10:44:38 +00:00
|
|
|
import android.view.inputmethod.ExtractedText;
|
|
|
|
import android.view.inputmethod.ExtractedTextRequest;
|
2012-06-08 10:04:09 +00:00
|
|
|
import android.view.inputmethod.InputConnection;
|
|
|
|
|
2014-06-27 15:07:07 +00:00
|
|
|
import com.android.inputmethod.latin.PrevWordsInfo.WordInfo;
|
2014-01-09 08:27:33 +00:00
|
|
|
import com.android.inputmethod.latin.settings.SpacingAndPunctuations;
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.utils.CapsModeUtils;
|
2013-06-25 08:03:05 +00:00
|
|
|
import com.android.inputmethod.latin.utils.DebugLogUtils;
|
2013-09-25 10:13:47 +00:00
|
|
|
import com.android.inputmethod.latin.utils.SpannableStringUtils;
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.utils.StringUtils;
|
2013-06-25 08:28:39 +00:00
|
|
|
import com.android.inputmethod.latin.utils.TextRange;
|
2012-06-08 11:23:13 +00:00
|
|
|
|
2014-01-20 05:56:56 +00:00
|
|
|
import java.util.Arrays;
|
2014-06-27 15:07:07 +00:00
|
|
|
import java.util.regex.Pattern;
|
2012-06-08 10:44:38 +00:00
|
|
|
|
2012-06-08 10:04:09 +00:00
|
|
|
/**
|
2012-09-10 10:27:45 +00:00
|
|
|
* Enrichment class for InputConnection to simplify interaction and add functionality.
|
|
|
|
*
|
|
|
|
* This class serves as a wrapper to be able to simply add hooks to any calls to the underlying
|
|
|
|
* InputConnection. It also keeps track of a number of things to avoid having to call upon IPC
|
|
|
|
* all the time to find out what text is in the buffer, when we need it to determine caps mode
|
|
|
|
* for example.
|
2012-06-08 10:04:09 +00:00
|
|
|
*/
|
2012-09-27 09:16:16 +00:00
|
|
|
public final class RichInputConnection {
|
2012-06-08 10:04:09 +00:00
|
|
|
private static final String TAG = RichInputConnection.class.getSimpleName();
|
|
|
|
private static final boolean DBG = false;
|
2012-09-10 10:27:45 +00:00
|
|
|
private static final boolean DEBUG_PREVIOUS_TEXT = false;
|
2012-10-01 07:03:21 +00:00
|
|
|
private static final boolean DEBUG_BATCH_NESTING = false;
|
2014-06-27 08:59:21 +00:00
|
|
|
// Provision for long words and separators between the words.
|
|
|
|
private static final int LOOKBACK_CHARACTER_NUM = Constants.DICTIONARY_MAX_WORD_LENGTH
|
|
|
|
* (Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM + 1) /* words */
|
|
|
|
+ Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM /* separators */;
|
2014-06-27 15:07:07 +00:00
|
|
|
private static final Pattern spaceRegex = Pattern.compile("\\s+");
|
2012-06-08 10:44:38 +00:00
|
|
|
private static final int INVALID_CURSOR_POSITION = -1;
|
|
|
|
|
2012-09-10 10:27:45 +00:00
|
|
|
/**
|
2013-12-13 08:09:16 +00:00
|
|
|
* This variable contains an expected value for the selection start position. This is where the
|
|
|
|
* cursor or selection start may end up after all the keyboard-triggered updates have passed. We
|
|
|
|
* keep this to compare it to the actual selection start to guess whether the move was caused by
|
|
|
|
* a keyboard command or not.
|
|
|
|
* It's not really the selection start position: the selection start may not be there yet, and
|
|
|
|
* in some cases, it may never arrive there.
|
2012-09-10 10:27:45 +00:00
|
|
|
*/
|
2013-12-13 08:09:16 +00:00
|
|
|
private int mExpectedSelStart = INVALID_CURSOR_POSITION; // in chars, not code points
|
|
|
|
/**
|
|
|
|
* The expected selection end. Only differs from mExpectedSelStart if a non-empty selection is
|
|
|
|
* expected. The same caveats as mExpectedSelStart apply.
|
|
|
|
*/
|
|
|
|
private int mExpectedSelEnd = INVALID_CURSOR_POSITION; // in chars, not code points
|
2012-09-10 10:27:45 +00:00
|
|
|
/**
|
|
|
|
* This contains the committed text immediately preceding the cursor and the composing
|
|
|
|
* text if any. It is refreshed when the cursor moves by calling upon the TextView.
|
|
|
|
*/
|
2013-03-29 09:39:28 +00:00
|
|
|
private final StringBuilder mCommittedTextBeforeComposingText = new StringBuilder();
|
2012-09-10 10:27:45 +00:00
|
|
|
/**
|
|
|
|
* This contains the currently composing text, as LatinIME thinks the TextView is seeing it.
|
|
|
|
*/
|
2013-03-29 09:39:28 +00:00
|
|
|
private final StringBuilder mComposingText = new StringBuilder();
|
2012-09-10 10:27:45 +00:00
|
|
|
|
2012-07-05 03:36:06 +00:00
|
|
|
private final InputMethodService mParent;
|
2012-06-08 10:04:09 +00:00
|
|
|
InputConnection mIC;
|
|
|
|
int mNestLevel;
|
2012-07-05 03:36:06 +00:00
|
|
|
public RichInputConnection(final InputMethodService parent) {
|
|
|
|
mParent = parent;
|
2012-06-08 10:04:09 +00:00
|
|
|
mIC = null;
|
|
|
|
mNestLevel = 0;
|
|
|
|
}
|
|
|
|
|
2012-09-10 10:27:45 +00:00
|
|
|
private void checkConsistencyForDebug() {
|
|
|
|
final ExtractedTextRequest r = new ExtractedTextRequest();
|
|
|
|
r.hintMaxChars = 0;
|
|
|
|
r.hintMaxLines = 0;
|
|
|
|
r.token = 1;
|
|
|
|
r.flags = 0;
|
|
|
|
final ExtractedText et = mIC.getExtractedText(r, 0);
|
2013-09-20 09:01:32 +00:00
|
|
|
final CharSequence beforeCursor = getTextBeforeCursor(Constants.EDITOR_CONTENTS_CACHE_SIZE,
|
|
|
|
0);
|
2014-01-17 04:14:29 +00:00
|
|
|
final StringBuilder internal = new StringBuilder(mCommittedTextBeforeComposingText)
|
2012-09-10 10:27:45 +00:00
|
|
|
.append(mComposingText);
|
|
|
|
if (null == et || null == beforeCursor) return;
|
|
|
|
final int actualLength = Math.min(beforeCursor.length(), internal.length());
|
|
|
|
if (internal.length() > actualLength) {
|
|
|
|
internal.delete(0, internal.length() - actualLength);
|
|
|
|
}
|
|
|
|
final String reference = (beforeCursor.length() <= actualLength) ? beforeCursor.toString()
|
|
|
|
: beforeCursor.subSequence(beforeCursor.length() - actualLength,
|
|
|
|
beforeCursor.length()).toString();
|
2013-12-13 08:09:16 +00:00
|
|
|
if (et.selectionStart != mExpectedSelStart
|
2012-09-10 10:27:45 +00:00
|
|
|
|| !(reference.equals(internal.toString()))) {
|
2013-12-13 08:09:16 +00:00
|
|
|
final String context = "Expected selection start = " + mExpectedSelStart
|
|
|
|
+ "\nActual selection start = " + et.selectionStart
|
2012-09-10 10:27:45 +00:00
|
|
|
+ "\nExpected text = " + internal.length() + " " + internal
|
|
|
|
+ "\nActual text = " + reference.length() + " " + reference;
|
|
|
|
((LatinIME)mParent).debugDumpStateAndCrashWithException(context);
|
|
|
|
} else {
|
2013-06-25 08:03:05 +00:00
|
|
|
Log.e(TAG, DebugLogUtils.getStackTrace(2));
|
2013-12-13 08:09:16 +00:00
|
|
|
Log.e(TAG, "Exp <> Actual : " + mExpectedSelStart + " <> " + et.selectionStart);
|
2012-09-10 10:27:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-05 03:36:06 +00:00
|
|
|
public void beginBatchEdit() {
|
2012-06-08 10:04:09 +00:00
|
|
|
if (++mNestLevel == 1) {
|
2012-07-05 03:36:06 +00:00
|
|
|
mIC = mParent.getCurrentInputConnection();
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
|
|
|
mIC.beginBatchEdit();
|
|
|
|
}
|
2012-06-08 10:04:09 +00:00
|
|
|
} else {
|
|
|
|
if (DBG) {
|
|
|
|
throw new RuntimeException("Nest level too deep");
|
|
|
|
} else {
|
|
|
|
Log.e(TAG, "Nest level too deep : " + mNestLevel);
|
|
|
|
}
|
|
|
|
}
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
2012-09-10 10:27:45 +00:00
|
|
|
|
2012-06-08 10:04:09 +00:00
|
|
|
public void endBatchEdit() {
|
|
|
|
if (mNestLevel <= 0) Log.e(TAG, "Batch edit not in progress!"); // TODO: exception instead
|
2012-08-02 00:26:45 +00:00
|
|
|
if (--mNestLevel == 0 && null != mIC) {
|
|
|
|
mIC.endBatchEdit();
|
|
|
|
}
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
|
|
|
}
|
|
|
|
|
2013-09-20 09:01:32 +00:00
|
|
|
/**
|
|
|
|
* Reset the cached text and retrieve it again from the editor.
|
|
|
|
*
|
|
|
|
* This should be called when the cursor moved. It's possible that we can't connect to
|
|
|
|
* the application when doing this; notably, this happens sometimes during rotation, probably
|
|
|
|
* because of a race condition in the framework. In this case, we just can't retrieve the
|
|
|
|
* data, so we empty the cache and note that we don't know the new cursor position, and we
|
|
|
|
* return false so that the caller knows about this and can retry later.
|
|
|
|
*
|
2013-12-13 08:09:16 +00:00
|
|
|
* @param newSelStart the new position of the selection start, as received from the system.
|
|
|
|
* @param newSelEnd the new position of the selection end, as received from the system.
|
|
|
|
* @param shouldFinishComposition whether we should finish the composition in progress.
|
2013-09-20 09:01:32 +00:00
|
|
|
* @return true if we were able to connect to the editor successfully, false otherwise. When
|
|
|
|
* this method returns false, the caches could not be correctly refreshed so they were only
|
|
|
|
* reset: the caller should try again later to return to normal operation.
|
|
|
|
*/
|
2013-12-13 08:09:16 +00:00
|
|
|
public boolean resetCachesUponCursorMoveAndReturnSuccess(final int newSelStart,
|
|
|
|
final int newSelEnd, final boolean shouldFinishComposition) {
|
|
|
|
mExpectedSelStart = newSelStart;
|
|
|
|
mExpectedSelEnd = newSelEnd;
|
2012-09-10 10:27:45 +00:00
|
|
|
mComposingText.setLength(0);
|
2013-12-13 08:09:16 +00:00
|
|
|
final boolean didReloadTextSuccessfully = reloadTextCache();
|
|
|
|
if (!didReloadTextSuccessfully) {
|
|
|
|
Log.d(TAG, "Will try to retrieve text later.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (null != mIC && shouldFinishComposition) {
|
|
|
|
mIC.finishComposingText();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reload the cached text from the InputConnection.
|
|
|
|
*
|
|
|
|
* @return true if successful
|
|
|
|
*/
|
|
|
|
private boolean reloadTextCache() {
|
2012-09-10 10:27:45 +00:00
|
|
|
mCommittedTextBeforeComposingText.setLength(0);
|
2013-09-20 09:01:32 +00:00
|
|
|
mIC = mParent.getCurrentInputConnection();
|
|
|
|
// Call upon the inputconnection directly since our own method is using the cache, and
|
|
|
|
// we want to refresh it.
|
|
|
|
final CharSequence textBeforeCursor = null == mIC ? null :
|
|
|
|
mIC.getTextBeforeCursor(Constants.EDITOR_CONTENTS_CACHE_SIZE, 0);
|
|
|
|
if (null == textBeforeCursor) {
|
|
|
|
// For some reason the app thinks we are not connected to it. This looks like a
|
|
|
|
// framework bug... Fall back to ground state and return false.
|
2013-12-13 08:09:16 +00:00
|
|
|
mExpectedSelStart = INVALID_CURSOR_POSITION;
|
|
|
|
mExpectedSelEnd = INVALID_CURSOR_POSITION;
|
|
|
|
Log.e(TAG, "Unable to connect to the editor to retrieve text.");
|
2013-09-20 09:01:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
mCommittedTextBeforeComposingText.append(textBeforeCursor);
|
|
|
|
return true;
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
2012-06-08 14:02:37 +00:00
|
|
|
private void checkBatchEdit() {
|
|
|
|
if (mNestLevel != 1) {
|
|
|
|
// TODO: exception instead
|
|
|
|
Log.e(TAG, "Batch edit level incorrect : " + mNestLevel);
|
2013-06-25 08:03:05 +00:00
|
|
|
Log.e(TAG, DebugLogUtils.getStackTrace(4));
|
2012-06-08 14:02:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-08 10:04:09 +00:00
|
|
|
public void finishComposingText() {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2014-02-18 07:58:04 +00:00
|
|
|
// TODO: this is not correct! The cursor is not necessarily after the composing text.
|
|
|
|
// In the practice right now this is only called when input ends so it will be reset so
|
|
|
|
// it works, but it's wrong and should be fixed.
|
2012-09-10 10:27:45 +00:00
|
|
|
mCommittedTextBeforeComposingText.append(mComposingText);
|
|
|
|
mComposingText.setLength(0);
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
|
|
|
mIC.finishComposingText();
|
|
|
|
}
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void commitText(final CharSequence text, final int i) {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
|
|
|
mCommittedTextBeforeComposingText.append(text);
|
2014-02-18 07:58:04 +00:00
|
|
|
// TODO: the following is exceedingly error-prone. Right now when the cursor is in the
|
|
|
|
// middle of the composing word mComposingText only holds the part of the composing text
|
|
|
|
// that is before the cursor, so this actually works, but it's terribly confusing. Fix this.
|
2013-12-13 08:09:16 +00:00
|
|
|
mExpectedSelStart += text.length() - mComposingText.length();
|
|
|
|
mExpectedSelEnd = mExpectedSelStart;
|
2012-09-10 10:27:45 +00:00
|
|
|
mComposingText.setLength(0);
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
|
|
|
mIC.commitText(text, i);
|
|
|
|
}
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 13:00:35 +00:00
|
|
|
public CharSequence getSelectedText(final int flags) {
|
2014-01-17 04:14:29 +00:00
|
|
|
return (null == mIC) ? null : mIC.getSelectedText(flags);
|
2012-12-03 13:00:35 +00:00
|
|
|
}
|
|
|
|
|
2013-07-02 09:07:35 +00:00
|
|
|
public boolean canDeleteCharacters() {
|
2013-12-13 08:09:16 +00:00
|
|
|
return mExpectedSelStart > 0;
|
2013-07-02 09:07:35 +00:00
|
|
|
}
|
|
|
|
|
2012-09-14 07:53:01 +00:00
|
|
|
/**
|
|
|
|
* Gets the caps modes we should be in after this specific string.
|
|
|
|
*
|
|
|
|
* This returns a bit set of TextUtils#CAP_MODE_*, masked by the inputType argument.
|
|
|
|
* This method also supports faking an additional space after the string passed in argument,
|
|
|
|
* to support cases where a space will be added automatically, like in phantom space
|
|
|
|
* state for example.
|
|
|
|
* Note that for English, we are using American typography rules (which are not specific to
|
|
|
|
* American English, it's just the most common set of rules for English).
|
|
|
|
*
|
|
|
|
* @param inputType a mask of the caps modes to test for.
|
2014-01-17 04:14:29 +00:00
|
|
|
* @param spacingAndPunctuations the values of the settings to use for locale and separators.
|
2012-09-14 07:53:01 +00:00
|
|
|
* @param hasSpaceBefore if we should consider there should be a space after the string.
|
|
|
|
* @return the caps modes that should be on as a set of bits
|
|
|
|
*/
|
2014-01-17 04:14:29 +00:00
|
|
|
public int getCursorCapsMode(final int inputType,
|
|
|
|
final SpacingAndPunctuations spacingAndPunctuations, final boolean hasSpaceBefore) {
|
2012-07-05 03:36:06 +00:00
|
|
|
mIC = mParent.getCurrentInputConnection();
|
2012-06-08 10:04:09 +00:00
|
|
|
if (null == mIC) return Constants.TextUtils.CAP_MODE_OFF;
|
2012-09-14 09:53:56 +00:00
|
|
|
if (!TextUtils.isEmpty(mComposingText)) {
|
|
|
|
if (hasSpaceBefore) {
|
|
|
|
// If we have some composing text and a space before, then we should have
|
|
|
|
// MODE_CHARACTERS and MODE_WORDS on.
|
|
|
|
return (TextUtils.CAP_MODE_CHARACTERS | TextUtils.CAP_MODE_WORDS) & inputType;
|
|
|
|
} else {
|
|
|
|
// We have some composing text - we should be in MODE_CHARACTERS only.
|
|
|
|
return TextUtils.CAP_MODE_CHARACTERS & inputType;
|
|
|
|
}
|
|
|
|
}
|
2012-09-10 10:27:45 +00:00
|
|
|
// TODO: this will generally work, but there may be cases where the buffer contains SOME
|
|
|
|
// information but not enough to determine the caps mode accurately. This may happen after
|
|
|
|
// heavy pressing of delete, for example DEFAULT_TEXT_CACHE_SIZE - 5 times or so.
|
|
|
|
// getCapsMode should be updated to be able to return a "not enough info" result so that
|
|
|
|
// we can get more context only when needed.
|
2013-12-13 08:09:16 +00:00
|
|
|
if (TextUtils.isEmpty(mCommittedTextBeforeComposingText) && 0 != mExpectedSelStart) {
|
|
|
|
if (!reloadTextCache()) {
|
|
|
|
Log.w(TAG, "Unable to connect to the editor. "
|
|
|
|
+ "Setting caps mode without knowing text.");
|
2013-09-20 06:45:51 +00:00
|
|
|
}
|
2012-09-10 10:27:45 +00:00
|
|
|
}
|
|
|
|
// This never calls InputConnection#getCapsMode - in fact, it's a static method that
|
|
|
|
// never blocks or initiates IPC.
|
2013-10-08 04:06:16 +00:00
|
|
|
return CapsModeUtils.getCapsMode(mCommittedTextBeforeComposingText, inputType,
|
2014-01-17 04:14:29 +00:00
|
|
|
spacingAndPunctuations, hasSpaceBefore);
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
2012-10-16 21:41:15 +00:00
|
|
|
public int getCodePointBeforeCursor() {
|
2014-01-17 04:14:29 +00:00
|
|
|
final int length = mCommittedTextBeforeComposingText.length();
|
|
|
|
if (length < 1) return Constants.NOT_A_CODE;
|
|
|
|
return Character.codePointBefore(mCommittedTextBeforeComposingText, length);
|
2012-10-16 21:41:15 +00:00
|
|
|
}
|
|
|
|
|
2013-07-26 08:06:32 +00:00
|
|
|
public CharSequence getTextBeforeCursor(final int n, final int flags) {
|
|
|
|
final int cachedLength =
|
|
|
|
mCommittedTextBeforeComposingText.length() + mComposingText.length();
|
|
|
|
// If we have enough characters to satisfy the request, or if we have all characters in
|
|
|
|
// the text field, then we can return the cached version right away.
|
2013-11-13 05:20:45 +00:00
|
|
|
// However, if we don't have an expected cursor position, then we should always
|
|
|
|
// go fetch the cache again (as it happens, INVALID_CURSOR_POSITION < 0, so we need to
|
|
|
|
// test for this explicitly)
|
2013-12-13 08:09:16 +00:00
|
|
|
if (INVALID_CURSOR_POSITION != mExpectedSelStart
|
|
|
|
&& (cachedLength >= n || cachedLength >= mExpectedSelStart)) {
|
2013-07-26 08:06:32 +00:00
|
|
|
final StringBuilder s = new StringBuilder(mCommittedTextBeforeComposingText);
|
2013-10-22 10:22:57 +00:00
|
|
|
// We call #toString() here to create a temporary object.
|
|
|
|
// In some situations, this method is called on a worker thread, and it's possible
|
|
|
|
// the main thread touches the contents of mComposingText while this worker thread
|
|
|
|
// is suspended, because mComposingText is a StringBuilder. This may lead to crashes,
|
|
|
|
// so we call #toString() on it. That will result in the return value being strictly
|
|
|
|
// speaking wrong, but since this is used for basing bigram probability off, and
|
|
|
|
// it's only going to matter for one getSuggestions call, it's fine in the practice.
|
|
|
|
s.append(mComposingText.toString());
|
2013-07-26 08:06:32 +00:00
|
|
|
if (s.length() > n) {
|
|
|
|
s.delete(0, s.length() - n);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
2012-07-05 03:36:06 +00:00
|
|
|
mIC = mParent.getCurrentInputConnection();
|
2014-01-17 04:14:29 +00:00
|
|
|
return (null == mIC) ? null : mIC.getTextBeforeCursor(n, flags);
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
2013-07-26 08:06:32 +00:00
|
|
|
public CharSequence getTextAfterCursor(final int n, final int flags) {
|
2012-07-05 03:36:06 +00:00
|
|
|
mIC = mParent.getCurrentInputConnection();
|
2014-01-17 04:14:29 +00:00
|
|
|
return (null == mIC) ? null : mIC.getTextAfterCursor(n, flags);
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
2013-07-26 08:06:32 +00:00
|
|
|
public void deleteSurroundingText(final int beforeLength, final int afterLength) {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2014-02-18 07:58:04 +00:00
|
|
|
// TODO: the following is incorrect if the cursor is not immediately after the composition.
|
|
|
|
// Right now we never come here in this case because we reset the composing state before we
|
|
|
|
// come here in this case, but we need to fix this.
|
2013-07-26 08:06:32 +00:00
|
|
|
final int remainingChars = mComposingText.length() - beforeLength;
|
2012-09-10 10:27:45 +00:00
|
|
|
if (remainingChars >= 0) {
|
|
|
|
mComposingText.setLength(remainingChars);
|
|
|
|
} else {
|
|
|
|
mComposingText.setLength(0);
|
|
|
|
// Never cut under 0
|
|
|
|
final int len = Math.max(mCommittedTextBeforeComposingText.length()
|
|
|
|
+ remainingChars, 0);
|
|
|
|
mCommittedTextBeforeComposingText.setLength(len);
|
|
|
|
}
|
2013-12-13 08:09:16 +00:00
|
|
|
if (mExpectedSelStart > beforeLength) {
|
|
|
|
mExpectedSelStart -= beforeLength;
|
|
|
|
mExpectedSelEnd -= beforeLength;
|
2012-09-10 10:27:45 +00:00
|
|
|
} else {
|
2013-12-13 08:09:16 +00:00
|
|
|
// There are fewer characters before the cursor in the buffer than we are being asked to
|
2014-03-10 06:53:19 +00:00
|
|
|
// delete. Only delete what is there, and update the end with the amount deleted.
|
2013-12-13 08:09:16 +00:00
|
|
|
mExpectedSelEnd -= mExpectedSelStart;
|
2014-03-10 06:53:19 +00:00
|
|
|
mExpectedSelStart = 0;
|
2012-09-10 10:27:45 +00:00
|
|
|
}
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
2013-07-26 08:06:32 +00:00
|
|
|
mIC.deleteSurroundingText(beforeLength, afterLength);
|
2012-08-02 00:26:45 +00:00
|
|
|
}
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void performEditorAction(final int actionId) {
|
2012-07-05 03:36:06 +00:00
|
|
|
mIC = mParent.getCurrentInputConnection();
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
|
|
|
mIC.performEditorAction(actionId);
|
|
|
|
}
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void sendKeyEvent(final KeyEvent keyEvent) {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-09-10 10:27:45 +00:00
|
|
|
if (keyEvent.getAction() == KeyEvent.ACTION_DOWN) {
|
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2013-01-06 02:10:27 +00:00
|
|
|
// This method is only called for enter or backspace when speaking to old applications
|
|
|
|
// (target SDK <= 15 (Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1)), or for digits.
|
2012-09-10 10:27:45 +00:00
|
|
|
// When talking to new applications we never use this method because it's inherently
|
|
|
|
// racy and has unpredictable results, but for backward compatibility we continue
|
|
|
|
// sending the key events for only Enter and Backspace because some applications
|
|
|
|
// mistakenly catch them to do some stuff.
|
|
|
|
switch (keyEvent.getKeyCode()) {
|
2013-01-06 02:10:27 +00:00
|
|
|
case KeyEvent.KEYCODE_ENTER:
|
|
|
|
mCommittedTextBeforeComposingText.append("\n");
|
2013-12-13 08:09:16 +00:00
|
|
|
mExpectedSelStart += 1;
|
|
|
|
mExpectedSelEnd = mExpectedSelStart;
|
2013-01-06 02:10:27 +00:00
|
|
|
break;
|
|
|
|
case KeyEvent.KEYCODE_DEL:
|
|
|
|
if (0 == mComposingText.length()) {
|
|
|
|
if (mCommittedTextBeforeComposingText.length() > 0) {
|
|
|
|
mCommittedTextBeforeComposingText.delete(
|
|
|
|
mCommittedTextBeforeComposingText.length() - 1,
|
|
|
|
mCommittedTextBeforeComposingText.length());
|
2012-09-10 10:27:45 +00:00
|
|
|
}
|
2013-01-06 02:10:27 +00:00
|
|
|
} else {
|
|
|
|
mComposingText.delete(mComposingText.length() - 1, mComposingText.length());
|
|
|
|
}
|
2013-12-13 08:09:16 +00:00
|
|
|
if (mExpectedSelStart > 0 && mExpectedSelStart == mExpectedSelEnd) {
|
|
|
|
// TODO: Handle surrogate pairs.
|
|
|
|
mExpectedSelStart -= 1;
|
|
|
|
}
|
|
|
|
mExpectedSelEnd = mExpectedSelStart;
|
2013-01-06 02:10:27 +00:00
|
|
|
break;
|
|
|
|
case KeyEvent.KEYCODE_UNKNOWN:
|
|
|
|
if (null != keyEvent.getCharacters()) {
|
|
|
|
mCommittedTextBeforeComposingText.append(keyEvent.getCharacters());
|
2013-12-13 08:09:16 +00:00
|
|
|
mExpectedSelStart += keyEvent.getCharacters().length();
|
|
|
|
mExpectedSelEnd = mExpectedSelStart;
|
2013-01-06 02:10:27 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2013-12-13 08:09:16 +00:00
|
|
|
final String text = StringUtils.newSingleCodePointString(keyEvent.getUnicodeChar());
|
2013-01-06 02:10:27 +00:00
|
|
|
mCommittedTextBeforeComposingText.append(text);
|
2013-12-13 08:09:16 +00:00
|
|
|
mExpectedSelStart += text.length();
|
|
|
|
mExpectedSelEnd = mExpectedSelStart;
|
2013-01-06 02:10:27 +00:00
|
|
|
break;
|
2012-09-10 10:27:45 +00:00
|
|
|
}
|
|
|
|
}
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
|
|
|
mIC.sendKeyEvent(keyEvent);
|
|
|
|
}
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
2012-12-13 12:59:13 +00:00
|
|
|
public void setComposingRegion(final int start, final int end) {
|
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
|
|
|
final CharSequence textBeforeCursor =
|
2013-09-20 09:01:32 +00:00
|
|
|
getTextBeforeCursor(Constants.EDITOR_CONTENTS_CACHE_SIZE + (end - start), 0);
|
2012-12-13 12:59:13 +00:00
|
|
|
mCommittedTextBeforeComposingText.setLength(0);
|
2013-03-29 09:39:28 +00:00
|
|
|
if (!TextUtils.isEmpty(textBeforeCursor)) {
|
2014-02-18 07:58:04 +00:00
|
|
|
// The cursor is not necessarily at the end of the composing text, but we have its
|
|
|
|
// position in mExpectedSelStart and mExpectedSelEnd. In this case we want the start
|
|
|
|
// of the text, so we should use mExpectedSelStart. In other words, the composing
|
|
|
|
// text starts (mExpectedSelStart - start) characters before the end of textBeforeCursor
|
2013-03-29 09:39:28 +00:00
|
|
|
final int indexOfStartOfComposingText =
|
2014-02-18 07:58:04 +00:00
|
|
|
Math.max(textBeforeCursor.length() - (mExpectedSelStart - start), 0);
|
2013-03-29 09:39:28 +00:00
|
|
|
mComposingText.append(textBeforeCursor.subSequence(indexOfStartOfComposingText,
|
|
|
|
textBeforeCursor.length()));
|
|
|
|
mCommittedTextBeforeComposingText.append(
|
|
|
|
textBeforeCursor.subSequence(0, indexOfStartOfComposingText));
|
|
|
|
}
|
2012-12-13 12:59:13 +00:00
|
|
|
if (null != mIC) {
|
|
|
|
mIC.setComposingRegion(start, end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-26 08:06:32 +00:00
|
|
|
public void setComposingText(final CharSequence text, final int newCursorPosition) {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2013-12-13 08:09:16 +00:00
|
|
|
mExpectedSelStart += text.length() - mComposingText.length();
|
|
|
|
mExpectedSelEnd = mExpectedSelStart;
|
2012-09-10 10:27:45 +00:00
|
|
|
mComposingText.setLength(0);
|
|
|
|
mComposingText.append(text);
|
2013-12-13 08:09:16 +00:00
|
|
|
// TODO: support values of newCursorPosition != 1. At this time, this is never called with
|
|
|
|
// newCursorPosition != 1.
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
2013-07-26 08:06:32 +00:00
|
|
|
mIC.setComposingText(text, newCursorPosition);
|
2012-08-02 00:26:45 +00:00
|
|
|
}
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 08:09:16 +00:00
|
|
|
/**
|
|
|
|
* Set the selection of the text editor.
|
|
|
|
*
|
|
|
|
* Calls through to {@link InputConnection#setSelection(int, int)}.
|
|
|
|
*
|
|
|
|
* @param start the character index where the selection should start.
|
|
|
|
* @param end the character index where the selection should end.
|
2014-02-24 07:52:55 +00:00
|
|
|
* @return Returns true on success, false on failure: either the input connection is no longer
|
|
|
|
* valid when setting the selection or when retrieving the text cache at that point, or
|
|
|
|
* invalid arguments were passed.
|
2013-12-13 08:09:16 +00:00
|
|
|
*/
|
|
|
|
public boolean setSelection(final int start, final int end) {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2014-02-24 07:52:55 +00:00
|
|
|
if (start < 0 || end < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-13 08:09:16 +00:00
|
|
|
mExpectedSelStart = start;
|
|
|
|
mExpectedSelEnd = end;
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
2013-12-13 08:09:16 +00:00
|
|
|
final boolean isIcValid = mIC.setSelection(start, end);
|
|
|
|
if (!isIcValid) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-02 00:26:45 +00:00
|
|
|
}
|
2013-12-13 08:09:16 +00:00
|
|
|
return reloadTextCache();
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void commitCorrection(final CorrectionInfo correctionInfo) {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
|
|
|
// This has no effect on the text field and does not change its content. It only makes
|
|
|
|
// TextView flash the text for a second based on indices contained in the argument.
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
|
|
|
mIC.commitCorrection(correctionInfo);
|
|
|
|
}
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void commitCompletion(final CompletionInfo completionInfo) {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2013-04-10 13:05:34 +00:00
|
|
|
CharSequence text = completionInfo.getText();
|
|
|
|
// text should never be null, but just in case, it's better to insert nothing than to crash
|
|
|
|
if (null == text) text = "";
|
2012-09-10 10:27:45 +00:00
|
|
|
mCommittedTextBeforeComposingText.append(text);
|
2013-12-13 08:09:16 +00:00
|
|
|
mExpectedSelStart += text.length() - mComposingText.length();
|
|
|
|
mExpectedSelEnd = mExpectedSelStart;
|
2012-09-10 10:27:45 +00:00
|
|
|
mComposingText.setLength(0);
|
2012-08-02 00:26:45 +00:00
|
|
|
if (null != mIC) {
|
|
|
|
mIC.commitCompletion(completionInfo);
|
|
|
|
}
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT) checkConsistencyForDebug();
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|
2012-06-08 10:44:38 +00:00
|
|
|
|
2012-12-06 11:47:19 +00:00
|
|
|
@SuppressWarnings("unused")
|
2014-05-21 06:40:08 +00:00
|
|
|
public PrevWordsInfo getPrevWordsInfoFromNthPreviousWord(
|
|
|
|
final SpacingAndPunctuations spacingAndPunctuations, final int n) {
|
2012-07-05 03:36:06 +00:00
|
|
|
mIC = mParent.getCurrentInputConnection();
|
2014-05-21 06:40:08 +00:00
|
|
|
if (null == mIC) {
|
2014-05-23 14:19:33 +00:00
|
|
|
return PrevWordsInfo.EMPTY_PREV_WORDS_INFO;
|
2014-05-21 06:40:08 +00:00
|
|
|
}
|
2013-07-26 08:06:32 +00:00
|
|
|
final CharSequence prev = getTextBeforeCursor(LOOKBACK_CHARACTER_NUM, 0);
|
2012-09-10 10:27:45 +00:00
|
|
|
if (DEBUG_PREVIOUS_TEXT && null != prev) {
|
|
|
|
final int checkLength = LOOKBACK_CHARACTER_NUM - 1;
|
|
|
|
final String reference = prev.length() <= checkLength ? prev.toString()
|
|
|
|
: prev.subSequence(prev.length() - checkLength, prev.length()).toString();
|
2014-02-18 07:58:04 +00:00
|
|
|
// TODO: right now the following works because mComposingText holds the part of the
|
|
|
|
// composing text that is before the cursor, but this is very confusing. We should
|
|
|
|
// fix it.
|
2012-09-10 10:27:45 +00:00
|
|
|
final StringBuilder internal = new StringBuilder()
|
|
|
|
.append(mCommittedTextBeforeComposingText).append(mComposingText);
|
|
|
|
if (internal.length() > checkLength) {
|
|
|
|
internal.delete(0, internal.length() - checkLength);
|
|
|
|
if (!(reference.equals(internal.toString()))) {
|
|
|
|
final String context =
|
|
|
|
"Expected text = " + internal + "\nActual text = " + reference;
|
|
|
|
((LatinIME)mParent).debugDumpStateAndCrashWithException(context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-27 15:07:07 +00:00
|
|
|
return getPrevWordsInfoFromNthPreviousWord(prev, spacingAndPunctuations, n);
|
2012-06-08 10:44:38 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 05:56:56 +00:00
|
|
|
private static boolean isSeparator(final int code, final int[] sortedSeparators) {
|
|
|
|
return Arrays.binarySearch(sortedSeparators, code) >= 0;
|
2012-06-08 10:44:38 +00:00
|
|
|
}
|
|
|
|
|
2014-06-27 15:07:07 +00:00
|
|
|
// Get context information from nth word before the cursor. n = 1 retrieves the words
|
|
|
|
// immediately before the cursor, n = 2 retrieves the words before that, and so on. This splits
|
|
|
|
// on whitespace only.
|
|
|
|
// Also, it won't return words that end in a separator (if the nth word before the cursor
|
|
|
|
// ends in a separator, it returns information representing beginning-of-sentence).
|
|
|
|
// Example (when Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM is 2):
|
|
|
|
// (n = 1) "abc def|" -> abc, def
|
|
|
|
// (n = 1) "abc def |" -> abc, def
|
|
|
|
// (n = 1) "abc 'def|" -> empty, 'def
|
|
|
|
// (n = 1) "abc def. |" -> beginning-of-sentence
|
|
|
|
// (n = 1) "abc def . |" -> beginning-of-sentence
|
|
|
|
// (n = 2) "abc def|" -> beginning-of-sentence, abc
|
|
|
|
// (n = 2) "abc def |" -> beginning-of-sentence, abc
|
|
|
|
// (n = 2) "abc 'def|" -> empty. The context is different from "abc def", but we cannot
|
|
|
|
// represent this situation using PrevWordsInfo. See TODO in the method.
|
|
|
|
// TODO: The next example's result should be "abc, def". This have to be fixed before we
|
|
|
|
// retrieve the prior context of Beginning-of-Sentence.
|
|
|
|
// (n = 2) "abc def. |" -> beginning-of-sentence, abc
|
|
|
|
// (n = 2) "abc def . |" -> abc, def
|
|
|
|
// (n = 2) "abc|" -> beginning-of-sentence
|
|
|
|
// (n = 2) "abc |" -> beginning-of-sentence
|
|
|
|
// (n = 2) "abc. def|" -> beginning-of-sentence
|
|
|
|
public static PrevWordsInfo getPrevWordsInfoFromNthPreviousWord(final CharSequence prev,
|
|
|
|
final SpacingAndPunctuations spacingAndPunctuations, final int n) {
|
|
|
|
if (prev == null) return PrevWordsInfo.EMPTY_PREV_WORDS_INFO;
|
|
|
|
final String[] w = spaceRegex.split(prev);
|
|
|
|
final WordInfo[] prevWordsInfo = new WordInfo[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
|
|
|
|
for (int i = 0; i < prevWordsInfo.length; i++) {
|
|
|
|
final int focusedWordIndex = w.length - n - i;
|
|
|
|
// Referring to the word after the focused word.
|
|
|
|
if ((focusedWordIndex + 1) >= 0 && (focusedWordIndex + 1) < w.length) {
|
|
|
|
final String wordFollowingTheNthPrevWord = w[focusedWordIndex + 1];
|
|
|
|
if (!wordFollowingTheNthPrevWord.isEmpty()) {
|
|
|
|
final char firstChar = wordFollowingTheNthPrevWord.charAt(0);
|
|
|
|
if (spacingAndPunctuations.isWordConnector(firstChar)) {
|
|
|
|
// The word following the focused word is starting with a word connector.
|
|
|
|
// TODO: Return meaningful context for this case.
|
|
|
|
prevWordsInfo[i] = WordInfo.EMPTY_WORD_INFO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If we can't find (n + i) words, the context is beginning-of-sentence.
|
|
|
|
if (focusedWordIndex < 0) {
|
|
|
|
prevWordsInfo[i] = WordInfo.BEGINNING_OF_SENTENCE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
final String focusedWord = w[focusedWordIndex];
|
|
|
|
// If the word is empty, the context is beginning-of-sentence.
|
|
|
|
final int length = focusedWord.length();
|
|
|
|
if (length <= 0) {
|
|
|
|
prevWordsInfo[i] = WordInfo.BEGINNING_OF_SENTENCE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// If ends in a sentence separator, the context is beginning-of-sentence.
|
|
|
|
final char lastChar = focusedWord.charAt(length - 1);
|
|
|
|
if (spacingAndPunctuations.isSentenceSeparator(lastChar)) {
|
|
|
|
prevWordsInfo[i] = WordInfo.BEGINNING_OF_SENTENCE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// If ends in a word separator or connector, the context is unclear.
|
|
|
|
// TODO: Return meaningful context for this case.
|
|
|
|
if (spacingAndPunctuations.isWordSeparator(lastChar)
|
|
|
|
|| spacingAndPunctuations.isWordConnector(lastChar)) {
|
|
|
|
prevWordsInfo[i] = WordInfo.EMPTY_WORD_INFO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
prevWordsInfo[i] = new WordInfo(focusedWord);
|
|
|
|
}
|
|
|
|
return new PrevWordsInfo(prevWordsInfo);
|
|
|
|
}
|
|
|
|
|
2012-06-08 10:44:38 +00:00
|
|
|
/**
|
|
|
|
* Returns the text surrounding the cursor.
|
|
|
|
*
|
2014-01-20 05:56:56 +00:00
|
|
|
* @param sortedSeparators a sorted array of code points that split words.
|
2012-06-08 10:44:38 +00:00
|
|
|
* @return a range containing the text surrounding the cursor
|
|
|
|
*/
|
2014-06-27 12:57:57 +00:00
|
|
|
public TextRange getWordRangeAtCursor(final int[] sortedSeparators) {
|
|
|
|
final int additionalPrecedingWordsCount = 0;
|
2012-07-05 03:36:06 +00:00
|
|
|
mIC = mParent.getCurrentInputConnection();
|
2014-01-20 05:56:56 +00:00
|
|
|
if (mIC == null) {
|
2012-06-08 10:44:38 +00:00
|
|
|
return null;
|
|
|
|
}
|
2013-09-20 09:01:32 +00:00
|
|
|
final CharSequence before = mIC.getTextBeforeCursor(Constants.EDITOR_CONTENTS_CACHE_SIZE,
|
2013-04-10 07:38:37 +00:00
|
|
|
InputConnection.GET_TEXT_WITH_STYLES);
|
2013-09-20 09:01:32 +00:00
|
|
|
final CharSequence after = mIC.getTextAfterCursor(Constants.EDITOR_CONTENTS_CACHE_SIZE,
|
2013-04-10 07:38:37 +00:00
|
|
|
InputConnection.GET_TEXT_WITH_STYLES);
|
2012-06-08 10:44:38 +00:00
|
|
|
if (before == null || after == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Going backward, alternate skipping non-separators and separators until enough words
|
|
|
|
// have been read.
|
2012-10-03 06:19:43 +00:00
|
|
|
int count = additionalPrecedingWordsCount;
|
2012-12-27 06:29:39 +00:00
|
|
|
int startIndexInBefore = before.length();
|
2012-06-08 10:44:38 +00:00
|
|
|
boolean isStoppingAtWhitespace = true; // toggles to indicate what to stop at
|
|
|
|
while (true) { // see comments below for why this is guaranteed to halt
|
2012-12-27 06:29:39 +00:00
|
|
|
while (startIndexInBefore > 0) {
|
|
|
|
final int codePoint = Character.codePointBefore(before, startIndexInBefore);
|
2014-01-20 05:56:56 +00:00
|
|
|
if (isStoppingAtWhitespace == isSeparator(codePoint, sortedSeparators)) {
|
2012-06-08 10:44:38 +00:00
|
|
|
break; // inner loop
|
|
|
|
}
|
2012-12-27 06:29:39 +00:00
|
|
|
--startIndexInBefore;
|
2012-06-08 10:44:38 +00:00
|
|
|
if (Character.isSupplementaryCodePoint(codePoint)) {
|
2012-12-27 06:29:39 +00:00
|
|
|
--startIndexInBefore;
|
2012-06-08 10:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// isStoppingAtWhitespace is true every other time through the loop,
|
|
|
|
// so additionalPrecedingWordsCount is guaranteed to become < 0, which
|
|
|
|
// guarantees outer loop termination
|
2012-10-03 06:19:43 +00:00
|
|
|
if (isStoppingAtWhitespace && (--count < 0)) {
|
2012-06-08 10:44:38 +00:00
|
|
|
break; // outer loop
|
|
|
|
}
|
|
|
|
isStoppingAtWhitespace = !isStoppingAtWhitespace;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find last word separator after the cursor
|
2012-12-27 06:29:39 +00:00
|
|
|
int endIndexInAfter = -1;
|
|
|
|
while (++endIndexInAfter < after.length()) {
|
|
|
|
final int codePoint = Character.codePointAt(after, endIndexInAfter);
|
2014-01-20 05:56:56 +00:00
|
|
|
if (isSeparator(codePoint, sortedSeparators)) {
|
2012-06-08 10:44:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (Character.isSupplementaryCodePoint(codePoint)) {
|
2012-12-27 06:29:39 +00:00
|
|
|
++endIndexInAfter;
|
2012-06-08 10:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-17 08:53:15 +00:00
|
|
|
final boolean hasUrlSpans =
|
|
|
|
SpannableStringUtils.hasUrlSpans(before, startIndexInBefore, before.length())
|
|
|
|
|| SpannableStringUtils.hasUrlSpans(after, 0, endIndexInAfter);
|
2013-09-12 10:11:59 +00:00
|
|
|
// We don't use TextUtils#concat because it copies all spans without respect to their
|
|
|
|
// nature. If the text includes a PARAGRAPH span and it has been split, then
|
|
|
|
// TextUtils#concat will crash when it tries to concat both sides of it.
|
2013-09-25 10:13:47 +00:00
|
|
|
return new TextRange(
|
|
|
|
SpannableStringUtils.concatWithNonParagraphSuggestionSpansOnly(before, after),
|
2014-02-17 08:53:15 +00:00
|
|
|
startIndexInBefore, before.length() + endIndexInAfter, before.length(),
|
|
|
|
hasUrlSpans);
|
2012-06-08 10:44:38 +00:00
|
|
|
}
|
|
|
|
|
2014-01-17 04:14:29 +00:00
|
|
|
public boolean isCursorTouchingWord(final SpacingAndPunctuations spacingAndPunctuations) {
|
2014-03-05 09:42:00 +00:00
|
|
|
if (isCursorFollowedByWordCharacter(spacingAndPunctuations)) {
|
|
|
|
// If what's after the cursor is a word character, then we're touching a word.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
final String textBeforeCursor = mCommittedTextBeforeComposingText.toString();
|
|
|
|
int indexOfCodePointInJavaChars = textBeforeCursor.length();
|
|
|
|
int consideredCodePoint = 0 == indexOfCodePointInJavaChars ? Constants.NOT_A_CODE
|
|
|
|
: textBeforeCursor.codePointBefore(indexOfCodePointInJavaChars);
|
|
|
|
// Search for the first non word-connector char
|
|
|
|
if (spacingAndPunctuations.isWordConnector(consideredCodePoint)) {
|
|
|
|
indexOfCodePointInJavaChars -= Character.charCount(consideredCodePoint);
|
|
|
|
consideredCodePoint = 0 == indexOfCodePointInJavaChars ? Constants.NOT_A_CODE
|
|
|
|
: textBeforeCursor.codePointBefore(indexOfCodePointInJavaChars);
|
|
|
|
}
|
|
|
|
return !(Constants.NOT_A_CODE == consideredCodePoint
|
|
|
|
|| spacingAndPunctuations.isWordSeparator(consideredCodePoint)
|
|
|
|
|| spacingAndPunctuations.isWordConnector(consideredCodePoint));
|
2014-01-08 07:47:21 +00:00
|
|
|
}
|
|
|
|
|
2014-01-17 04:14:29 +00:00
|
|
|
public boolean isCursorFollowedByWordCharacter(
|
|
|
|
final SpacingAndPunctuations spacingAndPunctuations) {
|
2013-07-26 10:50:19 +00:00
|
|
|
final CharSequence after = getTextAfterCursor(1, 0);
|
2014-01-17 04:14:29 +00:00
|
|
|
if (TextUtils.isEmpty(after)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
final int codePointAfterCursor = Character.codePointAt(after, 0);
|
|
|
|
if (spacingAndPunctuations.isWordSeparator(codePointAfterCursor)
|
|
|
|
|| spacingAndPunctuations.isWordConnector(codePointAfterCursor)) {
|
|
|
|
return false;
|
2012-06-08 11:23:13 +00:00
|
|
|
}
|
2014-01-17 04:14:29 +00:00
|
|
|
return true;
|
2012-06-08 11:23:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void removeTrailingSpace() {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2013-07-26 10:50:19 +00:00
|
|
|
final int codePointBeforeCursor = getCodePointBeforeCursor();
|
|
|
|
if (Constants.CODE_SPACE == codePointBeforeCursor) {
|
2012-06-08 11:23:13 +00:00
|
|
|
deleteSurroundingText(1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-08 12:45:41 +00:00
|
|
|
public boolean sameAsTextBeforeCursor(final CharSequence text) {
|
|
|
|
final CharSequence beforeText = getTextBeforeCursor(text.length(), 0);
|
|
|
|
return TextUtils.equals(text, beforeText);
|
|
|
|
}
|
|
|
|
|
2012-08-31 02:09:28 +00:00
|
|
|
public boolean revertDoubleSpacePeriod() {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-06-08 12:50:34 +00:00
|
|
|
// Here we test whether we indeed have a period and a space before us. This should not
|
|
|
|
// be needed, but it's there just in case something went wrong.
|
|
|
|
final CharSequence textBeforeCursor = getTextBeforeCursor(2, 0);
|
2014-06-27 03:50:18 +00:00
|
|
|
if (!TextUtils.equals(Constants.STRING_PERIOD_AND_SPACE, textBeforeCursor)) {
|
2012-06-08 12:50:34 +00:00
|
|
|
// Theoretically we should not be coming here if there isn't ". " before the
|
|
|
|
// cursor, but the application may be changing the text while we are typing, so
|
|
|
|
// anything goes. We should not crash.
|
|
|
|
Log.d(TAG, "Tried to revert double-space combo but we didn't find "
|
2014-06-27 03:50:18 +00:00
|
|
|
+ "\"" + Constants.STRING_PERIOD_AND_SPACE + "\" just before the cursor.");
|
2012-06-08 12:50:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-08-07 07:26:28 +00:00
|
|
|
// Double-space results in ". ". A backspace to cancel this should result in a single
|
|
|
|
// space in the text field, so we replace ". " with a single space.
|
2012-06-08 12:50:34 +00:00
|
|
|
deleteSurroundingText(2, 0);
|
2013-08-07 07:26:28 +00:00
|
|
|
final String singleSpace = " ";
|
|
|
|
commitText(singleSpace, 1);
|
2012-06-08 12:50:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-06-08 12:56:44 +00:00
|
|
|
|
|
|
|
public boolean revertSwapPunctuation() {
|
2012-10-01 07:03:21 +00:00
|
|
|
if (DEBUG_BATCH_NESTING) checkBatchEdit();
|
2012-06-08 12:56:44 +00:00
|
|
|
// Here we test whether we indeed have a space and something else before us. This should not
|
|
|
|
// be needed, but it's there just in case something went wrong.
|
|
|
|
final CharSequence textBeforeCursor = getTextBeforeCursor(2, 0);
|
|
|
|
// NOTE: This does not work with surrogate pairs. Hopefully when the keyboard is able to
|
|
|
|
// enter surrogate pairs this code will have been removed.
|
|
|
|
if (TextUtils.isEmpty(textBeforeCursor)
|
2012-10-29 05:46:34 +00:00
|
|
|
|| (Constants.CODE_SPACE != textBeforeCursor.charAt(1))) {
|
2012-06-08 12:56:44 +00:00
|
|
|
// We may only come here if the application is changing the text while we are typing.
|
|
|
|
// This is quite a broken case, but not logically impossible, so we shouldn't crash,
|
|
|
|
// but some debugging log may be in order.
|
|
|
|
Log.d(TAG, "Tried to revert a swap of punctuation but we didn't "
|
|
|
|
+ "find a space just before the cursor.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
deleteSurroundingText(2, 0);
|
2012-08-28 17:26:21 +00:00
|
|
|
final String text = " " + textBeforeCursor.subSequence(0, 1);
|
|
|
|
commitText(text, 1);
|
2012-06-08 12:56:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-09-12 03:40:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Heuristic to determine if this is an expected update of the cursor.
|
|
|
|
*
|
|
|
|
* Sometimes updates to the cursor position are late because of their asynchronous nature.
|
|
|
|
* This method tries to determine if this update is one, based on the values of the cursor
|
|
|
|
* position in the update, and the currently expected position of the cursor according to
|
|
|
|
* LatinIME's internal accounting. If this is not a belated expected update, then it should
|
|
|
|
* mean that the user moved the cursor explicitly.
|
|
|
|
* This is quite robust, but of course it's not perfect. In particular, it will fail in the
|
|
|
|
* case we get an update A, the user types in N characters so as to move the cursor to A+N but
|
|
|
|
* we don't get those, and then the user places the cursor between A and A+N, and we get only
|
|
|
|
* this update and not the ones in-between. This is almost impossible to achieve even trying
|
|
|
|
* very very hard.
|
|
|
|
*
|
2013-12-13 08:09:16 +00:00
|
|
|
* @param oldSelStart The value of the old selection in the update.
|
|
|
|
* @param newSelStart The value of the new selection in the update.
|
|
|
|
* @param oldSelEnd The value of the old selection end in the update.
|
|
|
|
* @param newSelEnd The value of the new selection end in the update.
|
2012-09-12 03:40:36 +00:00
|
|
|
* @return whether this is a belated expected update or not.
|
|
|
|
*/
|
2013-12-13 08:09:16 +00:00
|
|
|
public boolean isBelatedExpectedUpdate(final int oldSelStart, final int newSelStart,
|
|
|
|
final int oldSelEnd, final int newSelEnd) {
|
2014-01-09 05:09:26 +00:00
|
|
|
// This update is "belated" if we are expecting it. That is, mExpectedSelStart and
|
2013-12-13 08:09:16 +00:00
|
|
|
// mExpectedSelEnd match the new values that the TextView is updating TO.
|
|
|
|
if (mExpectedSelStart == newSelStart && mExpectedSelEnd == newSelEnd) return true;
|
2014-01-09 05:09:26 +00:00
|
|
|
// This update is not belated if mExpectedSelStart and mExpectedSelEnd match the old
|
|
|
|
// values, and one of newSelStart or newSelEnd is updated to a different value. In this
|
2014-02-20 04:28:20 +00:00
|
|
|
// case, it is likely that something other than the IME has moved the selection endpoint
|
2013-12-13 08:09:16 +00:00
|
|
|
// to the new value.
|
|
|
|
if (mExpectedSelStart == oldSelStart && mExpectedSelEnd == oldSelEnd
|
|
|
|
&& (oldSelStart != newSelStart || oldSelEnd != newSelEnd)) return false;
|
2014-02-20 04:28:20 +00:00
|
|
|
// If neither of the above two cases hold, then the system may be having trouble keeping up
|
2014-01-09 05:09:26 +00:00
|
|
|
// with updates. If 1) the selection is a cursor, 2) newSelStart is between oldSelStart
|
2013-12-13 08:09:16 +00:00
|
|
|
// and mExpectedSelStart, and 3) newSelEnd is between oldSelEnd and mExpectedSelEnd, then
|
|
|
|
// assume a belated update.
|
|
|
|
return (newSelStart == newSelEnd)
|
|
|
|
&& (newSelStart - oldSelStart) * (mExpectedSelStart - newSelStart) >= 0
|
|
|
|
&& (newSelEnd - oldSelEnd) * (mExpectedSelEnd - newSelEnd) >= 0;
|
2012-09-12 03:40:36 +00:00
|
|
|
}
|
2013-04-15 08:33:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Looks at the text just before the cursor to find out if it looks like a URL.
|
|
|
|
*
|
|
|
|
* The weakest point here is, if we don't have enough text bufferized, we may fail to realize
|
|
|
|
* we are in URL situation, but other places in this class have the same limitation and it
|
|
|
|
* does not matter too much in the practice.
|
|
|
|
*/
|
|
|
|
public boolean textBeforeCursorLooksLikeURL() {
|
|
|
|
return StringUtils.lastPartLooksLikeURL(mCommittedTextBeforeComposingText);
|
|
|
|
}
|
2014-01-09 05:09:26 +00:00
|
|
|
|
2014-01-17 01:40:05 +00:00
|
|
|
/**
|
|
|
|
* Looks at the text just before the cursor to find out if we are inside a double quote.
|
|
|
|
*
|
|
|
|
* As with #textBeforeCursorLooksLikeURL, this is dependent on how much text we have cached.
|
|
|
|
* However this won't be a concrete problem in most situations, as the cache is almost always
|
|
|
|
* long enough for this use.
|
|
|
|
*/
|
|
|
|
public boolean isInsideDoubleQuoteOrAfterDigit() {
|
|
|
|
return StringUtils.isInsideDoubleQuoteOrAfterDigit(mCommittedTextBeforeComposingText);
|
|
|
|
}
|
|
|
|
|
2014-01-09 05:09:26 +00:00
|
|
|
/**
|
|
|
|
* Try to get the text from the editor to expose lies the framework may have been
|
|
|
|
* telling us. Concretely, when the device rotates, the frameworks tells us about where the
|
|
|
|
* cursor used to be initially in the editor at the time it first received the focus; this
|
|
|
|
* may be completely different from the place it is upon rotation. Since we don't have any
|
|
|
|
* means to get the real value, try at least to ask the text view for some characters and
|
|
|
|
* detect the most damaging cases: when the cursor position is declared to be much smaller
|
|
|
|
* than it really is.
|
|
|
|
*/
|
|
|
|
public void tryFixLyingCursorPosition() {
|
|
|
|
final CharSequence textBeforeCursor = getTextBeforeCursor(
|
|
|
|
Constants.EDITOR_CONTENTS_CACHE_SIZE, 0);
|
|
|
|
if (null == textBeforeCursor) {
|
|
|
|
mExpectedSelStart = mExpectedSelEnd = Constants.NOT_A_CURSOR_POSITION;
|
|
|
|
} else {
|
|
|
|
final int textLength = textBeforeCursor.length();
|
2014-02-20 06:35:01 +00:00
|
|
|
if (textLength < Constants.EDITOR_CONTENTS_CACHE_SIZE
|
|
|
|
&& (textLength > mExpectedSelStart
|
|
|
|
|| mExpectedSelStart < Constants.EDITOR_CONTENTS_CACHE_SIZE)) {
|
2014-01-09 05:09:26 +00:00
|
|
|
// It should not be possible to have only one of those variables be
|
|
|
|
// NOT_A_CURSOR_POSITION, so if they are equal, either the selection is zero-sized
|
|
|
|
// (simple cursor, no selection) or there is no cursor/we don't know its pos
|
|
|
|
final boolean wasEqual = mExpectedSelStart == mExpectedSelEnd;
|
|
|
|
mExpectedSelStart = textLength;
|
|
|
|
// We can't figure out the value of mLastSelectionEnd :(
|
|
|
|
// But at least if it's smaller than mLastSelectionStart something is wrong,
|
|
|
|
// and if they used to be equal we also don't want to make it look like there is a
|
|
|
|
// selection.
|
|
|
|
if (wasEqual || mExpectedSelStart > mExpectedSelEnd) {
|
|
|
|
mExpectedSelEnd = mExpectedSelStart;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getExpectedSelectionStart() {
|
|
|
|
return mExpectedSelStart;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getExpectedSelectionEnd() {
|
|
|
|
return mExpectedSelEnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return whether there is a selection currently active.
|
|
|
|
*/
|
|
|
|
public boolean hasSelection() {
|
|
|
|
return mExpectedSelEnd != mExpectedSelStart;
|
|
|
|
}
|
Fix a bug on rotation with selection.
The symptom : when text is selected and the device is rotated,
sometimes the keyboard sets the word as being composed around
the start of the selection. Upon the next rotation this ends up
with the keyboard committing some text in place of the selection.
The cause : another bug in the framework with rotation >.>
The keyboard receives a call to startInput with a wrong cursor
position, namely one that does not represent a selection. The
keyboard sets a composition according to this wrong data. When
the keyboard is rotated again, it commits the text, which takes
the place of the selection.
The solution : actually when restarting input the keyboard
realizes that the cursor position is wrong. We cancel composition
at that time.
For robustness, this change also implements two other defensive
changes : upon call to onUpdateSelection, we actually realize
that the previous values were wrong, so we also fix it at that
time, and in addition, when rotating, we finishComposingText()
instead of commitText() which is less dangerous. Implementing
this later change also allows us to let less internal variables
from InputLogic escape to LatinIME, so it's also a good change
for design.
Bug: 14140799
Change-Id: Ib10de18e53e376ac1bbc8487e13d969828483346
2014-06-05 08:48:10 +00:00
|
|
|
|
|
|
|
public boolean isCursorPositionKnown() {
|
|
|
|
return INVALID_CURSOR_POSITION != mExpectedSelStart;
|
|
|
|
}
|
2012-06-08 10:04:09 +00:00
|
|
|
}
|