blob: bfebca8695542ab1a9be52644c1e92c4e8969456 [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
Jorim Jaggid53f0922016-04-06 22:16:23 -070019import static android.app.ActivityManager.RESIZE_MODE_SYSTEM_SCREEN_ROTATION;
Jason Monkba53d8a2017-04-06 18:28:19 +000020import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
Jorim Jaggi30d64f32017-04-07 16:33:17 +020021import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
skuhne@google.com322347b2016-12-02 12:54:03 -080022import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
Jason Monkba53d8a2017-04-06 18:28:19 +000023import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
Jorim Jaggi30d64f32017-04-07 16:33:17 +020024import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
Bryce Lee61fbcbc2017-03-10 14:14:03 -080025import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080026import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080027import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Jorim Jaggid53f0922016-04-06 22:16:23 -070028import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
29import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale99db1862015-10-23 20:08:22 -070030
Wale Ogunwale3797c222015-10-27 14:21:58 -070031import android.app.ActivityManager.StackId;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010032import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080033import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070034import android.content.res.Configuration;
35import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080036import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080037import android.util.Slog;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070038import android.view.DisplayInfo;
39import android.view.Surface;
40
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080041import com.android.internal.annotations.VisibleForTesting;
Craig Mautner2c2549c2013-11-12 08:31:15 -080042
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070043import java.io.PrintWriter;
Jorim Jaggi51304d72017-05-17 17:25:32 +020044import java.util.function.Consumer;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070045
Wale Ogunwalef6192862016-09-10 13:42:30 -070046class Task extends WindowContainer<AppWindowToken> implements DimLayer.DimLayerUser {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080047 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070048 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070049 private static final int BOUNDS_CHANGE_NONE = 0;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070050 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070051 private static final int BOUNDS_CHANGE_POSITION = 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070052 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070053 private static final int BOUNDS_CHANGE_SIZE = 1 << 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070054
Wale Ogunwalef6192862016-09-10 13:42:30 -070055 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080056 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080057 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070058 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070059 private boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080060 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080061
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070062 // Content limits relative to the DisplayContent this sits in.
63 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010064 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070065 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070066
Jorim Jaggidc249c42015-12-15 14:57:31 -080067 // Bounds used to calculate the insets.
68 private final Rect mTempInsetBounds = new Rect();
69
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070070 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070071 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070072
73 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070074 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070075
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070076 // For comparison with DisplayContent bounds.
77 private Rect mTmpRect = new Rect();
78 // For handling display rotations.
79 private Rect mTmpRect2 = new Rect();
80
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
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080092 private boolean mHomeTask;
93
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010094 private TaskDescription mTaskDescription;
95
Robert Carr18f622f2017-05-08 11:20:43 -070096 // If set to true, the task will report that it is not in the floating
97 // state regardless of it's stack affilation. As the floating state drives
98 // production of content insets this can be used to preserve them across
99 // stack moves and we in fact do so when moving from full screen to pinned.
100 private boolean mPreserveNonFloatingState = false;
101
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700102 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800103 Configuration overrideConfig, int resizeMode, boolean supportsPictureInPicture,
104 boolean homeTask, TaskDescription taskDescription,
Winson Chungd3395382016-12-13 11:49:09 -0800105 TaskWindowContainerController controller) {
Craig Mautner83162a92015-01-26 14:43:30 -0800106 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800107 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700108 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -0800109 mService = service;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800110 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800111 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800112 mHomeTask = homeTask;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800113 setController(controller);
Andrii Kulian8072d112016-09-16 11:11:01 -0700114 setBounds(bounds, overrideConfig);
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100115 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800116
117 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
118 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800119 }
120
121 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800122 return mStack != null ? mStack.getDisplayContent() : null;
123 }
124
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800125 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800126 final int size = mChildren.size();
127 if (suggestedPosition >= size) {
128 return Math.min(size, suggestedPosition);
129 }
130
131 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
132 // TODO: Confirm that this is the behavior we want long term.
133 if (mChildren.get(pos).removed) {
134 // suggestedPosition assumes removed tokens are actually gone.
135 ++suggestedPosition;
136 }
137 }
138 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800139 }
140
Wale Ogunwale72919d22016-12-08 18:58:50 -0800141 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800142 void addChild(AppWindowToken wtoken, int position) {
143 position = getAdjustedAddPosition(position);
144 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800145 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800146 }
147
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800148 @Override
149 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
150 position = getAdjustedAddPosition(position);
151 super.positionChildAt(position, child, includingParents);
152 mDeferRemoval = false;
153 }
154
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700155 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700156 for (int i = mChildren.size() - 1; i >= 0; i--) {
157 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800158 return true;
159 }
160 }
161 return false;
162 }
163
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800164 @VisibleForTesting
165 boolean shouldDeferRemoval() {
Wale Ogunwale2c9f2032017-06-02 06:50:50 -0700166 // TODO: This should probably return false if mChildren.isEmpty() regardless if the stack
167 // is animating...
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800168 return hasWindowsAlive() && mStack.isAnimating();
169 }
170
Wale Ogunwalef6192862016-09-10 13:42:30 -0700171 @Override
172 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800173 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800174 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800175 mDeferRemoval = true;
176 return;
177 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800178 removeImmediately();
179 }
180
181 @Override
182 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800183 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800184 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800185 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800186
187 // Make sure to remove dim layer user first before removing task its from parent.
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700188 DisplayContent content = getDisplayContent();
189 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800190 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700191 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800192
193 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800194 }
195
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700196 void reparent(TaskStack stack, int position, boolean moveParents) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800197 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800198 throw new IllegalArgumentException(
199 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800200 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800201 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800202 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800203 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800204 final DisplayContent prevDisplayContent = getDisplayContent();
205
Robert Carr18f622f2017-05-08 11:20:43 -0700206 // If we are moving from the fullscreen stack to the pinned stack
207 // then we want to preserve our insets so that there will not
208 // be a jump in the area covered by system decorations. We rely
209 // on the pinned animation to later unset this value.
210 if (stack.mStackId == PINNED_STACK_ID) {
211 mPreserveNonFloatingState = true;
212 } else {
213 mPreserveNonFloatingState = false;
214 }
215
Andrii Kulian441e4492016-09-29 15:25:00 -0700216 getParent().removeChild(this);
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700217 stack.addTask(this, position, showForAllUsers(), moveParents);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800218
219 // Relayout display(s).
220 final DisplayContent displayContent = stack.getDisplayContent();
221 displayContent.setLayoutNeeded();
222 if (prevDisplayContent != displayContent) {
223 onDisplayChanged(displayContent);
224 prevDisplayContent.setLayoutNeeded();
225 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800226 }
227
Andrii Kuliand2765632016-12-12 22:26:34 -0800228 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800229 void positionAt(int position, Rect bounds, Configuration overrideConfig) {
230 mStack.positionChildAt(position, this, false /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700231 resizeLocked(bounds, overrideConfig, false /* force */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700232 }
233
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700234 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800235 void onParentSet() {
236 // Update task bounds if needed.
237 updateDisplayInfo(getDisplayContent());
238
239 if (StackId.windowsAreScaleable(mStack.mStackId)) {
240 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
241 // while a resize is pending.
242 forceWindowsScaleable(true /* force */);
243 } else {
244 forceWindowsScaleable(false /* force */);
245 }
246 }
247
248 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700249 void removeChild(AppWindowToken token) {
250 if (!mChildren.contains(token)) {
251 Slog.e(TAG, "removeChild: token=" + this + " not found.");
252 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700253 }
254
Wale Ogunwalef6192862016-09-10 13:42:30 -0700255 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700256
Wale Ogunwalef6192862016-09-10 13:42:30 -0700257 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800258 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800259 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700260 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800261 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800262 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800263 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800264
Craig Mautnercbd84af2014-10-22 13:21:22 -0700265 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700266 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
267 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700268 }
269 }
270
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700271 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700272 private int setBounds(Rect bounds, Configuration overrideConfig) {
273 if (overrideConfig == null) {
274 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700275 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700276 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700277 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700278 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700279 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700280 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700281 throw new IllegalArgumentException("non null bounds, but empty configuration");
282 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700283 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700284 int rotation = Surface.ROTATION_0;
285 final DisplayContent displayContent = mStack.getDisplayContent();
286 if (displayContent != null) {
287 displayContent.getLogicalDisplayRect(mTmpRect);
288 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700289 mFillsParent = bounds == null;
290 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700291 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700292 }
293 }
294
295 if (bounds == null) {
296 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700297 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700298 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700299 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700300 return BOUNDS_CHANGE_NONE;
301 }
302
303 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700304 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700305 boundsChange |= BOUNDS_CHANGE_POSITION;
306 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700307 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700308 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700309 }
310
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700311 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800312
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700313 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700314 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800315 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700316 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700317 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700318 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700319 }
320
Jorim Jaggidc249c42015-12-15 14:57:31 -0800321 /**
322 * Sets the bounds used to calculate the insets. See
323 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
324 */
325 void setTempInsetBounds(Rect tempInsetBounds) {
326 if (tempInsetBounds != null) {
327 mTempInsetBounds.set(tempInsetBounds);
328 } else {
329 mTempInsetBounds.setEmpty();
330 }
331 }
332
333 /**
334 * Gets the bounds used to calculate the insets. See
335 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
336 */
337 void getTempInsetBounds(Rect out) {
338 out.set(mTempInsetBounds);
339 }
340
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800341 void setResizeable(int resizeMode) {
342 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800343 }
344
345 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800346 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
347 || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800348 }
349
skuhne@google.com322347b2016-12-02 12:54:03 -0800350 /**
351 * Tests if the orientation should be preserved upon user interactive resizig operations.
352
353 * @return true if orientation should not get changed upon resizing operation.
354 */
355 boolean preserveOrientationOnResize() {
356 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
357 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
358 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
359 }
360
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800361 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700362 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800363 }
364
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800365 boolean isHomeTask() {
366 return mHomeTask;
367 }
368
Andrii Kulian8072d112016-09-16 11:11:01 -0700369 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
370 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700371 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700372 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700373 }
374 if (boundsChanged == BOUNDS_CHANGE_NONE) {
375 return false;
376 }
377 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700378 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800379 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700380 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700381 }
382 return true;
383 }
384
Jorim Jaggi0429f352015-12-22 16:29:16 +0100385 /**
386 * Prepares the task bounds to be frozen with the current size. See
387 * {@link AppWindowToken#freezeBounds}.
388 */
389 void prepareFreezingBounds() {
390 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700391 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100392 }
393
Chong Zhang5117e272016-05-03 12:47:34 -0700394 /**
395 * Align the task to the adjusted bounds.
396 *
397 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
398 * @param tempInsetBounds Insets bounds for the task.
399 * @param alignBottom True if the task's bottom should be aligned to the adjusted
400 * bounds's bottom; false if the task's top should be aligned
401 * the adjusted bounds's top.
402 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700403 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian94251162017-04-26 11:07:52 -0700404 if (!isResizeable() || Configuration.EMPTY.equals(getOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700405 return;
406 }
407
408 getBounds(mTmpRect2);
409 if (alignBottom) {
410 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
411 mTmpRect2.offset(0, offsetY);
412 } else {
413 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
414 }
415 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700416 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700417 }
418
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700419 /** Return true if the current bound can get outputted to the rest of the system as-is. */
420 private boolean useCurrentBounds() {
421 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700422 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700423 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700424 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200425 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700426 }
427
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800428 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800429 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700430 if (useCurrentBounds()) {
431 // No need to adjust the output bounds if fullscreen or the docked stack is visible
432 // since it is already what we want to represent to the rest of the system.
433 out.set(mBounds);
434 return;
435 }
436
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800437 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
438 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700439 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700440 }
441
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800442 /**
443 * Calculate the maximum visible area of this task. If the task has only one app,
444 * the result will be visible frame of that app. If the task has more than one apps,
445 * we search from top down if the next app got different visible area.
446 *
447 * This effort is to handle the case where some task (eg. GMail composer) might pop up
448 * a dialog that's different in size from the activity below, in which case we should
449 * be dimming the entire task area behind the dialog.
450 *
451 * @param out Rect containing the max visible bounds.
452 * @return true if the task has some visible app windows; false otherwise.
453 */
454 boolean getMaxVisibleBounds(Rect out) {
455 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700456 for (int i = mChildren.size() - 1; i >= 0; i--) {
457 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800458 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700459 if (token.mIsExiting || token.isClientHidden() || token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800460 continue;
461 }
462 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800463 if (win == null) {
464 continue;
465 }
466 if (!foundTop) {
467 out.set(win.mVisibleFrame);
468 foundTop = true;
469 continue;
470 }
471 if (win.mVisibleFrame.left < out.left) {
472 out.left = win.mVisibleFrame.left;
473 }
474 if (win.mVisibleFrame.top < out.top) {
475 out.top = win.mVisibleFrame.top;
476 }
477 if (win.mVisibleFrame.right > out.right) {
478 out.right = win.mVisibleFrame.right;
479 }
480 if (win.mVisibleFrame.bottom > out.bottom) {
481 out.bottom = win.mVisibleFrame.bottom;
482 }
483 }
484 return foundTop;
485 }
486
487 /** Bounds of the task to be used for dimming, as well as touch related tests. */
488 @Override
489 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700490 final DisplayContent displayContent = mStack.getDisplayContent();
491 // It doesn't matter if we in particular are part of the resize, since we couldn't have
492 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700493 final boolean dockedResizing = displayContent != null
494 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800495 if (useCurrentBounds()) {
496 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
497 return;
498 }
499
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700500 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700501 // When minimizing the docked stack when going home, we don't adjust the task bounds
502 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700503 //
504 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
505 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
506 // should keep up with the divider.
507 if (dockedResizing) {
508 mStack.getBounds(out);
509 } else {
510 mStack.getBounds(mTmpRect);
511 mTmpRect.intersect(mBounds);
512 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700513 out.set(mTmpRect);
514 } else {
515 out.set(mBounds);
516 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800517 return;
518 }
519
Wale Ogunwalef6192862016-09-10 13:42:30 -0700520 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
521 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
522 if (displayContent != null) {
523 displayContent.getLogicalDisplayRect(out);
524 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800525 }
526
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100527 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800528 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100529 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
530 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
531 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
532 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800533 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100534 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800535 resetDragResizingChangeReported();
536 }
537 }
538
Chong Zhang3005e752015-09-18 18:46:28 -0700539 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700540 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700541 }
542
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100543 int getDragResizeMode() {
544 return mDragResizeMode;
545 }
546
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700547 void updateDisplayInfo(final DisplayContent displayContent) {
548 if (displayContent == null) {
549 return;
550 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700551 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700552 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700553 return;
554 }
555 final int newRotation = displayContent.getDisplayInfo().rotation;
556 if (mRotation == newRotation) {
557 return;
558 }
559
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800560 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700561 // - We don't want the task to move around on the screen when this happens, so update the
562 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800563 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700564 // from its stack. The stack will take care of task rotation for the other case.
565 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800566
567 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700568 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800569 return;
570 }
571
Wale Ogunwale94744212015-09-21 19:01:47 -0700572 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700573 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800574 final TaskWindowContainerController controller = getController();
575 if (controller != null) {
576 controller.requestResize(mBounds, RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
577 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700578 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700579 }
580
Wale Ogunwalef6192862016-09-10 13:42:30 -0700581 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700582 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700583 for (int i = mChildren.size() - 1; i >= 0; --i) {
584 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700585 }
586 }
587
Wale Ogunwalef6192862016-09-10 13:42:30 -0700588 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800589 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700590 for (int i = mChildren.size() - 1; i >= 0; --i) {
591 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800592 }
593 }
594
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700595 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700596 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800597 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700598 }
599
Chong Zhang09b21ef2015-09-14 10:20:21 -0700600 boolean inFreeformWorkspace() {
601 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
602 }
603
Robert Carr03138452016-05-18 14:53:16 -0700604 boolean inPinnedWorkspace() {
605 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
606 }
607
Robert Carr7e4c90e2017-02-15 19:52:38 -0800608 /**
609 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
610 * insets differently. However if we are animating to the fullscreen stack
611 * we need to begin calculating insets as if we were fullscreen, otherwise
612 * we will have a jump at the end.
613 */
Robert Carre6275582016-02-29 15:45:45 -0800614 boolean isFloating() {
Robert Carr18f622f2017-05-08 11:20:43 -0700615 return StackId.tasksAreFloating(mStack.mStackId)
616 && !mStack.isAnimatingBoundsToFullscreen() && !mPreserveNonFloatingState;
Robert Carre6275582016-02-29 15:45:45 -0800617 }
618
Chong Zhangd8ceb852015-11-11 14:53:41 -0800619 WindowState getTopVisibleAppMainWindow() {
620 final AppWindowToken token = getTopVisibleAppToken();
621 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700622 }
623
Chong Zhangd8ceb852015-11-11 14:53:41 -0800624 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700625 for (int i = mChildren.size() - 1; i >= 0; i--) {
626 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800627 // skip hidden (or about to hide) apps
Wale Ogunwale89973222017-04-23 18:39:45 -0700628 if (!token.mIsExiting && !token.isClientHidden() && !token.hiddenRequested) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800629 return token;
630 }
631 }
632 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700633 }
634
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800635 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700636 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700637 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700638 }
639
640 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700641 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700642 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700643 }
644 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
645 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
646 // system.
647 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700648 }
649
650 @Override
651 public DisplayInfo getDisplayInfo() {
Wale Ogunwalef0a60a92017-01-19 09:44:40 -0800652 return getDisplayContent().getDisplayInfo();
653 }
654
655 @Override
656 public boolean isAttachedToDisplay() {
657 return getDisplayContent() != null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700658 }
659
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700660 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700661 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700662 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700663 for (int i = mChildren.size() - 1; i >= 0; i--) {
664 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700665 }
666 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700667 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700668 }
669 }
670
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100671 void setTaskDescription(TaskDescription taskDescription) {
672 mTaskDescription = taskDescription;
673 }
674
675 TaskDescription getTaskDescription() {
676 return mTaskDescription;
677 }
678
Wale Ogunwalef6192862016-09-10 13:42:30 -0700679 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700680 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700681 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700682 }
683
Jorim Jaggi329a5832017-01-05 18:57:12 +0100684 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100685 TaskWindowContainerController getController() {
686 return (TaskWindowContainerController) super.getController();
687 }
688
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700689 @Override
Jorim Jaggi51304d72017-05-17 17:25:32 +0200690 void forAllTasks(Consumer<Task> callback) {
691 callback.accept(this);
692 }
693
694 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800695 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700696 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800697 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700698
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700699 String getName() {
700 return toShortString();
701 }
702
Robert Carr18f622f2017-05-08 11:20:43 -0700703 void clearPreserveNonFloatingState() {
704 mPreserveNonFloatingState = false;
705 }
706
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700707 @Override
708 public String toShortString() {
709 return "Task=" + mTaskId;
710 }
711
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800712 public void dump(String prefix, PrintWriter pw) {
713 final String doublePrefix = prefix + " ";
714
715 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700716 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800717 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
718 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700719 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800720 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
721
722 final String triplePrefix = doublePrefix + " ";
723
Wale Ogunwalef6192862016-09-10 13:42:30 -0700724 for (int i = mChildren.size() - 1; i >= 0; i--) {
725 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800726 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
727 wtoken.dump(pw, triplePrefix);
728 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700729 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800730}