blob: e57fea31f1a8629c13ca7bfb9a7d8c2bdfa2ae56 [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
Winson Chunge55c0192017-08-24 14:50:48 -070019import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
Jorim Jaggic6976f02018-04-18 16:31:07 +020020import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Winson Chunge55c0192017-08-24 14:50:48 -070021import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Jorim Jaggiaf0d6d22018-06-08 15:25:35 +020022import static android.content.pm.ActivityInfo.COLOR_MODE_DEFAULT;
Wale Ogunwale72919d22016-12-08 18:58:50 -080023import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
24import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -070025import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070026import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020027import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070028import static android.view.Display.DEFAULT_DISPLAY;
Jorim Jaggife762342016-10-13 14:33:27 +020029import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020030import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
Jorim Jaggife762342016-10-13 14:33:27 +020031import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070032import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080033import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070034import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
chaviw9c81e632018-07-31 11:17:52 -070035import static android.view.WindowManager.TRANSIT_UNSET;
Jorim Jaggic6976f02018-04-18 16:31:07 +020036import static android.view.WindowManager.TRANSIT_WALLPAPER_OPEN;
chaviw9c81e632018-07-31 11:17:52 -070037
Adrian Roose99bc052017-11-20 17:55:31 +010038import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
39import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070040import static com.android.server.wm.AppWindowTokenProto.ALL_DRAWN;
41import static com.android.server.wm.AppWindowTokenProto.APP_STOPPED;
42import static com.android.server.wm.AppWindowTokenProto.CLIENT_HIDDEN;
43import static com.android.server.wm.AppWindowTokenProto.DEFER_HIDING_CLIENT;
44import static com.android.server.wm.AppWindowTokenProto.FILLS_PARENT;
45import static com.android.server.wm.AppWindowTokenProto.FROZEN_BOUNDS;
46import static com.android.server.wm.AppWindowTokenProto.HIDDEN_REQUESTED;
47import static com.android.server.wm.AppWindowTokenProto.HIDDEN_SET_FROM_TRANSFERRED_STARTING_WINDOW;
48import static com.android.server.wm.AppWindowTokenProto.IS_REALLY_ANIMATING;
49import static com.android.server.wm.AppWindowTokenProto.IS_WAITING_FOR_TRANSITION_START;
50import static com.android.server.wm.AppWindowTokenProto.LAST_ALL_DRAWN;
51import static com.android.server.wm.AppWindowTokenProto.LAST_SURFACE_SHOWING;
52import static com.android.server.wm.AppWindowTokenProto.NAME;
53import static com.android.server.wm.AppWindowTokenProto.NUM_DRAWN_WINDOWS;
54import static com.android.server.wm.AppWindowTokenProto.NUM_INTERESTING_WINDOWS;
55import static com.android.server.wm.AppWindowTokenProto.REMOVED;
56import static com.android.server.wm.AppWindowTokenProto.REPORTED_DRAWN;
57import static com.android.server.wm.AppWindowTokenProto.REPORTED_VISIBLE;
58import static com.android.server.wm.AppWindowTokenProto.STARTING_DISPLAYED;
59import static com.android.server.wm.AppWindowTokenProto.STARTING_MOVED;
60import static com.android.server.wm.AppWindowTokenProto.STARTING_WINDOW;
61import static com.android.server.wm.AppWindowTokenProto.THUMBNAIL;
62import static com.android.server.wm.AppWindowTokenProto.WINDOW_TOKEN;
chaviw9c81e632018-07-31 11:17:52 -070063import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
64import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
65import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
66import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
67import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
68import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
69import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
70import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW_VERBOSE;
71import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
72import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
73import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
74import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
75import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
76import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
77import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
78import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
79import static com.android.server.wm.WindowManagerService.logWithStack;
Vishnu Naira2977262018-07-26 13:31:26 -070080import static com.android.server.wm.WindowStateAnimator.STACK_CLIP_AFTER_ANIM;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080081
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070082import android.annotation.CallSuper;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020083import android.app.Activity;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070084import android.content.res.Configuration;
Jorim Jaggi988f6682017-11-17 17:46:43 +010085import android.graphics.GraphicBuffer;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020086import android.graphics.Point;
Jorim Jaggi0429f352015-12-22 16:29:16 +010087import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070088import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080089import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070090import android.os.IBinder;
Steven Timotiusaf03df62017-07-18 16:56:43 -070091import android.os.RemoteException;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020092import android.os.Trace;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080093import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -070094import android.util.proto.ProtoOutputStream;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020095import android.view.DisplayInfo;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080096import android.view.IApplicationToken;
Jorim Jaggif84e2f62018-01-16 14:17:59 +010097import android.view.RemoteAnimationDefinition;
Robert Carr6914f082017-03-20 19:04:30 -070098import android.view.SurfaceControl;
Tony Mak64b8d562017-12-28 17:44:02 +000099import android.view.SurfaceControl.Transaction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800100import android.view.WindowManager;
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +0200101import android.view.WindowManager.LayoutParams;
Tony Mak64b8d562017-12-28 17:44:02 +0000102import android.view.animation.Animation;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800103
Tony Mak64b8d562017-12-28 17:44:02 +0000104import com.android.internal.R;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800105import com.android.internal.util.ToBooleanFunction;
106import com.android.server.input.InputApplicationHandle;
Adrian Roose99bc052017-11-20 17:55:31 +0100107import com.android.server.policy.WindowManagerPolicy.StartingSurface;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800108import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800109
110import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +0100111import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800112import java.util.ArrayList;
113
114class AppTokenList extends ArrayList<AppWindowToken> {
115}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800116
117/**
118 * Version of WindowToken that is specifically for a particular application (or
119 * really activity) that is displaying windows.
120 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700121class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800122 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
123
Jorim Jaggi619c9f72017-12-19 18:04:29 +0100124 /**
125 * Value to increment the z-layer when boosting a layer during animations. BOOST in l33tsp34k.
126 */
127 private static final int Z_BOOST_BASE = 800570000;
128
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800129 // Non-null only for application tokens.
130 final IApplicationToken appToken;
131
Wale Ogunwale72919d22016-12-08 18:58:50 -0800132 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700133
Wale Ogunwale51362492016-09-08 17:49:17 -0700134 /** @see WindowContainer#fillsParent() */
135 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -0800136 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800137 boolean mShowForAllUsers;
138 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -0700139
Bryce Lee6d410262017-02-28 15:30:17 -0800140 // Flag set while reparenting to prevent actions normally triggered by an individual parent
141 // change.
142 private boolean mReparenting;
143
Wale Ogunwalee287e192017-04-21 09:30:12 -0700144 // True if we are current in the process of removing this app token from the display
145 private boolean mRemovingFromDisplay = false;
146
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800147 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -0800148 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800149
150 // These are used for determining when all windows associated with
151 // an activity have been drawn, so they can be made visible together
152 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700153 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700154 private long mLastTransactionSequence = Long.MIN_VALUE;
155 private int mNumInterestingWindows;
156 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800157 boolean inPendingTransaction;
158 boolean allDrawn;
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000159 private boolean mLastAllDrawn;
160
Craig Mautner7636dfb2012-11-16 15:24:11 -0800161 // Set to true when this app creates a surface while in the middle of an animation. In that
162 // case do not clear allDrawn until the animation completes.
163 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800164
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800165 // Is this window's surface needed? This is almost like hidden, except
166 // it will sometimes be true a little earlier: when the token has
167 // been shown, but is still waiting for its app transition to execute
168 // before making its windows shown.
169 boolean hiddenRequested;
170
171 // Have we told the window clients to hide themselves?
Wale Ogunwale89973222017-04-23 18:39:45 -0700172 private boolean mClientHidden;
173
174 // If true we will defer setting mClientHidden to true and reporting to the client that it is
175 // hidden.
176 boolean mDeferHidingClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800177
178 // Last visibility state we reported to the app token.
179 boolean reportedVisible;
180
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700181 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700182 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700183
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800184 // Set to true when the token has been removed from the window mgr.
185 boolean removed;
186
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800187 // Information about an application starting window if displayed.
188 StartingData startingData;
189 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800190 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800191 boolean startingDisplayed;
192 boolean startingMoved;
Jorim Jaggi60f9c972018-02-01 19:21:07 +0100193
Wale Ogunwale6c459212017-05-17 08:56:03 -0700194 // True if the hidden state of this token was forced to false due to a transferred starting
195 // window.
196 private boolean mHiddenSetFromTransferredStartingWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800197 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700198 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
199 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800200
201 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700202 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800203
Wale Ogunwale571771c2016-08-26 13:18:50 -0700204 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800205 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800206
Craig Mautnerbb742462014-07-07 15:28:55 -0700207 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700208 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700209
Wale Ogunwale72919d22016-12-08 18:58:50 -0800210 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800211
Robert Carre12aece2016-02-02 22:43:27 -0800212 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700213 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700214 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800215
Jorim Jaggife762342016-10-13 14:33:27 +0200216 private boolean mLastContainsShowWhenLockedWindow;
217 private boolean mLastContainsDismissKeyguardWindow;
218
Jorim Jaggi0429f352015-12-22 16:29:16 +0100219 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700220 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100221
Wale Ogunwale6c459212017-05-17 08:56:03 -0700222 private boolean mDisablePreviewScreenshots;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100223
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700224 private Task mLastParent;
Robert Carred3e83b2017-04-21 13:26:55 -0700225
chaviwd3bf08d2017-08-01 17:24:59 -0700226 /**
227 * See {@link #canTurnScreenOn()}
228 */
229 private boolean mCanTurnScreenOn = true;
230
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200231 /**
232 * If we are running an animation, this determines the transition type. Must be one of
233 * AppTransition.TRANSIT_* constants.
234 */
235 private int mTransit;
236
237 /**
238 * If we are running an animation, this determines the flags during this animation. Must be a
239 * bitwise combination of AppTransition.TRANSIT_FLAG_* constants.
240 */
241 private int mTransitFlags;
242
243 /** Whether our surface was set to be showing in the last call to {@link #prepareSurfaces} */
Jorim Jaggifd1891462017-12-29 15:41:36 +0100244 private boolean mLastSurfaceShowing = true;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200245
Jorim Jaggi988f6682017-11-17 17:46:43 +0100246 private AppWindowThumbnail mThumbnail;
247
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000248 /** Have we been asked to have this token keep the screen frozen? */
249 private boolean mFreezingScreen;
250
251 /** Whether this token should be boosted at the top of all app window tokens. */
252 private boolean mNeedsZBoost;
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100253 private Letterbox mLetterbox;
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000254
chaviw23ee71c2017-12-18 11:29:41 -0800255 private final Point mTmpPoint = new Point();
chaviw23012112017-12-20 15:29:04 -0800256 private final Rect mTmpRect = new Rect();
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100257 private RemoteAnimationDefinition mRemoteAnimationDefinition;
Jorim Jaggi6de61012018-03-19 14:53:23 +0100258 private AnimatingAppWindowTokenRegistry mAnimatingAppWindowTokenRegistry;
chaviw23ee71c2017-12-18 11:29:41 -0800259
chaviw4ad54912018-05-30 11:05:44 -0700260 /**
261 * A flag to determine if this AWT is in the process of closing or entering PIP. This is needed
262 * to help AWT know that the app is in the process of closing but hasn't yet started closing on
263 * the WM side.
264 */
265 private boolean mWillCloseOrEnterPip;
266
Vishnu Naira2977262018-07-26 13:31:26 -0700267 /** Layer used to constrain the animation to a token's stack bounds. */
268 SurfaceControl mAnimationBoundsLayer;
269
270 /** Whether this token needs to create mAnimationBoundsLayer for cropping animations. */
271 boolean mNeedsAnimationBoundsLayer;
272
Wale Ogunwale72919d22016-12-08 18:58:50 -0800273 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
274 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
275 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800276 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Bryce Leef3c6a472017-11-14 14:53:06 -0800277 AppWindowContainerController controller) {
278 this(service, token, voiceInteraction, dc, fullscreen);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800279 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800280 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800281 mShowForAllUsers = showForAllUsers;
282 mTargetSdk = targetSdk;
283 mOrientation = orientation;
284 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
285 mLaunchTaskBehind = launchTaskBehind;
286 mAlwaysFocusable = alwaysFocusable;
287 mRotationAnimationHint = rotationAnimationHint;
288
289 // Application tokens start out hidden.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200290 setHidden(true);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800291 hiddenRequested = true;
292 }
293
294 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Bryce Leef3c6a472017-11-14 14:53:06 -0800295 DisplayContent dc, boolean fillsParent) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800296 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
297 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700298 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800299 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800300 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800301 mInputApplicationHandle = new InputApplicationHandle(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800302 }
303
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800304 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
305 firstWindowDrawn = true;
306
307 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700308 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800309
Jorim Jaggi02886a82016-12-06 09:10:06 -0800310 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800311 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
312 + win.mToken + ": first real window is shown, no animation");
313 // If this initial window is animating, stop it -- we will do an animation to reveal
314 // it from behind the starting window, so there is no need for it to also be doing its
315 // own stuff.
Jorim Jaggia5e10572017-11-15 14:36:26 +0100316 win.cancelAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800317 if (getController() != null) {
318 getController().removeStartingWindow();
319 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800320 }
321 updateReportedVisibilityLocked();
322 }
323
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800324 void updateReportedVisibilityLocked() {
325 if (appToken == null) {
326 return;
327 }
328
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700329 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700330 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800331
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700332 mReportedVisibilityResults.reset();
333
334 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700335 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700336 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800337 }
338
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700339 int numInteresting = mReportedVisibilityResults.numInteresting;
340 int numVisible = mReportedVisibilityResults.numVisible;
341 int numDrawn = mReportedVisibilityResults.numDrawn;
342 boolean nowGone = mReportedVisibilityResults.nowGone;
343
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700344 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200345 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting && !isHidden();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700346 if (!nowGone) {
347 // If the app is not yet gone, then it can only become visible/drawn.
348 if (!nowDrawn) {
349 nowDrawn = reportedDrawn;
350 }
351 if (!nowVisible) {
352 nowVisible = reportedVisible;
353 }
354 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800355 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800356 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800357 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700358 if (nowDrawn != reportedDrawn) {
359 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800360 if (controller != null) {
361 controller.reportWindowsDrawn();
362 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700363 }
364 reportedDrawn = nowDrawn;
365 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800366 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700367 if (DEBUG_VISIBILITY) Slog.v(TAG,
368 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800369 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800370 if (controller != null) {
371 if (nowVisible) {
372 controller.reportWindowsVisible();
373 } else {
374 controller.reportWindowsGone();
375 }
376 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800377 }
378 }
379
Wale Ogunwale89973222017-04-23 18:39:45 -0700380 boolean isClientHidden() {
381 return mClientHidden;
382 }
383
384 void setClientHidden(boolean hideClient) {
385 if (mClientHidden == hideClient || (hideClient && mDeferHidingClient)) {
386 return;
387 }
Jorim Jaggi067b5bf2018-02-23 17:42:39 +0100388 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setClientHidden: " + this
389 + " clientHidden=" + hideClient + " Callers=" + Debug.getCallers(5));
Wale Ogunwale89973222017-04-23 18:39:45 -0700390 mClientHidden = hideClient;
391 sendAppVisibilityToClients();
392 }
393
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700394 boolean setVisibility(WindowManager.LayoutParams lp,
395 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
396
397 boolean delayed = false;
398 inPendingTransaction = false;
Wale Ogunwale9e4721f2017-05-23 19:37:30 -0700399 // Reset the state of mHiddenSetFromTransferredStartingWindow since visibility is actually
400 // been set by the app now.
401 mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700402
403 // Allow for state changes and animation to be applied if:
404 // * token is transitioning visibility state
405 // * or the token was marked as hidden and is exiting before we had a chance to play the
406 // transition animation
407 // * or this is an opening app and windows are being replaced.
408 boolean visibilityChanged = false;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200409 if (isHidden() == visible || (isHidden() && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700410 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700411 boolean changed = false;
412 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200413 "Changing app " + this + " hidden=" + isHidden() + " performLayout=" + performLayout);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700414
415 boolean runningAppAnimation = false;
416
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100417 if (transit != WindowManager.TRANSIT_UNSET) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200418 if (applyAnimationLocked(lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700419 delayed = runningAppAnimation = true;
420 }
421 final WindowState window = findMainWindow();
422 //TODO (multidisplay): Magnification is supported only for the default display.
423 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700424 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700425 accessibilityController.onAppWindowTransitionLocked(window, transit);
426 }
427 changed = true;
428 }
429
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700430 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700431 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700432 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700433 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700434 }
435
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200436 setHidden(!visible);
437 hiddenRequested = !visible;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700438 visibilityChanged = true;
439 if (!visible) {
440 stopFreezingScreen(true, true);
441 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700442 // If we are being set visible, and the starting window is not yet displayed,
443 // then make sure it doesn't get displayed.
444 if (startingWindow != null && !startingWindow.isDrawnLw()) {
445 startingWindow.mPolicyVisibility = false;
446 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700447 }
Jorim Jaggi38d44ec2017-06-14 16:04:59 -0700448
449 // We are becoming visible, so better freeze the screen with the windows that are
450 // getting visible so we also wait for them.
451 forAllWindows(mService::makeWindowFreezingScreenIfNeededLocked, true);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700452 }
453
454 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200455 + ": hidden=" + isHidden() + " hiddenRequested=" + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700456
457 if (changed) {
Arthur Hung95b38a92018-07-20 18:56:12 +0800458 getDisplayContent().getInputMonitor().setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700459 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700460 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700461 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700462 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700463 }
Arthur Hung95b38a92018-07-20 18:56:12 +0800464 getDisplayContent().getInputMonitor().updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700465 }
466 }
467
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200468 if (isReallyAnimating()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700469 delayed = true;
Jorim Jaggiab9fcb22018-03-15 23:46:12 +0100470 } else {
471
472 // We aren't animating anything, but exiting windows rely on the animation finished
473 // callback being called in case the AppWindowToken was pretending to be animating,
474 // which we might have done because we were in closing/opening apps list.
475 onAnimationFinished();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700476 }
477
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700478 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Jorim Jaggia5e10572017-11-15 14:36:26 +0100479 if ((mChildren.get(i)).isSelfOrChildAnimating()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700480 delayed = true;
481 }
482 }
483
484 if (visibilityChanged) {
485 if (visible && !delayed) {
486 // The token was made immediately visible, there will be no entrance animation.
487 // We need to inform the client the enter animation was finished.
488 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700489 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700490 }
Robert Carr61b81112017-07-17 18:08:15 -0700491
Jorim Jaggi110839b2018-01-22 12:49:04 +0100492 // If we're becoming visible, immediately change client visibility as well although it
493 // usually gets changed in AppWindowContainerController.setVisibility already. However,
494 // there seem to be some edge cases where we change our visibility but client visibility
495 // never gets updated.
496 // If we're becoming invisible, update the client visibility if we are not running an
497 // animation. Otherwise, we'll update client visibility in onAnimationFinished.
Jorim Jaggi3cad57f2018-02-20 18:32:01 +0100498 if (visible || !isReallyAnimating()) {
Jorim Jaggi110839b2018-01-22 12:49:04 +0100499 setClientHidden(!visible);
Jorim Jaggi4876b4a2018-01-11 15:43:49 +0100500 }
501
chaviwa953fcf2018-03-01 12:00:39 -0800502 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
503 // The token is not closing nor opening, so even if there is an animation set, that
504 // doesn't mean that it goes through the normal app transition cycle so we have
505 // to inform the docked controller about visibility change.
506 // TODO(multi-display): notify docked divider on all displays where visibility was
507 // affected.
508 mService.getDefaultDisplayContentLocked().getDockedDividerController()
509 .notifyAppVisibilityChanged();
510
511 // Take the screenshot before possibly hiding the WSA, otherwise the screenshot
512 // will not be taken.
513 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
514 }
515
Robert Carre7cc44d2017-03-20 19:04:30 -0700516 // If we are hidden but there is no delay needed we immediately
517 // apply the Surface transaction so that the ActivityManager
Robert Carr61b81112017-07-17 18:08:15 -0700518 // can have some guarantee on the Surface state following
519 // setting the visibility. This captures cases like dismissing
520 // the docked or pinned stack where there is no app transition.
521 //
522 // In the case of a "Null" animation, there will be
523 // no animation but there will still be a transition set.
524 // We still need to delay hiding the surface such that it
525 // can be synchronized with showing the next surface in the transition.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200526 if (isHidden() && !delayed && !mService.mAppTransition.isTransitionSet()) {
Robert Carr6914f082017-03-20 19:04:30 -0700527 SurfaceControl.openTransaction();
528 for (int i = mChildren.size() - 1; i >= 0; i--) {
529 mChildren.get(i).mWinAnimator.hide("immediately hidden");
530 }
531 SurfaceControl.closeTransaction();
532 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700533 }
534
535 return delayed;
536 }
537
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +0200538 /**
539 * @return The to top most child window for which {@link LayoutParams#isFullscreen()} returns
540 * true.
541 */
542 WindowState getTopFullscreenWindow() {
543 for (int i = mChildren.size() - 1; i >= 0; i--) {
544 final WindowState win = mChildren.get(i);
545 if (win != null && win.mAttrs.isFullscreen()) {
546 return win;
547 }
548 }
549 return null;
550 }
551
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800552 WindowState findMainWindow() {
Matthew Ng53e66b22018-01-12 17:13:13 -0800553 return findMainWindow(true);
554 }
555
556 /**
557 * Finds the main window that either has type base application or application starting if
558 * requested.
559 *
560 * @param includeStartingApp Allow to search application-starting windows to also be returned.
561 * @return The main window of type base application or application starting if requested.
562 */
563 WindowState findMainWindow(boolean includeStartingApp) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700564 WindowState candidate = null;
Matthew Ng53e66b22018-01-12 17:13:13 -0800565 for (int j = mChildren.size() - 1; j >= 0; --j) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700566 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700567 final int type = win.mAttrs.type;
568 // No need to loop through child window as base application and starting types can't be
569 // child windows.
Matthew Ng53e66b22018-01-12 17:13:13 -0800570 if (type == TYPE_BASE_APPLICATION
571 || (includeStartingApp && type == TYPE_APPLICATION_STARTING)) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700572 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900573 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700574 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800575 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700576 candidate = win;
577 } else {
578 return win;
579 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800580 }
581 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700582 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800583 }
584
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800585 boolean windowsAreFocusable() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700586 return getWindowConfiguration().canReceiveKeys() || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800587 }
588
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800589 AppWindowContainerController getController() {
590 final WindowContainerController controller = super.getController();
591 return controller != null ? (AppWindowContainerController) controller : null;
592 }
593
Wale Ogunwale571771c2016-08-26 13:18:50 -0700594 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700595 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700596 // If the app token isn't hidden then it is considered visible and there is no need to check
597 // its children windows to see if they are visible.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200598 return !isHidden();
Wale Ogunwale44f21802016-09-02 12:49:48 -0700599 }
600
601 @Override
Wale Ogunwalee287e192017-04-21 09:30:12 -0700602 void removeImmediately() {
603 onRemovedFromDisplay();
604 super.removeImmediately();
605 }
606
607 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700608 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800609 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800610 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800611 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800612 }
613
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700614 @Override
615 boolean checkCompleteDeferredRemoval() {
616 if (mIsExiting) {
617 removeIfPossible();
618 }
619 return super.checkCompleteDeferredRemoval();
620 }
621
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700622 void onRemovedFromDisplay() {
Wale Ogunwalee287e192017-04-21 09:30:12 -0700623 if (mRemovingFromDisplay) {
624 return;
625 }
626 mRemovingFromDisplay = true;
627
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700628 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
629
Wale Ogunwale72919d22016-12-08 18:58:50 -0800630 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700631
632 mService.mOpeningApps.remove(this);
Jorim Jaggi45ca0542017-05-30 16:16:01 -0700633 mService.mUnknownAppVisibilityController.appRemovedOrHidden(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100634 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700635 waitingToShow = false;
636 if (mService.mClosingApps.contains(this)) {
637 delayed = true;
638 } else if (mService.mAppTransition.isTransitionSet()) {
639 mService.mClosingApps.add(this);
640 delayed = true;
641 }
642
643 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200644 + " animation=" + getAnimation() + " animating=" + isSelfAnimating());
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700645
646 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
647 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
648
Jorim Jaggi19be6052017-08-03 18:33:43 +0200649 if (startingData != null && getController() != null) {
650 getController().removeStartingWindow();
651 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800652
Winson Chung87e5d552017-04-05 11:49:38 -0700653 // If this window was animating, then we need to ensure that the app transition notifies
654 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
655 // add to that list now
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200656 if (isSelfAnimating()) {
Winson Chung87e5d552017-04-05 11:49:38 -0700657 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
658 }
659
Wale Ogunwalee287e192017-04-21 09:30:12 -0700660 final TaskStack stack = getStack();
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700661 if (delayed && !isEmpty()) {
662 // set the token aside because it has an active animation to be finished
663 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
664 "removeAppToken make exiting: " + this);
Wale Ogunwalee287e192017-04-21 09:30:12 -0700665 if (stack != null) {
666 stack.mExitingAppTokens.add(this);
667 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700668 mIsExiting = true;
669 } else {
670 // Make sure there is no animation running on this token, so any windows associated
671 // with it will be removed as soon as their animations are complete
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200672 cancelAnimation();
Wale Ogunwale3106ae012017-05-16 08:56:37 -0700673 if (stack != null) {
674 stack.mExitingAppTokens.remove(this);
675 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700676 removeIfPossible();
677 }
678
679 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700680 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800681
Tiger Huang1e5b10a2018-07-30 20:19:51 +0800682 final DisplayContent dc = getDisplayContent();
683 if (dc.mFocusedApp == this) {
684 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this
685 + " displayId=" + dc.getDisplayId());
686 dc.setFocusedApp(null);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700687 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700688 }
689
690 if (!delayed) {
691 updateReportedVisibilityLocked();
692 }
Wale Ogunwalee287e192017-04-21 09:30:12 -0700693
694 mRemovingFromDisplay = false;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700695 }
696
Chong Zhange05bcb12016-07-26 17:47:29 -0700697 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700698 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700699 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700700 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700701 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700702 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700703 if (wallpaperMightChange) {
704 requestUpdateWallpaperIfNeeded();
705 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700706 }
707
Robert Carre12aece2016-02-02 22:43:27 -0800708 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700709 destroySurfaces(false /*cleanupOnResume*/);
710 }
711
712 /**
713 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
714 * the client has finished with them.
715 *
716 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
717 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
718 * others so that they are ready to be reused. If set to false (common case), destroy all
719 * surfaces that's eligible, if the app is already stopped.
720 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700721 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700722 boolean destroyedSomething = false;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100723
724 // Copying to a different list as multiple children can be removed.
Jorim Jaggi59f3e922018-01-05 15:40:32 +0100725 final ArrayList<WindowState> children = new ArrayList<>(mChildren);
Jorim Jaggia5e10572017-11-15 14:36:26 +0100726 for (int i = children.size() - 1; i >= 0; i--) {
727 final WindowState win = children.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700728 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800729 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700730 if (destroyedSomething) {
731 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700732 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Adrian Roos23df3a32018-03-15 15:41:13 +0100733 updateLetterboxSurface(null);
Robert Carre12aece2016-02-02 22:43:27 -0800734 }
735 }
736
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800737 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700738 * Notify that the app is now resumed, and it was not stopped before, perform a clean
739 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800740 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700741 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700742 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700743 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700744 mAppStopped = false;
chaviwd3bf08d2017-08-01 17:24:59 -0700745 // Allow the window to turn the screen on once the app is resumed again.
746 setCanTurnScreenOn(true);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700747 if (!wasStopped) {
748 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800749 }
Robert Carre12aece2016-02-02 22:43:27 -0800750 }
751
Chong Zhangbef461f2015-10-27 11:38:24 -0700752 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700753 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
754 * keeping alive in case they were still being used.
755 */
756 void notifyAppStopped() {
757 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
758 mAppStopped = true;
759 destroySurfaces();
760 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800761 if (getController() != null) {
762 getController().removeStartingWindow();
763 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700764 }
765
Chong Zhang92147042016-05-09 12:47:11 -0700766 void clearAllDrawn() {
767 allDrawn = false;
768 deferClearAllDrawn = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700769 }
770
Bryce Lee6d410262017-02-28 15:30:17 -0800771 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800772 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800773 }
774
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800775 TaskStack getStack() {
776 final Task task = getTask();
777 if (task != null) {
778 return task.mStack;
779 } else {
780 return null;
781 }
782 }
783
Bryce Lee6d410262017-02-28 15:30:17 -0800784 @Override
785 void onParentSet() {
786 super.onParentSet();
787
Robert Carred3e83b2017-04-21 13:26:55 -0700788 final Task task = getTask();
789
Bryce Lee6d410262017-02-28 15:30:17 -0800790 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
791 // access visual elements like the {@link DisplayContent}. We must remove any associations
792 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800793 if (!mReparenting) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800794 if (task == null) {
795 // It is possible we have been marked as a closing app earlier. We must remove ourselves
796 // from this list so we do not participate in any future animations.
797 mService.mClosingApps.remove(this);
Robert Carred3e83b2017-04-21 13:26:55 -0700798 } else if (mLastParent != null && mLastParent.mStack != null) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800799 task.mStack.mExitingAppTokens.remove(this);
800 }
Bryce Lee6d410262017-02-28 15:30:17 -0800801 }
Jorim Jaggi6de61012018-03-19 14:53:23 +0100802 final TaskStack stack = getStack();
803
804 // If we reparent, make sure to remove ourselves from the old animation registry.
805 if (mAnimatingAppWindowTokenRegistry != null) {
806 mAnimatingAppWindowTokenRegistry.notifyFinished(this);
807 }
808 mAnimatingAppWindowTokenRegistry = stack != null
809 ? stack.getAnimatingAppWindowTokenRegistry()
810 : null;
811
Robert Carred3e83b2017-04-21 13:26:55 -0700812 mLastParent = task;
Bryce Lee6d410262017-02-28 15:30:17 -0800813 }
814
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700815 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700816 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700817 if (startingWindow == win) {
818 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800819 if (getController() != null) {
820 getController().removeStartingWindow();
821 }
Wale Ogunwale6c459212017-05-17 08:56:03 -0700822 } else if (mChildren.size() == 0) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700823 // If this is the last window and we had requested a starting transition window,
824 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800825 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700826 startingData = null;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700827 if (mHiddenSetFromTransferredStartingWindow) {
828 // We set the hidden state to false for the token from a transferred starting window.
829 // We now reset it back to true since the starting window was the last window in the
830 // token.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200831 setHidden(true);
Wale Ogunwale6c459212017-05-17 08:56:03 -0700832 }
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100833 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700834 // If this is the last window except for a starting transition window,
835 // we need to get rid of the starting transition.
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200836 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Last window, removing starting window "
837 + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800838 if (getController() != null) {
839 getController().removeStartingWindow();
840 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700841 }
842 }
843
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700844 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700845 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700846 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800847 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700848 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700849 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800850 // Set mDestroying, we don't want any animation or delayed removal here.
851 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700852 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700853 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800854 }
855 }
856 }
857
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700858 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700859 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700860 // No need to loop through child windows as the answer should be the same as that of the
861 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700862 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700863 return true;
864 }
865 }
866 return false;
867 }
868
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700869 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700870 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
871 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800872
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700873 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700874 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700875 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800876 }
Robert Carra1eb4392015-12-10 12:43:51 -0800877 }
878
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700879 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700880 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800881 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700882 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700883 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700884 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800885 }
886 }
887
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700888 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700889 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
890 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800891
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700892 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700893 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700894 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800895 }
896 }
897
Chong Zhang4d7369a2016-04-25 16:09:14 -0700898 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700899 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700900 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700901 w.requestUpdateWallpaperIfNeeded();
902 }
903 }
904
Chong Zhangd78ddb42016-03-02 17:01:14 -0800905 boolean isRelaunching() {
906 return mPendingRelaunchCount > 0;
907 }
908
Robert Carr68375192017-06-13 12:41:53 -0700909 boolean shouldFreezeBounds() {
910 final Task task = getTask();
911
912 // For freeform windows, we can't freeze the bounds at the moment because this would make
913 // the resizing unresponsive.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700914 if (task == null || task.inFreeformWindowingMode()) {
Robert Carr68375192017-06-13 12:41:53 -0700915 return false;
916 }
917
918 // We freeze the bounds while drag resizing to deal with the time between
919 // the divider/drag handle being released, and the handling it's new
920 // configuration. If we are relaunched outside of the drag resizing state,
921 // we need to be careful not to do this.
922 return getTask().isDragResizing();
923 }
924
Chong Zhangd78ddb42016-03-02 17:01:14 -0800925 void startRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700926 if (shouldFreezeBounds()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -0800927 freezeBounds();
928 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800929
930 // In the process of tearing down before relaunching, the app will
931 // try and clean up it's child surfaces. We need to prevent this from
932 // happening, so we sever the children, transfering their ownership
933 // from the client it-self to the parent surface (owned by us).
Robert Carr29daa922018-04-27 11:56:48 -0700934 detachChildren();
935
936 mPendingRelaunchCount++;
937 }
938
939 void detachChildren() {
Robert Carrfd8e93b2018-05-10 13:40:25 -0700940 SurfaceControl.openTransaction();
Robert Carrd5c7dd62017-03-08 10:39:30 -0800941 for (int i = mChildren.size() - 1; i >= 0; i--) {
942 final WindowState w = mChildren.get(i);
943 w.mWinAnimator.detachChildren();
944 }
Robert Carrfd8e93b2018-05-10 13:40:25 -0700945 SurfaceControl.closeTransaction();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800946 }
947
948 void finishRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700949 unfreezeBounds();
950
Chong Zhangd78ddb42016-03-02 17:01:14 -0800951 if (mPendingRelaunchCount > 0) {
952 mPendingRelaunchCount--;
Bryce Lee081554b2017-05-25 07:52:12 -0700953 } else {
954 // Update keyguard flags upon finishing relaunch.
955 checkKeyguardFlagsChanged();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800956 }
957 }
958
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700959 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700960 if (mPendingRelaunchCount == 0) {
961 return;
962 }
Robert Carr68375192017-06-13 12:41:53 -0700963 unfreezeBounds();
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700964 mPendingRelaunchCount = 0;
965 }
966
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700967 /**
968 * Returns true if the new child window we are adding to this token is considered greater than
969 * the existing child window in this token in terms of z-order.
970 */
971 @Override
972 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
973 WindowState existingWindow) {
974 final int type1 = newWindow.mAttrs.type;
975 final int type2 = existingWindow.mAttrs.type;
976
977 // Base application windows should be z-ordered BELOW all other windows in the app token.
978 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
979 return false;
980 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
981 return true;
982 }
983
984 // Starting windows should be z-ordered ABOVE all other windows in the app token.
985 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
986 return true;
987 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
988 return false;
989 }
990
991 // Otherwise the new window is greater than the existing window.
992 return true;
993 }
994
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700995 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800996 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700997 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700998
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700999 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001000 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001001 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001002 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
1003 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001004
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001005 // if we got a replacement window, reset the timeout to give drawing more time
1006 if (gotReplacementWindow) {
1007 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -08001008 }
Jorim Jaggife762342016-10-13 14:33:27 +02001009 checkKeyguardFlagsChanged();
1010 }
1011
1012 @Override
1013 void removeChild(WindowState child) {
1014 super.removeChild(child);
1015 checkKeyguardFlagsChanged();
Adrian Roos23df3a32018-03-15 15:41:13 +01001016 updateLetterboxSurface(child);
Robert Carra1eb4392015-12-10 12:43:51 -08001017 }
1018
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001019 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001020 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001021 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001022 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -08001023 return true;
1024 }
1025 }
1026 return false;
1027 }
1028
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001029 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001030 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001031 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -08001032 }
1033 }
1034
Winson Chung30480042017-01-26 10:55:34 -08001035 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001036 final Task currentTask = getTask();
1037 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -08001038 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001039 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001040 }
Bryce Lee6d410262017-02-28 15:30:17 -08001041
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001042 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -08001043 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001044 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -08001045 + " belongs to a different stack than " + task);
1046 }
1047
Winson Chung30480042017-01-26 10:55:34 -08001048 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001049 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001050 final DisplayContent prevDisplayContent = getDisplayContent();
1051
Bryce Lee6d410262017-02-28 15:30:17 -08001052 mReparenting = true;
1053
Winson Chung30480042017-01-26 10:55:34 -08001054 getParent().removeChild(this);
1055 task.addChild(this, position);
1056
Bryce Lee6d410262017-02-28 15:30:17 -08001057 mReparenting = false;
1058
Winson Chung30480042017-01-26 10:55:34 -08001059 // Relayout display(s).
1060 final DisplayContent displayContent = task.getDisplayContent();
1061 displayContent.setLayoutNeeded();
1062 if (prevDisplayContent != displayContent) {
1063 onDisplayChanged(displayContent);
1064 prevDisplayContent.setLayoutNeeded();
1065 }
1066 }
1067
Tiger Huang1e5b10a2018-07-30 20:19:51 +08001068 @Override
1069 void onDisplayChanged(DisplayContent dc) {
1070 DisplayContent prevDc = mDisplayContent;
1071 super.onDisplayChanged(dc);
1072 if (prevDc != null && prevDc.mFocusedApp == this) {
1073 prevDc.setFocusedApp(null);
1074 if (dc.getTopStack().getTopChild().getTopChild() == this) {
1075 dc.setFocusedApp(this);
1076 }
1077 }
1078 }
1079
Jorim Jaggi0429f352015-12-22 16:29:16 +01001080 /**
1081 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
1082 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
1083 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
1084 * with a queue.
1085 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001086 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001087 final Task task = getTask();
1088 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001089
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001090 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001091 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001092 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001093 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001094 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001095 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001096 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001097 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001098 }
1099
1100 /**
1101 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1102 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001103 private void unfreezeBounds() {
Robert Carr68375192017-06-13 12:41:53 -07001104 if (mFrozenBounds.isEmpty()) {
1105 return;
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001106 }
Robert Carr68375192017-06-13 12:41:53 -07001107 mFrozenBounds.remove();
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001108 if (!mFrozenMergedConfig.isEmpty()) {
1109 mFrozenMergedConfig.remove();
1110 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001111 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001112 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001113 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001114 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001115 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001116 }
1117
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001118 void setAppLayoutChanges(int changes, String reason) {
1119 if (!mChildren.isEmpty()) {
1120 final DisplayContent dc = getDisplayContent();
1121 dc.pendingLayoutChanges |= changes;
1122 if (DEBUG_LAYOUT_REPEATS) {
1123 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001124 }
1125 }
1126 }
1127
1128 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001129 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001130 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001131 if (win.removeReplacedWindowIfNeeded(replacement)) {
1132 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001133 }
1134 }
1135 }
1136
1137 void startFreezingScreen() {
1138 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001139 + isHidden() + " freezing=" + mFreezingScreen + " hiddenRequested="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001140 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001141 if (!hiddenRequested) {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001142 if (!mFreezingScreen) {
1143 mFreezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001144 mService.registerAppFreezeListener(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001145 mService.mAppsFreezingScreen++;
1146 if (mService.mAppsFreezingScreen == 1) {
Robert Carrae606b42018-02-15 15:36:23 -08001147 mService.startFreezingDisplayLocked(0, 0, getDisplayContent());
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001148 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1149 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001150 }
1151 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001152 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001153 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001154 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001155 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001156 }
1157 }
1158 }
1159
1160 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001161 if (!mFreezingScreen) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001162 return;
1163 }
1164 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001165 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001166 boolean unfrozeWindows = false;
1167 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001168 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001169 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001170 }
1171 if (force || unfrozeWindows) {
1172 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001173 mFreezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001174 mService.unregisterAppFreezeListener(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001175 mService.mAppsFreezingScreen--;
1176 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001177 }
1178 if (unfreezeSurfaceNow) {
1179 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001180 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001181 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001182 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001183 }
1184 }
1185
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001186 @Override
1187 public void onAppFreezeTimeout() {
1188 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1189 stopFreezingScreen(true, true);
1190 }
1191
Jorim Jaggi60f9c972018-02-01 19:21:07 +01001192 /**
1193 * Tries to transfer the starting window from a token that's above ourselves in the task but
1194 * not visible anymore. This is a common scenario apps use: Trampoline activity T start main
1195 * activity M in the same task. Now, when reopening the task, T starts on top of M but then
1196 * immediately finishes after, so we have to transfer T to M.
1197 */
1198 void transferStartingWindowFromHiddenAboveTokenIfNeeded() {
1199 final Task task = getTask();
1200 for (int i = task.mChildren.size() - 1; i >= 0; i--) {
1201 final AppWindowToken fromToken = task.mChildren.get(i);
1202 if (fromToken == this) {
1203 return;
1204 }
1205 if (fromToken.hiddenRequested && transferStartingWindow(fromToken.token)) {
1206 return;
1207 }
1208 }
1209 }
1210
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001211 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001212 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001213 if (fromToken == null) {
1214 return false;
1215 }
1216
1217 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001218 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001219 // In this case, the starting icon has already been displayed, so start
1220 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001221 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001222
1223 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1224 + " from " + fromToken + " to " + this);
1225
1226 final long origId = Binder.clearCallingIdentity();
Peter Visontay3556a3b2017-11-01 17:23:17 +00001227 try {
1228 // Transfer the starting window over to the new token.
1229 startingData = fromToken.startingData;
1230 startingSurface = fromToken.startingSurface;
1231 startingDisplayed = fromToken.startingDisplayed;
1232 fromToken.startingDisplayed = false;
1233 startingWindow = tStartingWindow;
1234 reportedVisible = fromToken.reportedVisible;
1235 fromToken.startingData = null;
1236 fromToken.startingSurface = null;
1237 fromToken.startingWindow = null;
1238 fromToken.startingMoved = true;
1239 tStartingWindow.mToken = this;
1240 tStartingWindow.mAppToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001241
Peter Visontay3556a3b2017-11-01 17:23:17 +00001242 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1243 "Removing starting " + tStartingWindow + " from " + fromToken);
1244 fromToken.removeChild(tStartingWindow);
1245 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
1246 fromToken.mHiddenSetFromTransferredStartingWindow = false;
1247 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001248
Peter Visontay3556a3b2017-11-01 17:23:17 +00001249 // Propagate other interesting state between the tokens. If the old token is displayed,
1250 // we should immediately force the new one to be displayed. If it is animating, we need
1251 // to move that animation to the new one.
1252 if (fromToken.allDrawn) {
1253 allDrawn = true;
1254 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1255 }
1256 if (fromToken.firstWindowDrawn) {
1257 firstWindowDrawn = true;
1258 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001259 if (!fromToken.isHidden()) {
1260 setHidden(false);
Peter Visontay3556a3b2017-11-01 17:23:17 +00001261 hiddenRequested = false;
1262 mHiddenSetFromTransferredStartingWindow = true;
1263 }
1264 setClientHidden(fromToken.mClientHidden);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001265
Jorim Jaggi980c9de2017-11-17 01:41:37 +01001266 transferAnimation(fromToken);
1267
1268 // When transferring an animation, we no longer need to apply an animation to the
1269 // the token we transfer the animation over. Thus, remove the animation from
1270 // pending opening apps.
1271 mService.mOpeningApps.remove(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001272
Peter Visontay3556a3b2017-11-01 17:23:17 +00001273 mService.updateFocusedWindowLocked(
1274 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
1275 getDisplayContent().setLayoutNeeded();
1276 mService.mWindowPlacerLocked.performSurfacePlacement();
1277 } finally {
1278 Binder.restoreCallingIdentity(origId);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001279 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001280 return true;
1281 } else if (fromToken.startingData != null) {
1282 // The previous app was getting ready to show a
1283 // starting window, but hasn't yet done so. Steal it!
1284 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1285 "Moving pending starting from " + fromToken + " to " + this);
1286 startingData = fromToken.startingData;
1287 fromToken.startingData = null;
1288 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001289 if (getController() != null) {
1290 getController().scheduleAddStartingWindow();
1291 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001292 return true;
1293 }
1294
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001295 // TODO: Transfer thumbnail
1296
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001297 return false;
1298 }
1299
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001300 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001301 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001302 }
1303
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001304 @Override
1305 void onAppTransitionDone() {
1306 sendingToBottom = false;
1307 }
1308
Wale Ogunwale51362492016-09-08 17:49:17 -07001309 /**
1310 * We override because this class doesn't want its children affecting its reported orientation
1311 * in anyway.
1312 */
1313 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001314 int getOrientation(int candidate) {
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001315 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1316 // Allow app to specify orientation regardless of its visibility state if the current
1317 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1318 // wants us to use the orientation of the app behind it.
1319 return mOrientation;
1320 }
1321
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001322 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1323 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1324 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001325 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Andrii Kulian0918d362018-05-23 17:01:37 -07001326 && (isVisible() || mService.mOpeningApps.contains(this))) {
Bryce Leea163b762017-01-24 11:05:01 -08001327 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001328 }
Bryce Leea163b762017-01-24 11:05:01 -08001329
1330 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001331 }
1332
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001333 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1334 int getOrientationIgnoreVisibility() {
1335 return mOrientation;
1336 }
1337
Craig Mautnerdbb79912012-03-01 18:59:14 -08001338 @Override
Winson Chunge55c0192017-08-24 14:50:48 -07001339 public void onConfigurationChanged(Configuration newParentConfig) {
1340 final int prevWinMode = getWindowingMode();
1341 super.onConfigurationChanged(newParentConfig);
1342 final int winMode = getWindowingMode();
1343
1344 if (prevWinMode == winMode) {
1345 return;
1346 }
1347
1348 if (prevWinMode != WINDOWING_MODE_UNDEFINED && winMode == WINDOWING_MODE_PINNED) {
1349 // Entering PiP from fullscreen, reset the snap fraction
1350 mDisplayContent.mPinnedStackControllerLocked.resetReentrySnapFraction(this);
Winson Chung82267ce2018-04-06 16:38:26 -07001351 } else if (prevWinMode == WINDOWING_MODE_PINNED && winMode != WINDOWING_MODE_UNDEFINED
1352 && !isHidden()) {
Winson Chunge55c0192017-08-24 14:50:48 -07001353 // Leaving PiP to fullscreen, save the snap fraction based on the pre-animation bounds
1354 // for the next re-entry into PiP (assuming the activity is not hidden or destroyed)
1355 final TaskStack pinnedStack = mDisplayContent.getPinnedStack();
1356 if (pinnedStack != null) {
Winson Chung8efa1652018-06-06 09:34:23 -07001357 final Rect stackBounds;
1358 if (pinnedStack.lastAnimatingBoundsWasToFullscreen()) {
1359 // We are animating the bounds, use the pre-animation bounds to save the snap
1360 // fraction
1361 stackBounds = pinnedStack.mPreAnimationBounds;
1362 } else {
1363 // We skip the animation if the fullscreen configuration is not compatible, so
1364 // use the current bounds to calculate the saved snap fraction instead
1365 // (see PinnedActivityStack.skipResizeAnimation())
1366 stackBounds = mTmpRect;
1367 pinnedStack.getBounds(stackBounds);
1368 }
Winson Chunge55c0192017-08-24 14:50:48 -07001369 mDisplayContent.mPinnedStackControllerLocked.saveReentrySnapFraction(this,
Winson Chung8efa1652018-06-06 09:34:23 -07001370 stackBounds);
Winson Chunge55c0192017-08-24 14:50:48 -07001371 }
1372 }
1373 }
1374
1375 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001376 void checkAppWindowsReadyToShow() {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001377 if (allDrawn == mLastAllDrawn) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001378 return;
1379 }
1380
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001381 mLastAllDrawn = allDrawn;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001382 if (!allDrawn) {
1383 return;
1384 }
1385
1386 // The token has now changed state to having all windows shown... what to do, what to do?
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001387 if (mFreezingScreen) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001388 showAllWindowsLocked();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001389 stopFreezingScreen(false, true);
1390 if (DEBUG_ORIENTATION) Slog.i(TAG,
1391 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001392 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001393 // This will set mOrientationChangeComplete and cause a pass through layout.
1394 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001395 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001396 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001397 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001398
1399 // We can now show all of the drawn windows!
Jorim Jaggiaf0d6d22018-06-08 15:25:35 +02001400 if (!mService.mOpeningApps.contains(this) && canShowWindows()) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001401 showAllWindowsLocked();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001402 }
1403 }
1404 }
1405
Matthew Ng5d23afa2017-06-21 16:16:24 -07001406 /**
Bryce Leed390deb2017-06-22 13:14:28 -07001407 * Returns whether the drawn window states of this {@link AppWindowToken} has considered every
1408 * child {@link WindowState}. A child is considered if it has been passed into
1409 * {@link #updateDrawnWindowStates(WindowState)} after being added. This is used to determine
1410 * whether states, such as {@code allDrawn}, can be set, which relies on state variables such as
1411 * {@code mNumInterestingWindows}, which depend on all {@link WindowState}s being considered.
1412 *
1413 * @return {@code true} If all children have been considered, {@code false}.
1414 */
1415 private boolean allDrawnStatesConsidered() {
Bryce Lee6311c4b2017-07-06 14:09:29 -07001416 for (int i = mChildren.size() - 1; i >= 0; --i) {
1417 final WindowState child = mChildren.get(i);
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001418 if (child.mightAffectAllDrawn() && !child.getDrawnStateEvaluated()) {
Bryce Leed390deb2017-06-22 13:14:28 -07001419 return false;
1420 }
1421 }
1422 return true;
1423 }
1424
1425 /**
Matthew Ng5d23afa2017-06-21 16:16:24 -07001426 * Determines if the token has finished drawing. This should only be called from
1427 * {@link DisplayContent#applySurfaceChangesTransaction}
1428 */
Matthew Ng498c71d2017-04-18 13:55:45 -07001429 void updateAllDrawn() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001430 if (!allDrawn) {
Matthew Ng498c71d2017-04-18 13:55:45 -07001431 // Number of drawn windows can be less when a window is being relaunched, wait for
Bryce Leed390deb2017-06-22 13:14:28 -07001432 // all windows to be launched and drawn for this token be considered all drawn.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001433 final int numInteresting = mNumInterestingWindows;
Bryce Leed390deb2017-06-22 13:14:28 -07001434
1435 // We must make sure that all present children have been considered (determined by
1436 // {@link #allDrawnStatesConsidered}) before evaluating whether everything has been
1437 // drawn.
1438 if (numInteresting > 0 && allDrawnStatesConsidered()
1439 && mNumDrawnWindows >= numInteresting && !isRelaunching()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001440 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001441 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001442 allDrawn = true;
1443 // Force an additional layout pass where
1444 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Matthew Ng498c71d2017-04-18 13:55:45 -07001445 if (mDisplayContent != null) {
1446 mDisplayContent.setLayoutNeeded();
1447 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001448 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001449
Winson Chunge7ba6862017-05-24 12:13:33 -07001450 // Notify the pinned stack upon all windows drawn. If there was an animation in
1451 // progress then this signal will resume that animation.
Wale Ogunwale61911492017-10-11 08:50:50 -07001452 final TaskStack pinnedStack = mDisplayContent.getPinnedStack();
Winson Chunge7ba6862017-05-24 12:13:33 -07001453 if (pinnedStack != null) {
1454 pinnedStack.onAllWindowsDrawn();
Robert Carrecc06b32017-04-18 14:25:10 -07001455 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001456 }
1457 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001458 }
1459
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001460 /**
1461 * Updated this app token tracking states for interesting and drawn windows based on the window.
1462 *
1463 * @return Returns true if the input window is considered interesting and drawn while all the
1464 * windows in this app token where not considered drawn as of the last pass.
1465 */
1466 boolean updateDrawnWindowStates(WindowState w) {
Bryce Leed390deb2017-06-22 13:14:28 -07001467 w.setDrawnStateEvaluated(true /*evaluated*/);
1468
Jorim Jaggie4b0f282017-05-17 15:10:29 +02001469 if (DEBUG_STARTING_WINDOW_VERBOSE && w == startingWindow) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001470 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001471 + " allDrawn=" + allDrawn + " freezingScreen=" + mFreezingScreen);
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001472 }
1473
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001474 if (allDrawn && !mFreezingScreen) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001475 return false;
1476 }
1477
1478 if (mLastTransactionSequence != mService.mTransactionSequence) {
1479 mLastTransactionSequence = mService.mTransactionSequence;
Matthew Ng53e66b22018-01-12 17:13:13 -08001480 mNumDrawnWindows = 0;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001481 startingDisplayed = false;
Matthew Ng53e66b22018-01-12 17:13:13 -08001482
1483 // There is the main base application window, even if it is exiting, wait for it
1484 mNumInterestingWindows = findMainWindow(false /* includeStartingApp */) != null ? 1 : 0;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001485 }
1486
1487 final WindowStateAnimator winAnimator = w.mWinAnimator;
1488
1489 boolean isInterestingAndDrawn = false;
1490
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001491 if (!allDrawn && w.mightAffectAllDrawn()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001492 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1493 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001494 + ", isAnimationSet=" + isSelfAnimating());
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001495 if (!w.isDrawnLw()) {
1496 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1497 + " pv=" + w.mPolicyVisibility
1498 + " mDrawState=" + winAnimator.drawStateToString()
1499 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001500 + " a=" + isSelfAnimating());
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001501 }
1502 }
1503
1504 if (w != startingWindow) {
1505 if (w.isInteresting()) {
Matthew Ng53e66b22018-01-12 17:13:13 -08001506 // Add non-main window as interesting since the main app has already been added
1507 if (findMainWindow(false /* includeStartingApp */) != w) {
1508 mNumInterestingWindows++;
1509 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001510 if (w.isDrawnLw()) {
1511 mNumDrawnWindows++;
1512
1513 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1514 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001515 + " freezingScreen=" + mFreezingScreen
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001516 + " mAppFreezing=" + w.mAppFreezing);
1517
1518 isInterestingAndDrawn = true;
1519 }
1520 }
1521 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001522 if (getController() != null) {
1523 getController().reportStartingWindowDrawn();
1524 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001525 startingDisplayed = true;
1526 }
1527 }
1528
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001529 return isInterestingAndDrawn;
1530 }
1531
Adrian Roos23df3a32018-03-15 15:41:13 +01001532 void layoutLetterbox(WindowState winHint) {
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001533 final WindowState w = findMainWindow();
Adrian Roosf93b6d22018-03-21 13:48:26 +01001534 if (w == null || winHint != null && w != winHint) {
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001535 return;
1536 }
Jorim Jaggia32da382018-03-28 18:01:22 +02001537 final boolean surfaceReady = w.isDrawnLw() // Regular case
Adrian Roosf93b6d22018-03-21 13:48:26 +01001538 || w.mWinAnimator.mSurfaceDestroyDeferred // The preserved surface is still ready.
1539 || w.isDragResizeChanged(); // Waiting for relayoutWindow to call preserveSurface.
1540 final boolean needsLetterbox = w.isLetterboxedAppWindow() && fillsParent() && surfaceReady;
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001541 if (needsLetterbox) {
1542 if (mLetterbox == null) {
1543 mLetterbox = new Letterbox(() -> makeChildSurface(null));
1544 }
chaviw492139a2018-07-16 16:07:35 -07001545 mLetterbox.layout(getParent().getBounds(), w.getFrameLw());
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001546 } else if (mLetterbox != null) {
Adrian Roos23df3a32018-03-15 15:41:13 +01001547 mLetterbox.hide();
1548 }
1549 }
1550
1551 void updateLetterboxSurface(WindowState winHint) {
1552 final WindowState w = findMainWindow();
1553 if (w != winHint && winHint != null && w != null) {
1554 return;
1555 }
1556 layoutLetterbox(winHint);
1557 if (mLetterbox != null && mLetterbox.needsApplySurfaceChanges()) {
1558 mLetterbox.applySurfaceChanges(mPendingTransaction);
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001559 }
1560 }
1561
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001562 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001563 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001564 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1565 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1566 // TODO: Investigate if we need to continue to do this or if we can just process them
1567 // in-order.
1568 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001569 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001570 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001571 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001572 }
1573
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001574 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1575 boolean traverseTopToBottom) {
1576 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001577 }
1578
1579 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001580 AppWindowToken asAppWindowToken() {
1581 // I am an app window token!
1582 return this;
1583 }
1584
1585 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001586 boolean fillsParent() {
1587 return mFillsParent;
1588 }
1589
1590 void setFillsParent(boolean fillsParent) {
1591 mFillsParent = fillsParent;
1592 }
1593
Jorim Jaggife762342016-10-13 14:33:27 +02001594 boolean containsDismissKeyguardWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001595 // Window state is transient during relaunch. We are not guaranteed to be frozen during the
1596 // entirety of the relaunch.
1597 if (isRelaunching()) {
1598 return mLastContainsDismissKeyguardWindow;
1599 }
1600
Jorim Jaggife762342016-10-13 14:33:27 +02001601 for (int i = mChildren.size() - 1; i >= 0; i--) {
1602 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1603 return true;
1604 }
1605 }
1606 return false;
1607 }
1608
1609 boolean containsShowWhenLockedWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001610 // When we are relaunching, it is possible for us to be unfrozen before our previous
1611 // windows have been added back. Using the cached value ensures that our previous
1612 // showWhenLocked preference is honored until relaunching is complete.
1613 if (isRelaunching()) {
1614 return mLastContainsShowWhenLockedWindow;
1615 }
1616
Jorim Jaggife762342016-10-13 14:33:27 +02001617 for (int i = mChildren.size() - 1; i >= 0; i--) {
1618 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1619 return true;
1620 }
1621 }
Bryce Lee081554b2017-05-25 07:52:12 -07001622
Jorim Jaggife762342016-10-13 14:33:27 +02001623 return false;
1624 }
1625
1626 void checkKeyguardFlagsChanged() {
1627 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1628 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1629 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1630 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1631 mService.notifyKeyguardFlagsChanged(null /* callback */);
1632 }
1633 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1634 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1635 }
1636
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001637 WindowState getImeTargetBelowWindow(WindowState w) {
1638 final int index = mChildren.indexOf(w);
1639 if (index > 0) {
1640 final WindowState target = mChildren.get(index - 1);
1641 if (target.canBeImeTarget()) {
1642 return target;
1643 }
1644 }
1645 return null;
1646 }
1647
1648 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1649 WindowState candidate = null;
1650 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1651 final WindowState w = mChildren.get(i);
1652 if (w.mRemoved) {
1653 continue;
1654 }
Jorim Jaggi35d328a2018-08-14 17:00:20 +02001655 if (candidate == null) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001656 candidate = w;
1657 }
1658 }
1659 return candidate;
1660 }
1661
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001662 /**
1663 * See {@link Activity#setDisablePreviewScreenshots}.
1664 */
1665 void setDisablePreviewScreenshots(boolean disable) {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001666 mDisablePreviewScreenshots = disable;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001667 }
1668
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001669 /**
chaviwd3bf08d2017-08-01 17:24:59 -07001670 * Sets whether the current launch can turn the screen on. See {@link #canTurnScreenOn()}
1671 */
1672 void setCanTurnScreenOn(boolean canTurnScreenOn) {
1673 mCanTurnScreenOn = canTurnScreenOn;
1674 }
1675
1676 /**
1677 * Indicates whether the current launch can turn the screen on. This is to prevent multiple
1678 * relayouts from turning the screen back on. The screen should only turn on at most
1679 * once per activity resume.
1680 *
1681 * @return true if the screen can be turned on.
1682 */
1683 boolean canTurnScreenOn() {
1684 return mCanTurnScreenOn;
1685 }
1686
1687 /**
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001688 * Retrieves whether we'd like to generate a snapshot that's based solely on the theme. This is
1689 * the case when preview screenshots are disabled {@link #setDisablePreviewScreenshots} or when
1690 * we can't take a snapshot for other reasons, for example, if we have a secure window.
1691 *
1692 * @return True if we need to generate an app theme snapshot, false if we'd like to take a real
1693 * screenshot.
1694 */
1695 boolean shouldUseAppThemeSnapshot() {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001696 return mDisablePreviewScreenshots || forAllWindows(w -> (w.mAttrs.flags & FLAG_SECURE) != 0,
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001697 true /* topToBottom */);
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001698 }
1699
Jorim Jaggibe418292018-03-26 16:14:12 +02001700 SurfaceControl getAppAnimationLayer() {
Jorim Jaggi391790622018-04-18 15:30:44 +02001701 return getAppAnimationLayer(isActivityTypeHome() ? ANIMATION_LAYER_HOME
1702 : needsZBoost() ? ANIMATION_LAYER_BOOSTED
1703 : ANIMATION_LAYER_STANDARD);
Jorim Jaggibe418292018-03-26 16:14:12 +02001704 }
1705
chaviw23ee71c2017-12-18 11:29:41 -08001706 @Override
Jorim Jaggi596a1992017-12-29 14:48:02 +01001707 public SurfaceControl getAnimationLeashParent() {
Robert Carrb9506032018-02-13 13:54:00 -08001708 // All normal app transitions take place in an animation layer which is below the pinned
1709 // stack but may be above the parent stacks of the given animating apps.
1710 // For transitions in the pinned stack (menu activity) we just let them occur as a child
1711 // of the pinned stack.
1712 if (!inPinnedWindowingMode()) {
1713 return getAppAnimationLayer();
1714 } else {
1715 return getStack().getSurfaceControl();
1716 }
chaviw23ee71c2017-12-18 11:29:41 -08001717 }
1718
Jorim Jaggic6976f02018-04-18 16:31:07 +02001719 private boolean shouldAnimate(int transit) {
1720 final boolean isSplitScreenPrimary =
1721 getWindowingMode() == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
1722 final boolean allowSplitScreenPrimaryAnimation = transit != TRANSIT_WALLPAPER_OPEN;
1723
1724 // We animate always if it's not split screen primary, and only some special cases in split
1725 // screen primary because it causes issues with stack clipping when we run an un-minimize
1726 // animation at the same time.
1727 return !isSplitScreenPrimary || allowSplitScreenPrimaryAnimation;
1728 }
1729
Vishnu Naira2977262018-07-26 13:31:26 -07001730 /**
1731 * Creates a layer to apply crop to an animation.
1732 */
1733 private SurfaceControl createAnimationBoundsLayer(Transaction t) {
1734 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.i(TAG, "Creating animation bounds layer");
1735 final SurfaceControl.Builder builder = makeAnimationLeash()
1736 .setParent(getAnimationLeashParent())
1737 .setName(getSurfaceControl() + " - animation-bounds")
1738 .setSize(getSurfaceWidth(), getSurfaceHeight());
1739 final SurfaceControl boundsLayer = builder.build();
1740 t.show(boundsLayer);
1741 return boundsLayer;
1742 }
1743
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001744 boolean applyAnimationLocked(WindowManager.LayoutParams lp, int transit, boolean enter,
1745 boolean isVoiceInteraction) {
1746
Jorim Jaggic6976f02018-04-18 16:31:07 +02001747 if (mService.mDisableTransitionAnimation || !shouldAnimate(transit)) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001748 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
Jorim Jaggic6976f02018-04-18 16:31:07 +02001749 Slog.v(TAG_WM, "applyAnimation: transition animation is disabled or skipped."
1750 + " atoken=" + this);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001751 }
1752 cancelAnimation();
1753 return false;
1754 }
1755
1756 // Only apply an animation if the display isn't frozen. If it is frozen, there is no reason
1757 // to animate and it can cause strange artifacts when we unfreeze the display if some
1758 // different animation is running.
1759 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "AWT#applyAnimationLocked");
1760 if (okToAnimate()) {
Jorim Jaggi33a701a2017-12-01 14:58:18 +01001761 final AnimationAdapter adapter;
1762 final TaskStack stack = getStack();
1763 mTmpPoint.set(0, 0);
1764 mTmpRect.setEmpty();
1765 if (stack != null) {
1766 stack.getRelativePosition(mTmpPoint);
1767 stack.getBounds(mTmpRect);
1768 mTmpRect.offsetTo(0, 0);
1769 }
Jorim Jaggic4d29f22018-03-22 16:30:56 +01001770
1771 // Delaying animation start isn't compatible with remote animations at all.
1772 if (mService.mAppTransition.getRemoteAnimationController() != null
1773 && !mSurfaceAnimator.isAnimationStartDelayed()) {
Jorim Jaggi33a701a2017-12-01 14:58:18 +01001774 adapter = mService.mAppTransition.getRemoteAnimationController()
1775 .createAnimationAdapter(this, mTmpPoint, mTmpRect);
1776 } else {
Vishnu Naira2977262018-07-26 13:31:26 -07001777 final int appStackClipMode = mService.mAppTransition.getAppStackClipMode();
1778 mNeedsAnimationBoundsLayer = (appStackClipMode == STACK_CLIP_AFTER_ANIM);
1779
Jorim Jaggi33a701a2017-12-01 14:58:18 +01001780 final Animation a = loadAnimation(lp, transit, enter, isVoiceInteraction);
1781 if (a != null) {
1782 adapter = new LocalAnimationAdapter(
1783 new WindowAnimationSpec(a, mTmpPoint, mTmpRect,
1784 mService.mAppTransition.canSkipFirstFrame(),
Vishnu Naira2977262018-07-26 13:31:26 -07001785 appStackClipMode,
Jorim Jaggiaa763cd2018-03-22 23:20:36 +01001786 true /* isAppAnimation */),
Jorim Jaggi33a701a2017-12-01 14:58:18 +01001787 mService.mSurfaceAnimationRunner);
1788 if (a.getZAdjustment() == Animation.ZORDER_TOP) {
1789 mNeedsZBoost = true;
1790 }
1791 mTransit = transit;
1792 mTransitFlags = mService.mAppTransition.getTransitFlags();
1793 } else {
1794 adapter = null;
chaviw23ee71c2017-12-18 11:29:41 -08001795 }
Jorim Jaggi33a701a2017-12-01 14:58:18 +01001796 }
1797 if (adapter != null) {
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001798 startAnimation(getPendingTransaction(), adapter, !isVisible());
Jorim Jaggi82c17862018-02-21 17:50:18 +01001799 if (adapter.getShowWallpaper()) {
1800 mDisplayContent.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
1801 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001802 }
1803 } else {
1804 cancelAnimation();
1805 }
1806 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
1807
1808 return isReallyAnimating();
1809 }
1810
1811 private Animation loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter,
1812 boolean isVoiceInteraction) {
1813 final DisplayContent displayContent = getTask().getDisplayContent();
1814 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
1815 final int width = displayInfo.appWidth;
1816 final int height = displayInfo.appHeight;
1817 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG_WM,
1818 "applyAnimation: atoken=" + this);
1819
1820 // Determine the visible rect to calculate the thumbnail clip
1821 final WindowState win = findMainWindow();
1822 final Rect frame = new Rect(0, 0, width, height);
1823 final Rect displayFrame = new Rect(0, 0,
1824 displayInfo.logicalWidth, displayInfo.logicalHeight);
1825 final Rect insets = new Rect();
1826 final Rect stableInsets = new Rect();
1827 Rect surfaceInsets = null;
1828 final boolean freeform = win != null && win.inFreeformWindowingMode();
1829 if (win != null) {
1830 // Containing frame will usually cover the whole screen, including dialog windows.
1831 // For freeform workspace windows it will not cover the whole screen and it also
1832 // won't exactly match the final freeform window frame (e.g. when overlapping with
1833 // the status bar). In that case we need to use the final frame.
1834 if (freeform) {
chaviw492139a2018-07-16 16:07:35 -07001835 frame.set(win.getFrameLw());
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001836 } else if (win.isLetterboxedAppWindow()) {
1837 frame.set(getTask().getBounds());
Winson Chungc1674272018-02-21 10:15:17 -08001838 } else if (win.isDockedResizing()) {
1839 // If we are animating while docked resizing, then use the stack bounds as the
1840 // animation target (which will be different than the task bounds)
1841 frame.set(getTask().getParent().getBounds());
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001842 } else {
chaviw553b0212018-07-12 13:37:01 -07001843 frame.set(win.getContainingFrame());
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001844 }
1845 surfaceInsets = win.getAttrs().surfaceInsets;
Adrian Roos20e07892018-02-23 19:12:01 +01001846 // XXX(b/72757033): These are insets relative to the window frame, but we're really
1847 // interested in the insets relative to the frame we chose in the if-blocks above.
chaviw9c81e632018-07-31 11:17:52 -07001848 win.getContentInsets(insets);
1849 win.getStableInsets(stableInsets);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001850 }
1851
1852 if (mLaunchTaskBehind) {
1853 // Differentiate the two animations. This one which is briefly on the screen
1854 // gets the !enter animation, and the other activity which remains on the
1855 // screen gets the enter animation. Both appear in the mOpeningApps set.
1856 enter = false;
1857 }
1858 if (DEBUG_APP_TRANSITIONS) Slog.d(TAG_WM, "Loading animation for app transition."
1859 + " transit=" + AppTransition.appTransitionToString(transit) + " enter=" + enter
1860 + " frame=" + frame + " insets=" + insets + " surfaceInsets=" + surfaceInsets);
1861 final Configuration displayConfig = displayContent.getConfiguration();
1862 final Animation a = mService.mAppTransition.loadAnimation(lp, transit, enter,
1863 displayConfig.uiMode, displayConfig.orientation, frame, displayFrame, insets,
1864 surfaceInsets, stableInsets, isVoiceInteraction, freeform, getTask().mTaskId);
1865 if (a != null) {
1866 if (DEBUG_ANIM) logWithStack(TAG, "Loaded animation " + a + " for " + this);
1867 final int containingWidth = frame.width();
1868 final int containingHeight = frame.height();
1869 a.initialize(containingWidth, containingHeight, width, height);
1870 a.scaleCurrentDuration(mService.getTransitionAnimationScaleLocked());
1871 }
1872 return a;
1873 }
1874
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001875 @Override
Jorim Jaggi6de61012018-03-19 14:53:23 +01001876 public boolean shouldDeferAnimationFinish(Runnable endDeferFinishCallback) {
1877 return mAnimatingAppWindowTokenRegistry != null
1878 && mAnimatingAppWindowTokenRegistry.notifyAboutToFinish(
1879 this, endDeferFinishCallback);
1880 }
1881
1882 @Override
1883 public void onAnimationLeashDestroyed(Transaction t) {
1884 super.onAnimationLeashDestroyed(t);
Vishnu Naira2977262018-07-26 13:31:26 -07001885 if (mAnimationBoundsLayer != null) {
1886 t.destroy(mAnimationBoundsLayer);
1887 mAnimationBoundsLayer = null;
1888 }
1889
Jorim Jaggi6de61012018-03-19 14:53:23 +01001890 if (mAnimatingAppWindowTokenRegistry != null) {
1891 mAnimatingAppWindowTokenRegistry.notifyFinished(this);
1892 }
1893 }
1894
1895 @Override
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001896 protected void setLayer(Transaction t, int layer) {
1897 if (!mSurfaceAnimator.hasLeash()) {
1898 t.setLayer(mSurfaceControl, layer);
1899 }
1900 }
1901
1902 @Override
1903 protected void setRelativeLayer(Transaction t, SurfaceControl relativeTo, int layer) {
1904 if (!mSurfaceAnimator.hasLeash()) {
1905 t.setRelativeLayer(mSurfaceControl, relativeTo, layer);
1906 }
1907 }
1908
1909 @Override
1910 protected void reparentSurfaceControl(Transaction t, SurfaceControl newParent) {
1911 if (!mSurfaceAnimator.hasLeash()) {
1912 t.reparent(mSurfaceControl, newParent.getHandle());
1913 }
1914 }
1915
1916 @Override
1917 public void onAnimationLeashCreated(Transaction t, SurfaceControl leash) {
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001918 // The leash is parented to the animation layer. We need to preserve the z-order by using
1919 // the prefix order index, but we boost if necessary.
Robert Carrb9506032018-02-13 13:54:00 -08001920 int layer = 0;
1921 if (!inPinnedWindowingMode()) {
1922 layer = getPrefixOrderIndex();
1923 } else {
1924 // Pinned stacks have animations take place within themselves rather than an animation
1925 // layer so we need to preserve the order relative to the stack (e.g. the order of our
1926 // task/parent).
1927 layer = getParent().getPrefixOrderIndex();
1928 }
1929
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001930 if (mNeedsZBoost) {
1931 layer += Z_BOOST_BASE;
1932 }
1933 leash.setLayer(layer);
Robert Carr2f8aa392018-01-31 14:46:51 -08001934
1935 final DisplayContent dc = getDisplayContent();
Jorim Jaggibe418292018-03-26 16:14:12 +02001936 dc.assignStackOrdering();
Jorim Jaggi6de61012018-03-19 14:53:23 +01001937 if (mAnimatingAppWindowTokenRegistry != null) {
1938 mAnimatingAppWindowTokenRegistry.notifyStarting(this);
1939 }
Vishnu Naira2977262018-07-26 13:31:26 -07001940
1941 // If the animation needs to be cropped then an animation bounds layer is created as a child
1942 // of the pinned stack or animation layer. The leash is then reparented to this new layer.
1943 if (mNeedsAnimationBoundsLayer) {
1944 final TaskStack stack = getStack();
1945 if (stack == null) {
1946 return;
1947 }
1948 mAnimationBoundsLayer = createAnimationBoundsLayer(t);
1949
1950 // Set clip rect to stack bounds.
1951 mTmpRect.setEmpty();
1952 stack.getBounds(mTmpRect);
1953
1954 // Crop to stack bounds.
1955 t.setWindowCrop(mAnimationBoundsLayer, mTmpRect);
1956
1957 // Reparent leash to animation bounds layer.
1958 t.reparent(leash, mAnimationBoundsLayer.getHandle());
1959 }
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001960 }
1961
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001962 /**
1963 * This must be called while inside a transaction.
1964 */
1965 void showAllWindowsLocked() {
1966 forAllWindows(windowState -> {
1967 if (DEBUG_VISIBILITY) Slog.v(TAG, "performing show on: " + windowState);
1968 windowState.performShowLocked();
1969 }, false /* traverseTopToBottom */);
Jorim Jaggia5e10572017-11-15 14:36:26 +01001970 }
1971
1972 @Override
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001973 protected void onAnimationFinished() {
1974 super.onAnimationFinished();
1975
1976 mTransit = TRANSIT_UNSET;
1977 mTransitFlags = 0;
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001978 mNeedsZBoost = false;
Vishnu Naira2977262018-07-26 13:31:26 -07001979 mNeedsAnimationBoundsLayer = false;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001980
1981 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM | FINISH_LAYOUT_REDO_WALLPAPER,
1982 "AppWindowToken");
1983
Jorim Jaggi988f6682017-11-17 17:46:43 +01001984 clearThumbnail();
Jorim Jaggi752cd822018-03-29 16:29:18 +02001985 setClientHidden(isHidden() && hiddenRequested);
Jorim Jaggi988f6682017-11-17 17:46:43 +01001986
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001987 if (mService.mInputMethodTarget != null && mService.mInputMethodTarget.mAppToken == this) {
1988 getDisplayContent().computeImeTarget(true /* updateImeTarget */);
1989 }
1990
1991 if (DEBUG_ANIM) Slog.v(TAG, "Animation done in " + this
1992 + ": reportedVisible=" + reportedVisible
1993 + " okToDisplay=" + okToDisplay()
1994 + " okToAnimate=" + okToAnimate()
1995 + " startingDisplayed=" + startingDisplayed);
1996
1997 // WindowState.onExitAnimationDone might modify the children list, so make a copy and then
1998 // traverse the copy.
1999 final ArrayList<WindowState> children = new ArrayList<>(mChildren);
2000 children.forEach(WindowState::onExitAnimationDone);
2001
2002 mService.mAppTransition.notifyAppTransitionFinishedLocked(token);
2003 scheduleAnimation();
2004 }
2005
2006 @Override
2007 boolean isAppAnimating() {
2008 return isSelfAnimating();
2009 }
2010
2011 @Override
2012 boolean isSelfAnimating() {
2013 // If we are about to start a transition, we also need to be considered animating.
2014 return isWaitingForTransitionStart() || isReallyAnimating();
2015 }
2016
2017 /**
2018 * @return True if and only if we are actually running an animation. Note that
2019 * {@link #isSelfAnimating} also returns true if we are waiting for an animation to
2020 * start.
2021 */
2022 private boolean isReallyAnimating() {
2023 return super.isSelfAnimating();
2024 }
2025
Jorim Jaggi988f6682017-11-17 17:46:43 +01002026 @Override
2027 void cancelAnimation() {
2028 super.cancelAnimation();
2029 clearThumbnail();
2030 }
2031
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002032 boolean isWaitingForTransitionStart() {
2033 return mService.mAppTransition.isTransitionSet()
2034 && (mService.mOpeningApps.contains(this) || mService.mClosingApps.contains(this));
2035 }
2036
2037 public int getTransit() {
2038 return mTransit;
2039 }
2040
2041 int getTransitFlags() {
2042 return mTransitFlags;
2043 }
2044
Jorim Jaggi988f6682017-11-17 17:46:43 +01002045 void attachThumbnailAnimation() {
2046 if (!isReallyAnimating()) {
2047 return;
2048 }
2049 final int taskId = getTask().mTaskId;
2050 final GraphicBuffer thumbnailHeader =
2051 mService.mAppTransition.getAppTransitionThumbnailHeader(taskId);
2052 if (thumbnailHeader == null) {
2053 if (DEBUG_APP_TRANSITIONS) Slog.d(TAG, "No thumbnail header bitmap for: " + taskId);
2054 return;
2055 }
2056 clearThumbnail();
2057 mThumbnail = new AppWindowThumbnail(getPendingTransaction(), this, thumbnailHeader);
2058 mThumbnail.startAnimation(getPendingTransaction(), loadThumbnailAnimation(thumbnailHeader));
2059 }
2060
Tony Mak64b8d562017-12-28 17:44:02 +00002061 /**
2062 * Attaches a surface with a thumbnail for the
2063 * {@link android.app.ActivityOptions#ANIM_OPEN_CROSS_PROFILE_APPS} animation.
2064 */
2065 void attachCrossProfileAppsThumbnailAnimation() {
2066 if (!isReallyAnimating()) {
2067 return;
2068 }
2069 clearThumbnail();
2070
2071 final WindowState win = findMainWindow();
2072 if (win == null) {
2073 return;
2074 }
chaviw492139a2018-07-16 16:07:35 -07002075 final Rect frame = win.getFrameLw();
Tony Mak64b8d562017-12-28 17:44:02 +00002076 final int thumbnailDrawableRes = getTask().mUserId == mService.mCurrentUserId
2077 ? R.drawable.ic_account_circle
Tony Makda4af232018-04-27 11:01:10 +01002078 : R.drawable.ic_corp_badge;
Tony Mak64b8d562017-12-28 17:44:02 +00002079 final GraphicBuffer thumbnail =
2080 mService.mAppTransition
2081 .createCrossProfileAppsThumbnail(thumbnailDrawableRes, frame);
2082 if (thumbnail == null) {
2083 return;
2084 }
2085 mThumbnail = new AppWindowThumbnail(getPendingTransaction(), this, thumbnail);
2086 final Animation animation =
chaviw492139a2018-07-16 16:07:35 -07002087 mService.mAppTransition.createCrossProfileAppsThumbnailAnimationLocked(
2088 win.getFrameLw());
Tony Mak64b8d562017-12-28 17:44:02 +00002089 mThumbnail.startAnimation(getPendingTransaction(), animation, new Point(frame.left,
2090 frame.top));
2091 }
2092
Jorim Jaggi988f6682017-11-17 17:46:43 +01002093 private Animation loadThumbnailAnimation(GraphicBuffer thumbnailHeader) {
2094 final DisplayInfo displayInfo = mDisplayContent.getDisplayInfo();
2095
2096 // If this is a multi-window scenario, we use the windows frame as
2097 // destination of the thumbnail header animation. If this is a full screen
2098 // window scenario, we use the whole display as the target.
2099 WindowState win = findMainWindow();
2100 Rect appRect = win != null ? win.getContentFrameLw() :
2101 new Rect(0, 0, displayInfo.appWidth, displayInfo.appHeight);
chaviw9c81e632018-07-31 11:17:52 -07002102 final Rect insets = win != null ? win.getContentInsets() : null;
Jorim Jaggi988f6682017-11-17 17:46:43 +01002103 final Configuration displayConfig = mDisplayContent.getConfiguration();
2104 return mService.mAppTransition.createThumbnailAspectScaleAnimationLocked(
2105 appRect, insets, thumbnailHeader, getTask().mTaskId, displayConfig.uiMode,
2106 displayConfig.orientation);
2107 }
2108
2109 private void clearThumbnail() {
2110 if (mThumbnail == null) {
2111 return;
2112 }
2113 mThumbnail.destroy();
2114 mThumbnail = null;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002115 }
2116
Jorim Jaggif84e2f62018-01-16 14:17:59 +01002117 void registerRemoteAnimations(RemoteAnimationDefinition definition) {
2118 mRemoteAnimationDefinition = definition;
2119 }
2120
2121 RemoteAnimationDefinition getRemoteAnimationDefinition() {
2122 return mRemoteAnimationDefinition;
2123 }
2124
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002125 @Override
2126 void dump(PrintWriter pw, String prefix, boolean dumpAll) {
2127 super.dump(pw, prefix, dumpAll);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002128 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08002129 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002130 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08002131 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07002132 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
2133 pw.print(" mOrientation="); pw.println(mOrientation);
Wale Ogunwale89973222017-04-23 18:39:45 -07002134 pw.println(prefix + "hiddenRequested=" + hiddenRequested + " mClientHidden=" + mClientHidden
2135 + ((mDeferHidingClient) ? " mDeferHidingClient=" + mDeferHidingClient : "")
2136 + " reportedDrawn=" + reportedDrawn + " reportedVisible=" + reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07002137 if (paused) {
2138 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002139 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08002140 if (mAppStopped) {
2141 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
2142 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07002143 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002144 || allDrawn || mLastAllDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07002145 pw.print(prefix); pw.print("mNumInterestingWindows=");
2146 pw.print(mNumInterestingWindows);
2147 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002148 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07002149 pw.print(" allDrawn="); pw.print(allDrawn);
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002150 pw.print(" lastAllDrawn="); pw.print(mLastAllDrawn);
Craig Mautner6fbda632012-07-03 09:26:39 -07002151 pw.println(")");
2152 }
2153 if (inPendingTransaction) {
2154 pw.print(prefix); pw.print("inPendingTransaction=");
2155 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002156 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08002157 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002158 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
2159 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08002160 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08002161 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002162 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08002163 if (startingWindow != null || startingSurface != null
Wale Ogunwale6c459212017-05-17 08:56:03 -07002164 || startingDisplayed || startingMoved || mHiddenSetFromTransferredStartingWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002165 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08002166 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002167 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale6c459212017-05-17 08:56:03 -07002168 pw.print(" startingMoved="); pw.print(startingMoved);
2169 pw.println(" mHiddenSetFromTransferredStartingWindow="
2170 + mHiddenSetFromTransferredStartingWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002171 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01002172 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08002173 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07002174 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08002175 }
2176 if (mPendingRelaunchCount != 0) {
2177 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01002178 }
Wale Ogunwale9c64cb62017-04-12 13:39:59 -07002179 if (getController() != null) {
2180 pw.print(prefix); pw.print("controller="); pw.println(getController());
2181 }
Wale Ogunwalee287e192017-04-21 09:30:12 -07002182 if (mRemovingFromDisplay) {
2183 pw.println(prefix + "mRemovingFromDisplay=" + mRemovingFromDisplay);
2184 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002185 }
2186
2187 @Override
2188 void setHidden(boolean hidden) {
2189 super.setHidden(hidden);
Winson Chunge55c0192017-08-24 14:50:48 -07002190
2191 if (hidden) {
2192 // Once the app window is hidden, reset the last saved PiP snap fraction
2193 mDisplayContent.mPinnedStackControllerLocked.resetReentrySnapFraction(this);
2194 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002195 scheduleAnimation();
2196 }
2197
2198 @Override
2199 void prepareSurfaces() {
2200 // isSelfAnimating also returns true when we are about to start a transition, so we need
2201 // to check super here.
2202 final boolean reallyAnimating = super.isSelfAnimating();
2203 final boolean show = !isHidden() || reallyAnimating;
2204 if (show && !mLastSurfaceShowing) {
2205 mPendingTransaction.show(mSurfaceControl);
2206 } else if (!show && mLastSurfaceShowing) {
2207 mPendingTransaction.hide(mSurfaceControl);
Jorim Jaggi4d1835d2017-08-31 17:28:27 +02002208 }
Jorim Jaggi988f6682017-11-17 17:46:43 +01002209 if (mThumbnail != null) {
2210 mThumbnail.setShowing(mPendingTransaction, show);
2211 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002212 mLastSurfaceShowing = show;
2213 super.prepareSurfaces();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002214 }
2215
Jorim Jaggi77d0f36c2018-03-16 17:49:49 +01002216 /**
2217 * @return Whether our {@link #getSurfaceControl} is currently showing.
2218 */
2219 boolean isSurfaceShowing() {
2220 return mLastSurfaceShowing;
2221 }
2222
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002223 boolean isFreezingScreen() {
2224 return mFreezingScreen;
2225 }
2226
2227 @Override
2228 boolean needsZBoost() {
2229 return mNeedsZBoost || super.needsZBoost();
2230 }
2231
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07002232 @CallSuper
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002233 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +02002234 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07002235 final long token = proto.start(fieldId);
2236 writeNameToProto(proto, NAME);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002237 super.writeToProto(proto, WINDOW_TOKEN, trim);
Vishnu Nair04ab4392018-01-10 11:00:06 -08002238 proto.write(LAST_SURFACE_SHOWING, mLastSurfaceShowing);
2239 proto.write(IS_WAITING_FOR_TRANSITION_START, isWaitingForTransitionStart());
2240 proto.write(IS_REALLY_ANIMATING, isReallyAnimating());
2241 if (mThumbnail != null){
2242 mThumbnail.writeToProto(proto, THUMBNAIL);
2243 }
2244 proto.write(FILLS_PARENT, mFillsParent);
2245 proto.write(APP_STOPPED, mAppStopped);
2246 proto.write(HIDDEN_REQUESTED, hiddenRequested);
2247 proto.write(CLIENT_HIDDEN, mClientHidden);
2248 proto.write(DEFER_HIDING_CLIENT, mDeferHidingClient);
2249 proto.write(REPORTED_DRAWN, reportedDrawn);
2250 proto.write(REPORTED_VISIBLE, reportedVisible);
2251 proto.write(NUM_INTERESTING_WINDOWS, mNumInterestingWindows);
2252 proto.write(NUM_DRAWN_WINDOWS, mNumDrawnWindows);
2253 proto.write(ALL_DRAWN, allDrawn);
2254 proto.write(LAST_ALL_DRAWN, mLastAllDrawn);
2255 proto.write(REMOVED, removed);
2256 if (startingWindow != null){
2257 startingWindow.writeIdentifierToProto(proto, STARTING_WINDOW);
2258 }
2259 proto.write(STARTING_DISPLAYED, startingDisplayed);
2260 proto.write(STARTING_MOVED, startingMoved);
2261 proto.write(HIDDEN_SET_FROM_TRANSFERRED_STARTING_WINDOW,
2262 mHiddenSetFromTransferredStartingWindow);
2263 for (Rect bounds : mFrozenBounds) {
2264 bounds.writeToProto(proto, FROZEN_BOUNDS);
2265 }
Steven Timotiusaf03df62017-07-18 16:56:43 -07002266 proto.end(token);
2267 }
2268
2269 void writeNameToProto(ProtoOutputStream proto, long fieldId) {
2270 if (appToken == null) {
2271 return;
2272 }
2273 try {
2274 proto.write(fieldId, appToken.getName());
2275 } catch (RemoteException e) {
2276 // This shouldn't happen, but in this case fall back to outputting nothing
2277 Slog.e(TAG, e.toString());
2278 }
2279 }
2280
2281 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002282 public String toString() {
2283 if (stringName == null) {
2284 StringBuilder sb = new StringBuilder();
2285 sb.append("AppWindowToken{");
2286 sb.append(Integer.toHexString(System.identityHashCode(this)));
2287 sb.append(" token="); sb.append(token); sb.append('}');
2288 stringName = sb.toString();
2289 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07002290 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002291 }
Adrian Roos20e07892018-02-23 19:12:01 +01002292
2293 Rect getLetterboxInsets() {
2294 if (mLetterbox != null) {
2295 return mLetterbox.getInsets();
2296 } else {
2297 return new Rect();
2298 }
2299 }
Adrian Roos23df3a32018-03-15 15:41:13 +01002300
2301 /**
2302 * @eturn true if there is a letterbox and any part of that letterbox overlaps with
2303 * the given {@code rect}.
2304 */
2305 boolean isLetterboxOverlappingWith(Rect rect) {
2306 return mLetterbox != null && mLetterbox.isOverlappingWith(rect);
2307 }
chaviw4ad54912018-05-30 11:05:44 -07002308
2309 /**
2310 * Sets if this AWT is in the process of closing or entering PIP.
2311 * {@link #mWillCloseOrEnterPip}}
2312 */
2313 void setWillCloseOrEnterPip(boolean willCloseOrEnterPip) {
2314 mWillCloseOrEnterPip = willCloseOrEnterPip;
2315 }
2316
2317 /**
2318 * Returns whether this AWT is considered closing. Conditions are either
2319 * 1. Is this app animating and was requested to be hidden
2320 * 2. App is delayed closing since it might enter PIP.
2321 */
2322 boolean isClosingOrEnteringPip() {
2323 return (isAnimating() && hiddenRequested) || mWillCloseOrEnterPip;
2324 }
Jorim Jaggiaf0d6d22018-06-08 15:25:35 +02002325
2326 /**
2327 * @return Whether we are allowed to show non-starting windows at the moment. We disallow
2328 * showing windows during transitions in case we have windows that have wide-color-gamut
2329 * color mode set to avoid jank in the middle of the transition.
2330 */
2331 boolean canShowWindows() {
2332 return allDrawn && !(isReallyAnimating() && hasNonDefaultColorWindow());
2333 }
2334
2335 /**
2336 * @return true if we have a window that has a non-default color mode set; false otherwise.
2337 */
2338 private boolean hasNonDefaultColorWindow() {
2339 return forAllWindows(ws -> ws.mAttrs.getColorMode() != COLOR_MODE_DEFAULT,
2340 true /* topToBottom */);
2341 }
Jeff Browne9bdb312012-04-05 15:30:10 -07002342}