blob: a254ba2cab312f11dad7c9090444bbe8e39de596 [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
Winson Chunge55c0192017-08-24 14:50:48 -070019import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
20import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Wale Ogunwale72919d22016-12-08 18:58:50 -080021import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
22import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -070023import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070024import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020025import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070026import static android.view.Display.DEFAULT_DISPLAY;
Adrian Roos4d18a2e2017-12-19 19:08:05 +010027import static android.view.SurfaceControl.HIDDEN;
Jorim Jaggife762342016-10-13 14:33:27 +020028import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020029import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
Jorim Jaggife762342016-10-13 14:33:27 +020030import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070031import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080032import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070033import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Tony Mak64b8d562017-12-28 17:44:02 +000034
Adrian Roose99bc052017-11-20 17:55:31 +010035import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
36import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070037import static com.android.server.wm.AppTransition.TRANSIT_UNSET;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080038import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080039import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
40import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070041import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070042import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
43import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080044import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Jorim Jaggie4b0f282017-05-17 15:10:29 +020045import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW_VERBOSE;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070046import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080047import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
48import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
49import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
50import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070051import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070052import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070053import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070054import static com.android.server.wm.WindowManagerService.logWithStack;
Vishnu Nair04ab4392018-01-10 11:00:06 -080055import static com.android.server.wm.proto.AppWindowTokenProto.ALL_DRAWN;
56import static com.android.server.wm.proto.AppWindowTokenProto.APP_STOPPED;
57import static com.android.server.wm.proto.AppWindowTokenProto.CLIENT_HIDDEN;
58import static com.android.server.wm.proto.AppWindowTokenProto.DEFER_HIDING_CLIENT;
59import static com.android.server.wm.proto.AppWindowTokenProto.FILLS_PARENT;
60import static com.android.server.wm.proto.AppWindowTokenProto.FROZEN_BOUNDS;
61import static com.android.server.wm.proto.AppWindowTokenProto.HIDDEN_REQUESTED;
62import static com.android.server.wm.proto.AppWindowTokenProto.HIDDEN_SET_FROM_TRANSFERRED_STARTING_WINDOW;
63import static com.android.server.wm.proto.AppWindowTokenProto.IS_REALLY_ANIMATING;
64import static com.android.server.wm.proto.AppWindowTokenProto.IS_WAITING_FOR_TRANSITION_START;
65import static com.android.server.wm.proto.AppWindowTokenProto.LAST_ALL_DRAWN;
66import static com.android.server.wm.proto.AppWindowTokenProto.LAST_SURFACE_SHOWING;
Steven Timotiusaf03df62017-07-18 16:56:43 -070067import static com.android.server.wm.proto.AppWindowTokenProto.NAME;
Vishnu Nair04ab4392018-01-10 11:00:06 -080068import static com.android.server.wm.proto.AppWindowTokenProto.NUM_DRAWN_WINDOWS;
69import static com.android.server.wm.proto.AppWindowTokenProto.NUM_INTERESTING_WINDOWS;
70import static com.android.server.wm.proto.AppWindowTokenProto.REMOVED;
71import static com.android.server.wm.proto.AppWindowTokenProto.REPORTED_DRAWN;
72import static com.android.server.wm.proto.AppWindowTokenProto.REPORTED_VISIBLE;
73import static com.android.server.wm.proto.AppWindowTokenProto.STARTING_DISPLAYED;
74import static com.android.server.wm.proto.AppWindowTokenProto.STARTING_MOVED;
75import static com.android.server.wm.proto.AppWindowTokenProto.STARTING_WINDOW;
76import static com.android.server.wm.proto.AppWindowTokenProto.THUMBNAIL;
Steven Timotiusaf03df62017-07-18 16:56:43 -070077import static com.android.server.wm.proto.AppWindowTokenProto.WINDOW_TOKEN;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080078
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070079import android.annotation.CallSuper;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020080import android.app.Activity;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070081import android.content.res.Configuration;
Jorim Jaggi988f6682017-11-17 17:46:43 +010082import android.graphics.GraphicBuffer;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020083import android.graphics.Point;
Jorim Jaggi0429f352015-12-22 16:29:16 +010084import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070085import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080086import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070087import android.os.IBinder;
Steven Timotiusaf03df62017-07-18 16:56:43 -070088import android.os.RemoteException;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020089import android.os.Trace;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080090import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -070091import android.util.proto.ProtoOutputStream;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020092import android.view.DisplayInfo;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080093import android.view.IApplicationToken;
Robert Carr6914f082017-03-20 19:04:30 -070094import android.view.SurfaceControl;
Tony Mak64b8d562017-12-28 17:44:02 +000095import android.view.SurfaceControl.Transaction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080096import android.view.WindowManager;
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +020097import android.view.WindowManager.LayoutParams;
Tony Mak64b8d562017-12-28 17:44:02 +000098import android.view.animation.Animation;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080099
Tony Mak64b8d562017-12-28 17:44:02 +0000100import com.android.internal.R;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800101import com.android.internal.util.ToBooleanFunction;
102import com.android.server.input.InputApplicationHandle;
Adrian Roose99bc052017-11-20 17:55:31 +0100103import com.android.server.policy.WindowManagerPolicy.StartingSurface;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800104import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800105
106import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +0100107import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800108import java.util.ArrayList;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100109import java.util.LinkedList;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800110
111class AppTokenList extends ArrayList<AppWindowToken> {
112}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800113
114/**
115 * Version of WindowToken that is specifically for a particular application (or
116 * really activity) that is displaying windows.
117 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700118class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800119 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
120
Jorim Jaggi619c9f72017-12-19 18:04:29 +0100121 /**
122 * Value to increment the z-layer when boosting a layer during animations. BOOST in l33tsp34k.
123 */
124 private static final int Z_BOOST_BASE = 800570000;
125
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800126 // Non-null only for application tokens.
127 final IApplicationToken appToken;
128
Wale Ogunwale72919d22016-12-08 18:58:50 -0800129 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700130
Wale Ogunwale51362492016-09-08 17:49:17 -0700131 /** @see WindowContainer#fillsParent() */
132 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -0800133 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800134 boolean mShowForAllUsers;
135 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -0700136
Bryce Lee6d410262017-02-28 15:30:17 -0800137 // Flag set while reparenting to prevent actions normally triggered by an individual parent
138 // change.
139 private boolean mReparenting;
140
Wale Ogunwalee287e192017-04-21 09:30:12 -0700141 // True if we are current in the process of removing this app token from the display
142 private boolean mRemovingFromDisplay = false;
143
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800144 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -0800145 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800146
147 // These are used for determining when all windows associated with
148 // an activity have been drawn, so they can be made visible together
149 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700150 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700151 private long mLastTransactionSequence = Long.MIN_VALUE;
152 private int mNumInterestingWindows;
153 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800154 boolean inPendingTransaction;
155 boolean allDrawn;
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000156 private boolean mLastAllDrawn;
157
Craig Mautner7636dfb2012-11-16 15:24:11 -0800158 // Set to true when this app creates a surface while in the middle of an animation. In that
159 // case do not clear allDrawn until the animation completes.
160 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800161
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800162 // Is this window's surface needed? This is almost like hidden, except
163 // it will sometimes be true a little earlier: when the token has
164 // been shown, but is still waiting for its app transition to execute
165 // before making its windows shown.
166 boolean hiddenRequested;
167
168 // Have we told the window clients to hide themselves?
Wale Ogunwale89973222017-04-23 18:39:45 -0700169 private boolean mClientHidden;
170
171 // If true we will defer setting mClientHidden to true and reporting to the client that it is
172 // hidden.
173 boolean mDeferHidingClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800174
175 // Last visibility state we reported to the app token.
176 boolean reportedVisible;
177
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700178 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700179 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700180
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800181 // Set to true when the token has been removed from the window mgr.
182 boolean removed;
183
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800184 // Information about an application starting window if displayed.
185 StartingData startingData;
186 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800187 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800188 boolean startingDisplayed;
189 boolean startingMoved;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700190 // True if the hidden state of this token was forced to false due to a transferred starting
191 // window.
192 private boolean mHiddenSetFromTransferredStartingWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800193 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700194 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
195 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800196
197 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700198 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800199
Wale Ogunwale571771c2016-08-26 13:18:50 -0700200 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800201 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800202
Craig Mautnerbb742462014-07-07 15:28:55 -0700203 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700204 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700205
Wale Ogunwale72919d22016-12-08 18:58:50 -0800206 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800207
Robert Carre12aece2016-02-02 22:43:27 -0800208 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700209 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700210 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800211
Jorim Jaggife762342016-10-13 14:33:27 +0200212 private boolean mLastContainsShowWhenLockedWindow;
213 private boolean mLastContainsDismissKeyguardWindow;
214
Jorim Jaggi0429f352015-12-22 16:29:16 +0100215 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700216 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100217
Wale Ogunwale6c459212017-05-17 08:56:03 -0700218 private boolean mDisablePreviewScreenshots;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100219
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700220 private Task mLastParent;
Robert Carred3e83b2017-04-21 13:26:55 -0700221
chaviwd3bf08d2017-08-01 17:24:59 -0700222 /**
223 * See {@link #canTurnScreenOn()}
224 */
225 private boolean mCanTurnScreenOn = true;
226
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200227 /**
228 * If we are running an animation, this determines the transition type. Must be one of
229 * AppTransition.TRANSIT_* constants.
230 */
231 private int mTransit;
232
233 /**
234 * If we are running an animation, this determines the flags during this animation. Must be a
235 * bitwise combination of AppTransition.TRANSIT_FLAG_* constants.
236 */
237 private int mTransitFlags;
238
239 /** Whether our surface was set to be showing in the last call to {@link #prepareSurfaces} */
Jorim Jaggifd1891462017-12-29 15:41:36 +0100240 private boolean mLastSurfaceShowing = true;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200241
Jorim Jaggi988f6682017-11-17 17:46:43 +0100242 private AppWindowThumbnail mThumbnail;
243
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000244 /** Have we been asked to have this token keep the screen frozen? */
245 private boolean mFreezingScreen;
246
247 /** Whether this token should be boosted at the top of all app window tokens. */
248 private boolean mNeedsZBoost;
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100249 private Letterbox mLetterbox;
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000250
chaviw23ee71c2017-12-18 11:29:41 -0800251 private final Point mTmpPoint = new Point();
chaviw23012112017-12-20 15:29:04 -0800252 private final Rect mTmpRect = new Rect();
chaviw23ee71c2017-12-18 11:29:41 -0800253
Wale Ogunwale72919d22016-12-08 18:58:50 -0800254 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
255 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
256 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800257 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Bryce Leef3c6a472017-11-14 14:53:06 -0800258 AppWindowContainerController controller) {
259 this(service, token, voiceInteraction, dc, fullscreen);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800260 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800261 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800262 mShowForAllUsers = showForAllUsers;
263 mTargetSdk = targetSdk;
264 mOrientation = orientation;
265 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
266 mLaunchTaskBehind = launchTaskBehind;
267 mAlwaysFocusable = alwaysFocusable;
268 mRotationAnimationHint = rotationAnimationHint;
269
270 // Application tokens start out hidden.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200271 setHidden(true);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800272 hiddenRequested = true;
273 }
274
275 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Bryce Leef3c6a472017-11-14 14:53:06 -0800276 DisplayContent dc, boolean fillsParent) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800277 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
278 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700279 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800280 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800281 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800282 mInputApplicationHandle = new InputApplicationHandle(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800283 }
284
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800285 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
286 firstWindowDrawn = true;
287
288 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700289 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800290
Jorim Jaggi02886a82016-12-06 09:10:06 -0800291 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800292 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
293 + win.mToken + ": first real window is shown, no animation");
294 // If this initial window is animating, stop it -- we will do an animation to reveal
295 // it from behind the starting window, so there is no need for it to also be doing its
296 // own stuff.
Jorim Jaggia5e10572017-11-15 14:36:26 +0100297 win.cancelAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800298 if (getController() != null) {
299 getController().removeStartingWindow();
300 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800301 }
302 updateReportedVisibilityLocked();
303 }
304
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800305 void updateReportedVisibilityLocked() {
306 if (appToken == null) {
307 return;
308 }
309
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700310 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700311 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800312
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700313 mReportedVisibilityResults.reset();
314
315 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700316 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700317 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800318 }
319
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700320 int numInteresting = mReportedVisibilityResults.numInteresting;
321 int numVisible = mReportedVisibilityResults.numVisible;
322 int numDrawn = mReportedVisibilityResults.numDrawn;
323 boolean nowGone = mReportedVisibilityResults.nowGone;
324
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700325 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200326 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting && !isHidden();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700327 if (!nowGone) {
328 // If the app is not yet gone, then it can only become visible/drawn.
329 if (!nowDrawn) {
330 nowDrawn = reportedDrawn;
331 }
332 if (!nowVisible) {
333 nowVisible = reportedVisible;
334 }
335 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800336 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800337 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800338 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700339 if (nowDrawn != reportedDrawn) {
340 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800341 if (controller != null) {
342 controller.reportWindowsDrawn();
343 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700344 }
345 reportedDrawn = nowDrawn;
346 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800347 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700348 if (DEBUG_VISIBILITY) Slog.v(TAG,
349 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800350 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800351 if (controller != null) {
352 if (nowVisible) {
353 controller.reportWindowsVisible();
354 } else {
355 controller.reportWindowsGone();
356 }
357 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800358 }
359 }
360
Wale Ogunwale89973222017-04-23 18:39:45 -0700361 boolean isClientHidden() {
362 return mClientHidden;
363 }
364
365 void setClientHidden(boolean hideClient) {
366 if (mClientHidden == hideClient || (hideClient && mDeferHidingClient)) {
367 return;
368 }
369 mClientHidden = hideClient;
370 sendAppVisibilityToClients();
371 }
372
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700373 boolean setVisibility(WindowManager.LayoutParams lp,
374 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
375
376 boolean delayed = false;
377 inPendingTransaction = false;
Wale Ogunwale9e4721f2017-05-23 19:37:30 -0700378 // Reset the state of mHiddenSetFromTransferredStartingWindow since visibility is actually
379 // been set by the app now.
380 mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale89973222017-04-23 18:39:45 -0700381 setClientHidden(!visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700382
383 // Allow for state changes and animation to be applied if:
384 // * token is transitioning visibility state
385 // * or the token was marked as hidden and is exiting before we had a chance to play the
386 // transition animation
387 // * or this is an opening app and windows are being replaced.
388 boolean visibilityChanged = false;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200389 if (isHidden() == visible || (isHidden() && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700390 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700391 boolean changed = false;
392 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200393 "Changing app " + this + " hidden=" + isHidden() + " performLayout=" + performLayout);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700394
395 boolean runningAppAnimation = false;
396
397 if (transit != AppTransition.TRANSIT_UNSET) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200398 if (applyAnimationLocked(lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700399 delayed = runningAppAnimation = true;
400 }
401 final WindowState window = findMainWindow();
402 //TODO (multidisplay): Magnification is supported only for the default display.
403 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700404 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700405 accessibilityController.onAppWindowTransitionLocked(window, transit);
406 }
407 changed = true;
408 }
409
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700410 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700411 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700412 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700413 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700414 }
415
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200416 setHidden(!visible);
417 hiddenRequested = !visible;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700418 visibilityChanged = true;
419 if (!visible) {
420 stopFreezingScreen(true, true);
421 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700422 // If we are being set visible, and the starting window is not yet displayed,
423 // then make sure it doesn't get displayed.
424 if (startingWindow != null && !startingWindow.isDrawnLw()) {
425 startingWindow.mPolicyVisibility = false;
426 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700427 }
Jorim Jaggi38d44ec2017-06-14 16:04:59 -0700428
429 // We are becoming visible, so better freeze the screen with the windows that are
430 // getting visible so we also wait for them.
431 forAllWindows(mService::makeWindowFreezingScreenIfNeededLocked, true);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700432 }
433
434 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200435 + ": hidden=" + isHidden() + " hiddenRequested=" + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700436
437 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700438 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700439 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700440 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700441 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700442 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700443 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700444 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700445 }
446 }
447
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200448 if (isReallyAnimating()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700449 delayed = true;
450 }
451
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700452 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Jorim Jaggia5e10572017-11-15 14:36:26 +0100453 if ((mChildren.get(i)).isSelfOrChildAnimating()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700454 delayed = true;
455 }
456 }
457
458 if (visibilityChanged) {
459 if (visible && !delayed) {
460 // The token was made immediately visible, there will be no entrance animation.
461 // We need to inform the client the enter animation was finished.
462 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700463 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700464 }
Robert Carr61b81112017-07-17 18:08:15 -0700465
Robert Carre7cc44d2017-03-20 19:04:30 -0700466 // If we are hidden but there is no delay needed we immediately
467 // apply the Surface transaction so that the ActivityManager
Robert Carr61b81112017-07-17 18:08:15 -0700468 // can have some guarantee on the Surface state following
469 // setting the visibility. This captures cases like dismissing
470 // the docked or pinned stack where there is no app transition.
471 //
472 // In the case of a "Null" animation, there will be
473 // no animation but there will still be a transition set.
474 // We still need to delay hiding the surface such that it
475 // can be synchronized with showing the next surface in the transition.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200476 if (isHidden() && !delayed && !mService.mAppTransition.isTransitionSet()) {
Robert Carr6914f082017-03-20 19:04:30 -0700477 SurfaceControl.openTransaction();
478 for (int i = mChildren.size() - 1; i >= 0; i--) {
479 mChildren.get(i).mWinAnimator.hide("immediately hidden");
480 }
481 SurfaceControl.closeTransaction();
482 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700483
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700484 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700485 // The token is not closing nor opening, so even if there is an animation set, that
486 // doesn't mean that it goes through the normal app transition cycle so we have
487 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700488 // TODO(multi-display): notify docked divider on all displays where visibility was
489 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700490 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700491 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100492 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700493 }
494 }
495
496 return delayed;
497 }
498
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +0200499 /**
500 * @return The to top most child window for which {@link LayoutParams#isFullscreen()} returns
501 * true.
502 */
503 WindowState getTopFullscreenWindow() {
504 for (int i = mChildren.size() - 1; i >= 0; i--) {
505 final WindowState win = mChildren.get(i);
506 if (win != null && win.mAttrs.isFullscreen()) {
507 return win;
508 }
509 }
510 return null;
511 }
512
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800513 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700514 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700515 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800516 while (j > 0) {
517 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700518 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700519 final int type = win.mAttrs.type;
520 // No need to loop through child window as base application and starting types can't be
521 // child windows.
522 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700523 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900524 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700525 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800526 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700527 candidate = win;
528 } else {
529 return win;
530 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800531 }
532 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700533 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800534 }
535
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800536 boolean windowsAreFocusable() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700537 return getWindowConfiguration().canReceiveKeys() || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800538 }
539
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800540 AppWindowContainerController getController() {
541 final WindowContainerController controller = super.getController();
542 return controller != null ? (AppWindowContainerController) controller : null;
543 }
544
Wale Ogunwale571771c2016-08-26 13:18:50 -0700545 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700546 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700547 // If the app token isn't hidden then it is considered visible and there is no need to check
548 // its children windows to see if they are visible.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200549 return !isHidden();
Wale Ogunwale44f21802016-09-02 12:49:48 -0700550 }
551
552 @Override
Wale Ogunwalee287e192017-04-21 09:30:12 -0700553 void removeImmediately() {
554 onRemovedFromDisplay();
555 super.removeImmediately();
556 }
557
558 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700559 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800560 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800561 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800562 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800563 }
564
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700565 @Override
566 boolean checkCompleteDeferredRemoval() {
567 if (mIsExiting) {
568 removeIfPossible();
569 }
570 return super.checkCompleteDeferredRemoval();
571 }
572
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700573 void onRemovedFromDisplay() {
Wale Ogunwalee287e192017-04-21 09:30:12 -0700574 if (mRemovingFromDisplay) {
575 return;
576 }
577 mRemovingFromDisplay = true;
578
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700579 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
580
Wale Ogunwale72919d22016-12-08 18:58:50 -0800581 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700582
583 mService.mOpeningApps.remove(this);
Jorim Jaggi45ca0542017-05-30 16:16:01 -0700584 mService.mUnknownAppVisibilityController.appRemovedOrHidden(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100585 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700586 waitingToShow = false;
587 if (mService.mClosingApps.contains(this)) {
588 delayed = true;
589 } else if (mService.mAppTransition.isTransitionSet()) {
590 mService.mClosingApps.add(this);
591 delayed = true;
592 }
593
594 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200595 + " animation=" + getAnimation() + " animating=" + isSelfAnimating());
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700596
597 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
598 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
599
Jorim Jaggi19be6052017-08-03 18:33:43 +0200600 if (startingData != null && getController() != null) {
601 getController().removeStartingWindow();
602 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800603
Winson Chung87e5d552017-04-05 11:49:38 -0700604 // If this window was animating, then we need to ensure that the app transition notifies
605 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
606 // add to that list now
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200607 if (isSelfAnimating()) {
Winson Chung87e5d552017-04-05 11:49:38 -0700608 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
609 }
610
Wale Ogunwalee287e192017-04-21 09:30:12 -0700611 final TaskStack stack = getStack();
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700612 if (delayed && !isEmpty()) {
613 // set the token aside because it has an active animation to be finished
614 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
615 "removeAppToken make exiting: " + this);
Wale Ogunwalee287e192017-04-21 09:30:12 -0700616 if (stack != null) {
617 stack.mExitingAppTokens.add(this);
618 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700619 mIsExiting = true;
620 } else {
621 // Make sure there is no animation running on this token, so any windows associated
622 // with it will be removed as soon as their animations are complete
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200623 cancelAnimation();
Wale Ogunwale3106ae012017-05-16 08:56:37 -0700624 if (stack != null) {
625 stack.mExitingAppTokens.remove(this);
626 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700627 removeIfPossible();
628 }
629
630 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700631 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800632
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700633 if (mService.mFocusedApp == this) {
634 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
635 mService.mFocusedApp = null;
636 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
637 mService.mInputMonitor.setFocusedAppLw(null);
638 }
639
640 if (!delayed) {
641 updateReportedVisibilityLocked();
642 }
Wale Ogunwalee287e192017-04-21 09:30:12 -0700643
644 mRemovingFromDisplay = false;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700645 }
646
Chong Zhange05bcb12016-07-26 17:47:29 -0700647 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700648 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700649 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700650 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700651 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700652 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700653 if (wallpaperMightChange) {
654 requestUpdateWallpaperIfNeeded();
655 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700656 }
657
Robert Carre12aece2016-02-02 22:43:27 -0800658 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700659 destroySurfaces(false /*cleanupOnResume*/);
660 }
661
662 /**
663 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
664 * the client has finished with them.
665 *
666 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
667 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
668 * others so that they are ready to be reused. If set to false (common case), destroy all
669 * surfaces that's eligible, if the app is already stopped.
670 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700671 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700672 boolean destroyedSomething = false;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100673
674 // Copying to a different list as multiple children can be removed.
Jorim Jaggi59f3e922018-01-05 15:40:32 +0100675 final ArrayList<WindowState> children = new ArrayList<>(mChildren);
Jorim Jaggia5e10572017-11-15 14:36:26 +0100676 for (int i = children.size() - 1; i >= 0; i--) {
677 final WindowState win = children.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700678 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800679 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700680 if (destroyedSomething) {
681 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700682 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100683 updateLetterbox(null);
Robert Carre12aece2016-02-02 22:43:27 -0800684 }
685 }
686
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800687 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700688 * Notify that the app is now resumed, and it was not stopped before, perform a clean
689 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800690 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700691 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700692 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700693 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700694 mAppStopped = false;
chaviwd3bf08d2017-08-01 17:24:59 -0700695 // Allow the window to turn the screen on once the app is resumed again.
696 setCanTurnScreenOn(true);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700697 if (!wasStopped) {
698 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800699 }
Robert Carre12aece2016-02-02 22:43:27 -0800700 }
701
Chong Zhangbef461f2015-10-27 11:38:24 -0700702 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700703 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
704 * keeping alive in case they were still being used.
705 */
706 void notifyAppStopped() {
707 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
708 mAppStopped = true;
709 destroySurfaces();
710 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800711 if (getController() != null) {
712 getController().removeStartingWindow();
713 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700714 }
715
Chong Zhang92147042016-05-09 12:47:11 -0700716 void clearAllDrawn() {
717 allDrawn = false;
718 deferClearAllDrawn = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700719 }
720
Bryce Lee6d410262017-02-28 15:30:17 -0800721 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800722 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800723 }
724
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800725 TaskStack getStack() {
726 final Task task = getTask();
727 if (task != null) {
728 return task.mStack;
729 } else {
730 return null;
731 }
732 }
733
Bryce Lee6d410262017-02-28 15:30:17 -0800734 @Override
735 void onParentSet() {
736 super.onParentSet();
737
Robert Carred3e83b2017-04-21 13:26:55 -0700738 final Task task = getTask();
739
Bryce Lee6d410262017-02-28 15:30:17 -0800740 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
741 // access visual elements like the {@link DisplayContent}. We must remove any associations
742 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800743 if (!mReparenting) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800744 if (task == null) {
745 // It is possible we have been marked as a closing app earlier. We must remove ourselves
746 // from this list so we do not participate in any future animations.
747 mService.mClosingApps.remove(this);
Robert Carred3e83b2017-04-21 13:26:55 -0700748 } else if (mLastParent != null && mLastParent.mStack != null) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800749 task.mStack.mExitingAppTokens.remove(this);
750 }
Bryce Lee6d410262017-02-28 15:30:17 -0800751 }
Robert Carred3e83b2017-04-21 13:26:55 -0700752 mLastParent = task;
Bryce Lee6d410262017-02-28 15:30:17 -0800753 }
754
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700755 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700756 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700757 if (startingWindow == win) {
758 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800759 if (getController() != null) {
760 getController().removeStartingWindow();
761 }
Wale Ogunwale6c459212017-05-17 08:56:03 -0700762 } else if (mChildren.size() == 0) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700763 // If this is the last window and we had requested a starting transition window,
764 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800765 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700766 startingData = null;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700767 if (mHiddenSetFromTransferredStartingWindow) {
768 // We set the hidden state to false for the token from a transferred starting window.
769 // We now reset it back to true since the starting window was the last window in the
770 // token.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200771 setHidden(true);
Wale Ogunwale6c459212017-05-17 08:56:03 -0700772 }
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100773 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700774 // If this is the last window except for a starting transition window,
775 // we need to get rid of the starting transition.
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200776 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Last window, removing starting window "
777 + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800778 if (getController() != null) {
779 getController().removeStartingWindow();
780 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700781 }
782 }
783
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700784 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700785 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700786 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800787 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700788 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700789 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800790 // Set mDestroying, we don't want any animation or delayed removal here.
791 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700792 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700793 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800794 }
795 }
796 }
797
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700798 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700799 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700800 // No need to loop through child windows as the answer should be the same as that of the
801 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700802 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700803 return true;
804 }
805 }
806 return false;
807 }
808
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700809 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700810 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
811 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800812
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700813 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700814 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700815 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800816 }
Robert Carra1eb4392015-12-10 12:43:51 -0800817 }
818
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700819 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700820 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800821 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700822 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700823 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700824 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800825 }
826 }
827
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700828 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700829 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
830 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800831
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700832 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700833 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700834 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800835 }
836 }
837
Chong Zhang4d7369a2016-04-25 16:09:14 -0700838 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700839 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700840 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700841 w.requestUpdateWallpaperIfNeeded();
842 }
843 }
844
Chong Zhangd78ddb42016-03-02 17:01:14 -0800845 boolean isRelaunching() {
846 return mPendingRelaunchCount > 0;
847 }
848
Robert Carr68375192017-06-13 12:41:53 -0700849 boolean shouldFreezeBounds() {
850 final Task task = getTask();
851
852 // For freeform windows, we can't freeze the bounds at the moment because this would make
853 // the resizing unresponsive.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700854 if (task == null || task.inFreeformWindowingMode()) {
Robert Carr68375192017-06-13 12:41:53 -0700855 return false;
856 }
857
858 // We freeze the bounds while drag resizing to deal with the time between
859 // the divider/drag handle being released, and the handling it's new
860 // configuration. If we are relaunched outside of the drag resizing state,
861 // we need to be careful not to do this.
862 return getTask().isDragResizing();
863 }
864
Chong Zhangd78ddb42016-03-02 17:01:14 -0800865 void startRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700866 if (shouldFreezeBounds()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -0800867 freezeBounds();
868 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800869
870 // In the process of tearing down before relaunching, the app will
871 // try and clean up it's child surfaces. We need to prevent this from
872 // happening, so we sever the children, transfering their ownership
873 // from the client it-self to the parent surface (owned by us).
874 for (int i = mChildren.size() - 1; i >= 0; i--) {
875 final WindowState w = mChildren.get(i);
876 w.mWinAnimator.detachChildren();
877 }
878
Chong Zhangd78ddb42016-03-02 17:01:14 -0800879 mPendingRelaunchCount++;
880 }
881
882 void finishRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700883 unfreezeBounds();
884
Chong Zhangd78ddb42016-03-02 17:01:14 -0800885 if (mPendingRelaunchCount > 0) {
886 mPendingRelaunchCount--;
Bryce Lee081554b2017-05-25 07:52:12 -0700887 } else {
888 // Update keyguard flags upon finishing relaunch.
889 checkKeyguardFlagsChanged();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800890 }
891 }
892
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700893 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700894 if (mPendingRelaunchCount == 0) {
895 return;
896 }
Robert Carr68375192017-06-13 12:41:53 -0700897 unfreezeBounds();
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700898 mPendingRelaunchCount = 0;
899 }
900
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700901 /**
902 * Returns true if the new child window we are adding to this token is considered greater than
903 * the existing child window in this token in terms of z-order.
904 */
905 @Override
906 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
907 WindowState existingWindow) {
908 final int type1 = newWindow.mAttrs.type;
909 final int type2 = existingWindow.mAttrs.type;
910
911 // Base application windows should be z-ordered BELOW all other windows in the app token.
912 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
913 return false;
914 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
915 return true;
916 }
917
918 // Starting windows should be z-ordered ABOVE all other windows in the app token.
919 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
920 return true;
921 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
922 return false;
923 }
924
925 // Otherwise the new window is greater than the existing window.
926 return true;
927 }
928
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700929 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800930 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700931 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700932
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700933 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700934 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700935 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700936 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
937 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700938
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700939 // if we got a replacement window, reset the timeout to give drawing more time
940 if (gotReplacementWindow) {
941 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800942 }
Jorim Jaggife762342016-10-13 14:33:27 +0200943 checkKeyguardFlagsChanged();
944 }
945
946 @Override
947 void removeChild(WindowState child) {
948 super.removeChild(child);
949 checkKeyguardFlagsChanged();
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100950 updateLetterbox(child);
Robert Carra1eb4392015-12-10 12:43:51 -0800951 }
952
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700953 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700954 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700955 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700956 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800957 return true;
958 }
959 }
960 return false;
961 }
962
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700963 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700964 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700965 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800966 }
967 }
968
Winson Chung30480042017-01-26 10:55:34 -0800969 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800970 final Task currentTask = getTask();
971 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -0800972 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800973 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800974 }
Bryce Lee6d410262017-02-28 15:30:17 -0800975
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800976 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -0800977 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800978 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -0800979 + " belongs to a different stack than " + task);
980 }
981
Winson Chung30480042017-01-26 10:55:34 -0800982 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800983 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800984 final DisplayContent prevDisplayContent = getDisplayContent();
985
Bryce Lee6d410262017-02-28 15:30:17 -0800986 mReparenting = true;
987
Winson Chung30480042017-01-26 10:55:34 -0800988 getParent().removeChild(this);
989 task.addChild(this, position);
990
Bryce Lee6d410262017-02-28 15:30:17 -0800991 mReparenting = false;
992
Winson Chung30480042017-01-26 10:55:34 -0800993 // Relayout display(s).
994 final DisplayContent displayContent = task.getDisplayContent();
995 displayContent.setLayoutNeeded();
996 if (prevDisplayContent != displayContent) {
997 onDisplayChanged(displayContent);
998 prevDisplayContent.setLayoutNeeded();
999 }
1000 }
1001
Jorim Jaggi0429f352015-12-22 16:29:16 +01001002 /**
1003 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
1004 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
1005 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
1006 * with a queue.
1007 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001008 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001009 final Task task = getTask();
1010 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001011
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001012 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001013 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001014 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001015 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001016 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001017 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001018 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001019 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001020 }
1021
1022 /**
1023 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1024 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001025 private void unfreezeBounds() {
Robert Carr68375192017-06-13 12:41:53 -07001026 if (mFrozenBounds.isEmpty()) {
1027 return;
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001028 }
Robert Carr68375192017-06-13 12:41:53 -07001029 mFrozenBounds.remove();
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001030 if (!mFrozenMergedConfig.isEmpty()) {
1031 mFrozenMergedConfig.remove();
1032 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001033 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001034 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001035 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001036 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001037 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001038 }
1039
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001040 void setAppLayoutChanges(int changes, String reason) {
1041 if (!mChildren.isEmpty()) {
1042 final DisplayContent dc = getDisplayContent();
1043 dc.pendingLayoutChanges |= changes;
1044 if (DEBUG_LAYOUT_REPEATS) {
1045 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001046 }
1047 }
1048 }
1049
1050 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001051 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001052 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001053 if (win.removeReplacedWindowIfNeeded(replacement)) {
1054 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001055 }
1056 }
1057 }
1058
1059 void startFreezingScreen() {
1060 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001061 + isHidden() + " freezing=" + mFreezingScreen + " hiddenRequested="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001062 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001063 if (!hiddenRequested) {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001064 if (!mFreezingScreen) {
1065 mFreezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001066 mService.registerAppFreezeListener(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001067 mService.mAppsFreezingScreen++;
1068 if (mService.mAppsFreezingScreen == 1) {
Bryce Lee8f853582017-06-05 17:25:59 -07001069 mService.startFreezingDisplayLocked(false, 0, 0, getDisplayContent());
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001070 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1071 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001072 }
1073 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001074 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001075 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001076 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001077 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001078 }
1079 }
1080 }
1081
1082 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001083 if (!mFreezingScreen) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001084 return;
1085 }
1086 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001087 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001088 boolean unfrozeWindows = false;
1089 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001090 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001091 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001092 }
1093 if (force || unfrozeWindows) {
1094 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001095 mFreezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001096 mService.unregisterAppFreezeListener(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001097 mService.mAppsFreezingScreen--;
1098 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001099 }
1100 if (unfreezeSurfaceNow) {
1101 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001102 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001103 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001104 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001105 }
1106 }
1107
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001108 @Override
1109 public void onAppFreezeTimeout() {
1110 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1111 stopFreezingScreen(true, true);
1112 }
1113
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001114 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001115 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001116 if (fromToken == null) {
1117 return false;
1118 }
1119
1120 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001121 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001122 // In this case, the starting icon has already been displayed, so start
1123 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001124 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001125
1126 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1127 + " from " + fromToken + " to " + this);
1128
1129 final long origId = Binder.clearCallingIdentity();
Peter Visontay3556a3b2017-11-01 17:23:17 +00001130 try {
1131 // Transfer the starting window over to the new token.
1132 startingData = fromToken.startingData;
1133 startingSurface = fromToken.startingSurface;
1134 startingDisplayed = fromToken.startingDisplayed;
1135 fromToken.startingDisplayed = false;
1136 startingWindow = tStartingWindow;
1137 reportedVisible = fromToken.reportedVisible;
1138 fromToken.startingData = null;
1139 fromToken.startingSurface = null;
1140 fromToken.startingWindow = null;
1141 fromToken.startingMoved = true;
1142 tStartingWindow.mToken = this;
1143 tStartingWindow.mAppToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001144
Peter Visontay3556a3b2017-11-01 17:23:17 +00001145 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1146 "Removing starting " + tStartingWindow + " from " + fromToken);
1147 fromToken.removeChild(tStartingWindow);
1148 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
1149 fromToken.mHiddenSetFromTransferredStartingWindow = false;
1150 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001151
Peter Visontay3556a3b2017-11-01 17:23:17 +00001152 // Propagate other interesting state between the tokens. If the old token is displayed,
1153 // we should immediately force the new one to be displayed. If it is animating, we need
1154 // to move that animation to the new one.
1155 if (fromToken.allDrawn) {
1156 allDrawn = true;
1157 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1158 }
1159 if (fromToken.firstWindowDrawn) {
1160 firstWindowDrawn = true;
1161 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001162 if (!fromToken.isHidden()) {
1163 setHidden(false);
Peter Visontay3556a3b2017-11-01 17:23:17 +00001164 hiddenRequested = false;
1165 mHiddenSetFromTransferredStartingWindow = true;
1166 }
1167 setClientHidden(fromToken.mClientHidden);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001168
Jorim Jaggi980c9de2017-11-17 01:41:37 +01001169 transferAnimation(fromToken);
1170
1171 // When transferring an animation, we no longer need to apply an animation to the
1172 // the token we transfer the animation over. Thus, remove the animation from
1173 // pending opening apps.
1174 mService.mOpeningApps.remove(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001175
Peter Visontay3556a3b2017-11-01 17:23:17 +00001176 mService.updateFocusedWindowLocked(
1177 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
1178 getDisplayContent().setLayoutNeeded();
1179 mService.mWindowPlacerLocked.performSurfacePlacement();
1180 } finally {
1181 Binder.restoreCallingIdentity(origId);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001182 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001183 return true;
1184 } else if (fromToken.startingData != null) {
1185 // The previous app was getting ready to show a
1186 // starting window, but hasn't yet done so. Steal it!
1187 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1188 "Moving pending starting from " + fromToken + " to " + this);
1189 startingData = fromToken.startingData;
1190 fromToken.startingData = null;
1191 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001192 if (getController() != null) {
1193 getController().scheduleAddStartingWindow();
1194 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001195 return true;
1196 }
1197
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001198 // TODO: Transfer thumbnail
1199
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001200 return false;
1201 }
1202
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001203 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001204 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001205 }
1206
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001207 @Override
1208 void onAppTransitionDone() {
1209 sendingToBottom = false;
1210 }
1211
Wale Ogunwale51362492016-09-08 17:49:17 -07001212 /**
1213 * We override because this class doesn't want its children affecting its reported orientation
1214 * in anyway.
1215 */
1216 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001217 int getOrientation(int candidate) {
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001218 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1219 // Allow app to specify orientation regardless of its visibility state if the current
1220 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1221 // wants us to use the orientation of the app behind it.
1222 return mOrientation;
1223 }
1224
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001225 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1226 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1227 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001228 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Bryce Lee00d586d2017-07-28 20:48:43 -07001229 && (isVisible() || mService.mOpeningApps.contains(this) || isOnTop())) {
Bryce Leea163b762017-01-24 11:05:01 -08001230 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001231 }
Bryce Leea163b762017-01-24 11:05:01 -08001232
1233 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001234 }
1235
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001236 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1237 int getOrientationIgnoreVisibility() {
1238 return mOrientation;
1239 }
1240
Craig Mautnerdbb79912012-03-01 18:59:14 -08001241 @Override
Winson Chunge55c0192017-08-24 14:50:48 -07001242 public void onConfigurationChanged(Configuration newParentConfig) {
1243 final int prevWinMode = getWindowingMode();
1244 super.onConfigurationChanged(newParentConfig);
1245 final int winMode = getWindowingMode();
1246
1247 if (prevWinMode == winMode) {
1248 return;
1249 }
1250
1251 if (prevWinMode != WINDOWING_MODE_UNDEFINED && winMode == WINDOWING_MODE_PINNED) {
1252 // Entering PiP from fullscreen, reset the snap fraction
1253 mDisplayContent.mPinnedStackControllerLocked.resetReentrySnapFraction(this);
1254 } else if (prevWinMode == WINDOWING_MODE_PINNED && winMode != WINDOWING_MODE_UNDEFINED) {
1255 // Leaving PiP to fullscreen, save the snap fraction based on the pre-animation bounds
1256 // for the next re-entry into PiP (assuming the activity is not hidden or destroyed)
1257 final TaskStack pinnedStack = mDisplayContent.getPinnedStack();
1258 if (pinnedStack != null) {
1259 mDisplayContent.mPinnedStackControllerLocked.saveReentrySnapFraction(this,
1260 pinnedStack.mPreAnimationBounds);
1261 }
1262 }
1263 }
1264
1265 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001266 void checkAppWindowsReadyToShow() {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001267 if (allDrawn == mLastAllDrawn) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001268 return;
1269 }
1270
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001271 mLastAllDrawn = allDrawn;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001272 if (!allDrawn) {
1273 return;
1274 }
1275
1276 // The token has now changed state to having all windows shown... what to do, what to do?
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001277 if (mFreezingScreen) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001278 showAllWindowsLocked();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001279 stopFreezingScreen(false, true);
1280 if (DEBUG_ORIENTATION) Slog.i(TAG,
1281 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001282 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001283 // This will set mOrientationChangeComplete and cause a pass through layout.
1284 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001285 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001286 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001287 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001288
1289 // We can now show all of the drawn windows!
1290 if (!mService.mOpeningApps.contains(this)) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001291 showAllWindowsLocked();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001292 }
1293 }
1294 }
1295
Matthew Ng5d23afa2017-06-21 16:16:24 -07001296 /**
Bryce Leed390deb2017-06-22 13:14:28 -07001297 * Returns whether the drawn window states of this {@link AppWindowToken} has considered every
1298 * child {@link WindowState}. A child is considered if it has been passed into
1299 * {@link #updateDrawnWindowStates(WindowState)} after being added. This is used to determine
1300 * whether states, such as {@code allDrawn}, can be set, which relies on state variables such as
1301 * {@code mNumInterestingWindows}, which depend on all {@link WindowState}s being considered.
1302 *
1303 * @return {@code true} If all children have been considered, {@code false}.
1304 */
1305 private boolean allDrawnStatesConsidered() {
Bryce Lee6311c4b2017-07-06 14:09:29 -07001306 for (int i = mChildren.size() - 1; i >= 0; --i) {
1307 final WindowState child = mChildren.get(i);
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001308 if (child.mightAffectAllDrawn() && !child.getDrawnStateEvaluated()) {
Bryce Leed390deb2017-06-22 13:14:28 -07001309 return false;
1310 }
1311 }
1312 return true;
1313 }
1314
1315 /**
Matthew Ng5d23afa2017-06-21 16:16:24 -07001316 * Determines if the token has finished drawing. This should only be called from
1317 * {@link DisplayContent#applySurfaceChangesTransaction}
1318 */
Matthew Ng498c71d2017-04-18 13:55:45 -07001319 void updateAllDrawn() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001320 if (!allDrawn) {
Matthew Ng498c71d2017-04-18 13:55:45 -07001321 // Number of drawn windows can be less when a window is being relaunched, wait for
Bryce Leed390deb2017-06-22 13:14:28 -07001322 // all windows to be launched and drawn for this token be considered all drawn.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001323 final int numInteresting = mNumInterestingWindows;
Bryce Leed390deb2017-06-22 13:14:28 -07001324
1325 // We must make sure that all present children have been considered (determined by
1326 // {@link #allDrawnStatesConsidered}) before evaluating whether everything has been
1327 // drawn.
1328 if (numInteresting > 0 && allDrawnStatesConsidered()
1329 && mNumDrawnWindows >= numInteresting && !isRelaunching()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001330 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001331 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001332 allDrawn = true;
1333 // Force an additional layout pass where
1334 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Matthew Ng498c71d2017-04-18 13:55:45 -07001335 if (mDisplayContent != null) {
1336 mDisplayContent.setLayoutNeeded();
1337 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001338 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001339
Winson Chunge7ba6862017-05-24 12:13:33 -07001340 // Notify the pinned stack upon all windows drawn. If there was an animation in
1341 // progress then this signal will resume that animation.
Wale Ogunwale61911492017-10-11 08:50:50 -07001342 final TaskStack pinnedStack = mDisplayContent.getPinnedStack();
Winson Chunge7ba6862017-05-24 12:13:33 -07001343 if (pinnedStack != null) {
1344 pinnedStack.onAllWindowsDrawn();
Robert Carrecc06b32017-04-18 14:25:10 -07001345 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001346 }
1347 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001348 }
1349
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001350 /**
1351 * Updated this app token tracking states for interesting and drawn windows based on the window.
1352 *
1353 * @return Returns true if the input window is considered interesting and drawn while all the
1354 * windows in this app token where not considered drawn as of the last pass.
1355 */
1356 boolean updateDrawnWindowStates(WindowState w) {
Bryce Leed390deb2017-06-22 13:14:28 -07001357 w.setDrawnStateEvaluated(true /*evaluated*/);
1358
Jorim Jaggie4b0f282017-05-17 15:10:29 +02001359 if (DEBUG_STARTING_WINDOW_VERBOSE && w == startingWindow) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001360 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001361 + " allDrawn=" + allDrawn + " freezingScreen=" + mFreezingScreen);
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001362 }
1363
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001364 if (allDrawn && !mFreezingScreen) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001365 return false;
1366 }
1367
1368 if (mLastTransactionSequence != mService.mTransactionSequence) {
1369 mLastTransactionSequence = mService.mTransactionSequence;
1370 mNumInterestingWindows = mNumDrawnWindows = 0;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001371 startingDisplayed = false;
1372 }
1373
1374 final WindowStateAnimator winAnimator = w.mWinAnimator;
1375
1376 boolean isInterestingAndDrawn = false;
1377
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001378 if (!allDrawn && w.mightAffectAllDrawn()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001379 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1380 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001381 + ", isAnimationSet=" + isSelfAnimating());
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001382 if (!w.isDrawnLw()) {
1383 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1384 + " pv=" + w.mPolicyVisibility
1385 + " mDrawState=" + winAnimator.drawStateToString()
1386 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001387 + " a=" + isSelfAnimating());
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001388 }
1389 }
1390
1391 if (w != startingWindow) {
1392 if (w.isInteresting()) {
1393 mNumInterestingWindows++;
1394 if (w.isDrawnLw()) {
1395 mNumDrawnWindows++;
1396
1397 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1398 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001399 + " freezingScreen=" + mFreezingScreen
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001400 + " mAppFreezing=" + w.mAppFreezing);
1401
1402 isInterestingAndDrawn = true;
1403 }
1404 }
1405 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001406 if (getController() != null) {
1407 getController().reportStartingWindowDrawn();
1408 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001409 startingDisplayed = true;
1410 }
1411 }
1412
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001413 return isInterestingAndDrawn;
1414 }
1415
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001416 void updateLetterbox(WindowState winHint) {
1417 final WindowState w = findMainWindow();
1418 if (w != winHint && winHint != null && w != null) {
1419 return;
1420 }
1421 final boolean needsLetterbox = w != null && w.isLetterboxedAppWindow()
1422 && fillsParent() && w.hasDrawnLw();
1423 if (needsLetterbox) {
1424 if (mLetterbox == null) {
1425 mLetterbox = new Letterbox(() -> makeChildSurface(null));
1426 }
1427 mLetterbox.setDimensions(mPendingTransaction, getParent().getBounds(), w.mFrame);
1428 } else if (mLetterbox != null) {
1429 final SurfaceControl.Transaction t = new SurfaceControl.Transaction();
Adrian Roos2dfb7852018-01-15 13:41:37 +01001430 // Make sure we have a transaction here, in case we're called outside of a transaction.
1431 // This does not use mPendingTransaction, because SurfaceAnimator uses a
1432 // global transaction in onAnimationEnd.
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001433 SurfaceControl.openTransaction();
1434 try {
1435 mLetterbox.hide(t);
1436 } finally {
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001437 SurfaceControl.mergeToGlobalTransaction(t);
1438 SurfaceControl.closeTransaction();
1439 }
1440 }
1441 }
1442
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001443 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001444 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001445 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1446 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1447 // TODO: Investigate if we need to continue to do this or if we can just process them
1448 // in-order.
1449 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001450 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001451 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001452 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001453 }
1454
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001455 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1456 boolean traverseTopToBottom) {
1457 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001458 }
1459
1460 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001461 AppWindowToken asAppWindowToken() {
1462 // I am an app window token!
1463 return this;
1464 }
1465
1466 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001467 boolean fillsParent() {
1468 return mFillsParent;
1469 }
1470
1471 void setFillsParent(boolean fillsParent) {
1472 mFillsParent = fillsParent;
1473 }
1474
Jorim Jaggife762342016-10-13 14:33:27 +02001475 boolean containsDismissKeyguardWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001476 // Window state is transient during relaunch. We are not guaranteed to be frozen during the
1477 // entirety of the relaunch.
1478 if (isRelaunching()) {
1479 return mLastContainsDismissKeyguardWindow;
1480 }
1481
Jorim Jaggife762342016-10-13 14:33:27 +02001482 for (int i = mChildren.size() - 1; i >= 0; i--) {
1483 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1484 return true;
1485 }
1486 }
1487 return false;
1488 }
1489
1490 boolean containsShowWhenLockedWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001491 // When we are relaunching, it is possible for us to be unfrozen before our previous
1492 // windows have been added back. Using the cached value ensures that our previous
1493 // showWhenLocked preference is honored until relaunching is complete.
1494 if (isRelaunching()) {
1495 return mLastContainsShowWhenLockedWindow;
1496 }
1497
Jorim Jaggife762342016-10-13 14:33:27 +02001498 for (int i = mChildren.size() - 1; i >= 0; i--) {
1499 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1500 return true;
1501 }
1502 }
Bryce Lee081554b2017-05-25 07:52:12 -07001503
Jorim Jaggife762342016-10-13 14:33:27 +02001504 return false;
1505 }
1506
1507 void checkKeyguardFlagsChanged() {
1508 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1509 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1510 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1511 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1512 mService.notifyKeyguardFlagsChanged(null /* callback */);
1513 }
1514 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1515 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1516 }
1517
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001518 WindowState getImeTargetBelowWindow(WindowState w) {
1519 final int index = mChildren.indexOf(w);
1520 if (index > 0) {
1521 final WindowState target = mChildren.get(index - 1);
1522 if (target.canBeImeTarget()) {
1523 return target;
1524 }
1525 }
1526 return null;
1527 }
1528
Winson Chungbe9be7f2017-06-28 10:55:22 -07001529 int getLowestAnimLayer() {
1530 for (int i = 0; i < mChildren.size(); i++) {
1531 final WindowState w = mChildren.get(i);
1532 if (w.mRemoved) {
1533 continue;
1534 }
1535 return w.mWinAnimator.mAnimLayer;
1536 }
1537 return Integer.MAX_VALUE;
1538 }
1539
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001540 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1541 WindowState candidate = null;
1542 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1543 final WindowState w = mChildren.get(i);
1544 if (w.mRemoved) {
1545 continue;
1546 }
1547 if (candidate == null || w.mWinAnimator.mAnimLayer >
1548 candidate.mWinAnimator.mAnimLayer) {
1549 candidate = w;
1550 }
1551 }
1552 return candidate;
1553 }
1554
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001555 /**
1556 * See {@link Activity#setDisablePreviewScreenshots}.
1557 */
1558 void setDisablePreviewScreenshots(boolean disable) {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001559 mDisablePreviewScreenshots = disable;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001560 }
1561
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001562 /**
chaviwd3bf08d2017-08-01 17:24:59 -07001563 * Sets whether the current launch can turn the screen on. See {@link #canTurnScreenOn()}
1564 */
1565 void setCanTurnScreenOn(boolean canTurnScreenOn) {
1566 mCanTurnScreenOn = canTurnScreenOn;
1567 }
1568
1569 /**
1570 * Indicates whether the current launch can turn the screen on. This is to prevent multiple
1571 * relayouts from turning the screen back on. The screen should only turn on at most
1572 * once per activity resume.
1573 *
1574 * @return true if the screen can be turned on.
1575 */
1576 boolean canTurnScreenOn() {
1577 return mCanTurnScreenOn;
1578 }
1579
1580 /**
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001581 * Retrieves whether we'd like to generate a snapshot that's based solely on the theme. This is
1582 * the case when preview screenshots are disabled {@link #setDisablePreviewScreenshots} or when
1583 * we can't take a snapshot for other reasons, for example, if we have a secure window.
1584 *
1585 * @return True if we need to generate an app theme snapshot, false if we'd like to take a real
1586 * screenshot.
1587 */
1588 boolean shouldUseAppThemeSnapshot() {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001589 return mDisablePreviewScreenshots || forAllWindows(w -> (w.mAttrs.flags & FLAG_SECURE) != 0,
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001590 true /* topToBottom */);
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001591 }
1592
chaviw23ee71c2017-12-18 11:29:41 -08001593 @Override
Jorim Jaggi596a1992017-12-29 14:48:02 +01001594 public SurfaceControl getAnimationLeashParent() {
1595 return getAppAnimationLayer();
chaviw23ee71c2017-12-18 11:29:41 -08001596 }
1597
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001598 boolean applyAnimationLocked(WindowManager.LayoutParams lp, int transit, boolean enter,
1599 boolean isVoiceInteraction) {
1600
1601 if (mService.mDisableTransitionAnimation) {
1602 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
1603 Slog.v(TAG_WM, "applyAnimation: transition animation is disabled. atoken=" + this);
1604 }
1605 cancelAnimation();
1606 return false;
1607 }
1608
1609 // Only apply an animation if the display isn't frozen. If it is frozen, there is no reason
1610 // to animate and it can cause strange artifacts when we unfreeze the display if some
1611 // different animation is running.
1612 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "AWT#applyAnimationLocked");
1613 if (okToAnimate()) {
1614 final Animation a = loadAnimation(lp, transit, enter, isVoiceInteraction);
1615 if (a != null) {
chaviw23ee71c2017-12-18 11:29:41 -08001616 final TaskStack stack = getStack();
1617 mTmpPoint.set(0, 0);
chaviw23012112017-12-20 15:29:04 -08001618 mTmpRect.setEmpty();
chaviw23ee71c2017-12-18 11:29:41 -08001619 if (stack != null) {
1620 stack.getRelativePosition(mTmpPoint);
chaviw23012112017-12-20 15:29:04 -08001621 stack.getBounds(mTmpRect);
chaviw977482a2017-12-28 11:35:53 -08001622 mTmpRect.offsetTo(0, 0);
chaviw23ee71c2017-12-18 11:29:41 -08001623 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001624 final AnimationAdapter adapter = new LocalAnimationAdapter(
chaviw23012112017-12-20 15:29:04 -08001625 new WindowAnimationSpec(a, mTmpPoint, mTmpRect,
1626 mService.mAppTransition.canSkipFirstFrame(),
1627 mService.mAppTransition.getAppStackClipMode()),
Jorim Jaggi2e3c31d2017-11-20 19:49:00 +01001628 mService.mSurfaceAnimationRunner);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001629 if (a.getZAdjustment() == Animation.ZORDER_TOP) {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001630 mNeedsZBoost = true;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001631 }
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001632 startAnimation(getPendingTransaction(), adapter, !isVisible());
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001633 mTransit = transit;
1634 mTransitFlags = mService.mAppTransition.getTransitFlags();
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001635 }
1636 } else {
1637 cancelAnimation();
1638 }
1639 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
1640
1641 return isReallyAnimating();
1642 }
1643
1644 private Animation loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter,
1645 boolean isVoiceInteraction) {
1646 final DisplayContent displayContent = getTask().getDisplayContent();
1647 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
1648 final int width = displayInfo.appWidth;
1649 final int height = displayInfo.appHeight;
1650 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG_WM,
1651 "applyAnimation: atoken=" + this);
1652
1653 // Determine the visible rect to calculate the thumbnail clip
1654 final WindowState win = findMainWindow();
1655 final Rect frame = new Rect(0, 0, width, height);
1656 final Rect displayFrame = new Rect(0, 0,
1657 displayInfo.logicalWidth, displayInfo.logicalHeight);
1658 final Rect insets = new Rect();
1659 final Rect stableInsets = new Rect();
1660 Rect surfaceInsets = null;
1661 final boolean freeform = win != null && win.inFreeformWindowingMode();
1662 if (win != null) {
1663 // Containing frame will usually cover the whole screen, including dialog windows.
1664 // For freeform workspace windows it will not cover the whole screen and it also
1665 // won't exactly match the final freeform window frame (e.g. when overlapping with
1666 // the status bar). In that case we need to use the final frame.
1667 if (freeform) {
1668 frame.set(win.mFrame);
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001669 } else if (win.isLetterboxedAppWindow()) {
1670 frame.set(getTask().getBounds());
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001671 } else {
1672 frame.set(win.mContainingFrame);
1673 }
1674 surfaceInsets = win.getAttrs().surfaceInsets;
1675 insets.set(win.mContentInsets);
1676 stableInsets.set(win.mStableInsets);
1677 }
1678
1679 if (mLaunchTaskBehind) {
1680 // Differentiate the two animations. This one which is briefly on the screen
1681 // gets the !enter animation, and the other activity which remains on the
1682 // screen gets the enter animation. Both appear in the mOpeningApps set.
1683 enter = false;
1684 }
1685 if (DEBUG_APP_TRANSITIONS) Slog.d(TAG_WM, "Loading animation for app transition."
1686 + " transit=" + AppTransition.appTransitionToString(transit) + " enter=" + enter
1687 + " frame=" + frame + " insets=" + insets + " surfaceInsets=" + surfaceInsets);
1688 final Configuration displayConfig = displayContent.getConfiguration();
1689 final Animation a = mService.mAppTransition.loadAnimation(lp, transit, enter,
1690 displayConfig.uiMode, displayConfig.orientation, frame, displayFrame, insets,
1691 surfaceInsets, stableInsets, isVoiceInteraction, freeform, getTask().mTaskId);
1692 if (a != null) {
1693 if (DEBUG_ANIM) logWithStack(TAG, "Loaded animation " + a + " for " + this);
1694 final int containingWidth = frame.width();
1695 final int containingHeight = frame.height();
1696 a.initialize(containingWidth, containingHeight, width, height);
1697 a.scaleCurrentDuration(mService.getTransitionAnimationScaleLocked());
1698 }
1699 return a;
1700 }
1701
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001702 @Override
1703 protected void setLayer(Transaction t, int layer) {
1704 if (!mSurfaceAnimator.hasLeash()) {
1705 t.setLayer(mSurfaceControl, layer);
1706 }
1707 }
1708
1709 @Override
1710 protected void setRelativeLayer(Transaction t, SurfaceControl relativeTo, int layer) {
1711 if (!mSurfaceAnimator.hasLeash()) {
1712 t.setRelativeLayer(mSurfaceControl, relativeTo, layer);
1713 }
1714 }
1715
1716 @Override
1717 protected void reparentSurfaceControl(Transaction t, SurfaceControl newParent) {
1718 if (!mSurfaceAnimator.hasLeash()) {
1719 t.reparent(mSurfaceControl, newParent.getHandle());
1720 }
1721 }
1722
1723 @Override
1724 public void onAnimationLeashCreated(Transaction t, SurfaceControl leash) {
1725
1726 // The leash is parented to the animation layer. We need to preserve the z-order by using
1727 // the prefix order index, but we boost if necessary.
1728 int layer = getPrefixOrderIndex();
1729 if (mNeedsZBoost) {
1730 layer += Z_BOOST_BASE;
1731 }
1732 leash.setLayer(layer);
1733 }
1734
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001735 /**
1736 * This must be called while inside a transaction.
1737 */
1738 void showAllWindowsLocked() {
1739 forAllWindows(windowState -> {
1740 if (DEBUG_VISIBILITY) Slog.v(TAG, "performing show on: " + windowState);
1741 windowState.performShowLocked();
1742 }, false /* traverseTopToBottom */);
Jorim Jaggia5e10572017-11-15 14:36:26 +01001743 }
1744
1745 @Override
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001746 protected void onAnimationFinished() {
1747 super.onAnimationFinished();
1748
1749 mTransit = TRANSIT_UNSET;
1750 mTransitFlags = 0;
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001751 mNeedsZBoost = false;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001752
1753 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM | FINISH_LAYOUT_REDO_WALLPAPER,
1754 "AppWindowToken");
1755
Jorim Jaggi988f6682017-11-17 17:46:43 +01001756 clearThumbnail();
1757
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001758 if (mService.mInputMethodTarget != null && mService.mInputMethodTarget.mAppToken == this) {
1759 getDisplayContent().computeImeTarget(true /* updateImeTarget */);
1760 }
1761
1762 if (DEBUG_ANIM) Slog.v(TAG, "Animation done in " + this
1763 + ": reportedVisible=" + reportedVisible
1764 + " okToDisplay=" + okToDisplay()
1765 + " okToAnimate=" + okToAnimate()
1766 + " startingDisplayed=" + startingDisplayed);
1767
1768 // WindowState.onExitAnimationDone might modify the children list, so make a copy and then
1769 // traverse the copy.
1770 final ArrayList<WindowState> children = new ArrayList<>(mChildren);
1771 children.forEach(WindowState::onExitAnimationDone);
1772
1773 mService.mAppTransition.notifyAppTransitionFinishedLocked(token);
1774 scheduleAnimation();
1775 }
1776
1777 @Override
1778 boolean isAppAnimating() {
1779 return isSelfAnimating();
1780 }
1781
1782 @Override
1783 boolean isSelfAnimating() {
1784 // If we are about to start a transition, we also need to be considered animating.
1785 return isWaitingForTransitionStart() || isReallyAnimating();
1786 }
1787
1788 /**
1789 * @return True if and only if we are actually running an animation. Note that
1790 * {@link #isSelfAnimating} also returns true if we are waiting for an animation to
1791 * start.
1792 */
1793 private boolean isReallyAnimating() {
1794 return super.isSelfAnimating();
1795 }
1796
Jorim Jaggi988f6682017-11-17 17:46:43 +01001797 @Override
1798 void cancelAnimation() {
1799 super.cancelAnimation();
1800 clearThumbnail();
1801 }
1802
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001803 boolean isWaitingForTransitionStart() {
1804 return mService.mAppTransition.isTransitionSet()
1805 && (mService.mOpeningApps.contains(this) || mService.mClosingApps.contains(this));
1806 }
1807
1808 public int getTransit() {
1809 return mTransit;
1810 }
1811
1812 int getTransitFlags() {
1813 return mTransitFlags;
1814 }
1815
Jorim Jaggi988f6682017-11-17 17:46:43 +01001816 void attachThumbnailAnimation() {
1817 if (!isReallyAnimating()) {
1818 return;
1819 }
1820 final int taskId = getTask().mTaskId;
1821 final GraphicBuffer thumbnailHeader =
1822 mService.mAppTransition.getAppTransitionThumbnailHeader(taskId);
1823 if (thumbnailHeader == null) {
1824 if (DEBUG_APP_TRANSITIONS) Slog.d(TAG, "No thumbnail header bitmap for: " + taskId);
1825 return;
1826 }
1827 clearThumbnail();
1828 mThumbnail = new AppWindowThumbnail(getPendingTransaction(), this, thumbnailHeader);
1829 mThumbnail.startAnimation(getPendingTransaction(), loadThumbnailAnimation(thumbnailHeader));
1830 }
1831
Tony Mak64b8d562017-12-28 17:44:02 +00001832 /**
1833 * Attaches a surface with a thumbnail for the
1834 * {@link android.app.ActivityOptions#ANIM_OPEN_CROSS_PROFILE_APPS} animation.
1835 */
1836 void attachCrossProfileAppsThumbnailAnimation() {
1837 if (!isReallyAnimating()) {
1838 return;
1839 }
1840 clearThumbnail();
1841
1842 final WindowState win = findMainWindow();
1843 if (win == null) {
1844 return;
1845 }
1846 final Rect frame = win.mFrame;
1847 final int thumbnailDrawableRes = getTask().mUserId == mService.mCurrentUserId
1848 ? R.drawable.ic_account_circle
1849 : R.drawable.ic_corp_badge_no_background;
1850 final GraphicBuffer thumbnail =
1851 mService.mAppTransition
1852 .createCrossProfileAppsThumbnail(thumbnailDrawableRes, frame);
1853 if (thumbnail == null) {
1854 return;
1855 }
1856 mThumbnail = new AppWindowThumbnail(getPendingTransaction(), this, thumbnail);
1857 final Animation animation =
1858 mService.mAppTransition.createCrossProfileAppsThumbnailAnimationLocked(win.mFrame);
1859 mThumbnail.startAnimation(getPendingTransaction(), animation, new Point(frame.left,
1860 frame.top));
1861 }
1862
Jorim Jaggi988f6682017-11-17 17:46:43 +01001863 private Animation loadThumbnailAnimation(GraphicBuffer thumbnailHeader) {
1864 final DisplayInfo displayInfo = mDisplayContent.getDisplayInfo();
1865
1866 // If this is a multi-window scenario, we use the windows frame as
1867 // destination of the thumbnail header animation. If this is a full screen
1868 // window scenario, we use the whole display as the target.
1869 WindowState win = findMainWindow();
1870 Rect appRect = win != null ? win.getContentFrameLw() :
1871 new Rect(0, 0, displayInfo.appWidth, displayInfo.appHeight);
1872 Rect insets = win != null ? win.mContentInsets : null;
1873 final Configuration displayConfig = mDisplayContent.getConfiguration();
1874 return mService.mAppTransition.createThumbnailAspectScaleAnimationLocked(
1875 appRect, insets, thumbnailHeader, getTask().mTaskId, displayConfig.uiMode,
1876 displayConfig.orientation);
1877 }
1878
1879 private void clearThumbnail() {
1880 if (mThumbnail == null) {
1881 return;
1882 }
1883 mThumbnail.destroy();
1884 mThumbnail = null;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001885 }
1886
1887 @Override
1888 void dump(PrintWriter pw, String prefix, boolean dumpAll) {
1889 super.dump(pw, prefix, dumpAll);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001890 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001891 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001892 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001893 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001894 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1895 pw.print(" mOrientation="); pw.println(mOrientation);
Wale Ogunwale89973222017-04-23 18:39:45 -07001896 pw.println(prefix + "hiddenRequested=" + hiddenRequested + " mClientHidden=" + mClientHidden
1897 + ((mDeferHidingClient) ? " mDeferHidingClient=" + mDeferHidingClient : "")
1898 + " reportedDrawn=" + reportedDrawn + " reportedVisible=" + reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001899 if (paused) {
1900 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001901 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001902 if (mAppStopped) {
1903 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1904 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001905 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001906 || allDrawn || mLastAllDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001907 pw.print(prefix); pw.print("mNumInterestingWindows=");
1908 pw.print(mNumInterestingWindows);
1909 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001910 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001911 pw.print(" allDrawn="); pw.print(allDrawn);
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001912 pw.print(" lastAllDrawn="); pw.print(mLastAllDrawn);
Craig Mautner6fbda632012-07-03 09:26:39 -07001913 pw.println(")");
1914 }
1915 if (inPendingTransaction) {
1916 pw.print(prefix); pw.print("inPendingTransaction=");
1917 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001918 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001919 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001920 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1921 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001922 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001923 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001924 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001925 if (startingWindow != null || startingSurface != null
Wale Ogunwale6c459212017-05-17 08:56:03 -07001926 || startingDisplayed || startingMoved || mHiddenSetFromTransferredStartingWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001927 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001928 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001929 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001930 pw.print(" startingMoved="); pw.print(startingMoved);
1931 pw.println(" mHiddenSetFromTransferredStartingWindow="
1932 + mHiddenSetFromTransferredStartingWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001933 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001934 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001935 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001936 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001937 }
1938 if (mPendingRelaunchCount != 0) {
1939 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001940 }
Wale Ogunwale9c64cb62017-04-12 13:39:59 -07001941 if (getController() != null) {
1942 pw.print(prefix); pw.print("controller="); pw.println(getController());
1943 }
Wale Ogunwalee287e192017-04-21 09:30:12 -07001944 if (mRemovingFromDisplay) {
1945 pw.println(prefix + "mRemovingFromDisplay=" + mRemovingFromDisplay);
1946 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001947 }
1948
1949 @Override
1950 void setHidden(boolean hidden) {
1951 super.setHidden(hidden);
Winson Chunge55c0192017-08-24 14:50:48 -07001952
1953 if (hidden) {
1954 // Once the app window is hidden, reset the last saved PiP snap fraction
1955 mDisplayContent.mPinnedStackControllerLocked.resetReentrySnapFraction(this);
1956 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001957 scheduleAnimation();
1958 }
1959
1960 @Override
1961 void prepareSurfaces() {
1962 // isSelfAnimating also returns true when we are about to start a transition, so we need
1963 // to check super here.
1964 final boolean reallyAnimating = super.isSelfAnimating();
1965 final boolean show = !isHidden() || reallyAnimating;
1966 if (show && !mLastSurfaceShowing) {
1967 mPendingTransaction.show(mSurfaceControl);
1968 } else if (!show && mLastSurfaceShowing) {
1969 mPendingTransaction.hide(mSurfaceControl);
Jorim Jaggi4d1835d2017-08-31 17:28:27 +02001970 }
Jorim Jaggi988f6682017-11-17 17:46:43 +01001971 if (mThumbnail != null) {
1972 mThumbnail.setShowing(mPendingTransaction, show);
1973 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001974 mLastSurfaceShowing = show;
1975 super.prepareSurfaces();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001976 }
1977
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001978 boolean isFreezingScreen() {
1979 return mFreezingScreen;
1980 }
1981
1982 @Override
1983 boolean needsZBoost() {
1984 return mNeedsZBoost || super.needsZBoost();
1985 }
1986
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07001987 @CallSuper
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001988 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +02001989 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07001990 final long token = proto.start(fieldId);
1991 writeNameToProto(proto, NAME);
Adrian Roos4921ccf2017-09-28 16:54:06 +02001992 super.writeToProto(proto, WINDOW_TOKEN, trim);
Vishnu Nair04ab4392018-01-10 11:00:06 -08001993 proto.write(LAST_SURFACE_SHOWING, mLastSurfaceShowing);
1994 proto.write(IS_WAITING_FOR_TRANSITION_START, isWaitingForTransitionStart());
1995 proto.write(IS_REALLY_ANIMATING, isReallyAnimating());
1996 if (mThumbnail != null){
1997 mThumbnail.writeToProto(proto, THUMBNAIL);
1998 }
1999 proto.write(FILLS_PARENT, mFillsParent);
2000 proto.write(APP_STOPPED, mAppStopped);
2001 proto.write(HIDDEN_REQUESTED, hiddenRequested);
2002 proto.write(CLIENT_HIDDEN, mClientHidden);
2003 proto.write(DEFER_HIDING_CLIENT, mDeferHidingClient);
2004 proto.write(REPORTED_DRAWN, reportedDrawn);
2005 proto.write(REPORTED_VISIBLE, reportedVisible);
2006 proto.write(NUM_INTERESTING_WINDOWS, mNumInterestingWindows);
2007 proto.write(NUM_DRAWN_WINDOWS, mNumDrawnWindows);
2008 proto.write(ALL_DRAWN, allDrawn);
2009 proto.write(LAST_ALL_DRAWN, mLastAllDrawn);
2010 proto.write(REMOVED, removed);
2011 if (startingWindow != null){
2012 startingWindow.writeIdentifierToProto(proto, STARTING_WINDOW);
2013 }
2014 proto.write(STARTING_DISPLAYED, startingDisplayed);
2015 proto.write(STARTING_MOVED, startingMoved);
2016 proto.write(HIDDEN_SET_FROM_TRANSFERRED_STARTING_WINDOW,
2017 mHiddenSetFromTransferredStartingWindow);
2018 for (Rect bounds : mFrozenBounds) {
2019 bounds.writeToProto(proto, FROZEN_BOUNDS);
2020 }
Steven Timotiusaf03df62017-07-18 16:56:43 -07002021 proto.end(token);
2022 }
2023
2024 void writeNameToProto(ProtoOutputStream proto, long fieldId) {
2025 if (appToken == null) {
2026 return;
2027 }
2028 try {
2029 proto.write(fieldId, appToken.getName());
2030 } catch (RemoteException e) {
2031 // This shouldn't happen, but in this case fall back to outputting nothing
2032 Slog.e(TAG, e.toString());
2033 }
2034 }
2035
2036 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002037 public String toString() {
2038 if (stringName == null) {
2039 StringBuilder sb = new StringBuilder();
2040 sb.append("AppWindowToken{");
2041 sb.append(Integer.toHexString(System.identityHashCode(this)));
2042 sb.append(" token="); sb.append(token); sb.append('}');
2043 stringName = sb.toString();
2044 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07002045 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002046 }
Jeff Browne9bdb312012-04-05 15:30:10 -07002047}