blob: 6aa0e0144c407ec041ad13e91662d4ca6a5b3cc7 [file] [log] [blame]
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08001/*
2 * Copyright (C) 2013 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 Ogunwale65ebd952018-04-25 15:41:44 -070019import static android.app.ActivityTaskManager.RESIZE_MODE_SYSTEM_SCREEN_ROTATION;
skuhne@google.com322347b2016-12-02 12:54:03 -080020import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
Jason Monkba53d8a2017-04-06 18:28:19 +000021import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
Jorim Jaggi30d64f32017-04-07 16:33:17 +020022import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
Bryce Lee61fbcbc2017-03-10 14:14:03 -080023import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwale68278562017-09-23 17:13:55 -070024import static android.content.res.Configuration.EMPTY;
chaviw8c9d1f52018-07-25 14:56:07 -070025
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080026import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070027import static com.android.server.wm.TaskProto.APP_WINDOW_TOKENS;
28import static com.android.server.wm.TaskProto.BOUNDS;
29import static com.android.server.wm.TaskProto.DEFER_REMOVAL;
30import static com.android.server.wm.TaskProto.FILLS_PARENT;
31import static com.android.server.wm.TaskProto.ID;
Louis Chang7501e332018-08-20 13:08:39 +080032import static com.android.server.wm.TaskProto.SURFACE_HEIGHT;
33import static com.android.server.wm.TaskProto.SURFACE_WIDTH;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070034import static com.android.server.wm.TaskProto.TEMP_INSET_BOUNDS;
35import static com.android.server.wm.TaskProto.WINDOW_CONTAINER;
chaviw8c9d1f52018-07-25 14:56:07 -070036import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
37import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
38import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale99db1862015-10-23 20:08:22 -070039
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070040import android.annotation.CallSuper;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010041import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080042import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070043import android.content.res.Configuration;
44import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080045import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080046import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -070047import android.util.proto.ProtoOutputStream;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070048import android.view.Surface;
Winson Chungd41f71d2018-03-16 15:26:07 -070049import android.view.SurfaceControl;
chaviw8c9d1f52018-07-25 14:56:07 -070050
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080051import com.android.internal.annotations.VisibleForTesting;
Craig Mautner2c2549c2013-11-12 08:31:15 -080052
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070053import java.io.PrintWriter;
Jorim Jaggi51304d72017-05-17 17:25:32 +020054import java.util.function.Consumer;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070055
Robert Carrf59b8dd2017-10-02 18:58:36 -070056class Task extends WindowContainer<AppWindowToken> {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080057 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070058
Wale Ogunwalef6192862016-09-10 13:42:30 -070059 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080060 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080061 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070062 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070063 private boolean mDeferRemoval = false;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080064
Jorim Jaggi0429f352015-12-22 16:29:16 +010065 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070066 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070067
Jorim Jaggidc249c42015-12-15 14:57:31 -080068 // Bounds used to calculate the insets.
69 private final Rect mTempInsetBounds = new Rect();
70
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070071 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070072 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070073
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070074 // For comparison with DisplayContent bounds.
75 private Rect mTmpRect = new Rect();
76 // For handling display rotations.
77 private Rect mTmpRect2 = new Rect();
Bryce Leef3c6a472017-11-14 14:53:06 -080078 // For retrieving dim bounds
79 private Rect mTmpRect3 = new Rect();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070080
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080081 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
82 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080083
Winson Chungd3395382016-12-13 11:49:09 -080084 // Whether the task supports picture-in-picture.
85 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
86 private boolean mSupportsPictureInPicture;
87
Chong Zhang3005e752015-09-18 18:46:28 -070088 // Whether the task is currently being drag-resized
89 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010090 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070091
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010092 private TaskDescription mTaskDescription;
93
Robert Carr18f622f2017-05-08 11:20:43 -070094 // If set to true, the task will report that it is not in the floating
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070095 // state regardless of it's stack affiliation. As the floating state drives
Robert Carr18f622f2017-05-08 11:20:43 -070096 // production of content insets this can be used to preserve them across
97 // stack moves and we in fact do so when moving from full screen to pinned.
98 private boolean mPreserveNonFloatingState = false;
99
Robert Carrf59b8dd2017-10-02 18:58:36 -0700100 private Dimmer mDimmer = new Dimmer(this);
101 private final Rect mTmpDimBoundsRect = new Rect();
102
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100103 /** @see #setCanAffectSystemUiFlags */
104 private boolean mCanAffectSystemUiFlags = true;
105
Bryce Leef3c6a472017-11-14 14:53:06 -0800106 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, int resizeMode,
107 boolean supportsPictureInPicture, TaskDescription taskDescription,
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700108 TaskWindowContainerController controller) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100109 super(service);
Craig Mautner83162a92015-01-26 14:43:30 -0800110 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800111 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700112 mUserId = userId;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800113 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800114 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800115 setController(controller);
Bryce Leef3c6a472017-11-14 14:53:06 -0800116 setBounds(getOverrideBounds());
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100117 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800118
119 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
120 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800121 }
122
123 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800124 return mStack != null ? mStack.getDisplayContent() : null;
125 }
126
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800127 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800128 final int size = mChildren.size();
129 if (suggestedPosition >= size) {
130 return Math.min(size, suggestedPosition);
131 }
132
133 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
134 // TODO: Confirm that this is the behavior we want long term.
135 if (mChildren.get(pos).removed) {
136 // suggestedPosition assumes removed tokens are actually gone.
137 ++suggestedPosition;
138 }
139 }
140 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800141 }
142
Wale Ogunwale72919d22016-12-08 18:58:50 -0800143 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800144 void addChild(AppWindowToken wtoken, int position) {
145 position = getAdjustedAddPosition(position);
146 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800147 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800148 }
149
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800150 @Override
151 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
152 position = getAdjustedAddPosition(position);
153 super.positionChildAt(position, child, includingParents);
154 mDeferRemoval = false;
155 }
156
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700157 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700158 for (int i = mChildren.size() - 1; i >= 0; i--) {
159 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800160 return true;
161 }
162 }
163 return false;
164 }
165
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800166 @VisibleForTesting
167 boolean shouldDeferRemoval() {
Wale Ogunwale2c9f2032017-06-02 06:50:50 -0700168 // TODO: This should probably return false if mChildren.isEmpty() regardless if the stack
169 // is animating...
Jorim Jaggia5e10572017-11-15 14:36:26 +0100170 return hasWindowsAlive() && mStack.isSelfOrChildAnimating();
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800171 }
172
Wale Ogunwalef6192862016-09-10 13:42:30 -0700173 @Override
174 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800175 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800176 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800177 mDeferRemoval = true;
178 return;
179 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800180 removeImmediately();
181 }
182
183 @Override
184 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800185 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800186 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800187 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800188
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800189 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800190 }
191
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700192 void reparent(TaskStack stack, int position, boolean moveParents) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800193 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800194 throw new IllegalArgumentException(
195 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800196 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800197 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800198 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800199 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800200 final DisplayContent prevDisplayContent = getDisplayContent();
201
Robert Carr18f622f2017-05-08 11:20:43 -0700202 // If we are moving from the fullscreen stack to the pinned stack
203 // then we want to preserve our insets so that there will not
204 // be a jump in the area covered by system decorations. We rely
205 // on the pinned animation to later unset this value.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700206 if (stack.inPinnedWindowingMode()) {
Robert Carr18f622f2017-05-08 11:20:43 -0700207 mPreserveNonFloatingState = true;
208 } else {
209 mPreserveNonFloatingState = false;
210 }
211
Andrii Kulian441e4492016-09-29 15:25:00 -0700212 getParent().removeChild(this);
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700213 stack.addTask(this, position, showForAllUsers(), moveParents);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800214
215 // Relayout display(s).
216 final DisplayContent displayContent = stack.getDisplayContent();
217 displayContent.setLayoutNeeded();
218 if (prevDisplayContent != displayContent) {
219 onDisplayChanged(displayContent);
220 prevDisplayContent.setLayoutNeeded();
221 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800222 }
223
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700224 /** @see com.android.server.am.ActivityTaskManagerService#positionTaskInStack(int, int, int). */
Bryce Leef3c6a472017-11-14 14:53:06 -0800225 void positionAt(int position) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800226 mStack.positionChildAt(position, this, false /* includingParents */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700227 }
228
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700229 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800230 void onParentSet() {
Robert Carrb1579c82017-09-05 14:54:47 -0700231 super.onParentSet();
232
Andrii Kuliand2765632016-12-12 22:26:34 -0800233 // Update task bounds if needed.
234 updateDisplayInfo(getDisplayContent());
235
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700236 if (getWindowConfiguration().windowsAreScaleable()) {
Andrii Kuliand2765632016-12-12 22:26:34 -0800237 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
238 // while a resize is pending.
239 forceWindowsScaleable(true /* force */);
240 } else {
241 forceWindowsScaleable(false /* force */);
242 }
243 }
244
245 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700246 void removeChild(AppWindowToken token) {
247 if (!mChildren.contains(token)) {
248 Slog.e(TAG, "removeChild: token=" + this + " not found.");
249 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700250 }
251
Wale Ogunwalef6192862016-09-10 13:42:30 -0700252 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700253
Wale Ogunwalef6192862016-09-10 13:42:30 -0700254 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800255 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800256 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700257 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800258 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800259 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800260 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800261
Craig Mautnercbd84af2014-10-22 13:21:22 -0700262 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700263 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
264 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700265 }
266 }
267
Bryce Leef3c6a472017-11-14 14:53:06 -0800268 public int setBounds(Rect bounds, boolean forceResize) {
269 final int boundsChanged = setBounds(bounds);
270
271 if (forceResize && (boundsChanged & BOUNDS_CHANGE_SIZE) != BOUNDS_CHANGE_SIZE) {
272 onResize();
273 return BOUNDS_CHANGE_SIZE | boundsChanged;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700274 }
Wale Ogunwale68278562017-09-23 17:13:55 -0700275
Bryce Leef3c6a472017-11-14 14:53:06 -0800276 return boundsChanged;
277 }
278
279 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
280 @Override
281 public int setBounds(Rect bounds) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700282 int rotation = Surface.ROTATION_0;
283 final DisplayContent displayContent = mStack.getDisplayContent();
284 if (displayContent != null) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700285 rotation = displayContent.getDisplayInfo().rotation;
Bryce Leef3c6a472017-11-14 14:53:06 -0800286 } else if (bounds == null) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700287 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700288 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700289 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800290
291 if (equivalentOverrideBounds(bounds)) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700292 return BOUNDS_CHANGE_NONE;
293 }
294
Bryce Leef3c6a472017-11-14 14:53:06 -0800295 final int boundsChange = super.setBounds(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800296
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700297 mRotation = rotation;
Robert Carrf59b8dd2017-10-02 18:58:36 -0700298
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700299 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700300 }
301
Louis Chang7501e332018-08-20 13:08:39 +0800302 @Override
303 void onDisplayChanged(DisplayContent dc) {
304 updateSurfaceSize(dc);
305 super.onDisplayChanged(dc);
306 }
307
Jorim Jaggidc249c42015-12-15 14:57:31 -0800308 /**
309 * Sets the bounds used to calculate the insets. See
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700310 * {@link android.app.IActivityTaskManager#resizeDockedStack} why this is needed.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800311 */
312 void setTempInsetBounds(Rect tempInsetBounds) {
313 if (tempInsetBounds != null) {
314 mTempInsetBounds.set(tempInsetBounds);
315 } else {
316 mTempInsetBounds.setEmpty();
317 }
318 }
319
320 /**
321 * Gets the bounds used to calculate the insets. See
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700322 * {@link android.app.IActivityTaskManager#resizeDockedStack} why this is needed.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800323 */
324 void getTempInsetBounds(Rect out) {
325 out.set(mTempInsetBounds);
326 }
327
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800328 void setResizeable(int resizeMode) {
329 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800330 }
331
332 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800333 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
334 || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800335 }
336
skuhne@google.com322347b2016-12-02 12:54:03 -0800337 /**
338 * Tests if the orientation should be preserved upon user interactive resizig operations.
339
340 * @return true if orientation should not get changed upon resizing operation.
341 */
342 boolean preserveOrientationOnResize() {
343 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
344 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
345 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
346 }
347
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800348 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700349 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800350 }
351
Jorim Jaggi0429f352015-12-22 16:29:16 +0100352 /**
353 * Prepares the task bounds to be frozen with the current size. See
354 * {@link AppWindowToken#freezeBounds}.
355 */
356 void prepareFreezingBounds() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800357 mPreparedFrozenBounds.set(getBounds());
Andrii Kulian441e4492016-09-29 15:25:00 -0700358 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100359 }
360
Chong Zhang5117e272016-05-03 12:47:34 -0700361 /**
362 * Align the task to the adjusted bounds.
363 *
364 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
365 * @param tempInsetBounds Insets bounds for the task.
366 * @param alignBottom True if the task's bottom should be aligned to the adjusted
367 * bounds's bottom; false if the task's top should be aligned
368 * the adjusted bounds's top.
369 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700370 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700371 if (!isResizeable() || EMPTY.equals(getOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700372 return;
373 }
374
375 getBounds(mTmpRect2);
376 if (alignBottom) {
377 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
378 mTmpRect2.offset(0, offsetY);
379 } else {
380 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
381 }
382 setTempInsetBounds(tempInsetBounds);
Bryce Leef3c6a472017-11-14 14:53:06 -0800383 setBounds(mTmpRect2, false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700384 }
385
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700386 /** Return true if the current bound can get outputted to the rest of the system as-is. */
387 private boolean useCurrentBounds() {
Wale Ogunwale926aade2017-08-29 11:24:37 -0700388 final DisplayContent displayContent = getDisplayContent();
Bryce Leef3c6a472017-11-14 14:53:06 -0800389 return matchParentBounds()
Wale Ogunwale926aade2017-08-29 11:24:37 -0700390 || !inSplitScreenSecondaryWindowingMode()
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700391 || displayContent == null
Matthew Ng64e77cf2017-10-31 14:01:31 -0700392 || displayContent.getSplitScreenPrimaryStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700393 }
394
Bryce Leef3c6a472017-11-14 14:53:06 -0800395 @Override
396 public void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700397 if (useCurrentBounds()) {
398 // No need to adjust the output bounds if fullscreen or the docked stack is visible
399 // since it is already what we want to represent to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800400 super.getBounds(out);
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700401 return;
402 }
403
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800404 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
405 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800406 mStack.getDisplayContent().getBounds(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700407 }
408
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800409 /**
410 * Calculate the maximum visible area of this task. If the task has only one app,
411 * the result will be visible frame of that app. If the task has more than one apps,
412 * we search from top down if the next app got different visible area.
413 *
414 * This effort is to handle the case where some task (eg. GMail composer) might pop up
415 * a dialog that's different in size from the activity below, in which case we should
416 * be dimming the entire task area behind the dialog.
417 *
418 * @param out Rect containing the max visible bounds.
419 * @return true if the task has some visible app windows; false otherwise.
420 */
chaviw553b0212018-07-12 13:37:01 -0700421 private boolean getMaxVisibleBounds(Rect out) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800422 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700423 for (int i = mChildren.size() - 1; i >= 0; i--) {
424 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800425 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700426 if (token.mIsExiting || token.isClientHidden() || token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800427 continue;
428 }
429 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800430 if (win == null) {
431 continue;
432 }
433 if (!foundTop) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800434 foundTop = true;
chaviw553b0212018-07-12 13:37:01 -0700435 out.setEmpty();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800436 }
chaviw553b0212018-07-12 13:37:01 -0700437
438 win.getMaxVisibleBounds(out);
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800439 }
440 return foundTop;
441 }
442
443 /** Bounds of the task to be used for dimming, as well as touch related tests. */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800444 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700445 final DisplayContent displayContent = mStack.getDisplayContent();
446 // It doesn't matter if we in particular are part of the resize, since we couldn't have
447 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700448 final boolean dockedResizing = displayContent != null
449 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800450 if (useCurrentBounds()) {
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700451 if (inFreeformWindowingMode() && getMaxVisibleBounds(out)) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800452 return;
453 }
454
Bryce Leef3c6a472017-11-14 14:53:06 -0800455 if (!matchParentBounds()) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700456 // When minimizing the docked stack when going home, we don't adjust the task bounds
457 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700458 //
459 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
460 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
461 // should keep up with the divider.
462 if (dockedResizing) {
463 mStack.getBounds(out);
464 } else {
465 mStack.getBounds(mTmpRect);
Bryce Leef3c6a472017-11-14 14:53:06 -0800466 mTmpRect.intersect(getBounds());
chaviw2fb06bc2018-01-19 17:09:15 -0800467 out.set(mTmpRect);
Robert Carra86a6bf2016-04-08 17:34:16 -0700468 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700469 } else {
Bryce Leef3c6a472017-11-14 14:53:06 -0800470 out.set(getBounds());
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700471 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800472 return;
473 }
474
Wale Ogunwalef6192862016-09-10 13:42:30 -0700475 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
476 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
477 if (displayContent != null) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800478 displayContent.getBounds(out);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700479 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800480 }
481
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100482 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800483 if (mDragResizing != dragResizing) {
chaviw8c9d1f52018-07-25 14:56:07 -0700484 // No need to check if the mode is allowed if it's leaving dragResize
485 if (dragResizing && !DragResizeMode.isModeAllowedForStack(mStack, dragResizeMode)) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100486 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
487 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
488 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800489 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100490 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800491 resetDragResizingChangeReported();
492 }
493 }
494
Chong Zhang3005e752015-09-18 18:46:28 -0700495 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700496 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700497 }
498
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100499 int getDragResizeMode() {
500 return mDragResizeMode;
501 }
502
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700503 void updateDisplayInfo(final DisplayContent displayContent) {
504 if (displayContent == null) {
505 return;
506 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800507 if (matchParentBounds()) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700508 // TODO: Yeah...not sure if this works with WindowConfiguration, but shouldn't be a
509 // problem once we move mBounds into WindowConfiguration.
Bryce Leef3c6a472017-11-14 14:53:06 -0800510 setBounds(null);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700511 return;
512 }
513 final int newRotation = displayContent.getDisplayInfo().rotation;
514 if (mRotation == newRotation) {
515 return;
516 }
517
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800518 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700519 // - We don't want the task to move around on the screen when this happens, so update the
520 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800521 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700522 // from its stack. The stack will take care of task rotation for the other case.
Bryce Leef3c6a472017-11-14 14:53:06 -0800523 mTmpRect2.set(getBounds());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800524
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700525 if (!getWindowConfiguration().canResizeTask()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800526 setBounds(mTmpRect2);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800527 return;
528 }
529
Wale Ogunwale94744212015-09-21 19:01:47 -0700530 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Bryce Leef3c6a472017-11-14 14:53:06 -0800531 if (setBounds(mTmpRect2) != BOUNDS_CHANGE_NONE) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800532 final TaskWindowContainerController controller = getController();
533 if (controller != null) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800534 controller.requestResize(getBounds(), RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800535 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700536 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700537 }
538
Wale Ogunwalef6192862016-09-10 13:42:30 -0700539 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700540 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700541 for (int i = mChildren.size() - 1; i >= 0; --i) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200542 mChildren.get(i).cancelAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700543 }
544 }
545
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700546 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700547 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800548 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700549 }
550
Robert Carr7e4c90e2017-02-15 19:52:38 -0800551 /**
552 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
553 * insets differently. However if we are animating to the fullscreen stack
554 * we need to begin calculating insets as if we were fullscreen, otherwise
555 * we will have a jump at the end.
556 */
Robert Carre6275582016-02-29 15:45:45 -0800557 boolean isFloating() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700558 return getWindowConfiguration().tasksAreFloating()
Robert Carr18f622f2017-05-08 11:20:43 -0700559 && !mStack.isAnimatingBoundsToFullscreen() && !mPreserveNonFloatingState;
Robert Carre6275582016-02-29 15:45:45 -0800560 }
561
Winson Chungd41f71d2018-03-16 15:26:07 -0700562 @Override
563 public SurfaceControl getAnimationLeashParent() {
Winson Chung732446a2018-09-19 13:15:17 -0700564 // Currently, only the recents animation will create animation leashes for tasks. In this
565 // case, reparent the task to the home animation layer while it is being animated to allow
566 // the home activity to reorder the app windows relative to its own.
567 return getAppAnimationLayer(ANIMATION_LAYER_HOME);
Winson Chungd41f71d2018-03-16 15:26:07 -0700568 }
569
570 boolean isTaskAnimating() {
571 final RecentsAnimationController recentsAnim = mService.getRecentsAnimationController();
572 if (recentsAnim != null) {
573 if (recentsAnim.isAnimatingTask(this)) {
574 return true;
575 }
576 }
577 return false;
578 }
579
Chong Zhangd8ceb852015-11-11 14:53:41 -0800580 WindowState getTopVisibleAppMainWindow() {
581 final AppWindowToken token = getTopVisibleAppToken();
582 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700583 }
584
Jorim Jaggie6c6ecb2017-07-20 18:09:20 +0200585 AppWindowToken getTopFullscreenAppToken() {
586 for (int i = mChildren.size() - 1; i >= 0; i--) {
587 final AppWindowToken token = mChildren.get(i);
588 final WindowState win = token.findMainWindow();
589 if (win != null && win.mAttrs.isFullscreen()) {
590 return token;
591 }
592 }
593 return null;
594 }
595
Chong Zhangd8ceb852015-11-11 14:53:41 -0800596 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700597 for (int i = mChildren.size() - 1; i >= 0; i--) {
598 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800599 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700600 if (!token.mIsExiting && !token.isClientHidden() && !token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800601 return token;
602 }
603 }
604 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700605 }
606
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700607 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700608 if (useCurrentBounds()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800609 return matchParentBounds();
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700610 }
611 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
612 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
613 // system.
614 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700615 }
616
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700617 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700618 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700619 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700620 for (int i = mChildren.size() - 1; i >= 0; i--) {
621 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700622 }
623 } finally {
Adrian Roos111aff92017-09-27 18:11:46 +0200624 mService.closeSurfaceTransaction("forceWindowsScaleable");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700625 }
626 }
627
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100628 void setTaskDescription(TaskDescription taskDescription) {
629 mTaskDescription = taskDescription;
630 }
631
632 TaskDescription getTaskDescription() {
633 return mTaskDescription;
634 }
635
Wale Ogunwalef6192862016-09-10 13:42:30 -0700636 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700637 boolean fillsParent() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800638 return matchParentBounds() || !getWindowConfiguration().canResizeTask();
Wale Ogunwale51362492016-09-08 17:49:17 -0700639 }
640
Jorim Jaggi329a5832017-01-05 18:57:12 +0100641 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100642 TaskWindowContainerController getController() {
643 return (TaskWindowContainerController) super.getController();
644 }
645
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700646 @Override
Jorim Jaggi51304d72017-05-17 17:25:32 +0200647 void forAllTasks(Consumer<Task> callback) {
648 callback.accept(this);
649 }
650
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100651 /**
652 * @param canAffectSystemUiFlags If false, all windows in this task can not affect SystemUI
653 * flags. See {@link WindowState#canAffectSystemUiFlags()}.
654 */
655 void setCanAffectSystemUiFlags(boolean canAffectSystemUiFlags) {
656 mCanAffectSystemUiFlags = canAffectSystemUiFlags;
657 }
658
659 /**
660 * @see #setCanAffectSystemUiFlags
661 */
662 boolean canAffectSystemUiFlags() {
663 return mCanAffectSystemUiFlags;
664 }
665
chaviw87ca63a2018-03-26 14:06:17 -0700666 void dontAnimateDimExit() {
667 mDimmer.dontAnimateExit();
668 }
669
Jorim Jaggi51304d72017-05-17 17:25:32 +0200670 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800671 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700672 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800673 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700674
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700675 String getName() {
676 return toShortString();
677 }
678
Robert Carr18f622f2017-05-08 11:20:43 -0700679 void clearPreserveNonFloatingState() {
680 mPreserveNonFloatingState = false;
681 }
682
chaviw2fb06bc2018-01-19 17:09:15 -0800683 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700684 Dimmer getDimmer() {
685 return mDimmer;
686 }
687
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700688 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700689 void prepareSurfaces() {
690 mDimmer.resetDimStates();
691 super.prepareSurfaces();
692 getDimBounds(mTmpDimBoundsRect);
chaviwe07246a2017-12-12 16:18:29 -0800693
694 // Bounds need to be relative, as the dim layer is a child.
695 mTmpDimBoundsRect.offsetTo(0, 0);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700696 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
697 scheduleAnimation();
698 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700699 }
700
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700701 @CallSuper
702 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +0200703 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -0700704 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200705 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700706 proto.write(ID, mTaskId);
707 for (int i = mChildren.size() - 1; i >= 0; i--) {
708 final AppWindowToken appWindowToken = mChildren.get(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200709 appWindowToken.writeToProto(proto, APP_WINDOW_TOKENS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700710 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800711 proto.write(FILLS_PARENT, matchParentBounds());
712 getBounds().writeToProto(proto, BOUNDS);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700713 mTempInsetBounds.writeToProto(proto, TEMP_INSET_BOUNDS);
Vishnu Nair04ab4392018-01-10 11:00:06 -0800714 proto.write(DEFER_REMOVAL, mDeferRemoval);
Louis Chang7501e332018-08-20 13:08:39 +0800715 proto.write(SURFACE_WIDTH, mSurfaceControl.getWidth());
716 proto.write(SURFACE_HEIGHT, mSurfaceControl.getHeight());
Steven Timotiusaf03df62017-07-18 16:56:43 -0700717 proto.end(token);
718 }
719
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200720 @Override
721 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
722 super.dump(pw, prefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800723 final String doublePrefix = prefix + " ";
724
725 pw.println(prefix + "taskId=" + mTaskId);
Bryce Leef3c6a472017-11-14 14:53:06 -0800726 pw.println(doublePrefix + "mBounds=" + getBounds().toShortString());
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800727 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700728 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800729 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
730
731 final String triplePrefix = doublePrefix + " ";
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100732 final String quadruplePrefix = triplePrefix + " ";
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800733
Wale Ogunwalef6192862016-09-10 13:42:30 -0700734 for (int i = mChildren.size() - 1; i >= 0; i--) {
735 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800736 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100737 wtoken.dump(pw, quadruplePrefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800738 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700739 }
Robert Carrf59b8dd2017-10-02 18:58:36 -0700740
741 String toShortString() {
742 return "Task=" + mTaskId;
743 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800744}