Merge "Autofill optimization: don't contact server when session is finished." into oc-mr1-dev

This commit is contained in:
TreeHugger Robot
2017-09-19 22:47:16 +00:00
committed by Android (Google) Code Review
3 changed files with 110 additions and 22 deletions

View File

@@ -37,7 +37,6 @@ import android.service.autofill.AutofillService;
import android.service.autofill.FillEventHistory; import android.service.autofill.FillEventHistory;
import android.util.ArrayMap; import android.util.ArrayMap;
import android.util.ArraySet; import android.util.ArraySet;
import android.util.DebugUtils;
import android.util.Log; import android.util.Log;
import android.util.SparseArray; import android.util.SparseArray;
import android.view.View; import android.view.View;
@@ -202,9 +201,12 @@ public final class AutofillManager {
* Initial state of the autofill context, set when there is no session (i.e., when * Initial state of the autofill context, set when there is no session (i.e., when
* {@link #mSessionId} is {@link #NO_SESSION}). * {@link #mSessionId} is {@link #NO_SESSION}).
* *
* <p>In this state, app callbacks (such as {@link #notifyViewEntered(View)}) are notified to
* the server.
*
* @hide * @hide
*/ */
public static final int STATE_UNKNOWN = 1; public static final int STATE_UNKNOWN = 0;
/** /**
* State where the autofill context hasn't been {@link #commit() finished} nor * State where the autofill context hasn't been {@link #commit() finished} nor
@@ -212,7 +214,18 @@ public final class AutofillManager {
* *
* @hide * @hide
*/ */
public static final int STATE_ACTIVE = 2; public static final int STATE_ACTIVE = 1;
/**
* State where the autofill context was finished by the server because the autofill
* service could not autofill the page.
*
* <p>In this state, most apps callback (such as {@link #notifyViewEntered(View)}) are ignored,
* exception {@link #requestAutofill(View)} (and {@link #requestAutofill(View, int, Rect)}).
*
* @hide
*/
public static final int STATE_FINISHED = 2;
/** /**
* State where the autofill context has been {@link #commit() finished} but the server still has * State where the autofill context has been {@link #commit() finished} but the server still has
@@ -220,7 +233,7 @@ public final class AutofillManager {
* *
* @hide * @hide
*/ */
public static final int STATE_SHOWING_SAVE_UI = 4; public static final int STATE_SHOWING_SAVE_UI = 3;
/** /**
* Makes an authentication id from a request id and a dataset id. * Makes an authentication id from a request id and a dataset id.
@@ -559,6 +572,14 @@ public final class AutofillManager {
} }
AutofillCallback callback = null; AutofillCallback callback = null;
synchronized (mLock) { synchronized (mLock) {
if (isFinishedLocked() && (flags & FLAG_MANUAL_REQUEST) == 0) {
if (sVerbose) {
Log.v(TAG, "notifyViewEntered(flags=" + flags + ", view=" + view
+ "): ignored on state " + getStateAsStringLocked());
}
return;
}
ensureServiceClientAddedIfNeededLocked(); ensureServiceClientAddedIfNeededLocked();
if (!mEnabled) { if (!mEnabled) {
@@ -682,6 +703,14 @@ public final class AutofillManager {
} }
AutofillCallback callback = null; AutofillCallback callback = null;
synchronized (mLock) { synchronized (mLock) {
if (isFinishedLocked() && (flags & FLAG_MANUAL_REQUEST) == 0) {
if (sVerbose) {
Log.v(TAG, "notifyViewEntered(flags=" + flags + ", view=" + view
+ ", virtualId=" + virtualId
+ "): ignored on state " + getStateAsStringLocked());
}
return;
}
ensureServiceClientAddedIfNeededLocked(); ensureServiceClientAddedIfNeededLocked();
if (!mEnabled) { if (!mEnabled) {
@@ -765,6 +794,10 @@ public final class AutofillManager {
} }
if (!mEnabled || !isActiveLocked()) { if (!mEnabled || !isActiveLocked()) {
if (sVerbose && mEnabled) {
Log.v(TAG, "notifyValueChanged(" + view + "): ignoring on state "
+ getStateAsStringLocked());
}
return; return;
} }
@@ -950,10 +983,13 @@ public final class AutofillManager {
@NonNull AutofillValue value, int flags) { @NonNull AutofillValue value, int flags) {
if (sVerbose) { if (sVerbose) {
Log.v(TAG, "startSessionLocked(): id=" + id + ", bounds=" + bounds + ", value=" + value Log.v(TAG, "startSessionLocked(): id=" + id + ", bounds=" + bounds + ", value=" + value
+ ", flags=" + flags + ", state=" + mState); + ", flags=" + flags + ", state=" + getStateAsStringLocked());
} }
if (mState != STATE_UNKNOWN) { if (mState != STATE_UNKNOWN && (flags & FLAG_MANUAL_REQUEST) == 0) {
if (sDebug) Log.d(TAG, "not starting session for " + id + " on state " + mState); if (sVerbose) {
Log.v(TAG, "not automatically starting session for " + id
+ " on state " + getStateAsStringLocked());
}
return; return;
} }
try { try {
@@ -973,7 +1009,7 @@ public final class AutofillManager {
} }
private void finishSessionLocked() { private void finishSessionLocked() {
if (sVerbose) Log.v(TAG, "finishSessionLocked(): " + mState); if (sVerbose) Log.v(TAG, "finishSessionLocked(): " + getStateAsStringLocked());
if (!isActiveLocked()) return; if (!isActiveLocked()) return;
@@ -987,7 +1023,7 @@ public final class AutofillManager {
} }
private void cancelSessionLocked() { private void cancelSessionLocked() {
if (sVerbose) Log.v(TAG, "cancelSessionLocked(): " + mState); if (sVerbose) Log.v(TAG, "cancelSessionLocked(): " + getStateAsStringLocked());
if (!isActiveLocked()) return; if (!isActiveLocked()) return;
@@ -1306,6 +1342,14 @@ public final class AutofillManager {
} }
} }
private void setSessionFinished() {
if (sVerbose) Log.v(TAG, "setSessionFinished()");
synchronized (mLock) {
resetSessionLocked();
mState = STATE_FINISHED;
}
}
private void requestHideFillUi(AutofillId id) { private void requestHideFillUi(AutofillId id) {
final View anchor = findView(id); final View anchor = findView(id);
if (sVerbose) Log.v(TAG, "requestHideFillUi(" + id + "): anchor = " + anchor); if (sVerbose) Log.v(TAG, "requestHideFillUi(" + id + "): anchor = " + anchor);
@@ -1341,7 +1385,11 @@ public final class AutofillManager {
} }
} }
private void notifyNoFillUi(int sessionId, AutofillId id) { private void notifyNoFillUi(int sessionId, AutofillId id, boolean sessionFinished) {
if (sVerbose) {
Log.v(TAG, "notifyNoFillUi(): sessionId=" + sessionId + ", autofillId=" + id
+ ", finished=" + sessionFinished);
}
final View anchor = findView(id); final View anchor = findView(id);
if (anchor == null) { if (anchor == null) {
return; return;
@@ -1361,7 +1409,11 @@ public final class AutofillManager {
} else { } else {
callback.onAutofillEvent(anchor, AutofillCallback.EVENT_INPUT_UNAVAILABLE); callback.onAutofillEvent(anchor, AutofillCallback.EVENT_INPUT_UNAVAILABLE);
} }
}
if (sessionFinished) {
// Callback call was "hijacked" to also update the session state.
setSessionFinished();
} }
} }
@@ -1434,8 +1486,7 @@ public final class AutofillManager {
pw.print(outerPrefix); pw.println("AutofillManager:"); pw.print(outerPrefix); pw.println("AutofillManager:");
final String pfx = outerPrefix + " "; final String pfx = outerPrefix + " ";
pw.print(pfx); pw.print("sessionId: "); pw.println(mSessionId); pw.print(pfx); pw.print("sessionId: "); pw.println(mSessionId);
pw.print(pfx); pw.print("state: "); pw.println( pw.print(pfx); pw.print("state: "); pw.println(getStateAsStringLocked());
DebugUtils.flagsToString(AutofillManager.class, "STATE_", mState));
pw.print(pfx); pw.print("enabled: "); pw.println(mEnabled); pw.print(pfx); pw.print("enabled: "); pw.println(mEnabled);
pw.print(pfx); pw.print("hasService: "); pw.println(mService != null); pw.print(pfx); pw.print("hasService: "); pw.println(mService != null);
pw.print(pfx); pw.print("hasCallback: "); pw.println(mCallback != null); pw.print(pfx); pw.print("hasCallback: "); pw.println(mCallback != null);
@@ -1452,10 +1503,29 @@ public final class AutofillManager {
pw.print(pfx); pw.print("fillable ids: "); pw.println(mFillableIds); pw.print(pfx); pw.print("fillable ids: "); pw.println(mFillableIds);
} }
private String getStateAsStringLocked() {
switch (mState) {
case STATE_UNKNOWN:
return "STATE_UNKNOWN";
case STATE_ACTIVE:
return "STATE_ACTIVE";
case STATE_FINISHED:
return "STATE_FINISHED";
case STATE_SHOWING_SAVE_UI:
return "STATE_SHOWING_SAVE_UI";
default:
return "INVALID:" + mState;
}
}
private boolean isActiveLocked() { private boolean isActiveLocked() {
return mState == STATE_ACTIVE; return mState == STATE_ACTIVE;
} }
private boolean isFinishedLocked() {
return mState == STATE_FINISHED;
}
private void post(Runnable runnable) { private void post(Runnable runnable) {
final AutofillClient client = getClientLocked(); final AutofillClient client = getClientLocked();
if (client == null) { if (client == null) {
@@ -1787,10 +1857,10 @@ public final class AutofillManager {
} }
@Override @Override
public void notifyNoFillUi(int sessionId, AutofillId id) { public void notifyNoFillUi(int sessionId, AutofillId id, boolean sessionFinished) {
final AutofillManager afm = mAfm.get(); final AutofillManager afm = mAfm.get();
if (afm != null) { if (afm != null) {
afm.post(() -> afm.notifyNoFillUi(sessionId, id)); afm.post(() -> afm.notifyNoFillUi(sessionId, id, sessionFinished));
} }
} }
@@ -1823,7 +1893,15 @@ public final class AutofillManager {
public void setSaveUiState(int sessionId, boolean shown) { public void setSaveUiState(int sessionId, boolean shown) {
final AutofillManager afm = mAfm.get(); final AutofillManager afm = mAfm.get();
if (afm != null) { if (afm != null) {
afm.post(() ->afm.setSaveUiState(sessionId, shown)); afm.post(() -> afm.setSaveUiState(sessionId, shown));
}
}
@Override
public void setSessionFinished() {
final AutofillManager afm = mAfm.get();
if (afm != null) {
afm.post(() -> afm.setSessionFinished());
} }
} }
} }

View File

@@ -67,9 +67,9 @@ oneway interface IAutoFillManagerClient {
void requestHideFillUi(int sessionId, in AutofillId id); void requestHideFillUi(int sessionId, in AutofillId id);
/** /**
* Notifies no fill UI will be shown. * Notifies no fill UI will be shown, and also mark the state as finished if necessary.
*/ */
void notifyNoFillUi(int sessionId, in AutofillId id); void notifyNoFillUi(int sessionId, in AutofillId id, boolean sessionFinished);
/** /**
* Starts the provided intent sender. * Starts the provided intent sender.
@@ -80,4 +80,10 @@ oneway interface IAutoFillManagerClient {
* Sets the state of the Autofill Save UI for a given session. * Sets the state of the Autofill Save UI for a given session.
*/ */
void setSaveUiState(int sessionId, boolean shown); void setSaveUiState(int sessionId, boolean shown);
/**
* Marks the state of the session as finished (because the AutofillService returned a null
* FillResponse).
*/
void setSessionFinished();
} }

View File

@@ -465,7 +465,7 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
if ((response.getDatasets() == null || response.getDatasets().isEmpty()) if ((response.getDatasets() == null || response.getDatasets().isEmpty())
&& response.getAuthentication() == null) { && response.getAuthentication() == null) {
// Response is "empty" from an UI point of view, need to notify client. // Response is "empty" from an UI point of view, need to notify client.
notifyUnavailableToClient(); notifyUnavailableToClient(false);
} }
synchronized (mLock) { synchronized (mLock) {
processResponseLocked(response, requestFlags); processResponseLocked(response, requestFlags);
@@ -1353,11 +1353,15 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
} }
} }
private void notifyUnavailableToClient() { private void notifyUnavailableToClient(boolean sessionFinished) {
synchronized (mLock) { synchronized (mLock) {
if (!mHasCallback || mCurrentViewId == null) return; if (mCurrentViewId == null) return;
try { try {
mClient.notifyNoFillUi(id, mCurrentViewId); if (mHasCallback) {
mClient.notifyNoFillUi(id, mCurrentViewId, sessionFinished);
} else if (sessionFinished) {
mClient.setSessionFinished();
}
} catch (RemoteException e) { } catch (RemoteException e) {
Slog.e(TAG, "Error notifying client no fill UI: id=" + mCurrentViewId, e); Slog.e(TAG, "Error notifying client no fill UI: id=" + mCurrentViewId, e);
} }
@@ -1445,7 +1449,7 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
} }
mService.resetLastResponse(); mService.resetLastResponse();
// Nothing to be done, but need to notify client. // Nothing to be done, but need to notify client.
notifyUnavailableToClient(); notifyUnavailableToClient(true);
removeSelf(); removeSelf();
} }