blob: c5ed6eca79d44bf6897867ea1cae916231348b47 [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;
Robert Carr03138452016-05-18 14:53:16 -070020import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Wale Ogunwale3797c222015-10-27 14:21:58 -070021import 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;
23import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
24import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080025import static com.android.server.EventLogTags.WM_TASK_REMOVED;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080026import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Andrii Kuliand2765632016-12-12 22:26:34 -080027import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TASK_MOVEMENT;
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 Ogunwale1ed0d892015-09-28 13:27:44 -070030import static com.android.server.wm.WindowManagerService.H.RESIZE_TASK;
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;
Craig Mautnere3119b72015-01-20 15:02:36 -080043import 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
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070095 // Whether this task is an on-top launcher task, which is determined by the root activity.
96 private boolean mIsOnTopLauncher;
97
Jorim Jaggi829b9cd2017-01-23 16:20:53 +010098 private TaskDescription mTaskDescription;
99
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700100 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Winson Chungd3395382016-12-13 11:49:09 -0800101 Configuration overrideConfig, boolean isOnTopLauncher, int resizeMode,
102 boolean supportsPictureInPicture, boolean homeTask, TaskDescription taskDescription,
103 TaskWindowContainerController controller) {
Craig Mautner83162a92015-01-26 14:43:30 -0800104 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800105 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -0700106 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -0800107 mService = service;
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700108 mIsOnTopLauncher = isOnTopLauncher;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800109 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800110 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800111 mHomeTask = homeTask;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800112 setController(controller);
Andrii Kulian8072d112016-09-16 11:11:01 -0700113 setBounds(bounds, overrideConfig);
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100114 mTaskDescription = taskDescription;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800115 }
116
117 DisplayContent getDisplayContent() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800118 return mStack != null ? mStack.getDisplayContent() : null;
119 }
120
121 int getAdjustedAddPosition(int suggestedPosition) {
122 final int size = mChildren.size();
123 if (suggestedPosition >= size) {
124 return Math.min(size, suggestedPosition);
125 }
126
127 for (int pos = 0; pos < size && pos < suggestedPosition; ++pos) {
128 // TODO: Confirm that this is the behavior we want long term.
129 if (mChildren.get(pos).removed) {
130 // suggestedPosition assumes removed tokens are actually gone.
131 ++suggestedPosition;
132 }
133 }
134 return Math.min(size, suggestedPosition);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800135 }
136
Wale Ogunwale72919d22016-12-08 18:58:50 -0800137 @Override
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800138 void addChild(AppWindowToken wtoken, int position) {
139 position = getAdjustedAddPosition(position);
140 super.addChild(wtoken, position);
Craig Mautner83162a92015-01-26 14:43:30 -0800141 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800142 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800143 }
144
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800145 @Override
146 void positionChildAt(int position, AppWindowToken child, boolean includingParents) {
147 position = getAdjustedAddPosition(position);
148 super.positionChildAt(position, child, includingParents);
149 mDeferRemoval = false;
150 }
151
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700152 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700153 for (int i = mChildren.size() - 1; i >= 0; i--) {
154 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800155 return true;
156 }
157 }
158 return false;
159 }
160
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800161 @VisibleForTesting
162 boolean shouldDeferRemoval() {
163 return hasWindowsAlive() && mStack.isAnimating();
164 }
165
Wale Ogunwalef6192862016-09-10 13:42:30 -0700166 @Override
167 void removeIfPossible() {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800168 if (shouldDeferRemoval()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800169 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800170 mDeferRemoval = true;
171 return;
172 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800173 removeImmediately();
174 }
175
176 @Override
177 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800178 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800179 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800180 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800181
182 // Make sure to remove dim layer user first before removing task its from parent.
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700183 DisplayContent content = getDisplayContent();
184 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800185 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700186 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800187
188 super.removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800189 }
190
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800191 void reparent(TaskStack stack, int position) {
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800192 if (stack == mStack) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800193 throw new IllegalArgumentException(
194 "task=" + this + " already child of stack=" + mStack);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800195 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800196 if (DEBUG_STACK) Slog.i(TAG, "reParentTask: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800197 + " from stack=" + mStack);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800198 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "reParentTask");
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800199 final DisplayContent prevDisplayContent = getDisplayContent();
200
Andrii Kulian441e4492016-09-29 15:25:00 -0700201 getParent().removeChild(this);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800202 stack.addTask(this, position, showForAllUsers(), false /* moveParents */);
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -0800203
204 // Relayout display(s).
205 final DisplayContent displayContent = stack.getDisplayContent();
206 displayContent.setLayoutNeeded();
207 if (prevDisplayContent != displayContent) {
208 onDisplayChanged(displayContent);
209 prevDisplayContent.setLayoutNeeded();
210 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800211 }
212
Andrii Kuliand2765632016-12-12 22:26:34 -0800213 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800214 void positionAt(int position, Rect bounds, Configuration overrideConfig) {
215 mStack.positionChildAt(position, this, false /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700216 resizeLocked(bounds, overrideConfig, false /* force */);
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800217
Wale Ogunwalef6192862016-09-10 13:42:30 -0700218 for (int activityNdx = mChildren.size() - 1; activityNdx >= 0; --activityNdx) {
219 mChildren.get(activityNdx).notifyMovedInStack();
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800220 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700221 }
222
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700223 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800224 void onParentSet() {
225 // Update task bounds if needed.
226 updateDisplayInfo(getDisplayContent());
227
228 if (StackId.windowsAreScaleable(mStack.mStackId)) {
229 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
230 // while a resize is pending.
231 forceWindowsScaleable(true /* force */);
232 } else {
233 forceWindowsScaleable(false /* force */);
234 }
235 }
236
237 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700238 void removeChild(AppWindowToken token) {
239 if (!mChildren.contains(token)) {
240 Slog.e(TAG, "removeChild: token=" + this + " not found.");
241 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700242 }
243
Wale Ogunwalef6192862016-09-10 13:42:30 -0700244 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700245
Wale Ogunwalef6192862016-09-10 13:42:30 -0700246 if (mChildren.isEmpty()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800247 EventLog.writeEvent(WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800248 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700249 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800250 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800251 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700252 token.mTask = null;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800253 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800254
Craig Mautnercbd84af2014-10-22 13:21:22 -0700255 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700256 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
257 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700258 }
259 }
260
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700261 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700262 private int setBounds(Rect bounds, Configuration overrideConfig) {
263 if (overrideConfig == null) {
264 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700265 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700266 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700267 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700268 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700269 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700270 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700271 throw new IllegalArgumentException("non null bounds, but empty configuration");
272 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700273 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700274 int rotation = Surface.ROTATION_0;
275 final DisplayContent displayContent = mStack.getDisplayContent();
276 if (displayContent != null) {
277 displayContent.getLogicalDisplayRect(mTmpRect);
278 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700279 mFillsParent = bounds == null;
280 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700281 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700282 }
283 }
284
285 if (bounds == null) {
286 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700287 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700288 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700289 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700290 return BOUNDS_CHANGE_NONE;
291 }
292
293 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700294 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700295 boundsChange |= BOUNDS_CHANGE_POSITION;
296 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700297 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700298 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700299 }
300
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700301 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800302
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700303 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700304 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800305 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700306 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700307 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700308 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700309 }
310
Jorim Jaggidc249c42015-12-15 14:57:31 -0800311 /**
312 * Sets the bounds used to calculate the insets. See
313 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
314 */
315 void setTempInsetBounds(Rect tempInsetBounds) {
316 if (tempInsetBounds != null) {
317 mTempInsetBounds.set(tempInsetBounds);
318 } else {
319 mTempInsetBounds.setEmpty();
320 }
321 }
322
323 /**
324 * Gets the bounds used to calculate the insets. See
325 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
326 */
327 void getTempInsetBounds(Rect out) {
328 out.set(mTempInsetBounds);
329 }
330
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800331 void setResizeable(int resizeMode) {
332 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800333 }
334
335 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -0800336 return ActivityInfo.isResizeableMode(mResizeMode) || mSupportsPictureInPicture
337 || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800338 }
339
skuhne@google.com322347b2016-12-02 12:54:03 -0800340 /**
341 * Tests if the orientation should be preserved upon user interactive resizig operations.
342
343 * @return true if orientation should not get changed upon resizing operation.
344 */
345 boolean preserveOrientationOnResize() {
346 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
347 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
348 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
349 }
350
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700351 boolean isOnTopLauncher() {
352 return mIsOnTopLauncher;
353 }
354
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800355 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700356 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800357 }
358
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800359 boolean isHomeTask() {
360 return mHomeTask;
361 }
362
Andrii Kulian8072d112016-09-16 11:11:01 -0700363 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
364 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700365 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700366 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700367 }
368 if (boundsChanged == BOUNDS_CHANGE_NONE) {
369 return false;
370 }
371 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700372 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800373 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700374 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700375 }
376 return true;
377 }
378
Jorim Jaggi0429f352015-12-22 16:29:16 +0100379 /**
380 * Prepares the task bounds to be frozen with the current size. See
381 * {@link AppWindowToken#freezeBounds}.
382 */
383 void prepareFreezingBounds() {
384 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700385 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100386 }
387
Chong Zhang5117e272016-05-03 12:47:34 -0700388 /**
389 * Align the task to the adjusted bounds.
390 *
391 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
392 * @param tempInsetBounds Insets bounds for the task.
393 * @param alignBottom True if the task's bottom should be aligned to the adjusted
394 * bounds's bottom; false if the task's top should be aligned
395 * the adjusted bounds's top.
396 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700397 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700398 // Task override config might be empty, while display or stack override config isn't, so
399 // we have to check merged override config here.
400 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700401 return;
402 }
403
404 getBounds(mTmpRect2);
405 if (alignBottom) {
406 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
407 mTmpRect2.offset(0, offsetY);
408 } else {
409 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
410 }
411 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700412 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700413 }
414
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700415 /** Return true if the current bound can get outputted to the rest of the system as-is. */
416 private boolean useCurrentBounds() {
417 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700418 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700419 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700420 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200421 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700422 }
423
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800424 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800425 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700426 if (useCurrentBounds()) {
427 // No need to adjust the output bounds if fullscreen or the docked stack is visible
428 // since it is already what we want to represent to the rest of the system.
429 out.set(mBounds);
430 return;
431 }
432
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800433 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
434 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700435 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700436 }
437
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800438 /**
439 * Calculate the maximum visible area of this task. If the task has only one app,
440 * the result will be visible frame of that app. If the task has more than one apps,
441 * we search from top down if the next app got different visible area.
442 *
443 * This effort is to handle the case where some task (eg. GMail composer) might pop up
444 * a dialog that's different in size from the activity below, in which case we should
445 * be dimming the entire task area behind the dialog.
446 *
447 * @param out Rect containing the max visible bounds.
448 * @return true if the task has some visible app windows; false otherwise.
449 */
450 boolean getMaxVisibleBounds(Rect out) {
451 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700452 for (int i = mChildren.size() - 1; i >= 0; i--) {
453 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800454 // skip hidden (or about to hide) apps
455 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
456 continue;
457 }
458 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800459 if (win == null) {
460 continue;
461 }
462 if (!foundTop) {
463 out.set(win.mVisibleFrame);
464 foundTop = true;
465 continue;
466 }
467 if (win.mVisibleFrame.left < out.left) {
468 out.left = win.mVisibleFrame.left;
469 }
470 if (win.mVisibleFrame.top < out.top) {
471 out.top = win.mVisibleFrame.top;
472 }
473 if (win.mVisibleFrame.right > out.right) {
474 out.right = win.mVisibleFrame.right;
475 }
476 if (win.mVisibleFrame.bottom > out.bottom) {
477 out.bottom = win.mVisibleFrame.bottom;
478 }
479 }
480 return foundTop;
481 }
482
483 /** Bounds of the task to be used for dimming, as well as touch related tests. */
484 @Override
485 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700486 final DisplayContent displayContent = mStack.getDisplayContent();
487 // It doesn't matter if we in particular are part of the resize, since we couldn't have
488 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700489 final boolean dockedResizing = displayContent != null
490 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800491 if (useCurrentBounds()) {
492 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
493 return;
494 }
495
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700496 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700497 // When minimizing the docked stack when going home, we don't adjust the task bounds
498 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700499 //
500 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
501 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
502 // should keep up with the divider.
503 if (dockedResizing) {
504 mStack.getBounds(out);
505 } else {
506 mStack.getBounds(mTmpRect);
507 mTmpRect.intersect(mBounds);
508 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700509 out.set(mTmpRect);
510 } else {
511 out.set(mBounds);
512 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800513 return;
514 }
515
Wale Ogunwalef6192862016-09-10 13:42:30 -0700516 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
517 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
518 if (displayContent != null) {
519 displayContent.getLogicalDisplayRect(out);
520 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800521 }
522
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100523 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800524 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100525 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
526 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
527 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
528 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800529 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100530 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800531 resetDragResizingChangeReported();
532 }
533 }
534
Chong Zhang3005e752015-09-18 18:46:28 -0700535 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700536 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700537 }
538
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100539 int getDragResizeMode() {
540 return mDragResizeMode;
541 }
542
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700543 void updateDisplayInfo(final DisplayContent displayContent) {
544 if (displayContent == null) {
545 return;
546 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700547 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700548 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700549 return;
550 }
551 final int newRotation = displayContent.getDisplayInfo().rotation;
552 if (mRotation == newRotation) {
553 return;
554 }
555
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800556 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700557 // - We don't want the task to move around on the screen when this happens, so update the
558 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800559 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700560 // from its stack. The stack will take care of task rotation for the other case.
561 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800562
563 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700564 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800565 return;
566 }
567
Wale Ogunwale94744212015-09-21 19:01:47 -0700568 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700569 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800570 // Post message to inform activity manager of the bounds change simulating a one-way
571 // call. We do this to prevent a deadlock between window manager lock and activity
572 // manager lock been held.
573 mService.mH.obtainMessage(RESIZE_TASK, mTaskId,
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700574 RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds).sendToTarget();
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700575 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700576 }
577
Wale Ogunwalef6192862016-09-10 13:42:30 -0700578 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700579 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700580 for (int i = mChildren.size() - 1; i >= 0; --i) {
581 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700582 }
583 }
584
Wale Ogunwalef6192862016-09-10 13:42:30 -0700585 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800586 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700587 for (int i = mChildren.size() - 1; i >= 0; --i) {
588 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800589 }
590 }
591
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700592 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700593 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800594 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700595 }
596
Chong Zhang09b21ef2015-09-14 10:20:21 -0700597 boolean inFreeformWorkspace() {
598 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
599 }
600
Robert Carr03138452016-05-18 14:53:16 -0700601 boolean inPinnedWorkspace() {
602 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
603 }
604
Robert Carre6275582016-02-29 15:45:45 -0800605 boolean isFloating() {
606 return StackId.tasksAreFloating(mStack.mStackId);
607 }
608
Chong Zhangd8ceb852015-11-11 14:53:41 -0800609 WindowState getTopVisibleAppMainWindow() {
610 final AppWindowToken token = getTopVisibleAppToken();
611 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700612 }
613
Chong Zhangd8ceb852015-11-11 14:53:41 -0800614 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700615 for (int i = mChildren.size() - 1; i >= 0; i--) {
616 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800617 // skip hidden (or about to hide) apps
618 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
619 return token;
620 }
621 }
622 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700623 }
624
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800625 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700626 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700627 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700628 }
629
630 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700631 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700632 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700633 }
634 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
635 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
636 // system.
637 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700638 }
639
640 @Override
641 public DisplayInfo getDisplayInfo() {
Wale Ogunwalef0a60a92017-01-19 09:44:40 -0800642 return getDisplayContent().getDisplayInfo();
643 }
644
645 @Override
646 public boolean isAttachedToDisplay() {
647 return getDisplayContent() != null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700648 }
649
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700650 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700651 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700652 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700653 for (int i = mChildren.size() - 1; i >= 0; i--) {
654 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700655 }
656 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700657 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700658 }
659 }
660
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100661 void setTaskDescription(TaskDescription taskDescription) {
662 mTaskDescription = taskDescription;
663 }
664
665 TaskDescription getTaskDescription() {
666 return mTaskDescription;
667 }
668
Wale Ogunwalef6192862016-09-10 13:42:30 -0700669 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700670 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700671 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700672 }
673
Jorim Jaggi329a5832017-01-05 18:57:12 +0100674 @Override
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100675 TaskWindowContainerController getController() {
676 return (TaskWindowContainerController) super.getController();
677 }
678
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700679 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800680 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700681 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800682 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700683
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700684 String getName() {
685 return toShortString();
686 }
687
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700688 @Override
689 public String toShortString() {
690 return "Task=" + mTaskId;
691 }
692
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800693 public void dump(String prefix, PrintWriter pw) {
694 final String doublePrefix = prefix + " ";
695
696 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700697 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800698 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
699 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700700 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800701 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
702
703 final String triplePrefix = doublePrefix + " ";
704
Wale Ogunwalef6192862016-09-10 13:42:30 -0700705 for (int i = mChildren.size() - 1; i >= 0; i--) {
706 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800707 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
708 wtoken.dump(pw, triplePrefix);
709 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700710 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800711}