blob: 6005a991e474c74a2656a11d9f7e81c853a62f7a [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;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080025import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Andrii Kuliand2765632016-12-12 22:26:34 -080026import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TASK_MOVEMENT;
Jorim Jaggid53f0922016-04-06 22:16:23 -070027import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
28import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale1ed0d892015-09-28 13:27:44 -070029import static com.android.server.wm.WindowManagerService.H.RESIZE_TASK;
Wale Ogunwale99db1862015-10-23 20:08:22 -070030
Wale Ogunwale3797c222015-10-27 14:21:58 -070031import android.app.ActivityManager.StackId;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080032import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070033import android.content.res.Configuration;
34import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080035import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080036import android.util.Slog;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070037import android.view.DisplayInfo;
38import android.view.Surface;
39
Craig Mautnere3119b72015-01-20 15:02:36 -080040import com.android.server.EventLogTags;
Craig Mautner2c2549c2013-11-12 08:31:15 -080041
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070042import java.io.PrintWriter;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070043
Wale Ogunwalef6192862016-09-10 13:42:30 -070044class Task extends WindowContainer<AppWindowToken> implements DimLayer.DimLayerUser {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080045 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070046 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070047 private static final int BOUNDS_CHANGE_NONE = 0;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070048 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070049 private static final int BOUNDS_CHANGE_POSITION = 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070050 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070051 private static final int BOUNDS_CHANGE_SIZE = 1 << 1;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070052
Wale Ogunwalef6192862016-09-10 13:42:30 -070053 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080054 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080055 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070056 final int mUserId;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070057 private boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080058 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080059
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070060 // Content limits relative to the DisplayContent this sits in.
61 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010062 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070063 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070064
Jorim Jaggidc249c42015-12-15 14:57:31 -080065 // Bounds used to calculate the insets.
66 private final Rect mTempInsetBounds = new Rect();
67
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070068 // Device rotation as of the last time {@link #mBounds} was set.
Wale Ogunwale3eadad72016-10-13 09:16:59 -070069 private int mRotation;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070070
71 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070072 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070073
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070074 // For comparison with DisplayContent bounds.
75 private Rect mTmpRect = new Rect();
76 // For handling display rotations.
77 private Rect mTmpRect2 = new Rect();
78
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080079 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
80 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080081
Chong Zhang3005e752015-09-18 18:46:28 -070082 // Whether the task is currently being drag-resized
83 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010084 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070085
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080086 private boolean mHomeTask;
87
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070088 // Whether this task is an on-top launcher task, which is determined by the root activity.
89 private boolean mIsOnTopLauncher;
90
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070091 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Wale Ogunwale72919d22016-12-08 18:58:50 -080092 Configuration overrideConfig, boolean isOnTopLauncher, int resizeMode,
93 boolean homeTask) {
Craig Mautner83162a92015-01-26 14:43:30 -080094 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -080095 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -070096 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -080097 mService = service;
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070098 mIsOnTopLauncher = isOnTopLauncher;
Wale Ogunwale72919d22016-12-08 18:58:50 -080099 mResizeMode = resizeMode;
100 mHomeTask = homeTask;
Andrii Kulian8072d112016-09-16 11:11:01 -0700101 setBounds(bounds, overrideConfig);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800102 }
103
104 DisplayContent getDisplayContent() {
105 return mStack.getDisplayContent();
106 }
107
Wale Ogunwale72919d22016-12-08 18:58:50 -0800108 @Override
109 void addChild(AppWindowToken wtoken, int addPos) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700110 final int lastPos = mChildren.size();
Craig Mautner83162a92015-01-26 14:43:30 -0800111 if (addPos >= lastPos) {
112 addPos = lastPos;
113 } else {
114 for (int pos = 0; pos < lastPos && pos < addPos; ++pos) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700115 if (mChildren.get(pos).removed) {
Craig Mautner83162a92015-01-26 14:43:30 -0800116 // addPos assumes removed tokens are actually gone.
117 ++addPos;
118 }
Craig Mautner01f79cf2014-08-27 09:56:02 -0700119 }
Craig Mautner42bf39e2014-02-21 16:46:22 -0800120 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700121
Andrii Kulian441e4492016-09-29 15:25:00 -0700122 final WindowContainer parent = wtoken.getParent();
123 if (parent != null) {
124 parent.removeChild(wtoken);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700125 }
Wale Ogunwale72919d22016-12-08 18:58:50 -0800126 super.addChild(wtoken, addPos);
Craig Mautner83162a92015-01-26 14:43:30 -0800127 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800128 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800129 }
130
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700131 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700132 for (int i = mChildren.size() - 1; i >= 0; i--) {
133 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800134 return true;
135 }
136 }
137 return false;
138 }
139
Wale Ogunwalef6192862016-09-10 13:42:30 -0700140 @Override
141 void removeIfPossible() {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700142 if (hasWindowsAlive() && mStack.isAnimating()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800143 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800144 mDeferRemoval = true;
145 return;
146 }
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800147 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Craig Mautner83162a92015-01-26 14:43:30 -0800148 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800149 mDeferRemoval = false;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700150 DisplayContent content = getDisplayContent();
151 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800152 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700153 }
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800154 removeImmediately();
Craig Mautner83162a92015-01-26 14:43:30 -0800155 mService.mTaskIdToTask.delete(mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800156 }
157
Andrii Kuliand2765632016-12-12 22:26:34 -0800158 // TODO: Change to use re-parenting in WC.
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800159 void moveTaskToStack(TaskStack stack, boolean toTop) {
160 if (stack == mStack) {
161 return;
162 }
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800163 if (DEBUG_STACK) Slog.i(TAG, "moveTaskToStack: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800164 + " from stack=" + mStack);
Wale Ogunwale000957c2015-04-03 08:19:12 -0700165 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Andrii Kulian441e4492016-09-29 15:25:00 -0700166 getParent().removeChild(this);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800167 stack.addTask(this, toTop);
168 }
169
Andrii Kuliand2765632016-12-12 22:26:34 -0800170 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Andrii Kulian1779e612016-10-12 21:58:25 -0700171 void positionTaskInStack(TaskStack stack, int position, Rect bounds,
172 Configuration overrideConfig) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700173 if (mStack != null && stack != mStack) {
Andrii Kuliand2765632016-12-12 22:26:34 -0800174 // Task is already attached to a different stack. First we need to remove it from there
175 // and add to top of the target stack. We will move it proper position afterwards.
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800176 if (DEBUG_STACK) Slog.i(TAG, "positionTaskInStack: removing taskId=" + mTaskId
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700177 + " from stack=" + mStack);
178 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700179 mStack.removeChild(this);
Andrii Kuliand2765632016-12-12 22:26:34 -0800180 stack.addTask(this, true /* toTop */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700181 }
Andrii Kuliand2765632016-12-12 22:26:34 -0800182
183 stack.positionChildAt(position, this, true /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700184 resizeLocked(bounds, overrideConfig, false /* force */);
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800185
Wale Ogunwalef6192862016-09-10 13:42:30 -0700186 for (int activityNdx = mChildren.size() - 1; activityNdx >= 0; --activityNdx) {
187 mChildren.get(activityNdx).notifyMovedInStack();
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800188 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700189 }
190
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700191 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800192 void onParentSet() {
193 // Update task bounds if needed.
194 updateDisplayInfo(getDisplayContent());
195
196 if (StackId.windowsAreScaleable(mStack.mStackId)) {
197 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
198 // while a resize is pending.
199 forceWindowsScaleable(true /* force */);
200 } else {
201 forceWindowsScaleable(false /* force */);
202 }
203 }
204
205 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700206 void removeChild(AppWindowToken token) {
207 if (!mChildren.contains(token)) {
208 Slog.e(TAG, "removeChild: token=" + this + " not found.");
209 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700210 }
211
Wale Ogunwalef6192862016-09-10 13:42:30 -0700212 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700213
Wale Ogunwalef6192862016-09-10 13:42:30 -0700214 if (mChildren.isEmpty()) {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100215 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800216 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700217 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800218 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800219 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700220 token.mTask = null;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800221 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800222
Craig Mautnercbd84af2014-10-22 13:21:22 -0700223 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700224 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
225 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700226 }
227 }
228
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700229 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700230 private int setBounds(Rect bounds, Configuration overrideConfig) {
231 if (overrideConfig == null) {
232 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700233 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700234 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700235 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700236 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700237 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700238 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700239 throw new IllegalArgumentException("non null bounds, but empty configuration");
240 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700241 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700242 int rotation = Surface.ROTATION_0;
243 final DisplayContent displayContent = mStack.getDisplayContent();
244 if (displayContent != null) {
245 displayContent.getLogicalDisplayRect(mTmpRect);
246 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700247 mFillsParent = bounds == null;
248 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700249 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700250 }
251 }
252
253 if (bounds == null) {
254 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700255 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700256 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700257 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700258 return BOUNDS_CHANGE_NONE;
259 }
260
261 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700262 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700263 boundsChange |= BOUNDS_CHANGE_POSITION;
264 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700265 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700266 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700267 }
268
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700269 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800270
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700271 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700272 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800273 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700274 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700275 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700276 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700277 }
278
Jorim Jaggidc249c42015-12-15 14:57:31 -0800279 /**
280 * Sets the bounds used to calculate the insets. See
281 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
282 */
283 void setTempInsetBounds(Rect tempInsetBounds) {
284 if (tempInsetBounds != null) {
285 mTempInsetBounds.set(tempInsetBounds);
286 } else {
287 mTempInsetBounds.setEmpty();
288 }
289 }
290
291 /**
292 * Gets the bounds used to calculate the insets. See
293 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
294 */
295 void getTempInsetBounds(Rect out) {
296 out.set(mTempInsetBounds);
297 }
298
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800299 void setResizeable(int resizeMode) {
300 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800301 }
302
303 boolean isResizeable() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700304 return ActivityInfo.isResizeableMode(mResizeMode) || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800305 }
306
skuhne@google.com322347b2016-12-02 12:54:03 -0800307 /**
308 * Tests if the orientation should be preserved upon user interactive resizig operations.
309
310 * @return true if orientation should not get changed upon resizing operation.
311 */
312 boolean preserveOrientationOnResize() {
313 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
314 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
315 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
316 }
317
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700318 boolean isOnTopLauncher() {
319 return mIsOnTopLauncher;
320 }
321
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800322 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700323 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800324 }
325
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800326 boolean isHomeTask() {
327 return mHomeTask;
328 }
329
Andrii Kulian8072d112016-09-16 11:11:01 -0700330 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
331 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700332 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700333 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700334 }
335 if (boundsChanged == BOUNDS_CHANGE_NONE) {
336 return false;
337 }
338 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700339 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800340 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700341 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700342 }
343 return true;
344 }
345
Jorim Jaggi0429f352015-12-22 16:29:16 +0100346 /**
347 * Prepares the task bounds to be frozen with the current size. See
348 * {@link AppWindowToken#freezeBounds}.
349 */
350 void prepareFreezingBounds() {
351 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700352 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100353 }
354
Chong Zhang5117e272016-05-03 12:47:34 -0700355 /**
356 * Align the task to the adjusted bounds.
357 *
358 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
359 * @param tempInsetBounds Insets bounds for the task.
360 * @param alignBottom True if the task's bottom should be aligned to the adjusted
361 * bounds's bottom; false if the task's top should be aligned
362 * the adjusted bounds's top.
363 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700364 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700365 // Task override config might be empty, while display or stack override config isn't, so
366 // we have to check merged override config here.
367 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700368 return;
369 }
370
371 getBounds(mTmpRect2);
372 if (alignBottom) {
373 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
374 mTmpRect2.offset(0, offsetY);
375 } else {
376 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
377 }
378 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700379 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700380 }
381
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700382 /** Return true if the current bound can get outputted to the rest of the system as-is. */
383 private boolean useCurrentBounds() {
384 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700385 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700386 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700387 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200388 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700389 }
390
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800391 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800392 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700393 if (useCurrentBounds()) {
394 // No need to adjust the output bounds if fullscreen or the docked stack is visible
395 // since it is already what we want to represent to the rest of the system.
396 out.set(mBounds);
397 return;
398 }
399
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800400 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
401 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700402 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700403 }
404
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800405 /**
406 * Calculate the maximum visible area of this task. If the task has only one app,
407 * the result will be visible frame of that app. If the task has more than one apps,
408 * we search from top down if the next app got different visible area.
409 *
410 * This effort is to handle the case where some task (eg. GMail composer) might pop up
411 * a dialog that's different in size from the activity below, in which case we should
412 * be dimming the entire task area behind the dialog.
413 *
414 * @param out Rect containing the max visible bounds.
415 * @return true if the task has some visible app windows; false otherwise.
416 */
417 boolean getMaxVisibleBounds(Rect out) {
418 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700419 for (int i = mChildren.size() - 1; i >= 0; i--) {
420 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800421 // skip hidden (or about to hide) apps
422 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
423 continue;
424 }
425 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800426 if (win == null) {
427 continue;
428 }
429 if (!foundTop) {
430 out.set(win.mVisibleFrame);
431 foundTop = true;
432 continue;
433 }
434 if (win.mVisibleFrame.left < out.left) {
435 out.left = win.mVisibleFrame.left;
436 }
437 if (win.mVisibleFrame.top < out.top) {
438 out.top = win.mVisibleFrame.top;
439 }
440 if (win.mVisibleFrame.right > out.right) {
441 out.right = win.mVisibleFrame.right;
442 }
443 if (win.mVisibleFrame.bottom > out.bottom) {
444 out.bottom = win.mVisibleFrame.bottom;
445 }
446 }
447 return foundTop;
448 }
449
450 /** Bounds of the task to be used for dimming, as well as touch related tests. */
451 @Override
452 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700453 final DisplayContent displayContent = mStack.getDisplayContent();
454 // It doesn't matter if we in particular are part of the resize, since we couldn't have
455 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700456 final boolean dockedResizing = displayContent != null
457 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800458 if (useCurrentBounds()) {
459 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
460 return;
461 }
462
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700463 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700464 // When minimizing the docked stack when going home, we don't adjust the task bounds
465 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700466 //
467 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
468 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
469 // should keep up with the divider.
470 if (dockedResizing) {
471 mStack.getBounds(out);
472 } else {
473 mStack.getBounds(mTmpRect);
474 mTmpRect.intersect(mBounds);
475 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700476 out.set(mTmpRect);
477 } else {
478 out.set(mBounds);
479 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800480 return;
481 }
482
Wale Ogunwalef6192862016-09-10 13:42:30 -0700483 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
484 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
485 if (displayContent != null) {
486 displayContent.getLogicalDisplayRect(out);
487 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800488 }
489
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100490 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800491 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100492 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
493 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
494 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
495 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800496 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100497 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800498 resetDragResizingChangeReported();
499 }
500 }
501
Chong Zhang3005e752015-09-18 18:46:28 -0700502 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700503 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700504 }
505
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100506 int getDragResizeMode() {
507 return mDragResizeMode;
508 }
509
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700510 void updateDisplayInfo(final DisplayContent displayContent) {
511 if (displayContent == null) {
512 return;
513 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700514 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700515 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700516 return;
517 }
518 final int newRotation = displayContent.getDisplayInfo().rotation;
519 if (mRotation == newRotation) {
520 return;
521 }
522
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800523 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700524 // - We don't want the task to move around on the screen when this happens, so update the
525 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800526 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700527 // from its stack. The stack will take care of task rotation for the other case.
528 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800529
530 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700531 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800532 return;
533 }
534
Wale Ogunwale94744212015-09-21 19:01:47 -0700535 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700536 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800537 // Post message to inform activity manager of the bounds change simulating a one-way
538 // call. We do this to prevent a deadlock between window manager lock and activity
539 // manager lock been held.
540 mService.mH.obtainMessage(RESIZE_TASK, mTaskId,
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700541 RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds).sendToTarget();
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700542 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700543 }
544
Wale Ogunwalef6192862016-09-10 13:42:30 -0700545 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700546 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700547 for (int i = mChildren.size() - 1; i >= 0; --i) {
548 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700549 }
550 }
551
Wale Ogunwalef6192862016-09-10 13:42:30 -0700552 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800553 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700554 for (int i = mChildren.size() - 1; i >= 0; --i) {
555 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800556 }
557 }
558
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700559 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700560 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800561 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700562 }
563
Chong Zhang09b21ef2015-09-14 10:20:21 -0700564 boolean inFreeformWorkspace() {
565 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
566 }
567
Robert Carr03138452016-05-18 14:53:16 -0700568 boolean inPinnedWorkspace() {
569 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
570 }
571
Robert Carre6275582016-02-29 15:45:45 -0800572 boolean isFloating() {
573 return StackId.tasksAreFloating(mStack.mStackId);
574 }
575
Chong Zhangd8ceb852015-11-11 14:53:41 -0800576 WindowState getTopVisibleAppMainWindow() {
577 final AppWindowToken token = getTopVisibleAppToken();
578 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700579 }
580
Chong Zhangd8ceb852015-11-11 14:53:41 -0800581 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700582 for (int i = mChildren.size() - 1; i >= 0; i--) {
583 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800584 // skip hidden (or about to hide) apps
585 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
586 return token;
587 }
588 }
589 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700590 }
591
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800592 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700593 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700594 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700595 }
596
597 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700598 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700599 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700600 }
601 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
602 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
603 // system.
604 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700605 }
606
607 @Override
608 public DisplayInfo getDisplayInfo() {
609 return mStack.getDisplayContent().getDisplayInfo();
610 }
611
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700612 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700613 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700614 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700615 for (int i = mChildren.size() - 1; i >= 0; i--) {
616 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700617 }
618 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700619 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700620 }
621 }
622
Wale Ogunwalef6192862016-09-10 13:42:30 -0700623 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700624 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700625 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700626 }
627
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700628 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800629 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700630 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800631 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700632
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700633 String getName() {
634 return toShortString();
635 }
636
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700637 @Override
638 public String toShortString() {
639 return "Task=" + mTaskId;
640 }
641
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800642 public void dump(String prefix, PrintWriter pw) {
643 final String doublePrefix = prefix + " ";
644
645 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700646 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800647 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
648 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700649 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800650 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
651
652 final String triplePrefix = doublePrefix + " ";
653
Wale Ogunwalef6192862016-09-10 13:42:30 -0700654 for (int i = mChildren.size() - 1; i >= 0; i--) {
655 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800656 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
657 wtoken.dump(pw, triplePrefix);
658 }
659
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700660 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800661}