blob: 65f8cdf3acc06e080b0dfe16a21fc7ed8a725e31 [file] [log] [blame]
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08001/*
2 * Copyright (C) 2016 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 Jaggi829b9cd2017-01-23 16:20:53 +010019import android.app.ActivityManager.TaskDescription;
Jorim Jaggie2c77f92016-12-29 14:57:22 +010020import android.app.ActivityManager.TaskSnapshot;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080021import android.content.res.Configuration;
22import android.graphics.Rect;
Jorim Jaggifb9d78a2017-01-05 18:57:12 +010023import android.os.Handler;
24import android.os.Looper;
25import android.os.Message;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080026import android.util.EventLog;
27import android.util.Slog;
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080028import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080029
Wale Ogunwale1666e312016-12-16 11:27:18 -080030import java.lang.ref.WeakReference;
31
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080032import static com.android.server.EventLogTags.WM_TASK_CREATED;
33import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_DOCKED_DIVIDER;
34import static com.android.server.wm.WindowContainer.POSITION_BOTTOM;
35import static com.android.server.wm.WindowContainer.POSITION_TOP;
36import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
37import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
38
39/**
40 * Controller for the task container. This is created by activity manager to link task records to
41 * the task container they use in window manager.
42 *
43 * Test class: {@link TaskWindowContainerControllerTests}
44 */
45public class TaskWindowContainerController
Jorim Jaggifb9d78a2017-01-05 18:57:12 +010046 extends WindowContainerController<Task, TaskWindowContainerListener> {
47
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080048 private final int mTaskId;
Wale Ogunwale1666e312016-12-16 11:27:18 -080049 private final H mHandler;
Jorim Jaggifb9d78a2017-01-05 18:57:12 +010050
51 public TaskWindowContainerController(int taskId, TaskWindowContainerListener listener,
Wale Ogunwale034a8ec2017-09-02 17:14:40 -070052 StackWindowController stackController, int userId, Rect bounds, int resizeMode,
53 boolean supportsPictureInPicture, boolean toTop, boolean showForAllUsers,
54 TaskDescription taskDescription) {
55 this(taskId, listener, stackController, userId, bounds, resizeMode,
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070056 supportsPictureInPicture, toTop, showForAllUsers, taskDescription,
Wale Ogunwale069bbd32017-02-03 07:58:14 -080057 WindowManagerService.getInstance());
Wale Ogunwale1666e312016-12-16 11:27:18 -080058 }
59
60 public TaskWindowContainerController(int taskId, TaskWindowContainerListener listener,
Wale Ogunwale034a8ec2017-09-02 17:14:40 -070061 StackWindowController stackController, int userId, Rect bounds, int resizeMode,
62 boolean supportsPictureInPicture, boolean toTop, boolean showForAllUsers,
63 TaskDescription taskDescription, WindowManagerService service) {
Wale Ogunwale1666e312016-12-16 11:27:18 -080064 super(listener, service);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080065 mTaskId = taskId;
Wale Ogunwale1666e312016-12-16 11:27:18 -080066 mHandler = new H(new WeakReference<>(this), service.mH.getLooper());
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080067
68 synchronized(mWindowMap) {
69 if (DEBUG_STACK) Slog.i(TAG_WM, "TaskWindowContainerController: taskId=" + taskId
Wale Ogunwale1666e312016-12-16 11:27:18 -080070 + " stack=" + stackController + " bounds=" + bounds);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080071
Wale Ogunwale1666e312016-12-16 11:27:18 -080072 final TaskStack stack = stackController.mContainer;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080073 if (stack == null) {
Wale Ogunwale1666e312016-12-16 11:27:18 -080074 throw new IllegalArgumentException("TaskWindowContainerController: invalid stack="
75 + stackController);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080076 }
Wale Ogunwale1666e312016-12-16 11:27:18 -080077 EventLog.writeEvent(WM_TASK_CREATED, taskId, stack.mStackId);
Wale Ogunwale034a8ec2017-09-02 17:14:40 -070078 final Task task = createTask(taskId, stack, userId, bounds, resizeMode,
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070079 supportsPictureInPicture, taskDescription);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080080 final int position = toTop ? POSITION_TOP : POSITION_BOTTOM;
Wale Ogunwale1f5b92f2017-07-18 06:33:01 -070081 // We only want to move the parents to the parents if we are creating this task at the
82 // top of its stack.
83 stack.addTask(task, position, showForAllUsers, toTop /* moveParents */);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080084 }
85 }
86
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080087 @VisibleForTesting
Wale Ogunwale034a8ec2017-09-02 17:14:40 -070088 Task createTask(int taskId, TaskStack stack, int userId, Rect bounds, int resizeMode,
89 boolean supportsPictureInPicture, TaskDescription taskDescription) {
90 return new Task(taskId, stack, userId, mService, bounds, resizeMode,
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070091 supportsPictureInPicture, taskDescription, this);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080092 }
93
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080094 @Override
95 public void removeContainer() {
96 synchronized(mWindowMap) {
97 if (mContainer == null) {
98 if (DEBUG_STACK) Slog.i(TAG_WM, "removeTask: could not find taskId=" + mTaskId);
99 return;
100 }
101 mContainer.removeIfPossible();
102 super.removeContainer();
103 }
104 }
105
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800106 public void positionChildAt(AppWindowContainerController childController, int position) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800107 synchronized(mService.mWindowMap) {
108 final AppWindowToken aToken = childController.mContainer;
109 if (aToken == null) {
110 Slog.w(TAG_WM,
111 "Attempted to position of non-existing app : " + childController);
112 return;
113 }
114
115 final Task task = mContainer;
116 if (task == null) {
117 throw new IllegalArgumentException("positionChildAt: invalid task=" + this);
118 }
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800119 task.positionChildAt(position, aToken, false /* includeParents */);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800120 }
121 }
122
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700123 public void reparent(StackWindowController stackController, int position, boolean moveParents) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800124 synchronized (mWindowMap) {
125 if (DEBUG_STACK) Slog.i(TAG_WM, "reparent: moving taskId=" + mTaskId
Wale Ogunwale1666e312016-12-16 11:27:18 -0800126 + " to stack=" + stackController + " at " + position);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800127 if (mContainer == null) {
128 if (DEBUG_STACK) Slog.i(TAG_WM,
129 "reparent: could not find taskId=" + mTaskId);
130 return;
131 }
Wale Ogunwale1666e312016-12-16 11:27:18 -0800132 final TaskStack stack = stackController.mContainer;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800133 if (stack == null) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800134 throw new IllegalArgumentException("reparent: could not find stack="
135 + stackController);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800136 }
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700137 mContainer.reparent(stack, position, moveParents);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800138 mContainer.getDisplayContent().layoutAndAssignWindowLayersIfNeeded();
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800139 }
140 }
141
142 public void setResizeable(int resizeMode) {
143 synchronized (mWindowMap) {
144 if (mContainer != null) {
145 mContainer.setResizeable(resizeMode);
146 }
147 }
148 }
149
150 public void resize(Rect bounds, Configuration overrideConfig, boolean relayout,
151 boolean forced) {
152 synchronized (mWindowMap) {
153 if (mContainer == null) {
154 throw new IllegalArgumentException("resizeTask: taskId " + mTaskId + " not found.");
155 }
156
157 if (mContainer.resizeLocked(bounds, overrideConfig, forced) && relayout) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800158 mContainer.getDisplayContent().layoutAndAssignWindowLayersIfNeeded();
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800159 }
160 }
161 }
162
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800163 public void getBounds(Rect bounds) {
164 synchronized (mWindowMap) {
165 if (mContainer != null) {
166 mContainer.getBounds(bounds);
167 return;
168 }
169 bounds.setEmpty();
170 }
171 }
172
173 /**
174 * Puts this task into docked drag resizing mode. See {@link DragResizeMode}.
175 *
176 * @param resizing Whether to put the task into drag resize mode.
177 */
178 public void setTaskDockedResizing(boolean resizing) {
179 synchronized (mWindowMap) {
180 if (mContainer == null) {
181 Slog.w(TAG_WM, "setTaskDockedResizing: taskId " + mTaskId + " not found.");
182 return;
183 }
184 mContainer.setDragResizing(resizing, DRAG_RESIZE_MODE_DOCKED_DIVIDER);
185 }
186 }
187
188 public void cancelWindowTransition() {
189 synchronized (mWindowMap) {
190 if (mContainer == null) {
191 Slog.w(TAG_WM, "cancelWindowTransition: taskId " + mTaskId + " not found.");
192 return;
193 }
194 mContainer.cancelTaskWindowTransition();
195 }
196 }
197
198 public void cancelThumbnailTransition() {
199 synchronized (mWindowMap) {
200 if (mContainer == null) {
201 Slog.w(TAG_WM, "cancelThumbnailTransition: taskId " + mTaskId + " not found.");
202 return;
203 }
204 mContainer.cancelTaskThumbnailTransition();
205 }
206 }
207
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100208 public void setTaskDescription(TaskDescription taskDescription) {
209 synchronized (mWindowMap) {
210 if (mContainer == null) {
211 Slog.w(TAG_WM, "setTaskDescription: taskId " + mTaskId + " not found.");
212 return;
213 }
214 mContainer.setTaskDescription(taskDescription);
215 }
216 }
217
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100218 void reportSnapshotChanged(TaskSnapshot snapshot) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800219 mHandler.obtainMessage(H.REPORT_SNAPSHOT_CHANGED, snapshot).sendToTarget();
220 }
221
222 void requestResize(Rect bounds, int resizeMode) {
223 mHandler.obtainMessage(H.REQUEST_RESIZE, resizeMode, 0, bounds).sendToTarget();
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100224 }
225
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800226 @Override
227 public String toString() {
228 return "{TaskWindowContainerController taskId=" + mTaskId + "}";
229 }
Wale Ogunwale1666e312016-12-16 11:27:18 -0800230
231 private static final class H extends Handler {
232
233 static final int REPORT_SNAPSHOT_CHANGED = 0;
234 static final int REQUEST_RESIZE = 1;
235
236 private final WeakReference<TaskWindowContainerController> mController;
237
238 H(WeakReference<TaskWindowContainerController> controller, Looper looper) {
239 super(looper);
240 mController = controller;
241 }
242
243 @Override
244 public void handleMessage(Message msg) {
245 final TaskWindowContainerController controller = mController.get();
246 final TaskWindowContainerListener listener = (controller != null)
247 ? controller.mListener : null;
248 if (listener == null) {
249 return;
250 }
251 switch (msg.what) {
252 case REPORT_SNAPSHOT_CHANGED:
253 listener.onSnapshotChanged((TaskSnapshot) msg.obj);
254 break;
255 case REQUEST_RESIZE:
256 listener.requestResize((Rect) msg.obj, msg.arg1);
257 break;
258 }
259 }
260 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800261}