blob: 8456854e3d716cc5a164d947577e4363a3f75a3a [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;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080052
Filip Gruszczynskia590c992015-11-25 16:45:26 -080053import android.annotation.NonNull;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020054import android.app.Activity;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070055import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010056import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070057import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080058import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070059import android.os.IBinder;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070060import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080061import android.util.Slog;
62import android.view.IApplicationToken;
Robert Carr6914f082017-03-20 19:04:30 -070063import android.view.SurfaceControl;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080064import android.view.WindowManager;
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +020065import android.view.WindowManager.LayoutParams;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080066import android.view.WindowManagerPolicy.StartingSurface;
67
68import com.android.internal.util.ToBooleanFunction;
69import com.android.server.input.InputApplicationHandle;
70import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080071
72import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010073import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080074import java.util.ArrayList;
75
Bryce Lee39791592017-04-26 09:29:12 -070076import static android.os.Build.VERSION_CODES.O;
77
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080078class AppTokenList extends ArrayList<AppWindowToken> {
79}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080080
81/**
82 * Version of WindowToken that is specifically for a particular application (or
83 * really activity) that is displaying windows.
84 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070085class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080086 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
87
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080088 // Non-null only for application tokens.
89 final IApplicationToken appToken;
90
Filip Gruszczynskia590c992015-11-25 16:45:26 -080091 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070092
Wale Ogunwale72919d22016-12-08 18:58:50 -080093 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -070094
Wale Ogunwale51362492016-09-08 17:49:17 -070095 /** @see WindowContainer#fillsParent() */
96 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080097 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -080098 boolean mShowForAllUsers;
99 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -0700100
Bryce Lee6d410262017-02-28 15:30:17 -0800101 // Flag set while reparenting to prevent actions normally triggered by an individual parent
102 // change.
103 private boolean mReparenting;
104
Wale Ogunwalee287e192017-04-21 09:30:12 -0700105 // True if we are current in the process of removing this app token from the display
106 private boolean mRemovingFromDisplay = false;
107
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800108 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -0800109 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800110
111 // These are used for determining when all windows associated with
112 // an activity have been drawn, so they can be made visible together
113 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700114 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700115 private long mLastTransactionSequence = Long.MIN_VALUE;
116 private int mNumInterestingWindows;
117 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800118 boolean inPendingTransaction;
119 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800120 // Set to true when this app creates a surface while in the middle of an animation. In that
121 // case do not clear allDrawn until the animation completes.
122 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800123
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700124 /**
125 * These are to track the app's real drawing status if there were no saved surfaces.
126 * @see #updateDrawnWindowStates
127 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700128 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700129 private int mNumInterestingWindowsExcludingSaved;
130 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700131
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800132 // Is this window's surface needed? This is almost like hidden, except
133 // it will sometimes be true a little earlier: when the token has
134 // been shown, but is still waiting for its app transition to execute
135 // before making its windows shown.
136 boolean hiddenRequested;
137
138 // Have we told the window clients to hide themselves?
Wale Ogunwale89973222017-04-23 18:39:45 -0700139 private boolean mClientHidden;
140
141 // If true we will defer setting mClientHidden to true and reporting to the client that it is
142 // hidden.
143 boolean mDeferHidingClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800144
145 // Last visibility state we reported to the app token.
146 boolean reportedVisible;
147
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700148 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700149 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700150
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800151 // Set to true when the token has been removed from the window mgr.
152 boolean removed;
153
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800154 // Information about an application starting window if displayed.
155 StartingData startingData;
156 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800157 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800158 boolean startingDisplayed;
159 boolean startingMoved;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700160 // True if the hidden state of this token was forced to false due to a transferred starting
161 // window.
162 private boolean mHiddenSetFromTransferredStartingWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800163 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700164 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
165 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800166
167 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700168 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800169
Wale Ogunwale571771c2016-08-26 13:18:50 -0700170 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800171 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800172
Craig Mautnerbb742462014-07-07 15:28:55 -0700173 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700174 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700175
Wale Ogunwale72919d22016-12-08 18:58:50 -0800176 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800177
Robert Carre12aece2016-02-02 22:43:27 -0800178 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700179 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700180 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800181
Jorim Jaggife762342016-10-13 14:33:27 +0200182 private boolean mLastContainsShowWhenLockedWindow;
183 private boolean mLastContainsDismissKeyguardWindow;
184
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700185 // The bounds of this activity. Mainly used for aspect-ratio compatibility.
186 // TODO(b/36505427): Every level on WindowContainer now has bounds information, which directly
187 // affects the configuration. We should probably move this into that class.
188 private final Rect mBounds = new Rect();
189
Jorim Jaggi0429f352015-12-22 16:29:16 +0100190 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700191 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100192
Wale Ogunwale6c459212017-05-17 08:56:03 -0700193 private boolean mDisablePreviewScreenshots;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100194
Robert Carred3e83b2017-04-21 13:26:55 -0700195 Task mLastParent;
196
chaviwd3bf08d2017-08-01 17:24:59 -0700197 /**
198 * See {@link #canTurnScreenOn()}
199 */
200 private boolean mCanTurnScreenOn = true;
201
Wale Ogunwale72919d22016-12-08 18:58:50 -0800202 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
203 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
204 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800205 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700206 AppWindowContainerController controller, Configuration overrideConfig, Rect bounds) {
207 this(service, token, voiceInteraction, dc, fullscreen, overrideConfig, bounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800208 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800209 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800210 mShowForAllUsers = showForAllUsers;
211 mTargetSdk = targetSdk;
212 mOrientation = orientation;
213 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
214 mLaunchTaskBehind = launchTaskBehind;
215 mAlwaysFocusable = alwaysFocusable;
216 mRotationAnimationHint = rotationAnimationHint;
217
218 // Application tokens start out hidden.
219 hidden = true;
220 hiddenRequested = true;
221 }
222
223 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700224 DisplayContent dc, boolean fillsParent, Configuration overrideConfig, Rect bounds) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800225 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
226 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700227 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800228 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800229 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800230 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700231 mAppAnimator = new AppWindowAnimator(this, service);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700232 if (overrideConfig != null) {
233 onOverrideConfigurationChanged(overrideConfig);
234 }
235 if (bounds != null) {
236 mBounds.set(bounds);
237 }
238 }
239
240 void onOverrideConfigurationChanged(Configuration overrideConfiguration, Rect bounds) {
241 onOverrideConfigurationChanged(overrideConfiguration);
242 if (mBounds.equals(bounds)) {
243 return;
244 }
245 // TODO(b/36505427): If bounds is in WC, then we can automatically call onResize() when set.
246 mBounds.set(bounds);
247 onResize();
248 }
249
250 void getBounds(Rect outBounds) {
251 outBounds.set(mBounds);
252 }
253
254 boolean hasBounds() {
255 return !mBounds.isEmpty();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800256 }
257
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800258 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
259 firstWindowDrawn = true;
260
261 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700262 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800263
Jorim Jaggi02886a82016-12-06 09:10:06 -0800264 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800265 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
266 + win.mToken + ": first real window is shown, no animation");
267 // If this initial window is animating, stop it -- we will do an animation to reveal
268 // it from behind the starting window, so there is no need for it to also be doing its
269 // own stuff.
270 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800271 if (getController() != null) {
272 getController().removeStartingWindow();
273 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800274 }
275 updateReportedVisibilityLocked();
276 }
277
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800278 void updateReportedVisibilityLocked() {
279 if (appToken == null) {
280 return;
281 }
282
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700283 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700284 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800285
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700286 mReportedVisibilityResults.reset();
287
288 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700289 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700290 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800291 }
292
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700293 int numInteresting = mReportedVisibilityResults.numInteresting;
294 int numVisible = mReportedVisibilityResults.numVisible;
295 int numDrawn = mReportedVisibilityResults.numDrawn;
296 boolean nowGone = mReportedVisibilityResults.nowGone;
297
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700298 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Jorim Jaggi6dfd9ba2017-08-03 15:00:01 +0200299 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting && !hidden;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700300 if (!nowGone) {
301 // If the app is not yet gone, then it can only become visible/drawn.
302 if (!nowDrawn) {
303 nowDrawn = reportedDrawn;
304 }
305 if (!nowVisible) {
306 nowVisible = reportedVisible;
307 }
308 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800309 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800310 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800311 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700312 if (nowDrawn != reportedDrawn) {
313 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800314 if (controller != null) {
315 controller.reportWindowsDrawn();
316 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700317 }
318 reportedDrawn = nowDrawn;
319 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800320 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700321 if (DEBUG_VISIBILITY) Slog.v(TAG,
322 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800323 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800324 if (controller != null) {
325 if (nowVisible) {
326 controller.reportWindowsVisible();
327 } else {
328 controller.reportWindowsGone();
329 }
330 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800331 }
332 }
333
Wale Ogunwale89973222017-04-23 18:39:45 -0700334 boolean isClientHidden() {
335 return mClientHidden;
336 }
337
338 void setClientHidden(boolean hideClient) {
339 if (mClientHidden == hideClient || (hideClient && mDeferHidingClient)) {
340 return;
341 }
342 mClientHidden = hideClient;
343 sendAppVisibilityToClients();
344 }
345
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700346 boolean setVisibility(WindowManager.LayoutParams lp,
347 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
348
349 boolean delayed = false;
350 inPendingTransaction = false;
Wale Ogunwale9e4721f2017-05-23 19:37:30 -0700351 // Reset the state of mHiddenSetFromTransferredStartingWindow since visibility is actually
352 // been set by the app now.
353 mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale89973222017-04-23 18:39:45 -0700354 setClientHidden(!visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700355
356 // Allow for state changes and animation to be applied if:
357 // * token is transitioning visibility state
358 // * or the token was marked as hidden and is exiting before we had a chance to play the
359 // transition animation
360 // * or this is an opening app and windows are being replaced.
361 boolean visibilityChanged = false;
362 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700363 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700364 boolean changed = false;
365 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
366 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
367
368 boolean runningAppAnimation = false;
369
370 if (transit != AppTransition.TRANSIT_UNSET) {
371 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
372 mAppAnimator.setNullAnimation();
373 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700374 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700375 delayed = runningAppAnimation = true;
376 }
377 final WindowState window = findMainWindow();
378 //TODO (multidisplay): Magnification is supported only for the default display.
379 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700380 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700381 accessibilityController.onAppWindowTransitionLocked(window, transit);
382 }
383 changed = true;
384 }
385
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700386 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700387 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700388 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700389 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700390 }
391
392 hidden = hiddenRequested = !visible;
393 visibilityChanged = true;
394 if (!visible) {
395 stopFreezingScreen(true, true);
396 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700397 // If we are being set visible, and the starting window is not yet displayed,
398 // then make sure it doesn't get displayed.
399 if (startingWindow != null && !startingWindow.isDrawnLw()) {
400 startingWindow.mPolicyVisibility = false;
401 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700402 }
Jorim Jaggi38d44ec2017-06-14 16:04:59 -0700403
404 // We are becoming visible, so better freeze the screen with the windows that are
405 // getting visible so we also wait for them.
406 forAllWindows(mService::makeWindowFreezingScreenIfNeededLocked, true);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700407 }
408
409 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
410 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
411
412 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700413 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700414 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700415 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700416 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700417 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700418 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700419 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700420 }
421 }
422
423 if (mAppAnimator.animation != null) {
424 delayed = true;
425 }
426
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700427 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700428 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700429 delayed = true;
430 }
431 }
432
433 if (visibilityChanged) {
434 if (visible && !delayed) {
435 // The token was made immediately visible, there will be no entrance animation.
436 // We need to inform the client the enter animation was finished.
437 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700438 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700439 }
Robert Carr61b81112017-07-17 18:08:15 -0700440
Robert Carre7cc44d2017-03-20 19:04:30 -0700441 // If we are hidden but there is no delay needed we immediately
442 // apply the Surface transaction so that the ActivityManager
Robert Carr61b81112017-07-17 18:08:15 -0700443 // can have some guarantee on the Surface state following
444 // setting the visibility. This captures cases like dismissing
445 // the docked or pinned stack where there is no app transition.
446 //
447 // In the case of a "Null" animation, there will be
448 // no animation but there will still be a transition set.
449 // We still need to delay hiding the surface such that it
450 // can be synchronized with showing the next surface in the transition.
451 if (hidden && !delayed && !mService.mAppTransition.isTransitionSet()) {
Robert Carr6914f082017-03-20 19:04:30 -0700452 SurfaceControl.openTransaction();
453 for (int i = mChildren.size() - 1; i >= 0; i--) {
454 mChildren.get(i).mWinAnimator.hide("immediately hidden");
455 }
456 SurfaceControl.closeTransaction();
457 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700458
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700459 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700460 // The token is not closing nor opening, so even if there is an animation set, that
461 // doesn't mean that it goes through the normal app transition cycle so we have
462 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700463 // TODO(multi-display): notify docked divider on all displays where visibility was
464 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700465 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700466 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100467 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700468 }
469 }
470
471 return delayed;
472 }
473
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +0200474 /**
475 * @return The to top most child window for which {@link LayoutParams#isFullscreen()} returns
476 * true.
477 */
478 WindowState getTopFullscreenWindow() {
479 for (int i = mChildren.size() - 1; i >= 0; i--) {
480 final WindowState win = mChildren.get(i);
481 if (win != null && win.mAttrs.isFullscreen()) {
482 return win;
483 }
484 }
485 return null;
486 }
487
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800488 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700489 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700490 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800491 while (j > 0) {
492 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700493 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700494 final int type = win.mAttrs.type;
495 // No need to loop through child window as base application and starting types can't be
496 // child windows.
497 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700498 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900499 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700500 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800501 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700502 candidate = win;
503 } else {
504 return win;
505 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800506 }
507 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700508 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800509 }
510
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800511 boolean windowsAreFocusable() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800512 return StackId.canReceiveKeys(getTask().mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800513 }
514
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800515 AppWindowContainerController getController() {
516 final WindowContainerController controller = super.getController();
517 return controller != null ? (AppWindowContainerController) controller : null;
518 }
519
Wale Ogunwale571771c2016-08-26 13:18:50 -0700520 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700521 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700522 // If the app token isn't hidden then it is considered visible and there is no need to check
523 // its children windows to see if they are visible.
524 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700525 }
526
527 @Override
Wale Ogunwalee287e192017-04-21 09:30:12 -0700528 void removeImmediately() {
529 onRemovedFromDisplay();
530 super.removeImmediately();
531 }
532
533 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700534 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800535 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800536 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800537 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800538 }
539
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700540 @Override
541 boolean checkCompleteDeferredRemoval() {
542 if (mIsExiting) {
543 removeIfPossible();
544 }
545 return super.checkCompleteDeferredRemoval();
546 }
547
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700548 void onRemovedFromDisplay() {
Wale Ogunwalee287e192017-04-21 09:30:12 -0700549 if (mRemovingFromDisplay) {
550 return;
551 }
552 mRemovingFromDisplay = true;
553
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700554 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
555
Wale Ogunwale72919d22016-12-08 18:58:50 -0800556 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700557
558 mService.mOpeningApps.remove(this);
Jorim Jaggi45ca0542017-05-30 16:16:01 -0700559 mService.mUnknownAppVisibilityController.appRemovedOrHidden(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100560 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700561 waitingToShow = false;
562 if (mService.mClosingApps.contains(this)) {
563 delayed = true;
564 } else if (mService.mAppTransition.isTransitionSet()) {
565 mService.mClosingApps.add(this);
566 delayed = true;
567 }
568
569 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
570 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
571
572 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
573 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
574
Jorim Jaggi19be6052017-08-03 18:33:43 +0200575 if (startingData != null && getController() != null) {
576 getController().removeStartingWindow();
577 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800578
Winson Chung87e5d552017-04-05 11:49:38 -0700579 // If this window was animating, then we need to ensure that the app transition notifies
580 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
581 // add to that list now
582 if (mAppAnimator.animating) {
583 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
584 }
585
Wale Ogunwalee287e192017-04-21 09:30:12 -0700586 final TaskStack stack = getStack();
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700587 if (delayed && !isEmpty()) {
588 // set the token aside because it has an active animation to be finished
589 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
590 "removeAppToken make exiting: " + this);
Wale Ogunwalee287e192017-04-21 09:30:12 -0700591 if (stack != null) {
592 stack.mExitingAppTokens.add(this);
593 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700594 mIsExiting = true;
595 } else {
596 // Make sure there is no animation running on this token, so any windows associated
597 // with it will be removed as soon as their animations are complete
598 mAppAnimator.clearAnimation();
599 mAppAnimator.animating = false;
Wale Ogunwale3106ae012017-05-16 08:56:37 -0700600 if (stack != null) {
601 stack.mExitingAppTokens.remove(this);
602 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700603 removeIfPossible();
604 }
605
606 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700607 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800608
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700609 if (mService.mFocusedApp == this) {
610 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
611 mService.mFocusedApp = null;
612 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
613 mService.mInputMonitor.setFocusedAppLw(null);
614 }
615
616 if (!delayed) {
617 updateReportedVisibilityLocked();
618 }
Wale Ogunwalee287e192017-04-21 09:30:12 -0700619
620 mRemovingFromDisplay = false;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700621 }
622
Chong Zhange05bcb12016-07-26 17:47:29 -0700623 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700624 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700625 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700626 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700627 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700628 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700629 if (wallpaperMightChange) {
630 requestUpdateWallpaperIfNeeded();
631 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700632 }
633
Robert Carre12aece2016-02-02 22:43:27 -0800634 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700635 destroySurfaces(false /*cleanupOnResume*/);
636 }
637
638 /**
639 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
640 * the client has finished with them.
641 *
642 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
643 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
644 * others so that they are ready to be reused. If set to false (common case), destroy all
645 * surfaces that's eligible, if the app is already stopped.
646 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700647 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700648 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700649 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700650 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700651 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800652 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700653 if (destroyedSomething) {
654 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700655 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800656 }
657 }
658
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800659 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700660 * Notify that the app is now resumed, and it was not stopped before, perform a clean
661 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800662 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700663 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700664 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700665 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700666 mAppStopped = false;
chaviwd3bf08d2017-08-01 17:24:59 -0700667 // Allow the window to turn the screen on once the app is resumed again.
668 setCanTurnScreenOn(true);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700669 if (!wasStopped) {
670 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800671 }
Robert Carre12aece2016-02-02 22:43:27 -0800672 }
673
Chong Zhangbef461f2015-10-27 11:38:24 -0700674 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700675 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
676 * keeping alive in case they were still being used.
677 */
678 void notifyAppStopped() {
679 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
680 mAppStopped = true;
681 destroySurfaces();
682 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800683 if (getController() != null) {
684 getController().removeStartingWindow();
685 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700686 }
687
688 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700689 * Checks whether we should save surfaces for this app.
690 *
691 * @return true if the surfaces should be saved, false otherwise.
692 */
693 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800694 // We want to save surface if the app's windows are "allDrawn".
695 // (If we started entering animation early with saved surfaces, allDrawn
696 // should have been restored to true. So we'll save again in that case
697 // even if app didn't actually finish drawing.)
698 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800699 }
700
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700701 private boolean canRestoreSurfaces() {
702 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700703 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700704 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800705 return true;
706 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700707 }
708 return false;
709 }
710
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700711 private void clearWasVisibleBeforeClientHidden() {
712 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700713 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700714 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700715 }
716 }
717
Chong Zhang8e4bda92016-05-04 15:08:18 -0700718 /**
719 * Whether the app has some window that is invisible in layout, but
720 * animating with saved surface.
721 */
722 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700723 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700724 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700725 if (w.isAnimatingInvisibleWithSavedSurface()) {
726 return true;
727 }
728 }
729 return false;
730 }
731
732 /**
733 * Hide all window surfaces that's still invisible in layout but animating
734 * with a saved surface, and mark them destroying.
735 */
736 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700737 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700738 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700739 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700740 }
741 destroySurfaces();
742 }
743
Chong Zhangf58631a2016-05-24 16:02:10 -0700744 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700745 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700746 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700747 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700748 }
749 }
750
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700751 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700752 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700753 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700754 return;
755 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700756
757 // Check if all interesting windows are drawn and we can mark allDrawn=true.
758 int interestingNotDrawn = -1;
759
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700760 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700761 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700762 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700763 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800764
Chong Zhang92147042016-05-09 12:47:11 -0700765 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700766 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700767 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700768 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700769 }
770 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700771 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800772
773 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700774 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
775 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700776 }
777
778 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700779 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700780 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800781 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700782 }
Chong Zhang92147042016-05-09 12:47:11 -0700783 }
784
785 void clearAllDrawn() {
786 allDrawn = false;
787 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700788 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700789 }
790
Bryce Lee6d410262017-02-28 15:30:17 -0800791 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800792 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800793 }
794
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800795 TaskStack getStack() {
796 final Task task = getTask();
797 if (task != null) {
798 return task.mStack;
799 } else {
800 return null;
801 }
802 }
803
Bryce Lee6d410262017-02-28 15:30:17 -0800804 @Override
805 void onParentSet() {
806 super.onParentSet();
807
Robert Carred3e83b2017-04-21 13:26:55 -0700808 final Task task = getTask();
809
Bryce Lee6d410262017-02-28 15:30:17 -0800810 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
811 // access visual elements like the {@link DisplayContent}. We must remove any associations
812 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800813 if (!mReparenting) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800814 if (task == null) {
815 // It is possible we have been marked as a closing app earlier. We must remove ourselves
816 // from this list so we do not participate in any future animations.
817 mService.mClosingApps.remove(this);
Robert Carred3e83b2017-04-21 13:26:55 -0700818 } else if (mLastParent != null && mLastParent.mStack != null) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800819 task.mStack.mExitingAppTokens.remove(this);
820 }
Bryce Lee6d410262017-02-28 15:30:17 -0800821 }
Robert Carred3e83b2017-04-21 13:26:55 -0700822 mLastParent = task;
Bryce Lee6d410262017-02-28 15:30:17 -0800823 }
824
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700825 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700826 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700827 if (startingWindow == win) {
828 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800829 if (getController() != null) {
830 getController().removeStartingWindow();
831 }
Wale Ogunwale6c459212017-05-17 08:56:03 -0700832 } else if (mChildren.size() == 0) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700833 // If this is the last window and we had requested a starting transition window,
834 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800835 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700836 startingData = null;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700837 if (mHiddenSetFromTransferredStartingWindow) {
838 // We set the hidden state to false for the token from a transferred starting window.
839 // We now reset it back to true since the starting window was the last window in the
840 // token.
841 hidden = true;
842 }
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100843 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700844 // If this is the last window except for a starting transition window,
845 // we need to get rid of the starting transition.
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200846 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Last window, removing starting window "
847 + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800848 if (getController() != null) {
849 getController().removeStartingWindow();
850 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700851 }
852 }
853
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700854 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700855 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700856 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800857 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700858 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700859 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800860 // Set mDestroying, we don't want any animation or delayed removal here.
861 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700862 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700863 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800864 }
865 }
866 }
867
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700868 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700869 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700870 // No need to loop through child windows as the answer should be the same as that of the
871 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700872 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700873 return true;
874 }
875 }
876 return false;
877 }
878
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700879 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700880 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
881 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800882
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700883 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700884 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700885 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800886 }
887 if (animate) {
888 // Set-up dummy animation so we can start treating windows associated with this
889 // token like they are in transition before the new app window is ready for us to
890 // run the real transition animation.
891 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700892 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800893 mAppAnimator.setDummyAnimation();
894 }
895 }
896
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700897 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700898 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800899 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700900 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700901 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700902 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800903 }
904 }
905
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700906 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700907 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
908 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800909
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700910 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700911 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700912 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800913 }
914 }
915
Chong Zhang4d7369a2016-04-25 16:09:14 -0700916 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700917 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700918 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700919 w.requestUpdateWallpaperIfNeeded();
920 }
921 }
922
Chong Zhangd78ddb42016-03-02 17:01:14 -0800923 boolean isRelaunching() {
924 return mPendingRelaunchCount > 0;
925 }
926
Robert Carr68375192017-06-13 12:41:53 -0700927 boolean shouldFreezeBounds() {
928 final Task task = getTask();
929
930 // For freeform windows, we can't freeze the bounds at the moment because this would make
931 // the resizing unresponsive.
932 if (task == null || task.inFreeformWorkspace()) {
933 return false;
934 }
935
936 // We freeze the bounds while drag resizing to deal with the time between
937 // the divider/drag handle being released, and the handling it's new
938 // configuration. If we are relaunched outside of the drag resizing state,
939 // we need to be careful not to do this.
940 return getTask().isDragResizing();
941 }
942
Chong Zhangd78ddb42016-03-02 17:01:14 -0800943 void startRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700944 if (shouldFreezeBounds()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -0800945 freezeBounds();
946 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800947
948 // In the process of tearing down before relaunching, the app will
949 // try and clean up it's child surfaces. We need to prevent this from
950 // happening, so we sever the children, transfering their ownership
951 // from the client it-self to the parent surface (owned by us).
952 for (int i = mChildren.size() - 1; i >= 0; i--) {
953 final WindowState w = mChildren.get(i);
954 w.mWinAnimator.detachChildren();
955 }
956
Chong Zhangd78ddb42016-03-02 17:01:14 -0800957 mPendingRelaunchCount++;
958 }
959
960 void finishRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700961 unfreezeBounds();
962
Chong Zhangd78ddb42016-03-02 17:01:14 -0800963 if (mPendingRelaunchCount > 0) {
964 mPendingRelaunchCount--;
Bryce Lee081554b2017-05-25 07:52:12 -0700965 } else {
966 // Update keyguard flags upon finishing relaunch.
967 checkKeyguardFlagsChanged();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800968 }
969 }
970
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700971 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700972 if (mPendingRelaunchCount == 0) {
973 return;
974 }
Robert Carr68375192017-06-13 12:41:53 -0700975 unfreezeBounds();
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700976 mPendingRelaunchCount = 0;
977 }
978
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700979 /**
980 * Returns true if the new child window we are adding to this token is considered greater than
981 * the existing child window in this token in terms of z-order.
982 */
983 @Override
984 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
985 WindowState existingWindow) {
986 final int type1 = newWindow.mAttrs.type;
987 final int type2 = existingWindow.mAttrs.type;
988
989 // Base application windows should be z-ordered BELOW all other windows in the app token.
990 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
991 return false;
992 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
993 return true;
994 }
995
996 // Starting windows should be z-ordered ABOVE all other windows in the app token.
997 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
998 return true;
999 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
1000 return false;
1001 }
1002
1003 // Otherwise the new window is greater than the existing window.
1004 return true;
1005 }
1006
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001007 @Override
Robert Carra1eb4392015-12-10 12:43:51 -08001008 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001009 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001010
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001011 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001012 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001013 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001014 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
1015 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001016
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001017 // if we got a replacement window, reset the timeout to give drawing more time
1018 if (gotReplacementWindow) {
1019 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -08001020 }
Jorim Jaggife762342016-10-13 14:33:27 +02001021 checkKeyguardFlagsChanged();
1022 }
1023
1024 @Override
1025 void removeChild(WindowState child) {
1026 super.removeChild(child);
1027 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -08001028 }
1029
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001030 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001031 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001032 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001033 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -08001034 return true;
1035 }
1036 }
1037 return false;
1038 }
1039
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001040 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001041 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001042 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -08001043 }
1044 }
1045
Winson Chung30480042017-01-26 10:55:34 -08001046 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001047 final Task currentTask = getTask();
1048 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -08001049 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001050 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001051 }
Bryce Lee6d410262017-02-28 15:30:17 -08001052
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001053 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -08001054 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001055 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -08001056 + " belongs to a different stack than " + task);
1057 }
1058
Winson Chung30480042017-01-26 10:55:34 -08001059 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001060 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001061 final DisplayContent prevDisplayContent = getDisplayContent();
1062
Bryce Lee6d410262017-02-28 15:30:17 -08001063 mReparenting = true;
1064
Winson Chung30480042017-01-26 10:55:34 -08001065 getParent().removeChild(this);
1066 task.addChild(this, position);
1067
Bryce Lee6d410262017-02-28 15:30:17 -08001068 mReparenting = false;
1069
Winson Chung30480042017-01-26 10:55:34 -08001070 // Relayout display(s).
1071 final DisplayContent displayContent = task.getDisplayContent();
1072 displayContent.setLayoutNeeded();
1073 if (prevDisplayContent != displayContent) {
1074 onDisplayChanged(displayContent);
1075 prevDisplayContent.setLayoutNeeded();
1076 }
1077 }
1078
Jorim Jaggi0429f352015-12-22 16:29:16 +01001079 /**
1080 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
1081 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
1082 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
1083 * with a queue.
1084 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001085 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001086 final Task task = getTask();
1087 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001088
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001089 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001090 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001091 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001092 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001093 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001094 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001095 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001096 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001097 }
1098
1099 /**
1100 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1101 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001102 private void unfreezeBounds() {
Robert Carr68375192017-06-13 12:41:53 -07001103 if (mFrozenBounds.isEmpty()) {
1104 return;
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001105 }
Robert Carr68375192017-06-13 12:41:53 -07001106 mFrozenBounds.remove();
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001107 if (!mFrozenMergedConfig.isEmpty()) {
1108 mFrozenMergedConfig.remove();
1109 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001110 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001111 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001112 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001113 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001114 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001115 }
1116
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001117 void setAppLayoutChanges(int changes, String reason) {
1118 if (!mChildren.isEmpty()) {
1119 final DisplayContent dc = getDisplayContent();
1120 dc.pendingLayoutChanges |= changes;
1121 if (DEBUG_LAYOUT_REPEATS) {
1122 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001123 }
1124 }
1125 }
1126
1127 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001128 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001129 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001130 if (win.removeReplacedWindowIfNeeded(replacement)) {
1131 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001132 }
1133 }
1134 }
1135
1136 void startFreezingScreen() {
1137 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001138 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
1139 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001140 if (!hiddenRequested) {
1141 if (!mAppAnimator.freezingScreen) {
1142 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001143 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001144 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001145 mService.mAppsFreezingScreen++;
1146 if (mService.mAppsFreezingScreen == 1) {
Bryce Lee8f853582017-06-05 17:25:59 -07001147 mService.startFreezingDisplayLocked(false, 0, 0, getDisplayContent());
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001148 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1149 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001150 }
1151 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001152 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001153 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001154 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001155 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001156 }
1157 }
1158 }
1159
1160 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1161 if (!mAppAnimator.freezingScreen) {
1162 return;
1163 }
1164 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001165 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001166 boolean unfrozeWindows = false;
1167 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001168 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001169 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001170 }
1171 if (force || unfrozeWindows) {
1172 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1173 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001174 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001175 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001176 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1177 mService.mAppsFreezingScreen--;
1178 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001179 }
1180 if (unfreezeSurfaceNow) {
1181 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001182 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001183 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001184 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001185 }
1186 }
1187
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001188 @Override
1189 public void onAppFreezeTimeout() {
1190 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1191 stopFreezingScreen(true, true);
1192 }
1193
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001194 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001195 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001196 if (fromToken == null) {
1197 return false;
1198 }
1199
1200 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001201 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001202 // In this case, the starting icon has already been displayed, so start
1203 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001204 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001205
1206 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1207 + " from " + fromToken + " to " + this);
1208
1209 final long origId = Binder.clearCallingIdentity();
1210
1211 // Transfer the starting window over to the new token.
1212 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001213 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001214 startingDisplayed = fromToken.startingDisplayed;
1215 fromToken.startingDisplayed = false;
1216 startingWindow = tStartingWindow;
1217 reportedVisible = fromToken.reportedVisible;
1218 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001219 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001220 fromToken.startingWindow = null;
1221 fromToken.startingMoved = true;
1222 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001223 tStartingWindow.mAppToken = this;
1224
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001225 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001226 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001227 fromToken.removeChild(tStartingWindow);
1228 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001229 fromToken.mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001230 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001231
1232 // Propagate other interesting state between the tokens. If the old token is displayed,
1233 // we should immediately force the new one to be displayed. If it is animating, we need
1234 // to move that animation to the new one.
1235 if (fromToken.allDrawn) {
1236 allDrawn = true;
1237 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1238 }
1239 if (fromToken.firstWindowDrawn) {
1240 firstWindowDrawn = true;
1241 }
1242 if (!fromToken.hidden) {
1243 hidden = false;
1244 hiddenRequested = false;
Wale Ogunwale6c459212017-05-17 08:56:03 -07001245 mHiddenSetFromTransferredStartingWindow = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001246 }
Wale Ogunwale89973222017-04-23 18:39:45 -07001247 setClientHidden(fromToken.mClientHidden);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001248 fromToken.mAppAnimator.transferCurrentAnimation(
1249 mAppAnimator, tStartingWindow.mWinAnimator);
1250
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001251 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001252 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001253 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001254 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001255 Binder.restoreCallingIdentity(origId);
1256 return true;
1257 } else if (fromToken.startingData != null) {
1258 // The previous app was getting ready to show a
1259 // starting window, but hasn't yet done so. Steal it!
1260 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1261 "Moving pending starting from " + fromToken + " to " + this);
1262 startingData = fromToken.startingData;
1263 fromToken.startingData = null;
1264 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001265 if (getController() != null) {
1266 getController().scheduleAddStartingWindow();
1267 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001268 return true;
1269 }
1270
1271 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1272 final AppWindowAnimator wAppAnimator = mAppAnimator;
1273 if (tAppAnimator.thumbnail != null) {
1274 // The old token is animating with a thumbnail, transfer that to the new token.
1275 if (wAppAnimator.thumbnail != null) {
1276 wAppAnimator.thumbnail.destroy();
1277 }
1278 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1279 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1280 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1281 tAppAnimator.thumbnail = null;
1282 }
1283 return false;
1284 }
1285
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001286 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001287 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001288 }
1289
1290 void setAllAppWinAnimators() {
1291 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1292 allAppWinAnimators.clear();
1293
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001294 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001295 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001296 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001297 }
1298 }
1299
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001300 @Override
1301 void onAppTransitionDone() {
1302 sendingToBottom = false;
1303 }
1304
Wale Ogunwale51362492016-09-08 17:49:17 -07001305 /**
1306 * We override because this class doesn't want its children affecting its reported orientation
1307 * in anyway.
1308 */
1309 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001310 int getOrientation(int candidate) {
Bryce Leed1ac18c2017-05-11 07:59:41 -07001311 // We do not allow non-fullscreen apps to influence orientation beyond O. While we do
Bryce Lee39791592017-04-26 09:29:12 -07001312 // throw an exception in {@link Activity#onCreate} and
1313 // {@link Activity#setRequestedOrientation}, we also ignore the orientation here so that
1314 // other calculations aren't affected.
Bryce Leed1ac18c2017-05-11 07:59:41 -07001315 if (!fillsParent() && mTargetSdk > O) {
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001316 // Can't specify orientation if app doesn't fill parent.
1317 return SCREEN_ORIENTATION_UNSET;
1318 }
1319
1320 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1321 // Allow app to specify orientation regardless of its visibility state if the current
1322 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1323 // wants us to use the orientation of the app behind it.
1324 return mOrientation;
1325 }
1326
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001327 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1328 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1329 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001330 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Bryce Lee00d586d2017-07-28 20:48:43 -07001331 && (isVisible() || mService.mOpeningApps.contains(this) || isOnTop())) {
Bryce Leea163b762017-01-24 11:05:01 -08001332 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001333 }
Bryce Leea163b762017-01-24 11:05:01 -08001334
1335 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001336 }
1337
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001338 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1339 int getOrientationIgnoreVisibility() {
1340 return mOrientation;
1341 }
1342
Craig Mautnerdbb79912012-03-01 18:59:14 -08001343 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001344 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001345 if (allDrawn == mAppAnimator.allDrawn) {
1346 return;
1347 }
1348
1349 mAppAnimator.allDrawn = allDrawn;
1350 if (!allDrawn) {
1351 return;
1352 }
1353
1354 // The token has now changed state to having all windows shown... what to do, what to do?
1355 if (mAppAnimator.freezingScreen) {
1356 mAppAnimator.showAllWindowsLocked();
1357 stopFreezingScreen(false, true);
1358 if (DEBUG_ORIENTATION) Slog.i(TAG,
1359 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001360 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001361 // This will set mOrientationChangeComplete and cause a pass through layout.
1362 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001363 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001364 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001365 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001366
1367 // We can now show all of the drawn windows!
1368 if (!mService.mOpeningApps.contains(this)) {
1369 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1370 }
1371 }
1372 }
1373
Matthew Ng5d23afa2017-06-21 16:16:24 -07001374 /**
Bryce Leed390deb2017-06-22 13:14:28 -07001375 * Returns whether the drawn window states of this {@link AppWindowToken} has considered every
1376 * child {@link WindowState}. A child is considered if it has been passed into
1377 * {@link #updateDrawnWindowStates(WindowState)} after being added. This is used to determine
1378 * whether states, such as {@code allDrawn}, can be set, which relies on state variables such as
1379 * {@code mNumInterestingWindows}, which depend on all {@link WindowState}s being considered.
1380 *
1381 * @return {@code true} If all children have been considered, {@code false}.
1382 */
1383 private boolean allDrawnStatesConsidered() {
Bryce Lee6311c4b2017-07-06 14:09:29 -07001384 for (int i = mChildren.size() - 1; i >= 0; --i) {
1385 final WindowState child = mChildren.get(i);
1386 if (child.mightAffectAllDrawn(false /*visibleOnly*/ )
1387 && !child.getDrawnStateEvaluated()) {
Bryce Leed390deb2017-06-22 13:14:28 -07001388 return false;
1389 }
1390 }
1391 return true;
1392 }
1393
1394 /**
Matthew Ng5d23afa2017-06-21 16:16:24 -07001395 * Determines if the token has finished drawing. This should only be called from
1396 * {@link DisplayContent#applySurfaceChangesTransaction}
1397 */
Matthew Ng498c71d2017-04-18 13:55:45 -07001398 void updateAllDrawn() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001399 if (!allDrawn) {
Matthew Ng498c71d2017-04-18 13:55:45 -07001400 // Number of drawn windows can be less when a window is being relaunched, wait for
Bryce Leed390deb2017-06-22 13:14:28 -07001401 // all windows to be launched and drawn for this token be considered all drawn.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001402 final int numInteresting = mNumInterestingWindows;
Bryce Leed390deb2017-06-22 13:14:28 -07001403
1404 // We must make sure that all present children have been considered (determined by
1405 // {@link #allDrawnStatesConsidered}) before evaluating whether everything has been
1406 // drawn.
1407 if (numInteresting > 0 && allDrawnStatesConsidered()
1408 && mNumDrawnWindows >= numInteresting && !isRelaunching()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001409 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001410 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001411 allDrawn = true;
1412 // Force an additional layout pass where
1413 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Matthew Ng498c71d2017-04-18 13:55:45 -07001414 if (mDisplayContent != null) {
1415 mDisplayContent.setLayoutNeeded();
1416 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001417 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001418
Winson Chunge7ba6862017-05-24 12:13:33 -07001419 // Notify the pinned stack upon all windows drawn. If there was an animation in
1420 // progress then this signal will resume that animation.
1421 final TaskStack pinnedStack = mDisplayContent.getStackById(PINNED_STACK_ID);
1422 if (pinnedStack != null) {
1423 pinnedStack.onAllWindowsDrawn();
Robert Carrecc06b32017-04-18 14:25:10 -07001424 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001425 }
1426 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001427
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001428 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001429 int numInteresting = mNumInterestingWindowsExcludingSaved;
1430 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001431 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1432 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001433 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001434 allDrawnExcludingSaved = true;
Matthew Ng498c71d2017-04-18 13:55:45 -07001435 if (mDisplayContent != null) {
1436 mDisplayContent.setLayoutNeeded();
1437 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001438 if (isAnimatingInvisibleWithSavedSurface()
1439 && !mService.mFinishedEarlyAnim.contains(this)) {
1440 mService.mFinishedEarlyAnim.add(this);
1441 }
1442 }
1443 }
1444 }
1445
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001446 /**
1447 * Updated this app token tracking states for interesting and drawn windows based on the window.
1448 *
1449 * @return Returns true if the input window is considered interesting and drawn while all the
1450 * windows in this app token where not considered drawn as of the last pass.
1451 */
1452 boolean updateDrawnWindowStates(WindowState w) {
Bryce Leed390deb2017-06-22 13:14:28 -07001453 w.setDrawnStateEvaluated(true /*evaluated*/);
1454
Jorim Jaggie4b0f282017-05-17 15:10:29 +02001455 if (DEBUG_STARTING_WINDOW_VERBOSE && w == startingWindow) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001456 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1457 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1458 }
1459
1460 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1461 return false;
1462 }
1463
1464 if (mLastTransactionSequence != mService.mTransactionSequence) {
1465 mLastTransactionSequence = mService.mTransactionSequence;
1466 mNumInterestingWindows = mNumDrawnWindows = 0;
1467 mNumInterestingWindowsExcludingSaved = 0;
1468 mNumDrawnWindowsExcludingSaved = 0;
1469 startingDisplayed = false;
1470 }
1471
1472 final WindowStateAnimator winAnimator = w.mWinAnimator;
1473
1474 boolean isInterestingAndDrawn = false;
1475
1476 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1477 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1478 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1479 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1480 if (!w.isDrawnLw()) {
1481 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1482 + " pv=" + w.mPolicyVisibility
1483 + " mDrawState=" + winAnimator.drawStateToString()
1484 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1485 + " a=" + winAnimator.mAnimating);
1486 }
1487 }
1488
1489 if (w != startingWindow) {
1490 if (w.isInteresting()) {
1491 mNumInterestingWindows++;
1492 if (w.isDrawnLw()) {
1493 mNumDrawnWindows++;
1494
1495 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1496 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1497 + " freezingScreen=" + mAppAnimator.freezingScreen
1498 + " mAppFreezing=" + w.mAppFreezing);
1499
1500 isInterestingAndDrawn = true;
1501 }
1502 }
1503 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001504 if (getController() != null) {
1505 getController().reportStartingWindowDrawn();
1506 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001507 startingDisplayed = true;
1508 }
1509 }
1510
1511 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1512 if (w != startingWindow && w.isInteresting()) {
1513 mNumInterestingWindowsExcludingSaved++;
1514 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1515 mNumDrawnWindowsExcludingSaved++;
1516
1517 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1518 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1519 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1520 + " freezingScreen=" + mAppAnimator.freezingScreen
1521 + " mAppFreezing=" + w.mAppFreezing);
1522
1523 isInterestingAndDrawn = true;
1524 }
1525 }
1526 }
1527
1528 return isInterestingAndDrawn;
1529 }
1530
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001531 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001532 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001533 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001534 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001535 mAppAnimator.animating = true;
1536 mService.mAnimator.setAnimating(true);
1537 mService.mAnimator.mAppWindowAnimating = true;
1538 } else if (mAppAnimator.wasAnimating) {
1539 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001540 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1541 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001542 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1543 }
1544 }
1545
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001546 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001547 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001548 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1549 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1550 // TODO: Investigate if we need to continue to do this or if we can just process them
1551 // in-order.
1552 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001553 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001554 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001555 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001556 }
1557
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001558 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1559 boolean traverseTopToBottom) {
1560 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001561 }
1562
1563 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001564 AppWindowToken asAppWindowToken() {
1565 // I am an app window token!
1566 return this;
1567 }
1568
1569 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001570 boolean fillsParent() {
1571 return mFillsParent;
1572 }
1573
1574 void setFillsParent(boolean fillsParent) {
1575 mFillsParent = fillsParent;
1576 }
1577
Jorim Jaggife762342016-10-13 14:33:27 +02001578 boolean containsDismissKeyguardWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001579 // Window state is transient during relaunch. We are not guaranteed to be frozen during the
1580 // entirety of the relaunch.
1581 if (isRelaunching()) {
1582 return mLastContainsDismissKeyguardWindow;
1583 }
1584
Jorim Jaggife762342016-10-13 14:33:27 +02001585 for (int i = mChildren.size() - 1; i >= 0; i--) {
1586 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1587 return true;
1588 }
1589 }
1590 return false;
1591 }
1592
1593 boolean containsShowWhenLockedWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001594 // When we are relaunching, it is possible for us to be unfrozen before our previous
1595 // windows have been added back. Using the cached value ensures that our previous
1596 // showWhenLocked preference is honored until relaunching is complete.
1597 if (isRelaunching()) {
1598 return mLastContainsShowWhenLockedWindow;
1599 }
1600
Jorim Jaggife762342016-10-13 14:33:27 +02001601 for (int i = mChildren.size() - 1; i >= 0; i--) {
1602 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1603 return true;
1604 }
1605 }
Bryce Lee081554b2017-05-25 07:52:12 -07001606
Jorim Jaggife762342016-10-13 14:33:27 +02001607 return false;
1608 }
1609
1610 void checkKeyguardFlagsChanged() {
1611 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1612 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1613 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1614 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1615 mService.notifyKeyguardFlagsChanged(null /* callback */);
1616 }
1617 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1618 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1619 }
1620
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001621 WindowState getImeTargetBelowWindow(WindowState w) {
1622 final int index = mChildren.indexOf(w);
1623 if (index > 0) {
1624 final WindowState target = mChildren.get(index - 1);
1625 if (target.canBeImeTarget()) {
1626 return target;
1627 }
1628 }
1629 return null;
1630 }
1631
Winson Chungbe9be7f2017-06-28 10:55:22 -07001632 int getLowestAnimLayer() {
1633 for (int i = 0; i < mChildren.size(); i++) {
1634 final WindowState w = mChildren.get(i);
1635 if (w.mRemoved) {
1636 continue;
1637 }
1638 return w.mWinAnimator.mAnimLayer;
1639 }
1640 return Integer.MAX_VALUE;
1641 }
1642
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001643 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1644 WindowState candidate = null;
1645 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1646 final WindowState w = mChildren.get(i);
1647 if (w.mRemoved) {
1648 continue;
1649 }
1650 if (candidate == null || w.mWinAnimator.mAnimLayer >
1651 candidate.mWinAnimator.mAnimLayer) {
1652 candidate = w;
1653 }
1654 }
1655 return candidate;
1656 }
1657
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001658 /**
1659 * See {@link Activity#setDisablePreviewScreenshots}.
1660 */
1661 void setDisablePreviewScreenshots(boolean disable) {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001662 mDisablePreviewScreenshots = disable;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001663 }
1664
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001665 /**
chaviwd3bf08d2017-08-01 17:24:59 -07001666 * Sets whether the current launch can turn the screen on. See {@link #canTurnScreenOn()}
1667 */
1668 void setCanTurnScreenOn(boolean canTurnScreenOn) {
1669 mCanTurnScreenOn = canTurnScreenOn;
1670 }
1671
1672 /**
1673 * Indicates whether the current launch can turn the screen on. This is to prevent multiple
1674 * relayouts from turning the screen back on. The screen should only turn on at most
1675 * once per activity resume.
1676 *
1677 * @return true if the screen can be turned on.
1678 */
1679 boolean canTurnScreenOn() {
1680 return mCanTurnScreenOn;
1681 }
1682
1683 /**
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001684 * Retrieves whether we'd like to generate a snapshot that's based solely on the theme. This is
1685 * the case when preview screenshots are disabled {@link #setDisablePreviewScreenshots} or when
1686 * we can't take a snapshot for other reasons, for example, if we have a secure window.
1687 *
1688 * @return True if we need to generate an app theme snapshot, false if we'd like to take a real
1689 * screenshot.
1690 */
1691 boolean shouldUseAppThemeSnapshot() {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001692 return mDisablePreviewScreenshots || forAllWindows(w -> (w.mAttrs.flags & FLAG_SECURE) != 0,
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001693 true /* topToBottom */);
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001694 }
1695
Wale Ogunwale51362492016-09-08 17:49:17 -07001696 @Override
Robert Carrdee1b3f2017-02-27 11:33:33 -08001697 int getAnimLayerAdjustment() {
1698 return mAppAnimator.animLayerAdjustment;
1699 }
1700
1701 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001702 void dump(PrintWriter pw, String prefix) {
1703 super.dump(pw, prefix);
1704 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001705 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001706 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001707 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001708 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1709 pw.print(" mOrientation="); pw.println(mOrientation);
Wale Ogunwale89973222017-04-23 18:39:45 -07001710 pw.println(prefix + "hiddenRequested=" + hiddenRequested + " mClientHidden=" + mClientHidden
1711 + ((mDeferHidingClient) ? " mDeferHidingClient=" + mDeferHidingClient : "")
1712 + " reportedDrawn=" + reportedDrawn + " reportedVisible=" + reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001713 if (paused) {
1714 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001715 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001716 if (mAppStopped) {
1717 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1718 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001719 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001720 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001721 pw.print(prefix); pw.print("mNumInterestingWindows=");
1722 pw.print(mNumInterestingWindows);
1723 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001724 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001725 pw.print(" allDrawn="); pw.print(allDrawn);
1726 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1727 pw.println(")");
1728 }
1729 if (inPendingTransaction) {
1730 pw.print(prefix); pw.print("inPendingTransaction=");
1731 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001732 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001733 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001734 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1735 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001736 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001737 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001738 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001739 if (startingWindow != null || startingSurface != null
Wale Ogunwale6c459212017-05-17 08:56:03 -07001740 || startingDisplayed || startingMoved || mHiddenSetFromTransferredStartingWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001741 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001742 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001743 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001744 pw.print(" startingMoved="); pw.print(startingMoved);
1745 pw.println(" mHiddenSetFromTransferredStartingWindow="
1746 + mHiddenSetFromTransferredStartingWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001747 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001748 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001749 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001750 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001751 }
1752 if (mPendingRelaunchCount != 0) {
1753 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001754 }
Wale Ogunwale9c64cb62017-04-12 13:39:59 -07001755 if (getController() != null) {
1756 pw.print(prefix); pw.print("controller="); pw.println(getController());
1757 }
Wale Ogunwalee287e192017-04-21 09:30:12 -07001758 if (mRemovingFromDisplay) {
1759 pw.println(prefix + "mRemovingFromDisplay=" + mRemovingFromDisplay);
1760 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001761 }
1762
1763 @Override
1764 public String toString() {
1765 if (stringName == null) {
1766 StringBuilder sb = new StringBuilder();
1767 sb.append("AppWindowToken{");
1768 sb.append(Integer.toHexString(System.identityHashCode(this)));
1769 sb.append(" token="); sb.append(token); sb.append('}');
1770 stringName = sb.toString();
1771 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001772 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001773 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001774}