blob: 802280529c35de2a9c6b6fa3141079e93ebaa547 [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
Wale Ogunwale3797c222015-10-27 14:21:58 -070019import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
20import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
21import static android.app.ActivityManager.StackId.HOME_STACK_ID;
Chong Zhangb15758a2015-11-17 12:12:03 -080022import static android.content.res.Configuration.ORIENTATION_LANDSCAPE;
Wale Ogunwale1ed0d892015-09-28 13:27:44 -070023import static android.app.ActivityManager.RESIZE_MODE_SYSTEM_SCREEN_ROTATION;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080024import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
25import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_RESIZE;
26import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Wale Ogunwale1ed0d892015-09-28 13:27:44 -070027import static com.android.server.wm.WindowManagerService.H.RESIZE_TASK;
Chong Zhangc806d902015-11-30 09:44:27 -080028import static com.android.server.wm.WindowManagerService.H.SHOW_NON_RESIZEABLE_DOCK_TOAST;
29import static android.view.WindowManager.DOCKED_INVALID;
30import static android.view.WindowManager.DOCKED_LEFT;
31import static android.view.WindowManager.DOCKED_RIGHT;
32import static android.view.WindowManager.DOCKED_TOP;
Wale Ogunwale99db1862015-10-23 20:08:22 -070033
Wale Ogunwale3797c222015-10-27 14:21:58 -070034import android.app.ActivityManager.StackId;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070035import android.content.res.Configuration;
36import android.graphics.Rect;
Craig Mautner2c2549c2013-11-12 08:31:15 -080037import android.util.EventLog;
Craig Mautner42bf39e2014-02-21 16:46:22 -080038import android.util.Slog;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070039import android.view.DisplayInfo;
40import android.view.Surface;
41
Craig Mautnere3119b72015-01-20 15:02:36 -080042import com.android.server.EventLogTags;
Craig Mautner2c2549c2013-11-12 08:31:15 -080043
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070044import java.io.PrintWriter;
45import java.util.ArrayList;
46
47class Task implements DimLayer.DimLayerUser {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -070048 // Return value from {@link setBounds} indicating no change was made to the Task bounds.
49 static final int BOUNDS_CHANGE_NONE = 0;
50 // Return value from {@link setBounds} indicating the position of the Task bounds changed.
51 static final int BOUNDS_CHANGE_POSITION = 1;
52 // Return value from {@link setBounds} indicating the size of the Task bounds changed.
53 static final int BOUNDS_CHANGE_SIZE = 1 << 1;
54
Craig Mautnerc00204b2013-03-05 15:02:14 -080055 TaskStack mStack;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080056 final AppTokenList mAppTokens = new AppTokenList();
Craig Mautner83162a92015-01-26 14:43:30 -080057 final int mTaskId;
Craig Mautnerac6f8432013-07-17 13:24:59 -070058 final int mUserId;
Craig Mautner9ef471f2014-02-07 13:11:47 -080059 boolean mDeferRemoval = false;
Craig Mautnere3119b72015-01-20 15:02:36 -080060 final WindowManagerService mService;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080061
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070062 // Content limits relative to the DisplayContent this sits in.
63 private Rect mBounds = new Rect();
Jorim Jaggi0429f352015-12-22 16:29:16 +010064 final Rect mPreparedFrozenBounds = new Rect();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070065
Jorim Jaggidc249c42015-12-15 14:57:31 -080066 // Bounds used to calculate the insets.
67 private final Rect mTempInsetBounds = new Rect();
68
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070069 // Device rotation as of the last time {@link #mBounds} was set.
70 int mRotation;
71
72 // Whether mBounds is fullscreen
73 private boolean mFullscreen = true;
74
75 // Contains configurations settings that are different from the global configuration due to
76 // stack specific operations. E.g. {@link #setBounds}.
77 Configuration mOverrideConfig;
78
79 // For comparison with DisplayContent bounds.
80 private Rect mTmpRect = new Rect();
81 // For handling display rotations.
82 private Rect mTmpRect2 = new Rect();
83
Chong Zhangb15758a2015-11-17 12:12:03 -080084 // Whether the task is resizeable
85 private boolean mResizeable;
86
Chong Zhangc806d902015-11-30 09:44:27 -080087 // Whether we need to show toast about the app being non-resizeable when it becomes visible.
88 // This flag is set when a non-resizeable task is docked (or side-by-side). It's cleared
89 // after we show the toast.
90 private boolean mShowNonResizeableDockToast;
91
Chong Zhang3005e752015-09-18 18:46:28 -070092 // Whether the task is currently being drag-resized
93 private boolean mDragResizing;
94
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070095 Task(int taskId, TaskStack stack, int userId, WindowManagerService service, Rect bounds,
96 Configuration config) {
Craig Mautner83162a92015-01-26 14:43:30 -080097 mTaskId = taskId;
Craig Mautnerc00204b2013-03-05 15:02:14 -080098 mStack = stack;
Craig Mautnerac6f8432013-07-17 13:24:59 -070099 mUserId = userId;
Craig Mautnere3119b72015-01-20 15:02:36 -0800100 mService = service;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700101 setBounds(bounds, config);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800102 }
103
104 DisplayContent getDisplayContent() {
105 return mStack.getDisplayContent();
106 }
107
Chong Zhangc806d902015-11-30 09:44:27 -0800108 void setShowNonResizeableDockToast() {
109 mShowNonResizeableDockToast = true;
110 }
111
112 void scheduleShowNonResizeableDockToastIfNeeded() {
113 if (!mShowNonResizeableDockToast) {
114 return;
115 }
116 final DisplayContent displayContent = mStack.getDisplayContent();
117 // If docked stack is not yet visible, we don't want to show the toast yet,
118 // since we need the visible rect of the docked task to position the toast.
119 if (displayContent == null || displayContent.getDockedStackLocked() == null) {
120 return;
121 }
122
123 mShowNonResizeableDockToast = false;
124
125 final int dockSide = mStack.getDockSide();
126 int xOffset = 0;
127 int yOffset = 0;
128 if (dockSide != DOCKED_INVALID) {
129 mStack.getBounds(mTmpRect);
130 displayContent.getLogicalDisplayRect(mTmpRect2);
131
132 if (dockSide == DOCKED_LEFT || dockSide == DOCKED_RIGHT) {
133 xOffset = mTmpRect.centerX() - mTmpRect2.centerX();
134 } else if (dockSide == DOCKED_TOP) {
135 // We don't adjust for DOCKED_BOTTOM case since it's already at the bottom.
136 yOffset = mTmpRect2.bottom - mTmpRect.bottom;
137 }
138 mService.mH.obtainMessage(
139 SHOW_NON_RESIZEABLE_DOCK_TOAST, xOffset, yOffset).sendToTarget();
140 }
141 }
142
Craig Mautnerc00204b2013-03-05 15:02:14 -0800143 void addAppToken(int addPos, AppWindowToken wtoken) {
Craig Mautner42bf39e2014-02-21 16:46:22 -0800144 final int lastPos = mAppTokens.size();
Craig Mautner83162a92015-01-26 14:43:30 -0800145 if (addPos >= lastPos) {
146 addPos = lastPos;
147 } else {
148 for (int pos = 0; pos < lastPos && pos < addPos; ++pos) {
149 if (mAppTokens.get(pos).removed) {
150 // addPos assumes removed tokens are actually gone.
151 ++addPos;
152 }
Craig Mautner01f79cf2014-08-27 09:56:02 -0700153 }
Craig Mautner42bf39e2014-02-21 16:46:22 -0800154 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800155 mAppTokens.add(addPos, wtoken);
Craig Mautner83162a92015-01-26 14:43:30 -0800156 wtoken.mTask = this;
Craig Mautner42bf39e2014-02-21 16:46:22 -0800157 mDeferRemoval = false;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800158 }
159
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800160 private boolean hasAppTokensAlive() {
161 for (int i = mAppTokens.size() - 1; i >= 0; i--) {
162 if (!mAppTokens.get(i).appDied) {
163 return true;
164 }
165 }
166 return false;
167 }
168
Craig Mautnere3119b72015-01-20 15:02:36 -0800169 void removeLocked() {
Chong Zhang7e8eeb72016-01-06 19:14:47 -0800170 if (hasAppTokensAlive() && mStack.isAnimating()) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800171 if (DEBUG_STACK) Slog.i(TAG_WM, "removeTask: deferring removing taskId=" + mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800172 mDeferRemoval = true;
173 return;
174 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800175 if (DEBUG_STACK) Slog.i(TAG_WM, "removeTask: removing taskId=" + mTaskId);
Craig Mautner83162a92015-01-26 14:43:30 -0800176 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeTask");
Craig Mautnere3119b72015-01-20 15:02:36 -0800177 mDeferRemoval = false;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700178 DisplayContent content = getDisplayContent();
179 if (content != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800180 content.mDimLayerController.removeDimLayerUser(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700181 }
Craig Mautnere3119b72015-01-20 15:02:36 -0800182 mStack.removeTask(this);
Craig Mautner83162a92015-01-26 14:43:30 -0800183 mService.mTaskIdToTask.delete(mTaskId);
Craig Mautnere3119b72015-01-20 15:02:36 -0800184 }
185
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800186 void moveTaskToStack(TaskStack stack, boolean toTop) {
187 if (stack == mStack) {
188 return;
189 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800190 if (DEBUG_STACK) Slog.i(TAG_WM, "moveTaskToStack: removing taskId=" + mTaskId
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800191 + " from stack=" + mStack);
Wale Ogunwale000957c2015-04-03 08:19:12 -0700192 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800193 if (mStack != null) {
194 mStack.removeTask(this);
195 }
196 stack.addTask(this, toTop);
197 }
198
Wale Ogunwale935e5022015-11-10 12:36:10 -0800199 void positionTaskInStack(TaskStack stack, int position, Rect bounds, Configuration config) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700200 if (mStack != null && stack != mStack) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800201 if (DEBUG_STACK) Slog.i(TAG_WM, "positionTaskInStack: removing taskId=" + mTaskId
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700202 + " from stack=" + mStack);
203 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
204 mStack.removeTask(this);
205 }
206 stack.positionTask(this, position, showForAllUsers());
Wale Ogunwale935e5022015-11-10 12:36:10 -0800207 setBounds(bounds, config);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700208 }
209
Craig Mautnerc00204b2013-03-05 15:02:14 -0800210 boolean removeAppToken(AppWindowToken wtoken) {
Craig Mautner42bf39e2014-02-21 16:46:22 -0800211 boolean removed = mAppTokens.remove(wtoken);
Craig Mautnerc00204b2013-03-05 15:02:14 -0800212 if (mAppTokens.size() == 0) {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100213 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
Craig Mautnere3119b72015-01-20 15:02:36 -0800214 if (mDeferRemoval) {
215 removeLocked();
216 }
Craig Mautnerc00204b2013-03-05 15:02:14 -0800217 }
Craig Mautner83162a92015-01-26 14:43:30 -0800218 wtoken.mTask = null;
219 /* Leave mTaskId for now, it might be useful for debug
220 wtoken.mTaskId = -1;
221 */
Craig Mautner42bf39e2014-02-21 16:46:22 -0800222 return removed;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800223 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800224
Craig Mautnercbd84af2014-10-22 13:21:22 -0700225 void setSendingToBottom(boolean toBottom) {
226 for (int appTokenNdx = 0; appTokenNdx < mAppTokens.size(); appTokenNdx++) {
227 mAppTokens.get(appTokenNdx).sendingToBottom = toBottom;
228 }
229 }
230
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700231 /** Set the task bounds. Passing in null sets the bounds to fullscreen. */
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700232 int setBounds(Rect bounds, Configuration config) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700233 if (config == null) {
234 config = Configuration.EMPTY;
235 }
236 if (bounds == null && !Configuration.EMPTY.equals(config)) {
237 throw new IllegalArgumentException("null bounds but non empty configuration: "
238 + config);
239 }
240 if (bounds != null && Configuration.EMPTY.equals(config)) {
241 throw new IllegalArgumentException("non null bounds, but empty configuration");
242 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700243 boolean oldFullscreen = mFullscreen;
244 int rotation = Surface.ROTATION_0;
245 final DisplayContent displayContent = mStack.getDisplayContent();
246 if (displayContent != null) {
247 displayContent.getLogicalDisplayRect(mTmpRect);
248 rotation = displayContent.getDisplayInfo().rotation;
249 if (bounds == null) {
250 bounds = mTmpRect;
251 mFullscreen = true;
252 } else {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700253 mFullscreen = mTmpRect.equals(bounds);
254 }
255 }
256
257 if (bounds == null) {
258 // Can't set to fullscreen if we don't have a display to get bounds from...
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700259 return BOUNDS_CHANGE_NONE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700260 }
261 if (mBounds.equals(bounds) && oldFullscreen == mFullscreen && mRotation == rotation) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700262 return BOUNDS_CHANGE_NONE;
263 }
264
265 int boundsChange = BOUNDS_CHANGE_NONE;
Chong Zhang48a87a52015-12-03 15:36:21 -0800266 if (mBounds.left != bounds.left || mBounds.top != bounds.top) {
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700267 boundsChange |= BOUNDS_CHANGE_POSITION;
268 }
269 if (mBounds.width() != bounds.width() || mBounds.height() != bounds.height()) {
270 boundsChange |= BOUNDS_CHANGE_SIZE;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700271 }
272
273 mBounds.set(bounds);
274 mRotation = rotation;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700275 if (displayContent != null) {
Chong Zhang112eb8c2015-11-02 11:17:00 -0800276 displayContent.mDimLayerController.updateDimLayer(this);
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700277 }
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700278 mOverrideConfig = mFullscreen ? Configuration.EMPTY : config;
Wale Ogunwale2cc92f52015-09-09 13:12:10 -0700279 return boundsChange;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700280 }
281
Jorim Jaggidc249c42015-12-15 14:57:31 -0800282 /**
283 * Sets the bounds used to calculate the insets. See
284 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
285 */
286 void setTempInsetBounds(Rect tempInsetBounds) {
287 if (tempInsetBounds != null) {
288 mTempInsetBounds.set(tempInsetBounds);
289 } else {
290 mTempInsetBounds.setEmpty();
291 }
292 }
293
294 /**
295 * Gets the bounds used to calculate the insets. See
296 * {@link android.app.IActivityManager#resizeDockedStack} why this is needed.
297 */
298 void getTempInsetBounds(Rect out) {
299 out.set(mTempInsetBounds);
300 }
301
Chong Zhangb15758a2015-11-17 12:12:03 -0800302 void setResizeable(boolean resizeable) {
303 mResizeable = resizeable;
304 }
305
306 boolean isResizeable() {
307 return mResizeable;
308 }
309
Chong Zhang87b21722015-09-21 15:39:51 -0700310 boolean resizeLocked(Rect bounds, Configuration configuration, boolean forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700311 int boundsChanged = setBounds(bounds, configuration);
Chong Zhang87b21722015-09-21 15:39:51 -0700312 if (forced) {
Chong Zhang3005e752015-09-18 18:46:28 -0700313 boundsChanged |= BOUNDS_CHANGE_SIZE;
Chong Zhang3005e752015-09-18 18:46:28 -0700314 }
315 if (boundsChanged == BOUNDS_CHANGE_NONE) {
316 return false;
317 }
318 if ((boundsChanged & BOUNDS_CHANGE_SIZE) == BOUNDS_CHANGE_SIZE) {
319 resizeWindows();
Chong Zhangbd0d9372015-12-28 15:18:29 -0800320 } else {
321 moveWindows();
Chong Zhang3005e752015-09-18 18:46:28 -0700322 }
323 return true;
324 }
325
Jorim Jaggi0429f352015-12-22 16:29:16 +0100326 /**
327 * Prepares the task bounds to be frozen with the current size. See
328 * {@link AppWindowToken#freezeBounds}.
329 */
330 void prepareFreezingBounds() {
331 mPreparedFrozenBounds.set(mBounds);
332 }
333
Chong Zhangb15758a2015-11-17 12:12:03 -0800334 boolean scrollLocked(Rect bounds) {
335 // shift the task bound if it doesn't fully cover the stack area
336 mStack.getDimBounds(mTmpRect);
337 if (mService.mCurConfiguration.orientation == ORIENTATION_LANDSCAPE) {
338 if (bounds.left > mTmpRect.left) {
339 bounds.left = mTmpRect.left;
340 bounds.right = mTmpRect.left + mBounds.width();
341 } else if (bounds.right < mTmpRect.right) {
342 bounds.left = mTmpRect.right - mBounds.width();
343 bounds.right = mTmpRect.right;
344 }
345 } else {
346 if (bounds.top > mTmpRect.top) {
347 bounds.top = mTmpRect.top;
348 bounds.bottom = mTmpRect.top + mBounds.height();
349 } else if (bounds.bottom < mTmpRect.bottom) {
350 bounds.top = mTmpRect.bottom - mBounds.height();
351 bounds.bottom = mTmpRect.bottom;
352 }
353 }
354
355 if (bounds.equals(mBounds)) {
356 return false;
357 }
358 // Normal setBounds() does not allow non-null bounds for fullscreen apps.
359 // We only change bounds for the scrolling case without change it size,
360 // on resizing path we should still want the validation.
361 mBounds.set(bounds);
362 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
363 final ArrayList<WindowState> windows = mAppTokens.get(activityNdx).allAppWindows;
364 for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) {
365 final WindowState win = windows.get(winNdx);
366 win.mXOffset = bounds.left;
367 win.mYOffset = bounds.top;
368 }
369 }
370 return true;
371 }
372
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700373 /** Return true if the current bound can get outputted to the rest of the system as-is. */
374 private boolean useCurrentBounds() {
375 final DisplayContent displayContent = mStack.getDisplayContent();
376 if (mFullscreen
Wale Ogunwale3797c222015-10-27 14:21:58 -0700377 || !StackId.isTaskResizeableByDockedStack(mStack.mStackId)
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700378 || displayContent == null
379 || displayContent.getDockedStackLocked() != null) {
380 return true;
381 }
382 return false;
383 }
384
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800385 /** Original bounds of the task if applicable, otherwise fullscreen rect. */
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700386 public void getBounds(Rect out) {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700387 if (useCurrentBounds()) {
388 // No need to adjust the output bounds if fullscreen or the docked stack is visible
389 // since it is already what we want to represent to the rest of the system.
390 out.set(mBounds);
391 return;
392 }
393
394 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
395 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
396 // system.
397 mStack.getDisplayContent().getLogicalDisplayRect(out);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700398 }
399
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800400 /**
401 * Calculate the maximum visible area of this task. If the task has only one app,
402 * the result will be visible frame of that app. If the task has more than one apps,
403 * we search from top down if the next app got different visible area.
404 *
405 * This effort is to handle the case where some task (eg. GMail composer) might pop up
406 * a dialog that's different in size from the activity below, in which case we should
407 * be dimming the entire task area behind the dialog.
408 *
409 * @param out Rect containing the max visible bounds.
410 * @return true if the task has some visible app windows; false otherwise.
411 */
412 boolean getMaxVisibleBounds(Rect out) {
413 boolean foundTop = false;
414 for (int i = mAppTokens.size() - 1; i >= 0; i--) {
Chong Zhangd8ceb852015-11-11 14:53:41 -0800415 final AppWindowToken token = mAppTokens.get(i);
416 // skip hidden (or about to hide) apps
417 if (token.mIsExiting || token.clientHidden || token.hiddenRequested) {
418 continue;
419 }
420 final WindowState win = token.findMainWindow();
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800421 if (win == null) {
422 continue;
423 }
424 if (!foundTop) {
425 out.set(win.mVisibleFrame);
426 foundTop = true;
427 continue;
428 }
429 if (win.mVisibleFrame.left < out.left) {
430 out.left = win.mVisibleFrame.left;
431 }
432 if (win.mVisibleFrame.top < out.top) {
433 out.top = win.mVisibleFrame.top;
434 }
435 if (win.mVisibleFrame.right > out.right) {
436 out.right = win.mVisibleFrame.right;
437 }
438 if (win.mVisibleFrame.bottom > out.bottom) {
439 out.bottom = win.mVisibleFrame.bottom;
440 }
441 }
442 return foundTop;
443 }
444
445 /** Bounds of the task to be used for dimming, as well as touch related tests. */
446 @Override
447 public void getDimBounds(Rect out) {
448 if (useCurrentBounds()) {
449 if (inFreeformWorkspace() && getMaxVisibleBounds(out)) {
450 return;
451 }
452
453 out.set(mBounds);
454 return;
455 }
456
457 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
458 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
459 // system.
460 mStack.getDisplayContent().getLogicalDisplayRect(out);
461 }
462
Chong Zhang3005e752015-09-18 18:46:28 -0700463 void setDragResizing(boolean dragResizing) {
Chong Zhang3005e752015-09-18 18:46:28 -0700464 mDragResizing = dragResizing;
465 }
466
467 boolean isDragResizing() {
468 return mDragResizing;
469 }
470
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700471 void updateDisplayInfo(final DisplayContent displayContent) {
472 if (displayContent == null) {
473 return;
474 }
475 if (mFullscreen) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700476 setBounds(null, Configuration.EMPTY);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700477 return;
478 }
479 final int newRotation = displayContent.getDisplayInfo().rotation;
480 if (mRotation == newRotation) {
481 return;
482 }
483
484 // Device rotation changed. We don't want the task to move around on the screen when
485 // this happens, so update the task bounds so it stays in the same place.
Wale Ogunwale94744212015-09-21 19:01:47 -0700486 mTmpRect2.set(mBounds);
487 displayContent.rotateBounds(mRotation, newRotation, mTmpRect2);
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700488 if (setBounds(mTmpRect2, mOverrideConfig) != BOUNDS_CHANGE_NONE) {
489 // Post message to inform activity manager of the bounds change simulating
490 // a one-way call. We do this to prevent a deadlock between window manager
Filip Gruszczynski44bc4da2015-10-03 13:59:49 -0700491 // lock and activity manager lock been held. Only tasks within the freeform stack
492 // are resizeable independently of their stack resizing.
493 if (mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID) {
494 mService.mH.sendMessage(mService.mH.obtainMessage(
495 RESIZE_TASK, mTaskId, RESIZE_MODE_SYSTEM_SCREEN_ROTATION, mBounds));
496 }
Wale Ogunwale1ed0d892015-09-28 13:27:44 -0700497 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700498 }
499
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700500 void resizeWindows() {
501 final ArrayList<WindowState> resizingWindows = mService.mResizingWindows;
502 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
503 final ArrayList<WindowState> windows = mAppTokens.get(activityNdx).allAppWindows;
504 for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) {
505 final WindowState win = windows.get(winNdx);
506 if (!resizingWindows.contains(win)) {
Chong Zhangbd0d9372015-12-28 15:18:29 -0800507 if (DEBUG_RESIZE) Slog.d(TAG_WM, "resizeWindows: Resizing " + win);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700508 resizingWindows.add(win);
509 }
510 }
511 }
512 }
513
Chong Zhangbd0d9372015-12-28 15:18:29 -0800514 void moveWindows() {
515 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
516 final ArrayList<WindowState> windows = mAppTokens.get(activityNdx).allAppWindows;
517 for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) {
518 final WindowState win = windows.get(winNdx);
519 if (DEBUG_RESIZE) Slog.d(TAG_WM, "moveWindows: Moving " + win);
520 win.mMovedByResize = true;
521 }
522 }
523 }
524
Winsonc28098f2015-10-30 14:50:19 -0700525 /**
526 * Cancels any running app transitions associated with the task.
527 */
528 void cancelTaskWindowTransition() {
529 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
530 mAppTokens.get(activityNdx).mAppAnimator.clearAnimation();
531 }
532 }
533
Winson13d30662015-11-06 15:30:29 -0800534 /**
535 * Cancels any running thumbnail transitions associated with the task.
536 */
537 void cancelTaskThumbnailTransition() {
538 for (int activityNdx = mAppTokens.size() - 1; activityNdx >= 0; --activityNdx) {
539 mAppTokens.get(activityNdx).mAppAnimator.clearThumbnail();
540 }
541 }
542
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700543 boolean showForAllUsers() {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700544 final int tokensCount = mAppTokens.size();
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700545 return (tokensCount != 0) && mAppTokens.get(tokensCount - 1).showForAllUsers;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700546 }
547
Chong Zhangdb20b5f2015-10-23 14:01:43 -0700548 boolean inHomeStack() {
549 return mStack != null && mStack.mStackId == HOME_STACK_ID;
550 }
551
Chong Zhang09b21ef2015-09-14 10:20:21 -0700552 boolean inFreeformWorkspace() {
553 return mStack != null && mStack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
554 }
555
Filip Gruszczynski955b2fc2015-10-15 14:46:07 -0700556 boolean inDockedWorkspace() {
557 return mStack != null && mStack.mStackId == DOCKED_STACK_ID;
558 }
559
Chong Zhangb15758a2015-11-17 12:12:03 -0800560 boolean isResizeableByDockedStack() {
561 return mStack != null && getDisplayContent().getDockedStackLocked() != null &&
562 StackId.isTaskResizeableByDockedStack(mStack.mStackId);
563 }
564
565 /**
566 * Whether the task should be treated as if it's docked. Returns true if the task
567 * is currently in docked workspace, or it's side-by-side to a docked task.
568 */
569 boolean isDockedInEffect() {
570 return inDockedWorkspace() || isResizeableByDockedStack();
571 }
572
Chong Zhangd8ceb852015-11-11 14:53:41 -0800573 WindowState getTopVisibleAppMainWindow() {
574 final AppWindowToken token = getTopVisibleAppToken();
575 return token != null ? token.findMainWindow() : null;
Chong Zhang9184ec62015-09-24 12:32:21 -0700576 }
577
Chong Zhangd8ceb852015-11-11 14:53:41 -0800578 AppWindowToken getTopVisibleAppToken() {
579 for (int i = mAppTokens.size() - 1; i >= 0; i--) {
580 final AppWindowToken token = mAppTokens.get(i);
581 // skip hidden (or about to hide) apps
582 if (!token.mIsExiting && !token.clientHidden && !token.hiddenRequested) {
583 return token;
584 }
585 }
586 return null;
Chong Zhangbef461f2015-10-27 11:38:24 -0700587 }
588
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800589 @Override
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700590 public boolean isFullscreen() {
Wale Ogunwalef175e8a2015-09-29 11:07:06 -0700591 if (useCurrentBounds()) {
592 return mFullscreen;
593 }
594 // The bounds has been adjusted to accommodate for a docked stack, but the docked stack
595 // is not currently visible. Go ahead a represent it as fullscreen to the rest of the
596 // system.
597 return true;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700598 }
599
600 @Override
601 public DisplayInfo getDisplayInfo() {
602 return mStack.getDisplayContent().getDisplayInfo();
603 }
604
605 @Override
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800606 public String toString() {
Craig Mautner83162a92015-01-26 14:43:30 -0800607 return "{taskId=" + mTaskId + " appTokens=" + mAppTokens + " mdr=" + mDeferRemoval + "}";
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800608 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700609
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700610 @Override
611 public String toShortString() {
612 return "Task=" + mTaskId;
613 }
614
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700615 public void printTo(String prefix, PrintWriter pw) {
Wale Ogunwale56b88af2015-12-01 07:21:59 -0800616 pw.print(prefix); pw.print("taskId="); pw.println(mTaskId);
617 pw.print(prefix + prefix); pw.print("mFullscreen="); pw.println(mFullscreen);
618 pw.print(prefix + prefix); pw.print("mBounds="); pw.println(mBounds.toShortString());
619 pw.print(prefix + prefix); pw.print("mdr="); pw.println(mDeferRemoval);
620 pw.print(prefix + prefix); pw.print("appTokens="); pw.println(mAppTokens);
Jorim Jaggi0429f352015-12-22 16:29:16 +0100621 pw.print(prefix + prefix); pw.print("mTempInsetBounds="); pw.println(mTempInsetBounds);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700622 }
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800623}