blob: a7dd55b8a1609124e8f09a3c7648161baad9a7f6 [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;
Yunfan Chen0e7aff92018-12-05 16:35:32 -080027import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_DOCKED_DIVIDER;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070028import static com.android.server.wm.TaskProto.APP_WINDOW_TOKENS;
29import static com.android.server.wm.TaskProto.BOUNDS;
30import static com.android.server.wm.TaskProto.DEFER_REMOVAL;
Evan Roskyed6767f2018-10-26 17:21:06 -070031import static com.android.server.wm.TaskProto.DISPLAYED_BOUNDS;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070032import static com.android.server.wm.TaskProto.FILLS_PARENT;
33import static com.android.server.wm.TaskProto.ID;
Louis Chang7501e332018-08-20 13:08:39 +080034import static com.android.server.wm.TaskProto.SURFACE_HEIGHT;
35import static com.android.server.wm.TaskProto.SURFACE_WIDTH;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070036import static com.android.server.wm.TaskProto.WINDOW_CONTAINER;
chaviw8c9d1f52018-07-25 14:56:07 -070037import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
38import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
39import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale99db1862015-10-23 20:08:22 -070040
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070041import android.annotation.CallSuper;
Yunfan Chen0e7aff92018-12-05 16:35:32 -080042import android.app.ActivityManager;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010043import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080044import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070045import android.content.res.Configuration;
46import android.graphics.Rect;
Garfield Tan90b04282018-12-11 14:04:42 -080047import android.os.IBinder;
Craig Mautner2c2549c2013-11-12 08:31:15 -080048import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080049import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -070050import android.util.proto.ProtoOutputStream;
Garfield Tandec96db2018-10-30 11:28:49 -070051import android.view.Display;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070052import android.view.Surface;
Winson Chungd41f71d2018-03-16 15:26:07 -070053import android.view.SurfaceControl;
chaviw8c9d1f52018-07-25 14:56:07 -070054
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080055import com.android.internal.annotations.VisibleForTesting;
Craig Mautner2c2549c2013-11-12 08:31:15 -080056
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070057import java.io.PrintWriter;
Jorim Jaggi51304d72017-05-17 17:25:32 +020058import java.util.function.Consumer;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070059
Yunfan Chen0e7aff92018-12-05 16:35:32 -080060class Task extends WindowContainer<AppWindowToken> implements ConfigurationContainerListener{
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080061 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070062
Wale Ogunwalef6192862016-09-10 13:42:30 -070063 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080064 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080065 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070066 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070067 private boolean mDeferRemoval = false;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080068
Jorim Jaggi0429f352015-12-22 16:29:16 +010069 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070070 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070071
Evan Roskyed6767f2018-10-26 17:21:06 -070072 // If non-empty, bounds used to display the task during animations/interactions.
73 private final Rect mOverrideDisplayedBounds = new Rect();
Jorim Jaggidc249c42015-12-15 14:57:31 -080074
Garfield Tandec96db2018-10-30 11:28:49 -070075 /** ID of the display which rotation {@link #mRotation} has. */
76 private int mLastRotationDisplayId = Display.INVALID_DISPLAY;
77 /**
78 * Display rotation as of the last time {@link #setBounds(Rect)} was called or this task was
79 * moved to a new display.
80 */
Wale Ogunwale3eadad72016-10-13 09:16:59 -070081 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070082
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070083 // For comparison with DisplayContent bounds.
84 private Rect mTmpRect = new Rect();
85 // For handling display rotations.
86 private Rect mTmpRect2 = new Rect();
Bryce Leef3c6a472017-11-14 14:53:06 -080087 // For retrieving dim bounds
88 private Rect mTmpRect3 = new Rect();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070089
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080090 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
91 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080092
Winson Chungd3395382016-12-13 11:49:09 -080093 // Whether the task supports picture-in-picture.
94 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
95 private boolean mSupportsPictureInPicture;
96
Chong Zhang3005e752015-09-18 18:46:28 -070097 // Whether the task is currently being drag-resized
98 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010099 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -0700100
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100101 private TaskDescription mTaskDescription;
102
Robert Carr18f622f2017-05-08 11:20:43 -0700103 // If set to true, the task will report that it is not in the floating
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700104 // state regardless of it's stack affiliation. As the floating state drives
Robert Carr18f622f2017-05-08 11:20:43 -0700105 // production of content insets this can be used to preserve them across
106 // stack moves and we in fact do so when moving from full screen to pinned.
107 private boolean mPreserveNonFloatingState = false;
108
Robert Carrf59b8dd2017-10-02 18:58:36 -0700109 private Dimmer mDimmer = new Dimmer(this);
110 private final Rect mTmpDimBoundsRect = new Rect();
111
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100112 /** @see #setCanAffectSystemUiFlags */
113 private boolean mCanAffectSystemUiFlags = true;
114
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800115 // TODO: remove after unification
116 TaskRecord mTaskRecord;
117
Bryce Leef3c6a472017-11-14 14:53:06 -0800118 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, int resizeMode,
119 boolean supportsPictureInPicture, TaskDescription taskDescription,
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800120 TaskRecord taskRecord) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100121 super(service);
Craig Mautner83162a92015-01-26 14:43:30 -0800122 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800123 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700124 mUserId = userId;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800125 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800126 mSupportsPictureInPicture = supportsPictureInPicture;
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800127 mTaskRecord = taskRecord;
128 if (mTaskRecord != null) {
129 // This can be null when we call createTaskInStack in WindowTestUtils. Remove this after
130 // unification.
131 mTaskRecord.registerConfigurationChangeListener(this);
132 }
Evan Roskydfe3da72018-10-26 17:21:06 -0700133 setBounds(getRequestedOverrideBounds());
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100134 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800135
136 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
137 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800138 }
139
140 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800141 return mStack != null ? mStack.getDisplayContent() : null;
142 }
143
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800144 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800145 final int size = mChildren.size();
146 if (suggestedPosition >= size) {
147 return Math.min(size, suggestedPosition);
148 }
149
150 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
151 // TODO: Confirm that this is the behavior we want long term.
152 if (mChildren.get(pos).removed) {
153 // suggestedPosition assumes removed tokens are actually gone.
154 ++suggestedPosition;
155 }
156 }
157 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800158 }
159
Wale Ogunwale72919d22016-12-08 18:58:50 -0800160 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800161 void addChild(AppWindowToken wtoken, int position) {
162 position = getAdjustedAddPosition(position);
163 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800164 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800165 }
166
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800167 @Override
168 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
169 position = getAdjustedAddPosition(position);
170 super.positionChildAt(position, child, includingParents);
171 mDeferRemoval = false;
172 }
173
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700174 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700175 for (int i = mChildren.size() - 1; i >= 0; i--) {
176 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800177 return true;
178 }
179 }
180 return false;
181 }
182
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800183 @VisibleForTesting
184 boolean shouldDeferRemoval() {
Wale Ogunwale2c9f2032017-06-02 06:50:50 -0700185 // TODO: This should probably return false if mChildren.isEmpty() regardless if the stack
186 // is animating...
Jorim Jaggia5e10572017-11-15 14:36:26 +0100187 return hasWindowsAlive() && mStack.isSelfOrChildAnimating();
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800188 }
189
Wale Ogunwalef6192862016-09-10 13:42:30 -0700190 @Override
191 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800192 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800193 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800194 mDeferRemoval = true;
195 return;
196 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800197 removeImmediately();
198 }
199
200 @Override
201 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800202 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800203 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800204 mDeferRemoval = false;
Yunfan Chen3a77f282018-12-12 15:47:52 -0800205 if (mTaskRecord != null) {
206 mTaskRecord.unregisterConfigurationChangeListener(this);
207 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800208
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800209 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800210 }
211
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700212 void reparent(TaskStack stack, int position, boolean moveParents) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800213 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800214 throw new IllegalArgumentException(
215 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800216 }
Yunfan Chen279f5582018-12-12 15:24:50 -0800217 if (stack == null) {
218 throw new IllegalArgumentException("reparent: could not find stack.");
219 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800220 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800221 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800222 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800223 final DisplayContent prevDisplayContent = getDisplayContent();
224
Robert Carr18f622f2017-05-08 11:20:43 -0700225 // If we are moving from the fullscreen stack to the pinned stack
226 // then we want to preserve our insets so that there will not
227 // be a jump in the area covered by system decorations. We rely
228 // on the pinned animation to later unset this value.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700229 if (stack.inPinnedWindowingMode()) {
Robert Carr18f622f2017-05-08 11:20:43 -0700230 mPreserveNonFloatingState = true;
231 } else {
232 mPreserveNonFloatingState = false;
233 }
234
Andrii Kulian441e4492016-09-29 15:25:00 -0700235 getParent().removeChild(this);
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700236 stack.addTask(this, position, showForAllUsers(), moveParents);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800237
238 // Relayout display(s).
239 final DisplayContent displayContent = stack.getDisplayContent();
240 displayContent.setLayoutNeeded();
241 if (prevDisplayContent != displayContent) {
242 onDisplayChanged(displayContent);
243 prevDisplayContent.setLayoutNeeded();
244 }
Yunfan Chen279f5582018-12-12 15:24:50 -0800245 getDisplayContent().layoutAndAssignWindowLayersIfNeeded();
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800246 }
247
Wale Ogunwale59507092018-10-29 09:00:30 -0700248 /** @see ActivityTaskManagerService#positionTaskInStack(int, int, int). */
Bryce Leef3c6a472017-11-14 14:53:06 -0800249 void positionAt(int position) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800250 mStack.positionChildAt(position, this, false /* includingParents */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700251 }
252
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700253 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800254 void onParentSet() {
Robert Carrb1579c82017-09-05 14:54:47 -0700255 super.onParentSet();
256
Andrii Kuliand2765632016-12-12 22:26:34 -0800257 // Update task bounds if needed.
Garfield Tan2f145f22018-11-01 15:27:03 -0700258 adjustBoundsForDisplayChangeIfNeeded(getDisplayContent());
Andrii Kuliand2765632016-12-12 22:26:34 -0800259
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700260 if (getWindowConfiguration().windowsAreScaleable()) {
Andrii Kuliand2765632016-12-12 22:26:34 -0800261 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
262 // while a resize is pending.
263 forceWindowsScaleable(true /* force */);
264 } else {
265 forceWindowsScaleable(false /* force */);
266 }
267 }
268
269 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700270 void removeChild(AppWindowToken token) {
271 if (!mChildren.contains(token)) {
272 Slog.e(TAG, "removeChild: token=" + this + " not found.");
273 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700274 }
275
Wale Ogunwalef6192862016-09-10 13:42:30 -0700276 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700277
Wale Ogunwalef6192862016-09-10 13:42:30 -0700278 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800279 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800280 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700281 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800282 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800283 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800284 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800285
Craig Mautnercbd84af2014-10-22 13:21:22 -0700286 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700287 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
288 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700289 }
290 }
291
Bryce Leef3c6a472017-11-14 14:53:06 -0800292 public int setBounds(Rect bounds, boolean forceResize) {
293 final int boundsChanged = setBounds(bounds);
294
295 if (forceResize && (boundsChanged & BOUNDS_CHANGE_SIZE) != BOUNDS_CHANGE_SIZE) {
296 onResize();
297 return BOUNDS_CHANGE_SIZE | boundsChanged;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700298 }
Wale Ogunwale68278562017-09-23 17:13:55 -0700299
Bryce Leef3c6a472017-11-14 14:53:06 -0800300 return boundsChanged;
301 }
302
303 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
304 @Override
305 public int setBounds(Rect bounds) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700306 int rotation = Surface.ROTATION_0;
307 final DisplayContent displayContent = mStack.getDisplayContent();
308 if (displayContent != null) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700309 rotation = displayContent.getDisplayInfo().rotation;
Bryce Leef3c6a472017-11-14 14:53:06 -0800310 } else if (bounds == null) {
Evan Roskye747c3e2018-10-30 20:06:41 -0700311 return super.setBounds(bounds);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700312 }
313
Bryce Leef3c6a472017-11-14 14:53:06 -0800314 final int boundsChange = super.setBounds(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800315
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700316 mRotation = rotation;
Robert Carrf59b8dd2017-10-02 18:58:36 -0700317
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700318 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700319 }
320
Garfield Tan90b04282018-12-11 14:04:42 -0800321 @Override
322 public boolean onDescendantOrientationChanged(IBinder freezeDisplayToken,
323 ConfigurationContainer requestingContainer) {
324 if (super.onDescendantOrientationChanged(freezeDisplayToken, requestingContainer)) {
325 return true;
326 }
327
328 // No one in higher hierarchy handles this request, let's adjust our bounds to fulfill
329 // it if possible.
330 // TODO: Move to TaskRecord after unification is done.
331 if (mTaskRecord != null) {
332 mTaskRecord.onConfigurationChanged(mTaskRecord.getParent().getConfiguration());
333 return true;
334 }
335 return false;
336 }
337
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800338 void resize(boolean relayout, boolean forced) {
339 if (setBounds(getRequestedOverrideBounds(), forced) != BOUNDS_CHANGE_NONE && relayout) {
340 getDisplayContent().layoutAndAssignWindowLayersIfNeeded();
341 }
342 }
343
Louis Chang7501e332018-08-20 13:08:39 +0800344 @Override
345 void onDisplayChanged(DisplayContent dc) {
Garfield Tan2f145f22018-11-01 15:27:03 -0700346 adjustBoundsForDisplayChangeIfNeeded(dc);
Louis Chang7501e332018-08-20 13:08:39 +0800347 super.onDisplayChanged(dc);
348 }
349
Jorim Jaggidc249c42015-12-15 14:57:31 -0800350 /**
Evan Roskyed6767f2018-10-26 17:21:06 -0700351 * Sets bounds that override where the task is displayed. Used during transient operations
352 * like animation / interaction.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800353 */
Evan Roskyed6767f2018-10-26 17:21:06 -0700354 void setOverrideDisplayedBounds(Rect overrideDisplayedBounds) {
355 if (overrideDisplayedBounds != null) {
356 mOverrideDisplayedBounds.set(overrideDisplayedBounds);
Jorim Jaggidc249c42015-12-15 14:57:31 -0800357 } else {
Evan Roskyed6767f2018-10-26 17:21:06 -0700358 mOverrideDisplayedBounds.setEmpty();
Jorim Jaggidc249c42015-12-15 14:57:31 -0800359 }
360 }
361
362 /**
Evan Roskyed6767f2018-10-26 17:21:06 -0700363 * Gets the bounds that override where the task is displayed. See
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700364 * {@link android.app.IActivityTaskManager#resizeDockedStack} why this is needed.
Jorim Jaggidc249c42015-12-15 14:57:31 -0800365 */
Evan Roskyed6767f2018-10-26 17:21:06 -0700366 Rect getOverrideDisplayedBounds() {
367 return mOverrideDisplayedBounds;
Jorim Jaggidc249c42015-12-15 14:57:31 -0800368 }
369
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800370 void setResizeable(int resizeMode) {
371 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800372 }
373
374 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800375 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800376 || mWmService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800377 }
378
skuhne@google.com322347b2016-12-02 12:54:03 -0800379 /**
380 * Tests if the orientation should be preserved upon user interactive resizig operations.
381
382 * @return true if orientation should not get changed upon resizing operation.
383 */
384 boolean preserveOrientationOnResize() {
385 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
386 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
387 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
388 }
389
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800390 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700391 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800392 }
393
Jorim Jaggi0429f352015-12-22 16:29:16 +0100394 /**
395 * Prepares the task bounds to be frozen with the current size. See
396 * {@link AppWindowToken#freezeBounds}.
397 */
398 void prepareFreezingBounds() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800399 mPreparedFrozenBounds.set(getBounds());
Andrii Kulian441e4492016-09-29 15:25:00 -0700400 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100401 }
402
Chong Zhang5117e272016-05-03 12:47:34 -0700403 /**
404 * Align the task to the adjusted bounds.
405 *
406 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
407 * @param tempInsetBounds Insets bounds for the task.
408 * @param alignBottom True if the task's bottom should be aligned to the adjusted
409 * bounds's bottom; false if the task's top should be aligned
410 * the adjusted bounds's top.
411 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700412 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Evan Roskydfe3da72018-10-26 17:21:06 -0700413 if (!isResizeable() || EMPTY.equals(getRequestedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700414 return;
415 }
416
417 getBounds(mTmpRect2);
418 if (alignBottom) {
419 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
420 mTmpRect2.offset(0, offsetY);
421 } else {
422 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
423 }
Evan Roskyed6767f2018-10-26 17:21:06 -0700424 if (tempInsetBounds == null || tempInsetBounds.isEmpty()) {
425 setOverrideDisplayedBounds(null);
426 setBounds(mTmpRect2);
427 } else {
428 setOverrideDisplayedBounds(mTmpRect2);
429 setBounds(tempInsetBounds);
430 }
Chong Zhang5117e272016-05-03 12:47:34 -0700431 }
432
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700433 /** Return true if the current bound can get outputted to the rest of the system as-is. */
434 private boolean useCurrentBounds() {
Wale Ogunwale926aade2017-08-29 11:24:37 -0700435 final DisplayContent displayContent = getDisplayContent();
Bryce Leef3c6a472017-11-14 14:53:06 -0800436 return matchParentBounds()
Wale Ogunwale926aade2017-08-29 11:24:37 -0700437 || !inSplitScreenSecondaryWindowingMode()
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700438 || displayContent == null
Matthew Ng64e77cf2017-10-31 14:01:31 -0700439 || displayContent.getSplitScreenPrimaryStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700440 }
441
Bryce Leef3c6a472017-11-14 14:53:06 -0800442 @Override
443 public void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700444 if (useCurrentBounds()) {
445 // No need to adjust the output bounds if fullscreen or the docked stack is visible
446 // since it is already what we want to represent to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800447 super.getBounds(out);
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700448 return;
449 }
450
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800451 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
452 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Bryce Leef3c6a472017-11-14 14:53:06 -0800453 mStack.getDisplayContent().getBounds(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700454 }
455
Evan Roskyed6767f2018-10-26 17:21:06 -0700456 @Override
457 public Rect getDisplayedBounds() {
458 if (mOverrideDisplayedBounds.isEmpty()) {
459 return super.getDisplayedBounds();
460 } else {
461 return mOverrideDisplayedBounds;
462 }
463 }
464
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800465 /**
466 * Calculate the maximum visible area of this task. If the task has only one app,
467 * the result will be visible frame of that app. If the task has more than one apps,
468 * we search from top down if the next app got different visible area.
469 *
470 * This effort is to handle the case where some task (eg. GMail composer) might pop up
471 * a dialog that's different in size from the activity below, in which case we should
472 * be dimming the entire task area behind the dialog.
473 *
474 * @param out Rect containing the max visible bounds.
475 * @return true if the task has some visible app windows; false otherwise.
476 */
chaviw553b0212018-07-12 13:37:01 -0700477 private boolean getMaxVisibleBounds(Rect out) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800478 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700479 for (int i = mChildren.size() - 1; i >= 0; i--) {
480 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800481 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700482 if (token.mIsExiting || token.isClientHidden() || token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800483 continue;
484 }
485 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800486 if (win == null) {
487 continue;
488 }
489 if (!foundTop) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800490 foundTop = true;
chaviw553b0212018-07-12 13:37:01 -0700491 out.setEmpty();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800492 }
chaviw553b0212018-07-12 13:37:01 -0700493
494 win.getMaxVisibleBounds(out);
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800495 }
496 return foundTop;
497 }
498
499 /** Bounds of the task to be used for dimming, as well as touch related tests. */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800500 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700501 final DisplayContent displayContent = mStack.getDisplayContent();
502 // It doesn't matter if we in particular are part of the resize, since we couldn't have
503 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700504 final boolean dockedResizing = displayContent != null
505 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800506 if (useCurrentBounds()) {
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700507 if (inFreeformWindowingMode() && getMaxVisibleBounds(out)) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800508 return;
509 }
510
Bryce Leef3c6a472017-11-14 14:53:06 -0800511 if (!matchParentBounds()) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700512 // When minimizing the docked stack when going home, we don't adjust the task bounds
513 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700514 //
515 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
516 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
517 // should keep up with the divider.
518 if (dockedResizing) {
519 mStack.getBounds(out);
520 } else {
521 mStack.getBounds(mTmpRect);
Bryce Leef3c6a472017-11-14 14:53:06 -0800522 mTmpRect.intersect(getBounds());
chaviw2fb06bc2018-01-19 17:09:15 -0800523 out.set(mTmpRect);
Robert Carra86a6bf2016-04-08 17:34:16 -0700524 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700525 } else {
Bryce Leef3c6a472017-11-14 14:53:06 -0800526 out.set(getBounds());
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700527 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800528 return;
529 }
530
Wale Ogunwalef6192862016-09-10 13:42:30 -0700531 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
532 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
533 if (displayContent != null) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800534 displayContent.getBounds(out);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700535 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800536 }
537
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100538 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800539 if (mDragResizing != dragResizing) {
chaviw8c9d1f52018-07-25 14:56:07 -0700540 // No need to check if the mode is allowed if it's leaving dragResize
541 if (dragResizing && !DragResizeMode.isModeAllowedForStack(mStack, dragResizeMode)) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100542 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
543 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
544 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800545 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100546 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800547 resetDragResizingChangeReported();
548 }
549 }
550
Chong Zhang3005e752015-09-18 18:46:28 -0700551 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700552 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700553 }
554
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100555 int getDragResizeMode() {
556 return mDragResizeMode;
557 }
558
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800559 /**
560 * Puts this task into docked drag resizing mode. See {@link DragResizeMode}.
561 *
562 * @param resizing Whether to put the task into drag resize mode.
563 */
564 public void setTaskDockedResizing(boolean resizing) {
565 setDragResizing(resizing, DRAG_RESIZE_MODE_DOCKED_DIVIDER);
566 }
567
Garfield Tan2f145f22018-11-01 15:27:03 -0700568 private void adjustBoundsForDisplayChangeIfNeeded(final DisplayContent displayContent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700569 if (displayContent == null) {
570 return;
571 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800572 if (matchParentBounds()) {
Wale Ogunwale68278562017-09-23 17:13:55 -0700573 // TODO: Yeah...not sure if this works with WindowConfiguration, but shouldn't be a
574 // problem once we move mBounds into WindowConfiguration.
Bryce Leef3c6a472017-11-14 14:53:06 -0800575 setBounds(null);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700576 return;
577 }
Garfield Tandec96db2018-10-30 11:28:49 -0700578 final int displayId = displayContent.getDisplayId();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700579 final int newRotation = displayContent.getDisplayInfo().rotation;
Garfield Tandec96db2018-10-30 11:28:49 -0700580 if (displayId != mLastRotationDisplayId) {
581 // This task is on a display that it wasn't on. There is no point to keep the relative
582 // position if display rotations for old and new displays are different. Just keep these
583 // values.
584 mLastRotationDisplayId = displayId;
585 mRotation = newRotation;
586 return;
587 }
588
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700589 if (mRotation == newRotation) {
Garfield Tandec96db2018-10-30 11:28:49 -0700590 // Rotation didn't change. We don't need to adjust the bounds to keep the relative
591 // position.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700592 return;
593 }
594
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800595 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700596 // - We don't want the task to move around on the screen when this happens, so update the
597 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800598 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700599 // from its stack. The stack will take care of task rotation for the other case.
Bryce Leef3c6a472017-11-14 14:53:06 -0800600 mTmpRect2.set(getBounds());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800601
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700602 if (!getWindowConfiguration().canResizeTask()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800603 setBounds(mTmpRect2);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800604 return;
605 }
606
Wale Ogunwale94744212015-09-21 19:01:47 -0700607 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Bryce Leef3c6a472017-11-14 14:53:06 -0800608 if (setBounds(mTmpRect2) != BOUNDS_CHANGE_NONE) {
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800609 if (mTaskRecord != null) {
610 mTaskRecord.requestResize(getBounds(), RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800611 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700612 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700613 }
614
Wale Ogunwalef6192862016-09-10 13:42:30 -0700615 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700616 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700617 for (int i = mChildren.size() - 1; i >= 0; --i) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200618 mChildren.get(i).cancelAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700619 }
620 }
621
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700622 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700623 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800624 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700625 }
626
Robert Carr7e4c90e2017-02-15 19:52:38 -0800627 /**
628 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
629 * insets differently. However if we are animating to the fullscreen stack
630 * we need to begin calculating insets as if we were fullscreen, otherwise
631 * we will have a jump at the end.
632 */
Robert Carre6275582016-02-29 15:45:45 -0800633 boolean isFloating() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700634 return getWindowConfiguration().tasksAreFloating()
Robert Carr18f622f2017-05-08 11:20:43 -0700635 && !mStack.isAnimatingBoundsToFullscreen() && !mPreserveNonFloatingState;
Robert Carre6275582016-02-29 15:45:45 -0800636 }
637
Winson Chungd41f71d2018-03-16 15:26:07 -0700638 @Override
639 public SurfaceControl getAnimationLeashParent() {
Winson Chung732446a2018-09-19 13:15:17 -0700640 // Currently, only the recents animation will create animation leashes for tasks. In this
641 // case, reparent the task to the home animation layer while it is being animated to allow
642 // the home activity to reorder the app windows relative to its own.
643 return getAppAnimationLayer(ANIMATION_LAYER_HOME);
Winson Chungd41f71d2018-03-16 15:26:07 -0700644 }
645
646 boolean isTaskAnimating() {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800647 final RecentsAnimationController recentsAnim = mWmService.getRecentsAnimationController();
Winson Chungd41f71d2018-03-16 15:26:07 -0700648 if (recentsAnim != null) {
649 if (recentsAnim.isAnimatingTask(this)) {
650 return true;
651 }
652 }
653 return false;
654 }
655
Chong Zhangd8ceb852015-11-11 14:53:41 -0800656 WindowState getTopVisibleAppMainWindow() {
657 final AppWindowToken token = getTopVisibleAppToken();
658 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700659 }
660
Jorim Jaggie6c6ecb2017-07-20 18:09:20 +0200661 AppWindowToken getTopFullscreenAppToken() {
662 for (int i = mChildren.size() - 1; i >= 0; i--) {
663 final AppWindowToken token = mChildren.get(i);
664 final WindowState win = token.findMainWindow();
665 if (win != null && win.mAttrs.isFullscreen()) {
666 return token;
667 }
668 }
669 return null;
670 }
671
Chong Zhangd8ceb852015-11-11 14:53:41 -0800672 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700673 for (int i = mChildren.size() - 1; i >= 0; i--) {
674 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800675 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700676 if (!token.mIsExiting && !token.isClientHidden() && !token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800677 return token;
678 }
679 }
680 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700681 }
682
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800683 void positionChildAtTop(AppWindowToken aToken) {
684 positionChildAt(aToken, POSITION_TOP);
685 }
686
687 void positionChildAt(AppWindowToken aToken, int position) {
688 if (aToken == null) {
689 Slog.w(TAG_WM,
690 "Attempted to position of non-existing app");
691 return;
692 }
693
694 positionChildAt(position, aToken, false /* includeParents */);
695 }
696
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700697 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700698 if (useCurrentBounds()) {
Bryce Leef3c6a472017-11-14 14:53:06 -0800699 return matchParentBounds();
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700700 }
701 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
702 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
703 // system.
704 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700705 }
706
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700707 void forceWindowsScaleable(boolean force) {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800708 mWmService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700709 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700710 for (int i = mChildren.size() - 1; i >= 0; i--) {
711 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700712 }
713 } finally {
Wale Ogunwale8b19de92018-11-29 19:58:26 -0800714 mWmService.closeSurfaceTransaction("forceWindowsScaleable");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700715 }
716 }
717
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100718 void setTaskDescription(TaskDescription taskDescription) {
719 mTaskDescription = taskDescription;
720 }
721
Yunfan Chen0e7aff92018-12-05 16:35:32 -0800722 void onSnapshotChanged(ActivityManager.TaskSnapshot snapshot) {
723 mTaskRecord.onSnapshotChanged(snapshot);
724 }
725
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100726 TaskDescription getTaskDescription() {
727 return mTaskDescription;
728 }
729
Wale Ogunwalef6192862016-09-10 13:42:30 -0700730 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700731 boolean fillsParent() {
Bryce Leef3c6a472017-11-14 14:53:06 -0800732 return matchParentBounds() || !getWindowConfiguration().canResizeTask();
Wale Ogunwale51362492016-09-08 17:49:17 -0700733 }
734
Jorim Jaggi329a5832017-01-05 18:57:12 +0100735 @Override
Jorim Jaggi51304d72017-05-17 17:25:32 +0200736 void forAllTasks(Consumer<Task> callback) {
737 callback.accept(this);
738 }
739
Jorim Jaggi50bf59c2018-03-09 17:29:48 +0100740 /**
741 * @param canAffectSystemUiFlags If false, all windows in this task can not affect SystemUI
742 * flags. See {@link WindowState#canAffectSystemUiFlags()}.
743 */
744 void setCanAffectSystemUiFlags(boolean canAffectSystemUiFlags) {
745 mCanAffectSystemUiFlags = canAffectSystemUiFlags;
746 }
747
748 /**
749 * @see #setCanAffectSystemUiFlags
750 */
751 boolean canAffectSystemUiFlags() {
752 return mCanAffectSystemUiFlags;
753 }
754
chaviw87ca63a2018-03-26 14:06:17 -0700755 void dontAnimateDimExit() {
756 mDimmer.dontAnimateExit();
757 }
758
Jorim Jaggi51304d72017-05-17 17:25:32 +0200759 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800760 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700761 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800762 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700763
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700764 String getName() {
765 return toShortString();
766 }
767
Robert Carr18f622f2017-05-08 11:20:43 -0700768 void clearPreserveNonFloatingState() {
769 mPreserveNonFloatingState = false;
770 }
771
chaviw2fb06bc2018-01-19 17:09:15 -0800772 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700773 Dimmer getDimmer() {
774 return mDimmer;
775 }
776
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700777 @Override
Robert Carrf59b8dd2017-10-02 18:58:36 -0700778 void prepareSurfaces() {
779 mDimmer.resetDimStates();
780 super.prepareSurfaces();
781 getDimBounds(mTmpDimBoundsRect);
chaviwe07246a2017-12-12 16:18:29 -0800782
783 // Bounds need to be relative, as the dim layer is a child.
784 mTmpDimBoundsRect.offsetTo(0, 0);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700785 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
786 scheduleAnimation();
787 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700788 }
789
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700790 @CallSuper
791 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +0200792 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -0700793 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200794 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700795 proto.write(ID, mTaskId);
796 for (int i = mChildren.size() - 1; i >= 0; i--) {
797 final AppWindowToken appWindowToken = mChildren.get(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +0200798 appWindowToken.writeToProto(proto, APP_WINDOW_TOKENS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -0700799 }
Bryce Leef3c6a472017-11-14 14:53:06 -0800800 proto.write(FILLS_PARENT, matchParentBounds());
801 getBounds().writeToProto(proto, BOUNDS);
Evan Roskyed6767f2018-10-26 17:21:06 -0700802 mOverrideDisplayedBounds.writeToProto(proto, DISPLAYED_BOUNDS);
Vishnu Nair04ab4392018-01-10 11:00:06 -0800803 proto.write(DEFER_REMOVAL, mDeferRemoval);
Louis Chang7501e332018-08-20 13:08:39 +0800804 proto.write(SURFACE_WIDTH, mSurfaceControl.getWidth());
805 proto.write(SURFACE_HEIGHT, mSurfaceControl.getHeight());
Steven Timotiusaf03df62017-07-18 16:56:43 -0700806 proto.end(token);
807 }
808
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200809 @Override
810 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
811 super.dump(pw, prefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800812 final String doublePrefix = prefix + " ";
813
814 pw.println(prefix + "taskId=" + mTaskId);
Bryce Leef3c6a472017-11-14 14:53:06 -0800815 pw.println(doublePrefix + "mBounds=" + getBounds().toShortString());
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800816 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700817 pw.println(doublePrefix + "appTokens=" + mChildren);
Evan Roskyed6767f2018-10-26 17:21:06 -0700818 pw.println(doublePrefix + "mDisplayedBounds=" + mOverrideDisplayedBounds.toShortString());
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800819
820 final String triplePrefix = doublePrefix + " ";
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100821 final String quadruplePrefix = triplePrefix + " ";
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800822
Wale Ogunwalef6192862016-09-10 13:42:30 -0700823 for (int i = mChildren.size() - 1; i >= 0; i--) {
824 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800825 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
Jorim Jaggi153dc9d2018-02-23 13:28:15 +0100826 wtoken.dump(pw, quadruplePrefix, dumpAll);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800827 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700828 }
Robert Carrf59b8dd2017-10-02 18:58:36 -0700829
830 String toShortString() {
831 return "Task=" + mTaskId;
832 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800833}