blob: 3ffb093ba386d221afa95162715d847123102365 [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;
Jorim Jaggiaea6b742017-03-21 17:36:26 +010020import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Jason Monkba53d8a2017-04-06 18:28:19 +000021import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
skuhne@google.com322347b2016-12-02 12:54:03 -080022import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
Jorim Jaggiaea6b742017-03-21 17:36:26 +010023import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
Jason Monkba53d8a2017-04-06 18:28:19 +000024import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
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;
Jason Monkba53d8a2017-04-06 18:28:19 +000028import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TASK_MOVEMENT;
Jorim Jaggid53f0922016-04-06 22:16:23 -070029import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
30import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale99db1862015-10-23 20:08:22 -070031
Wale Ogunwale3797c222015-10-27 14:21:58 -070032import android.app.ActivityManager.StackId;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010033import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080034import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070035import android.content.res.Configuration;
36import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080037import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080038import android.util.Slog;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070039import android.view.DisplayInfo;
40import android.view.Surface;
41
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080042import com.android.internal.annotations.VisibleForTesting;
Jason Monkba53d8a2017-04-06 18:28:19 +000043import com.android.server.EventLogTags;
Craig Mautner2c2549c2013-11-12 08:31:15 -080044
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070045import java.io.PrintWriter;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070046
Wale Ogunwalef6192862016-09-10 13:42:30 -070047class Task extends WindowContainer<AppWindowToken> implements DimLayer.DimLayerUser {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080048 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070049 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070050 private static final int BOUNDS_CHANGE_NONE = 0;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070051 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070052 private static final int BOUNDS_CHANGE_POSITION = 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070053 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070054 private static final int BOUNDS_CHANGE_SIZE = 1 << 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070055
Wale Ogunwalef6192862016-09-10 13:42:30 -070056 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080057 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080058 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070059 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070060 private boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080061 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080062
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070063 // Content limits relative to the DisplayContent this sits in.
64 private Rect mBounds = new Rect();
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
74 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070075 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070076
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070077 // For comparison with DisplayContent bounds.
78 private Rect mTmpRect = new Rect();
79 // For handling display rotations.
80 private Rect mTmpRect2 = new Rect();
81
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080082 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
83 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080084
Winson Chungd3395382016-12-13 11:49:09 -080085 // Whether the task supports picture-in-picture.
86 // See {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE}
87 private boolean mSupportsPictureInPicture;
88
Chong Zhang3005e752015-09-18 18:46:28 -070089 // Whether the task is currently being drag-resized
90 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010091 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070092
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080093 private boolean mHomeTask;
94
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010095 private TaskDescription mTaskDescription;
96
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070097 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Wale Ogunwale069bbd32017-02-03 07:58:14 -080098 Configuration overrideConfig, int resizeMode, boolean supportsPictureInPicture,
99 boolean homeTask, TaskDescription taskDescription,
Winson Chungd3395382016-12-13 11:49:09 -0800100 TaskWindowContainerController controller) {
Craig Mautner83162a92015-01-26 14:43:30 -0800101 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800102 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700103 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -0800104 mService = service;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800105 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800106 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800107 mHomeTask = homeTask;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800108 setController(controller);
Andrii Kulian8072d112016-09-16 11:11:01 -0700109 setBounds(bounds, overrideConfig);
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100110 mTaskDescription = taskDescription;
Bryce Lee61fbcbc2017-03-10 14:14:03 -0800111
112 // Tasks have no set orientation value (including SCREEN_ORIENTATION_UNSPECIFIED).
113 setOrientation(SCREEN_ORIENTATION_UNSET);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800114 }
115
116 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800117 return mStack != null ? mStack.getDisplayContent() : null;
118 }
119
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800120 private int getAdjustedAddPosition(int suggestedPosition) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800121 final int size = mChildren.size();
122 if (suggestedPosition >= size) {
123 return Math.min(size, suggestedPosition);
124 }
125
126 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
127 // TODO: Confirm that this is the behavior we want long term.
128 if (mChildren.get(pos).removed) {
129 // suggestedPosition assumes removed tokens are actually gone.
130 ++suggestedPosition;
131 }
132 }
133 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800134 }
135
Wale Ogunwale72919d22016-12-08 18:58:50 -0800136 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800137 void addChild(AppWindowToken wtoken, int position) {
138 position = getAdjustedAddPosition(position);
139 super.addChild(wtoken, position);
Craig Mautner42bf39e2014-02-21 16:46:22 -0800140 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800141 }
142
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800143 @Override
144 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
145 position = getAdjustedAddPosition(position);
146 super.positionChildAt(position, child, includingParents);
147 mDeferRemoval = false;
148 }
149
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700150 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700151 for (int i = mChildren.size() - 1; i >= 0; i--) {
152 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800153 return true;
154 }
155 }
156 return false;
157 }
158
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800159 @VisibleForTesting
160 boolean shouldDeferRemoval() {
161 return hasWindowsAlive() && mStack.isAnimating();
162 }
163
Wale Ogunwalef6192862016-09-10 13:42:30 -0700164 @Override
165 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800166 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800167 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800168 mDeferRemoval = true;
169 return;
170 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800171 removeImmediately();
172 }
173
174 @Override
175 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800176 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800177 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800178 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800179
180 // Make sure to remove dim layer user first before removing task its from parent.
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700181 DisplayContent content = getDisplayContent();
182 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800183 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700184 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800185
186 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800187 }
188
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800189 void reparent(TaskStack stack, int position) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800190 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800191 throw new IllegalArgumentException(
192 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800193 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800194 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800195 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800196 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800197 final DisplayContent prevDisplayContent = getDisplayContent();
198
Andrii Kulian441e4492016-09-29 15:25:00 -0700199 getParent().removeChild(this);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800200 stack.addTask(this, position, showForAllUsers(), false /* moveParents */);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800201
202 // Relayout display(s).
203 final DisplayContent displayContent = stack.getDisplayContent();
204 displayContent.setLayoutNeeded();
205 if (prevDisplayContent != displayContent) {
206 onDisplayChanged(displayContent);
207 prevDisplayContent.setLayoutNeeded();
208 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800209 }
210
Andrii Kuliand2765632016-12-12 22:26:34 -0800211 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800212 void positionAt(int position, Rect bounds, Configuration overrideConfig) {
213 mStack.positionChildAt(position, this, false /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700214 resizeLocked(bounds, overrideConfig, false /* force */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700215 }
216
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700217 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800218 void onParentSet() {
219 // Update task bounds if needed.
220 updateDisplayInfo(getDisplayContent());
221
222 if (StackId.windowsAreScaleable(mStack.mStackId)) {
223 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
224 // while a resize is pending.
225 forceWindowsScaleable(true /* force */);
226 } else {
227 forceWindowsScaleable(false /* force */);
228 }
229 }
230
231 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700232 void removeChild(AppWindowToken token) {
233 if (!mChildren.contains(token)) {
234 Slog.e(TAG, "removeChild: token=" + this + " not found.");
235 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700236 }
237
Wale Ogunwalef6192862016-09-10 13:42:30 -0700238 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700239
Wale Ogunwalef6192862016-09-10 13:42:30 -0700240 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800241 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800242 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700243 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800244 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800245 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800246 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800247
Craig Mautnercbd84af2014-10-22 13:21:22 -0700248 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700249 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
250 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700251 }
252 }
253
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700254 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700255 private int setBounds(Rect bounds, Configuration overrideConfig) {
256 if (overrideConfig == null) {
257 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700258 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700259 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700260 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700261 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700262 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700263 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700264 throw new IllegalArgumentException("non null bounds, but empty configuration");
265 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700266 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700267 int rotation = Surface.ROTATION_0;
268 final DisplayContent displayContent = mStack.getDisplayContent();
269 if (displayContent != null) {
270 displayContent.getLogicalDisplayRect(mTmpRect);
271 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700272 mFillsParent = bounds == null;
273 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700274 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700275 }
276 }
277
278 if (bounds == null) {
279 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700280 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700281 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700282 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700283 return BOUNDS_CHANGE_NONE;
284 }
285
286 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700287 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700288 boundsChange |= BOUNDS_CHANGE_POSITION;
289 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700290 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700291 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700292 }
293
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700294 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800295
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700296 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700297 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800298 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700299 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700300 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700301 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700302 }
303
Jorim Jaggidc249c42015-12-15 14:57:31 -0800304 /**
305 * Sets the bounds used to calculate the insets. See
306 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
307 */
308 void setTempInsetBounds(Rect tempInsetBounds) {
309 if (tempInsetBounds != null) {
310 mTempInsetBounds.set(tempInsetBounds);
311 } else {
312 mTempInsetBounds.setEmpty();
313 }
314 }
315
316 /**
317 * Gets the bounds used to calculate the insets. See
318 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
319 */
320 void getTempInsetBounds(Rect out) {
321 out.set(mTempInsetBounds);
322 }
323
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800324 void setResizeable(int resizeMode) {
325 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800326 }
327
328 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800329 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
330 || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800331 }
332
skuhne@google.com322347b2016-12-02 12:54:03 -0800333 /**
334 * Tests if the orientation should be preserved upon user interactive resizig operations.
335
336 * @return true if orientation should not get changed upon resizing operation.
337 */
338 boolean preserveOrientationOnResize() {
339 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
340 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
341 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
342 }
343
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800344 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700345 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800346 }
347
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800348 boolean isHomeTask() {
349 return mHomeTask;
350 }
351
Andrii Kulian8072d112016-09-16 11:11:01 -0700352 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
353 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700354 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700355 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700356 }
357 if (boundsChanged == BOUNDS_CHANGE_NONE) {
358 return false;
359 }
360 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700361 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800362 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700363 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700364 }
365 return true;
366 }
367
Jorim Jaggi0429f352015-12-22 16:29:16 +0100368 /**
369 * Prepares the task bounds to be frozen with the current size. See
370 * {@link AppWindowToken#freezeBounds}.
371 */
372 void prepareFreezingBounds() {
373 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700374 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100375 }
376
Chong Zhang5117e272016-05-03 12:47:34 -0700377 /**
378 * Align the task to the adjusted bounds.
379 *
380 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
381 * @param tempInsetBounds Insets bounds for the task.
382 * @param alignBottom True if the task's bottom should be aligned to the adjusted
383 * bounds's bottom; false if the task's top should be aligned
384 * the adjusted bounds's top.
385 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700386 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700387 // Task override config might be empty, while display or stack override config isn't, so
388 // we have to check merged override config here.
389 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700390 return;
391 }
392
393 getBounds(mTmpRect2);
394 if (alignBottom) {
395 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
396 mTmpRect2.offset(0, offsetY);
397 } else {
398 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
399 }
400 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700401 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700402 }
403
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700404 /** Return true if the current bound can get outputted to the rest of the system as-is. */
405 private boolean useCurrentBounds() {
406 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700407 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700408 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700409 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200410 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700411 }
412
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800413 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800414 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700415 if (useCurrentBounds()) {
416 // No need to adjust the output bounds if fullscreen or the docked stack is visible
417 // since it is already what we want to represent to the rest of the system.
418 out.set(mBounds);
419 return;
420 }
421
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800422 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
423 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700424 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700425 }
426
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800427 /**
428 * Calculate the maximum visible area of this task. If the task has only one app,
429 * the result will be visible frame of that app. If the task has more than one apps,
430 * we search from top down if the next app got different visible area.
431 *
432 * This effort is to handle the case where some task (eg. GMail composer) might pop up
433 * a dialog that's different in size from the activity below, in which case we should
434 * be dimming the entire task area behind the dialog.
435 *
436 * @param out Rect containing the max visible bounds.
437 * @return true if the task has some visible app windows; false otherwise.
438 */
439 boolean getMaxVisibleBounds(Rect out) {
440 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700441 for (int i = mChildren.size() - 1; i >= 0; i--) {
442 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800443 // skip hidden (or about to hide) apps
444 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
445 continue;
446 }
447 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800448 if (win == null) {
449 continue;
450 }
451 if (!foundTop) {
452 out.set(win.mVisibleFrame);
453 foundTop = true;
454 continue;
455 }
456 if (win.mVisibleFrame.left < out.left) {
457 out.left = win.mVisibleFrame.left;
458 }
459 if (win.mVisibleFrame.top < out.top) {
460 out.top = win.mVisibleFrame.top;
461 }
462 if (win.mVisibleFrame.right > out.right) {
463 out.right = win.mVisibleFrame.right;
464 }
465 if (win.mVisibleFrame.bottom > out.bottom) {
466 out.bottom = win.mVisibleFrame.bottom;
467 }
468 }
469 return foundTop;
470 }
471
472 /** Bounds of the task to be used for dimming, as well as touch related tests. */
473 @Override
474 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700475 final DisplayContent displayContent = mStack.getDisplayContent();
476 // It doesn't matter if we in particular are part of the resize, since we couldn't have
477 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700478 final boolean dockedResizing = displayContent != null
479 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800480 if (useCurrentBounds()) {
481 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
482 return;
483 }
484
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700485 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700486 // When minimizing the docked stack when going home, we don't adjust the task bounds
487 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700488 //
489 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
490 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
491 // should keep up with the divider.
492 if (dockedResizing) {
493 mStack.getBounds(out);
494 } else {
495 mStack.getBounds(mTmpRect);
496 mTmpRect.intersect(mBounds);
497 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700498 out.set(mTmpRect);
499 } else {
500 out.set(mBounds);
501 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800502 return;
503 }
504
Wale Ogunwalef6192862016-09-10 13:42:30 -0700505 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
506 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
507 if (displayContent != null) {
508 displayContent.getLogicalDisplayRect(out);
509 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800510 }
511
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100512 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800513 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100514 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
515 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
516 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
517 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800518 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100519 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800520 resetDragResizingChangeReported();
521 }
522 }
523
Chong Zhang3005e752015-09-18 18:46:28 -0700524 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700525 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700526 }
527
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100528 int getDragResizeMode() {
529 return mDragResizeMode;
530 }
531
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700532 void updateDisplayInfo(final DisplayContent displayContent) {
533 if (displayContent == null) {
534 return;
535 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700536 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700537 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700538 return;
539 }
540 final int newRotation = displayContent.getDisplayInfo().rotation;
541 if (mRotation == newRotation) {
542 return;
543 }
544
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800545 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700546 // - We don't want the task to move around on the screen when this happens, so update the
547 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800548 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700549 // from its stack. The stack will take care of task rotation for the other case.
550 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800551
552 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700553 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800554 return;
555 }
556
Wale Ogunwale94744212015-09-21 19:01:47 -0700557 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700558 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800559 final TaskWindowContainerController controller = getController();
560 if (controller != null) {
561 controller.requestResize(mBounds, RESIZE_MODE_SYSTEM_SCREEN_ROTATION);
562 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700563 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700564 }
565
Wale Ogunwalef6192862016-09-10 13:42:30 -0700566 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700567 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700568 for (int i = mChildren.size() - 1; i >= 0; --i) {
569 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700570 }
571 }
572
Wale Ogunwalef6192862016-09-10 13:42:30 -0700573 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800574 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700575 for (int i = mChildren.size() - 1; i >= 0; --i) {
576 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800577 }
578 }
579
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700580 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700581 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800582 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700583 }
584
Chong Zhang09b21ef2015-09-14 10:20:21 -0700585 boolean inFreeformWorkspace() {
586 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
587 }
588
Robert Carr03138452016-05-18 14:53:16 -0700589 boolean inPinnedWorkspace() {
590 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
591 }
592
Robert Carr7e4c90e2017-02-15 19:52:38 -0800593 /**
594 * When we are in a floating stack (Freeform, Pinned, ...) we calculate
595 * insets differently. However if we are animating to the fullscreen stack
596 * we need to begin calculating insets as if we were fullscreen, otherwise
597 * we will have a jump at the end.
598 */
Robert Carre6275582016-02-29 15:45:45 -0800599 boolean isFloating() {
Robert Carr7e4c90e2017-02-15 19:52:38 -0800600 return StackId.tasksAreFloating(mStack.mStackId)
601 && !mStack.isBoundsAnimatingToFullscreen();
Robert Carre6275582016-02-29 15:45:45 -0800602 }
603
Chong Zhangd8ceb852015-11-11 14:53:41 -0800604 WindowState getTopVisibleAppMainWindow() {
605 final AppWindowToken token = getTopVisibleAppToken();
606 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700607 }
608
Chong Zhangd8ceb852015-11-11 14:53:41 -0800609 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700610 for (int i = mChildren.size() - 1; i >= 0; i--) {
611 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800612 // skip hidden (or about to hide) apps
613 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
614 return token;
615 }
616 }
617 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700618 }
619
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800620 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700621 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700622 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700623 }
624
625 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700626 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700627 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700628 }
629 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
630 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
631 // system.
632 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700633 }
634
635 @Override
636 public DisplayInfo getDisplayInfo() {
Wale Ogunwalef0a60a92017-01-19 09:44:40 -0800637 return getDisplayContent().getDisplayInfo();
638 }
639
640 @Override
641 public boolean isAttachedToDisplay() {
642 return getDisplayContent() != null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700643 }
644
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700645 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700646 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700647 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700648 for (int i = mChildren.size() - 1; i >= 0; i--) {
649 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700650 }
651 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700652 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700653 }
654 }
655
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100656 void setTaskDescription(TaskDescription taskDescription) {
657 mTaskDescription = taskDescription;
658 }
659
660 TaskDescription getTaskDescription() {
661 return mTaskDescription;
662 }
663
Wale Ogunwalef6192862016-09-10 13:42:30 -0700664 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700665 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700666 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700667 }
668
Jorim Jaggi329a5832017-01-05 18:57:12 +0100669 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100670 TaskWindowContainerController getController() {
671 return (TaskWindowContainerController) super.getController();
672 }
673
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700674 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800675 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700676 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800677 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700678
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700679 String getName() {
680 return toShortString();
681 }
682
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700683 @Override
684 public String toShortString() {
685 return "Task=" + mTaskId;
686 }
687
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800688 public void dump(String prefix, PrintWriter pw) {
689 final String doublePrefix = prefix + " ";
690
691 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700692 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800693 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
694 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700695 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800696 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
697
698 final String triplePrefix = doublePrefix + " ";
699
Wale Ogunwalef6192862016-09-10 13:42:30 -0700700 for (int i = mChildren.size() - 1; i >= 0; i--) {
701 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800702 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
703 wtoken.dump(pw, triplePrefix);
704 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700705 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800706}