blob: 63890bf346efccde9054713811326b376ec080fc [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 Jaggiba41f4b2016-12-14 17:43:07 -080065import android.view.WindowManagerPolicy.StartingSurface;
66
67import com.android.internal.util.ToBooleanFunction;
68import com.android.server.input.InputApplicationHandle;
69import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080070
71import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010072import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080073import java.util.ArrayList;
74
Bryce Lee39791592017-04-26 09:29:12 -070075import static android.os.Build.VERSION_CODES.O;
76
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080077class AppTokenList extends ArrayList<AppWindowToken> {
78}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080079
80/**
81 * Version of WindowToken that is specifically for a particular application (or
82 * really activity) that is displaying windows.
83 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070084class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080085 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
86
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080087 // Non-null only for application tokens.
88 final IApplicationToken appToken;
89
Filip Gruszczynskia590c992015-11-25 16:45:26 -080090 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070091
Wale Ogunwale72919d22016-12-08 18:58:50 -080092 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -070093
Wale Ogunwale51362492016-09-08 17:49:17 -070094 /** @see WindowContainer#fillsParent() */
95 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080096 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -080097 boolean mShowForAllUsers;
98 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070099
Bryce Lee6d410262017-02-28 15:30:17 -0800100 // Flag set while reparenting to prevent actions normally triggered by an individual parent
101 // change.
102 private boolean mReparenting;
103
Wale Ogunwalee287e192017-04-21 09:30:12 -0700104 // True if we are current in the process of removing this app token from the display
105 private boolean mRemovingFromDisplay = false;
106
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800107 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -0800108 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800109
110 // These are used for determining when all windows associated with
111 // an activity have been drawn, so they can be made visible together
112 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700113 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700114 private long mLastTransactionSequence = Long.MIN_VALUE;
115 private int mNumInterestingWindows;
116 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800117 boolean inPendingTransaction;
118 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800119 // Set to true when this app creates a surface while in the middle of an animation. In that
120 // case do not clear allDrawn until the animation completes.
121 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800122
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700123 /**
124 * These are to track the app's real drawing status if there were no saved surfaces.
125 * @see #updateDrawnWindowStates
126 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700127 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700128 private int mNumInterestingWindowsExcludingSaved;
129 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700130
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800131 // Is this window's surface needed? This is almost like hidden, except
132 // it will sometimes be true a little earlier: when the token has
133 // been shown, but is still waiting for its app transition to execute
134 // before making its windows shown.
135 boolean hiddenRequested;
136
137 // Have we told the window clients to hide themselves?
Wale Ogunwale89973222017-04-23 18:39:45 -0700138 private boolean mClientHidden;
139
140 // If true we will defer setting mClientHidden to true and reporting to the client that it is
141 // hidden.
142 boolean mDeferHidingClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800143
144 // Last visibility state we reported to the app token.
145 boolean reportedVisible;
146
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700147 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700148 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700149
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800150 // Set to true when the token has been removed from the window mgr.
151 boolean removed;
152
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800153 // Information about an application starting window if displayed.
154 StartingData startingData;
155 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800156 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800157 boolean startingDisplayed;
158 boolean startingMoved;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700159 // True if the hidden state of this token was forced to false due to a transferred starting
160 // window.
161 private boolean mHiddenSetFromTransferredStartingWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800162 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700163 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
164 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800165
166 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700167 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800168
Wale Ogunwale571771c2016-08-26 13:18:50 -0700169 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800170 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800171
Craig Mautnerbb742462014-07-07 15:28:55 -0700172 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700173 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700174
Wale Ogunwale72919d22016-12-08 18:58:50 -0800175 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800176
Robert Carre12aece2016-02-02 22:43:27 -0800177 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700178 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700179 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800180
Jorim Jaggife762342016-10-13 14:33:27 +0200181 private boolean mLastContainsShowWhenLockedWindow;
182 private boolean mLastContainsDismissKeyguardWindow;
183
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700184 // The bounds of this activity. Mainly used for aspect-ratio compatibility.
185 // TODO(b/36505427): Every level on WindowContainer now has bounds information, which directly
186 // affects the configuration. We should probably move this into that class.
187 private final Rect mBounds = new Rect();
188
Jorim Jaggi0429f352015-12-22 16:29:16 +0100189 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700190 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100191
Wale Ogunwale6c459212017-05-17 08:56:03 -0700192 private boolean mDisablePreviewScreenshots;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100193
Robert Carred3e83b2017-04-21 13:26:55 -0700194 Task mLastParent;
195
Wale Ogunwale72919d22016-12-08 18:58:50 -0800196 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
197 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
198 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800199 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700200 AppWindowContainerController controller, Configuration overrideConfig, Rect bounds) {
201 this(service, token, voiceInteraction, dc, fullscreen, overrideConfig, bounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800202 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800203 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800204 mShowForAllUsers = showForAllUsers;
205 mTargetSdk = targetSdk;
206 mOrientation = orientation;
207 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
208 mLaunchTaskBehind = launchTaskBehind;
209 mAlwaysFocusable = alwaysFocusable;
210 mRotationAnimationHint = rotationAnimationHint;
211
212 // Application tokens start out hidden.
213 hidden = true;
214 hiddenRequested = true;
215 }
216
217 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700218 DisplayContent dc, boolean fillsParent, Configuration overrideConfig, Rect bounds) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800219 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
220 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700221 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800222 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800223 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800224 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700225 mAppAnimator = new AppWindowAnimator(this, service);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700226 if (overrideConfig != null) {
227 onOverrideConfigurationChanged(overrideConfig);
228 }
229 if (bounds != null) {
230 mBounds.set(bounds);
231 }
232 }
233
234 void onOverrideConfigurationChanged(Configuration overrideConfiguration, Rect bounds) {
235 onOverrideConfigurationChanged(overrideConfiguration);
236 if (mBounds.equals(bounds)) {
237 return;
238 }
239 // TODO(b/36505427): If bounds is in WC, then we can automatically call onResize() when set.
240 mBounds.set(bounds);
241 onResize();
242 }
243
244 void getBounds(Rect outBounds) {
245 outBounds.set(mBounds);
246 }
247
248 boolean hasBounds() {
249 return !mBounds.isEmpty();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800250 }
251
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800252 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
253 firstWindowDrawn = true;
254
255 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700256 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800257
Jorim Jaggi02886a82016-12-06 09:10:06 -0800258 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800259 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
260 + win.mToken + ": first real window is shown, no animation");
261 // If this initial window is animating, stop it -- we will do an animation to reveal
262 // it from behind the starting window, so there is no need for it to also be doing its
263 // own stuff.
264 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800265 if (getController() != null) {
266 getController().removeStartingWindow();
267 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800268 }
269 updateReportedVisibilityLocked();
270 }
271
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800272 void updateReportedVisibilityLocked() {
273 if (appToken == null) {
274 return;
275 }
276
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700277 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700278 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800279
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700280 mReportedVisibilityResults.reset();
281
282 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700283 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700284 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800285 }
286
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700287 int numInteresting = mReportedVisibilityResults.numInteresting;
288 int numVisible = mReportedVisibilityResults.numVisible;
289 int numDrawn = mReportedVisibilityResults.numDrawn;
290 boolean nowGone = mReportedVisibilityResults.nowGone;
291
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700292 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800293 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700294 if (!nowGone) {
295 // If the app is not yet gone, then it can only become visible/drawn.
296 if (!nowDrawn) {
297 nowDrawn = reportedDrawn;
298 }
299 if (!nowVisible) {
300 nowVisible = reportedVisible;
301 }
302 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800303 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800304 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800305 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700306 if (nowDrawn != reportedDrawn) {
307 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800308 if (controller != null) {
309 controller.reportWindowsDrawn();
310 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700311 }
312 reportedDrawn = nowDrawn;
313 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800314 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700315 if (DEBUG_VISIBILITY) Slog.v(TAG,
316 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800317 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800318 if (controller != null) {
319 if (nowVisible) {
320 controller.reportWindowsVisible();
321 } else {
322 controller.reportWindowsGone();
323 }
324 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800325 }
326 }
327
Wale Ogunwale89973222017-04-23 18:39:45 -0700328 boolean isClientHidden() {
329 return mClientHidden;
330 }
331
332 void setClientHidden(boolean hideClient) {
333 if (mClientHidden == hideClient || (hideClient && mDeferHidingClient)) {
334 return;
335 }
336 mClientHidden = hideClient;
337 sendAppVisibilityToClients();
338 }
339
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700340 boolean setVisibility(WindowManager.LayoutParams lp,
341 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
342
343 boolean delayed = false;
344 inPendingTransaction = false;
Wale Ogunwale9e4721f2017-05-23 19:37:30 -0700345 // Reset the state of mHiddenSetFromTransferredStartingWindow since visibility is actually
346 // been set by the app now.
347 mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale89973222017-04-23 18:39:45 -0700348 setClientHidden(!visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700349
350 // Allow for state changes and animation to be applied if:
351 // * token is transitioning visibility state
352 // * or the token was marked as hidden and is exiting before we had a chance to play the
353 // transition animation
354 // * or this is an opening app and windows are being replaced.
355 boolean visibilityChanged = false;
356 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700357 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700358 boolean changed = false;
359 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
360 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
361
362 boolean runningAppAnimation = false;
363
364 if (transit != AppTransition.TRANSIT_UNSET) {
365 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
366 mAppAnimator.setNullAnimation();
367 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700368 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700369 delayed = runningAppAnimation = true;
370 }
371 final WindowState window = findMainWindow();
372 //TODO (multidisplay): Magnification is supported only for the default display.
373 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700374 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700375 accessibilityController.onAppWindowTransitionLocked(window, transit);
376 }
377 changed = true;
378 }
379
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700380 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700381 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700382 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700383 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700384 }
385
386 hidden = hiddenRequested = !visible;
387 visibilityChanged = true;
388 if (!visible) {
389 stopFreezingScreen(true, true);
390 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700391 // If we are being set visible, and the starting window is not yet displayed,
392 // then make sure it doesn't get displayed.
393 if (startingWindow != null && !startingWindow.isDrawnLw()) {
394 startingWindow.mPolicyVisibility = false;
395 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700396 }
Jorim Jaggi38d44ec2017-06-14 16:04:59 -0700397
398 // We are becoming visible, so better freeze the screen with the windows that are
399 // getting visible so we also wait for them.
400 forAllWindows(mService::makeWindowFreezingScreenIfNeededLocked, true);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700401 }
402
403 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
404 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
405
406 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700407 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700408 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700409 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700410 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700411 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700412 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700413 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700414 }
415 }
416
417 if (mAppAnimator.animation != null) {
418 delayed = true;
419 }
420
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700421 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700422 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700423 delayed = true;
424 }
425 }
426
427 if (visibilityChanged) {
428 if (visible && !delayed) {
429 // The token was made immediately visible, there will be no entrance animation.
430 // We need to inform the client the enter animation was finished.
431 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700432 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700433 }
Robert Carr61b81112017-07-17 18:08:15 -0700434
Robert Carre7cc44d2017-03-20 19:04:30 -0700435 // If we are hidden but there is no delay needed we immediately
436 // apply the Surface transaction so that the ActivityManager
Robert Carr61b81112017-07-17 18:08:15 -0700437 // can have some guarantee on the Surface state following
438 // setting the visibility. This captures cases like dismissing
439 // the docked or pinned stack where there is no app transition.
440 //
441 // In the case of a "Null" animation, there will be
442 // no animation but there will still be a transition set.
443 // We still need to delay hiding the surface such that it
444 // can be synchronized with showing the next surface in the transition.
445 if (hidden && !delayed && !mService.mAppTransition.isTransitionSet()) {
Robert Carr6914f082017-03-20 19:04:30 -0700446 SurfaceControl.openTransaction();
447 for (int i = mChildren.size() - 1; i >= 0; i--) {
448 mChildren.get(i).mWinAnimator.hide("immediately hidden");
449 }
450 SurfaceControl.closeTransaction();
Wale Ogunwale2c596d52017-07-06 15:30:55 -0700451 removeStartingWindow();
Robert Carr6914f082017-03-20 19:04:30 -0700452 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700453
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700454 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700455 // The token is not closing nor opening, so even if there is an animation set, that
456 // doesn't mean that it goes through the normal app transition cycle so we have
457 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700458 // TODO(multi-display): notify docked divider on all displays where visibility was
459 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700460 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700461 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100462 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700463 }
464 }
465
466 return delayed;
467 }
468
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800469 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700470 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700471 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800472 while (j > 0) {
473 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700474 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700475 final int type = win.mAttrs.type;
476 // No need to loop through child window as base application and starting types can't be
477 // child windows.
478 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700479 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900480 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700481 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800482 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700483 candidate = win;
484 } else {
485 return win;
486 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800487 }
488 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700489 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800490 }
491
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800492 boolean windowsAreFocusable() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800493 return StackId.canReceiveKeys(getTask().mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800494 }
495
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800496 AppWindowContainerController getController() {
497 final WindowContainerController controller = super.getController();
498 return controller != null ? (AppWindowContainerController) controller : null;
499 }
500
Wale Ogunwale571771c2016-08-26 13:18:50 -0700501 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700502 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700503 // If the app token isn't hidden then it is considered visible and there is no need to check
504 // its children windows to see if they are visible.
505 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700506 }
507
508 @Override
Wale Ogunwalee287e192017-04-21 09:30:12 -0700509 void removeImmediately() {
510 onRemovedFromDisplay();
511 super.removeImmediately();
512 }
513
514 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700515 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800516 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800517 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800518 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800519 }
520
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700521 @Override
522 boolean checkCompleteDeferredRemoval() {
523 if (mIsExiting) {
524 removeIfPossible();
525 }
526 return super.checkCompleteDeferredRemoval();
527 }
528
Wale Ogunwale2c596d52017-07-06 15:30:55 -0700529 private void removeStartingWindow() {
530 if (startingData != null && getController() != null) {
531 getController().removeStartingWindow();
532 }
533 }
534
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700535 void onRemovedFromDisplay() {
Wale Ogunwalee287e192017-04-21 09:30:12 -0700536 if (mRemovingFromDisplay) {
537 return;
538 }
539 mRemovingFromDisplay = true;
540
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700541 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
542
Wale Ogunwale72919d22016-12-08 18:58:50 -0800543 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700544
545 mService.mOpeningApps.remove(this);
Jorim Jaggi45ca0542017-05-30 16:16:01 -0700546 mService.mUnknownAppVisibilityController.appRemovedOrHidden(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100547 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700548 waitingToShow = false;
549 if (mService.mClosingApps.contains(this)) {
550 delayed = true;
551 } else if (mService.mAppTransition.isTransitionSet()) {
552 mService.mClosingApps.add(this);
553 delayed = true;
554 }
555
556 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
557 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
558
559 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
560 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
561
Wale Ogunwale2c596d52017-07-06 15:30:55 -0700562 removeStartingWindow();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800563
Winson Chung87e5d552017-04-05 11:49:38 -0700564 // If this window was animating, then we need to ensure that the app transition notifies
565 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
566 // add to that list now
567 if (mAppAnimator.animating) {
568 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
569 }
570
Wale Ogunwalee287e192017-04-21 09:30:12 -0700571 final TaskStack stack = getStack();
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700572 if (delayed && !isEmpty()) {
573 // set the token aside because it has an active animation to be finished
574 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
575 "removeAppToken make exiting: " + this);
Wale Ogunwalee287e192017-04-21 09:30:12 -0700576 if (stack != null) {
577 stack.mExitingAppTokens.add(this);
578 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700579 mIsExiting = true;
580 } else {
581 // Make sure there is no animation running on this token, so any windows associated
582 // with it will be removed as soon as their animations are complete
583 mAppAnimator.clearAnimation();
584 mAppAnimator.animating = false;
Wale Ogunwale3106ae012017-05-16 08:56:37 -0700585 if (stack != null) {
586 stack.mExitingAppTokens.remove(this);
587 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700588 removeIfPossible();
589 }
590
591 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700592 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800593
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700594 if (mService.mFocusedApp == this) {
595 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
596 mService.mFocusedApp = null;
597 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
598 mService.mInputMonitor.setFocusedAppLw(null);
599 }
600
601 if (!delayed) {
602 updateReportedVisibilityLocked();
603 }
Wale Ogunwalee287e192017-04-21 09:30:12 -0700604
605 mRemovingFromDisplay = false;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700606 }
607
Chong Zhange05bcb12016-07-26 17:47:29 -0700608 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700609 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700610 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700611 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700612 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700613 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700614 if (wallpaperMightChange) {
615 requestUpdateWallpaperIfNeeded();
616 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700617 }
618
Robert Carre12aece2016-02-02 22:43:27 -0800619 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700620 destroySurfaces(false /*cleanupOnResume*/);
621 }
622
623 /**
624 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
625 * the client has finished with them.
626 *
627 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
628 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
629 * others so that they are ready to be reused. If set to false (common case), destroy all
630 * surfaces that's eligible, if the app is already stopped.
631 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700632 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700633 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700634 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700635 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700636 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800637 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700638 if (destroyedSomething) {
639 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700640 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800641 }
642 }
643
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800644 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700645 * Notify that the app is now resumed, and it was not stopped before, perform a clean
646 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800647 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700648 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700649 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700650 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700651 mAppStopped = false;
652 if (!wasStopped) {
653 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800654 }
Robert Carre12aece2016-02-02 22:43:27 -0800655 }
656
Chong Zhangbef461f2015-10-27 11:38:24 -0700657 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700658 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
659 * keeping alive in case they were still being used.
660 */
661 void notifyAppStopped() {
662 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
663 mAppStopped = true;
664 destroySurfaces();
665 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800666 if (getController() != null) {
667 getController().removeStartingWindow();
668 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700669 }
670
671 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700672 * Checks whether we should save surfaces for this app.
673 *
674 * @return true if the surfaces should be saved, false otherwise.
675 */
676 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800677 // We want to save surface if the app's windows are "allDrawn".
678 // (If we started entering animation early with saved surfaces, allDrawn
679 // should have been restored to true. So we'll save again in that case
680 // even if app didn't actually finish drawing.)
681 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800682 }
683
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700684 private boolean canRestoreSurfaces() {
685 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700686 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700687 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800688 return true;
689 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700690 }
691 return false;
692 }
693
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700694 private void clearWasVisibleBeforeClientHidden() {
695 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700696 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700697 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700698 }
699 }
700
Chong Zhang8e4bda92016-05-04 15:08:18 -0700701 /**
702 * Whether the app has some window that is invisible in layout, but
703 * animating with saved surface.
704 */
705 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700706 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700707 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700708 if (w.isAnimatingInvisibleWithSavedSurface()) {
709 return true;
710 }
711 }
712 return false;
713 }
714
715 /**
716 * Hide all window surfaces that's still invisible in layout but animating
717 * with a saved surface, and mark them destroying.
718 */
719 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700720 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700721 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700722 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700723 }
724 destroySurfaces();
725 }
726
Chong Zhangf58631a2016-05-24 16:02:10 -0700727 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700728 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700729 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700730 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700731 }
732 }
733
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700734 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700735 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700736 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700737 return;
738 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700739
740 // Check if all interesting windows are drawn and we can mark allDrawn=true.
741 int interestingNotDrawn = -1;
742
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700743 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700744 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700745 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700746 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800747
Chong Zhang92147042016-05-09 12:47:11 -0700748 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700749 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700750 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700751 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700752 }
753 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700754 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800755
756 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700757 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
758 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700759 }
760
761 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700762 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700763 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800764 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700765 }
Chong Zhang92147042016-05-09 12:47:11 -0700766 }
767
768 void clearAllDrawn() {
769 allDrawn = false;
770 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700771 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700772 }
773
Bryce Lee6d410262017-02-28 15:30:17 -0800774 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800775 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800776 }
777
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800778 TaskStack getStack() {
779 final Task task = getTask();
780 if (task != null) {
781 return task.mStack;
782 } else {
783 return null;
784 }
785 }
786
Bryce Lee6d410262017-02-28 15:30:17 -0800787 @Override
788 void onParentSet() {
789 super.onParentSet();
790
Robert Carred3e83b2017-04-21 13:26:55 -0700791 final Task task = getTask();
792
Bryce Lee6d410262017-02-28 15:30:17 -0800793 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
794 // access visual elements like the {@link DisplayContent}. We must remove any associations
795 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800796 if (!mReparenting) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800797 if (task == null) {
798 // It is possible we have been marked as a closing app earlier. We must remove ourselves
799 // from this list so we do not participate in any future animations.
800 mService.mClosingApps.remove(this);
Robert Carred3e83b2017-04-21 13:26:55 -0700801 } else if (mLastParent != null && mLastParent.mStack != null) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800802 task.mStack.mExitingAppTokens.remove(this);
803 }
Bryce Lee6d410262017-02-28 15:30:17 -0800804 }
Robert Carred3e83b2017-04-21 13:26:55 -0700805 mLastParent = task;
Bryce Lee6d410262017-02-28 15:30:17 -0800806 }
807
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700808 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700809 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700810 if (startingWindow == win) {
811 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800812 if (getController() != null) {
813 getController().removeStartingWindow();
814 }
Wale Ogunwale6c459212017-05-17 08:56:03 -0700815 } else if (mChildren.size() == 0) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700816 // If this is the last window and we had requested a starting transition window,
817 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800818 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700819 startingData = null;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700820 if (mHiddenSetFromTransferredStartingWindow) {
821 // We set the hidden state to false for the token from a transferred starting window.
822 // We now reset it back to true since the starting window was the last window in the
823 // token.
824 hidden = true;
825 }
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100826 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700827 // If this is the last window except for a starting transition window,
828 // we need to get rid of the starting transition.
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200829 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Last window, removing starting window "
830 + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800831 if (getController() != null) {
832 getController().removeStartingWindow();
833 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700834 }
835 }
836
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700837 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700838 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700839 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800840 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700841 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700842 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800843 // Set mDestroying, we don't want any animation or delayed removal here.
844 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700845 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700846 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800847 }
848 }
849 }
850
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700851 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700852 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700853 // No need to loop through child windows as the answer should be the same as that of the
854 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700855 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700856 return true;
857 }
858 }
859 return false;
860 }
861
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700862 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700863 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
864 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800865
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700866 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700867 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700868 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800869 }
870 if (animate) {
871 // Set-up dummy animation so we can start treating windows associated with this
872 // token like they are in transition before the new app window is ready for us to
873 // run the real transition animation.
874 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700875 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800876 mAppAnimator.setDummyAnimation();
877 }
878 }
879
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700880 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700881 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800882 + " with replacing child windows.");
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.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800886 }
887 }
888
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700889 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700890 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
891 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800892
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700893 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700894 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700895 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800896 }
897 }
898
Chong Zhang4d7369a2016-04-25 16:09:14 -0700899 void requestUpdateWallpaperIfNeeded() {
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);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700902 w.requestUpdateWallpaperIfNeeded();
903 }
904 }
905
Chong Zhangd78ddb42016-03-02 17:01:14 -0800906 boolean isRelaunching() {
907 return mPendingRelaunchCount > 0;
908 }
909
Robert Carr68375192017-06-13 12:41:53 -0700910 boolean shouldFreezeBounds() {
911 final Task task = getTask();
912
913 // For freeform windows, we can't freeze the bounds at the moment because this would make
914 // the resizing unresponsive.
915 if (task == null || task.inFreeformWorkspace()) {
916 return false;
917 }
918
919 // We freeze the bounds while drag resizing to deal with the time between
920 // the divider/drag handle being released, and the handling it's new
921 // configuration. If we are relaunched outside of the drag resizing state,
922 // we need to be careful not to do this.
923 return getTask().isDragResizing();
924 }
925
Chong Zhangd78ddb42016-03-02 17:01:14 -0800926 void startRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700927 if (shouldFreezeBounds()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -0800928 freezeBounds();
929 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800930
931 // In the process of tearing down before relaunching, the app will
932 // try and clean up it's child surfaces. We need to prevent this from
933 // happening, so we sever the children, transfering their ownership
934 // from the client it-self to the parent surface (owned by us).
935 for (int i = mChildren.size() - 1; i >= 0; i--) {
936 final WindowState w = mChildren.get(i);
937 w.mWinAnimator.detachChildren();
938 }
939
Chong Zhangd78ddb42016-03-02 17:01:14 -0800940 mPendingRelaunchCount++;
941 }
942
943 void finishRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700944 unfreezeBounds();
945
Chong Zhangd78ddb42016-03-02 17:01:14 -0800946 if (mPendingRelaunchCount > 0) {
947 mPendingRelaunchCount--;
Bryce Lee081554b2017-05-25 07:52:12 -0700948 } else {
949 // Update keyguard flags upon finishing relaunch.
950 checkKeyguardFlagsChanged();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800951 }
952 }
953
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700954 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700955 if (mPendingRelaunchCount == 0) {
956 return;
957 }
Robert Carr68375192017-06-13 12:41:53 -0700958 unfreezeBounds();
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700959 mPendingRelaunchCount = 0;
960 }
961
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700962 /**
963 * Returns true if the new child window we are adding to this token is considered greater than
964 * the existing child window in this token in terms of z-order.
965 */
966 @Override
967 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
968 WindowState existingWindow) {
969 final int type1 = newWindow.mAttrs.type;
970 final int type2 = existingWindow.mAttrs.type;
971
972 // Base application windows should be z-ordered BELOW all other windows in the app token.
973 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
974 return false;
975 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
976 return true;
977 }
978
979 // Starting windows should be z-ordered ABOVE all other windows in the app token.
980 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
981 return true;
982 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
983 return false;
984 }
985
986 // Otherwise the new window is greater than the existing window.
987 return true;
988 }
989
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700990 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800991 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700992 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700993
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700994 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700995 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700996 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700997 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
998 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700999
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001000 // if we got a replacement window, reset the timeout to give drawing more time
1001 if (gotReplacementWindow) {
1002 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -08001003 }
Jorim Jaggife762342016-10-13 14:33:27 +02001004 checkKeyguardFlagsChanged();
1005 }
1006
1007 @Override
1008 void removeChild(WindowState child) {
1009 super.removeChild(child);
1010 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -08001011 }
1012
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001013 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001014 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001015 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001016 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -08001017 return true;
1018 }
1019 }
1020 return false;
1021 }
1022
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001023 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001024 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001025 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -08001026 }
1027 }
1028
Winson Chung30480042017-01-26 10:55:34 -08001029 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001030 final Task currentTask = getTask();
1031 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -08001032 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001033 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001034 }
Bryce Lee6d410262017-02-28 15:30:17 -08001035
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001036 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -08001037 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001038 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -08001039 + " belongs to a different stack than " + task);
1040 }
1041
Winson Chung30480042017-01-26 10:55:34 -08001042 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001043 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001044 final DisplayContent prevDisplayContent = getDisplayContent();
1045
Bryce Lee6d410262017-02-28 15:30:17 -08001046 mReparenting = true;
1047
Winson Chung30480042017-01-26 10:55:34 -08001048 getParent().removeChild(this);
1049 task.addChild(this, position);
1050
Bryce Lee6d410262017-02-28 15:30:17 -08001051 mReparenting = false;
1052
Winson Chung30480042017-01-26 10:55:34 -08001053 // Relayout display(s).
1054 final DisplayContent displayContent = task.getDisplayContent();
1055 displayContent.setLayoutNeeded();
1056 if (prevDisplayContent != displayContent) {
1057 onDisplayChanged(displayContent);
1058 prevDisplayContent.setLayoutNeeded();
1059 }
1060 }
1061
Jorim Jaggi0429f352015-12-22 16:29:16 +01001062 /**
1063 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
1064 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
1065 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
1066 * with a queue.
1067 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001068 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001069 final Task task = getTask();
1070 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001071
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001072 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001073 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001074 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001075 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001076 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001077 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001078 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001079 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001080 }
1081
1082 /**
1083 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1084 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001085 private void unfreezeBounds() {
Robert Carr68375192017-06-13 12:41:53 -07001086 if (mFrozenBounds.isEmpty()) {
1087 return;
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001088 }
Robert Carr68375192017-06-13 12:41:53 -07001089 mFrozenBounds.remove();
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001090 if (!mFrozenMergedConfig.isEmpty()) {
1091 mFrozenMergedConfig.remove();
1092 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001093 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001094 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001095 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001096 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001097 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001098 }
1099
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001100 void setAppLayoutChanges(int changes, String reason) {
1101 if (!mChildren.isEmpty()) {
1102 final DisplayContent dc = getDisplayContent();
1103 dc.pendingLayoutChanges |= changes;
1104 if (DEBUG_LAYOUT_REPEATS) {
1105 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001106 }
1107 }
1108 }
1109
1110 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001111 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001112 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001113 if (win.removeReplacedWindowIfNeeded(replacement)) {
1114 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001115 }
1116 }
1117 }
1118
1119 void startFreezingScreen() {
1120 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001121 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
1122 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001123 if (!hiddenRequested) {
1124 if (!mAppAnimator.freezingScreen) {
1125 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001126 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001127 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001128 mService.mAppsFreezingScreen++;
1129 if (mService.mAppsFreezingScreen == 1) {
Bryce Lee8f853582017-06-05 17:25:59 -07001130 mService.startFreezingDisplayLocked(false, 0, 0, getDisplayContent());
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001131 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1132 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001133 }
1134 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001135 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001136 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001137 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001138 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001139 }
1140 }
1141 }
1142
1143 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1144 if (!mAppAnimator.freezingScreen) {
1145 return;
1146 }
1147 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001148 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001149 boolean unfrozeWindows = false;
1150 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001151 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001152 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001153 }
1154 if (force || unfrozeWindows) {
1155 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1156 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001157 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001158 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001159 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1160 mService.mAppsFreezingScreen--;
1161 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001162 }
1163 if (unfreezeSurfaceNow) {
1164 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001165 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001166 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001167 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001168 }
1169 }
1170
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001171 @Override
1172 public void onAppFreezeTimeout() {
1173 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1174 stopFreezingScreen(true, true);
1175 }
1176
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001177 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001178 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001179 if (fromToken == null) {
1180 return false;
1181 }
1182
1183 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001184 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001185 // In this case, the starting icon has already been displayed, so start
1186 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001187 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001188
1189 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1190 + " from " + fromToken + " to " + this);
1191
1192 final long origId = Binder.clearCallingIdentity();
1193
1194 // Transfer the starting window over to the new token.
1195 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001196 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001197 startingDisplayed = fromToken.startingDisplayed;
1198 fromToken.startingDisplayed = false;
1199 startingWindow = tStartingWindow;
1200 reportedVisible = fromToken.reportedVisible;
1201 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001202 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001203 fromToken.startingWindow = null;
1204 fromToken.startingMoved = true;
1205 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001206 tStartingWindow.mAppToken = this;
1207
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001208 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001209 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001210 fromToken.removeChild(tStartingWindow);
1211 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001212 fromToken.mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001213 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001214
1215 // Propagate other interesting state between the tokens. If the old token is displayed,
1216 // we should immediately force the new one to be displayed. If it is animating, we need
1217 // to move that animation to the new one.
1218 if (fromToken.allDrawn) {
1219 allDrawn = true;
1220 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1221 }
1222 if (fromToken.firstWindowDrawn) {
1223 firstWindowDrawn = true;
1224 }
1225 if (!fromToken.hidden) {
1226 hidden = false;
1227 hiddenRequested = false;
Wale Ogunwale6c459212017-05-17 08:56:03 -07001228 mHiddenSetFromTransferredStartingWindow = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001229 }
Wale Ogunwale89973222017-04-23 18:39:45 -07001230 setClientHidden(fromToken.mClientHidden);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001231 fromToken.mAppAnimator.transferCurrentAnimation(
1232 mAppAnimator, tStartingWindow.mWinAnimator);
1233
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001234 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001235 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001236 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001237 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001238 Binder.restoreCallingIdentity(origId);
1239 return true;
1240 } else if (fromToken.startingData != null) {
1241 // The previous app was getting ready to show a
1242 // starting window, but hasn't yet done so. Steal it!
1243 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1244 "Moving pending starting from " + fromToken + " to " + this);
1245 startingData = fromToken.startingData;
1246 fromToken.startingData = null;
1247 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001248 if (getController() != null) {
1249 getController().scheduleAddStartingWindow();
1250 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001251 return true;
1252 }
1253
1254 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1255 final AppWindowAnimator wAppAnimator = mAppAnimator;
1256 if (tAppAnimator.thumbnail != null) {
1257 // The old token is animating with a thumbnail, transfer that to the new token.
1258 if (wAppAnimator.thumbnail != null) {
1259 wAppAnimator.thumbnail.destroy();
1260 }
1261 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1262 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1263 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1264 tAppAnimator.thumbnail = null;
1265 }
1266 return false;
1267 }
1268
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001269 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001270 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001271 }
1272
1273 void setAllAppWinAnimators() {
1274 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1275 allAppWinAnimators.clear();
1276
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001277 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001278 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001279 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001280 }
1281 }
1282
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001283 @Override
1284 void onAppTransitionDone() {
1285 sendingToBottom = false;
1286 }
1287
Wale Ogunwale51362492016-09-08 17:49:17 -07001288 /**
1289 * We override because this class doesn't want its children affecting its reported orientation
1290 * in anyway.
1291 */
1292 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001293 int getOrientation(int candidate) {
Bryce Leed1ac18c2017-05-11 07:59:41 -07001294 // We do not allow non-fullscreen apps to influence orientation beyond O. While we do
Bryce Lee39791592017-04-26 09:29:12 -07001295 // throw an exception in {@link Activity#onCreate} and
1296 // {@link Activity#setRequestedOrientation}, we also ignore the orientation here so that
1297 // other calculations aren't affected.
Bryce Leed1ac18c2017-05-11 07:59:41 -07001298 if (!fillsParent() && mTargetSdk > O) {
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001299 // Can't specify orientation if app doesn't fill parent.
1300 return SCREEN_ORIENTATION_UNSET;
1301 }
1302
1303 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1304 // Allow app to specify orientation regardless of its visibility state if the current
1305 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1306 // wants us to use the orientation of the app behind it.
1307 return mOrientation;
1308 }
1309
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001310 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1311 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1312 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001313 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001314 && (isVisible() || mService.mOpeningApps.contains(this))) {
Bryce Leea163b762017-01-24 11:05:01 -08001315 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001316 }
Bryce Leea163b762017-01-24 11:05:01 -08001317
1318 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001319 }
1320
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001321 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1322 int getOrientationIgnoreVisibility() {
1323 return mOrientation;
1324 }
1325
Craig Mautnerdbb79912012-03-01 18:59:14 -08001326 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001327 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001328 if (allDrawn == mAppAnimator.allDrawn) {
1329 return;
1330 }
1331
1332 mAppAnimator.allDrawn = allDrawn;
1333 if (!allDrawn) {
1334 return;
1335 }
1336
1337 // The token has now changed state to having all windows shown... what to do, what to do?
1338 if (mAppAnimator.freezingScreen) {
1339 mAppAnimator.showAllWindowsLocked();
1340 stopFreezingScreen(false, true);
1341 if (DEBUG_ORIENTATION) Slog.i(TAG,
1342 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001343 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001344 // This will set mOrientationChangeComplete and cause a pass through layout.
1345 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001346 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001347 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001348 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001349
1350 // We can now show all of the drawn windows!
1351 if (!mService.mOpeningApps.contains(this)) {
1352 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1353 }
1354 }
1355 }
1356
Matthew Ng5d23afa2017-06-21 16:16:24 -07001357 /**
Bryce Leed390deb2017-06-22 13:14:28 -07001358 * Returns whether the drawn window states of this {@link AppWindowToken} has considered every
1359 * child {@link WindowState}. A child is considered if it has been passed into
1360 * {@link #updateDrawnWindowStates(WindowState)} after being added. This is used to determine
1361 * whether states, such as {@code allDrawn}, can be set, which relies on state variables such as
1362 * {@code mNumInterestingWindows}, which depend on all {@link WindowState}s being considered.
1363 *
1364 * @return {@code true} If all children have been considered, {@code false}.
1365 */
1366 private boolean allDrawnStatesConsidered() {
Bryce Lee6311c4b2017-07-06 14:09:29 -07001367 for (int i = mChildren.size() - 1; i >= 0; --i) {
1368 final WindowState child = mChildren.get(i);
1369 if (child.mightAffectAllDrawn(false /*visibleOnly*/ )
1370 && !child.getDrawnStateEvaluated()) {
Bryce Leed390deb2017-06-22 13:14:28 -07001371 return false;
1372 }
1373 }
1374 return true;
1375 }
1376
1377 /**
Matthew Ng5d23afa2017-06-21 16:16:24 -07001378 * Determines if the token has finished drawing. This should only be called from
1379 * {@link DisplayContent#applySurfaceChangesTransaction}
1380 */
Matthew Ng498c71d2017-04-18 13:55:45 -07001381 void updateAllDrawn() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001382 if (!allDrawn) {
Matthew Ng498c71d2017-04-18 13:55:45 -07001383 // Number of drawn windows can be less when a window is being relaunched, wait for
Bryce Leed390deb2017-06-22 13:14:28 -07001384 // all windows to be launched and drawn for this token be considered all drawn.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001385 final int numInteresting = mNumInterestingWindows;
Bryce Leed390deb2017-06-22 13:14:28 -07001386
1387 // We must make sure that all present children have been considered (determined by
1388 // {@link #allDrawnStatesConsidered}) before evaluating whether everything has been
1389 // drawn.
1390 if (numInteresting > 0 && allDrawnStatesConsidered()
1391 && mNumDrawnWindows >= numInteresting && !isRelaunching()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001392 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001393 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001394 allDrawn = true;
1395 // Force an additional layout pass where
1396 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Matthew Ng498c71d2017-04-18 13:55:45 -07001397 if (mDisplayContent != null) {
1398 mDisplayContent.setLayoutNeeded();
1399 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001400 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001401
Winson Chunge7ba6862017-05-24 12:13:33 -07001402 // Notify the pinned stack upon all windows drawn. If there was an animation in
1403 // progress then this signal will resume that animation.
1404 final TaskStack pinnedStack = mDisplayContent.getStackById(PINNED_STACK_ID);
1405 if (pinnedStack != null) {
1406 pinnedStack.onAllWindowsDrawn();
Robert Carrecc06b32017-04-18 14:25:10 -07001407 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001408 }
1409 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001410
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001411 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001412 int numInteresting = mNumInterestingWindowsExcludingSaved;
1413 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001414 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1415 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001416 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001417 allDrawnExcludingSaved = true;
Matthew Ng498c71d2017-04-18 13:55:45 -07001418 if (mDisplayContent != null) {
1419 mDisplayContent.setLayoutNeeded();
1420 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001421 if (isAnimatingInvisibleWithSavedSurface()
1422 && !mService.mFinishedEarlyAnim.contains(this)) {
1423 mService.mFinishedEarlyAnim.add(this);
1424 }
1425 }
1426 }
1427 }
1428
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001429 /**
1430 * Updated this app token tracking states for interesting and drawn windows based on the window.
1431 *
1432 * @return Returns true if the input window is considered interesting and drawn while all the
1433 * windows in this app token where not considered drawn as of the last pass.
1434 */
1435 boolean updateDrawnWindowStates(WindowState w) {
Bryce Leed390deb2017-06-22 13:14:28 -07001436 w.setDrawnStateEvaluated(true /*evaluated*/);
1437
Jorim Jaggie4b0f282017-05-17 15:10:29 +02001438 if (DEBUG_STARTING_WINDOW_VERBOSE && w == startingWindow) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001439 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1440 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1441 }
1442
1443 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1444 return false;
1445 }
1446
1447 if (mLastTransactionSequence != mService.mTransactionSequence) {
1448 mLastTransactionSequence = mService.mTransactionSequence;
1449 mNumInterestingWindows = mNumDrawnWindows = 0;
1450 mNumInterestingWindowsExcludingSaved = 0;
1451 mNumDrawnWindowsExcludingSaved = 0;
1452 startingDisplayed = false;
1453 }
1454
1455 final WindowStateAnimator winAnimator = w.mWinAnimator;
1456
1457 boolean isInterestingAndDrawn = false;
1458
1459 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1460 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1461 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1462 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1463 if (!w.isDrawnLw()) {
1464 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1465 + " pv=" + w.mPolicyVisibility
1466 + " mDrawState=" + winAnimator.drawStateToString()
1467 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1468 + " a=" + winAnimator.mAnimating);
1469 }
1470 }
1471
1472 if (w != startingWindow) {
1473 if (w.isInteresting()) {
1474 mNumInterestingWindows++;
1475 if (w.isDrawnLw()) {
1476 mNumDrawnWindows++;
1477
1478 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1479 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1480 + " freezingScreen=" + mAppAnimator.freezingScreen
1481 + " mAppFreezing=" + w.mAppFreezing);
1482
1483 isInterestingAndDrawn = true;
1484 }
1485 }
1486 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001487 if (getController() != null) {
1488 getController().reportStartingWindowDrawn();
1489 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001490 startingDisplayed = true;
1491 }
1492 }
1493
1494 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1495 if (w != startingWindow && w.isInteresting()) {
1496 mNumInterestingWindowsExcludingSaved++;
1497 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1498 mNumDrawnWindowsExcludingSaved++;
1499
1500 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1501 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1502 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1503 + " freezingScreen=" + mAppAnimator.freezingScreen
1504 + " mAppFreezing=" + w.mAppFreezing);
1505
1506 isInterestingAndDrawn = true;
1507 }
1508 }
1509 }
1510
1511 return isInterestingAndDrawn;
1512 }
1513
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001514 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001515 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001516 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001517 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001518 mAppAnimator.animating = true;
1519 mService.mAnimator.setAnimating(true);
1520 mService.mAnimator.mAppWindowAnimating = true;
1521 } else if (mAppAnimator.wasAnimating) {
1522 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001523 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1524 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001525 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1526 }
1527 }
1528
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001529 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001530 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001531 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1532 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1533 // TODO: Investigate if we need to continue to do this or if we can just process them
1534 // in-order.
1535 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001536 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001537 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001538 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001539 }
1540
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001541 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1542 boolean traverseTopToBottom) {
1543 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001544 }
1545
1546 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001547 AppWindowToken asAppWindowToken() {
1548 // I am an app window token!
1549 return this;
1550 }
1551
1552 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001553 boolean fillsParent() {
1554 return mFillsParent;
1555 }
1556
1557 void setFillsParent(boolean fillsParent) {
1558 mFillsParent = fillsParent;
1559 }
1560
Jorim Jaggife762342016-10-13 14:33:27 +02001561 boolean containsDismissKeyguardWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001562 // Window state is transient during relaunch. We are not guaranteed to be frozen during the
1563 // entirety of the relaunch.
1564 if (isRelaunching()) {
1565 return mLastContainsDismissKeyguardWindow;
1566 }
1567
Jorim Jaggife762342016-10-13 14:33:27 +02001568 for (int i = mChildren.size() - 1; i >= 0; i--) {
1569 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1570 return true;
1571 }
1572 }
1573 return false;
1574 }
1575
1576 boolean containsShowWhenLockedWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001577 // When we are relaunching, it is possible for us to be unfrozen before our previous
1578 // windows have been added back. Using the cached value ensures that our previous
1579 // showWhenLocked preference is honored until relaunching is complete.
1580 if (isRelaunching()) {
1581 return mLastContainsShowWhenLockedWindow;
1582 }
1583
Jorim Jaggife762342016-10-13 14:33:27 +02001584 for (int i = mChildren.size() - 1; i >= 0; i--) {
1585 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1586 return true;
1587 }
1588 }
Bryce Lee081554b2017-05-25 07:52:12 -07001589
Jorim Jaggife762342016-10-13 14:33:27 +02001590 return false;
1591 }
1592
1593 void checkKeyguardFlagsChanged() {
1594 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1595 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1596 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1597 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1598 mService.notifyKeyguardFlagsChanged(null /* callback */);
1599 }
1600 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1601 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1602 }
1603
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001604 WindowState getImeTargetBelowWindow(WindowState w) {
1605 final int index = mChildren.indexOf(w);
1606 if (index > 0) {
1607 final WindowState target = mChildren.get(index - 1);
1608 if (target.canBeImeTarget()) {
1609 return target;
1610 }
1611 }
1612 return null;
1613 }
1614
Winson Chungbe9be7f2017-06-28 10:55:22 -07001615 int getLowestAnimLayer() {
1616 for (int i = 0; i < mChildren.size(); i++) {
1617 final WindowState w = mChildren.get(i);
1618 if (w.mRemoved) {
1619 continue;
1620 }
1621 return w.mWinAnimator.mAnimLayer;
1622 }
1623 return Integer.MAX_VALUE;
1624 }
1625
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001626 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1627 WindowState candidate = null;
1628 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1629 final WindowState w = mChildren.get(i);
1630 if (w.mRemoved) {
1631 continue;
1632 }
1633 if (candidate == null || w.mWinAnimator.mAnimLayer >
1634 candidate.mWinAnimator.mAnimLayer) {
1635 candidate = w;
1636 }
1637 }
1638 return candidate;
1639 }
1640
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001641 /**
1642 * See {@link Activity#setDisablePreviewScreenshots}.
1643 */
1644 void setDisablePreviewScreenshots(boolean disable) {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001645 mDisablePreviewScreenshots = disable;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001646 }
1647
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001648 /**
1649 * Retrieves whether we'd like to generate a snapshot that's based solely on the theme. This is
1650 * the case when preview screenshots are disabled {@link #setDisablePreviewScreenshots} or when
1651 * we can't take a snapshot for other reasons, for example, if we have a secure window.
1652 *
1653 * @return True if we need to generate an app theme snapshot, false if we'd like to take a real
1654 * screenshot.
1655 */
1656 boolean shouldUseAppThemeSnapshot() {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001657 return mDisablePreviewScreenshots || forAllWindows(w -> (w.mAttrs.flags & FLAG_SECURE) != 0,
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001658 true /* topToBottom */);
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001659 }
1660
Wale Ogunwale51362492016-09-08 17:49:17 -07001661 @Override
Robert Carrdee1b3f2017-02-27 11:33:33 -08001662 int getAnimLayerAdjustment() {
1663 return mAppAnimator.animLayerAdjustment;
1664 }
1665
1666 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001667 void dump(PrintWriter pw, String prefix) {
1668 super.dump(pw, prefix);
1669 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001670 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001671 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001672 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001673 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1674 pw.print(" mOrientation="); pw.println(mOrientation);
Wale Ogunwale89973222017-04-23 18:39:45 -07001675 pw.println(prefix + "hiddenRequested=" + hiddenRequested + " mClientHidden=" + mClientHidden
1676 + ((mDeferHidingClient) ? " mDeferHidingClient=" + mDeferHidingClient : "")
1677 + " reportedDrawn=" + reportedDrawn + " reportedVisible=" + reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001678 if (paused) {
1679 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001680 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001681 if (mAppStopped) {
1682 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1683 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001684 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001685 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001686 pw.print(prefix); pw.print("mNumInterestingWindows=");
1687 pw.print(mNumInterestingWindows);
1688 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001689 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001690 pw.print(" allDrawn="); pw.print(allDrawn);
1691 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1692 pw.println(")");
1693 }
1694 if (inPendingTransaction) {
1695 pw.print(prefix); pw.print("inPendingTransaction=");
1696 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001697 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001698 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001699 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1700 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001701 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001702 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001703 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001704 if (startingWindow != null || startingSurface != null
Wale Ogunwale6c459212017-05-17 08:56:03 -07001705 || startingDisplayed || startingMoved || mHiddenSetFromTransferredStartingWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001706 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001707 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001708 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001709 pw.print(" startingMoved="); pw.print(startingMoved);
1710 pw.println(" mHiddenSetFromTransferredStartingWindow="
1711 + mHiddenSetFromTransferredStartingWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001712 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001713 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001714 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001715 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001716 }
1717 if (mPendingRelaunchCount != 0) {
1718 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001719 }
Wale Ogunwale9c64cb62017-04-12 13:39:59 -07001720 if (getController() != null) {
1721 pw.print(prefix); pw.print("controller="); pw.println(getController());
1722 }
Wale Ogunwalee287e192017-04-21 09:30:12 -07001723 if (mRemovingFromDisplay) {
1724 pw.println(prefix + "mRemovingFromDisplay=" + mRemovingFromDisplay);
1725 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001726 }
1727
1728 @Override
1729 public String toString() {
1730 if (stringName == null) {
1731 StringBuilder sb = new StringBuilder();
1732 sb.append("AppWindowToken{");
1733 sb.append(Integer.toHexString(System.identityHashCode(this)));
1734 sb.append(" token="); sb.append(token); sb.append('}');
1735 stringName = sb.toString();
1736 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001737 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001738 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001739}