blob: f6598c14da44cd2b3a99857cf4888010e496fe9b [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;
22import static android.app.ActivityManager.StackId.HOME_STACK_ID;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080023import static android.content.pm.ActivityInfo.RESIZE_MODE_CROP_WINDOWS;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080024import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Jorim Jaggid53f0922016-04-06 22:16:23 -070025import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
26import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale1ed0d892015-09-28 13:27:44 -070027import static com.android.server.wm.WindowManagerService.H.RESIZE_TASK;
Wale Ogunwale99db1862015-10-23 20:08:22 -070028
Wale Ogunwale3797c222015-10-27 14:21:58 -070029import android.app.ActivityManager.StackId;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080030import android.content.pm.ActivityInfo;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070031import android.content.res.Configuration;
32import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080033import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080034import android.util.Slog;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070035import android.view.DisplayInfo;
36import android.view.Surface;
37
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070038import android.view.SurfaceControl;
Craig Mautnere3119b72015-01-20 15:02:36 -080039import com.android.server.EventLogTags;
Craig Mautner2c2549c2013-11-12 08:31:15 -080040
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070041import java.io.PrintWriter;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070042
Wale Ogunwalef6192862016-09-10 13:42:30 -070043class Task extends WindowContainer<AppWindowToken> implements DimLayer.DimLayerUser {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -080044 static final String TAG = TAG_WITH_CLASS_NAME ? "Task" : TAG_WM;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070045 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
46 static final int BOUNDS_CHANGE_NONE = 0;
47 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
48 static final int BOUNDS_CHANGE_POSITION = 1;
49 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
50 static final int BOUNDS_CHANGE_SIZE = 1 << 1;
51
Wale Ogunwalef6192862016-09-10 13:42:30 -070052 // TODO: Track parent marks like this in WindowContainer.
Craig Mautnerc00204b2013-03-05 15:02:14 -080053 TaskStack mStack;
Craig Mautner83162a92015-01-26 14:43:30 -080054 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070055 final int mUserId;
Craig Mautner9ef471f2014-02-07 13:11:47 -080056 boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080057 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080058
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070059 // Content limits relative to the DisplayContent this sits in.
60 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010061 final Rect mPreparedFrozenBounds = new Rect();
Jorim Jaggi26c8c422016-05-09 19:57:25 -070062 final Configuration mPreparedFrozenMergedConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070063
Jorim Jaggidc249c42015-12-15 14:57:31 -080064 // Bounds used to calculate the insets.
65 private final Rect mTempInsetBounds = new Rect();
66
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070067 // Device rotation as of the last time {@link #mBounds} was set.
68 int mRotation;
69
70 // Whether mBounds is fullscreen
Wale Ogunwale5a2183d2016-09-19 12:26:13 -070071 private boolean mFillsParent = true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070072
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070073 // For comparison with DisplayContent bounds.
74 private Rect mTmpRect = new Rect();
75 // For handling display rotations.
76 private Rect mTmpRect2 = new Rect();
77
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080078 // Resize mode of the task. See {@link ActivityInfo#resizeMode}
79 private int mResizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -080080
Chong Zhang3005e752015-09-18 18:46:28 -070081 // Whether the task is currently being drag-resized
82 private boolean mDragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010083 private int mDragResizeMode;
Chong Zhang3005e752015-09-18 18:46:28 -070084
Wale Ogunwaleb1faf602016-01-27 09:12:31 -080085 private boolean mHomeTask;
86
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070087 // Whether this task is an on-top launcher task, which is determined by the root activity.
88 private boolean mIsOnTopLauncher;
89
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070090 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
Andrii Kulian8072d112016-09-16 11:11:01 -070091 Configuration overrideConfig, boolean isOnTopLauncher) {
Craig Mautner83162a92015-01-26 14:43:30 -080092 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -080093 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -070094 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -080095 mService = service;
Jiaquan Hedd1e66f2016-06-15 15:15:12 -070096 mIsOnTopLauncher = isOnTopLauncher;
Andrii Kulian8072d112016-09-16 11:11:01 -070097 setBounds(bounds, overrideConfig);
Craig Mautnerc00204b2013-03-05 15:02:14 -080098 }
99
100 DisplayContent getDisplayContent() {
101 return mStack.getDisplayContent();
102 }
103
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800104 void addAppToken(int addPos, AppWindowToken wtoken, int resizeMode, boolean homeTask) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700105 final int lastPos = mChildren.size();
Craig Mautner83162a92015-01-26 14:43:30 -0800106 if (addPos >= lastPos) {
107 addPos = lastPos;
108 } else {
109 for (int pos = 0; pos < lastPos && pos < addPos; ++pos) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700110 if (mChildren.get(pos).removed) {
Craig Mautner83162a92015-01-26 14:43:30 -0800111 // addPos assumes removed tokens are actually gone.
112 ++addPos;
113 }
Craig Mautner01f79cf2014-08-27 09:56:02 -0700114 }
Craig Mautner42bf39e2014-02-21 16:46:22 -0800115 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700116
Andrii Kulian441e4492016-09-29 15:25:00 -0700117 final WindowContainer parent = wtoken.getParent();
118 if (parent != null) {
119 parent.removeChild(wtoken);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700120 }
121 addChild(wtoken, addPos);
Craig Mautner83162a92015-01-26 14:43:30 -0800122 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800123 mDeferRemoval = false;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800124 mResizeMode = resizeMode;
125 mHomeTask = homeTask;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800126 }
127
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700128 private boolean hasWindowsAlive() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700129 for (int i = mChildren.size() - 1; i >= 0; i--) {
130 if (mChildren.get(i).hasWindowsAlive()) {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800131 return true;
132 }
133 }
134 return false;
135 }
136
Wale Ogunwalef6192862016-09-10 13:42:30 -0700137 @Override
138 void removeIfPossible() {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700139 if (hasWindowsAlive() && mStack.isAnimating()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800140 if (DEBUG_STACK) Slog.i(TAG, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800141 mDeferRemoval = true;
142 return;
143 }
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800144 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Craig Mautner83162a92015-01-26 14:43:30 -0800145 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800146 mDeferRemoval = false;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700147 DisplayContent content = getDisplayContent();
148 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800149 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700150 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700151 getParent().removeChild(this);
Craig Mautner83162a92015-01-26 14:43:30 -0800152 mService.mTaskIdToTask.delete(mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800153 }
154
Wale Ogunwalef6192862016-09-10 13:42:30 -0700155 // Change to use reparenting in WC when TaskStack is switched to use WC.
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800156 void moveTaskToStack(TaskStack stack, boolean toTop) {
157 if (stack == mStack) {
158 return;
159 }
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800160 if (DEBUG_STACK) Slog.i(TAG, "moveTaskToStack: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800161 + " from stack=" + mStack);
Wale Ogunwale000957c2015-04-03 08:19:12 -0700162 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Andrii Kulian441e4492016-09-29 15:25:00 -0700163 getParent().removeChild(this);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800164 stack.addTask(this, toTop);
165 }
166
Wale Ogunwale935e5022015-11-10 12:36:10 -0800167 void positionTaskInStack(TaskStack stack, int position, Rect bounds, Configuration config) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700168 if (mStack != null && stack != mStack) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800169 if (DEBUG_STACK) Slog.i(TAG, "positionTaskInStack: removing taskId=" + mTaskId
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700170 + " from stack=" + mStack);
171 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700172 mStack.removeChild(this);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700173 }
174 stack.positionTask(this, position, showForAllUsers());
Jorim Jaggi8fa45222016-02-19 19:54:39 -0800175 resizeLocked(bounds, config, false /* force */);
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800176
Wale Ogunwalef6192862016-09-10 13:42:30 -0700177 for (int activityNdx = mChildren.size() - 1; activityNdx >= 0; --activityNdx) {
178 mChildren.get(activityNdx).notifyMovedInStack();
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800179 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700180 }
181
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700182 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700183 void removeChild(AppWindowToken token) {
184 if (!mChildren.contains(token)) {
185 Slog.e(TAG, "removeChild: token=" + this + " not found.");
186 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700187 }
188
Wale Ogunwalef6192862016-09-10 13:42:30 -0700189 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700190
Wale Ogunwalef6192862016-09-10 13:42:30 -0700191 if (mChildren.isEmpty()) {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100192 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800193 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700194 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800195 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800196 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700197 token.mTask = null;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800198 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800199
Craig Mautnercbd84af2014-10-22 13:21:22 -0700200 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700201 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
202 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700203 }
204 }
205
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700206 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700207 private int setBounds(Rect bounds, Configuration overrideConfig) {
208 if (overrideConfig == null) {
209 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700210 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700211 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700212 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700213 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700214 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700215 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700216 throw new IllegalArgumentException("non null bounds, but empty configuration");
217 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700218 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700219 int rotation = Surface.ROTATION_0;
220 final DisplayContent displayContent = mStack.getDisplayContent();
221 if (displayContent != null) {
222 displayContent.getLogicalDisplayRect(mTmpRect);
223 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700224 mFillsParent = bounds == null;
225 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700226 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700227 }
228 }
229
230 if (bounds == null) {
231 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700232 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700233 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700234 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700235 return BOUNDS_CHANGE_NONE;
236 }
237
238 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700239 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700240 boundsChange |= BOUNDS_CHANGE_POSITION;
241 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700242 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700243 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700244 }
245
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700246 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800247
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700248 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700249 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800250 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700251 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700252 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700253 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700254 }
255
Jorim Jaggidc249c42015-12-15 14:57:31 -0800256 /**
257 * Sets the bounds used to calculate the insets. See
258 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
259 */
260 void setTempInsetBounds(Rect tempInsetBounds) {
261 if (tempInsetBounds != null) {
262 mTempInsetBounds.set(tempInsetBounds);
263 } else {
264 mTempInsetBounds.setEmpty();
265 }
266 }
267
268 /**
269 * Gets the bounds used to calculate the insets. See
270 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
271 */
272 void getTempInsetBounds(Rect out) {
273 out.set(mTempInsetBounds);
274 }
275
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800276 void setResizeable(int resizeMode) {
277 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800278 }
279
280 boolean isResizeable() {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800281 return !mHomeTask
282 && (ActivityInfo.isResizeableMode(mResizeMode) || mService.mForceResizableTasks);
283 }
284
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700285 boolean isOnTopLauncher() {
286 return mIsOnTopLauncher;
287 }
288
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800289 boolean cropWindowsToStackBounds() {
290 return !mHomeTask && (isResizeable() || mResizeMode == RESIZE_MODE_CROP_WINDOWS);
291 }
292
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800293 boolean isHomeTask() {
294 return mHomeTask;
295 }
296
Andrii Kulian8072d112016-09-16 11:11:01 -0700297 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
298 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700299 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700300 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700301 }
302 if (boundsChanged == BOUNDS_CHANGE_NONE) {
303 return false;
304 }
305 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700306 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800307 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700308 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700309 }
310 return true;
311 }
312
Jorim Jaggi0429f352015-12-22 16:29:16 +0100313 /**
314 * Prepares the task bounds to be frozen with the current size. See
315 * {@link AppWindowToken#freezeBounds}.
316 */
317 void prepareFreezingBounds() {
318 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700319 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100320 }
321
Chong Zhang5117e272016-05-03 12:47:34 -0700322 /**
323 * Align the task to the adjusted bounds.
324 *
325 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
326 * @param tempInsetBounds Insets bounds for the task.
327 * @param alignBottom True if the task's bottom should be aligned to the adjusted
328 * bounds's bottom; false if the task's top should be aligned
329 * the adjusted bounds's top.
330 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700331 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
332 final Configuration overrideConfig = getOverrideConfiguration();
333 if (!isResizeable() || Configuration.EMPTY.equals(overrideConfig)) {
Chong Zhang5117e272016-05-03 12:47:34 -0700334 return;
335 }
336
337 getBounds(mTmpRect2);
338 if (alignBottom) {
339 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
340 mTmpRect2.offset(0, offsetY);
341 } else {
342 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
343 }
344 setTempInsetBounds(tempInsetBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700345 resizeLocked(mTmpRect2, overrideConfig, false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700346 }
347
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700348 /** Return true if the current bound can get outputted to the rest of the system as-is. */
349 private boolean useCurrentBounds() {
350 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700351 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700352 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700353 || displayContent == null
Wale Ogunwalef6192862016-09-10 13:42:30 -0700354 || displayContent.getDockedStackVisibleForUserLocked() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700355 }
356
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800357 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800358 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700359 if (useCurrentBounds()) {
360 // No need to adjust the output bounds if fullscreen or the docked stack is visible
361 // since it is already what we want to represent to the rest of the system.
362 out.set(mBounds);
363 return;
364 }
365
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800366 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
367 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700368 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700369 }
370
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800371 /**
372 * Calculate the maximum visible area of this task. If the task has only one app,
373 * the result will be visible frame of that app. If the task has more than one apps,
374 * we search from top down if the next app got different visible area.
375 *
376 * This effort is to handle the case where some task (eg. GMail composer) might pop up
377 * a dialog that's different in size from the activity below, in which case we should
378 * be dimming the entire task area behind the dialog.
379 *
380 * @param out Rect containing the max visible bounds.
381 * @return true if the task has some visible app windows; false otherwise.
382 */
383 boolean getMaxVisibleBounds(Rect out) {
384 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700385 for (int i = mChildren.size() - 1; i >= 0; i--) {
386 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800387 // skip hidden (or about to hide) apps
388 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
389 continue;
390 }
391 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800392 if (win == null) {
393 continue;
394 }
395 if (!foundTop) {
396 out.set(win.mVisibleFrame);
397 foundTop = true;
398 continue;
399 }
400 if (win.mVisibleFrame.left < out.left) {
401 out.left = win.mVisibleFrame.left;
402 }
403 if (win.mVisibleFrame.top < out.top) {
404 out.top = win.mVisibleFrame.top;
405 }
406 if (win.mVisibleFrame.right > out.right) {
407 out.right = win.mVisibleFrame.right;
408 }
409 if (win.mVisibleFrame.bottom > out.bottom) {
410 out.bottom = win.mVisibleFrame.bottom;
411 }
412 }
413 return foundTop;
414 }
415
416 /** Bounds of the task to be used for dimming, as well as touch related tests. */
417 @Override
418 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700419 final DisplayContent displayContent = mStack.getDisplayContent();
420 // It doesn't matter if we in particular are part of the resize, since we couldn't have
421 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700422 final boolean dockedResizing = displayContent != null
423 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800424 if (useCurrentBounds()) {
425 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
426 return;
427 }
428
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700429 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700430 // When minimizing the docked stack when going home, we don't adjust the task bounds
431 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700432 //
433 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
434 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
435 // should keep up with the divider.
436 if (dockedResizing) {
437 mStack.getBounds(out);
438 } else {
439 mStack.getBounds(mTmpRect);
440 mTmpRect.intersect(mBounds);
441 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700442 out.set(mTmpRect);
443 } else {
444 out.set(mBounds);
445 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800446 return;
447 }
448
Wale Ogunwalef6192862016-09-10 13:42:30 -0700449 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
450 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
451 if (displayContent != null) {
452 displayContent.getLogicalDisplayRect(out);
453 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800454 }
455
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100456 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800457 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100458 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
459 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
460 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
461 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800462 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100463 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800464 resetDragResizingChangeReported();
465 }
466 }
467
Chong Zhang3005e752015-09-18 18:46:28 -0700468 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700469 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700470 }
471
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100472 int getDragResizeMode() {
473 return mDragResizeMode;
474 }
475
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700476 void updateDisplayInfo(final DisplayContent displayContent) {
477 if (displayContent == null) {
478 return;
479 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700480 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700481 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700482 return;
483 }
484 final int newRotation = displayContent.getDisplayInfo().rotation;
485 if (mRotation == newRotation) {
486 return;
487 }
488
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800489 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700490 // - We don't want the task to move around on the screen when this happens, so update the
491 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800492 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700493 // from its stack. The stack will take care of task rotation for the other case.
494 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800495
496 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700497 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800498 return;
499 }
500
Wale Ogunwale94744212015-09-21 19:01:47 -0700501 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700502 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800503 // Post message to inform activity manager of the bounds change simulating a one-way
504 // call. We do this to prevent a deadlock between window manager lock and activity
505 // manager lock been held.
506 mService.mH.obtainMessage(RESIZE_TASK, mTaskId,
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700507 RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds).sendToTarget();
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700508 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700509 }
510
Wale Ogunwalef6192862016-09-10 13:42:30 -0700511 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700512 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700513 for (int i = mChildren.size() - 1; i >= 0; --i) {
514 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700515 }
516 }
517
Wale Ogunwalef6192862016-09-10 13:42:30 -0700518 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800519 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700520 for (int i = mChildren.size() - 1; i >= 0; --i) {
521 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800522 }
523 }
524
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700525 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700526 final int tokensCount = mChildren.size();
527 return (tokensCount != 0) && mChildren.get(tokensCount - 1).showForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700528 }
529
Chong Zhangdb20b5f2015-10-23 14:01:43 -0700530 boolean inHomeStack() {
531 return mStack != null && mStack.mStackId == HOME_STACK_ID;
532 }
533
Chong Zhang09b21ef2015-09-14 10:20:21 -0700534 boolean inFreeformWorkspace() {
535 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
536 }
537
Robert Carr03138452016-05-18 14:53:16 -0700538 boolean inPinnedWorkspace() {
539 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
540 }
541
Robert Carre6275582016-02-29 15:45:45 -0800542 boolean isFloating() {
543 return StackId.tasksAreFloating(mStack.mStackId);
544 }
545
Chong Zhangd8ceb852015-11-11 14:53:41 -0800546 WindowState getTopVisibleAppMainWindow() {
547 final AppWindowToken token = getTopVisibleAppToken();
548 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700549 }
550
Chong Zhangd8ceb852015-11-11 14:53:41 -0800551 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700552 for (int i = mChildren.size() - 1; i >= 0; i--) {
553 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800554 // skip hidden (or about to hide) apps
555 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
556 return token;
557 }
558 }
559 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700560 }
561
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800562 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700563 public boolean dimFullscreen() {
564 return isHomeTask() || isFullscreen();
565 }
566
567 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700568 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700569 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700570 }
571 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
572 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
573 // system.
574 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700575 }
576
577 @Override
578 public DisplayInfo getDisplayInfo() {
579 return mStack.getDisplayContent().getDisplayInfo();
580 }
581
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700582 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700583 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700584 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700585 for (int i = mChildren.size() - 1; i >= 0; i--) {
586 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700587 }
588 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700589 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700590 }
591 }
592
Wale Ogunwaleec731152016-09-08 20:18:57 -0700593 void getWindowOnDisplayBeforeToken(DisplayContent dc, WindowToken token,
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700594 DisplayContent.GetWindowOnDisplaySearchResult result) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700595 for (int i = mChildren.size() - 1; i >= 0; --i) {
596 final AppWindowToken current = mChildren.get(i);
Wale Ogunwaleec731152016-09-08 20:18:57 -0700597 if (current == token) {
598 // We have reach the token we are interested in. End search.
599 result.reachedToken = true;
600 return;
601 }
602
603 // We haven't reached the token yet; if this token is not going to the bottom and
604 // has windows on this display, then it is a candidate for what we are looking for.
605 final WindowList tokenWindowList = dc.getTokenWindowsOnDisplay(current);
606 if (!current.sendingToBottom && tokenWindowList.size() > 0) {
607 result.foundWindow = tokenWindowList.get(0);
608 }
609 }
610 }
611
612 void getWindowOnDisplayAfterToken(DisplayContent dc, WindowToken token,
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700613 DisplayContent.GetWindowOnDisplaySearchResult result) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700614 for (int i = mChildren.size() - 1; i >= 0; --i) {
615 final AppWindowToken current = mChildren.get(i);
Wale Ogunwaleec731152016-09-08 20:18:57 -0700616 if (!result.reachedToken) {
617 if (current == token) {
618 // We have reached the token we are interested in. Get whichever window occurs
619 // after it that is on the same display.
620 result.reachedToken = true;
621 }
622 continue;
623 }
624
625 final WindowList tokenWindowList = dc.getTokenWindowsOnDisplay(current);
626 if (tokenWindowList.size() > 0) {
627 result.foundWindow = tokenWindowList.get(tokenWindowList.size() - 1);
628 return;
629 }
630 }
631 }
632
Wale Ogunwalef6192862016-09-10 13:42:30 -0700633 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700634 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700635 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700636 }
637
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700638 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800639 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700640 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800641 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700642
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700643 String getName() {
644 return toShortString();
645 }
646
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700647 @Override
648 public String toShortString() {
649 return "Task=" + mTaskId;
650 }
651
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800652 public void dump(String prefix, PrintWriter pw) {
653 final String doublePrefix = prefix + " ";
654
655 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700656 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800657 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
658 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700659 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800660 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
661
662 final String triplePrefix = doublePrefix + " ";
663
Wale Ogunwalef6192862016-09-10 13:42:30 -0700664 for (int i = mChildren.size() - 1; i >= 0; i--) {
665 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800666 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
667 wtoken.dump(pw, triplePrefix);
668 }
669
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700670 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800671}