blob: 505b4c494f2c8900de30e25ed41dd71c1839b4a6 [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
Wale Ogunwale6cae7652015-12-26 07:36:26 -080019import static android.app.ActivityManager.StackId;
Winson Chunge7ba6862017-05-24 12:13:33 -070020import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
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;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070025import static android.view.Display.DEFAULT_DISPLAY;
Jorim Jaggife762342016-10-13 14:33:27 +020026import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020027import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
Jorim Jaggife762342016-10-13 14:33:27 +020028import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070029import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080030import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070031import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070032import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
33import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070034import static com.android.server.wm.AppTransition.TRANSIT_UNSET;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080035import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080036import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
37import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070038import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070039import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
40import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080041import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Jorim Jaggie4b0f282017-05-17 15:10:29 +020042import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW_VERBOSE;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070043import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080044import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
45import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
46import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
47import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070048import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070049import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070050import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070051import static com.android.server.wm.WindowManagerService.logWithStack;
Steven Timotiusaf03df62017-07-18 16:56:43 -070052import static com.android.server.wm.proto.AppWindowTokenProto.NAME;
53import static com.android.server.wm.proto.AppWindowTokenProto.WINDOW_TOKEN;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080054
Filip Gruszczynskia590c992015-11-25 16:45:26 -080055import android.annotation.NonNull;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020056import android.app.Activity;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070057import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010058import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070059import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080060import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070061import android.os.IBinder;
Steven Timotiusaf03df62017-07-18 16:56:43 -070062import android.os.RemoteException;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070063import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080064import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -070065import android.util.proto.ProtoOutputStream;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080066import android.view.IApplicationToken;
Robert Carr6914f082017-03-20 19:04:30 -070067import android.view.SurfaceControl;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080068import android.view.WindowManager;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080069import android.view.WindowManagerPolicy.StartingSurface;
70
71import com.android.internal.util.ToBooleanFunction;
72import com.android.server.input.InputApplicationHandle;
73import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080074
75import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010076import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080077import java.util.ArrayList;
78
Bryce Lee39791592017-04-26 09:29:12 -070079import static android.os.Build.VERSION_CODES.O;
80
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080081class AppTokenList extends ArrayList<AppWindowToken> {
82}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080083
84/**
85 * Version of WindowToken that is specifically for a particular application (or
86 * really activity) that is displaying windows.
87 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070088class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080089 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
90
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080091 // Non-null only for application tokens.
92 final IApplicationToken appToken;
93
Filip Gruszczynskia590c992015-11-25 16:45:26 -080094 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070095
Wale Ogunwale72919d22016-12-08 18:58:50 -080096 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -070097
Wale Ogunwale51362492016-09-08 17:49:17 -070098 /** @see WindowContainer#fillsParent() */
99 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -0800100 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800101 boolean mShowForAllUsers;
102 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -0700103
Bryce Lee6d410262017-02-28 15:30:17 -0800104 // Flag set while reparenting to prevent actions normally triggered by an individual parent
105 // change.
106 private boolean mReparenting;
107
Wale Ogunwalee287e192017-04-21 09:30:12 -0700108 // True if we are current in the process of removing this app token from the display
109 private boolean mRemovingFromDisplay = false;
110
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800111 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -0800112 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800113
114 // These are used for determining when all windows associated with
115 // an activity have been drawn, so they can be made visible together
116 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700117 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700118 private long mLastTransactionSequence = Long.MIN_VALUE;
119 private int mNumInterestingWindows;
120 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800121 boolean inPendingTransaction;
122 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800123 // Set to true when this app creates a surface while in the middle of an animation. In that
124 // case do not clear allDrawn until the animation completes.
125 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800126
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700127 /**
128 * These are to track the app's real drawing status if there were no saved surfaces.
129 * @see #updateDrawnWindowStates
130 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700131 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700132 private int mNumInterestingWindowsExcludingSaved;
133 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700134
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800135 // Is this window's surface needed? This is almost like hidden, except
136 // it will sometimes be true a little earlier: when the token has
137 // been shown, but is still waiting for its app transition to execute
138 // before making its windows shown.
139 boolean hiddenRequested;
140
141 // Have we told the window clients to hide themselves?
Wale Ogunwale89973222017-04-23 18:39:45 -0700142 private boolean mClientHidden;
143
144 // If true we will defer setting mClientHidden to true and reporting to the client that it is
145 // hidden.
146 boolean mDeferHidingClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800147
148 // Last visibility state we reported to the app token.
149 boolean reportedVisible;
150
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700151 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700152 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700153
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800154 // Set to true when the token has been removed from the window mgr.
155 boolean removed;
156
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800157 // Information about an application starting window if displayed.
158 StartingData startingData;
159 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800160 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800161 boolean startingDisplayed;
162 boolean startingMoved;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700163 // True if the hidden state of this token was forced to false due to a transferred starting
164 // window.
165 private boolean mHiddenSetFromTransferredStartingWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800166 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700167 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
168 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800169
170 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700171 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800172
Wale Ogunwale571771c2016-08-26 13:18:50 -0700173 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800174 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800175
Craig Mautnerbb742462014-07-07 15:28:55 -0700176 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700177 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700178
Wale Ogunwale72919d22016-12-08 18:58:50 -0800179 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800180
Robert Carre12aece2016-02-02 22:43:27 -0800181 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700182 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700183 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800184
Jorim Jaggife762342016-10-13 14:33:27 +0200185 private boolean mLastContainsShowWhenLockedWindow;
186 private boolean mLastContainsDismissKeyguardWindow;
187
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700188 // The bounds of this activity. Mainly used for aspect-ratio compatibility.
189 // TODO(b/36505427): Every level on WindowContainer now has bounds information, which directly
190 // affects the configuration. We should probably move this into that class.
191 private final Rect mBounds = new Rect();
192
Jorim Jaggi0429f352015-12-22 16:29:16 +0100193 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700194 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100195
Wale Ogunwale6c459212017-05-17 08:56:03 -0700196 private boolean mDisablePreviewScreenshots;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100197
Robert Carred3e83b2017-04-21 13:26:55 -0700198 Task mLastParent;
199
chaviwd3bf08d2017-08-01 17:24:59 -0700200 /**
201 * See {@link #canTurnScreenOn()}
202 */
203 private boolean mCanTurnScreenOn = true;
204
Wale Ogunwale72919d22016-12-08 18:58:50 -0800205 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
206 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
207 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800208 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700209 AppWindowContainerController controller, Configuration overrideConfig, Rect bounds) {
210 this(service, token, voiceInteraction, dc, fullscreen, overrideConfig, bounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800211 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800212 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800213 mShowForAllUsers = showForAllUsers;
214 mTargetSdk = targetSdk;
215 mOrientation = orientation;
216 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
217 mLaunchTaskBehind = launchTaskBehind;
218 mAlwaysFocusable = alwaysFocusable;
219 mRotationAnimationHint = rotationAnimationHint;
220
221 // Application tokens start out hidden.
222 hidden = true;
223 hiddenRequested = true;
224 }
225
226 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700227 DisplayContent dc, boolean fillsParent, Configuration overrideConfig, Rect bounds) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800228 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
229 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700230 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800231 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800232 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800233 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700234 mAppAnimator = new AppWindowAnimator(this, service);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700235 if (overrideConfig != null) {
236 onOverrideConfigurationChanged(overrideConfig);
237 }
238 if (bounds != null) {
239 mBounds.set(bounds);
240 }
241 }
242
243 void onOverrideConfigurationChanged(Configuration overrideConfiguration, Rect bounds) {
244 onOverrideConfigurationChanged(overrideConfiguration);
245 if (mBounds.equals(bounds)) {
246 return;
247 }
248 // TODO(b/36505427): If bounds is in WC, then we can automatically call onResize() when set.
249 mBounds.set(bounds);
250 onResize();
251 }
252
253 void getBounds(Rect outBounds) {
254 outBounds.set(mBounds);
255 }
256
257 boolean hasBounds() {
258 return !mBounds.isEmpty();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800259 }
260
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800261 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
262 firstWindowDrawn = true;
263
264 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700265 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800266
Jorim Jaggi02886a82016-12-06 09:10:06 -0800267 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800268 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
269 + win.mToken + ": first real window is shown, no animation");
270 // If this initial window is animating, stop it -- we will do an animation to reveal
271 // it from behind the starting window, so there is no need for it to also be doing its
272 // own stuff.
273 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800274 if (getController() != null) {
275 getController().removeStartingWindow();
276 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800277 }
278 updateReportedVisibilityLocked();
279 }
280
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800281 void updateReportedVisibilityLocked() {
282 if (appToken == null) {
283 return;
284 }
285
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700286 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700287 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800288
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700289 mReportedVisibilityResults.reset();
290
291 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700292 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700293 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800294 }
295
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700296 int numInteresting = mReportedVisibilityResults.numInteresting;
297 int numVisible = mReportedVisibilityResults.numVisible;
298 int numDrawn = mReportedVisibilityResults.numDrawn;
299 boolean nowGone = mReportedVisibilityResults.nowGone;
300
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700301 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Jorim Jaggi6dfd9ba2017-08-03 15:00:01 +0200302 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting && !hidden;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700303 if (!nowGone) {
304 // If the app is not yet gone, then it can only become visible/drawn.
305 if (!nowDrawn) {
306 nowDrawn = reportedDrawn;
307 }
308 if (!nowVisible) {
309 nowVisible = reportedVisible;
310 }
311 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800312 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800313 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800314 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700315 if (nowDrawn != reportedDrawn) {
316 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800317 if (controller != null) {
318 controller.reportWindowsDrawn();
319 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700320 }
321 reportedDrawn = nowDrawn;
322 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800323 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700324 if (DEBUG_VISIBILITY) Slog.v(TAG,
325 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800326 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800327 if (controller != null) {
328 if (nowVisible) {
329 controller.reportWindowsVisible();
330 } else {
331 controller.reportWindowsGone();
332 }
333 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800334 }
335 }
336
Wale Ogunwale89973222017-04-23 18:39:45 -0700337 boolean isClientHidden() {
338 return mClientHidden;
339 }
340
341 void setClientHidden(boolean hideClient) {
342 if (mClientHidden == hideClient || (hideClient && mDeferHidingClient)) {
343 return;
344 }
345 mClientHidden = hideClient;
346 sendAppVisibilityToClients();
347 }
348
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700349 boolean setVisibility(WindowManager.LayoutParams lp,
350 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
351
352 boolean delayed = false;
353 inPendingTransaction = false;
Wale Ogunwale9e4721f2017-05-23 19:37:30 -0700354 // Reset the state of mHiddenSetFromTransferredStartingWindow since visibility is actually
355 // been set by the app now.
356 mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale89973222017-04-23 18:39:45 -0700357 setClientHidden(!visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700358
359 // Allow for state changes and animation to be applied if:
360 // * token is transitioning visibility state
361 // * or the token was marked as hidden and is exiting before we had a chance to play the
362 // transition animation
363 // * or this is an opening app and windows are being replaced.
364 boolean visibilityChanged = false;
365 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700366 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700367 boolean changed = false;
368 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
369 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
370
371 boolean runningAppAnimation = false;
372
373 if (transit != AppTransition.TRANSIT_UNSET) {
374 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
375 mAppAnimator.setNullAnimation();
376 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700377 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700378 delayed = runningAppAnimation = true;
379 }
380 final WindowState window = findMainWindow();
381 //TODO (multidisplay): Magnification is supported only for the default display.
382 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700383 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700384 accessibilityController.onAppWindowTransitionLocked(window, transit);
385 }
386 changed = true;
387 }
388
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700389 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700390 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700391 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700392 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700393 }
394
395 hidden = hiddenRequested = !visible;
396 visibilityChanged = true;
397 if (!visible) {
398 stopFreezingScreen(true, true);
399 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700400 // If we are being set visible, and the starting window is not yet displayed,
401 // then make sure it doesn't get displayed.
402 if (startingWindow != null && !startingWindow.isDrawnLw()) {
403 startingWindow.mPolicyVisibility = false;
404 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700405 }
Jorim Jaggi38d44ec2017-06-14 16:04:59 -0700406
407 // We are becoming visible, so better freeze the screen with the windows that are
408 // getting visible so we also wait for them.
409 forAllWindows(mService::makeWindowFreezingScreenIfNeededLocked, true);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700410 }
411
412 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
413 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
414
415 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700416 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700417 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700418 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700419 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700420 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700421 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700422 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700423 }
424 }
425
426 if (mAppAnimator.animation != null) {
427 delayed = true;
428 }
429
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700430 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700431 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700432 delayed = true;
433 }
434 }
435
436 if (visibilityChanged) {
437 if (visible && !delayed) {
438 // The token was made immediately visible, there will be no entrance animation.
439 // We need to inform the client the enter animation was finished.
440 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700441 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700442 }
Robert Carr61b81112017-07-17 18:08:15 -0700443
Robert Carre7cc44d2017-03-20 19:04:30 -0700444 // If we are hidden but there is no delay needed we immediately
445 // apply the Surface transaction so that the ActivityManager
Robert Carr61b81112017-07-17 18:08:15 -0700446 // can have some guarantee on the Surface state following
447 // setting the visibility. This captures cases like dismissing
448 // the docked or pinned stack where there is no app transition.
449 //
450 // In the case of a "Null" animation, there will be
451 // no animation but there will still be a transition set.
452 // We still need to delay hiding the surface such that it
453 // can be synchronized with showing the next surface in the transition.
454 if (hidden && !delayed && !mService.mAppTransition.isTransitionSet()) {
Robert Carr6914f082017-03-20 19:04:30 -0700455 SurfaceControl.openTransaction();
456 for (int i = mChildren.size() - 1; i >= 0; i--) {
457 mChildren.get(i).mWinAnimator.hide("immediately hidden");
458 }
459 SurfaceControl.closeTransaction();
460 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700461
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700462 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700463 // The token is not closing nor opening, so even if there is an animation set, that
464 // doesn't mean that it goes through the normal app transition cycle so we have
465 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700466 // TODO(multi-display): notify docked divider on all displays where visibility was
467 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700468 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700469 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100470 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700471 }
472 }
473
474 return delayed;
475 }
476
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800477 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700478 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700479 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800480 while (j > 0) {
481 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700482 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700483 final int type = win.mAttrs.type;
484 // No need to loop through child window as base application and starting types can't be
485 // child windows.
486 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700487 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900488 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700489 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800490 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700491 candidate = win;
492 } else {
493 return win;
494 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800495 }
496 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700497 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800498 }
499
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800500 boolean windowsAreFocusable() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800501 return StackId.canReceiveKeys(getTask().mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800502 }
503
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800504 AppWindowContainerController getController() {
505 final WindowContainerController controller = super.getController();
506 return controller != null ? (AppWindowContainerController) controller : null;
507 }
508
Wale Ogunwale571771c2016-08-26 13:18:50 -0700509 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700510 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700511 // If the app token isn't hidden then it is considered visible and there is no need to check
512 // its children windows to see if they are visible.
513 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700514 }
515
516 @Override
Wale Ogunwalee287e192017-04-21 09:30:12 -0700517 void removeImmediately() {
518 onRemovedFromDisplay();
519 super.removeImmediately();
520 }
521
522 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700523 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800524 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800525 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800526 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800527 }
528
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700529 @Override
530 boolean checkCompleteDeferredRemoval() {
531 if (mIsExiting) {
532 removeIfPossible();
533 }
534 return super.checkCompleteDeferredRemoval();
535 }
536
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700537 void onRemovedFromDisplay() {
Wale Ogunwalee287e192017-04-21 09:30:12 -0700538 if (mRemovingFromDisplay) {
539 return;
540 }
541 mRemovingFromDisplay = true;
542
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700543 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
544
Wale Ogunwale72919d22016-12-08 18:58:50 -0800545 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700546
547 mService.mOpeningApps.remove(this);
Jorim Jaggi45ca0542017-05-30 16:16:01 -0700548 mService.mUnknownAppVisibilityController.appRemovedOrHidden(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100549 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700550 waitingToShow = false;
551 if (mService.mClosingApps.contains(this)) {
552 delayed = true;
553 } else if (mService.mAppTransition.isTransitionSet()) {
554 mService.mClosingApps.add(this);
555 delayed = true;
556 }
557
558 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
559 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
560
561 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
562 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
563
Jorim Jaggi19be6052017-08-03 18:33:43 +0200564 if (startingData != null && getController() != null) {
565 getController().removeStartingWindow();
566 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800567
Winson Chung87e5d552017-04-05 11:49:38 -0700568 // If this window was animating, then we need to ensure that the app transition notifies
569 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
570 // add to that list now
571 if (mAppAnimator.animating) {
572 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
573 }
574
Wale Ogunwalee287e192017-04-21 09:30:12 -0700575 final TaskStack stack = getStack();
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700576 if (delayed && !isEmpty()) {
577 // set the token aside because it has an active animation to be finished
578 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
579 "removeAppToken make exiting: " + this);
Wale Ogunwalee287e192017-04-21 09:30:12 -0700580 if (stack != null) {
581 stack.mExitingAppTokens.add(this);
582 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700583 mIsExiting = true;
584 } else {
585 // Make sure there is no animation running on this token, so any windows associated
586 // with it will be removed as soon as their animations are complete
587 mAppAnimator.clearAnimation();
588 mAppAnimator.animating = false;
Wale Ogunwale3106ae012017-05-16 08:56:37 -0700589 if (stack != null) {
590 stack.mExitingAppTokens.remove(this);
591 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700592 removeIfPossible();
593 }
594
595 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700596 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800597
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700598 if (mService.mFocusedApp == this) {
599 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
600 mService.mFocusedApp = null;
601 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
602 mService.mInputMonitor.setFocusedAppLw(null);
603 }
604
605 if (!delayed) {
606 updateReportedVisibilityLocked();
607 }
Wale Ogunwalee287e192017-04-21 09:30:12 -0700608
609 mRemovingFromDisplay = false;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700610 }
611
Chong Zhange05bcb12016-07-26 17:47:29 -0700612 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700613 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700614 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700615 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700616 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700617 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700618 if (wallpaperMightChange) {
619 requestUpdateWallpaperIfNeeded();
620 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700621 }
622
Robert Carre12aece2016-02-02 22:43:27 -0800623 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700624 destroySurfaces(false /*cleanupOnResume*/);
625 }
626
627 /**
628 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
629 * the client has finished with them.
630 *
631 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
632 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
633 * others so that they are ready to be reused. If set to false (common case), destroy all
634 * surfaces that's eligible, if the app is already stopped.
635 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700636 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700637 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700638 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700639 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700640 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800641 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700642 if (destroyedSomething) {
643 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700644 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800645 }
646 }
647
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800648 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700649 * Notify that the app is now resumed, and it was not stopped before, perform a clean
650 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800651 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700652 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700653 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700654 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700655 mAppStopped = false;
chaviwd3bf08d2017-08-01 17:24:59 -0700656 // Allow the window to turn the screen on once the app is resumed again.
657 setCanTurnScreenOn(true);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700658 if (!wasStopped) {
659 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800660 }
Robert Carre12aece2016-02-02 22:43:27 -0800661 }
662
Chong Zhangbef461f2015-10-27 11:38:24 -0700663 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700664 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
665 * keeping alive in case they were still being used.
666 */
667 void notifyAppStopped() {
668 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
669 mAppStopped = true;
670 destroySurfaces();
671 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800672 if (getController() != null) {
673 getController().removeStartingWindow();
674 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700675 }
676
677 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700678 * Checks whether we should save surfaces for this app.
679 *
680 * @return true if the surfaces should be saved, false otherwise.
681 */
682 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800683 // We want to save surface if the app's windows are "allDrawn".
684 // (If we started entering animation early with saved surfaces, allDrawn
685 // should have been restored to true. So we'll save again in that case
686 // even if app didn't actually finish drawing.)
687 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800688 }
689
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700690 private boolean canRestoreSurfaces() {
691 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700692 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700693 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800694 return true;
695 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700696 }
697 return false;
698 }
699
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700700 private void clearWasVisibleBeforeClientHidden() {
701 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700702 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700703 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700704 }
705 }
706
Chong Zhang8e4bda92016-05-04 15:08:18 -0700707 /**
708 * Whether the app has some window that is invisible in layout, but
709 * animating with saved surface.
710 */
711 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700712 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700713 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700714 if (w.isAnimatingInvisibleWithSavedSurface()) {
715 return true;
716 }
717 }
718 return false;
719 }
720
721 /**
722 * Hide all window surfaces that's still invisible in layout but animating
723 * with a saved surface, and mark them destroying.
724 */
725 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700726 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700727 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700728 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700729 }
730 destroySurfaces();
731 }
732
Chong Zhangf58631a2016-05-24 16:02:10 -0700733 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700734 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700735 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700736 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700737 }
738 }
739
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700740 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700741 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700742 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700743 return;
744 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700745
746 // Check if all interesting windows are drawn and we can mark allDrawn=true.
747 int interestingNotDrawn = -1;
748
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700749 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700750 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700751 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700752 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800753
Chong Zhang92147042016-05-09 12:47:11 -0700754 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700755 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700756 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700757 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700758 }
759 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700760 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800761
762 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700763 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
764 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700765 }
766
767 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700768 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700769 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800770 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700771 }
Chong Zhang92147042016-05-09 12:47:11 -0700772 }
773
774 void clearAllDrawn() {
775 allDrawn = false;
776 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700777 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700778 }
779
Bryce Lee6d410262017-02-28 15:30:17 -0800780 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800781 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800782 }
783
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800784 TaskStack getStack() {
785 final Task task = getTask();
786 if (task != null) {
787 return task.mStack;
788 } else {
789 return null;
790 }
791 }
792
Bryce Lee6d410262017-02-28 15:30:17 -0800793 @Override
794 void onParentSet() {
795 super.onParentSet();
796
Robert Carred3e83b2017-04-21 13:26:55 -0700797 final Task task = getTask();
798
Bryce Lee6d410262017-02-28 15:30:17 -0800799 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
800 // access visual elements like the {@link DisplayContent}. We must remove any associations
801 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800802 if (!mReparenting) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800803 if (task == null) {
804 // It is possible we have been marked as a closing app earlier. We must remove ourselves
805 // from this list so we do not participate in any future animations.
806 mService.mClosingApps.remove(this);
Robert Carred3e83b2017-04-21 13:26:55 -0700807 } else if (mLastParent != null && mLastParent.mStack != null) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800808 task.mStack.mExitingAppTokens.remove(this);
809 }
Bryce Lee6d410262017-02-28 15:30:17 -0800810 }
Robert Carred3e83b2017-04-21 13:26:55 -0700811 mLastParent = task;
Bryce Lee6d410262017-02-28 15:30:17 -0800812 }
813
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700814 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700815 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700816 if (startingWindow == win) {
817 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800818 if (getController() != null) {
819 getController().removeStartingWindow();
820 }
Wale Ogunwale6c459212017-05-17 08:56:03 -0700821 } else if (mChildren.size() == 0) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700822 // If this is the last window and we had requested a starting transition window,
823 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800824 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700825 startingData = null;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700826 if (mHiddenSetFromTransferredStartingWindow) {
827 // We set the hidden state to false for the token from a transferred starting window.
828 // We now reset it back to true since the starting window was the last window in the
829 // token.
830 hidden = true;
831 }
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100832 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700833 // If this is the last window except for a starting transition window,
834 // we need to get rid of the starting transition.
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200835 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Last window, removing starting window "
836 + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800837 if (getController() != null) {
838 getController().removeStartingWindow();
839 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700840 }
841 }
842
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700843 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700844 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700845 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800846 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700847 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700848 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800849 // Set mDestroying, we don't want any animation or delayed removal here.
850 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700851 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700852 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800853 }
854 }
855 }
856
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700857 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700858 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700859 // No need to loop through child windows as the answer should be the same as that of the
860 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700861 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700862 return true;
863 }
864 }
865 return false;
866 }
867
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700868 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700869 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
870 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800871
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700872 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700873 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700874 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800875 }
876 if (animate) {
877 // Set-up dummy animation so we can start treating windows associated with this
878 // token like they are in transition before the new app window is ready for us to
879 // run the real transition animation.
880 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700881 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800882 mAppAnimator.setDummyAnimation();
883 }
884 }
885
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700886 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700887 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800888 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700889 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700890 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700891 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800892 }
893 }
894
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700895 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700896 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
897 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800898
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700899 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700900 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700901 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800902 }
903 }
904
Chong Zhang4d7369a2016-04-25 16:09:14 -0700905 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700906 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700907 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700908 w.requestUpdateWallpaperIfNeeded();
909 }
910 }
911
Chong Zhangd78ddb42016-03-02 17:01:14 -0800912 boolean isRelaunching() {
913 return mPendingRelaunchCount > 0;
914 }
915
Robert Carr68375192017-06-13 12:41:53 -0700916 boolean shouldFreezeBounds() {
917 final Task task = getTask();
918
919 // For freeform windows, we can't freeze the bounds at the moment because this would make
920 // the resizing unresponsive.
921 if (task == null || task.inFreeformWorkspace()) {
922 return false;
923 }
924
925 // We freeze the bounds while drag resizing to deal with the time between
926 // the divider/drag handle being released, and the handling it's new
927 // configuration. If we are relaunched outside of the drag resizing state,
928 // we need to be careful not to do this.
929 return getTask().isDragResizing();
930 }
931
Chong Zhangd78ddb42016-03-02 17:01:14 -0800932 void startRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700933 if (shouldFreezeBounds()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -0800934 freezeBounds();
935 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800936
937 // In the process of tearing down before relaunching, the app will
938 // try and clean up it's child surfaces. We need to prevent this from
939 // happening, so we sever the children, transfering their ownership
940 // from the client it-self to the parent surface (owned by us).
941 for (int i = mChildren.size() - 1; i >= 0; i--) {
942 final WindowState w = mChildren.get(i);
943 w.mWinAnimator.detachChildren();
944 }
945
Chong Zhangd78ddb42016-03-02 17:01:14 -0800946 mPendingRelaunchCount++;
947 }
948
949 void finishRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700950 unfreezeBounds();
951
Chong Zhangd78ddb42016-03-02 17:01:14 -0800952 if (mPendingRelaunchCount > 0) {
953 mPendingRelaunchCount--;
Bryce Lee081554b2017-05-25 07:52:12 -0700954 } else {
955 // Update keyguard flags upon finishing relaunch.
956 checkKeyguardFlagsChanged();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800957 }
958 }
959
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700960 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700961 if (mPendingRelaunchCount == 0) {
962 return;
963 }
Robert Carr68375192017-06-13 12:41:53 -0700964 unfreezeBounds();
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700965 mPendingRelaunchCount = 0;
966 }
967
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700968 /**
969 * Returns true if the new child window we are adding to this token is considered greater than
970 * the existing child window in this token in terms of z-order.
971 */
972 @Override
973 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
974 WindowState existingWindow) {
975 final int type1 = newWindow.mAttrs.type;
976 final int type2 = existingWindow.mAttrs.type;
977
978 // Base application windows should be z-ordered BELOW all other windows in the app token.
979 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
980 return false;
981 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
982 return true;
983 }
984
985 // Starting windows should be z-ordered ABOVE all other windows in the app token.
986 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
987 return true;
988 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
989 return false;
990 }
991
992 // Otherwise the new window is greater than the existing window.
993 return true;
994 }
995
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700996 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800997 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700998 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700999
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001000 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001001 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001002 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001003 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
1004 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001005
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001006 // if we got a replacement window, reset the timeout to give drawing more time
1007 if (gotReplacementWindow) {
1008 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -08001009 }
Jorim Jaggife762342016-10-13 14:33:27 +02001010 checkKeyguardFlagsChanged();
1011 }
1012
1013 @Override
1014 void removeChild(WindowState child) {
1015 super.removeChild(child);
1016 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -08001017 }
1018
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001019 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001020 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001021 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001022 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -08001023 return true;
1024 }
1025 }
1026 return false;
1027 }
1028
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001029 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001030 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001031 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -08001032 }
1033 }
1034
Winson Chung30480042017-01-26 10:55:34 -08001035 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001036 final Task currentTask = getTask();
1037 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -08001038 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001039 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001040 }
Bryce Lee6d410262017-02-28 15:30:17 -08001041
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001042 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -08001043 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001044 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -08001045 + " belongs to a different stack than " + task);
1046 }
1047
Winson Chung30480042017-01-26 10:55:34 -08001048 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001049 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001050 final DisplayContent prevDisplayContent = getDisplayContent();
1051
Bryce Lee6d410262017-02-28 15:30:17 -08001052 mReparenting = true;
1053
Winson Chung30480042017-01-26 10:55:34 -08001054 getParent().removeChild(this);
1055 task.addChild(this, position);
1056
Bryce Lee6d410262017-02-28 15:30:17 -08001057 mReparenting = false;
1058
Winson Chung30480042017-01-26 10:55:34 -08001059 // Relayout display(s).
1060 final DisplayContent displayContent = task.getDisplayContent();
1061 displayContent.setLayoutNeeded();
1062 if (prevDisplayContent != displayContent) {
1063 onDisplayChanged(displayContent);
1064 prevDisplayContent.setLayoutNeeded();
1065 }
1066 }
1067
Jorim Jaggi0429f352015-12-22 16:29:16 +01001068 /**
1069 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
1070 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
1071 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
1072 * with a queue.
1073 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001074 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001075 final Task task = getTask();
1076 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001077
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001078 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001079 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001080 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001081 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001082 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001083 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001084 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001085 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001086 }
1087
1088 /**
1089 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1090 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001091 private void unfreezeBounds() {
Robert Carr68375192017-06-13 12:41:53 -07001092 if (mFrozenBounds.isEmpty()) {
1093 return;
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001094 }
Robert Carr68375192017-06-13 12:41:53 -07001095 mFrozenBounds.remove();
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001096 if (!mFrozenMergedConfig.isEmpty()) {
1097 mFrozenMergedConfig.remove();
1098 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001099 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001100 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001101 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001102 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001103 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001104 }
1105
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001106 void setAppLayoutChanges(int changes, String reason) {
1107 if (!mChildren.isEmpty()) {
1108 final DisplayContent dc = getDisplayContent();
1109 dc.pendingLayoutChanges |= changes;
1110 if (DEBUG_LAYOUT_REPEATS) {
1111 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001112 }
1113 }
1114 }
1115
1116 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001117 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001118 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001119 if (win.removeReplacedWindowIfNeeded(replacement)) {
1120 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001121 }
1122 }
1123 }
1124
1125 void startFreezingScreen() {
1126 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001127 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
1128 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001129 if (!hiddenRequested) {
1130 if (!mAppAnimator.freezingScreen) {
1131 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001132 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001133 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001134 mService.mAppsFreezingScreen++;
1135 if (mService.mAppsFreezingScreen == 1) {
Bryce Lee8f853582017-06-05 17:25:59 -07001136 mService.startFreezingDisplayLocked(false, 0, 0, getDisplayContent());
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001137 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1138 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001139 }
1140 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001141 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001142 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001143 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001144 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001145 }
1146 }
1147 }
1148
1149 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1150 if (!mAppAnimator.freezingScreen) {
1151 return;
1152 }
1153 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001154 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001155 boolean unfrozeWindows = false;
1156 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001157 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001158 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001159 }
1160 if (force || unfrozeWindows) {
1161 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1162 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001163 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001164 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001165 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1166 mService.mAppsFreezingScreen--;
1167 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001168 }
1169 if (unfreezeSurfaceNow) {
1170 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001171 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001172 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001173 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001174 }
1175 }
1176
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001177 @Override
1178 public void onAppFreezeTimeout() {
1179 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1180 stopFreezingScreen(true, true);
1181 }
1182
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001183 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001184 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001185 if (fromToken == null) {
1186 return false;
1187 }
1188
1189 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001190 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001191 // In this case, the starting icon has already been displayed, so start
1192 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001193 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001194
1195 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1196 + " from " + fromToken + " to " + this);
1197
1198 final long origId = Binder.clearCallingIdentity();
1199
1200 // Transfer the starting window over to the new token.
1201 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001202 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001203 startingDisplayed = fromToken.startingDisplayed;
1204 fromToken.startingDisplayed = false;
1205 startingWindow = tStartingWindow;
1206 reportedVisible = fromToken.reportedVisible;
1207 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001208 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001209 fromToken.startingWindow = null;
1210 fromToken.startingMoved = true;
1211 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001212 tStartingWindow.mAppToken = this;
1213
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001214 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001215 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001216 fromToken.removeChild(tStartingWindow);
1217 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001218 fromToken.mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001219 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001220
1221 // Propagate other interesting state between the tokens. If the old token is displayed,
1222 // we should immediately force the new one to be displayed. If it is animating, we need
1223 // to move that animation to the new one.
1224 if (fromToken.allDrawn) {
1225 allDrawn = true;
1226 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1227 }
1228 if (fromToken.firstWindowDrawn) {
1229 firstWindowDrawn = true;
1230 }
1231 if (!fromToken.hidden) {
1232 hidden = false;
1233 hiddenRequested = false;
Wale Ogunwale6c459212017-05-17 08:56:03 -07001234 mHiddenSetFromTransferredStartingWindow = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001235 }
Wale Ogunwale89973222017-04-23 18:39:45 -07001236 setClientHidden(fromToken.mClientHidden);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001237 fromToken.mAppAnimator.transferCurrentAnimation(
1238 mAppAnimator, tStartingWindow.mWinAnimator);
1239
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001240 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001241 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001242 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001243 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001244 Binder.restoreCallingIdentity(origId);
1245 return true;
1246 } else if (fromToken.startingData != null) {
1247 // The previous app was getting ready to show a
1248 // starting window, but hasn't yet done so. Steal it!
1249 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1250 "Moving pending starting from " + fromToken + " to " + this);
1251 startingData = fromToken.startingData;
1252 fromToken.startingData = null;
1253 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001254 if (getController() != null) {
1255 getController().scheduleAddStartingWindow();
1256 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001257 return true;
1258 }
1259
1260 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1261 final AppWindowAnimator wAppAnimator = mAppAnimator;
1262 if (tAppAnimator.thumbnail != null) {
1263 // The old token is animating with a thumbnail, transfer that to the new token.
1264 if (wAppAnimator.thumbnail != null) {
1265 wAppAnimator.thumbnail.destroy();
1266 }
1267 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1268 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1269 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1270 tAppAnimator.thumbnail = null;
1271 }
1272 return false;
1273 }
1274
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001275 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001276 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001277 }
1278
1279 void setAllAppWinAnimators() {
1280 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1281 allAppWinAnimators.clear();
1282
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001283 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001284 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001285 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001286 }
1287 }
1288
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001289 @Override
1290 void onAppTransitionDone() {
1291 sendingToBottom = false;
1292 }
1293
Wale Ogunwale51362492016-09-08 17:49:17 -07001294 /**
1295 * We override because this class doesn't want its children affecting its reported orientation
1296 * in anyway.
1297 */
1298 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001299 int getOrientation(int candidate) {
Bryce Leed1ac18c2017-05-11 07:59:41 -07001300 // We do not allow non-fullscreen apps to influence orientation beyond O. While we do
Bryce Lee39791592017-04-26 09:29:12 -07001301 // throw an exception in {@link Activity#onCreate} and
1302 // {@link Activity#setRequestedOrientation}, we also ignore the orientation here so that
1303 // other calculations aren't affected.
Bryce Leed1ac18c2017-05-11 07:59:41 -07001304 if (!fillsParent() && mTargetSdk > O) {
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001305 // Can't specify orientation if app doesn't fill parent.
1306 return SCREEN_ORIENTATION_UNSET;
1307 }
1308
1309 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1310 // Allow app to specify orientation regardless of its visibility state if the current
1311 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1312 // wants us to use the orientation of the app behind it.
1313 return mOrientation;
1314 }
1315
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001316 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1317 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1318 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001319 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Bryce Lee00d586d2017-07-28 20:48:43 -07001320 && (isVisible() || mService.mOpeningApps.contains(this) || isOnTop())) {
Bryce Leea163b762017-01-24 11:05:01 -08001321 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001322 }
Bryce Leea163b762017-01-24 11:05:01 -08001323
1324 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001325 }
1326
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001327 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1328 int getOrientationIgnoreVisibility() {
1329 return mOrientation;
1330 }
1331
Craig Mautnerdbb79912012-03-01 18:59:14 -08001332 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001333 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001334 if (allDrawn == mAppAnimator.allDrawn) {
1335 return;
1336 }
1337
1338 mAppAnimator.allDrawn = allDrawn;
1339 if (!allDrawn) {
1340 return;
1341 }
1342
1343 // The token has now changed state to having all windows shown... what to do, what to do?
1344 if (mAppAnimator.freezingScreen) {
1345 mAppAnimator.showAllWindowsLocked();
1346 stopFreezingScreen(false, true);
1347 if (DEBUG_ORIENTATION) Slog.i(TAG,
1348 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001349 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001350 // This will set mOrientationChangeComplete and cause a pass through layout.
1351 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001352 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001353 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001354 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001355
1356 // We can now show all of the drawn windows!
1357 if (!mService.mOpeningApps.contains(this)) {
1358 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1359 }
1360 }
1361 }
1362
Matthew Ng5d23afa2017-06-21 16:16:24 -07001363 /**
Bryce Leed390deb2017-06-22 13:14:28 -07001364 * Returns whether the drawn window states of this {@link AppWindowToken} has considered every
1365 * child {@link WindowState}. A child is considered if it has been passed into
1366 * {@link #updateDrawnWindowStates(WindowState)} after being added. This is used to determine
1367 * whether states, such as {@code allDrawn}, can be set, which relies on state variables such as
1368 * {@code mNumInterestingWindows}, which depend on all {@link WindowState}s being considered.
1369 *
1370 * @return {@code true} If all children have been considered, {@code false}.
1371 */
1372 private boolean allDrawnStatesConsidered() {
Bryce Lee6311c4b2017-07-06 14:09:29 -07001373 for (int i = mChildren.size() - 1; i >= 0; --i) {
1374 final WindowState child = mChildren.get(i);
1375 if (child.mightAffectAllDrawn(false /*visibleOnly*/ )
1376 && !child.getDrawnStateEvaluated()) {
Bryce Leed390deb2017-06-22 13:14:28 -07001377 return false;
1378 }
1379 }
1380 return true;
1381 }
1382
1383 /**
Matthew Ng5d23afa2017-06-21 16:16:24 -07001384 * Determines if the token has finished drawing. This should only be called from
1385 * {@link DisplayContent#applySurfaceChangesTransaction}
1386 */
Matthew Ng498c71d2017-04-18 13:55:45 -07001387 void updateAllDrawn() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001388 if (!allDrawn) {
Matthew Ng498c71d2017-04-18 13:55:45 -07001389 // Number of drawn windows can be less when a window is being relaunched, wait for
Bryce Leed390deb2017-06-22 13:14:28 -07001390 // all windows to be launched and drawn for this token be considered all drawn.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001391 final int numInteresting = mNumInterestingWindows;
Bryce Leed390deb2017-06-22 13:14:28 -07001392
1393 // We must make sure that all present children have been considered (determined by
1394 // {@link #allDrawnStatesConsidered}) before evaluating whether everything has been
1395 // drawn.
1396 if (numInteresting > 0 && allDrawnStatesConsidered()
1397 && mNumDrawnWindows >= numInteresting && !isRelaunching()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001398 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001399 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001400 allDrawn = true;
1401 // Force an additional layout pass where
1402 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Matthew Ng498c71d2017-04-18 13:55:45 -07001403 if (mDisplayContent != null) {
1404 mDisplayContent.setLayoutNeeded();
1405 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001406 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001407
Winson Chunge7ba6862017-05-24 12:13:33 -07001408 // Notify the pinned stack upon all windows drawn. If there was an animation in
1409 // progress then this signal will resume that animation.
1410 final TaskStack pinnedStack = mDisplayContent.getStackById(PINNED_STACK_ID);
1411 if (pinnedStack != null) {
1412 pinnedStack.onAllWindowsDrawn();
Robert Carrecc06b32017-04-18 14:25:10 -07001413 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001414 }
1415 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001416
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001417 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001418 int numInteresting = mNumInterestingWindowsExcludingSaved;
1419 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001420 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1421 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001422 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001423 allDrawnExcludingSaved = true;
Matthew Ng498c71d2017-04-18 13:55:45 -07001424 if (mDisplayContent != null) {
1425 mDisplayContent.setLayoutNeeded();
1426 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001427 if (isAnimatingInvisibleWithSavedSurface()
1428 && !mService.mFinishedEarlyAnim.contains(this)) {
1429 mService.mFinishedEarlyAnim.add(this);
1430 }
1431 }
1432 }
1433 }
1434
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001435 /**
1436 * Updated this app token tracking states for interesting and drawn windows based on the window.
1437 *
1438 * @return Returns true if the input window is considered interesting and drawn while all the
1439 * windows in this app token where not considered drawn as of the last pass.
1440 */
1441 boolean updateDrawnWindowStates(WindowState w) {
Bryce Leed390deb2017-06-22 13:14:28 -07001442 w.setDrawnStateEvaluated(true /*evaluated*/);
1443
Jorim Jaggie4b0f282017-05-17 15:10:29 +02001444 if (DEBUG_STARTING_WINDOW_VERBOSE && w == startingWindow) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001445 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1446 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1447 }
1448
1449 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1450 return false;
1451 }
1452
1453 if (mLastTransactionSequence != mService.mTransactionSequence) {
1454 mLastTransactionSequence = mService.mTransactionSequence;
1455 mNumInterestingWindows = mNumDrawnWindows = 0;
1456 mNumInterestingWindowsExcludingSaved = 0;
1457 mNumDrawnWindowsExcludingSaved = 0;
1458 startingDisplayed = false;
1459 }
1460
1461 final WindowStateAnimator winAnimator = w.mWinAnimator;
1462
1463 boolean isInterestingAndDrawn = false;
1464
1465 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1466 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1467 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1468 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1469 if (!w.isDrawnLw()) {
1470 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1471 + " pv=" + w.mPolicyVisibility
1472 + " mDrawState=" + winAnimator.drawStateToString()
1473 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1474 + " a=" + winAnimator.mAnimating);
1475 }
1476 }
1477
1478 if (w != startingWindow) {
1479 if (w.isInteresting()) {
1480 mNumInterestingWindows++;
1481 if (w.isDrawnLw()) {
1482 mNumDrawnWindows++;
1483
1484 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1485 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1486 + " freezingScreen=" + mAppAnimator.freezingScreen
1487 + " mAppFreezing=" + w.mAppFreezing);
1488
1489 isInterestingAndDrawn = true;
1490 }
1491 }
1492 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001493 if (getController() != null) {
1494 getController().reportStartingWindowDrawn();
1495 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001496 startingDisplayed = true;
1497 }
1498 }
1499
1500 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1501 if (w != startingWindow && w.isInteresting()) {
1502 mNumInterestingWindowsExcludingSaved++;
1503 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1504 mNumDrawnWindowsExcludingSaved++;
1505
1506 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1507 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1508 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1509 + " freezingScreen=" + mAppAnimator.freezingScreen
1510 + " mAppFreezing=" + w.mAppFreezing);
1511
1512 isInterestingAndDrawn = true;
1513 }
1514 }
1515 }
1516
1517 return isInterestingAndDrawn;
1518 }
1519
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001520 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001521 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001522 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001523 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001524 mAppAnimator.animating = true;
1525 mService.mAnimator.setAnimating(true);
1526 mService.mAnimator.mAppWindowAnimating = true;
1527 } else if (mAppAnimator.wasAnimating) {
1528 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001529 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1530 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001531 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1532 }
1533 }
1534
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001535 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001536 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001537 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1538 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1539 // TODO: Investigate if we need to continue to do this or if we can just process them
1540 // in-order.
1541 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001542 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001543 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001544 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001545 }
1546
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001547 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1548 boolean traverseTopToBottom) {
1549 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001550 }
1551
1552 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001553 AppWindowToken asAppWindowToken() {
1554 // I am an app window token!
1555 return this;
1556 }
1557
1558 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001559 boolean fillsParent() {
1560 return mFillsParent;
1561 }
1562
1563 void setFillsParent(boolean fillsParent) {
1564 mFillsParent = fillsParent;
1565 }
1566
Jorim Jaggife762342016-10-13 14:33:27 +02001567 boolean containsDismissKeyguardWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001568 // Window state is transient during relaunch. We are not guaranteed to be frozen during the
1569 // entirety of the relaunch.
1570 if (isRelaunching()) {
1571 return mLastContainsDismissKeyguardWindow;
1572 }
1573
Jorim Jaggife762342016-10-13 14:33:27 +02001574 for (int i = mChildren.size() - 1; i >= 0; i--) {
1575 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1576 return true;
1577 }
1578 }
1579 return false;
1580 }
1581
1582 boolean containsShowWhenLockedWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001583 // When we are relaunching, it is possible for us to be unfrozen before our previous
1584 // windows have been added back. Using the cached value ensures that our previous
1585 // showWhenLocked preference is honored until relaunching is complete.
1586 if (isRelaunching()) {
1587 return mLastContainsShowWhenLockedWindow;
1588 }
1589
Jorim Jaggife762342016-10-13 14:33:27 +02001590 for (int i = mChildren.size() - 1; i >= 0; i--) {
1591 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1592 return true;
1593 }
1594 }
Bryce Lee081554b2017-05-25 07:52:12 -07001595
Jorim Jaggife762342016-10-13 14:33:27 +02001596 return false;
1597 }
1598
1599 void checkKeyguardFlagsChanged() {
1600 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1601 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1602 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1603 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1604 mService.notifyKeyguardFlagsChanged(null /* callback */);
1605 }
1606 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1607 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1608 }
1609
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001610 WindowState getImeTargetBelowWindow(WindowState w) {
1611 final int index = mChildren.indexOf(w);
1612 if (index > 0) {
1613 final WindowState target = mChildren.get(index - 1);
1614 if (target.canBeImeTarget()) {
1615 return target;
1616 }
1617 }
1618 return null;
1619 }
1620
Winson Chungbe9be7f2017-06-28 10:55:22 -07001621 int getLowestAnimLayer() {
1622 for (int i = 0; i < mChildren.size(); i++) {
1623 final WindowState w = mChildren.get(i);
1624 if (w.mRemoved) {
1625 continue;
1626 }
1627 return w.mWinAnimator.mAnimLayer;
1628 }
1629 return Integer.MAX_VALUE;
1630 }
1631
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001632 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1633 WindowState candidate = null;
1634 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1635 final WindowState w = mChildren.get(i);
1636 if (w.mRemoved) {
1637 continue;
1638 }
1639 if (candidate == null || w.mWinAnimator.mAnimLayer >
1640 candidate.mWinAnimator.mAnimLayer) {
1641 candidate = w;
1642 }
1643 }
1644 return candidate;
1645 }
1646
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001647 /**
1648 * See {@link Activity#setDisablePreviewScreenshots}.
1649 */
1650 void setDisablePreviewScreenshots(boolean disable) {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001651 mDisablePreviewScreenshots = disable;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001652 }
1653
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001654 /**
chaviwd3bf08d2017-08-01 17:24:59 -07001655 * Sets whether the current launch can turn the screen on. See {@link #canTurnScreenOn()}
1656 */
1657 void setCanTurnScreenOn(boolean canTurnScreenOn) {
1658 mCanTurnScreenOn = canTurnScreenOn;
1659 }
1660
1661 /**
1662 * Indicates whether the current launch can turn the screen on. This is to prevent multiple
1663 * relayouts from turning the screen back on. The screen should only turn on at most
1664 * once per activity resume.
1665 *
1666 * @return true if the screen can be turned on.
1667 */
1668 boolean canTurnScreenOn() {
1669 return mCanTurnScreenOn;
1670 }
1671
1672 /**
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001673 * Retrieves whether we'd like to generate a snapshot that's based solely on the theme. This is
1674 * the case when preview screenshots are disabled {@link #setDisablePreviewScreenshots} or when
1675 * we can't take a snapshot for other reasons, for example, if we have a secure window.
1676 *
1677 * @return True if we need to generate an app theme snapshot, false if we'd like to take a real
1678 * screenshot.
1679 */
1680 boolean shouldUseAppThemeSnapshot() {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001681 return mDisablePreviewScreenshots || forAllWindows(w -> (w.mAttrs.flags & FLAG_SECURE) != 0,
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001682 true /* topToBottom */);
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001683 }
1684
Wale Ogunwale51362492016-09-08 17:49:17 -07001685 @Override
Robert Carrdee1b3f2017-02-27 11:33:33 -08001686 int getAnimLayerAdjustment() {
1687 return mAppAnimator.animLayerAdjustment;
1688 }
1689
1690 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001691 void dump(PrintWriter pw, String prefix) {
1692 super.dump(pw, prefix);
1693 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001694 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001695 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001696 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001697 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1698 pw.print(" mOrientation="); pw.println(mOrientation);
Wale Ogunwale89973222017-04-23 18:39:45 -07001699 pw.println(prefix + "hiddenRequested=" + hiddenRequested + " mClientHidden=" + mClientHidden
1700 + ((mDeferHidingClient) ? " mDeferHidingClient=" + mDeferHidingClient : "")
1701 + " reportedDrawn=" + reportedDrawn + " reportedVisible=" + reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001702 if (paused) {
1703 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001704 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001705 if (mAppStopped) {
1706 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1707 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001708 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001709 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001710 pw.print(prefix); pw.print("mNumInterestingWindows=");
1711 pw.print(mNumInterestingWindows);
1712 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001713 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001714 pw.print(" allDrawn="); pw.print(allDrawn);
1715 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1716 pw.println(")");
1717 }
1718 if (inPendingTransaction) {
1719 pw.print(prefix); pw.print("inPendingTransaction=");
1720 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001721 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001722 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001723 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1724 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001725 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001726 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001727 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001728 if (startingWindow != null || startingSurface != null
Wale Ogunwale6c459212017-05-17 08:56:03 -07001729 || startingDisplayed || startingMoved || mHiddenSetFromTransferredStartingWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001730 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001731 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001732 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001733 pw.print(" startingMoved="); pw.print(startingMoved);
1734 pw.println(" mHiddenSetFromTransferredStartingWindow="
1735 + mHiddenSetFromTransferredStartingWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001736 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001737 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001738 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001739 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001740 }
1741 if (mPendingRelaunchCount != 0) {
1742 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001743 }
Wale Ogunwale9c64cb62017-04-12 13:39:59 -07001744 if (getController() != null) {
1745 pw.print(prefix); pw.print("controller="); pw.println(getController());
1746 }
Wale Ogunwalee287e192017-04-21 09:30:12 -07001747 if (mRemovingFromDisplay) {
1748 pw.println(prefix + "mRemovingFromDisplay=" + mRemovingFromDisplay);
1749 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001750 }
1751
1752 @Override
Steven Timotiusaf03df62017-07-18 16:56:43 -07001753 void writeToProto(ProtoOutputStream proto, long fieldId) {
1754 final long token = proto.start(fieldId);
1755 writeNameToProto(proto, NAME);
1756 super.writeToProto(proto, WINDOW_TOKEN);
1757 proto.end(token);
1758 }
1759
1760 void writeNameToProto(ProtoOutputStream proto, long fieldId) {
1761 if (appToken == null) {
1762 return;
1763 }
1764 try {
1765 proto.write(fieldId, appToken.getName());
1766 } catch (RemoteException e) {
1767 // This shouldn't happen, but in this case fall back to outputting nothing
1768 Slog.e(TAG, e.toString());
1769 }
1770 }
1771
1772 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001773 public String toString() {
1774 if (stringName == null) {
1775 StringBuilder sb = new StringBuilder();
1776 sb.append("AppWindowToken{");
1777 sb.append(Integer.toHexString(System.identityHashCode(this)));
1778 sb.append(" token="); sb.append(token); sb.append('}');
1779 stringName = sb.toString();
1780 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001781 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001782 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001783}