diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2020-05-25 08:49:49 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-05-25 08:49:49 +0000 |
commit | 43c04e1457bbdd44aeb5526f6fe33eeceafc35e8 (patch) | |
tree | 572543369c872222754364e34599a69db50c2aa7 /services/autofill/java | |
parent | a31117d668182f6078c388ccf2cc0ea7cfb0163b (diff) | |
parent | 81cbe29a1ce566921acd5aa6c4d2cc1b35748407 (diff) |
Merge "Handle input method switch properly for inline suggestions" into rvc-dev
Diffstat (limited to 'services/autofill/java')
3 files changed, 70 insertions, 0 deletions
diff --git a/services/autofill/java/com/android/server/autofill/AutofillManagerService.java b/services/autofill/java/com/android/server/autofill/AutofillManagerService.java index c6a54fc3d206..9432678b7d2b 100644 --- a/services/autofill/java/com/android/server/autofill/AutofillManagerService.java +++ b/services/autofill/java/com/android/server/autofill/AutofillManagerService.java @@ -249,6 +249,9 @@ public final class AutofillManagerService resolver.registerContentObserver(Settings.Global.getUriFor( Settings.Global.AUTOFILL_MAX_VISIBLE_DATASETS), false, observer, UserHandle.USER_ALL); + resolver.registerContentObserver(Settings.Secure.getUriFor( + Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, observer, + UserHandle.USER_ALL); } @Override // from AbstractMasterSystemService @@ -263,6 +266,9 @@ public final class AutofillManagerService case Settings.Global.AUTOFILL_MAX_VISIBLE_DATASETS: setMaxVisibleDatasetsFromSettings(); break; + case Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE: + handleInputMethodSwitch(userId); + break; default: Slog.w(TAG, "Unexpected property (" + property + "); updating cache instead"); // fall through @@ -273,6 +279,23 @@ public final class AutofillManagerService } } + private void handleInputMethodSwitch(@UserIdInt int userId) { + // TODO(b/156903336): Used the SettingsObserver with a background thread maybe slow to + // respond to the IME switch in certain situations. + // See: services/core/java/com/android/server/FgThread.java + // In particular, the shared background thread could be doing relatively long-running + // operations like saving state to disk (in addition to simply being a background priority), + // which can cause operations scheduled on it to be delayed for a user-noticeable amount + // of time. + + synchronized (mLock) { + final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); + if (service != null) { + service.onSwitchInputMethod(); + } + } + } + private void onDeviceConfigChange(@NonNull Set<String> keys) { for (String key : keys) { switch (key) { diff --git a/services/autofill/java/com/android/server/autofill/AutofillManagerServiceImpl.java b/services/autofill/java/com/android/server/autofill/AutofillManagerServiceImpl.java index 1aeb19bb4a9e..96b593d9682f 100644 --- a/services/autofill/java/com/android/server/autofill/AutofillManagerServiceImpl.java +++ b/services/autofill/java/com/android/server/autofill/AutofillManagerServiceImpl.java @@ -1564,6 +1564,16 @@ final class AutofillManagerServiceImpl } } + void onSwitchInputMethod() { + synchronized (mLock) { + final int sessionCount = mSessions.size(); + for (int i = 0; i < sessionCount; i++) { + final Session session = mSessions.valueAt(i); + session.onSwitchInputMethodLocked(); + } + } + } + @Override public String toString() { return "AutofillManagerServiceImpl: [userId=" + mUserId diff --git a/services/autofill/java/com/android/server/autofill/Session.java b/services/autofill/java/com/android/server/autofill/Session.java index 558acfa3ed19..06c60a3d08eb 100644 --- a/services/autofill/java/com/android/server/autofill/Session.java +++ b/services/autofill/java/com/android/server/autofill/Session.java @@ -312,6 +312,43 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState */ private final AssistDataReceiverImpl mAssistReceiver = new AssistDataReceiverImpl(); + void onSwitchInputMethodLocked() { + if (mExpiredResponse) { + return; + } + + if (shouldExpireResponseOnInputMethodSwitch()) { + // Set the old response expired, so the next action (ACTION_VIEW_ENTERED) can trigger + // a new fill request. + mExpiredResponse = true; + } + } + + private boolean shouldExpireResponseOnInputMethodSwitch() { + // One of below cases will need a new fill request to update the inline spec for the new + // input method. + // 1. The autofill provider supports inline suggestion and the render service is available. + // 2. Had triggered the augmented autofill and the render service is available. Whether the + // augmented autofill triggered by: + // a. Augmented autofill only + // b. The autofill provider respond null + if (mService.getRemoteInlineSuggestionRenderServiceLocked() == null) { + return false; + } + + if (isInlineSuggestionsEnabledByAutofillProviderLocked()) { + return true; + } + + final ViewState state = mViewStates.get(mCurrentViewId); + if (state != null + && (state.getState() & ViewState.STATE_TRIGGERED_AUGMENTED_AUTOFILL) != 0) { + return true; + } + + return false; + } + /** * TODO(b/151867668): improve how asynchronous data dependencies are handled, without using * CountDownLatch. |