1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
|
/*
* Copyright (C) 2018 The Android Open Source Project
*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* 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.
*/
package android.view.contentcapture;
import static android.view.contentcapture.ContentCaptureHelper.sDebug;
import static android.view.contentcapture.ContentCaptureHelper.sVerbose;
import android.annotation.CallSuper;
import android.annotation.IntDef;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.util.DebugUtils;
import android.util.Log;
import android.view.View;
import android.view.ViewStructure;
import android.view.autofill.AutofillId;
import android.view.contentcapture.ViewNode.ViewStructureImpl;
import com.android.internal.annotations.GuardedBy;
import com.android.internal.annotations.VisibleForTesting;
import com.android.internal.util.ArrayUtils;
import com.android.internal.util.Preconditions;
import java.io.PrintWriter;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.util.ArrayList;
import java.util.Random;
/**
* Session used when notifying the Android system about events associated with views.
*/
public abstract class ContentCaptureSession implements AutoCloseable {
private static final String TAG = ContentCaptureSession.class.getSimpleName();
private static final Random sIdGenerator = new Random();
/** @hide */
public static final int NO_SESSION_ID = 0;
/**
* Initial state, when there is no session.
*
* @hide
*/
// NOTE: not prefixed by STATE_ so it's not printed on getStateAsString()
public static final int UNKNOWN_STATE = 0x0;
/**
* Service's startSession() was called, but server didn't confirm it was created yet.
*
* @hide
*/
public static final int STATE_WAITING_FOR_SERVER = 0x1;
/**
* Session is active.
*
* @hide
*/
public static final int STATE_ACTIVE = 0x2;
/**
* Session is disabled because there is no service for this user.
*
* @hide
*/
public static final int STATE_DISABLED = 0x4;
/**
* Session is disabled because its id already existed on server.
*
* @hide
*/
public static final int STATE_DUPLICATED_ID = 0x8;
/**
* Session is disabled because service is not set for user.
*
* @hide
*/
public static final int STATE_NO_SERVICE = 0x10;
/**
* Session is disabled by FLAG_SECURE
*
* @hide
*/
public static final int STATE_FLAG_SECURE = 0x20;
/**
* Session is disabled manually by the specific app
* (through {@link ContentCaptureManager#setContentCaptureEnabled(boolean)}).
*
* @hide
*/
public static final int STATE_BY_APP = 0x40;
/**
* Session is disabled because session start was never replied.
*
* @hide
*/
public static final int STATE_NO_RESPONSE = 0x80;
/**
* Session is disabled because an internal error.
*
* @hide
*/
public static final int STATE_INTERNAL_ERROR = 0x100;
/**
* Session is disabled because service didn't whitelist package or activity.
*
* @hide
*/
public static final int STATE_NOT_WHITELISTED = 0x200;
/**
* Session is disabled because the service died.
*
* @hide
*/
public static final int STATE_SERVICE_DIED = 0x400;
/**
* Session is disabled because the service package is being udpated.
*
* @hide
*/
public static final int STATE_SERVICE_UPDATING = 0x800;
/**
* Session is enabled, after the service died and came back to live.
*
* @hide
*/
public static final int STATE_SERVICE_RESURRECTED = 0x1000;
private static final int INITIAL_CHILDREN_CAPACITY = 5;
/** @hide */
public static final int FLUSH_REASON_FULL = 1;
/** @hide */
public static final int FLUSH_REASON_VIEW_ROOT_ENTERED = 2;
/** @hide */
public static final int FLUSH_REASON_SESSION_STARTED = 3;
/** @hide */
public static final int FLUSH_REASON_SESSION_FINISHED = 4;
/** @hide */
public static final int FLUSH_REASON_IDLE_TIMEOUT = 5;
/** @hide */
public static final int FLUSH_REASON_TEXT_CHANGE_TIMEOUT = 6;
/** @hide */
@IntDef(prefix = { "FLUSH_REASON_" }, value = {
FLUSH_REASON_FULL,
FLUSH_REASON_VIEW_ROOT_ENTERED,
FLUSH_REASON_SESSION_STARTED,
FLUSH_REASON_SESSION_FINISHED,
FLUSH_REASON_IDLE_TIMEOUT,
FLUSH_REASON_TEXT_CHANGE_TIMEOUT
})
@Retention(RetentionPolicy.SOURCE)
public @interface FlushReason{}
private final Object mLock = new Object();
/**
* Guard use to ignore events after it's destroyed.
*/
@NonNull
@GuardedBy("mLock")
private boolean mDestroyed;
/** @hide */
@Nullable
protected final int mId;
private int mState = UNKNOWN_STATE;
// Lazily created on demand.
private ContentCaptureSessionId mContentCaptureSessionId;
/**
* {@link ContentCaptureContext} set by client, or {@code null} when it's the
* {@link ContentCaptureManager#getMainContentCaptureSession() default session} for the
* context.
*/
@Nullable
private ContentCaptureContext mClientContext;
/**
* List of children session.
*/
@Nullable
@GuardedBy("mLock")
private ArrayList<ContentCaptureSession> mChildren;
/** @hide */
protected ContentCaptureSession() {
this(getRandomSessionId());
}
/** @hide */
@VisibleForTesting
public ContentCaptureSession(int id) {
Preconditions.checkArgument(id != NO_SESSION_ID);
mId = id;
}
// Used by ChildCOntentCaptureSession
ContentCaptureSession(@NonNull ContentCaptureContext initialContext) {
this();
mClientContext = Preconditions.checkNotNull(initialContext);
}
/** @hide */
@NonNull
abstract MainContentCaptureSession getMainCaptureSession();
/**
* Gets the id used to identify this session.
*/
@NonNull
public final ContentCaptureSessionId getContentCaptureSessionId() {
if (mContentCaptureSessionId == null) {
mContentCaptureSessionId = new ContentCaptureSessionId(mId);
}
return mContentCaptureSessionId;
}
/** @hide */
@NonNull
public int getId() {
return mId;
}
/**
* Creates a new {@link ContentCaptureSession}.
*
* <p>See {@link View#setContentCaptureSession(ContentCaptureSession)} for more info.
*/
@NonNull
public final ContentCaptureSession createContentCaptureSession(
@NonNull ContentCaptureContext context) {
final ContentCaptureSession child = newChild(context);
if (sDebug) {
Log.d(TAG, "createContentCaptureSession(" + context + ": parent=" + mId + ", child="
+ child.mId);
}
synchronized (mLock) {
if (mChildren == null) {
mChildren = new ArrayList<>(INITIAL_CHILDREN_CAPACITY);
}
mChildren.add(child);
}
return child;
}
abstract ContentCaptureSession newChild(@NonNull ContentCaptureContext context);
/**
* Flushes the buffered events to the service.
*/
abstract void flush(@FlushReason int reason);
/**
* Sets the {@link ContentCaptureContext} associated with the session.
*
* <p>Typically used to change the context associated with the default session from an activity.
*/
public final void setContentCaptureContext(@Nullable ContentCaptureContext context) {
mClientContext = context;
updateContentCaptureContext(context);
}
abstract void updateContentCaptureContext(@Nullable ContentCaptureContext context);
/**
* Gets the {@link ContentCaptureContext} associated with the session.
*
* @return context set on constructor or by
* {@link #setContentCaptureContext(ContentCaptureContext)}, or {@code null} if never
* explicitly set.
*/
@Nullable
public final ContentCaptureContext getContentCaptureContext() {
return mClientContext;
}
/**
* Destroys this session, flushing out all pending notifications.
*
* <p>Once destroyed, any new notification will be dropped.
*/
public final void destroy() {
synchronized (mLock) {
if (mDestroyed) {
if (sDebug) Log.d(TAG, "destroy(" + mId + "): already destroyed");
return;
}
mDestroyed = true;
// TODO(b/111276913): check state (for example, how to handle if it's waiting for remote
// id) and send it to the cache of batched commands
if (sVerbose) {
Log.v(TAG, "destroy(): state=" + getStateAsString(mState) + ", mId=" + mId);
}
// Finish children first
if (mChildren != null) {
final int numberChildren = mChildren.size();
if (sVerbose) Log.v(TAG, "Destroying " + numberChildren + " children first");
for (int i = 0; i < numberChildren; i++) {
final ContentCaptureSession child = mChildren.get(i);
try {
child.destroy();
} catch (Exception e) {
Log.w(TAG, "exception destroying child session #" + i + ": " + e);
}
}
}
}
try {
flush(FLUSH_REASON_SESSION_FINISHED);
} finally {
onDestroy();
}
}
abstract void onDestroy();
/** @hide */
@Override
public void close() {
destroy();
}
/**
* Notifies the Android system that a node has been added to the view structure.
*
* @param node node that has been added.
*/
public final void notifyViewAppeared(@NonNull ViewStructure node) {
Preconditions.checkNotNull(node);
if (!isContentCaptureEnabled()) return;
if (!(node instanceof ViewNode.ViewStructureImpl)) {
throw new IllegalArgumentException("Invalid node class: " + node.getClass());
}
internalNotifyViewAppeared((ViewStructureImpl) node);
}
abstract void internalNotifyViewAppeared(@NonNull ViewNode.ViewStructureImpl node);
/**
* Notifies the Android system that a node has been removed from the view structure.
*
* @param id id of the node that has been removed.
*/
public final void notifyViewDisappeared(@NonNull AutofillId id) {
Preconditions.checkNotNull(id);
if (!isContentCaptureEnabled()) return;
internalNotifyViewDisappeared(id);
}
abstract void internalNotifyViewDisappeared(@NonNull AutofillId id);
/**
* Notifies the Android system that many nodes has been removed from a virtual view
* structure.
*
* <p>Should only be called by views that handle their own virtual view hierarchy.
*
* @param hostId id of the non-virtual view hosting the virtual view hierarchy (it can be
* obtained by calling {@link ViewStructure#getAutofillId()}).
* @param virtualIds ids of the virtual children.
*
* @throws IllegalArgumentException if the {@code hostId} is an autofill id for a virtual view.
* @throws IllegalArgumentException if {@code virtualIds} is empty
*/
public final void notifyViewsDisappeared(@NonNull AutofillId hostId,
@NonNull long[] virtualIds) {
Preconditions.checkArgument(hostId.isNonVirtual(), "hostId cannot be virtual: %s", hostId);
Preconditions.checkArgument(!ArrayUtils.isEmpty(virtualIds), "virtual ids cannot be empty");
if (!isContentCaptureEnabled()) return;
// TODO(b/123036895): use a internalNotifyViewsDisappeared that optimizes how the event is
// parcelized
for (long id : virtualIds) {
internalNotifyViewDisappeared(new AutofillId(hostId, id, mId));
}
}
/**
* Notifies the Android system that the value of a text node has been changed.
*
* @param id of the node.
* @param text new text.
*/
public final void notifyViewTextChanged(@NonNull AutofillId id, @Nullable CharSequence text) {
Preconditions.checkNotNull(id);
if (!isContentCaptureEnabled()) return;
internalNotifyViewTextChanged(id, text);
}
abstract void internalNotifyViewTextChanged(@NonNull AutofillId id,
@Nullable CharSequence text);
/** @hide */
public abstract void internalNotifyViewTreeEvent(boolean started);
/**
* Creates a {@link ViewStructure} for a "standard" view.
*
* <p>This method should be called after a visible view is laid out; the view then must populate
* the structure and pass it to {@link #notifyViewAppeared(ViewStructure)}.
*
* <b>Note: </b>views that manage a virtual structure under this view must populate just the
* node representing this view and return right away, then asynchronously report (not
* necessarily in the UI thread) when the children nodes appear, disappear or have their text
* changed by calling {@link ContentCaptureSession#notifyViewAppeared(ViewStructure)},
* {@link ContentCaptureSession#notifyViewDisappeared(AutofillId)}, and
* {@link ContentCaptureSession#notifyViewTextChanged(AutofillId, CharSequence)} respectively.
* The structure for the a child must be created using
* {@link ContentCaptureSession#newVirtualViewStructure(AutofillId, long)}, and the
* {@code autofillId} for a child can be obtained either through
* {@code childStructure.getAutofillId()} or
* {@link ContentCaptureSession#newAutofillId(AutofillId, long)}.
*
* <p>When the virtual view hierarchy represents a web page, you should also:
*
* <ul>
* <li>Call {@link ContentCaptureManager#getContentCaptureConditions()} to infer content capture
* events should be generate for that URL.
* <li>Create a new {@link ContentCaptureSession} child for every HTML element that renders a
* new URL (like an {@code IFRAME}) and use that session to notify events from that subtree.
* </ul>
*
* <p><b>Note: </b>the following methods of the {@code structure} will be ignored:
* <ul>
* <li>{@link ViewStructure#setChildCount(int)}
* <li>{@link ViewStructure#addChildCount(int)}
* <li>{@link ViewStructure#getChildCount()}
* <li>{@link ViewStructure#newChild(int)}
* <li>{@link ViewStructure#asyncNewChild(int)}
* <li>{@link ViewStructure#asyncCommit()}
* <li>{@link ViewStructure#setWebDomain(String)}
* <li>{@link ViewStructure#newHtmlInfoBuilder(String)}
* <li>{@link ViewStructure#setHtmlInfo(android.view.ViewStructure.HtmlInfo)}
* <li>{@link ViewStructure#setDataIsSensitive(boolean)}
* <li>{@link ViewStructure#setAlpha(float)}
* <li>{@link ViewStructure#setElevation(float)}
* <li>{@link ViewStructure#setTransformation(android.graphics.Matrix)}
* </ul>
*/
@NonNull
public final ViewStructure newViewStructure(@NonNull View view) {
return new ViewNode.ViewStructureImpl(view);
}
/**
* Creates a new {@link AutofillId} for a virtual child, so it can be used to uniquely identify
* the children in the session.
*
* @param hostId id of the non-virtual view hosting the virtual view hierarchy (it can be
* obtained by calling {@link ViewStructure#getAutofillId()}).
* @param virtualChildId id of the virtual child, relative to the parent.
*
* @return if for the virtual child
*
* @throws IllegalArgumentException if the {@code parentId} is a virtual child id.
*/
public @NonNull AutofillId newAutofillId(@NonNull AutofillId hostId, long virtualChildId) {
Preconditions.checkNotNull(hostId);
Preconditions.checkArgument(hostId.isNonVirtual(), "hostId cannot be virtual: %s", hostId);
return new AutofillId(hostId, virtualChildId, mId);
}
/**
* Creates a {@link ViewStructure} for a "virtual" view, so it can be passed to
* {@link #notifyViewAppeared(ViewStructure)} by the view managing the virtual view hierarchy.
*
* @param parentId id of the virtual view parent (it can be obtained by calling
* {@link ViewStructure#getAutofillId()} on the parent).
* @param virtualId id of the virtual child, relative to the parent.
*
* @return a new {@link ViewStructure} that can be used for Content Capture purposes.
*/
@NonNull
public final ViewStructure newVirtualViewStructure(@NonNull AutofillId parentId,
long virtualId) {
return new ViewNode.ViewStructureImpl(parentId, virtualId, mId);
}
boolean isContentCaptureEnabled() {
synchronized (mLock) {
return !mDestroyed;
}
}
@CallSuper
void dump(@NonNull String prefix, @NonNull PrintWriter pw) {
pw.print(prefix); pw.print("id: "); pw.println(mId);
if (mClientContext != null) {
pw.print(prefix); mClientContext.dump(pw); pw.println();
}
synchronized (mLock) {
pw.print(prefix); pw.print("destroyed: "); pw.println(mDestroyed);
if (mChildren != null && !mChildren.isEmpty()) {
final String prefix2 = prefix + " ";
final int numberChildren = mChildren.size();
pw.print(prefix); pw.print("number children: "); pw.println(numberChildren);
for (int i = 0; i < numberChildren; i++) {
final ContentCaptureSession child = mChildren.get(i);
pw.print(prefix); pw.print(i); pw.println(": "); child.dump(prefix2, pw);
}
}
}
}
@Override
public String toString() {
return Integer.toString(mId);
}
/** @hide */
@NonNull
protected static String getStateAsString(int state) {
return state + " (" + (state == UNKNOWN_STATE ? "UNKNOWN"
: DebugUtils.flagsToString(ContentCaptureSession.class, "STATE_", state)) + ")";
}
/** @hide */
@NonNull
public static String getFlushReasonAsString(@FlushReason int reason) {
switch (reason) {
case FLUSH_REASON_FULL:
return "FULL";
case FLUSH_REASON_VIEW_ROOT_ENTERED:
return "VIEW_ROOT";
case FLUSH_REASON_SESSION_STARTED:
return "STARTED";
case FLUSH_REASON_SESSION_FINISHED:
return "FINISHED";
case FLUSH_REASON_IDLE_TIMEOUT:
return "IDLE";
case FLUSH_REASON_TEXT_CHANGE_TIMEOUT:
return "TEXT_CHANGE";
default:
return "UNKOWN-" + reason;
}
}
private static int getRandomSessionId() {
int id;
do {
id = sIdGenerator.nextInt();
} while (id == NO_SESSION_ID);
return id;
}
}
|