blob: b88e581d5783d3ea95df49e82f765d59cf304a6c [file] [log] [blame]
Chong Zhang8e89b312015-09-09 15:09:30 -07001/*
2 * Copyright (C) 2015 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 Ogunwale65ebd952018-04-25 15:41:44 -070019import static android.app.ActivityTaskManager.RESIZE_MODE_USER;
20import static android.app.ActivityTaskManager.RESIZE_MODE_USER_FORCED;
Wale Ogunwalecad05a02015-09-25 10:41:44 -070021import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
Garfield Tan07544cd2018-09-12 16:16:54 -070022
23import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_FREEFORM;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080024import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
25import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TASK_POSITIONING;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080026import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
27import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -070028import static com.android.server.wm.WindowManagerService.dipToPixel;
Wale Ogunwale231b06e2015-09-16 12:03:09 -070029import static com.android.server.wm.WindowState.MINIMUM_VISIBLE_HEIGHT_IN_DP;
30import static com.android.server.wm.WindowState.MINIMUM_VISIBLE_WIDTH_IN_DP;
Chong Zhang8e89b312015-09-09 15:09:30 -070031
32import android.annotation.IntDef;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070033import android.app.IActivityTaskManager;
Chong Zhang8e89b312015-09-09 15:09:30 -070034import android.graphics.Point;
35import android.graphics.Rect;
Robert Carr0bcbe642018-10-11 19:07:43 -070036import android.os.Binder;
Chong Zhang8e89b312015-09-09 15:09:30 -070037import android.os.Looper;
38import android.os.Process;
39import android.os.RemoteException;
Wale Ogunwalecad05a02015-09-25 10:41:44 -070040import android.os.Trace;
Chong Zhang8e89b312015-09-09 15:09:30 -070041import android.util.DisplayMetrics;
42import android.util.Slog;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080043import android.view.BatchedInputEventReceiver;
Wale Ogunwale4f52bc62015-09-24 13:47:31 -070044import android.view.Choreographer;
Chong Zhang8e89b312015-09-09 15:09:30 -070045import android.view.Display;
46import android.view.InputChannel;
47import android.view.InputDevice;
48import android.view.InputEvent;
Chong Zhang8e89b312015-09-09 15:09:30 -070049import android.view.MotionEvent;
50import android.view.WindowManager;
51
skuhne@google.com322347b2016-12-02 12:54:03 -080052import com.android.internal.annotations.VisibleForTesting;
Robert Carr788f5742018-07-30 17:46:45 -070053import android.view.InputApplicationHandle;
54import android.view.InputWindowHandle;
55import com.android.server.wm.WindowManagerService.H;
Wale Ogunwale228d4042015-09-13 10:17:34 -070056
57import java.lang.annotation.Retention;
58import java.lang.annotation.RetentionPolicy;
59
Robert Carrf59b8dd2017-10-02 18:58:36 -070060class TaskPositioner {
skuhne@google.com322347b2016-12-02 12:54:03 -080061 private static final boolean DEBUG_ORIENTATION_VIOLATIONS = false;
Jorim Jaggibc5425c2016-03-01 13:51:16 +010062 private static final String TAG_LOCAL = "TaskPositioner";
63 private static final String TAG = TAG_WITH_CLASS_NAME ? TAG_LOCAL : TAG_WM;
Chong Zhang8e89b312015-09-09 15:09:30 -070064
Garfield Tan6caf1d8c2018-01-18 12:37:50 -080065 private static Factory sFactory;
66
Wale Ogunwale228d4042015-09-13 10:17:34 -070067 // The margin the pointer position has to be within the side of the screen to be
68 // considered at the side of the screen.
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -070069 static final int SIDE_MARGIN_DIP = 100;
Wale Ogunwale228d4042015-09-13 10:17:34 -070070
Chong Zhang8e89b312015-09-09 15:09:30 -070071 @IntDef(flag = true,
72 value = {
73 CTRL_NONE,
74 CTRL_LEFT,
75 CTRL_RIGHT,
76 CTRL_TOP,
77 CTRL_BOTTOM
78 })
79 @Retention(RetentionPolicy.SOURCE)
80 @interface CtrlType {}
81
82 private static final int CTRL_NONE = 0x0;
83 private static final int CTRL_LEFT = 0x1;
84 private static final int CTRL_RIGHT = 0x2;
85 private static final int CTRL_TOP = 0x4;
86 private static final int CTRL_BOTTOM = 0x8;
87
Filip Gruszczynski64b6b442016-01-18 13:20:58 -080088 public static final float RESIZING_HINT_ALPHA = 0.5f;
89
90 public static final int RESIZING_HINT_DURATION_MS = 0;
91
skuhne@google.com322347b2016-12-02 12:54:03 -080092 // The minimal aspect ratio which needs to be met to count as landscape (or 1/.. for portrait).
93 // Note: We do not use the 1.33 from the CDD here since the user is allowed to use what ever
94 // aspect he desires.
95 @VisibleForTesting
96 static final float MIN_ASPECT = 1.2f;
97
Chong Zhang8e89b312015-09-09 15:09:30 -070098 private final WindowManagerService mService;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070099 private final IActivityTaskManager mActivityManager;
Chong Zhang8e89b312015-09-09 15:09:30 -0700100 private WindowPositionerEventReceiver mInputEventReceiver;
Riddle Hsu654a6f92018-07-13 22:59:36 +0800101 private DisplayContent mDisplayContent;
Chong Zhang8e89b312015-09-09 15:09:30 -0700102 private final DisplayMetrics mDisplayMetrics = new DisplayMetrics();
Wale Ogunwale228d4042015-09-13 10:17:34 -0700103 private Rect mTmpRect = new Rect();
104 private int mSideMargin;
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700105 private int mMinVisibleWidth;
106 private int mMinVisibleHeight;
Chong Zhang8e89b312015-09-09 15:09:30 -0700107
Chong Zhang3005e752015-09-18 18:46:28 -0700108 private Task mTask;
Chong Zhang09b21ef2015-09-14 10:20:21 -0700109 private boolean mResizing;
skuhne@google.com322347b2016-12-02 12:54:03 -0800110 private boolean mPreserveOrientation;
111 private boolean mStartOrientationWasLandscape;
Chong Zhang8e89b312015-09-09 15:09:30 -0700112 private final Rect mWindowOriginalBounds = new Rect();
113 private final Rect mWindowDragBounds = new Rect();
skuhne@google.com322347b2016-12-02 12:54:03 -0800114 private final Point mMaxVisibleSize = new Point();
Chong Zhang8e89b312015-09-09 15:09:30 -0700115 private float mStartDragX;
116 private float mStartDragY;
117 @CtrlType
118 private int mCtrlType = CTRL_NONE;
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700119 private boolean mDragEnded = false;
Chong Zhang8e89b312015-09-09 15:09:30 -0700120
121 InputChannel mServerChannel;
122 InputChannel mClientChannel;
123 InputApplicationHandle mDragApplicationHandle;
124 InputWindowHandle mDragWindowHandle;
125
Wale Ogunwale4f52bc62015-09-24 13:47:31 -0700126 private final class WindowPositionerEventReceiver extends BatchedInputEventReceiver {
127 public WindowPositionerEventReceiver(
128 InputChannel inputChannel, Looper looper, Choreographer choreographer) {
129 super(inputChannel, looper, choreographer);
Chong Zhang8e89b312015-09-09 15:09:30 -0700130 }
131
132 @Override
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -0800133 public void onInputEvent(InputEvent event) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700134 if (!(event instanceof MotionEvent)
135 || (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) == 0) {
136 return;
137 }
138 final MotionEvent motionEvent = (MotionEvent) event;
139 boolean handled = false;
140
141 try {
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700142 if (mDragEnded) {
143 // The drag has ended but the clean-up message has not been processed by
144 // window manager. Drop events that occur after this until window manager
145 // has a chance to clean-up the input handle.
146 handled = true;
147 return;
148 }
149
Chong Zhang8e89b312015-09-09 15:09:30 -0700150 final float newX = motionEvent.getRawX();
151 final float newY = motionEvent.getRawY();
152
153 switch (motionEvent.getAction()) {
154 case MotionEvent.ACTION_DOWN: {
155 if (DEBUG_TASK_POSITIONING) {
156 Slog.w(TAG, "ACTION_DOWN @ {" + newX + ", " + newY + "}");
157 }
158 } break;
159
160 case MotionEvent.ACTION_MOVE: {
161 if (DEBUG_TASK_POSITIONING){
162 Slog.w(TAG, "ACTION_MOVE @ {" + newX + ", " + newY + "}");
163 }
Wale Ogunwaledb485de2018-10-29 09:47:07 -0700164 synchronized (mService.mGlobalLock) {
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700165 mDragEnded = notifyMoveLocked(newX, newY);
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800166 mTask.getDimBounds(mTmpRect);
Chong Zhang8e89b312015-09-09 15:09:30 -0700167 }
Wale Ogunwale04ad7b12015-10-02 12:43:27 -0700168 if (!mTmpRect.equals(mWindowDragBounds)) {
169 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER,
170 "wm.TaskPositioner.resizeTask");
171 try {
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900172 mActivityManager.resizeTask(
Wale Ogunwale04ad7b12015-10-02 12:43:27 -0700173 mTask.mTaskId, mWindowDragBounds, RESIZE_MODE_USER);
174 } catch (RemoteException e) {
175 }
176 Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
177 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700178 } break;
179
180 case MotionEvent.ACTION_UP: {
181 if (DEBUG_TASK_POSITIONING) {
182 Slog.w(TAG, "ACTION_UP @ {" + newX + ", " + newY + "}");
183 }
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700184 mDragEnded = true;
Chong Zhang8e89b312015-09-09 15:09:30 -0700185 } break;
186
187 case MotionEvent.ACTION_CANCEL: {
188 if (DEBUG_TASK_POSITIONING) {
189 Slog.w(TAG, "ACTION_CANCEL @ {" + newX + ", " + newY + "}");
190 }
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700191 mDragEnded = true;
Chong Zhang8e89b312015-09-09 15:09:30 -0700192 } break;
193 }
194
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700195 if (mDragEnded) {
Wale Ogunwale04ad7b12015-10-02 12:43:27 -0700196 final boolean wasResizing = mResizing;
Wale Ogunwaledb485de2018-10-29 09:47:07 -0700197 synchronized (mService.mGlobalLock) {
Chong Zhang3005e752015-09-18 18:46:28 -0700198 endDragLocked();
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700199 mTask.getDimBounds(mTmpRect);
Chong Zhang3005e752015-09-18 18:46:28 -0700200 }
Chong Zhang09b21ef2015-09-14 10:20:21 -0700201 try {
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700202 if (wasResizing && !mTmpRect.equals(mWindowDragBounds)) {
Chong Zhang3005e752015-09-18 18:46:28 -0700203 // We were using fullscreen surface during resizing. Request
204 // resizeTask() one last time to restore surface to window size.
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900205 mActivityManager.resizeTask(
Chong Zhang6de2ae82015-09-30 18:25:21 -0700206 mTask.mTaskId, mWindowDragBounds, RESIZE_MODE_USER_FORCED);
Chong Zhang3005e752015-09-18 18:46:28 -0700207 }
Chong Zhang09b21ef2015-09-14 10:20:21 -0700208 } catch(RemoteException e) {}
Chong Zhang3005e752015-09-18 18:46:28 -0700209
Chong Zhang8e89b312015-09-09 15:09:30 -0700210 // Post back to WM to handle clean-ups. We still need the input
211 // event handler for the last finishInputEvent()!
Daichi Hironoce2f97a2017-11-30 16:44:15 +0900212 mService.mTaskPositioningController.finishTaskPositioning();
Chong Zhang8e89b312015-09-09 15:09:30 -0700213 }
214 handled = true;
215 } catch (Exception e) {
216 Slog.e(TAG, "Exception caught by drag handleMotion", e);
217 } finally {
218 finishInputEvent(event, handled);
219 }
220 }
221 }
222
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900223 @VisibleForTesting
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700224 TaskPositioner(WindowManagerService service, IActivityTaskManager activityManager) {
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900225 mService = service;
226 mActivityManager = activityManager;
227 }
228
Garfield Tan6caf1d8c2018-01-18 12:37:50 -0800229 /** Use {@link #create(WindowManagerService)} instead **/
Chong Zhang8e89b312015-09-09 15:09:30 -0700230 TaskPositioner(WindowManagerService service) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700231 this(service, service.mActivityTaskManager);
Chong Zhang8e89b312015-09-09 15:09:30 -0700232 }
233
skuhne@google.com322347b2016-12-02 12:54:03 -0800234 @VisibleForTesting
235 Rect getWindowDragBounds() {
236 return mWindowDragBounds;
237 }
238
Chong Zhang8e89b312015-09-09 15:09:30 -0700239 /**
Garfield Tan07544cd2018-09-12 16:16:54 -0700240 * @param displayContent The Display that the window being dragged is on.
Chong Zhang8e89b312015-09-09 15:09:30 -0700241 */
Robert Carrb1579c82017-09-05 14:54:47 -0700242 void register(DisplayContent displayContent) {
243 final Display display = displayContent.getDisplay();
244
Chong Zhang8e89b312015-09-09 15:09:30 -0700245 if (DEBUG_TASK_POSITIONING) {
246 Slog.d(TAG, "Registering task positioner");
247 }
248
249 if (mClientChannel != null) {
250 Slog.e(TAG, "Task positioner already registered");
251 return;
252 }
253
Riddle Hsu654a6f92018-07-13 22:59:36 +0800254 mDisplayContent = displayContent;
255 display.getMetrics(mDisplayMetrics);
Chong Zhang8e89b312015-09-09 15:09:30 -0700256 final InputChannel[] channels = InputChannel.openInputChannelPair(TAG);
257 mServerChannel = channels[0];
258 mClientChannel = channels[1];
259 mService.mInputManager.registerInputChannel(mServerChannel, null);
260
Wale Ogunwale4f52bc62015-09-24 13:47:31 -0700261 mInputEventReceiver = new WindowPositionerEventReceiver(
Jorim Jaggied7993b2017-03-28 18:50:01 +0100262 mClientChannel, mService.mAnimationHandler.getLooper(),
263 mService.mAnimator.getChoreographer());
Chong Zhang8e89b312015-09-09 15:09:30 -0700264
Robert Carr0bcbe642018-10-11 19:07:43 -0700265 mDragApplicationHandle = new InputApplicationHandle(new Binder());
Chong Zhang8e89b312015-09-09 15:09:30 -0700266 mDragApplicationHandle.name = TAG;
267 mDragApplicationHandle.dispatchingTimeoutNanos =
268 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
269
Robert Carre0a353c2018-08-02 16:38:04 -0700270 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null,
Riddle Hsu654a6f92018-07-13 22:59:36 +0800271 display.getDisplayId());
Chong Zhang8e89b312015-09-09 15:09:30 -0700272 mDragWindowHandle.name = TAG;
Robert Carreadae822018-10-11 19:07:03 -0700273 mDragWindowHandle.token = mServerChannel.getToken();
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -0700274 mDragWindowHandle.layer = mService.getDragLayerLocked();
Chong Zhang8e89b312015-09-09 15:09:30 -0700275 mDragWindowHandle.layoutParamsFlags = 0;
276 mDragWindowHandle.layoutParamsType = WindowManager.LayoutParams.TYPE_DRAG;
277 mDragWindowHandle.dispatchingTimeoutNanos =
278 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
279 mDragWindowHandle.visible = true;
280 mDragWindowHandle.canReceiveKeys = false;
281 mDragWindowHandle.hasFocus = true;
282 mDragWindowHandle.hasWallpaper = false;
283 mDragWindowHandle.paused = false;
284 mDragWindowHandle.ownerPid = Process.myPid();
285 mDragWindowHandle.ownerUid = Process.myUid();
286 mDragWindowHandle.inputFeatures = 0;
287 mDragWindowHandle.scaleFactor = 1.0f;
288
289 // The drag window cannot receive new touches.
290 mDragWindowHandle.touchableRegion.setEmpty();
291
292 // The drag window covers the entire display
293 mDragWindowHandle.frameLeft = 0;
294 mDragWindowHandle.frameTop = 0;
295 final Point p = new Point();
Riddle Hsu654a6f92018-07-13 22:59:36 +0800296 display.getRealSize(p);
Chong Zhang8e89b312015-09-09 15:09:30 -0700297 mDragWindowHandle.frameRight = p.x;
298 mDragWindowHandle.frameBottom = p.y;
299
300 // Pause rotations before a drag.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800301 if (DEBUG_ORIENTATION) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700302 Slog.d(TAG, "Pausing rotation during re-position");
303 }
Riddle Hsu654a6f92018-07-13 22:59:36 +0800304 mDisplayContent.pauseRotationLocked();
Wale Ogunwale228d4042015-09-13 10:17:34 -0700305
Garfield Tan07544cd2018-09-12 16:16:54 -0700306 // Notify InputMonitor to take mDragWindowHandle.
307 mDisplayContent.getInputMonitor().updateInputWindowsLw(true /*force*/);
308
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -0700309 mSideMargin = dipToPixel(SIDE_MARGIN_DIP, mDisplayMetrics);
310 mMinVisibleWidth = dipToPixel(MINIMUM_VISIBLE_WIDTH_IN_DP, mDisplayMetrics);
311 mMinVisibleHeight = dipToPixel(MINIMUM_VISIBLE_HEIGHT_IN_DP, mDisplayMetrics);
Riddle Hsu654a6f92018-07-13 22:59:36 +0800312 display.getRealSize(mMaxVisibleSize);
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700313
314 mDragEnded = false;
Chong Zhang8e89b312015-09-09 15:09:30 -0700315 }
316
317 void unregister() {
318 if (DEBUG_TASK_POSITIONING) {
319 Slog.d(TAG, "Unregistering task positioner");
320 }
321
322 if (mClientChannel == null) {
323 Slog.e(TAG, "Task positioner not registered");
324 return;
325 }
326
327 mService.mInputManager.unregisterInputChannel(mServerChannel);
328
329 mInputEventReceiver.dispose();
330 mInputEventReceiver = null;
331 mClientChannel.dispose();
332 mServerChannel.dispose();
333 mClientChannel = null;
334 mServerChannel = null;
335
336 mDragWindowHandle = null;
337 mDragApplicationHandle = null;
Wale Ogunwale6a804b82015-09-23 21:04:21 -0700338 mDragEnded = true;
Wale Ogunwale228d4042015-09-13 10:17:34 -0700339
Garfield Tan07544cd2018-09-12 16:16:54 -0700340 // Notify InputMonitor to remove mDragWindowHandle.
341 mDisplayContent.getInputMonitor().updateInputWindowsLw(true /*force*/);
342
Chong Zhang8e89b312015-09-09 15:09:30 -0700343 // Resume rotations after a drag.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800344 if (DEBUG_ORIENTATION) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700345 Slog.d(TAG, "Resuming rotation after re-position");
346 }
Riddle Hsu654a6f92018-07-13 22:59:36 +0800347 mDisplayContent.resumeRotationLocked();
348 mDisplayContent = null;
Chong Zhang8e89b312015-09-09 15:09:30 -0700349 }
350
skuhne@google.com322347b2016-12-02 12:54:03 -0800351 void startDrag(WindowState win, boolean resize, boolean preserveOrientation, float startX,
352 float startY) {
Wale Ogunwale228d4042015-09-13 10:17:34 -0700353 if (DEBUG_TASK_POSITIONING) {
skuhne@google.com322347b2016-12-02 12:54:03 -0800354 Slog.d(TAG, "startDrag: win=" + win + ", resize=" + resize
355 + ", preserveOrientation=" + preserveOrientation + ", {" + startX + ", "
356 + startY + "}");
Chong Zhang8e89b312015-09-09 15:09:30 -0700357 }
Chong Zhangd8ceb852015-11-11 14:53:41 -0800358 mTask = win.getTask();
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700359 // Use the dim bounds, not the original task bounds. The cursor
360 // movement should be calculated relative to the visible bounds.
361 // Also, use the dim bounds of the task which accounts for
362 // multiple app windows. Don't use any bounds from win itself as it
363 // may not be the same size as the task.
364 mTask.getDimBounds(mTmpRect);
skuhne@google.com322347b2016-12-02 12:54:03 -0800365 startDrag(resize, preserveOrientation, startX, startY, mTmpRect);
366 }
367
Daichi Hirono43094a12018-05-31 12:32:23 +0900368 protected void startDrag(boolean resize, boolean preserveOrientation,
skuhne@google.com322347b2016-12-02 12:54:03 -0800369 float startX, float startY, Rect startBounds) {
370 mCtrlType = CTRL_NONE;
371 mStartDragX = startX;
372 mStartDragY = startY;
373 mPreserveOrientation = preserveOrientation;
Chong Zhangd8ceb852015-11-11 14:53:41 -0800374
Chong Zhang8e89b312015-09-09 15:09:30 -0700375 if (resize) {
skuhne@google.com322347b2016-12-02 12:54:03 -0800376 if (startX < startBounds.left) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700377 mCtrlType |= CTRL_LEFT;
378 }
skuhne@google.com322347b2016-12-02 12:54:03 -0800379 if (startX > startBounds.right) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700380 mCtrlType |= CTRL_RIGHT;
381 }
skuhne@google.com322347b2016-12-02 12:54:03 -0800382 if (startY < startBounds.top) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700383 mCtrlType |= CTRL_TOP;
384 }
skuhne@google.com322347b2016-12-02 12:54:03 -0800385 if (startY > startBounds.bottom) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700386 mCtrlType |= CTRL_BOTTOM;
387 }
skuhne@google.com322347b2016-12-02 12:54:03 -0800388 mResizing = mCtrlType != CTRL_NONE;
Chong Zhang8e89b312015-09-09 15:09:30 -0700389 }
390
skuhne@google.com322347b2016-12-02 12:54:03 -0800391 // In case of !isDockedInEffect we are using the union of all task bounds. These might be
392 // made up out of multiple windows which are only partially overlapping. When that happens,
393 // the orientation from the window of interest to the entire stack might diverge. However
394 // for now we treat them as the same.
395 mStartOrientationWasLandscape = startBounds.width() >= startBounds.height();
396 mWindowOriginalBounds.set(startBounds);
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700397
Tomasz Mikolajewski79e8d172017-11-21 11:21:42 +0900398 // Notify the app that resizing has started, even though we haven't received any new
399 // bounds yet. This will guarantee that the app starts the backdrop renderer before
400 // configuration changes which could cause an activity restart.
401 if (mResizing) {
Wale Ogunwaledb485de2018-10-29 09:47:07 -0700402 synchronized (mService.mGlobalLock) {
Tomasz Mikolajewski79e8d172017-11-21 11:21:42 +0900403 notifyMoveLocked(startX, startY);
404 }
405
406 // Perform the resize on the WMS handler thread when we don't have the WMS lock held
407 // to ensure that we don't deadlock WMS and AMS. Note that WindowPositionerEventReceiver
408 // callbacks are delivered on the same handler so this initial resize is always
409 // guaranteed to happen before subsequent drag resizes.
410 mService.mH.post(() -> {
411 try {
Daichi Hirono67f2f4b2018-05-25 16:07:30 +0900412 mActivityManager.resizeTask(
Tomasz Mikolajewski79e8d172017-11-21 11:21:42 +0900413 mTask.mTaskId, startBounds, RESIZE_MODE_USER_FORCED);
414 } catch (RemoteException e) {
415 }
416 });
417 }
418
Vladislav Kaznacheev824bc5d2016-04-22 17:48:35 -0700419 // Make sure we always have valid drag bounds even if the drag ends before any move events
420 // have been handled.
skuhne@google.com322347b2016-12-02 12:54:03 -0800421 mWindowDragBounds.set(startBounds);
Chong Zhang3005e752015-09-18 18:46:28 -0700422 }
423
424 private void endDragLocked() {
425 mResizing = false;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100426 mTask.setDragResizing(false, DRAG_RESIZE_MODE_FREEFORM);
Chong Zhang8e89b312015-09-09 15:09:30 -0700427 }
428
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700429 /** Returns true if the move operation should be ended. */
430 private boolean notifyMoveLocked(float x, float y) {
Chong Zhang8e89b312015-09-09 15:09:30 -0700431 if (DEBUG_TASK_POSITIONING) {
Chong Zhangb15758a2015-11-17 12:12:03 -0800432 Slog.d(TAG, "notifyMoveLocked: {" + x + "," + y + "}");
Chong Zhang8e89b312015-09-09 15:09:30 -0700433 }
434
435 if (mCtrlType != CTRL_NONE) {
skuhne@google.com322347b2016-12-02 12:54:03 -0800436 resizeDrag(x, y);
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100437 mTask.setDragResizing(true, DRAG_RESIZE_MODE_FREEFORM);
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700438 return false;
Chong Zhang8e89b312015-09-09 15:09:30 -0700439 }
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700440
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700441 // This is a moving or scrolling operation.
Chong Zhang4c9ba52a2015-11-10 18:36:33 -0800442 mTask.mStack.getDimBounds(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -0800443
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700444 int nX = (int) x;
445 int nY = (int) y;
Chong Zhangb15758a2015-11-17 12:12:03 -0800446 if (!mTmpRect.contains(nX, nY)) {
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700447 // For a moving operation we allow the pointer to go out of the stack bounds, but
448 // use the clamped pointer position for the drag bounds computation.
449 nX = Math.min(Math.max(nX, mTmpRect.left), mTmpRect.right);
450 nY = Math.min(Math.max(nY, mTmpRect.top), mTmpRect.bottom);
Chong Zhangb15758a2015-11-17 12:12:03 -0800451 }
452
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700453 updateWindowDragBounds(nX, nY, mTmpRect);
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700454 return false;
Chong Zhangb15758a2015-11-17 12:12:03 -0800455 }
456
skuhne@google.com322347b2016-12-02 12:54:03 -0800457 /**
458 * The user is drag - resizing the window.
459 *
460 * @param x The x coordinate of the current drag coordinate.
461 * @param y the y coordinate of the current drag coordinate.
462 */
463 @VisibleForTesting
464 void resizeDrag(float x, float y) {
465 // This is a resizing operation.
466 // We need to keep various constraints:
467 // 1. mMinVisible[Width/Height] <= [width/height] <= mMaxVisibleSize.[x/y]
468 // 2. The orientation is kept - if required.
469 final int deltaX = Math.round(x - mStartDragX);
470 final int deltaY = Math.round(y - mStartDragY);
471 int left = mWindowOriginalBounds.left;
472 int top = mWindowOriginalBounds.top;
473 int right = mWindowOriginalBounds.right;
474 int bottom = mWindowOriginalBounds.bottom;
475
476 // The aspect which we have to respect. Note that if the orientation does not need to be
477 // preserved the aspect will be calculated as 1.0 which neutralizes the following
478 // computations.
479 final float minAspect = !mPreserveOrientation
480 ? 1.0f
481 : (mStartOrientationWasLandscape ? MIN_ASPECT : (1.0f / MIN_ASPECT));
482 // Calculate the resulting width and height of the drag operation.
483 int width = right - left;
484 int height = bottom - top;
485 if ((mCtrlType & CTRL_LEFT) != 0) {
486 width = Math.max(mMinVisibleWidth, width - deltaX);
487 } else if ((mCtrlType & CTRL_RIGHT) != 0) {
488 width = Math.max(mMinVisibleWidth, width + deltaX);
489 }
490 if ((mCtrlType & CTRL_TOP) != 0) {
491 height = Math.max(mMinVisibleHeight, height - deltaY);
492 } else if ((mCtrlType & CTRL_BOTTOM) != 0) {
493 height = Math.max(mMinVisibleHeight, height + deltaY);
494 }
495
496 // If we have to preserve the orientation - check that we are doing so.
497 final float aspect = (float) width / (float) height;
498 if (mPreserveOrientation && ((mStartOrientationWasLandscape && aspect < MIN_ASPECT)
499 || (!mStartOrientationWasLandscape && aspect > (1.0 / MIN_ASPECT)))) {
500 // Calculate 2 rectangles fulfilling all requirements for either X or Y being the major
501 // drag axis. What ever is producing the bigger rectangle will be chosen.
502 int width1;
503 int width2;
504 int height1;
505 int height2;
506 if (mStartOrientationWasLandscape) {
507 // Assuming that the width is our target we calculate the height.
508 width1 = Math.max(mMinVisibleWidth, Math.min(mMaxVisibleSize.x, width));
509 height1 = Math.min(height, Math.round((float)width1 / MIN_ASPECT));
510 if (height1 < mMinVisibleHeight) {
511 // If the resulting height is too small we adjust to the minimal size.
512 height1 = mMinVisibleHeight;
513 width1 = Math.max(mMinVisibleWidth,
514 Math.min(mMaxVisibleSize.x, Math.round((float)height1 * MIN_ASPECT)));
515 }
516 // Assuming that the height is our target we calculate the width.
517 height2 = Math.max(mMinVisibleHeight, Math.min(mMaxVisibleSize.y, height));
518 width2 = Math.max(width, Math.round((float)height2 * MIN_ASPECT));
519 if (width2 < mMinVisibleWidth) {
520 // If the resulting width is too small we adjust to the minimal size.
521 width2 = mMinVisibleWidth;
522 height2 = Math.max(mMinVisibleHeight,
523 Math.min(mMaxVisibleSize.y, Math.round((float)width2 / MIN_ASPECT)));
524 }
525 } else {
526 // Assuming that the width is our target we calculate the height.
527 width1 = Math.max(mMinVisibleWidth, Math.min(mMaxVisibleSize.x, width));
528 height1 = Math.max(height, Math.round((float)width1 * MIN_ASPECT));
529 if (height1 < mMinVisibleHeight) {
530 // If the resulting height is too small we adjust to the minimal size.
531 height1 = mMinVisibleHeight;
532 width1 = Math.max(mMinVisibleWidth,
533 Math.min(mMaxVisibleSize.x, Math.round((float)height1 / MIN_ASPECT)));
534 }
535 // Assuming that the height is our target we calculate the width.
536 height2 = Math.max(mMinVisibleHeight, Math.min(mMaxVisibleSize.y, height));
537 width2 = Math.min(width, Math.round((float)height2 / MIN_ASPECT));
538 if (width2 < mMinVisibleWidth) {
539 // If the resulting width is too small we adjust to the minimal size.
540 width2 = mMinVisibleWidth;
541 height2 = Math.max(mMinVisibleHeight,
542 Math.min(mMaxVisibleSize.y, Math.round((float)width2 * MIN_ASPECT)));
543 }
544 }
545
546 // Use the bigger of the two rectangles if the major change was positive, otherwise
547 // do the opposite.
548 final boolean grows = width > (right - left) || height > (bottom - top);
549 if (grows == (width1 * height1 > width2 * height2)) {
550 width = width1;
551 height = height1;
552 } else {
553 width = width2;
554 height = height2;
555 }
556 }
557
558 // Update mWindowDragBounds to the new drag size.
559 updateDraggedBounds(left, top, right, bottom, width, height);
560 }
561
562 /**
563 * Given the old coordinates and the new width and height, update the mWindowDragBounds.
564 *
565 * @param left The original left bound before the user started dragging.
566 * @param top The original top bound before the user started dragging.
567 * @param right The original right bound before the user started dragging.
568 * @param bottom The original bottom bound before the user started dragging.
569 * @param newWidth The new dragged width.
570 * @param newHeight The new dragged height.
571 */
572 void updateDraggedBounds(int left, int top, int right, int bottom, int newWidth,
573 int newHeight) {
574 // Generate the final bounds by keeping the opposite drag edge constant.
575 if ((mCtrlType & CTRL_LEFT) != 0) {
576 left = right - newWidth;
577 } else { // Note: The right might have changed - if we pulled at the right or not.
578 right = left + newWidth;
579 }
580 if ((mCtrlType & CTRL_TOP) != 0) {
581 top = bottom - newHeight;
582 } else { // Note: The height might have changed - if we pulled at the bottom or not.
583 bottom = top + newHeight;
584 }
585
586 mWindowDragBounds.set(left, top, right, bottom);
587
588 checkBoundsForOrientationViolations(mWindowDragBounds);
589 }
590
591 /**
592 * Validate bounds against orientation violations (if DEBUG_ORIENTATION_VIOLATIONS is set).
593 *
594 * @param bounds The bounds to be checked.
595 */
596 private void checkBoundsForOrientationViolations(Rect bounds) {
597 // When using debug check that we are not violating the given constraints.
598 if (DEBUG_ORIENTATION_VIOLATIONS) {
599 if (mStartOrientationWasLandscape != (bounds.width() >= bounds.height())) {
600 Slog.e(TAG, "Orientation violation detected! should be "
601 + (mStartOrientationWasLandscape ? "landscape" : "portrait")
602 + " but is the other");
603 } else {
604 Slog.v(TAG, "new bounds size: " + bounds.width() + " x " + bounds.height());
605 }
606 if (mMinVisibleWidth > bounds.width() || mMinVisibleHeight > bounds.height()) {
607 Slog.v(TAG, "Minimum requirement violated: Width(min, is)=(" + mMinVisibleWidth
608 + ", " + bounds.width() + ") Height(min,is)=("
609 + mMinVisibleHeight + ", " + bounds.height() + ")");
610 }
611 if (mMaxVisibleSize.x < bounds.width() || mMaxVisibleSize.y < bounds.height()) {
612 Slog.v(TAG, "Maximum requirement violated: Width(min, is)=(" + mMaxVisibleSize.x
613 + ", " + bounds.width() + ") Height(min,is)=("
614 + mMaxVisibleSize.y + ", " + bounds.height() + ")");
615 }
616 }
617 }
618
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700619 private void updateWindowDragBounds(int x, int y, Rect stackBounds) {
620 final int offsetX = Math.round(x - mStartDragX);
621 final int offsetY = Math.round(y - mStartDragY);
Wale Ogunwaleb8051b82015-09-17 15:41:52 -0700622 mWindowDragBounds.set(mWindowOriginalBounds);
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700623 // Horizontally, at least mMinVisibleWidth pixels of the window should remain visible.
624 final int maxLeft = stackBounds.right - mMinVisibleWidth;
625 final int minLeft = stackBounds.left + mMinVisibleWidth - mWindowOriginalBounds.width();
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700626
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700627 // Vertically, the top mMinVisibleHeight of the window should remain visible.
628 // (This assumes that the window caption bar is at the top of the window).
629 final int minTop = stackBounds.top;
630 final int maxTop = stackBounds.bottom - mMinVisibleHeight;
Vladislav Kaznacheeva90a3b82016-04-27 14:54:53 -0700631
Chong Zhang2e2c81a2016-07-15 11:28:17 -0700632 mWindowDragBounds.offsetTo(
633 Math.min(Math.max(mWindowOriginalBounds.left + offsetX, minLeft), maxLeft),
634 Math.min(Math.max(mWindowOriginalBounds.top + offsetY, minTop), maxTop));
635
Chong Zhangb15758a2015-11-17 12:12:03 -0800636 if (DEBUG_TASK_POSITIONING) Slog.d(TAG,
637 "updateWindowDragBounds: " + mWindowDragBounds);
Chong Zhang8e89b312015-09-09 15:09:30 -0700638 }
639
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700640 public String toShortString() {
641 return TAG;
642 }
Garfield Tan6caf1d8c2018-01-18 12:37:50 -0800643
644 static void setFactory(Factory factory) {
645 sFactory = factory;
646 }
647
648 static TaskPositioner create(WindowManagerService service) {
649 if (sFactory == null) {
650 sFactory = new Factory() {};
651 }
652
653 return sFactory.create(service);
654 }
655
656 interface Factory {
657 default TaskPositioner create(WindowManagerService service) {
658 return new TaskPositioner(service);
659 }
660 }
Wale Ogunwale228d4042015-09-13 10:17:34 -0700661}