blob: 727fb3babda6254bc6aeebf9c3eeeb1e9e2441f7 [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
Evan Rosky2289ba12018-11-19 18:28:18 -080019import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
Winson Chunge55c0192017-08-24 14:50:48 -070020import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
Jorim Jaggic6976f02018-04-18 16:31:07 +020021import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Winson Chunge55c0192017-08-24 14:50:48 -070022import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Jorim Jaggiaf0d6d22018-06-08 15:25:35 +020023import static android.content.pm.ActivityInfo.COLOR_MODE_DEFAULT;
Wale Ogunwale72919d22016-12-08 18:58:50 -080024import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
25import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -070026import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070027import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020028import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
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;
Yunfan Chen1ee84ea2018-11-13 16:03:37 -080031import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
Jorim Jaggife762342016-10-13 14:33:27 +020032import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070033import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080034import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070035import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Yunfan Chen1ee84ea2018-11-13 16:03:37 -080036import static android.view.WindowManager.TRANSIT_DOCK_TASK_FROM_RECENTS;
Evan Rosky2289ba12018-11-19 18:28:18 -080037import static android.view.WindowManager.TRANSIT_TASK_CHANGE_WINDOWING_MODE;
chaviw9c81e632018-07-31 11:17:52 -070038import static android.view.WindowManager.TRANSIT_UNSET;
Jorim Jaggic6976f02018-04-18 16:31:07 +020039import static android.view.WindowManager.TRANSIT_WALLPAPER_OPEN;
chaviw9c81e632018-07-31 11:17:52 -070040
Adrian Roose99bc052017-11-20 17:55:31 +010041import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
42import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070043import static com.android.server.wm.AppWindowTokenProto.ALL_DRAWN;
44import static com.android.server.wm.AppWindowTokenProto.APP_STOPPED;
45import static com.android.server.wm.AppWindowTokenProto.CLIENT_HIDDEN;
46import static com.android.server.wm.AppWindowTokenProto.DEFER_HIDING_CLIENT;
47import static com.android.server.wm.AppWindowTokenProto.FILLS_PARENT;
48import static com.android.server.wm.AppWindowTokenProto.FROZEN_BOUNDS;
49import static com.android.server.wm.AppWindowTokenProto.HIDDEN_REQUESTED;
50import static com.android.server.wm.AppWindowTokenProto.HIDDEN_SET_FROM_TRANSFERRED_STARTING_WINDOW;
51import static com.android.server.wm.AppWindowTokenProto.IS_REALLY_ANIMATING;
52import static com.android.server.wm.AppWindowTokenProto.IS_WAITING_FOR_TRANSITION_START;
53import static com.android.server.wm.AppWindowTokenProto.LAST_ALL_DRAWN;
54import static com.android.server.wm.AppWindowTokenProto.LAST_SURFACE_SHOWING;
55import static com.android.server.wm.AppWindowTokenProto.NAME;
56import static com.android.server.wm.AppWindowTokenProto.NUM_DRAWN_WINDOWS;
57import static com.android.server.wm.AppWindowTokenProto.NUM_INTERESTING_WINDOWS;
58import static com.android.server.wm.AppWindowTokenProto.REMOVED;
59import static com.android.server.wm.AppWindowTokenProto.REPORTED_DRAWN;
60import static com.android.server.wm.AppWindowTokenProto.REPORTED_VISIBLE;
61import static com.android.server.wm.AppWindowTokenProto.STARTING_DISPLAYED;
62import static com.android.server.wm.AppWindowTokenProto.STARTING_MOVED;
63import static com.android.server.wm.AppWindowTokenProto.STARTING_WINDOW;
64import static com.android.server.wm.AppWindowTokenProto.THUMBNAIL;
65import static com.android.server.wm.AppWindowTokenProto.WINDOW_TOKEN;
chaviw9c81e632018-07-31 11:17:52 -070066import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
67import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
68import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
69import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
70import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
71import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
72import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
73import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW_VERBOSE;
74import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
75import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
76import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
77import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
78import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
79import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
80import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
81import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
82import static com.android.server.wm.WindowManagerService.logWithStack;
Vishnu Naira2977262018-07-26 13:31:26 -070083import static com.android.server.wm.WindowStateAnimator.STACK_CLIP_AFTER_ANIM;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080084
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070085import android.annotation.CallSuper;
chaviwdcf76ec2019-01-11 16:48:46 -080086import android.annotation.Size;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020087import android.app.Activity;
Yunfan Chen1ee84ea2018-11-13 16:03:37 -080088import android.app.ActivityManager;
Winson Chung48b25652018-10-22 14:04:30 -070089import android.content.ComponentName;
Yunfan Chen1ee84ea2018-11-13 16:03:37 -080090import android.content.res.CompatibilityInfo;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070091import android.content.res.Configuration;
Jorim Jaggi988f6682017-11-17 17:46:43 +010092import android.graphics.GraphicBuffer;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020093import android.graphics.Point;
Jorim Jaggi0429f352015-12-22 16:29:16 +010094import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070095import android.os.Binder;
Tiger Huang51c5a1d2018-12-11 20:24:51 +080096import android.os.Build;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080097import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070098import android.os.IBinder;
Steven Timotiusaf03df62017-07-18 16:56:43 -070099import android.os.RemoteException;
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800100import android.os.SystemClock;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200101import android.os.Trace;
Evan Rosky2289ba12018-11-19 18:28:18 -0800102import android.util.ArraySet;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800103import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700104import android.util.proto.ProtoOutputStream;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200105import android.view.DisplayInfo;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800106import android.view.IApplicationToken;
Robert Carr788f5742018-07-30 17:46:45 -0700107import android.view.InputApplicationHandle;
Evan Rosky966759f2019-01-15 10:33:58 -0800108import android.view.RemoteAnimationAdapter;
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100109import android.view.RemoteAnimationDefinition;
Robert Carr6914f082017-03-20 19:04:30 -0700110import android.view.SurfaceControl;
Tony Mak64b8d562017-12-28 17:44:02 +0000111import android.view.SurfaceControl.Transaction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800112import android.view.WindowManager;
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +0200113import android.view.WindowManager.LayoutParams;
Tony Mak64b8d562017-12-28 17:44:02 +0000114import android.view.animation.Animation;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800115
Tony Mak64b8d562017-12-28 17:44:02 +0000116import com.android.internal.R;
Riddle Hsua118b3a2018-10-11 22:05:06 +0800117import com.android.internal.annotations.VisibleForTesting;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800118import com.android.internal.util.ToBooleanFunction;
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800119import com.android.server.AttributeCache;
chaviwdcf76ec2019-01-11 16:48:46 -0800120import com.android.server.LocalServices;
121import com.android.server.display.ColorDisplayService;
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800122import com.android.server.policy.WindowManagerPolicy;
Adrian Roose99bc052017-11-20 17:55:31 +0100123import com.android.server.policy.WindowManagerPolicy.StartingSurface;
Evan Rosky2289ba12018-11-19 18:28:18 -0800124import com.android.server.wm.RemoteAnimationController.RemoteAnimationRecord;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800125import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800126
127import java.io.PrintWriter;
chaviwdcf76ec2019-01-11 16:48:46 -0800128import java.lang.ref.WeakReference;
Jorim Jaggi0429f352015-12-22 16:29:16 +0100129import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800130import java.util.ArrayList;
lumark588a3e82018-07-20 18:53:54 +0800131import java.util.function.Consumer;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800132
133class AppTokenList extends ArrayList<AppWindowToken> {
134}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800135
136/**
137 * Version of WindowToken that is specifically for a particular application (or
138 * really activity) that is displaying windows.
139 */
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800140class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener,
141 ConfigurationContainerListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800142 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
143
Jorim Jaggi619c9f72017-12-19 18:04:29 +0100144 /**
145 * Value to increment the z-layer when boosting a layer during animations. BOOST in l33tsp34k.
146 */
147 private static final int Z_BOOST_BASE = 800570000;
148
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800149 // Non-null only for application tokens.
150 final IApplicationToken appToken;
Winson Chung48b25652018-10-22 14:04:30 -0700151 final ComponentName mActivityComponent;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800152 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700153
Wale Ogunwale51362492016-09-08 17:49:17 -0700154 /** @see WindowContainer#fillsParent() */
155 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -0800156 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800157 boolean mShowForAllUsers;
158 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -0700159
Bryce Lee6d410262017-02-28 15:30:17 -0800160 // Flag set while reparenting to prevent actions normally triggered by an individual parent
161 // change.
162 private boolean mReparenting;
163
Wale Ogunwalee287e192017-04-21 09:30:12 -0700164 // True if we are current in the process of removing this app token from the display
165 private boolean mRemovingFromDisplay = false;
166
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800167 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -0800168 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800169
170 // These are used for determining when all windows associated with
171 // an activity have been drawn, so they can be made visible together
172 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700173 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700174 private long mLastTransactionSequence = Long.MIN_VALUE;
175 private int mNumInterestingWindows;
176 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800177 boolean inPendingTransaction;
178 boolean allDrawn;
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000179 private boolean mLastAllDrawn;
180
Craig Mautner7636dfb2012-11-16 15:24:11 -0800181 // Set to true when this app creates a surface while in the middle of an animation. In that
182 // case do not clear allDrawn until the animation completes.
183 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800184
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800185 // Is this window's surface needed? This is almost like hidden, except
186 // it will sometimes be true a little earlier: when the token has
187 // been shown, but is still waiting for its app transition to execute
188 // before making its windows shown.
189 boolean hiddenRequested;
190
191 // Have we told the window clients to hide themselves?
Wale Ogunwale89973222017-04-23 18:39:45 -0700192 private boolean mClientHidden;
193
194 // If true we will defer setting mClientHidden to true and reporting to the client that it is
195 // hidden.
196 boolean mDeferHidingClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800197
198 // Last visibility state we reported to the app token.
199 boolean reportedVisible;
200
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700201 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700202 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700203
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800204 // Set to true when the token has been removed from the window mgr.
205 boolean removed;
206
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800207 // Information about an application starting window if displayed.
208 StartingData startingData;
209 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800210 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800211 boolean startingDisplayed;
212 boolean startingMoved;
Jorim Jaggi60f9c972018-02-01 19:21:07 +0100213
Wale Ogunwale6c459212017-05-17 08:56:03 -0700214 // True if the hidden state of this token was forced to false due to a transferred starting
215 // window.
216 private boolean mHiddenSetFromTransferredStartingWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800217 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700218 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
219 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800220
221 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700222 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800223
Wale Ogunwale571771c2016-08-26 13:18:50 -0700224 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800225 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800226
Craig Mautnerbb742462014-07-07 15:28:55 -0700227 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700228 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700229
Wale Ogunwale72919d22016-12-08 18:58:50 -0800230 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800231
Robert Carre12aece2016-02-02 22:43:27 -0800232 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700233 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700234 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800235
Jorim Jaggife762342016-10-13 14:33:27 +0200236 private boolean mLastContainsShowWhenLockedWindow;
237 private boolean mLastContainsDismissKeyguardWindow;
238
Jorim Jaggi0429f352015-12-22 16:29:16 +0100239 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700240 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100241
Wale Ogunwale6c459212017-05-17 08:56:03 -0700242 private boolean mDisablePreviewScreenshots;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100243
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700244 private Task mLastParent;
Robert Carred3e83b2017-04-21 13:26:55 -0700245
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800246 // TODO: Remove after unification
247 ActivityRecord mActivityRecord;
248
chaviwd3bf08d2017-08-01 17:24:59 -0700249 /**
250 * See {@link #canTurnScreenOn()}
251 */
252 private boolean mCanTurnScreenOn = true;
253
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200254 /**
255 * If we are running an animation, this determines the transition type. Must be one of
256 * AppTransition.TRANSIT_* constants.
257 */
258 private int mTransit;
259
260 /**
261 * If we are running an animation, this determines the flags during this animation. Must be a
262 * bitwise combination of AppTransition.TRANSIT_FLAG_* constants.
263 */
264 private int mTransitFlags;
265
266 /** Whether our surface was set to be showing in the last call to {@link #prepareSurfaces} */
Jorim Jaggifd1891462017-12-29 15:41:36 +0100267 private boolean mLastSurfaceShowing = true;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200268
Evan Rosky2289ba12018-11-19 18:28:18 -0800269 /**
270 * This gets used during some open/close transitions as well as during a change transition
271 * where it represents the starting-state snapshot.
272 */
Jorim Jaggi988f6682017-11-17 17:46:43 +0100273 private AppWindowThumbnail mThumbnail;
Evan Rosky2289ba12018-11-19 18:28:18 -0800274 private final Rect mTransitStartRect = new Rect();
275
276 /**
277 * This leash is used to "freeze" the app surface in place after the state change, but before
278 * the animation is ready to start.
279 */
280 private SurfaceControl mTransitChangeLeash = null;
Jorim Jaggi988f6682017-11-17 17:46:43 +0100281
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000282 /** Have we been asked to have this token keep the screen frozen? */
283 private boolean mFreezingScreen;
284
285 /** Whether this token should be boosted at the top of all app window tokens. */
286 private boolean mNeedsZBoost;
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100287 private Letterbox mLetterbox;
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000288
chaviw23ee71c2017-12-18 11:29:41 -0800289 private final Point mTmpPoint = new Point();
chaviw23012112017-12-20 15:29:04 -0800290 private final Rect mTmpRect = new Rect();
Evan Rosky2289ba12018-11-19 18:28:18 -0800291 private final Rect mTmpPrevBounds = new Rect();
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100292 private RemoteAnimationDefinition mRemoteAnimationDefinition;
Jorim Jaggi6de61012018-03-19 14:53:23 +0100293 private AnimatingAppWindowTokenRegistry mAnimatingAppWindowTokenRegistry;
chaviw23ee71c2017-12-18 11:29:41 -0800294
chaviw4ad54912018-05-30 11:05:44 -0700295 /**
296 * A flag to determine if this AWT is in the process of closing or entering PIP. This is needed
297 * to help AWT know that the app is in the process of closing but hasn't yet started closing on
298 * the WM side.
299 */
300 private boolean mWillCloseOrEnterPip;
301
Vishnu Naira2977262018-07-26 13:31:26 -0700302 /** Layer used to constrain the animation to a token's stack bounds. */
303 SurfaceControl mAnimationBoundsLayer;
304
305 /** Whether this token needs to create mAnimationBoundsLayer for cropping animations. */
306 boolean mNeedsAnimationBoundsLayer;
307
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800308 private static final int STARTING_WINDOW_TYPE_NONE = 0;
309 private static final int STARTING_WINDOW_TYPE_SNAPSHOT = 1;
310 private static final int STARTING_WINDOW_TYPE_SPLASH_SCREEN = 2;
311
chaviwdcf76ec2019-01-11 16:48:46 -0800312 private AppSaturationInfo mLastAppSaturationInfo;
313
314 private final ColorDisplayService.ColorTransformController mColorTransformController =
315 (matrix, translation) -> mWmService.mH.post(() -> {
316 synchronized (mWmService.mGlobalLock) {
317 if (mLastAppSaturationInfo == null) {
318 mLastAppSaturationInfo = new AppSaturationInfo();
319 }
320
321 mLastAppSaturationInfo.setSaturation(matrix, translation);
322 updateColorTransform();
323 }
324 });
325
Winson Chung48b25652018-10-22 14:04:30 -0700326 AppWindowToken(WindowManagerService service, IApplicationToken token,
327 ComponentName activityComponent, boolean voiceInteraction, DisplayContent dc,
328 long inputDispatchingTimeoutNanos, boolean fullscreen, boolean showForAllUsers,
329 int targetSdk, int orientation, int rotationAnimationHint, int configChanges,
330 boolean launchTaskBehind, boolean alwaysFocusable,
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800331 ActivityRecord activityRecord) {
Winson Chung48b25652018-10-22 14:04:30 -0700332 this(service, token, activityComponent, voiceInteraction, dc, fullscreen);
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800333 // TODO: remove after unification
334 mActivityRecord = activityRecord;
335 mActivityRecord.registerConfigurationChangeListener(this);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800336 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800337 mShowForAllUsers = showForAllUsers;
338 mTargetSdk = targetSdk;
339 mOrientation = orientation;
340 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
341 mLaunchTaskBehind = launchTaskBehind;
342 mAlwaysFocusable = alwaysFocusable;
343 mRotationAnimationHint = rotationAnimationHint;
344
345 // Application tokens start out hidden.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200346 setHidden(true);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800347 hiddenRequested = true;
chaviwdcf76ec2019-01-11 16:48:46 -0800348
349 ColorDisplayService.ColorDisplayServiceInternal cds = LocalServices.getService(
350 ColorDisplayService.ColorDisplayServiceInternal.class);
351 cds.attachColorTransformController(activityRecord.packageName, activityRecord.mUserId,
352 new WeakReference<>(mColorTransformController));
Wale Ogunwale72919d22016-12-08 18:58:50 -0800353 }
354
Winson Chung48b25652018-10-22 14:04:30 -0700355 AppWindowToken(WindowManagerService service, IApplicationToken token,
356 ComponentName activityComponent, boolean voiceInteraction, DisplayContent dc,
357 boolean fillsParent) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800358 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
359 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700360 appToken = token;
Winson Chung48b25652018-10-22 14:04:30 -0700361 mActivityComponent = activityComponent;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800362 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800363 mFillsParent = fillsParent;
Robert Carr0bcbe642018-10-11 19:07:43 -0700364 mInputApplicationHandle = new InputApplicationHandle(appToken.asBinder());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800365 }
366
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800367 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
368 firstWindowDrawn = true;
369
370 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700371 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800372
Jorim Jaggi02886a82016-12-06 09:10:06 -0800373 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800374 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
375 + win.mToken + ": first real window is shown, no animation");
376 // If this initial window is animating, stop it -- we will do an animation to reveal
377 // it from behind the starting window, so there is no need for it to also be doing its
378 // own stuff.
Jorim Jaggia5e10572017-11-15 14:36:26 +0100379 win.cancelAnimation();
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800380 removeStartingWindow();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800381 }
382 updateReportedVisibilityLocked();
383 }
384
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800385 void updateReportedVisibilityLocked() {
386 if (appToken == null) {
387 return;
388 }
389
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700390 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700391 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800392
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700393 mReportedVisibilityResults.reset();
394
395 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700396 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700397 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800398 }
399
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700400 int numInteresting = mReportedVisibilityResults.numInteresting;
401 int numVisible = mReportedVisibilityResults.numVisible;
402 int numDrawn = mReportedVisibilityResults.numDrawn;
403 boolean nowGone = mReportedVisibilityResults.nowGone;
404
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700405 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200406 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting && !isHidden();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700407 if (!nowGone) {
408 // If the app is not yet gone, then it can only become visible/drawn.
409 if (!nowDrawn) {
410 nowDrawn = reportedDrawn;
411 }
412 if (!nowVisible) {
413 nowVisible = reportedVisible;
414 }
415 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800416 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800417 + numInteresting + " visible=" + numVisible);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700418 if (nowDrawn != reportedDrawn) {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800419 if (mActivityRecord != null) {
420 mActivityRecord.onWindowsDrawn(nowDrawn, SystemClock.uptimeMillis());
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700421 }
422 reportedDrawn = nowDrawn;
423 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800424 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700425 if (DEBUG_VISIBILITY) Slog.v(TAG,
426 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800427 reportedVisible = nowVisible;
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800428 if (mActivityRecord != null) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800429 if (nowVisible) {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800430 onWindowsVisible();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800431 } else {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800432 onWindowsGone();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800433 }
434 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800435 }
436 }
437
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800438 private void onWindowsGone() {
439 if (mActivityRecord == null) {
440 return;
441 }
442 if (DEBUG_VISIBILITY) {
443 Slog.v(TAG_WM, "Reporting gone in " + mActivityRecord.appToken);
444 }
445 mActivityRecord.onWindowsGone();
446 }
447
448 private void onWindowsVisible() {
449 if (mActivityRecord == null) {
450 return;
451 }
452 if (DEBUG_VISIBILITY) {
453 Slog.v(TAG_WM, "Reporting visible in " + mActivityRecord.appToken);
454 }
455 mActivityRecord.onWindowsVisible();
456 }
457
Wale Ogunwale89973222017-04-23 18:39:45 -0700458 boolean isClientHidden() {
459 return mClientHidden;
460 }
461
462 void setClientHidden(boolean hideClient) {
463 if (mClientHidden == hideClient || (hideClient && mDeferHidingClient)) {
464 return;
465 }
Jorim Jaggi067b5bf2018-02-23 17:42:39 +0100466 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setClientHidden: " + this
467 + " clientHidden=" + hideClient + " Callers=" + Debug.getCallers(5));
Wale Ogunwale89973222017-04-23 18:39:45 -0700468 mClientHidden = hideClient;
469 sendAppVisibilityToClients();
470 }
471
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800472 void setVisibility(boolean visible, boolean deferHidingClient) {
473 final AppTransition appTransition = getDisplayContent().mAppTransition;
474
475 // Don't set visibility to false if we were already not visible. This prevents WM from
476 // adding the app to the closing app list which doesn't make sense for something that is
477 // already not visible. However, set visibility to true even if we are already visible.
478 // This makes sure the app is added to the opening apps list so that the right
479 // transition can be selected.
480 // TODO: Probably a good idea to separate the concept of opening/closing apps from the
481 // concept of setting visibility...
482 if (!visible && hiddenRequested) {
483
484 if (!deferHidingClient && mDeferHidingClient) {
485 // We previously deferred telling the client to hide itself when visibility was
486 // initially set to false. Now we would like it to hide, so go ahead and set it.
487 mDeferHidingClient = deferHidingClient;
488 setClientHidden(true);
489 }
490 return;
491 }
492
493 if (DEBUG_APP_TRANSITIONS || DEBUG_ORIENTATION) {
494 Slog.v(TAG_WM, "setAppVisibility("
495 + appToken + ", visible=" + visible + "): " + appTransition
496 + " hidden=" + isHidden() + " hiddenRequested="
497 + hiddenRequested + " Callers=" + Debug.getCallers(6));
498 }
499
500 final DisplayContent displayContent = getDisplayContent();
501 displayContent.mOpeningApps.remove(this);
502 displayContent.mClosingApps.remove(this);
503 waitingToShow = false;
504 hiddenRequested = !visible;
505 mDeferHidingClient = deferHidingClient;
506
507 if (!visible) {
508 // If the app is dead while it was visible, we kept its dead window on screen.
509 // Now that the app is going invisible, we can remove it. It will be restarted
510 // if made visible again.
511 removeDeadWindows();
512 } else {
513 if (!appTransition.isTransitionSet()
514 && appTransition.isReady()) {
515 // Add the app mOpeningApps if transition is unset but ready. This means
516 // we're doing a screen freeze, and the unfreeze will wait for all opening
517 // apps to be ready.
518 displayContent.mOpeningApps.add(this);
519 }
520 startingMoved = false;
521 // If the token is currently hidden (should be the common case), or has been
522 // stopped, then we need to set up to wait for its windows to be ready.
523 if (isHidden() || mAppStopped) {
524 clearAllDrawn();
525
526 // If the app was already visible, don't reset the waitingToShow state.
527 if (isHidden()) {
528 waitingToShow = true;
529 }
530 }
531
532 // In the case where we are making an app visible but holding off for a transition,
533 // we still need to tell the client to make its windows visible so they get drawn.
534 // Otherwise, we will wait on performing the transition until all windows have been
535 // drawn, they never will be, and we are sad.
536 setClientHidden(false);
537
538 requestUpdateWallpaperIfNeeded();
539
540 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM, "No longer Stopped: " + this);
541 mAppStopped = false;
542
543 transferStartingWindowFromHiddenAboveTokenIfNeeded();
544 }
545
546 // If we are preparing an app transition, then delay changing
547 // the visibility of this token until we execute that transition.
548 if (okToAnimate() && appTransition.isTransitionSet()) {
549 inPendingTransaction = true;
550 if (visible) {
551 displayContent.mOpeningApps.add(this);
552 mEnteringAnimation = true;
553 } else {
554 displayContent.mClosingApps.add(this);
555 mEnteringAnimation = false;
556 }
557 if (appTransition.getAppTransition()
558 == WindowManager.TRANSIT_TASK_OPEN_BEHIND) {
559 // We're launchingBehind, add the launching activity to mOpeningApps.
560 final WindowState win = getDisplayContent().findFocusedWindow();
561 if (win != null) {
562 final AppWindowToken focusedToken = win.mAppToken;
563 if (focusedToken != null) {
564 if (DEBUG_APP_TRANSITIONS) {
565 Slog.d(TAG_WM, "TRANSIT_TASK_OPEN_BEHIND, "
566 + " adding " + focusedToken + " to mOpeningApps");
567 }
568 // Force animation to be loaded.
569 focusedToken.setHidden(true);
570 displayContent.mOpeningApps.add(focusedToken);
571 }
572 }
573 }
574 return;
575 }
576
577 commitVisibility(null, visible, TRANSIT_UNSET, true, mVoiceInteraction);
578 updateReportedVisibilityLocked();
579 }
580
581 boolean commitVisibility(WindowManager.LayoutParams lp,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700582 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
583
584 boolean delayed = false;
585 inPendingTransaction = false;
Wale Ogunwale9e4721f2017-05-23 19:37:30 -0700586 // Reset the state of mHiddenSetFromTransferredStartingWindow since visibility is actually
587 // been set by the app now.
588 mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700589
590 // Allow for state changes and animation to be applied if:
591 // * token is transitioning visibility state
592 // * or the token was marked as hidden and is exiting before we had a chance to play the
593 // transition animation
594 // * or this is an opening app and windows are being replaced.
595 boolean visibilityChanged = false;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200596 if (isHidden() == visible || (isHidden() && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800597 final AccessibilityController accessibilityController =
598 mWmService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700599 boolean changed = false;
600 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200601 "Changing app " + this + " hidden=" + isHidden() + " performLayout=" + performLayout);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700602
603 boolean runningAppAnimation = false;
604
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100605 if (transit != WindowManager.TRANSIT_UNSET) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200606 if (applyAnimationLocked(lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700607 delayed = runningAppAnimation = true;
608 }
609 final WindowState window = findMainWindow();
Rhed Jao02655dc2018-10-30 20:44:52 +0800610 if (window != null && accessibilityController != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700611 accessibilityController.onAppWindowTransitionLocked(window, transit);
612 }
613 changed = true;
614 }
615
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700616 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700617 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700618 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700619 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700620 }
621
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200622 setHidden(!visible);
623 hiddenRequested = !visible;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700624 visibilityChanged = true;
625 if (!visible) {
626 stopFreezingScreen(true, true);
627 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700628 // If we are being set visible, and the starting window is not yet displayed,
629 // then make sure it doesn't get displayed.
630 if (startingWindow != null && !startingWindow.isDrawnLw()) {
631 startingWindow.mPolicyVisibility = false;
632 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700633 }
Jorim Jaggi38d44ec2017-06-14 16:04:59 -0700634
635 // We are becoming visible, so better freeze the screen with the windows that are
636 // getting visible so we also wait for them.
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800637 forAllWindows(mWmService::makeWindowFreezingScreenIfNeededLocked, true);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700638 }
639
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800640 if (DEBUG_APP_TRANSITIONS) {
641 Slog.v(TAG_WM, "commitVisibility: " + this
642 + ": hidden=" + isHidden() + " hiddenRequested=" + hiddenRequested);
643 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700644
645 if (changed) {
Arthur Hung95b38a92018-07-20 18:56:12 +0800646 getDisplayContent().getInputMonitor().setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700647 if (performLayout) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800648 mWmService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700649 false /*updateInputWindows*/);
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800650 mWmService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700651 }
Arthur Hung95b38a92018-07-20 18:56:12 +0800652 getDisplayContent().getInputMonitor().updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700653 }
654 }
655
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200656 if (isReallyAnimating()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700657 delayed = true;
Jorim Jaggiab9fcb22018-03-15 23:46:12 +0100658 } else {
659
660 // We aren't animating anything, but exiting windows rely on the animation finished
661 // callback being called in case the AppWindowToken was pretending to be animating,
662 // which we might have done because we were in closing/opening apps list.
663 onAnimationFinished();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700664 }
665
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700666 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Jorim Jaggia5e10572017-11-15 14:36:26 +0100667 if ((mChildren.get(i)).isSelfOrChildAnimating()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700668 delayed = true;
669 }
670 }
671
672 if (visibilityChanged) {
673 if (visible && !delayed) {
674 // The token was made immediately visible, there will be no entrance animation.
675 // We need to inform the client the enter animation was finished.
676 mEnteringAnimation = true;
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800677 mWmService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(
678 token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700679 }
Robert Carr61b81112017-07-17 18:08:15 -0700680
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800681 // If we're becoming visible, immediately change client visibility as well. there seem
682 // to be some edge cases where we change our visibility but client visibility never gets
683 // updated.
Jorim Jaggi110839b2018-01-22 12:49:04 +0100684 // If we're becoming invisible, update the client visibility if we are not running an
685 // animation. Otherwise, we'll update client visibility in onAnimationFinished.
Jorim Jaggi3cad57f2018-02-20 18:32:01 +0100686 if (visible || !isReallyAnimating()) {
Jorim Jaggi110839b2018-01-22 12:49:04 +0100687 setClientHidden(!visible);
Jorim Jaggi4876b4a2018-01-11 15:43:49 +0100688 }
689
lumark588a3e82018-07-20 18:53:54 +0800690 if (!getDisplayContent().mClosingApps.contains(this)
691 && !getDisplayContent().mOpeningApps.contains(this)) {
chaviwa953fcf2018-03-01 12:00:39 -0800692 // The token is not closing nor opening, so even if there is an animation set, that
693 // doesn't mean that it goes through the normal app transition cycle so we have
694 // to inform the docked controller about visibility change.
695 // TODO(multi-display): notify docked divider on all displays where visibility was
696 // affected.
lumark588a3e82018-07-20 18:53:54 +0800697 getDisplayContent().getDockedDividerController().notifyAppVisibilityChanged();
chaviwa953fcf2018-03-01 12:00:39 -0800698
699 // Take the screenshot before possibly hiding the WSA, otherwise the screenshot
700 // will not be taken.
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800701 mWmService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
chaviwa953fcf2018-03-01 12:00:39 -0800702 }
703
Robert Carre7cc44d2017-03-20 19:04:30 -0700704 // If we are hidden but there is no delay needed we immediately
705 // apply the Surface transaction so that the ActivityManager
Robert Carr61b81112017-07-17 18:08:15 -0700706 // can have some guarantee on the Surface state following
707 // setting the visibility. This captures cases like dismissing
708 // the docked or pinned stack where there is no app transition.
709 //
710 // In the case of a "Null" animation, there will be
711 // no animation but there will still be a transition set.
712 // We still need to delay hiding the surface such that it
713 // can be synchronized with showing the next surface in the transition.
lumark588a3e82018-07-20 18:53:54 +0800714 if (isHidden() && !delayed && !getDisplayContent().mAppTransition.isTransitionSet()) {
Robert Carr6914f082017-03-20 19:04:30 -0700715 SurfaceControl.openTransaction();
716 for (int i = mChildren.size() - 1; i >= 0; i--) {
717 mChildren.get(i).mWinAnimator.hide("immediately hidden");
718 }
719 SurfaceControl.closeTransaction();
720 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700721 }
722
723 return delayed;
724 }
725
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +0200726 /**
727 * @return The to top most child window for which {@link LayoutParams#isFullscreen()} returns
728 * true.
729 */
730 WindowState getTopFullscreenWindow() {
731 for (int i = mChildren.size() - 1; i >= 0; i--) {
732 final WindowState win = mChildren.get(i);
733 if (win != null && win.mAttrs.isFullscreen()) {
734 return win;
735 }
736 }
737 return null;
738 }
739
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800740 WindowState findMainWindow() {
Matthew Ng53e66b22018-01-12 17:13:13 -0800741 return findMainWindow(true);
742 }
743
744 /**
745 * Finds the main window that either has type base application or application starting if
746 * requested.
747 *
748 * @param includeStartingApp Allow to search application-starting windows to also be returned.
749 * @return The main window of type base application or application starting if requested.
750 */
751 WindowState findMainWindow(boolean includeStartingApp) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700752 WindowState candidate = null;
Matthew Ng53e66b22018-01-12 17:13:13 -0800753 for (int j = mChildren.size() - 1; j >= 0; --j) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700754 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700755 final int type = win.mAttrs.type;
756 // No need to loop through child window as base application and starting types can't be
757 // child windows.
Matthew Ng53e66b22018-01-12 17:13:13 -0800758 if (type == TYPE_BASE_APPLICATION
759 || (includeStartingApp && type == TYPE_APPLICATION_STARTING)) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700760 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900761 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700762 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800763 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700764 candidate = win;
765 } else {
766 return win;
767 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800768 }
769 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700770 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800771 }
772
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800773 boolean windowsAreFocusable() {
Tiger Huang51c5a1d2018-12-11 20:24:51 +0800774 if (mTargetSdk < Build.VERSION_CODES.Q) {
775 final int pid = mActivityRecord != null
776 ? (mActivityRecord.app != null ? mActivityRecord.app.getPid() : 0) : 0;
777 final AppWindowToken topFocusedAppOfMyProcess =
778 mWmService.mRoot.mTopFocusedAppByProcess.get(pid);
779 if (topFocusedAppOfMyProcess != null && topFocusedAppOfMyProcess != this) {
780 // For the apps below Q, there can be only one app which has the focused window per
781 // process, because legacy apps may not be ready for a multi-focus system.
782 return false;
783 }
784 }
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700785 return getWindowConfiguration().canReceiveKeys() || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800786 }
787
Wale Ogunwale571771c2016-08-26 13:18:50 -0700788 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700789 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700790 // If the app token isn't hidden then it is considered visible and there is no need to check
791 // its children windows to see if they are visible.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200792 return !isHidden();
Wale Ogunwale44f21802016-09-02 12:49:48 -0700793 }
794
795 @Override
Wale Ogunwalee287e192017-04-21 09:30:12 -0700796 void removeImmediately() {
797 onRemovedFromDisplay();
Yunfan Chen3a77f282018-12-12 15:47:52 -0800798 if (mActivityRecord != null) {
799 mActivityRecord.unregisterConfigurationChangeListener(this);
800 }
Wale Ogunwalee287e192017-04-21 09:30:12 -0700801 super.removeImmediately();
802 }
803
804 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700805 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800806 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800807 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800808 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800809 }
810
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700811 @Override
812 boolean checkCompleteDeferredRemoval() {
813 if (mIsExiting) {
814 removeIfPossible();
815 }
816 return super.checkCompleteDeferredRemoval();
817 }
818
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700819 void onRemovedFromDisplay() {
Wale Ogunwalee287e192017-04-21 09:30:12 -0700820 if (mRemovingFromDisplay) {
821 return;
822 }
823 mRemovingFromDisplay = true;
824
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700825 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
826
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800827 boolean delayed = commitVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700828
lumark588a3e82018-07-20 18:53:54 +0800829 getDisplayContent().mOpeningApps.remove(this);
Evan Rosky2289ba12018-11-19 18:28:18 -0800830 getDisplayContent().mChangingApps.remove(this);
lumark588a3e82018-07-20 18:53:54 +0800831 getDisplayContent().mUnknownAppVisibilityController.appRemovedOrHidden(this);
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800832 mWmService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700833 waitingToShow = false;
lumark588a3e82018-07-20 18:53:54 +0800834 if (getDisplayContent().mClosingApps.contains(this)) {
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700835 delayed = true;
lumark588a3e82018-07-20 18:53:54 +0800836 } else if (getDisplayContent().mAppTransition.isTransitionSet()) {
837 getDisplayContent().mClosingApps.add(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700838 delayed = true;
839 }
840
841 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200842 + " animation=" + getAnimation() + " animating=" + isSelfAnimating());
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700843
844 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
845 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
846
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800847 if (startingData != null) {
848 removeStartingWindow();
Jorim Jaggi19be6052017-08-03 18:33:43 +0200849 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800850
Winson Chung87e5d552017-04-05 11:49:38 -0700851 // If this window was animating, then we need to ensure that the app transition notifies
lumark588a3e82018-07-20 18:53:54 +0800852 // that animations have completed in DisplayContent.handleAnimatingStoppedAndTransition(),
853 // so add to that list now
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200854 if (isSelfAnimating()) {
lumark588a3e82018-07-20 18:53:54 +0800855 getDisplayContent().mNoAnimationNotifyOnTransitionFinished.add(token);
Winson Chung87e5d552017-04-05 11:49:38 -0700856 }
857
Wale Ogunwalee287e192017-04-21 09:30:12 -0700858 final TaskStack stack = getStack();
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700859 if (delayed && !isEmpty()) {
860 // set the token aside because it has an active animation to be finished
861 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
862 "removeAppToken make exiting: " + this);
Wale Ogunwalee287e192017-04-21 09:30:12 -0700863 if (stack != null) {
864 stack.mExitingAppTokens.add(this);
865 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700866 mIsExiting = true;
867 } else {
868 // Make sure there is no animation running on this token, so any windows associated
869 // with it will be removed as soon as their animations are complete
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200870 cancelAnimation();
Wale Ogunwale3106ae012017-05-16 08:56:37 -0700871 if (stack != null) {
872 stack.mExitingAppTokens.remove(this);
873 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700874 removeIfPossible();
875 }
876
877 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700878 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800879
Tiger Huang1e5b10a2018-07-30 20:19:51 +0800880 final DisplayContent dc = getDisplayContent();
881 if (dc.mFocusedApp == this) {
882 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this
883 + " displayId=" + dc.getDisplayId());
884 dc.setFocusedApp(null);
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800885 mWmService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700886 }
887
888 if (!delayed) {
889 updateReportedVisibilityLocked();
890 }
Wale Ogunwalee287e192017-04-21 09:30:12 -0700891
892 mRemovingFromDisplay = false;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700893 }
894
Chong Zhange05bcb12016-07-26 17:47:29 -0700895 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700896 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700897 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700898 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700899 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700900 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700901 if (wallpaperMightChange) {
902 requestUpdateWallpaperIfNeeded();
903 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700904 }
905
Robert Carre12aece2016-02-02 22:43:27 -0800906 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700907 destroySurfaces(false /*cleanupOnResume*/);
908 }
909
910 /**
911 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
912 * the client has finished with them.
913 *
914 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
915 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
916 * others so that they are ready to be reused. If set to false (common case), destroy all
917 * surfaces that's eligible, if the app is already stopped.
918 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700919 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700920 boolean destroyedSomething = false;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100921
922 // Copying to a different list as multiple children can be removed.
Jorim Jaggi59f3e922018-01-05 15:40:32 +0100923 final ArrayList<WindowState> children = new ArrayList<>(mChildren);
Jorim Jaggia5e10572017-11-15 14:36:26 +0100924 for (int i = children.size() - 1; i >= 0; i--) {
925 final WindowState win = children.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700926 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800927 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700928 if (destroyedSomething) {
929 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700930 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Adrian Roos23df3a32018-03-15 15:41:13 +0100931 updateLetterboxSurface(null);
Robert Carre12aece2016-02-02 22:43:27 -0800932 }
933 }
934
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800935 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700936 * Notify that the app is now resumed, and it was not stopped before, perform a clean
937 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800938 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700939 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700940 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700941 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700942 mAppStopped = false;
chaviwd3bf08d2017-08-01 17:24:59 -0700943 // Allow the window to turn the screen on once the app is resumed again.
944 setCanTurnScreenOn(true);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700945 if (!wasStopped) {
946 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800947 }
Robert Carre12aece2016-02-02 22:43:27 -0800948 }
949
Chong Zhangbef461f2015-10-27 11:38:24 -0700950 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700951 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
952 * keeping alive in case they were still being used.
953 */
954 void notifyAppStopped() {
955 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
956 mAppStopped = true;
957 destroySurfaces();
958 // Remove any starting window that was added for this app if they are still around.
Yunfan Chen1ee84ea2018-11-13 16:03:37 -0800959 removeStartingWindow();
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700960 }
961
Chong Zhang92147042016-05-09 12:47:11 -0700962 void clearAllDrawn() {
963 allDrawn = false;
964 deferClearAllDrawn = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700965 }
966
Bryce Lee6d410262017-02-28 15:30:17 -0800967 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800968 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800969 }
970
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800971 TaskStack getStack() {
972 final Task task = getTask();
973 if (task != null) {
974 return task.mStack;
975 } else {
976 return null;
977 }
978 }
979
Bryce Lee6d410262017-02-28 15:30:17 -0800980 @Override
Riddle Hsu3a4bb612019-01-31 00:02:22 +0800981 void onParentChanged() {
982 super.onParentChanged();
Bryce Lee6d410262017-02-28 15:30:17 -0800983
Robert Carred3e83b2017-04-21 13:26:55 -0700984 final Task task = getTask();
985
Bryce Lee6d410262017-02-28 15:30:17 -0800986 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
987 // access visual elements like the {@link DisplayContent}. We must remove any associations
988 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800989 if (!mReparenting) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800990 if (task == null) {
991 // It is possible we have been marked as a closing app earlier. We must remove ourselves
992 // from this list so we do not participate in any future animations.
lumark588a3e82018-07-20 18:53:54 +0800993 getDisplayContent().mClosingApps.remove(this);
Robert Carred3e83b2017-04-21 13:26:55 -0700994 } else if (mLastParent != null && mLastParent.mStack != null) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800995 task.mStack.mExitingAppTokens.remove(this);
996 }
Bryce Lee6d410262017-02-28 15:30:17 -0800997 }
Jorim Jaggi6de61012018-03-19 14:53:23 +0100998 final TaskStack stack = getStack();
999
1000 // If we reparent, make sure to remove ourselves from the old animation registry.
1001 if (mAnimatingAppWindowTokenRegistry != null) {
1002 mAnimatingAppWindowTokenRegistry.notifyFinished(this);
1003 }
1004 mAnimatingAppWindowTokenRegistry = stack != null
1005 ? stack.getAnimatingAppWindowTokenRegistry()
1006 : null;
1007
Robert Carred3e83b2017-04-21 13:26:55 -07001008 mLastParent = task;
chaviwdcf76ec2019-01-11 16:48:46 -08001009
1010 updateColorTransform();
Bryce Lee6d410262017-02-28 15:30:17 -08001011 }
1012
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001013 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001014 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001015 if (startingWindow == win) {
1016 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001017 removeStartingWindow();
Wale Ogunwale6c459212017-05-17 08:56:03 -07001018 } else if (mChildren.size() == 0) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001019 // If this is the last window and we had requested a starting transition window,
1020 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -08001021 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001022 startingData = null;
Wale Ogunwale6c459212017-05-17 08:56:03 -07001023 if (mHiddenSetFromTransferredStartingWindow) {
1024 // We set the hidden state to false for the token from a transferred starting window.
1025 // We now reset it back to true since the starting window was the last window in the
1026 // token.
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001027 setHidden(true);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001028 }
Jorim Jaggi829b9cd2017-01-23 16:20:53 +01001029 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001030 // If this is the last window except for a starting transition window,
1031 // we need to get rid of the starting transition.
Jorim Jaggie4b0f282017-05-17 15:10:29 +02001032 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Last window, removing starting window "
1033 + win);
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001034 removeStartingWindow();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001035 }
1036 }
1037
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001038 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001039 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001040 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -08001041 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001042 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001043 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -08001044 // Set mDestroying, we don't want any animation or delayed removal here.
1045 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001046 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001047 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -08001048 }
1049 }
1050 }
1051
Wale Ogunwalee42d0e12016-05-02 16:40:59 -07001052 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001053 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001054 // No need to loop through child windows as the answer should be the same as that of the
1055 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001056 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -07001057 return true;
1058 }
1059 }
1060 return false;
1061 }
1062
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001063 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -07001064 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
1065 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -08001066
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001067 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001068 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001069 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -08001070 }
Robert Carra1eb4392015-12-10 12:43:51 -08001071 }
1072
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001073 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -07001074 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -08001075 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001076 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001077 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001078 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -08001079 }
1080 }
1081
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001082 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -07001083 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
1084 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -08001085
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001086 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001087 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001088 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -08001089 }
1090 }
1091
Chong Zhang4d7369a2016-04-25 16:09:14 -07001092 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001093 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001094 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -07001095 w.requestUpdateWallpaperIfNeeded();
1096 }
1097 }
1098
Chong Zhangd78ddb42016-03-02 17:01:14 -08001099 boolean isRelaunching() {
1100 return mPendingRelaunchCount > 0;
1101 }
1102
Robert Carr68375192017-06-13 12:41:53 -07001103 boolean shouldFreezeBounds() {
1104 final Task task = getTask();
1105
1106 // For freeform windows, we can't freeze the bounds at the moment because this would make
1107 // the resizing unresponsive.
Wale Ogunwale44f036f2017-09-29 05:09:09 -07001108 if (task == null || task.inFreeformWindowingMode()) {
Robert Carr68375192017-06-13 12:41:53 -07001109 return false;
1110 }
1111
1112 // We freeze the bounds while drag resizing to deal with the time between
1113 // the divider/drag handle being released, and the handling it's new
1114 // configuration. If we are relaunched outside of the drag resizing state,
1115 // we need to be careful not to do this.
1116 return getTask().isDragResizing();
1117 }
1118
Chong Zhangd78ddb42016-03-02 17:01:14 -08001119 void startRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -07001120 if (shouldFreezeBounds()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001121 freezeBounds();
1122 }
Robert Carrd5c7dd62017-03-08 10:39:30 -08001123
1124 // In the process of tearing down before relaunching, the app will
1125 // try and clean up it's child surfaces. We need to prevent this from
1126 // happening, so we sever the children, transfering their ownership
1127 // from the client it-self to the parent surface (owned by us).
Robert Carr29daa922018-04-27 11:56:48 -07001128 detachChildren();
1129
1130 mPendingRelaunchCount++;
1131 }
1132
1133 void detachChildren() {
Robert Carrfd8e93b2018-05-10 13:40:25 -07001134 SurfaceControl.openTransaction();
Robert Carrd5c7dd62017-03-08 10:39:30 -08001135 for (int i = mChildren.size() - 1; i >= 0; i--) {
1136 final WindowState w = mChildren.get(i);
1137 w.mWinAnimator.detachChildren();
1138 }
Robert Carrfd8e93b2018-05-10 13:40:25 -07001139 SurfaceControl.closeTransaction();
Chong Zhangd78ddb42016-03-02 17:01:14 -08001140 }
1141
1142 void finishRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -07001143 unfreezeBounds();
1144
Chong Zhangd78ddb42016-03-02 17:01:14 -08001145 if (mPendingRelaunchCount > 0) {
1146 mPendingRelaunchCount--;
Bryce Lee081554b2017-05-25 07:52:12 -07001147 } else {
1148 // Update keyguard flags upon finishing relaunch.
1149 checkKeyguardFlagsChanged();
Chong Zhangd78ddb42016-03-02 17:01:14 -08001150 }
1151 }
1152
Wale Ogunwale8fd75422016-06-24 14:20:37 -07001153 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001154 if (mPendingRelaunchCount == 0) {
1155 return;
1156 }
Robert Carr68375192017-06-13 12:41:53 -07001157 unfreezeBounds();
Wale Ogunwale8fd75422016-06-24 14:20:37 -07001158 mPendingRelaunchCount = 0;
1159 }
1160
Wale Ogunwale07bcab72016-10-14 15:30:09 -07001161 /**
1162 * Returns true if the new child window we are adding to this token is considered greater than
1163 * the existing child window in this token in terms of z-order.
1164 */
1165 @Override
1166 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
1167 WindowState existingWindow) {
1168 final int type1 = newWindow.mAttrs.type;
1169 final int type2 = existingWindow.mAttrs.type;
1170
1171 // Base application windows should be z-ordered BELOW all other windows in the app token.
1172 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
1173 return false;
1174 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
1175 return true;
1176 }
1177
1178 // Starting windows should be z-ordered ABOVE all other windows in the app token.
1179 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
1180 return true;
1181 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
1182 return false;
1183 }
1184
1185 // Otherwise the new window is greater than the existing window.
1186 return true;
1187 }
1188
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001189 @Override
Robert Carra1eb4392015-12-10 12:43:51 -08001190 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001191 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001192
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001193 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001194 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001195 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001196 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
1197 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001198
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001199 // if we got a replacement window, reset the timeout to give drawing more time
1200 if (gotReplacementWindow) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001201 mWmService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -08001202 }
Jorim Jaggife762342016-10-13 14:33:27 +02001203 checkKeyguardFlagsChanged();
1204 }
1205
1206 @Override
1207 void removeChild(WindowState child) {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001208 if (!mChildren.contains(child)) {
1209 // This can be true when testing.
1210 return;
1211 }
Jorim Jaggife762342016-10-13 14:33:27 +02001212 super.removeChild(child);
1213 checkKeyguardFlagsChanged();
Adrian Roos23df3a32018-03-15 15:41:13 +01001214 updateLetterboxSurface(child);
Robert Carra1eb4392015-12-10 12:43:51 -08001215 }
1216
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001217 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001218 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001219 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001220 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -08001221 return true;
1222 }
1223 }
1224 return false;
1225 }
1226
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001227 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001228 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001229 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -08001230 }
1231 }
1232
Yunfan Chen0e7aff92018-12-05 16:35:32 -08001233 void reparent(Task task, int position) {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001234 if (DEBUG_ADD_REMOVE) {
1235 Slog.i(TAG_WM, "reparent: moving app token=" + this
Yunfan Chen0e7aff92018-12-05 16:35:32 -08001236 + " to task=" + task.mTaskId + " at " + position);
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001237 }
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001238 if (task == null) {
Yunfan Chen0e7aff92018-12-05 16:35:32 -08001239 throw new IllegalArgumentException("reparent: could not find task");
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001240 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001241 final Task currentTask = getTask();
1242 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -08001243 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001244 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001245 }
Bryce Lee6d410262017-02-28 15:30:17 -08001246
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001247 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -08001248 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001249 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -08001250 + " belongs to a different stack than " + task);
1251 }
1252
Winson Chung30480042017-01-26 10:55:34 -08001253 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001254 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001255 final DisplayContent prevDisplayContent = getDisplayContent();
1256
Bryce Lee6d410262017-02-28 15:30:17 -08001257 mReparenting = true;
1258
Winson Chung30480042017-01-26 10:55:34 -08001259 getParent().removeChild(this);
1260 task.addChild(this, position);
1261
Bryce Lee6d410262017-02-28 15:30:17 -08001262 mReparenting = false;
1263
Winson Chung30480042017-01-26 10:55:34 -08001264 // Relayout display(s).
1265 final DisplayContent displayContent = task.getDisplayContent();
1266 displayContent.setLayoutNeeded();
1267 if (prevDisplayContent != displayContent) {
1268 onDisplayChanged(displayContent);
1269 prevDisplayContent.setLayoutNeeded();
1270 }
Yunfan Chen0e7aff92018-12-05 16:35:32 -08001271 getDisplayContent().layoutAndAssignWindowLayersIfNeeded();
Winson Chung30480042017-01-26 10:55:34 -08001272 }
1273
Tiger Huang1e5b10a2018-07-30 20:19:51 +08001274 @Override
1275 void onDisplayChanged(DisplayContent dc) {
1276 DisplayContent prevDc = mDisplayContent;
1277 super.onDisplayChanged(dc);
Evan Rosky25b56192019-02-06 16:10:56 -08001278 if (prevDc == null) {
1279 return;
1280 }
1281 if (prevDc.mChangingApps.contains(this)) {
1282 // This gets called *after* the AppWindowToken has been reparented to the new display.
1283 // That reparenting resulted in this window changing modes (eg. FREEFORM -> FULLSCREEN),
1284 // so this token is now "frozen" while waiting for the animation to start on prevDc
1285 // (which will be cancelled since the window is no-longer a child). However, since this
1286 // is no longer a child of prevDc, this won't be notified of the cancelled animation,
1287 // so we need to cancel the change transition here.
1288 clearChangeLeash(getPendingTransaction(), true /* cancel */);
1289 }
1290 if (prevDc.mFocusedApp == this) {
Tiger Huang1e5b10a2018-07-30 20:19:51 +08001291 prevDc.setFocusedApp(null);
lumarkbf844642018-11-23 17:11:36 +08001292 final TaskStack stack = dc.getTopStack();
1293 if (stack != null) {
1294 final Task task = stack.getTopChild();
1295 if (task != null && task.getTopChild() == this) {
1296 dc.setFocusedApp(this);
1297 }
Tiger Huang1e5b10a2018-07-30 20:19:51 +08001298 }
1299 }
1300 }
1301
Jorim Jaggi0429f352015-12-22 16:29:16 +01001302 /**
1303 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
1304 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
1305 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
1306 * with a queue.
1307 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001308 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001309 final Task task = getTask();
1310 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001311
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001312 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001313 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001314 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001315 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001316 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001317 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001318 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001319 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001320 }
1321
1322 /**
1323 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1324 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001325 private void unfreezeBounds() {
Robert Carr68375192017-06-13 12:41:53 -07001326 if (mFrozenBounds.isEmpty()) {
1327 return;
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001328 }
Robert Carr68375192017-06-13 12:41:53 -07001329 mFrozenBounds.remove();
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001330 if (!mFrozenMergedConfig.isEmpty()) {
1331 mFrozenMergedConfig.remove();
1332 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001333 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001334 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001335 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001336 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001337 mWmService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001338 }
1339
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001340 void setAppLayoutChanges(int changes, String reason) {
1341 if (!mChildren.isEmpty()) {
1342 final DisplayContent dc = getDisplayContent();
1343 dc.pendingLayoutChanges |= changes;
1344 if (DEBUG_LAYOUT_REPEATS) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001345 mWmService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001346 }
1347 }
1348 }
1349
1350 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001351 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001352 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001353 if (win.removeReplacedWindowIfNeeded(replacement)) {
1354 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001355 }
1356 }
1357 }
1358
1359 void startFreezingScreen() {
1360 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001361 + isHidden() + " freezing=" + mFreezingScreen + " hiddenRequested="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001362 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001363 if (!hiddenRequested) {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001364 if (!mFreezingScreen) {
1365 mFreezingScreen = true;
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001366 mWmService.registerAppFreezeListener(this);
1367 mWmService.mAppsFreezingScreen++;
1368 if (mWmService.mAppsFreezingScreen == 1) {
1369 mWmService.startFreezingDisplayLocked(0, 0, getDisplayContent());
1370 mWmService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1371 mWmService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001372 }
1373 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001374 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001375 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001376 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001377 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001378 }
1379 }
1380 }
1381
1382 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001383 if (!mFreezingScreen) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001384 return;
1385 }
1386 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001387 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001388 boolean unfrozeWindows = false;
1389 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001390 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001391 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001392 }
1393 if (force || unfrozeWindows) {
1394 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001395 mFreezingScreen = false;
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001396 mWmService.unregisterAppFreezeListener(this);
1397 mWmService.mAppsFreezingScreen--;
1398 mWmService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001399 }
1400 if (unfreezeSurfaceNow) {
1401 if (unfrozeWindows) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001402 mWmService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001403 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001404 mWmService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001405 }
1406 }
1407
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001408 @Override
1409 public void onAppFreezeTimeout() {
1410 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1411 stopFreezingScreen(true, true);
1412 }
1413
Jorim Jaggi60f9c972018-02-01 19:21:07 +01001414 /**
1415 * Tries to transfer the starting window from a token that's above ourselves in the task but
1416 * not visible anymore. This is a common scenario apps use: Trampoline activity T start main
1417 * activity M in the same task. Now, when reopening the task, T starts on top of M but then
1418 * immediately finishes after, so we have to transfer T to M.
1419 */
1420 void transferStartingWindowFromHiddenAboveTokenIfNeeded() {
1421 final Task task = getTask();
1422 for (int i = task.mChildren.size() - 1; i >= 0; i--) {
1423 final AppWindowToken fromToken = task.mChildren.get(i);
1424 if (fromToken == this) {
1425 return;
1426 }
1427 if (fromToken.hiddenRequested && transferStartingWindow(fromToken.token)) {
1428 return;
1429 }
1430 }
1431 }
1432
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001433 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001434 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001435 if (fromToken == null) {
1436 return false;
1437 }
1438
1439 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001440 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001441 // In this case, the starting icon has already been displayed, so start
1442 // letting windows get shown immediately without any more transitions.
lumark588a3e82018-07-20 18:53:54 +08001443 getDisplayContent().mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001444
1445 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1446 + " from " + fromToken + " to " + this);
1447
1448 final long origId = Binder.clearCallingIdentity();
Peter Visontay3556a3b2017-11-01 17:23:17 +00001449 try {
1450 // Transfer the starting window over to the new token.
1451 startingData = fromToken.startingData;
1452 startingSurface = fromToken.startingSurface;
1453 startingDisplayed = fromToken.startingDisplayed;
1454 fromToken.startingDisplayed = false;
1455 startingWindow = tStartingWindow;
1456 reportedVisible = fromToken.reportedVisible;
1457 fromToken.startingData = null;
1458 fromToken.startingSurface = null;
1459 fromToken.startingWindow = null;
1460 fromToken.startingMoved = true;
1461 tStartingWindow.mToken = this;
1462 tStartingWindow.mAppToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001463
Peter Visontay3556a3b2017-11-01 17:23:17 +00001464 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1465 "Removing starting " + tStartingWindow + " from " + fromToken);
1466 fromToken.removeChild(tStartingWindow);
1467 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
1468 fromToken.mHiddenSetFromTransferredStartingWindow = false;
1469 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001470
Peter Visontay3556a3b2017-11-01 17:23:17 +00001471 // Propagate other interesting state between the tokens. If the old token is displayed,
1472 // we should immediately force the new one to be displayed. If it is animating, we need
1473 // to move that animation to the new one.
1474 if (fromToken.allDrawn) {
1475 allDrawn = true;
1476 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1477 }
1478 if (fromToken.firstWindowDrawn) {
1479 firstWindowDrawn = true;
1480 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001481 if (!fromToken.isHidden()) {
1482 setHidden(false);
Peter Visontay3556a3b2017-11-01 17:23:17 +00001483 hiddenRequested = false;
1484 mHiddenSetFromTransferredStartingWindow = true;
1485 }
1486 setClientHidden(fromToken.mClientHidden);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001487
Jorim Jaggi980c9de2017-11-17 01:41:37 +01001488 transferAnimation(fromToken);
1489
1490 // When transferring an animation, we no longer need to apply an animation to the
1491 // the token we transfer the animation over. Thus, remove the animation from
1492 // pending opening apps.
lumark588a3e82018-07-20 18:53:54 +08001493 getDisplayContent().mOpeningApps.remove(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001494
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001495 mWmService.updateFocusedWindowLocked(
Peter Visontay3556a3b2017-11-01 17:23:17 +00001496 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
1497 getDisplayContent().setLayoutNeeded();
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001498 mWmService.mWindowPlacerLocked.performSurfacePlacement();
Peter Visontay3556a3b2017-11-01 17:23:17 +00001499 } finally {
1500 Binder.restoreCallingIdentity(origId);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001501 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001502 return true;
1503 } else if (fromToken.startingData != null) {
1504 // The previous app was getting ready to show a
1505 // starting window, but hasn't yet done so. Steal it!
1506 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1507 "Moving pending starting from " + fromToken + " to " + this);
1508 startingData = fromToken.startingData;
1509 fromToken.startingData = null;
1510 fromToken.startingMoved = true;
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001511 scheduleAddStartingWindow();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001512 return true;
1513 }
1514
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001515 // TODO: Transfer thumbnail
1516
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001517 return false;
1518 }
1519
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001520 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001521 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001522 }
1523
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001524 @Override
1525 void onAppTransitionDone() {
1526 sendingToBottom = false;
1527 }
1528
Wale Ogunwale51362492016-09-08 17:49:17 -07001529 /**
1530 * We override because this class doesn't want its children affecting its reported orientation
1531 * in anyway.
1532 */
1533 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001534 int getOrientation(int candidate) {
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001535 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1536 // Allow app to specify orientation regardless of its visibility state if the current
1537 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1538 // wants us to use the orientation of the app behind it.
1539 return mOrientation;
1540 }
1541
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001542 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1543 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1544 // an Activity in another task being started in the wrong orientation during the transition.
lumark588a3e82018-07-20 18:53:54 +08001545 if (!(sendingToBottom || getDisplayContent().mClosingApps.contains(this))
1546 && (isVisible() || getDisplayContent().mOpeningApps.contains(this))) {
Bryce Leea163b762017-01-24 11:05:01 -08001547 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001548 }
Bryce Leea163b762017-01-24 11:05:01 -08001549
1550 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001551 }
1552
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001553 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1554 int getOrientationIgnoreVisibility() {
1555 return mOrientation;
1556 }
1557
Craig Mautnerdbb79912012-03-01 18:59:14 -08001558 @Override
Winson Chunge55c0192017-08-24 14:50:48 -07001559 public void onConfigurationChanged(Configuration newParentConfig) {
1560 final int prevWinMode = getWindowingMode();
Evan Rosky2289ba12018-11-19 18:28:18 -08001561 mTmpPrevBounds.set(getBounds());
Winson Chunge55c0192017-08-24 14:50:48 -07001562 super.onConfigurationChanged(newParentConfig);
1563 final int winMode = getWindowingMode();
1564
1565 if (prevWinMode == winMode) {
1566 return;
1567 }
1568
1569 if (prevWinMode != WINDOWING_MODE_UNDEFINED && winMode == WINDOWING_MODE_PINNED) {
1570 // Entering PiP from fullscreen, reset the snap fraction
1571 mDisplayContent.mPinnedStackControllerLocked.resetReentrySnapFraction(this);
Winson Chung82267ce2018-04-06 16:38:26 -07001572 } else if (prevWinMode == WINDOWING_MODE_PINNED && winMode != WINDOWING_MODE_UNDEFINED
1573 && !isHidden()) {
Winson Chunge55c0192017-08-24 14:50:48 -07001574 // Leaving PiP to fullscreen, save the snap fraction based on the pre-animation bounds
1575 // for the next re-entry into PiP (assuming the activity is not hidden or destroyed)
1576 final TaskStack pinnedStack = mDisplayContent.getPinnedStack();
1577 if (pinnedStack != null) {
Winson Chung8efa1652018-06-06 09:34:23 -07001578 final Rect stackBounds;
1579 if (pinnedStack.lastAnimatingBoundsWasToFullscreen()) {
1580 // We are animating the bounds, use the pre-animation bounds to save the snap
1581 // fraction
1582 stackBounds = pinnedStack.mPreAnimationBounds;
1583 } else {
1584 // We skip the animation if the fullscreen configuration is not compatible, so
1585 // use the current bounds to calculate the saved snap fraction instead
1586 // (see PinnedActivityStack.skipResizeAnimation())
1587 stackBounds = mTmpRect;
1588 pinnedStack.getBounds(stackBounds);
1589 }
Winson Chunge55c0192017-08-24 14:50:48 -07001590 mDisplayContent.mPinnedStackControllerLocked.saveReentrySnapFraction(this,
Winson Chung8efa1652018-06-06 09:34:23 -07001591 stackBounds);
Winson Chunge55c0192017-08-24 14:50:48 -07001592 }
Evan Rosky2289ba12018-11-19 18:28:18 -08001593 } else if (shouldStartChangeTransition(prevWinMode, winMode)) {
1594 initializeChangeTransition(mTmpPrevBounds);
Winson Chunge55c0192017-08-24 14:50:48 -07001595 }
1596 }
1597
Evan Rosky2289ba12018-11-19 18:28:18 -08001598 private boolean shouldStartChangeTransition(int prevWinMode, int newWinMode) {
Evan Rosky25b56192019-02-06 16:10:56 -08001599 if (mWmService.mDisableTransitionAnimation
1600 || !isVisible()
1601 || getDisplayContent().mAppTransition.isTransitionSet()
1602 || getSurfaceControl() == null) {
Evan Rosky2289ba12018-11-19 18:28:18 -08001603 return false;
1604 }
1605 // Only do an animation into and out-of freeform mode for now. Other mode
1606 // transition animations are currently handled by system-ui.
1607 return (prevWinMode == WINDOWING_MODE_FREEFORM) != (newWinMode == WINDOWING_MODE_FREEFORM);
1608 }
1609
1610 /**
1611 * Initializes a change transition. Because the app is visible already, there is a small period
1612 * of time where the user can see the app content/window update before the transition starts.
1613 * To prevent this, we immediately take a snapshot and place the app/snapshot into a leash which
1614 * "freezes" the location/crop until the transition starts.
1615 * <p>
1616 * Here's a walk-through of the process:
1617 * 1. Create a temporary leash ("interim-change-leash") and reparent the app to it.
1618 * 2. Set the temporary leash's position/crop to the current state.
1619 * 3. Create a snapshot and place that at the top of the leash to cover up content changes.
1620 * 4. Once the transition is ready, it will reparent the app to the animation leash.
1621 * 5. Detach the interim-change-leash.
1622 */
1623 private void initializeChangeTransition(Rect startBounds) {
1624 mDisplayContent.prepareAppTransition(TRANSIT_TASK_CHANGE_WINDOWING_MODE,
1625 false /* alwaysKeepCurrent */, 0, false /* forceOverride */);
1626 mDisplayContent.mChangingApps.add(this);
1627 mTransitStartRect.set(startBounds);
1628
1629 final SurfaceControl.Builder builder = makeAnimationLeash()
1630 .setParent(getAnimationLeashParent())
1631 .setName(getSurfaceControl() + " - interim-change-leash");
1632 mTransitChangeLeash = builder.build();
1633 Transaction t = getPendingTransaction();
1634 t.setWindowCrop(mTransitChangeLeash, startBounds.width(), startBounds.height());
1635 t.setPosition(mTransitChangeLeash, startBounds.left, startBounds.top);
1636 t.show(mTransitChangeLeash);
1637 t.reparent(getSurfaceControl(), mTransitChangeLeash);
1638 onAnimationLeashCreated(t, mTransitChangeLeash);
1639
Evan Rosky966759f2019-01-15 10:33:58 -08001640 // Skip creating snapshot if this transition is controlled by a remote animator which
1641 // doesn't need it.
1642 ArraySet<Integer> activityTypes = new ArraySet<>();
1643 activityTypes.add(getActivityType());
1644 RemoteAnimationAdapter adapter =
1645 mDisplayContent.mAppTransitionController.getRemoteAnimationOverride(
1646 this, TRANSIT_TASK_CHANGE_WINDOWING_MODE, activityTypes);
1647 if (adapter != null && !adapter.getChangeNeedsSnapshot()) {
1648 return;
1649 }
1650
Evan Rosky2289ba12018-11-19 18:28:18 -08001651 if (mThumbnail == null && getTask() != null) {
1652 final TaskSnapshotController snapshotCtrl = mWmService.mTaskSnapshotController;
1653 final ArraySet<Task> tasks = new ArraySet<>();
1654 tasks.add(getTask());
1655 snapshotCtrl.snapshotTasks(tasks);
1656 snapshotCtrl.addSkipClosingAppSnapshotTasks(tasks);
1657 final ActivityManager.TaskSnapshot snapshot = snapshotCtrl.getSnapshot(
1658 getTask().mTaskId, getTask().mUserId, false /* restoreFromDisk */,
1659 false /* reducedResolution */);
Yunfan Chendcb1fcf2019-02-07 19:08:41 +09001660 if (snapshot != null) {
1661 mThumbnail = new AppWindowThumbnail(t, this, snapshot.getSnapshot(),
1662 true /* relative */);
1663 }
Evan Rosky2289ba12018-11-19 18:28:18 -08001664 }
1665 }
1666
1667 boolean isInChangeTransition() {
1668 return mTransitChangeLeash != null || isChangeTransition(mTransit);
1669 }
1670
Evan Rosky966759f2019-01-15 10:33:58 -08001671 @VisibleForTesting
1672 AppWindowThumbnail getThumbnail() {
1673 return mThumbnail;
1674 }
1675
Winson Chunge55c0192017-08-24 14:50:48 -07001676 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001677 void checkAppWindowsReadyToShow() {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001678 if (allDrawn == mLastAllDrawn) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001679 return;
1680 }
1681
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001682 mLastAllDrawn = allDrawn;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001683 if (!allDrawn) {
1684 return;
1685 }
1686
1687 // The token has now changed state to having all windows shown... what to do, what to do?
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001688 if (mFreezingScreen) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001689 showAllWindowsLocked();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001690 stopFreezingScreen(false, true);
1691 if (DEBUG_ORIENTATION) Slog.i(TAG,
1692 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001693 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001694 // This will set mOrientationChangeComplete and cause a pass through layout.
1695 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001696 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001697 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001698 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001699
1700 // We can now show all of the drawn windows!
lumark588a3e82018-07-20 18:53:54 +08001701 if (!getDisplayContent().mOpeningApps.contains(this) && canShowWindows()) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001702 showAllWindowsLocked();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001703 }
1704 }
1705 }
1706
Matthew Ng5d23afa2017-06-21 16:16:24 -07001707 /**
Bryce Leed390deb2017-06-22 13:14:28 -07001708 * Returns whether the drawn window states of this {@link AppWindowToken} has considered every
1709 * child {@link WindowState}. A child is considered if it has been passed into
1710 * {@link #updateDrawnWindowStates(WindowState)} after being added. This is used to determine
1711 * whether states, such as {@code allDrawn}, can be set, which relies on state variables such as
1712 * {@code mNumInterestingWindows}, which depend on all {@link WindowState}s being considered.
1713 *
1714 * @return {@code true} If all children have been considered, {@code false}.
1715 */
1716 private boolean allDrawnStatesConsidered() {
Bryce Lee6311c4b2017-07-06 14:09:29 -07001717 for (int i = mChildren.size() - 1; i >= 0; --i) {
1718 final WindowState child = mChildren.get(i);
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001719 if (child.mightAffectAllDrawn() && !child.getDrawnStateEvaluated()) {
Bryce Leed390deb2017-06-22 13:14:28 -07001720 return false;
1721 }
1722 }
1723 return true;
1724 }
1725
1726 /**
Matthew Ng5d23afa2017-06-21 16:16:24 -07001727 * Determines if the token has finished drawing. This should only be called from
1728 * {@link DisplayContent#applySurfaceChangesTransaction}
1729 */
Matthew Ng498c71d2017-04-18 13:55:45 -07001730 void updateAllDrawn() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001731 if (!allDrawn) {
Matthew Ng498c71d2017-04-18 13:55:45 -07001732 // Number of drawn windows can be less when a window is being relaunched, wait for
Bryce Leed390deb2017-06-22 13:14:28 -07001733 // all windows to be launched and drawn for this token be considered all drawn.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001734 final int numInteresting = mNumInterestingWindows;
Bryce Leed390deb2017-06-22 13:14:28 -07001735
1736 // We must make sure that all present children have been considered (determined by
1737 // {@link #allDrawnStatesConsidered}) before evaluating whether everything has been
1738 // drawn.
1739 if (numInteresting > 0 && allDrawnStatesConsidered()
1740 && mNumDrawnWindows >= numInteresting && !isRelaunching()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001741 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001742 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001743 allDrawn = true;
1744 // Force an additional layout pass where
1745 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Matthew Ng498c71d2017-04-18 13:55:45 -07001746 if (mDisplayContent != null) {
1747 mDisplayContent.setLayoutNeeded();
1748 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001749 mWmService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001750
Winson Chunge7ba6862017-05-24 12:13:33 -07001751 // Notify the pinned stack upon all windows drawn. If there was an animation in
1752 // progress then this signal will resume that animation.
Wale Ogunwale61911492017-10-11 08:50:50 -07001753 final TaskStack pinnedStack = mDisplayContent.getPinnedStack();
Winson Chunge7ba6862017-05-24 12:13:33 -07001754 if (pinnedStack != null) {
1755 pinnedStack.onAllWindowsDrawn();
Robert Carrecc06b32017-04-18 14:25:10 -07001756 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001757 }
1758 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001759 }
1760
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001761 boolean keyDispatchingTimedOut(String reason, int windowPid) {
1762 return mActivityRecord != null && mActivityRecord.keyDispatchingTimedOut(reason, windowPid);
1763 }
1764
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001765 /**
1766 * Updated this app token tracking states for interesting and drawn windows based on the window.
1767 *
1768 * @return Returns true if the input window is considered interesting and drawn while all the
1769 * windows in this app token where not considered drawn as of the last pass.
1770 */
1771 boolean updateDrawnWindowStates(WindowState w) {
Bryce Leed390deb2017-06-22 13:14:28 -07001772 w.setDrawnStateEvaluated(true /*evaluated*/);
1773
Jorim Jaggie4b0f282017-05-17 15:10:29 +02001774 if (DEBUG_STARTING_WINDOW_VERBOSE && w == startingWindow) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001775 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001776 + " allDrawn=" + allDrawn + " freezingScreen=" + mFreezingScreen);
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001777 }
1778
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001779 if (allDrawn && !mFreezingScreen) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001780 return false;
1781 }
1782
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001783 if (mLastTransactionSequence != mWmService.mTransactionSequence) {
1784 mLastTransactionSequence = mWmService.mTransactionSequence;
Matthew Ng53e66b22018-01-12 17:13:13 -08001785 mNumDrawnWindows = 0;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001786 startingDisplayed = false;
Matthew Ng53e66b22018-01-12 17:13:13 -08001787
1788 // There is the main base application window, even if it is exiting, wait for it
1789 mNumInterestingWindows = findMainWindow(false /* includeStartingApp */) != null ? 1 : 0;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001790 }
1791
1792 final WindowStateAnimator winAnimator = w.mWinAnimator;
1793
1794 boolean isInterestingAndDrawn = false;
1795
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001796 if (!allDrawn && w.mightAffectAllDrawn()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001797 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1798 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001799 + ", isAnimationSet=" + isSelfAnimating());
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001800 if (!w.isDrawnLw()) {
1801 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1802 + " pv=" + w.mPolicyVisibility
1803 + " mDrawState=" + winAnimator.drawStateToString()
1804 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001805 + " a=" + isSelfAnimating());
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001806 }
1807 }
1808
1809 if (w != startingWindow) {
1810 if (w.isInteresting()) {
Matthew Ng53e66b22018-01-12 17:13:13 -08001811 // Add non-main window as interesting since the main app has already been added
1812 if (findMainWindow(false /* includeStartingApp */) != w) {
1813 mNumInterestingWindows++;
1814 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001815 if (w.isDrawnLw()) {
1816 mNumDrawnWindows++;
1817
1818 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1819 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001820 + " freezingScreen=" + mFreezingScreen
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001821 + " mAppFreezing=" + w.mAppFreezing);
1822
1823 isInterestingAndDrawn = true;
1824 }
1825 }
1826 } else if (w.isDrawnLw()) {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001827 if (mActivityRecord != null) {
1828 mActivityRecord.onStartingWindowDrawn(SystemClock.uptimeMillis());
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001829 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001830 startingDisplayed = true;
1831 }
1832 }
1833
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001834 return isInterestingAndDrawn;
1835 }
1836
Adrian Roos23df3a32018-03-15 15:41:13 +01001837 void layoutLetterbox(WindowState winHint) {
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001838 final WindowState w = findMainWindow();
Adrian Roosf93b6d22018-03-21 13:48:26 +01001839 if (w == null || winHint != null && w != winHint) {
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001840 return;
1841 }
Jorim Jaggia32da382018-03-28 18:01:22 +02001842 final boolean surfaceReady = w.isDrawnLw() // Regular case
Adrian Roosf93b6d22018-03-21 13:48:26 +01001843 || w.mWinAnimator.mSurfaceDestroyDeferred // The preserved surface is still ready.
1844 || w.isDragResizeChanged(); // Waiting for relayoutWindow to call preserveSurface.
1845 final boolean needsLetterbox = w.isLetterboxedAppWindow() && fillsParent() && surfaceReady;
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001846 if (needsLetterbox) {
1847 if (mLetterbox == null) {
1848 mLetterbox = new Letterbox(() -> makeChildSurface(null));
1849 }
Adrian Roos7af9d972018-11-30 15:26:27 +01001850 getPosition(mTmpPoint);
1851 mLetterbox.layout(getParent().getBounds(), w.getFrameLw(), mTmpPoint);
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001852 } else if (mLetterbox != null) {
Adrian Roos23df3a32018-03-15 15:41:13 +01001853 mLetterbox.hide();
1854 }
1855 }
1856
1857 void updateLetterboxSurface(WindowState winHint) {
1858 final WindowState w = findMainWindow();
1859 if (w != winHint && winHint != null && w != null) {
1860 return;
1861 }
1862 layoutLetterbox(winHint);
1863 if (mLetterbox != null && mLetterbox.needsApplySurfaceChanges()) {
1864 mLetterbox.applySurfaceChanges(mPendingTransaction);
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001865 }
1866 }
1867
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001868 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001869 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001870 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1871 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1872 // TODO: Investigate if we need to continue to do this or if we can just process them
1873 // in-order.
1874 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001875 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001876 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001877 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001878 }
1879
lumark588a3e82018-07-20 18:53:54 +08001880 @Override
1881 void forAllAppWindows(Consumer<AppWindowToken> callback) {
1882 callback.accept(this);
1883 }
1884
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001885 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1886 boolean traverseTopToBottom) {
1887 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001888 }
1889
1890 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001891 AppWindowToken asAppWindowToken() {
1892 // I am an app window token!
1893 return this;
1894 }
1895
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001896 boolean addStartingWindow(String pkg, int theme, CompatibilityInfo compatInfo,
1897 CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags,
1898 IBinder transferFrom, boolean newTask, boolean taskSwitch, boolean processRunning,
1899 boolean allowTaskSnapshot, boolean activityCreated, boolean fromRecents) {
1900 // If the display is frozen, we won't do anything until the actual window is
1901 // displayed so there is no reason to put in the starting window.
1902 if (!okToDisplay()) {
1903 return false;
1904 }
1905
1906 if (startingData != null) {
1907 return false;
1908 }
1909
1910 final WindowState mainWin = findMainWindow();
1911 if (mainWin != null && mainWin.mWinAnimator.getShown()) {
1912 // App already has a visible window...why would you want a starting window?
1913 return false;
1914 }
1915
1916 final ActivityManager.TaskSnapshot snapshot =
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001917 mWmService.mTaskSnapshotController.getSnapshot(
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001918 getTask().mTaskId, getTask().mUserId,
1919 false /* restoreFromDisk */, false /* reducedResolution */);
1920 final int type = getStartingWindowType(newTask, taskSwitch, processRunning,
1921 allowTaskSnapshot, activityCreated, fromRecents, snapshot);
1922
1923 if (type == STARTING_WINDOW_TYPE_SNAPSHOT) {
1924 return createSnapshot(snapshot);
1925 }
1926
1927 // If this is a translucent window, then don't show a starting window -- the current
1928 // effect (a full-screen opaque starting window that fades away to the real contents
1929 // when it is ready) does not work for this.
1930 if (DEBUG_STARTING_WINDOW) {
1931 Slog.v(TAG, "Checking theme of starting window: 0x" + Integer.toHexString(theme));
1932 }
1933 if (theme != 0) {
1934 AttributeCache.Entry ent = AttributeCache.instance().get(pkg, theme,
1935 com.android.internal.R.styleable.Window,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08001936 mWmService.mCurrentUserId);
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001937 if (ent == null) {
1938 // Whoops! App doesn't exist. Um. Okay. We'll just pretend like we didn't
1939 // see that.
1940 return false;
1941 }
1942 final boolean windowIsTranslucent = ent.array.getBoolean(
1943 com.android.internal.R.styleable.Window_windowIsTranslucent, false);
1944 final boolean windowIsFloating = ent.array.getBoolean(
1945 com.android.internal.R.styleable.Window_windowIsFloating, false);
1946 final boolean windowShowWallpaper = ent.array.getBoolean(
1947 com.android.internal.R.styleable.Window_windowShowWallpaper, false);
1948 final boolean windowDisableStarting = ent.array.getBoolean(
1949 com.android.internal.R.styleable.Window_windowDisablePreview, false);
1950 if (DEBUG_STARTING_WINDOW) {
1951 Slog.v(TAG, "Translucent=" + windowIsTranslucent
1952 + " Floating=" + windowIsFloating
1953 + " ShowWallpaper=" + windowShowWallpaper);
1954 }
1955 if (windowIsTranslucent) {
1956 return false;
1957 }
1958 if (windowIsFloating || windowDisableStarting) {
1959 return false;
1960 }
1961 if (windowShowWallpaper) {
1962 if (getDisplayContent().mWallpaperController
1963 .getWallpaperTarget() == null) {
1964 // If this theme is requesting a wallpaper, and the wallpaper
1965 // is not currently visible, then this effectively serves as
1966 // an opaque window and our starting window transition animation
1967 // can still work. We just need to make sure the starting window
1968 // is also showing the wallpaper.
1969 windowFlags |= FLAG_SHOW_WALLPAPER;
1970 } else {
1971 return false;
1972 }
1973 }
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001974 }
Yunfan Chen8a8c0ed2018-12-18 16:46:32 -08001975
1976 if (transferStartingWindow(transferFrom)) {
1977 return true;
1978 }
1979
1980 // There is no existing starting window, and we don't want to create a splash screen, so
1981 // that's it!
1982 if (type != STARTING_WINDOW_TYPE_SPLASH_SCREEN) {
1983 return false;
1984 }
1985
1986 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Creating SplashScreenStartingData");
1987 startingData = new SplashScreenStartingData(mWmService, pkg,
1988 theme, compatInfo, nonLocalizedLabel, labelRes, icon, logo, windowFlags,
1989 getMergedOverrideConfiguration());
1990 scheduleAddStartingWindow();
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08001991 return true;
1992 }
1993
1994
1995 private boolean createSnapshot(ActivityManager.TaskSnapshot snapshot) {
1996 if (snapshot == null) {
1997 return false;
1998 }
1999
2000 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Creating SnapshotStartingData");
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002001 startingData = new SnapshotStartingData(mWmService, snapshot);
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08002002 scheduleAddStartingWindow();
2003 return true;
2004 }
2005
2006 void scheduleAddStartingWindow() {
2007 // Note: we really want to do sendMessageAtFrontOfQueue() because we
2008 // want to process the message ASAP, before any other queued
2009 // messages.
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002010 if (!mWmService.mAnimationHandler.hasCallbacks(mAddStartingWindow)) {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08002011 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Enqueueing ADD_STARTING");
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002012 mWmService.mAnimationHandler.postAtFrontOfQueue(mAddStartingWindow);
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08002013 }
2014 }
2015
2016 private final Runnable mAddStartingWindow = new Runnable() {
2017
2018 @Override
2019 public void run() {
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002020 synchronized (mWmService.mGlobalLock) {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08002021 // There can only be one adding request, silly caller!
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002022 mWmService.mAnimationHandler.removeCallbacks(this);
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08002023 }
2024
2025 if (startingData == null) {
2026 // Animation has been canceled... do nothing.
2027 if (DEBUG_STARTING_WINDOW) {
2028 Slog.v(TAG, "startingData was nulled out before handling"
2029 + " mAddStartingWindow: " + AppWindowToken.this);
2030 }
2031 return;
2032 }
2033
2034 if (DEBUG_STARTING_WINDOW) {
2035 Slog.v(TAG, "Add starting " + this + ": startingData=" + startingData);
2036 }
2037
2038 WindowManagerPolicy.StartingSurface surface = null;
2039 try {
2040 surface = startingData.createStartingSurface(AppWindowToken.this);
2041 } catch (Exception e) {
2042 Slog.w(TAG, "Exception when adding starting window", e);
2043 }
2044 if (surface != null) {
2045 boolean abort = false;
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002046 synchronized (mWmService.mGlobalLock) {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08002047 // If the window was successfully added, then
2048 // we need to remove it.
2049 if (removed || startingData == null) {
2050 if (DEBUG_STARTING_WINDOW) {
2051 Slog.v(TAG, "Aborted starting " + AppWindowToken.this
2052 + ": removed=" + removed + " startingData=" + startingData);
2053 }
2054 startingWindow = null;
2055 startingData = null;
2056 abort = true;
2057 } else {
2058 startingSurface = surface;
2059 }
2060 if (DEBUG_STARTING_WINDOW && !abort) {
2061 Slog.v(TAG, "Added starting " + AppWindowToken.this + ": startingWindow="
2062 + startingWindow + " startingView=" + startingSurface);
2063 }
2064 }
2065 if (abort) {
2066 surface.remove();
2067 }
2068 } else if (DEBUG_STARTING_WINDOW) {
2069 Slog.v(TAG, "Surface returned was null: " + AppWindowToken.this);
2070 }
2071 }
2072 };
2073
2074 private int getStartingWindowType(boolean newTask, boolean taskSwitch, boolean processRunning,
2075 boolean allowTaskSnapshot, boolean activityCreated, boolean fromRecents,
2076 ActivityManager.TaskSnapshot snapshot) {
2077 if (getDisplayContent().mAppTransition.getAppTransition()
2078 == TRANSIT_DOCK_TASK_FROM_RECENTS) {
2079 // TODO(b/34099271): Remove this statement to add back the starting window and figure
2080 // out why it causes flickering, the starting window appears over the thumbnail while
2081 // the docked from recents transition occurs
2082 return STARTING_WINDOW_TYPE_NONE;
2083 } else if (newTask || !processRunning || (taskSwitch && !activityCreated)) {
2084 return STARTING_WINDOW_TYPE_SPLASH_SCREEN;
2085 } else if (taskSwitch && allowTaskSnapshot) {
Kevin716a9db2018-12-18 16:53:39 -08002086 if (mWmService.mLowRamTaskSnapshotsAndRecents) {
Kevin58b47f12018-12-17 14:09:01 -08002087 // For low RAM devices, we use the splash screen starting window instead of the
2088 // task snapshot starting window.
2089 return STARTING_WINDOW_TYPE_SPLASH_SCREEN;
2090 }
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08002091 return snapshot == null ? STARTING_WINDOW_TYPE_NONE
2092 : snapshotOrientationSameAsTask(snapshot) || fromRecents
2093 ? STARTING_WINDOW_TYPE_SNAPSHOT : STARTING_WINDOW_TYPE_SPLASH_SCREEN;
2094 } else {
2095 return STARTING_WINDOW_TYPE_NONE;
2096 }
2097 }
2098
2099
2100 private boolean snapshotOrientationSameAsTask(ActivityManager.TaskSnapshot snapshot) {
2101 if (snapshot == null) {
2102 return false;
2103 }
2104 return getTask().getConfiguration().orientation == snapshot.getOrientation();
2105 }
2106
2107 void removeStartingWindow() {
2108 if (startingWindow == null) {
2109 if (startingData != null) {
2110 // Starting window has not been added yet, but it is scheduled to be added.
2111 // Go ahead and cancel the request.
2112 if (DEBUG_STARTING_WINDOW) {
2113 Slog.v(TAG_WM, "Clearing startingData for token=" + this);
2114 }
2115 startingData = null;
2116 }
2117 return;
2118 }
2119
2120 final WindowManagerPolicy.StartingSurface surface;
2121 if (startingData != null) {
2122 surface = startingSurface;
2123 startingData = null;
2124 startingSurface = null;
2125 startingWindow = null;
2126 startingDisplayed = false;
2127 if (surface == null) {
2128 if (DEBUG_STARTING_WINDOW) {
2129 Slog.v(TAG_WM, "startingWindow was set but startingSurface==null, couldn't "
2130 + "remove");
2131 }
2132 return;
2133 }
2134 } else {
2135 if (DEBUG_STARTING_WINDOW) {
2136 Slog.v(TAG_WM, "Tried to remove starting window but startingWindow was null:"
2137 + this);
2138 }
2139 return;
2140 }
2141
2142 if (DEBUG_STARTING_WINDOW) {
2143 Slog.v(TAG_WM, "Schedule remove starting " + this
2144 + " startingWindow=" + startingWindow
2145 + " startingView=" + startingSurface
2146 + " Callers=" + Debug.getCallers(5));
2147 }
2148
2149 // Use the same thread to remove the window as we used to add it, as otherwise we end up
2150 // with things in the view hierarchy being called from different threads.
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002151 mWmService.mAnimationHandler.post(() -> {
Yunfan Chen1ee84ea2018-11-13 16:03:37 -08002152 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Removing startingView=" + surface);
2153 try {
2154 surface.remove();
2155 } catch (Exception e) {
2156 Slog.w(TAG_WM, "Exception when removing starting window", e);
2157 }
2158 });
2159 }
2160
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07002161 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07002162 boolean fillsParent() {
2163 return mFillsParent;
2164 }
2165
2166 void setFillsParent(boolean fillsParent) {
2167 mFillsParent = fillsParent;
2168 }
2169
Jorim Jaggife762342016-10-13 14:33:27 +02002170 boolean containsDismissKeyguardWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07002171 // Window state is transient during relaunch. We are not guaranteed to be frozen during the
2172 // entirety of the relaunch.
2173 if (isRelaunching()) {
2174 return mLastContainsDismissKeyguardWindow;
2175 }
2176
Jorim Jaggife762342016-10-13 14:33:27 +02002177 for (int i = mChildren.size() - 1; i >= 0; i--) {
2178 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
2179 return true;
2180 }
2181 }
2182 return false;
2183 }
2184
2185 boolean containsShowWhenLockedWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07002186 // When we are relaunching, it is possible for us to be unfrozen before our previous
2187 // windows have been added back. Using the cached value ensures that our previous
2188 // showWhenLocked preference is honored until relaunching is complete.
2189 if (isRelaunching()) {
2190 return mLastContainsShowWhenLockedWindow;
2191 }
2192
Jorim Jaggife762342016-10-13 14:33:27 +02002193 for (int i = mChildren.size() - 1; i >= 0; i--) {
2194 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
2195 return true;
2196 }
2197 }
Bryce Lee081554b2017-05-25 07:52:12 -07002198
Jorim Jaggife762342016-10-13 14:33:27 +02002199 return false;
2200 }
2201
2202 void checkKeyguardFlagsChanged() {
2203 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
2204 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
2205 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
2206 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002207 mWmService.notifyKeyguardFlagsChanged(null /* callback */,
lumark588a3e82018-07-20 18:53:54 +08002208 getDisplayContent().getDisplayId());
Jorim Jaggife762342016-10-13 14:33:27 +02002209 }
2210 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
2211 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
2212 }
2213
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002214 WindowState getImeTargetBelowWindow(WindowState w) {
2215 final int index = mChildren.indexOf(w);
2216 if (index > 0) {
2217 final WindowState target = mChildren.get(index - 1);
2218 if (target.canBeImeTarget()) {
2219 return target;
2220 }
2221 }
2222 return null;
2223 }
2224
2225 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
2226 WindowState candidate = null;
2227 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
2228 final WindowState w = mChildren.get(i);
2229 if (w.mRemoved) {
2230 continue;
2231 }
Jorim Jaggi35d328a2018-08-14 17:00:20 +02002232 if (candidate == null) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002233 candidate = w;
2234 }
2235 }
2236 return candidate;
2237 }
2238
Jorim Jaggid635a4a2017-05-03 15:21:26 +02002239 /**
2240 * See {@link Activity#setDisablePreviewScreenshots}.
2241 */
2242 void setDisablePreviewScreenshots(boolean disable) {
Wale Ogunwale6c459212017-05-17 08:56:03 -07002243 mDisablePreviewScreenshots = disable;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01002244 }
2245
Jorim Jaggid635a4a2017-05-03 15:21:26 +02002246 /**
chaviwd3bf08d2017-08-01 17:24:59 -07002247 * Sets whether the current launch can turn the screen on. See {@link #canTurnScreenOn()}
2248 */
2249 void setCanTurnScreenOn(boolean canTurnScreenOn) {
2250 mCanTurnScreenOn = canTurnScreenOn;
2251 }
2252
2253 /**
2254 * Indicates whether the current launch can turn the screen on. This is to prevent multiple
2255 * relayouts from turning the screen back on. The screen should only turn on at most
2256 * once per activity resume.
2257 *
2258 * @return true if the screen can be turned on.
2259 */
2260 boolean canTurnScreenOn() {
2261 return mCanTurnScreenOn;
2262 }
2263
2264 /**
Jorim Jaggid635a4a2017-05-03 15:21:26 +02002265 * Retrieves whether we'd like to generate a snapshot that's based solely on the theme. This is
2266 * the case when preview screenshots are disabled {@link #setDisablePreviewScreenshots} or when
2267 * we can't take a snapshot for other reasons, for example, if we have a secure window.
2268 *
2269 * @return True if we need to generate an app theme snapshot, false if we'd like to take a real
2270 * screenshot.
2271 */
2272 boolean shouldUseAppThemeSnapshot() {
Wale Ogunwale6c459212017-05-17 08:56:03 -07002273 return mDisablePreviewScreenshots || forAllWindows(w -> (w.mAttrs.flags & FLAG_SECURE) != 0,
Jorim Jaggid635a4a2017-05-03 15:21:26 +02002274 true /* topToBottom */);
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01002275 }
2276
Jorim Jaggibe418292018-03-26 16:14:12 +02002277 SurfaceControl getAppAnimationLayer() {
Jorim Jaggi391790622018-04-18 15:30:44 +02002278 return getAppAnimationLayer(isActivityTypeHome() ? ANIMATION_LAYER_HOME
2279 : needsZBoost() ? ANIMATION_LAYER_BOOSTED
2280 : ANIMATION_LAYER_STANDARD);
Jorim Jaggibe418292018-03-26 16:14:12 +02002281 }
2282
chaviw23ee71c2017-12-18 11:29:41 -08002283 @Override
Jorim Jaggi596a1992017-12-29 14:48:02 +01002284 public SurfaceControl getAnimationLeashParent() {
Robert Carrb9506032018-02-13 13:54:00 -08002285 // All normal app transitions take place in an animation layer which is below the pinned
2286 // stack but may be above the parent stacks of the given animating apps.
2287 // For transitions in the pinned stack (menu activity) we just let them occur as a child
2288 // of the pinned stack.
2289 if (!inPinnedWindowingMode()) {
2290 return getAppAnimationLayer();
2291 } else {
2292 return getStack().getSurfaceControl();
2293 }
chaviw23ee71c2017-12-18 11:29:41 -08002294 }
2295
Jorim Jaggic6976f02018-04-18 16:31:07 +02002296 private boolean shouldAnimate(int transit) {
2297 final boolean isSplitScreenPrimary =
2298 getWindowingMode() == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
2299 final boolean allowSplitScreenPrimaryAnimation = transit != TRANSIT_WALLPAPER_OPEN;
2300
2301 // We animate always if it's not split screen primary, and only some special cases in split
2302 // screen primary because it causes issues with stack clipping when we run an un-minimize
2303 // animation at the same time.
2304 return !isSplitScreenPrimary || allowSplitScreenPrimaryAnimation;
2305 }
2306
Vishnu Naira2977262018-07-26 13:31:26 -07002307 /**
2308 * Creates a layer to apply crop to an animation.
2309 */
2310 private SurfaceControl createAnimationBoundsLayer(Transaction t) {
2311 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.i(TAG, "Creating animation bounds layer");
2312 final SurfaceControl.Builder builder = makeAnimationLeash()
2313 .setParent(getAnimationLeashParent())
Vishnu Naire86bd982018-11-28 13:23:17 -08002314 .setName(getSurfaceControl() + " - animation-bounds");
Vishnu Naira2977262018-07-26 13:31:26 -07002315 final SurfaceControl boundsLayer = builder.build();
2316 t.show(boundsLayer);
2317 return boundsLayer;
2318 }
2319
Riddle Hsua118b3a2018-10-11 22:05:06 +08002320 /** Get position and crop region of animation. */
2321 @VisibleForTesting
2322 void getAnimationBounds(Point outPosition, Rect outBounds) {
2323 outPosition.set(0, 0);
2324 outBounds.setEmpty();
2325
2326 final TaskStack stack = getStack();
2327 final Task task = getTask();
2328 if (task != null && task.inFreeformWindowingMode()) {
Evan Roskyed6767f2018-10-26 17:21:06 -07002329 task.getRelativeDisplayedPosition(outPosition);
Riddle Hsua118b3a2018-10-11 22:05:06 +08002330 } else if (stack != null) {
Evan Roskyed6767f2018-10-26 17:21:06 -07002331 stack.getRelativeDisplayedPosition(outPosition);
Riddle Hsua118b3a2018-10-11 22:05:06 +08002332 }
2333
2334 // Always use stack bounds in order to have the ability to animate outside the task region.
2335 // It also needs to be consistent when {@link #mNeedsAnimationBoundsLayer} is set that crops
2336 // according to the bounds.
2337 if (stack != null) {
2338 stack.getBounds(outBounds);
2339 }
2340 // We have the relative position so the local position can be removed from bounds.
2341 outBounds.offsetTo(0, 0);
2342 }
2343
Evan Roskyed6767f2018-10-26 17:21:06 -07002344 @Override
2345 Rect getDisplayedBounds() {
2346 final Task task = getTask();
2347 if (task != null) {
2348 final Rect overrideDisplayedBounds = task.getOverrideDisplayedBounds();
2349 if (!overrideDisplayedBounds.isEmpty()) {
2350 return overrideDisplayedBounds;
2351 }
2352 }
2353 return getBounds();
2354 }
2355
Evan Rosky2289ba12018-11-19 18:28:18 -08002356 private static boolean isChangeTransition(int transit) {
2357 return transit == TRANSIT_TASK_CHANGE_WINDOWING_MODE;
2358 }
2359
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002360 boolean applyAnimationLocked(WindowManager.LayoutParams lp, int transit, boolean enter,
2361 boolean isVoiceInteraction) {
2362
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002363 if (mWmService.mDisableTransitionAnimation || !shouldAnimate(transit)) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002364 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
Jorim Jaggic6976f02018-04-18 16:31:07 +02002365 Slog.v(TAG_WM, "applyAnimation: transition animation is disabled or skipped."
2366 + " atoken=" + this);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002367 }
2368 cancelAnimation();
2369 return false;
2370 }
2371
2372 // Only apply an animation if the display isn't frozen. If it is frozen, there is no reason
2373 // to animate and it can cause strange artifacts when we unfreeze the display if some
2374 // different animation is running.
2375 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "AWT#applyAnimationLocked");
2376 if (okToAnimate()) {
Jorim Jaggi33a701a2017-12-01 14:58:18 +01002377 final AnimationAdapter adapter;
Evan Rosky2289ba12018-11-19 18:28:18 -08002378 AnimationAdapter thumbnailAdapter = null;
Riddle Hsua118b3a2018-10-11 22:05:06 +08002379 getAnimationBounds(mTmpPoint, mTmpRect);
Jorim Jaggic4d29f22018-03-22 16:30:56 +01002380
Evan Rosky966759f2019-01-15 10:33:58 -08002381 boolean isChanging = isChangeTransition(transit) && enter;
Evan Rosky2289ba12018-11-19 18:28:18 -08002382
Jorim Jaggic4d29f22018-03-22 16:30:56 +01002383 // Delaying animation start isn't compatible with remote animations at all.
lumark588a3e82018-07-20 18:53:54 +08002384 if (getDisplayContent().mAppTransition.getRemoteAnimationController() != null
Jorim Jaggic4d29f22018-03-22 16:30:56 +01002385 && !mSurfaceAnimator.isAnimationStartDelayed()) {
Evan Rosky2289ba12018-11-19 18:28:18 -08002386 RemoteAnimationRecord adapters =
2387 getDisplayContent().mAppTransition.getRemoteAnimationController()
2388 .createRemoteAnimationRecord(this, mTmpPoint, mTmpRect,
2389 (isChanging ? mTransitStartRect : null));
2390 adapter = adapters.mAdapter;
2391 thumbnailAdapter = adapters.mThumbnailAdapter;
2392 } else if (isChanging) {
Evan Roskycf76bed2019-01-15 10:33:58 -08002393 final float durationScale = mWmService.getTransitionAnimationScaleLocked();
Evan Rosky2289ba12018-11-19 18:28:18 -08002394 mTmpRect.offsetTo(mTmpPoint.x, mTmpPoint.y);
2395 adapter = new LocalAnimationAdapter(
2396 new WindowChangeAnimationSpec(mTransitStartRect, mTmpRect,
Evan Roskycf76bed2019-01-15 10:33:58 -08002397 getDisplayContent().getDisplayInfo(), durationScale,
Evan Rosky2289ba12018-11-19 18:28:18 -08002398 true /* isAppAnimation */, false /* isThumbnail */),
2399 mWmService.mSurfaceAnimationRunner);
Evan Rosky966759f2019-01-15 10:33:58 -08002400 if (mThumbnail != null) {
2401 thumbnailAdapter = new LocalAnimationAdapter(
2402 new WindowChangeAnimationSpec(mTransitStartRect, mTmpRect,
Evan Roskycf76bed2019-01-15 10:33:58 -08002403 getDisplayContent().getDisplayInfo(), durationScale,
Evan Rosky966759f2019-01-15 10:33:58 -08002404 true /* isAppAnimation */, true /* isThumbnail */),
2405 mWmService.mSurfaceAnimationRunner);
2406 }
Evan Rosky2289ba12018-11-19 18:28:18 -08002407 mTransit = transit;
2408 mTransitFlags = getDisplayContent().mAppTransition.getTransitFlags();
Jorim Jaggi33a701a2017-12-01 14:58:18 +01002409 } else {
lumark588a3e82018-07-20 18:53:54 +08002410 final int appStackClipMode =
2411 getDisplayContent().mAppTransition.getAppStackClipMode();
Vishnu Naira2977262018-07-26 13:31:26 -07002412 mNeedsAnimationBoundsLayer = (appStackClipMode == STACK_CLIP_AFTER_ANIM);
2413
Jorim Jaggi33a701a2017-12-01 14:58:18 +01002414 final Animation a = loadAnimation(lp, transit, enter, isVoiceInteraction);
2415 if (a != null) {
2416 adapter = new LocalAnimationAdapter(
2417 new WindowAnimationSpec(a, mTmpPoint, mTmpRect,
lumark588a3e82018-07-20 18:53:54 +08002418 getDisplayContent().mAppTransition.canSkipFirstFrame(),
Vishnu Naira2977262018-07-26 13:31:26 -07002419 appStackClipMode,
Jorim Jaggiaa763cd2018-03-22 23:20:36 +01002420 true /* isAppAnimation */),
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002421 mWmService.mSurfaceAnimationRunner);
Jorim Jaggi33a701a2017-12-01 14:58:18 +01002422 if (a.getZAdjustment() == Animation.ZORDER_TOP) {
2423 mNeedsZBoost = true;
2424 }
2425 mTransit = transit;
lumark588a3e82018-07-20 18:53:54 +08002426 mTransitFlags = getDisplayContent().mAppTransition.getTransitFlags();
Jorim Jaggi33a701a2017-12-01 14:58:18 +01002427 } else {
2428 adapter = null;
chaviw23ee71c2017-12-18 11:29:41 -08002429 }
Jorim Jaggi33a701a2017-12-01 14:58:18 +01002430 }
2431 if (adapter != null) {
Jorim Jaggi619c9f72017-12-19 18:04:29 +01002432 startAnimation(getPendingTransaction(), adapter, !isVisible());
Jorim Jaggi82c17862018-02-21 17:50:18 +01002433 if (adapter.getShowWallpaper()) {
2434 mDisplayContent.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
2435 }
Evan Rosky2289ba12018-11-19 18:28:18 -08002436 if (thumbnailAdapter != null) {
2437 mThumbnail.startAnimation(
2438 getPendingTransaction(), thumbnailAdapter, !isVisible());
2439 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002440 }
2441 } else {
2442 cancelAnimation();
2443 }
2444 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
2445
2446 return isReallyAnimating();
2447 }
2448
2449 private Animation loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter,
2450 boolean isVoiceInteraction) {
2451 final DisplayContent displayContent = getTask().getDisplayContent();
2452 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
2453 final int width = displayInfo.appWidth;
2454 final int height = displayInfo.appHeight;
2455 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG_WM,
2456 "applyAnimation: atoken=" + this);
2457
2458 // Determine the visible rect to calculate the thumbnail clip
2459 final WindowState win = findMainWindow();
2460 final Rect frame = new Rect(0, 0, width, height);
2461 final Rect displayFrame = new Rect(0, 0,
2462 displayInfo.logicalWidth, displayInfo.logicalHeight);
2463 final Rect insets = new Rect();
2464 final Rect stableInsets = new Rect();
2465 Rect surfaceInsets = null;
2466 final boolean freeform = win != null && win.inFreeformWindowingMode();
2467 if (win != null) {
2468 // Containing frame will usually cover the whole screen, including dialog windows.
2469 // For freeform workspace windows it will not cover the whole screen and it also
2470 // won't exactly match the final freeform window frame (e.g. when overlapping with
2471 // the status bar). In that case we need to use the final frame.
2472 if (freeform) {
chaviw492139a2018-07-16 16:07:35 -07002473 frame.set(win.getFrameLw());
Adrian Roos4d18a2e2017-12-19 19:08:05 +01002474 } else if (win.isLetterboxedAppWindow()) {
2475 frame.set(getTask().getBounds());
Winson Chungc1674272018-02-21 10:15:17 -08002476 } else if (win.isDockedResizing()) {
2477 // If we are animating while docked resizing, then use the stack bounds as the
2478 // animation target (which will be different than the task bounds)
2479 frame.set(getTask().getParent().getBounds());
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002480 } else {
chaviw553b0212018-07-12 13:37:01 -07002481 frame.set(win.getContainingFrame());
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002482 }
2483 surfaceInsets = win.getAttrs().surfaceInsets;
Adrian Roos20e07892018-02-23 19:12:01 +01002484 // XXX(b/72757033): These are insets relative to the window frame, but we're really
2485 // interested in the insets relative to the frame we chose in the if-blocks above.
chaviw9c81e632018-07-31 11:17:52 -07002486 win.getContentInsets(insets);
2487 win.getStableInsets(stableInsets);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002488 }
2489
2490 if (mLaunchTaskBehind) {
2491 // Differentiate the two animations. This one which is briefly on the screen
2492 // gets the !enter animation, and the other activity which remains on the
2493 // screen gets the enter animation. Both appear in the mOpeningApps set.
2494 enter = false;
2495 }
2496 if (DEBUG_APP_TRANSITIONS) Slog.d(TAG_WM, "Loading animation for app transition."
2497 + " transit=" + AppTransition.appTransitionToString(transit) + " enter=" + enter
2498 + " frame=" + frame + " insets=" + insets + " surfaceInsets=" + surfaceInsets);
2499 final Configuration displayConfig = displayContent.getConfiguration();
lumark588a3e82018-07-20 18:53:54 +08002500 final Animation a = getDisplayContent().mAppTransition.loadAnimation(lp, transit, enter,
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002501 displayConfig.uiMode, displayConfig.orientation, frame, displayFrame, insets,
2502 surfaceInsets, stableInsets, isVoiceInteraction, freeform, getTask().mTaskId);
2503 if (a != null) {
2504 if (DEBUG_ANIM) logWithStack(TAG, "Loaded animation " + a + " for " + this);
2505 final int containingWidth = frame.width();
2506 final int containingHeight = frame.height();
2507 a.initialize(containingWidth, containingHeight, width, height);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002508 a.scaleCurrentDuration(mWmService.getTransitionAnimationScaleLocked());
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002509 }
2510 return a;
2511 }
2512
Jorim Jaggi619c9f72017-12-19 18:04:29 +01002513 @Override
Jorim Jaggi6de61012018-03-19 14:53:23 +01002514 public boolean shouldDeferAnimationFinish(Runnable endDeferFinishCallback) {
2515 return mAnimatingAppWindowTokenRegistry != null
2516 && mAnimatingAppWindowTokenRegistry.notifyAboutToFinish(
2517 this, endDeferFinishCallback);
2518 }
2519
2520 @Override
2521 public void onAnimationLeashDestroyed(Transaction t) {
2522 super.onAnimationLeashDestroyed(t);
Vishnu Naira2977262018-07-26 13:31:26 -07002523 if (mAnimationBoundsLayer != null) {
Robert Carr71200f22019-02-05 09:44:53 -08002524 t.remove(mAnimationBoundsLayer);
Vishnu Naira2977262018-07-26 13:31:26 -07002525 mAnimationBoundsLayer = null;
2526 }
2527
Jorim Jaggi6de61012018-03-19 14:53:23 +01002528 if (mAnimatingAppWindowTokenRegistry != null) {
2529 mAnimatingAppWindowTokenRegistry.notifyFinished(this);
2530 }
2531 }
2532
2533 @Override
Jorim Jaggi619c9f72017-12-19 18:04:29 +01002534 protected void setLayer(Transaction t, int layer) {
2535 if (!mSurfaceAnimator.hasLeash()) {
2536 t.setLayer(mSurfaceControl, layer);
2537 }
2538 }
2539
2540 @Override
2541 protected void setRelativeLayer(Transaction t, SurfaceControl relativeTo, int layer) {
2542 if (!mSurfaceAnimator.hasLeash()) {
2543 t.setRelativeLayer(mSurfaceControl, relativeTo, layer);
2544 }
2545 }
2546
2547 @Override
2548 protected void reparentSurfaceControl(Transaction t, SurfaceControl newParent) {
2549 if (!mSurfaceAnimator.hasLeash()) {
Robert Carr10584fa2019-01-14 15:55:19 -08002550 t.reparent(mSurfaceControl, newParent);
Jorim Jaggi619c9f72017-12-19 18:04:29 +01002551 }
2552 }
2553
2554 @Override
2555 public void onAnimationLeashCreated(Transaction t, SurfaceControl leash) {
Jorim Jaggi619c9f72017-12-19 18:04:29 +01002556 // The leash is parented to the animation layer. We need to preserve the z-order by using
2557 // the prefix order index, but we boost if necessary.
Robert Carrb9506032018-02-13 13:54:00 -08002558 int layer = 0;
2559 if (!inPinnedWindowingMode()) {
2560 layer = getPrefixOrderIndex();
2561 } else {
2562 // Pinned stacks have animations take place within themselves rather than an animation
2563 // layer so we need to preserve the order relative to the stack (e.g. the order of our
2564 // task/parent).
2565 layer = getParent().getPrefixOrderIndex();
2566 }
2567
Jorim Jaggi619c9f72017-12-19 18:04:29 +01002568 if (mNeedsZBoost) {
2569 layer += Z_BOOST_BASE;
2570 }
2571 leash.setLayer(layer);
Robert Carr2f8aa392018-01-31 14:46:51 -08002572
2573 final DisplayContent dc = getDisplayContent();
Jorim Jaggibe418292018-03-26 16:14:12 +02002574 dc.assignStackOrdering();
Evan Rosky2289ba12018-11-19 18:28:18 -08002575
2576 if (leash == mTransitChangeLeash) {
2577 // This is a temporary state so skip any animation notifications
2578 return;
2579 } else if (mTransitChangeLeash != null) {
2580 // unparent mTransitChangeLeash for clean-up
Evan Rosky25b56192019-02-06 16:10:56 -08002581 clearChangeLeash(t, false /* cancel */);
Evan Rosky2289ba12018-11-19 18:28:18 -08002582 }
2583
Jorim Jaggi6de61012018-03-19 14:53:23 +01002584 if (mAnimatingAppWindowTokenRegistry != null) {
2585 mAnimatingAppWindowTokenRegistry.notifyStarting(this);
2586 }
Vishnu Naira2977262018-07-26 13:31:26 -07002587
2588 // If the animation needs to be cropped then an animation bounds layer is created as a child
2589 // of the pinned stack or animation layer. The leash is then reparented to this new layer.
2590 if (mNeedsAnimationBoundsLayer) {
2591 final TaskStack stack = getStack();
2592 if (stack == null) {
2593 return;
2594 }
2595 mAnimationBoundsLayer = createAnimationBoundsLayer(t);
2596
2597 // Set clip rect to stack bounds.
2598 mTmpRect.setEmpty();
2599 stack.getBounds(mTmpRect);
2600
2601 // Crop to stack bounds.
2602 t.setWindowCrop(mAnimationBoundsLayer, mTmpRect);
2603
2604 // Reparent leash to animation bounds layer.
Robert Carr10584fa2019-01-14 15:55:19 -08002605 t.reparent(leash, mAnimationBoundsLayer);
Vishnu Naira2977262018-07-26 13:31:26 -07002606 }
Jorim Jaggi619c9f72017-12-19 18:04:29 +01002607 }
2608
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002609 /**
2610 * This must be called while inside a transaction.
2611 */
2612 void showAllWindowsLocked() {
2613 forAllWindows(windowState -> {
2614 if (DEBUG_VISIBILITY) Slog.v(TAG, "performing show on: " + windowState);
2615 windowState.performShowLocked();
2616 }, false /* traverseTopToBottom */);
Jorim Jaggia5e10572017-11-15 14:36:26 +01002617 }
2618
2619 @Override
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002620 protected void onAnimationFinished() {
2621 super.onAnimationFinished();
2622
2623 mTransit = TRANSIT_UNSET;
2624 mTransitFlags = 0;
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002625 mNeedsZBoost = false;
Vishnu Naira2977262018-07-26 13:31:26 -07002626 mNeedsAnimationBoundsLayer = false;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002627
2628 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM | FINISH_LAYOUT_REDO_WALLPAPER,
2629 "AppWindowToken");
2630
Jorim Jaggi988f6682017-11-17 17:46:43 +01002631 clearThumbnail();
Jorim Jaggi752cd822018-03-29 16:29:18 +02002632 setClientHidden(isHidden() && hiddenRequested);
Jorim Jaggi988f6682017-11-17 17:46:43 +01002633
lumarkff0ab692018-11-05 20:32:30 +08002634 getDisplayContent().computeImeTargetIfNeeded(this);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002635
2636 if (DEBUG_ANIM) Slog.v(TAG, "Animation done in " + this
2637 + ": reportedVisible=" + reportedVisible
2638 + " okToDisplay=" + okToDisplay()
2639 + " okToAnimate=" + okToAnimate()
2640 + " startingDisplayed=" + startingDisplayed);
2641
Evan Rosky2289ba12018-11-19 18:28:18 -08002642 // clean up thumbnail window
2643 if (mThumbnail != null) {
2644 mThumbnail.destroy();
2645 mThumbnail = null;
2646 }
2647
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002648 // WindowState.onExitAnimationDone might modify the children list, so make a copy and then
2649 // traverse the copy.
2650 final ArrayList<WindowState> children = new ArrayList<>(mChildren);
2651 children.forEach(WindowState::onExitAnimationDone);
2652
lumark588a3e82018-07-20 18:53:54 +08002653 getDisplayContent().mAppTransition.notifyAppTransitionFinishedLocked(token);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002654 scheduleAnimation();
2655 }
2656
2657 @Override
2658 boolean isAppAnimating() {
2659 return isSelfAnimating();
2660 }
2661
2662 @Override
2663 boolean isSelfAnimating() {
2664 // If we are about to start a transition, we also need to be considered animating.
2665 return isWaitingForTransitionStart() || isReallyAnimating();
2666 }
2667
2668 /**
2669 * @return True if and only if we are actually running an animation. Note that
2670 * {@link #isSelfAnimating} also returns true if we are waiting for an animation to
2671 * start.
2672 */
2673 private boolean isReallyAnimating() {
2674 return super.isSelfAnimating();
2675 }
2676
Evan Rosky25b56192019-02-06 16:10:56 -08002677 /**
2678 * @param cancel {@code true} if clearing the leash due to cancelling instead of transferring
2679 * to another leash.
2680 */
2681 private void clearChangeLeash(Transaction t, boolean cancel) {
2682 if (mTransitChangeLeash == null) {
2683 return;
2684 }
2685 if (cancel) {
2686 clearThumbnail();
2687 SurfaceControl sc = getSurfaceControl();
2688 SurfaceControl parentSc = getParentSurfaceControl();
2689 // Don't reparent if surface is getting destroyed
2690 if (parentSc != null && sc != null) {
2691 t.reparent(sc, getParentSurfaceControl());
2692 }
2693 }
2694 t.hide(mTransitChangeLeash);
2695 t.reparent(mTransitChangeLeash, null);
2696 mTransitChangeLeash = null;
2697 if (cancel) {
2698 onAnimationLeashDestroyed(t);
2699 }
2700 }
2701
Jorim Jaggi988f6682017-11-17 17:46:43 +01002702 @Override
2703 void cancelAnimation() {
Evan Rosky2289ba12018-11-19 18:28:18 -08002704 cancelAnimationOnly();
Jorim Jaggi988f6682017-11-17 17:46:43 +01002705 clearThumbnail();
Evan Rosky25b56192019-02-06 16:10:56 -08002706 clearChangeLeash(getPendingTransaction(), true /* cancel */);
Evan Rosky2289ba12018-11-19 18:28:18 -08002707 }
2708
2709 /**
2710 * This only cancels the animation. It doesn't do other teardown like cleaning-up thumbnail
2711 * or interim leashes.
2712 * <p>
2713 * Used when canceling in preparation for starting a new animation.
2714 */
2715 void cancelAnimationOnly() {
2716 super.cancelAnimation();
Jorim Jaggi988f6682017-11-17 17:46:43 +01002717 }
2718
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002719 boolean isWaitingForTransitionStart() {
lumark588a3e82018-07-20 18:53:54 +08002720 return getDisplayContent().mAppTransition.isTransitionSet()
2721 && (getDisplayContent().mOpeningApps.contains(this)
Evan Rosky2289ba12018-11-19 18:28:18 -08002722 || getDisplayContent().mClosingApps.contains(this)
2723 || getDisplayContent().mChangingApps.contains(this));
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002724 }
2725
2726 public int getTransit() {
2727 return mTransit;
2728 }
2729
2730 int getTransitFlags() {
2731 return mTransitFlags;
2732 }
2733
Jorim Jaggi988f6682017-11-17 17:46:43 +01002734 void attachThumbnailAnimation() {
2735 if (!isReallyAnimating()) {
2736 return;
2737 }
2738 final int taskId = getTask().mTaskId;
2739 final GraphicBuffer thumbnailHeader =
lumark588a3e82018-07-20 18:53:54 +08002740 getDisplayContent().mAppTransition.getAppTransitionThumbnailHeader(taskId);
Jorim Jaggi988f6682017-11-17 17:46:43 +01002741 if (thumbnailHeader == null) {
2742 if (DEBUG_APP_TRANSITIONS) Slog.d(TAG, "No thumbnail header bitmap for: " + taskId);
2743 return;
2744 }
2745 clearThumbnail();
2746 mThumbnail = new AppWindowThumbnail(getPendingTransaction(), this, thumbnailHeader);
2747 mThumbnail.startAnimation(getPendingTransaction(), loadThumbnailAnimation(thumbnailHeader));
2748 }
2749
Tony Mak64b8d562017-12-28 17:44:02 +00002750 /**
2751 * Attaches a surface with a thumbnail for the
2752 * {@link android.app.ActivityOptions#ANIM_OPEN_CROSS_PROFILE_APPS} animation.
2753 */
2754 void attachCrossProfileAppsThumbnailAnimation() {
2755 if (!isReallyAnimating()) {
2756 return;
2757 }
2758 clearThumbnail();
2759
2760 final WindowState win = findMainWindow();
2761 if (win == null) {
2762 return;
2763 }
chaviw492139a2018-07-16 16:07:35 -07002764 final Rect frame = win.getFrameLw();
Wale Ogunwale8b19de92018-11-29 19:58:26 -08002765 final int thumbnailDrawableRes = getTask().mUserId == mWmService.mCurrentUserId
Tony Mak64b8d562017-12-28 17:44:02 +00002766 ? R.drawable.ic_account_circle
Tony Makda4af232018-04-27 11:01:10 +01002767 : R.drawable.ic_corp_badge;
Tony Mak64b8d562017-12-28 17:44:02 +00002768 final GraphicBuffer thumbnail =
lumark588a3e82018-07-20 18:53:54 +08002769 getDisplayContent().mAppTransition
Tony Mak64b8d562017-12-28 17:44:02 +00002770 .createCrossProfileAppsThumbnail(thumbnailDrawableRes, frame);
2771 if (thumbnail == null) {
2772 return;
2773 }
2774 mThumbnail = new AppWindowThumbnail(getPendingTransaction(), this, thumbnail);
2775 final Animation animation =
lumark588a3e82018-07-20 18:53:54 +08002776 getDisplayContent().mAppTransition.createCrossProfileAppsThumbnailAnimationLocked(
chaviw492139a2018-07-16 16:07:35 -07002777 win.getFrameLw());
Tony Mak64b8d562017-12-28 17:44:02 +00002778 mThumbnail.startAnimation(getPendingTransaction(), animation, new Point(frame.left,
2779 frame.top));
2780 }
2781
Jorim Jaggi988f6682017-11-17 17:46:43 +01002782 private Animation loadThumbnailAnimation(GraphicBuffer thumbnailHeader) {
2783 final DisplayInfo displayInfo = mDisplayContent.getDisplayInfo();
2784
2785 // If this is a multi-window scenario, we use the windows frame as
2786 // destination of the thumbnail header animation. If this is a full screen
2787 // window scenario, we use the whole display as the target.
2788 WindowState win = findMainWindow();
2789 Rect appRect = win != null ? win.getContentFrameLw() :
2790 new Rect(0, 0, displayInfo.appWidth, displayInfo.appHeight);
chaviw9c81e632018-07-31 11:17:52 -07002791 final Rect insets = win != null ? win.getContentInsets() : null;
Jorim Jaggi988f6682017-11-17 17:46:43 +01002792 final Configuration displayConfig = mDisplayContent.getConfiguration();
lumark588a3e82018-07-20 18:53:54 +08002793 return getDisplayContent().mAppTransition.createThumbnailAspectScaleAnimationLocked(
Jorim Jaggi988f6682017-11-17 17:46:43 +01002794 appRect, insets, thumbnailHeader, getTask().mTaskId, displayConfig.uiMode,
2795 displayConfig.orientation);
2796 }
2797
2798 private void clearThumbnail() {
2799 if (mThumbnail == null) {
2800 return;
2801 }
2802 mThumbnail.destroy();
2803 mThumbnail = null;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002804 }
2805
Jorim Jaggif84e2f62018-01-16 14:17:59 +01002806 void registerRemoteAnimations(RemoteAnimationDefinition definition) {
2807 mRemoteAnimationDefinition = definition;
2808 }
2809
2810 RemoteAnimationDefinition getRemoteAnimationDefinition() {
2811 return mRemoteAnimationDefinition;
2812 }
2813
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002814 @Override
2815 void dump(PrintWriter pw, String prefix, boolean dumpAll) {
2816 super.dump(pw, prefix, dumpAll);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002817 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08002818 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002819 }
Winson Chung48b25652018-10-22 14:04:30 -07002820 pw.println(prefix + "component=" + mActivityComponent.flattenToShortString());
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08002821 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07002822 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
2823 pw.print(" mOrientation="); pw.println(mOrientation);
Wale Ogunwale89973222017-04-23 18:39:45 -07002824 pw.println(prefix + "hiddenRequested=" + hiddenRequested + " mClientHidden=" + mClientHidden
2825 + ((mDeferHidingClient) ? " mDeferHidingClient=" + mDeferHidingClient : "")
2826 + " reportedDrawn=" + reportedDrawn + " reportedVisible=" + reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07002827 if (paused) {
2828 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002829 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08002830 if (mAppStopped) {
2831 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
2832 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07002833 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002834 || allDrawn || mLastAllDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07002835 pw.print(prefix); pw.print("mNumInterestingWindows=");
2836 pw.print(mNumInterestingWindows);
2837 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002838 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07002839 pw.print(" allDrawn="); pw.print(allDrawn);
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002840 pw.print(" lastAllDrawn="); pw.print(mLastAllDrawn);
Craig Mautner6fbda632012-07-03 09:26:39 -07002841 pw.println(")");
2842 }
2843 if (inPendingTransaction) {
2844 pw.print(prefix); pw.print("inPendingTransaction=");
2845 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002846 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08002847 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002848 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
2849 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08002850 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08002851 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002852 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08002853 if (startingWindow != null || startingSurface != null
Wale Ogunwale6c459212017-05-17 08:56:03 -07002854 || startingDisplayed || startingMoved || mHiddenSetFromTransferredStartingWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002855 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08002856 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002857 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale6c459212017-05-17 08:56:03 -07002858 pw.print(" startingMoved="); pw.print(startingMoved);
2859 pw.println(" mHiddenSetFromTransferredStartingWindow="
2860 + mHiddenSetFromTransferredStartingWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002861 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01002862 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08002863 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07002864 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08002865 }
2866 if (mPendingRelaunchCount != 0) {
2867 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01002868 }
Wale Ogunwalee287e192017-04-21 09:30:12 -07002869 if (mRemovingFromDisplay) {
2870 pw.println(prefix + "mRemovingFromDisplay=" + mRemovingFromDisplay);
2871 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002872 }
2873
2874 @Override
2875 void setHidden(boolean hidden) {
2876 super.setHidden(hidden);
Winson Chunge55c0192017-08-24 14:50:48 -07002877
2878 if (hidden) {
2879 // Once the app window is hidden, reset the last saved PiP snap fraction
2880 mDisplayContent.mPinnedStackControllerLocked.resetReentrySnapFraction(this);
2881 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002882 scheduleAnimation();
2883 }
2884
2885 @Override
2886 void prepareSurfaces() {
2887 // isSelfAnimating also returns true when we are about to start a transition, so we need
2888 // to check super here.
2889 final boolean reallyAnimating = super.isSelfAnimating();
2890 final boolean show = !isHidden() || reallyAnimating;
Robert Carrd8e4fb72019-01-31 11:14:30 -08002891
2892 if (mSurfaceControl != null) {
2893 if (show && !mLastSurfaceShowing) {
2894 mPendingTransaction.show(mSurfaceControl);
2895 } else if (!show && mLastSurfaceShowing) {
2896 mPendingTransaction.hide(mSurfaceControl);
2897 }
Jorim Jaggi4d1835d2017-08-31 17:28:27 +02002898 }
Jorim Jaggi988f6682017-11-17 17:46:43 +01002899 if (mThumbnail != null) {
2900 mThumbnail.setShowing(mPendingTransaction, show);
2901 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002902 mLastSurfaceShowing = show;
2903 super.prepareSurfaces();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002904 }
2905
Jorim Jaggi77d0f36c2018-03-16 17:49:49 +01002906 /**
2907 * @return Whether our {@link #getSurfaceControl} is currently showing.
2908 */
2909 boolean isSurfaceShowing() {
2910 return mLastSurfaceShowing;
2911 }
2912
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002913 boolean isFreezingScreen() {
2914 return mFreezingScreen;
2915 }
2916
2917 @Override
2918 boolean needsZBoost() {
2919 return mNeedsZBoost || super.needsZBoost();
2920 }
2921
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07002922 @CallSuper
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002923 @Override
Nataniel Borges023ecb52019-01-16 14:15:43 -08002924 public void writeToProto(ProtoOutputStream proto, long fieldId,
2925 @WindowTraceLogLevel int logLevel) {
2926 // Critical log level logs only visible elements to mitigate performance overheard
2927 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible()) {
2928 return;
2929 }
2930
Steven Timotiusaf03df62017-07-18 16:56:43 -07002931 final long token = proto.start(fieldId);
2932 writeNameToProto(proto, NAME);
Nataniel Borges023ecb52019-01-16 14:15:43 -08002933 super.writeToProto(proto, WINDOW_TOKEN, logLevel);
Vishnu Nair04ab4392018-01-10 11:00:06 -08002934 proto.write(LAST_SURFACE_SHOWING, mLastSurfaceShowing);
2935 proto.write(IS_WAITING_FOR_TRANSITION_START, isWaitingForTransitionStart());
2936 proto.write(IS_REALLY_ANIMATING, isReallyAnimating());
2937 if (mThumbnail != null){
2938 mThumbnail.writeToProto(proto, THUMBNAIL);
2939 }
2940 proto.write(FILLS_PARENT, mFillsParent);
2941 proto.write(APP_STOPPED, mAppStopped);
2942 proto.write(HIDDEN_REQUESTED, hiddenRequested);
2943 proto.write(CLIENT_HIDDEN, mClientHidden);
2944 proto.write(DEFER_HIDING_CLIENT, mDeferHidingClient);
2945 proto.write(REPORTED_DRAWN, reportedDrawn);
2946 proto.write(REPORTED_VISIBLE, reportedVisible);
2947 proto.write(NUM_INTERESTING_WINDOWS, mNumInterestingWindows);
2948 proto.write(NUM_DRAWN_WINDOWS, mNumDrawnWindows);
2949 proto.write(ALL_DRAWN, allDrawn);
2950 proto.write(LAST_ALL_DRAWN, mLastAllDrawn);
2951 proto.write(REMOVED, removed);
Nataniel Borges023ecb52019-01-16 14:15:43 -08002952 if (startingWindow != null) {
Vishnu Nair04ab4392018-01-10 11:00:06 -08002953 startingWindow.writeIdentifierToProto(proto, STARTING_WINDOW);
2954 }
2955 proto.write(STARTING_DISPLAYED, startingDisplayed);
2956 proto.write(STARTING_MOVED, startingMoved);
2957 proto.write(HIDDEN_SET_FROM_TRANSFERRED_STARTING_WINDOW,
2958 mHiddenSetFromTransferredStartingWindow);
2959 for (Rect bounds : mFrozenBounds) {
2960 bounds.writeToProto(proto, FROZEN_BOUNDS);
2961 }
Steven Timotiusaf03df62017-07-18 16:56:43 -07002962 proto.end(token);
2963 }
2964
2965 void writeNameToProto(ProtoOutputStream proto, long fieldId) {
2966 if (appToken == null) {
2967 return;
2968 }
2969 try {
2970 proto.write(fieldId, appToken.getName());
2971 } catch (RemoteException e) {
2972 // This shouldn't happen, but in this case fall back to outputting nothing
2973 Slog.e(TAG, e.toString());
2974 }
2975 }
2976
2977 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002978 public String toString() {
2979 if (stringName == null) {
2980 StringBuilder sb = new StringBuilder();
2981 sb.append("AppWindowToken{");
2982 sb.append(Integer.toHexString(System.identityHashCode(this)));
2983 sb.append(" token="); sb.append(token); sb.append('}');
2984 stringName = sb.toString();
2985 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07002986 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002987 }
Adrian Roos20e07892018-02-23 19:12:01 +01002988
2989 Rect getLetterboxInsets() {
2990 if (mLetterbox != null) {
2991 return mLetterbox.getInsets();
2992 } else {
2993 return new Rect();
2994 }
2995 }
Adrian Roos23df3a32018-03-15 15:41:13 +01002996
2997 /**
2998 * @eturn true if there is a letterbox and any part of that letterbox overlaps with
2999 * the given {@code rect}.
3000 */
3001 boolean isLetterboxOverlappingWith(Rect rect) {
3002 return mLetterbox != null && mLetterbox.isOverlappingWith(rect);
3003 }
chaviw4ad54912018-05-30 11:05:44 -07003004
3005 /**
3006 * Sets if this AWT is in the process of closing or entering PIP.
3007 * {@link #mWillCloseOrEnterPip}}
3008 */
3009 void setWillCloseOrEnterPip(boolean willCloseOrEnterPip) {
3010 mWillCloseOrEnterPip = willCloseOrEnterPip;
3011 }
3012
3013 /**
3014 * Returns whether this AWT is considered closing. Conditions are either
3015 * 1. Is this app animating and was requested to be hidden
3016 * 2. App is delayed closing since it might enter PIP.
3017 */
3018 boolean isClosingOrEnteringPip() {
3019 return (isAnimating() && hiddenRequested) || mWillCloseOrEnterPip;
3020 }
Jorim Jaggiaf0d6d22018-06-08 15:25:35 +02003021
3022 /**
3023 * @return Whether we are allowed to show non-starting windows at the moment. We disallow
3024 * showing windows during transitions in case we have windows that have wide-color-gamut
3025 * color mode set to avoid jank in the middle of the transition.
3026 */
3027 boolean canShowWindows() {
3028 return allDrawn && !(isReallyAnimating() && hasNonDefaultColorWindow());
3029 }
3030
3031 /**
3032 * @return true if we have a window that has a non-default color mode set; false otherwise.
3033 */
3034 private boolean hasNonDefaultColorWindow() {
3035 return forAllWindows(ws -> ws.mAttrs.getColorMode() != COLOR_MODE_DEFAULT,
3036 true /* topToBottom */);
3037 }
lumark588a3e82018-07-20 18:53:54 +08003038
3039 void removeFromPendingTransition() {
3040 if (isWaitingForTransitionStart() && mDisplayContent != null) {
3041 mDisplayContent.mOpeningApps.remove(this);
Evan Rosky25b56192019-02-06 16:10:56 -08003042 if (mDisplayContent.mChangingApps.remove(this)) {
3043 clearChangeLeash(getPendingTransaction(), true /* cancel */);
3044 }
lumark588a3e82018-07-20 18:53:54 +08003045 mDisplayContent.mClosingApps.remove(this);
3046 }
3047 }
chaviwdcf76ec2019-01-11 16:48:46 -08003048
3049 private void updateColorTransform() {
3050 if (mSurfaceControl != null && mLastAppSaturationInfo != null) {
3051 mPendingTransaction.setColorTransform(mSurfaceControl, mLastAppSaturationInfo.mMatrix,
3052 mLastAppSaturationInfo.mTranslation);
3053 mWmService.scheduleAnimationLocked();
3054 }
3055 }
3056
3057 private static class AppSaturationInfo {
3058 float[] mMatrix = new float[9];
3059 float[] mTranslation = new float[3];
3060
3061 void setSaturation(@Size(9) float[] matrix, @Size(3) float[] translation) {
3062 System.arraycopy(matrix, 0, mMatrix, 0, mMatrix.length);
3063 System.arraycopy(translation, 0, mTranslation, 0, mTranslation.length);
3064 }
3065 }
Jeff Browne9bdb312012-04-05 15:30:10 -07003066}