blob: a4685981fc3538bffda979587b9e26b3412c7f96 [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 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800147 removeImmediately();
148 }
149
150 @Override
151 void removeImmediately() {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800152 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing taskId=" + mTaskId);
Craig Mautner83162a92015-01-26 14:43:30 -0800153 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800154 mDeferRemoval = false;
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800155
156 // Make sure to remove dim layer user first before removing task its from parent.
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700157 DisplayContent content = getDisplayContent();
158 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800159 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700160 }
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800161
162 super.removeImmediately();
Craig Mautner83162a92015-01-26 14:43:30 -0800163 mService.mTaskIdToTask.delete(mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800164 }
165
Andrii Kuliand2765632016-12-12 22:26:34 -0800166 // TODO: Change to use re-parenting in WC.
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800167 void moveTaskToStack(TaskStack stack, boolean toTop) {
168 if (stack == mStack) {
169 return;
170 }
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800171 if (DEBUG_STACK) Slog.i(TAG, "moveTaskToStack: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800172 + " from stack=" + mStack);
Wale Ogunwale000957c2015-04-03 08:19:12 -0700173 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Andrii Kulian441e4492016-09-29 15:25:00 -0700174 getParent().removeChild(this);
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800175 stack.addTask(this, toTop);
176 }
177
Andrii Kuliand2765632016-12-12 22:26:34 -0800178 /** @see com.android.server.am.ActivityManagerService#positionTaskInStack(int, int, int). */
Andrii Kulian1779e612016-10-12 21:58:25 -0700179 void positionTaskInStack(TaskStack stack, int position, Rect bounds,
180 Configuration overrideConfig) {
Andrii Kulian45a61fe2017-01-05 16:53:19 -0800181 if (mStack == null) {
182 // There is an assumption that task already has a stack at this point, so lets make
183 // sure we comply with it.
184 throw new IllegalStateException("Trying to position task that has no parent.");
185 }
186 if (stack != mStack) {
Andrii Kuliand2765632016-12-12 22:26:34 -0800187 // Task is already attached to a different stack. First we need to remove it from there
188 // and add to top of the target stack. We will move it proper position afterwards.
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -0800189 if (DEBUG_STACK) Slog.i(TAG, "positionTaskInStack: removing taskId=" + mTaskId
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700190 + " from stack=" + mStack);
191 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700192 mStack.removeChild(this);
Andrii Kuliand2765632016-12-12 22:26:34 -0800193 stack.addTask(this, true /* toTop */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700194 }
Andrii Kuliand2765632016-12-12 22:26:34 -0800195
196 stack.positionChildAt(position, this, true /* includingParents */);
Andrii Kulian1779e612016-10-12 21:58:25 -0700197 resizeLocked(bounds, overrideConfig, false /* force */);
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800198
Wale Ogunwalef6192862016-09-10 13:42:30 -0700199 for (int activityNdx = mChildren.size() - 1; activityNdx >= 0; --activityNdx) {
200 mChildren.get(activityNdx).notifyMovedInStack();
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800201 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700202 }
203
Wale Ogunwale14a3fb92016-09-11 15:19:05 -0700204 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -0800205 void onParentSet() {
206 // Update task bounds if needed.
207 updateDisplayInfo(getDisplayContent());
208
209 if (StackId.windowsAreScaleable(mStack.mStackId)) {
210 // We force windows out of SCALING_MODE_FREEZE so that we can continue to animate them
211 // while a resize is pending.
212 forceWindowsScaleable(true /* force */);
213 } else {
214 forceWindowsScaleable(false /* force */);
215 }
216 }
217
218 @Override
Wale Ogunwalef6192862016-09-10 13:42:30 -0700219 void removeChild(AppWindowToken token) {
220 if (!mChildren.contains(token)) {
221 Slog.e(TAG, "removeChild: token=" + this + " not found.");
222 return;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700223 }
224
Wale Ogunwalef6192862016-09-10 13:42:30 -0700225 super.removeChild(token);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700226
Wale Ogunwalef6192862016-09-10 13:42:30 -0700227 if (mChildren.isEmpty()) {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100228 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800229 if (mDeferRemoval) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700230 removeIfPossible();
Craig Mautnere3119b72015-01-20 15:02:36 -0800231 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800232 }
Wale Ogunwalef6192862016-09-10 13:42:30 -0700233 token.mTask = null;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800234 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800235
Craig Mautnercbd84af2014-10-22 13:21:22 -0700236 void setSendingToBottom(boolean toBottom) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700237 for (int appTokenNdx = 0; appTokenNdx < mChildren.size(); appTokenNdx++) {
238 mChildren.get(appTokenNdx).sendingToBottom = toBottom;
Craig Mautnercbd84af2014-10-22 13:21:22 -0700239 }
240 }
241
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700242 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Andrii Kulian8072d112016-09-16 11:11:01 -0700243 private int setBounds(Rect bounds, Configuration overrideConfig) {
244 if (overrideConfig == null) {
245 overrideConfig = Configuration.EMPTY;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700246 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700247 if (bounds == null && !Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700248 throw new IllegalArgumentException("null bounds but non empty configuration: "
Andrii Kulian8072d112016-09-16 11:11:01 -0700249 + overrideConfig);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700250 }
Andrii Kulian8072d112016-09-16 11:11:01 -0700251 if (bounds != null && Configuration.EMPTY.equals(overrideConfig)) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700252 throw new IllegalArgumentException("non null bounds, but empty configuration");
253 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700254 boolean oldFullscreen = mFillsParent;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700255 int rotation = Surface.ROTATION_0;
256 final DisplayContent displayContent = mStack.getDisplayContent();
257 if (displayContent != null) {
258 displayContent.getLogicalDisplayRect(mTmpRect);
259 rotation = displayContent.getDisplayInfo().rotation;
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700260 mFillsParent = bounds == null;
261 if (mFillsParent) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700262 bounds = mTmpRect;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700263 }
264 }
265
266 if (bounds == null) {
267 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700268 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700269 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700270 if (mBounds.equals(bounds) && oldFullscreen == mFillsParent && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700271 return BOUNDS_CHANGE_NONE;
272 }
273
274 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700275 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700276 boundsChange |= BOUNDS_CHANGE_POSITION;
277 }
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700278 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700279 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700280 }
281
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700282 mBounds.set(bounds);
Chong Zhangf66db432016-01-13 10:39:51 -0800283
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700284 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700285 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800286 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700287 }
Andrii Kulian441e4492016-09-29 15:25:00 -0700288 onOverrideConfigurationChanged(mFillsParent ? Configuration.EMPTY : overrideConfig);
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700289 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700290 }
291
Jorim Jaggidc249c42015-12-15 14:57:31 -0800292 /**
293 * Sets the bounds used to calculate the insets. See
294 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
295 */
296 void setTempInsetBounds(Rect tempInsetBounds) {
297 if (tempInsetBounds != null) {
298 mTempInsetBounds.set(tempInsetBounds);
299 } else {
300 mTempInsetBounds.setEmpty();
301 }
302 }
303
304 /**
305 * Gets the bounds used to calculate the insets. See
306 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
307 */
308 void getTempInsetBounds(Rect out) {
309 out.set(mTempInsetBounds);
310 }
311
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800312 void setResizeable(int resizeMode) {
313 mResizeMode = resizeMode;
Chong Zhangb15758a2015-11-17 12:12:03 -0800314 }
315
316 boolean isResizeable() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700317 return ActivityInfo.isResizeableMode(mResizeMode) || mService.mForceResizableTasks;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800318 }
319
skuhne@google.com322347b2016-12-02 12:54:03 -0800320 /**
321 * Tests if the orientation should be preserved upon user interactive resizig operations.
322
323 * @return true if orientation should not get changed upon resizing operation.
324 */
325 boolean preserveOrientationOnResize() {
326 return mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY
327 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY
328 || mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
329 }
330
Jiaquan Hedd1e66f2016-06-15 15:15:12 -0700331 boolean isOnTopLauncher() {
332 return mIsOnTopLauncher;
333 }
334
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800335 boolean cropWindowsToStackBounds() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700336 return isResizeable();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800337 }
338
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800339 boolean isHomeTask() {
340 return mHomeTask;
341 }
342
Andrii Kulian8072d112016-09-16 11:11:01 -0700343 boolean resizeLocked(Rect bounds, Configuration overrideConfig, boolean forced) {
344 int boundsChanged = setBounds(bounds, overrideConfig);
Chong Zhang87b21722015-09-21 15:39:51 -0700345 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700346 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700347 }
348 if (boundsChanged == BOUNDS_CHANGE_NONE) {
349 return false;
350 }
351 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700352 onResize();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800353 } else {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700354 onMovedByResize();
Chong Zhang3005e752015-09-18 18:46:28 -0700355 }
356 return true;
357 }
358
Jorim Jaggi0429f352015-12-22 16:29:16 +0100359 /**
360 * Prepares the task bounds to be frozen with the current size. See
361 * {@link AppWindowToken#freezeBounds}.
362 */
363 void prepareFreezingBounds() {
364 mPreparedFrozenBounds.set(mBounds);
Andrii Kulian441e4492016-09-29 15:25:00 -0700365 mPreparedFrozenMergedConfig.setTo(getConfiguration());
Jorim Jaggi0429f352015-12-22 16:29:16 +0100366 }
367
Chong Zhang5117e272016-05-03 12:47:34 -0700368 /**
369 * Align the task to the adjusted bounds.
370 *
371 * @param adjustedBounds Adjusted bounds to which the task should be aligned.
372 * @param tempInsetBounds Insets bounds for the task.
373 * @param alignBottom True if the task's bottom should be aligned to the adjusted
374 * bounds's bottom; false if the task's top should be aligned
375 * the adjusted bounds's top.
376 */
Andrii Kulian441e4492016-09-29 15:25:00 -0700377 void alignToAdjustedBounds(Rect adjustedBounds, Rect tempInsetBounds, boolean alignBottom) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700378 // Task override config might be empty, while display or stack override config isn't, so
379 // we have to check merged override config here.
380 if (!isResizeable() || Configuration.EMPTY.equals(getMergedOverrideConfiguration())) {
Chong Zhang5117e272016-05-03 12:47:34 -0700381 return;
382 }
383
384 getBounds(mTmpRect2);
385 if (alignBottom) {
386 int offsetY = adjustedBounds.bottom - mTmpRect2.bottom;
387 mTmpRect2.offset(0, offsetY);
388 } else {
389 mTmpRect2.offsetTo(adjustedBounds.left, adjustedBounds.top);
390 }
391 setTempInsetBounds(tempInsetBounds);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700392 resizeLocked(mTmpRect2, getOverrideConfiguration(), false /* forced */);
Chong Zhang5117e272016-05-03 12:47:34 -0700393 }
394
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700395 /** Return true if the current bound can get outputted to the rest of the system as-is. */
396 private boolean useCurrentBounds() {
397 final DisplayContent displayContent = mStack.getDisplayContent();
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700398 return mFillsParent
Wale Ogunwale3797c222015-10-27 14:21:58 -0700399 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700400 || displayContent == null
Jorim Jaggife762342016-10-13 14:33:27 +0200401 || displayContent.getDockedStackIgnoringVisibility() != null;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700402 }
403
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800404 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800405 void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700406 if (useCurrentBounds()) {
407 // No need to adjust the output bounds if fullscreen or the docked stack is visible
408 // since it is already what we want to represent to the rest of the system.
409 out.set(mBounds);
410 return;
411 }
412
Wale Ogunwaleccb6ce22016-01-14 15:36:35 -0800413 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
414 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700415 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700416 }
417
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800418 /**
419 * Calculate the maximum visible area of this task. If the task has only one app,
420 * the result will be visible frame of that app. If the task has more than one apps,
421 * we search from top down if the next app got different visible area.
422 *
423 * This effort is to handle the case where some task (eg. GMail composer) might pop up
424 * a dialog that's different in size from the activity below, in which case we should
425 * be dimming the entire task area behind the dialog.
426 *
427 * @param out Rect containing the max visible bounds.
428 * @return true if the task has some visible app windows; false otherwise.
429 */
430 boolean getMaxVisibleBounds(Rect out) {
431 boolean foundTop = false;
Wale Ogunwalef6192862016-09-10 13:42:30 -0700432 for (int i = mChildren.size() - 1; i >= 0; i--) {
433 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800434 // skip hidden (or about to hide) apps
435 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
436 continue;
437 }
438 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800439 if (win == null) {
440 continue;
441 }
442 if (!foundTop) {
443 out.set(win.mVisibleFrame);
444 foundTop = true;
445 continue;
446 }
447 if (win.mVisibleFrame.left < out.left) {
448 out.left = win.mVisibleFrame.left;
449 }
450 if (win.mVisibleFrame.top < out.top) {
451 out.top = win.mVisibleFrame.top;
452 }
453 if (win.mVisibleFrame.right > out.right) {
454 out.right = win.mVisibleFrame.right;
455 }
456 if (win.mVisibleFrame.bottom > out.bottom) {
457 out.bottom = win.mVisibleFrame.bottom;
458 }
459 }
460 return foundTop;
461 }
462
463 /** Bounds of the task to be used for dimming, as well as touch related tests. */
464 @Override
465 public void getDimBounds(Rect out) {
Robert Carra86a6bf2016-04-08 17:34:16 -0700466 final DisplayContent displayContent = mStack.getDisplayContent();
467 // It doesn't matter if we in particular are part of the resize, since we couldn't have
468 // a DimLayer anyway if we weren't visible.
Wale Ogunwalef6192862016-09-10 13:42:30 -0700469 final boolean dockedResizing = displayContent != null
470 && displayContent.mDividerControllerLocked.isResizing();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800471 if (useCurrentBounds()) {
472 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
473 return;
474 }
475
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700476 if (!mFillsParent) {
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700477 // When minimizing the docked stack when going home, we don't adjust the task bounds
478 // so we need to intersect the task bounds with the stack bounds here.
Robert Carra86a6bf2016-04-08 17:34:16 -0700479 //
480 // If we are Docked Resizing with snap points, the task bounds could be smaller than the stack
481 // bounds and so we don't even want to use them. Even if the app should not be resized the Dim
482 // should keep up with the divider.
483 if (dockedResizing) {
484 mStack.getBounds(out);
485 } else {
486 mStack.getBounds(mTmpRect);
487 mTmpRect.intersect(mBounds);
488 }
Jorim Jaggi22a869f2016-03-25 23:33:21 -0700489 out.set(mTmpRect);
490 } else {
491 out.set(mBounds);
492 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800493 return;
494 }
495
Wale Ogunwalef6192862016-09-10 13:42:30 -0700496 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack is
497 // not currently visible. Go ahead a represent it as fullscreen to the rest of the system.
498 if (displayContent != null) {
499 displayContent.getLogicalDisplayRect(out);
500 }
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800501 }
502
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100503 void setDragResizing(boolean dragResizing, int dragResizeMode) {
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800504 if (mDragResizing != dragResizing) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100505 if (!DragResizeMode.isModeAllowedForStack(mStack.mStackId, dragResizeMode)) {
506 throw new IllegalArgumentException("Drag resize mode not allow for stack stackId="
507 + mStack.mStackId + " dragResizeMode=" + dragResizeMode);
508 }
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800509 mDragResizing = dragResizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100510 mDragResizeMode = dragResizeMode;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800511 resetDragResizingChangeReported();
512 }
513 }
514
Chong Zhang3005e752015-09-18 18:46:28 -0700515 boolean isDragResizing() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700516 return mDragResizing;
Chong Zhang3005e752015-09-18 18:46:28 -0700517 }
518
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100519 int getDragResizeMode() {
520 return mDragResizeMode;
521 }
522
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700523 void updateDisplayInfo(final DisplayContent displayContent) {
524 if (displayContent == null) {
525 return;
526 }
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700527 if (mFillsParent) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700528 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700529 return;
530 }
531 final int newRotation = displayContent.getDisplayInfo().rotation;
532 if (mRotation == newRotation) {
533 return;
534 }
535
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800536 // Device rotation changed.
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700537 // - We don't want the task to move around on the screen when this happens, so update the
538 // task bounds so it stays in the same place.
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800539 // - Rotate the bounds and notify activity manager if the task can be resized independently
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700540 // from its stack. The stack will take care of task rotation for the other case.
541 mTmpRect2.set(mBounds);
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800542
543 if (!StackId.isTaskResizeAllowed(mStack.mStackId)) {
Andrii Kulian441e4492016-09-29 15:25:00 -0700544 setBounds(mTmpRect2, getOverrideConfiguration());
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800545 return;
546 }
547
Wale Ogunwale94744212015-09-21 19:01:47 -0700548 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Andrii Kulian441e4492016-09-29 15:25:00 -0700549 if (setBounds(mTmpRect2, getOverrideConfiguration()) != BOUNDS_CHANGE_NONE) {
Wale Ogunwalee1fe4d12016-01-14 08:52:30 -0800550 // Post message to inform activity manager of the bounds change simulating a one-way
551 // call. We do this to prevent a deadlock between window manager lock and activity
552 // manager lock been held.
553 mService.mH.obtainMessage(RESIZE_TASK, mTaskId,
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700554 RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds).sendToTarget();
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700555 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700556 }
557
Wale Ogunwalef6192862016-09-10 13:42:30 -0700558 /** Cancels any running app transitions associated with the task. */
Winsonc28098f2015-10-30 14:50:19 -0700559 void cancelTaskWindowTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700560 for (int i = mChildren.size() - 1; i >= 0; --i) {
561 mChildren.get(i).mAppAnimator.clearAnimation();
Winsonc28098f2015-10-30 14:50:19 -0700562 }
563 }
564
Wale Ogunwalef6192862016-09-10 13:42:30 -0700565 /** Cancels any running thumbnail transitions associated with the task. */
Winson13d30662015-11-06 15:30:29 -0800566 void cancelTaskThumbnailTransition() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700567 for (int i = mChildren.size() - 1; i >= 0; --i) {
568 mChildren.get(i).mAppAnimator.clearThumbnail();
Winson13d30662015-11-06 15:30:29 -0800569 }
570 }
571
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700572 boolean showForAllUsers() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700573 final int tokensCount = mChildren.size();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800574 return (tokensCount != 0) && mChildren.get(tokensCount - 1).mShowForAllUsers;
Jorim Jaggiff71d202016-04-14 13:12:36 -0700575 }
576
Chong Zhang09b21ef2015-09-14 10:20:21 -0700577 boolean inFreeformWorkspace() {
578 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
579 }
580
Robert Carr03138452016-05-18 14:53:16 -0700581 boolean inPinnedWorkspace() {
582 return mStack != null && mStack.mStackId == PINNED_STACK_ID;
583 }
584
Robert Carre6275582016-02-29 15:45:45 -0800585 boolean isFloating() {
586 return StackId.tasksAreFloating(mStack.mStackId);
587 }
588
Chong Zhangd8ceb852015-11-11 14:53:41 -0800589 WindowState getTopVisibleAppMainWindow() {
590 final AppWindowToken token = getTopVisibleAppToken();
591 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700592 }
593
Chong Zhangd8ceb852015-11-11 14:53:41 -0800594 AppWindowToken getTopVisibleAppToken() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700595 for (int i = mChildren.size() - 1; i >= 0; i--) {
596 final AppWindowToken token = mChildren.get(i);
Chong Zhangd8ceb852015-11-11 14:53:41 -0800597 // skip hidden (or about to hide) apps
598 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
599 return token;
600 }
601 }
602 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700603 }
604
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800605 @Override
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700606 public boolean dimFullscreen() {
Wale Ogunwaledf241e92016-10-13 15:14:21 -0700607 return isFullscreen();
Wale Ogunwale29bfbb82016-05-12 15:13:52 -0700608 }
609
610 boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700611 if (useCurrentBounds()) {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700612 return mFillsParent;
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700613 }
614 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
615 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
616 // system.
617 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700618 }
619
620 @Override
621 public DisplayInfo getDisplayInfo() {
622 return mStack.getDisplayContent().getDisplayInfo();
623 }
624
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700625 void forceWindowsScaleable(boolean force) {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700626 mService.openSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700627 try {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700628 for (int i = mChildren.size() - 1; i >= 0; i--) {
629 mChildren.get(i).forceWindowsScaleableInTransaction(force);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700630 }
631 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700632 mService.closeSurfaceTransaction();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700633 }
634 }
635
Wale Ogunwalef6192862016-09-10 13:42:30 -0700636 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -0700637 boolean fillsParent() {
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700638 return mFillsParent || !StackId.isTaskResizeAllowed(mStack.mStackId);
Wale Ogunwale51362492016-09-08 17:49:17 -0700639 }
640
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700641 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800642 public String toString() {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700643 return "{taskId=" + mTaskId + " appTokens=" + mChildren + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800644 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700645
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700646 String getName() {
647 return toShortString();
648 }
649
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700650 @Override
651 public String toShortString() {
652 return "Task=" + mTaskId;
653 }
654
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800655 public void dump(String prefix, PrintWriter pw) {
656 final String doublePrefix = prefix + " ";
657
658 pw.println(prefix + "taskId=" + mTaskId);
Wale Ogunwale5a2183d2016-09-19 12:26:13 -0700659 pw.println(doublePrefix + "mFillsParent=" + mFillsParent);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800660 pw.println(doublePrefix + "mBounds=" + mBounds.toShortString());
661 pw.println(doublePrefix + "mdr=" + mDeferRemoval);
Wale Ogunwalef6192862016-09-10 13:42:30 -0700662 pw.println(doublePrefix + "appTokens=" + mChildren);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800663 pw.println(doublePrefix + "mTempInsetBounds=" + mTempInsetBounds.toShortString());
664
665 final String triplePrefix = doublePrefix + " ";
666
Wale Ogunwalef6192862016-09-10 13:42:30 -0700667 for (int i = mChildren.size() - 1; i >= 0; i--) {
668 final AppWindowToken wtoken = mChildren.get(i);
Wale Ogunwaleb429e682016-01-06 12:36:34 -0800669 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
670 wtoken.dump(pw, triplePrefix);
671 }
672
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700673 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800674}