blob: d041c111a888415ea1365ab0f096f581c9120eba [file] [log] [blame]
Dianne Hackbornf56e1022011-02-22 10:47:13 -08001/*
2 * Copyright (C) 2010 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.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080015 */
Dianne Hackbornf56e1022011-02-22 10:47:13 -080016
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080017package com.android.server.wm;
18
Wale Ogunwale6213caa2016-12-02 16:47:15 +000019import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Andrii Kulian5406e7a2016-10-21 11:55:23 -070020import static android.view.Display.DEFAULT_DISPLAY;
Wale Ogunwale6213caa2016-12-02 16:47:15 +000021import static android.view.WindowManager.INPUT_CONSUMER_NAVIGATION;
Winson41275482016-10-10 15:17:45 -070022import static android.view.WindowManager.INPUT_CONSUMER_PIP;
23import static android.view.WindowManager.INPUT_CONSUMER_WALLPAPER;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070024import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
Wale Ogunwale6213caa2016-12-02 16:47:15 +000025import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS;
26import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
Wale Ogunwale5cd907d2017-01-26 14:14:08 -080027import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY;
Wale Ogunwale6213caa2016-12-02 16:47:15 +000028import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080029import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_DRAG;
30import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
31import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_INPUT;
32import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TASK_POSITIONING;
33import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -070034
Sudheer Shankadc589ac2016-11-10 15:30:17 -080035import android.app.ActivityManager;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080036import android.graphics.Rect;
Wale Ogunwalee89eeac2016-03-12 11:07:58 -080037import android.os.Debug;
Winson41275482016-10-10 15:17:45 -070038import android.os.Looper;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080039import android.os.RemoteException;
Winson41275482016-10-10 15:17:45 -070040import android.util.ArrayMap;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080041import android.util.Log;
42import android.util.Slog;
Jeff Browncc4f7db2011-08-30 20:34:48 -070043import android.view.InputChannel;
Winson41275482016-10-10 15:17:45 -070044import android.view.InputEventReceiver;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080045import android.view.KeyEvent;
46import android.view.WindowManager;
47
Winson41275482016-10-10 15:17:45 -070048import android.view.WindowManagerPolicy;
Wale Ogunwale1e129a42016-11-21 13:03:47 -080049
Selim Cinekf83e8242015-05-19 18:08:14 -070050import com.android.server.input.InputApplicationHandle;
51import com.android.server.input.InputManagerService;
52import com.android.server.input.InputWindowHandle;
53
Wale Ogunwalee89eeac2016-03-12 11:07:58 -080054import java.io.PrintWriter;
Jeff Brown9302c872011-07-13 22:51:29 -070055import java.util.Arrays;
Winson Chung853c99a2017-03-21 22:16:42 -070056import java.util.Set;
Wale Ogunwale1e129a42016-11-21 13:03:47 -080057import java.util.function.Consumer;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080058
Jeff Browna9d131c2012-09-20 16:48:17 -070059final class InputMonitor implements InputManagerService.WindowManagerCallbacks {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080060 private final WindowManagerService mService;
Selim Cinekf83e8242015-05-19 18:08:14 -070061
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080062 // Current window with input focus for keys and other non-touch events. May be null.
63 private WindowState mInputFocus;
Selim Cinekf83e8242015-05-19 18:08:14 -070064
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080065 // When true, prevents input dispatch from proceeding until set to false again.
66 private boolean mInputDispatchFrozen;
Selim Cinekf83e8242015-05-19 18:08:14 -070067
Wale Ogunwalee89eeac2016-03-12 11:07:58 -080068 // The reason the input is currently frozen or null if the input isn't frozen.
69 private String mInputFreezeReason = null;
70
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080071 // When true, input dispatch proceeds normally. Otherwise all events are dropped.
Jeff Brownc042ee22012-05-08 13:03:42 -070072 // Initially false, so that input does not get dispatched until boot is finished at
73 // which point the ActivityManager will enable dispatching.
74 private boolean mInputDispatchEnabled;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080075
76 // When true, need to call updateInputWindowsLw().
77 private boolean mUpdateInputWindowsNeeded = true;
78
Jeff Brown9302c872011-07-13 22:51:29 -070079 // Array of window handles to provide to the input dispatcher.
80 private InputWindowHandle[] mInputWindowHandles;
81 private int mInputWindowHandleCount;
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -080082 private InputWindowHandle mFocusedInputWindowHandle;
83
Wale Ogunwale6213caa2016-12-02 16:47:15 +000084 private boolean mAddInputConsumerHandle;
85 private boolean mAddPipInputConsumerHandle;
86 private boolean mAddWallpaperInputConsumerHandle;
87 private boolean mDisableWallpaperTouchEvents;
Wale Ogunwale1e129a42016-11-21 13:03:47 -080088 private final Rect mTmpRect = new Rect();
89 private final UpdateInputForAllWindowsConsumer mUpdateInputForAllWindowsConsumer =
90 new UpdateInputForAllWindowsConsumer();
Jeff Brown9302c872011-07-13 22:51:29 -070091
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080092 // Set to true when the first input device configuration change notification
93 // is received to indicate that the input devices are ready.
94 private final Object mInputDevicesReadyMonitor = new Object();
95 private boolean mInputDevicesReady;
96
Winson41275482016-10-10 15:17:45 -070097 /**
98 * The set of input consumer added to the window manager by name, which consumes input events
99 * for the windows below it.
100 */
101 private final ArrayMap<String, InputConsumerImpl> mInputConsumers = new ArrayMap();
102
103 private static final class EventReceiverInputConsumer extends InputConsumerImpl
104 implements WindowManagerPolicy.InputConsumer {
105 private InputMonitor mInputMonitor;
106 private final InputEventReceiver mInputEventReceiver;
107
108 EventReceiverInputConsumer(WindowManagerService service, InputMonitor monitor,
109 Looper looper, String name,
110 InputEventReceiver.Factory inputEventReceiverFactory) {
111 super(service, name, null);
112 mInputMonitor = monitor;
113 mInputEventReceiver = inputEventReceiverFactory.createInputEventReceiver(
114 mClientChannel, looper);
115 }
116
117 @Override
118 public void dismiss() {
119 synchronized (mService.mWindowMap) {
120 if (mInputMonitor.destroyInputConsumer(mWindowHandle.name)) {
121 mInputEventReceiver.dispose();
122 }
123 }
124 }
125 }
126
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800127 public InputMonitor(WindowManagerService service) {
128 mService = service;
129 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700130
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700131 private void addInputConsumer(String name, InputConsumerImpl consumer) {
Winson41275482016-10-10 15:17:45 -0700132 mInputConsumers.put(name, consumer);
133 updateInputWindowsLw(true /* force */);
134 }
135
136 boolean destroyInputConsumer(String name) {
137 if (disposeInputConsumer(mInputConsumers.remove(name))) {
138 updateInputWindowsLw(true /* force */);
139 return true;
140 }
141 return false;
142 }
143
144 private boolean disposeInputConsumer(InputConsumerImpl consumer) {
145 if (consumer != null) {
146 consumer.disposeChannelsLw();
147 return true;
148 }
149 return false;
150 }
151
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700152 InputConsumerImpl getInputConsumer(String name, int displayId) {
153 // TODO(multi-display): Allow input consumers on non-default displays?
154 return (displayId == DEFAULT_DISPLAY) ? mInputConsumers.get(name) : null;
Winson41275482016-10-10 15:17:45 -0700155 }
156
157 void layoutInputConsumers(int dw, int dh) {
158 for (int i = mInputConsumers.size() - 1; i >= 0; i--) {
159 mInputConsumers.valueAt(i).layout(dw, dh);
160 }
161 }
162
163 WindowManagerPolicy.InputConsumer createInputConsumer(Looper looper, String name,
164 InputEventReceiver.Factory inputEventReceiverFactory) {
165 if (mInputConsumers.containsKey(name)) {
166 throw new IllegalStateException("Existing input consumer found with name: " + name);
167 }
168
169 final EventReceiverInputConsumer consumer = new EventReceiverInputConsumer(mService,
170 this, looper, name, inputEventReceiverFactory);
171 addInputConsumer(name, consumer);
172 return consumer;
173 }
174
175 void createInputConsumer(String name, InputChannel inputChannel) {
176 if (mInputConsumers.containsKey(name)) {
177 throw new IllegalStateException("Existing input consumer found with name: " + name);
178 }
179
180 final InputConsumerImpl consumer = new InputConsumerImpl(mService, name, inputChannel);
181 switch (name) {
182 case INPUT_CONSUMER_WALLPAPER:
183 consumer.mWindowHandle.hasWallpaper = true;
184 break;
185 case INPUT_CONSUMER_PIP:
186 // The touchable region of the Pip input window is cropped to the bounds of the
187 // stack, and we need FLAG_NOT_TOUCH_MODAL to ensure other events fall through
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700188 consumer.mWindowHandle.layoutParamsFlags |= FLAG_NOT_TOUCH_MODAL;
Winson41275482016-10-10 15:17:45 -0700189 break;
190 }
191 addInputConsumer(name, consumer);
192 }
193
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800194 /* Notifies the window manager about a broken input channel.
Chong Zhang8e89b312015-09-09 15:09:30 -0700195 *
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800196 * Called by the InputManager.
197 */
Craig Mautner4cd0c13f2013-04-16 15:55:52 -0700198 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800199 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) {
200 if (inputWindowHandle == null) {
201 return;
202 }
203
204 synchronized (mService.mWindowMap) {
205 WindowState windowState = (WindowState) inputWindowHandle.windowState;
Jeff Brown9302c872011-07-13 22:51:29 -0700206 if (windowState != null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800207 Slog.i(TAG_WM, "WINDOW DIED " + windowState);
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700208 windowState.removeIfPossible();
Jeff Brown9302c872011-07-13 22:51:29 -0700209 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800210 }
211 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700212
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800213 /* Notifies the window manager about an application that is not responding.
214 * Returns a new timeout to continue waiting in nanoseconds, or 0 to abort dispatch.
Chong Zhang8e89b312015-09-09 15:09:30 -0700215 *
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800216 * Called by the InputManager.
217 */
Craig Mautner4cd0c13f2013-04-16 15:55:52 -0700218 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800219 public long notifyANR(InputApplicationHandle inputApplicationHandle,
Jeff Brownbd181bb2013-09-10 16:44:24 -0700220 InputWindowHandle inputWindowHandle, String reason) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800221 AppWindowToken appWindowToken = null;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700222 WindowState windowState = null;
223 boolean aboveSystem = false;
Jeff Brownee172412012-06-18 12:58:03 -0700224 synchronized (mService.mWindowMap) {
Jeff Brownee172412012-06-18 12:58:03 -0700225 if (inputWindowHandle != null) {
226 windowState = (WindowState) inputWindowHandle.windowState;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800227 if (windowState != null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800228 appWindowToken = windowState.mAppToken;
229 }
230 }
Jeff Brownee172412012-06-18 12:58:03 -0700231 if (appWindowToken == null && inputApplicationHandle != null) {
232 appWindowToken = (AppWindowToken)inputApplicationHandle.appWindowToken;
Jeff Brown9302c872011-07-13 22:51:29 -0700233 }
Jeff Brownee172412012-06-18 12:58:03 -0700234
235 if (windowState != null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800236 Slog.i(TAG_WM, "Input event dispatching timed out "
Jeff Brownbd181bb2013-09-10 16:44:24 -0700237 + "sending to " + windowState.mAttrs.getTitle()
238 + ". Reason: " + reason);
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700239 // Figure out whether this window is layered above system windows.
240 // We need to do this here to help the activity manager know how to
241 // layer its ANR dialog.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800242 int systemAlertLayer = mService.mPolicy.getWindowLayerFromTypeLw(
243 TYPE_APPLICATION_OVERLAY, windowState.mOwnerCanAddInternalSystemWindow);
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700244 aboveSystem = windowState.mBaseLayer > systemAlertLayer;
Jeff Brownee172412012-06-18 12:58:03 -0700245 } else if (appWindowToken != null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800246 Slog.i(TAG_WM, "Input event dispatching timed out "
Jeff Brownbd181bb2013-09-10 16:44:24 -0700247 + "sending to application " + appWindowToken.stringName
248 + ". Reason: " + reason);
Jeff Brownee172412012-06-18 12:58:03 -0700249 } else {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800250 Slog.i(TAG_WM, "Input event dispatching timed out "
Jeff Brownbd181bb2013-09-10 16:44:24 -0700251 + ". Reason: " + reason);
Jeff Brownee172412012-06-18 12:58:03 -0700252 }
253
Jeff Brownbd181bb2013-09-10 16:44:24 -0700254 mService.saveANRStateLocked(appWindowToken, windowState, reason);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800255 }
256
257 if (appWindowToken != null && appWindowToken.appToken != null) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800258 // Notify the activity manager about the timeout and let it decide whether
259 // to abort dispatching or keep waiting.
260 final AppWindowContainerController controller = appWindowToken.getController();
261 final boolean abort = controller != null && controller.keyDispatchingTimedOut(reason);
262 if (!abort) {
263 // The activity manager declined to abort dispatching.
264 // Wait a bit longer and timeout again later.
265 return appWindowToken.mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800266 }
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700267 } else if (windowState != null) {
268 try {
269 // Notify the activity manager about the timeout and let it decide whether
270 // to abort dispatching or keep waiting.
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800271 long timeout = ActivityManager.getService().inputDispatchingTimedOut(
Jeff Brownbd181bb2013-09-10 16:44:24 -0700272 windowState.mSession.mPid, aboveSystem, reason);
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700273 if (timeout >= 0) {
274 // The activity manager declined to abort dispatching.
275 // Wait a bit longer and timeout again later.
baik.handef340d2015-04-15 10:21:05 +0900276 return timeout * 1000000L; // nanoseconds
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700277 }
278 } catch (RemoteException ex) {
279 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800280 }
281 return 0; // abort dispatching
282 }
283
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700284 void addInputWindowHandle(final InputWindowHandle windowHandle) {
Jeff Brown9302c872011-07-13 22:51:29 -0700285 if (mInputWindowHandles == null) {
286 mInputWindowHandles = new InputWindowHandle[16];
287 }
288 if (mInputWindowHandleCount >= mInputWindowHandles.length) {
289 mInputWindowHandles = Arrays.copyOf(mInputWindowHandles,
290 mInputWindowHandleCount * 2);
291 }
292 mInputWindowHandles[mInputWindowHandleCount++] = windowHandle;
293 }
294
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700295 void addInputWindowHandle(final InputWindowHandle inputWindowHandle,
Craig Mautnerc08eab82014-11-11 09:03:59 -0800296 final WindowState child, int flags, final int type, final boolean isVisible,
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800297 final boolean hasFocus, final boolean hasWallpaper) {
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700298 // Add a window to our list of input windows.
299 inputWindowHandle.name = child.toString();
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800300 flags = child.getTouchableRegion(inputWindowHandle.touchableRegion, flags);
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700301 inputWindowHandle.layoutParamsFlags = flags;
302 inputWindowHandle.layoutParamsType = type;
303 inputWindowHandle.dispatchingTimeoutNanos = child.getInputDispatchingTimeoutNanos();
304 inputWindowHandle.visible = isVisible;
305 inputWindowHandle.canReceiveKeys = child.canReceiveKeys();
306 inputWindowHandle.hasFocus = hasFocus;
307 inputWindowHandle.hasWallpaper = hasWallpaper;
308 inputWindowHandle.paused = child.mAppToken != null ? child.mAppToken.paused : false;
309 inputWindowHandle.layer = child.mLayer;
310 inputWindowHandle.ownerPid = child.mSession.mPid;
311 inputWindowHandle.ownerUid = child.mSession.mUid;
312 inputWindowHandle.inputFeatures = child.mAttrs.inputFeatures;
313
314 final Rect frame = child.mFrame;
315 inputWindowHandle.frameLeft = frame.left;
316 inputWindowHandle.frameTop = frame.top;
317 inputWindowHandle.frameRight = frame.right;
318 inputWindowHandle.frameBottom = frame.bottom;
319
320 if (child.mGlobalScale != 1) {
321 // If we are scaling the window, input coordinates need
322 // to be inversely scaled to map from what is on screen
323 // to what is actually being touched in the UI.
324 inputWindowHandle.scaleFactor = 1.0f/child.mGlobalScale;
325 } else {
326 inputWindowHandle.scaleFactor = 1;
327 }
328
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700329 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800330 Slog.d(TAG_WM, "addInputWindowHandle: "
Chong Zhangb15758a2015-11-17 12:12:03 -0800331 + child + ", " + inputWindowHandle);
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700332 }
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700333 addInputWindowHandle(inputWindowHandle);
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800334 if (hasFocus) {
335 mFocusedInputWindowHandle = inputWindowHandle;
336 }
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700337 }
338
Jeff Brown9302c872011-07-13 22:51:29 -0700339 private void clearInputWindowHandlesLw() {
340 while (mInputWindowHandleCount != 0) {
341 mInputWindowHandles[--mInputWindowHandleCount] = null;
342 }
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800343 mFocusedInputWindowHandle = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800344 }
345
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000346 void setUpdateInputWindowsNeededLw() {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800347 mUpdateInputWindowsNeeded = true;
348 }
349
350 /* Updates the cached window information provided to the input dispatcher. */
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000351 void updateInputWindowsLw(boolean force) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800352 if (!force && !mUpdateInputWindowsNeeded) {
353 return;
354 }
355 mUpdateInputWindowsNeeded = false;
356
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800357 if (false) Slog.d(TAG_WM, ">>>>>> ENTERED updateInputWindowsLw");
Jeff Brown9302c872011-07-13 22:51:29 -0700358
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800359 // Populate the input window list with information about all of the windows that
360 // could potentially receive input.
361 // As an optimization, we could try to prune the list of windows but this turns
362 // out to be difficult because only the native code knows for sure which window
363 // currently has touch focus.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800364
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700365 // If there's a drag in flight, provide a pseudo-window to catch drag input
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800366 final boolean inDrag = (mService.mDragState != null);
367 if (inDrag) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800368 if (DEBUG_DRAG) {
369 Log.d(TAG_WM, "Inserting drag window");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800370 }
Vladislav Kaznacheev64b103a2016-08-10 11:49:08 -0700371 final InputWindowHandle dragWindowHandle = mService.mDragState.getInputWindowHandle();
Jeff Browncc4f7db2011-08-30 20:34:48 -0700372 if (dragWindowHandle != null) {
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700373 addInputWindowHandle(dragWindowHandle);
Jeff Browncc4f7db2011-08-30 20:34:48 -0700374 } else {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800375 Slog.w(TAG_WM, "Drag is in progress but there is no "
Jeff Browncc4f7db2011-08-30 20:34:48 -0700376 + "drag window handle.");
377 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800378 }
379
Chong Zhang8e89b312015-09-09 15:09:30 -0700380 final boolean inPositioning = (mService.mTaskPositioner != null);
381 if (inPositioning) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800382 if (DEBUG_TASK_POSITIONING) {
383 Log.d(TAG_WM, "Inserting window handle for repositioning");
Chong Zhang8e89b312015-09-09 15:09:30 -0700384 }
385 final InputWindowHandle dragWindowHandle = mService.mTaskPositioner.mDragWindowHandle;
386 if (dragWindowHandle != null) {
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700387 addInputWindowHandle(dragWindowHandle);
Chong Zhang8e89b312015-09-09 15:09:30 -0700388 } else {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800389 Slog.e(TAG_WM,
Chong Zhang8e89b312015-09-09 15:09:30 -0700390 "Repositioning is in progress but there is no drag window handle.");
391 }
392 }
393
Jeff Brown83d616a2012-09-09 20:33:43 -0700394 // Add all windows on the default display.
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800395 mUpdateInputForAllWindowsConsumer.updateInputWindows(inDrag);
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000396
397 if (false) Slog.d(TAG_WM, "<<<<<<< EXITED updateInputWindowsLw");
398 }
399
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800400 /* Notifies that the input device configuration has changed. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700401 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800402 public void notifyConfigurationChanged() {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700403 // TODO(multi-display): Notify proper displays that are associated with this input device.
404 mService.sendNewConfiguration(DEFAULT_DISPLAY);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800405
406 synchronized (mInputDevicesReadyMonitor) {
407 if (!mInputDevicesReady) {
408 mInputDevicesReady = true;
409 mInputDevicesReadyMonitor.notifyAll();
410 }
411 }
412 }
413
414 /* Waits until the built-in input devices have been configured. */
415 public boolean waitForInputDevicesReady(long timeoutMillis) {
416 synchronized (mInputDevicesReadyMonitor) {
417 if (!mInputDevicesReady) {
418 try {
419 mInputDevicesReadyMonitor.wait(timeoutMillis);
420 } catch (InterruptedException ex) {
421 }
422 }
423 return mInputDevicesReady;
424 }
425 }
426
427 /* Notifies that the lid switch changed state. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700428 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800429 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
430 mService.mPolicy.notifyLidSwitchChanged(whenNanos, lidOpen);
431 }
Craig Mautner58458122013-09-14 14:59:50 -0700432
Michael Wright3818c922014-09-02 13:59:07 -0700433 /* Notifies that the camera lens cover state has changed. */
434 @Override
435 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
436 mService.mPolicy.notifyCameraLensCoverSwitchChanged(whenNanos, lensCovered);
437 }
438
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800439 /* Provides an opportunity for the window manager policy to intercept early key
440 * processing as soon as the key has been read from the device. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700441 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -0700442 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
443 return mService.mPolicy.interceptKeyBeforeQueueing(event, policyFlags);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800444 }
Jeff Brown56194eb2011-03-02 19:23:13 -0800445
Michael Wright70af00a2014-09-03 19:30:20 -0700446 /* Provides an opportunity for the window manager policy to intercept early motion event
447 * processing when the device is in a non-interactive state since these events are normally
Jeff Brown56194eb2011-03-02 19:23:13 -0800448 * dropped. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700449 @Override
Michael Wright70af00a2014-09-03 19:30:20 -0700450 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
451 return mService.mPolicy.interceptMotionBeforeQueueingNonInteractive(
452 whenNanos, policyFlags);
Jeff Brown56194eb2011-03-02 19:23:13 -0800453 }
454
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800455 /* Provides an opportunity for the window manager policy to process a key before
456 * ordinary dispatch. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700457 @Override
Jeff Brown905805a2011-10-12 13:57:59 -0700458 public long interceptKeyBeforeDispatching(
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800459 InputWindowHandle focus, KeyEvent event, int policyFlags) {
460 WindowState windowState = focus != null ? (WindowState) focus.windowState : null;
461 return mService.mPolicy.interceptKeyBeforeDispatching(windowState, event, policyFlags);
462 }
Craig Mautner58458122013-09-14 14:59:50 -0700463
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800464 /* Provides an opportunity for the window manager policy to process a key that
465 * the application did not handle. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700466 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800467 public KeyEvent dispatchUnhandledKey(
468 InputWindowHandle focus, KeyEvent event, int policyFlags) {
469 WindowState windowState = focus != null ? (WindowState) focus.windowState : null;
470 return mService.mPolicy.dispatchUnhandledKey(windowState, event, policyFlags);
471 }
Jeff Brown4532e612012-04-05 14:27:12 -0700472
473 /* Callback to get pointer layer. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700474 @Override
Jeff Brown4532e612012-04-05 14:27:12 -0700475 public int getPointerLayer() {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800476 return mService.mPolicy.getWindowLayerFromTypeLw(WindowManager.LayoutParams.TYPE_POINTER)
Jeff Brown4532e612012-04-05 14:27:12 -0700477 * WindowManagerService.TYPE_LAYER_MULTIPLIER
478 + WindowManagerService.TYPE_LAYER_OFFSET;
479 }
480
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800481 /* Called when the current input focus changes.
482 * Layer assignment is assumed to be complete by the time this is called.
483 */
484 public void setInputFocusLw(WindowState newWindow, boolean updateInputWindows) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700485 if (DEBUG_FOCUS_LIGHT || DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800486 Slog.d(TAG_WM, "Input focus has changed to " + newWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800487 }
488
489 if (newWindow != mInputFocus) {
490 if (newWindow != null && newWindow.canReceiveKeys()) {
491 // Displaying a window implicitly causes dispatching to be unpaused.
492 // This is to protect against bugs if someone pauses dispatching but
493 // forgets to resume.
494 newWindow.mToken.paused = false;
495 }
496
497 mInputFocus = newWindow;
498 setUpdateInputWindowsNeededLw();
499
500 if (updateInputWindows) {
501 updateInputWindowsLw(false /*force*/);
502 }
503 }
504 }
Craig Mautner58458122013-09-14 14:59:50 -0700505
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800506 public void setFocusedAppLw(AppWindowToken newApp) {
507 // Focused app has changed.
508 if (newApp == null) {
509 mService.mInputManager.setFocusedApplication(null);
510 } else {
Jeff Brown9302c872011-07-13 22:51:29 -0700511 final InputApplicationHandle handle = newApp.mInputApplicationHandle;
512 handle.name = newApp.toString();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800513 handle.dispatchingTimeoutNanos = newApp.mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800514
Jeff Brown9302c872011-07-13 22:51:29 -0700515 mService.mInputManager.setFocusedApplication(handle);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800516 }
517 }
Craig Mautner58458122013-09-14 14:59:50 -0700518
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800519 public void pauseDispatchingLw(WindowToken window) {
520 if (! window.paused) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700521 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800522 Slog.v(TAG_WM, "Pausing WindowToken " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800523 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700524
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800525 window.paused = true;
526 updateInputWindowsLw(true /*force*/);
527 }
528 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700529
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800530 public void resumeDispatchingLw(WindowToken window) {
531 if (window.paused) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700532 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800533 Slog.v(TAG_WM, "Resuming WindowToken " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800534 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700535
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800536 window.paused = false;
537 updateInputWindowsLw(true /*force*/);
538 }
539 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700540
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800541 public void freezeInputDispatchingLw() {
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800542 if (!mInputDispatchFrozen) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700543 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800544 Slog.v(TAG_WM, "Freezing input dispatching");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800545 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700546
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800547 mInputDispatchFrozen = true;
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800548
549 if (DEBUG_INPUT || true) {
550 mInputFreezeReason = Debug.getCallers(6);
551 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800552 updateInputDispatchModeLw();
553 }
554 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700555
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800556 public void thawInputDispatchingLw() {
557 if (mInputDispatchFrozen) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700558 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800559 Slog.v(TAG_WM, "Thawing input dispatching");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800560 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700561
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800562 mInputDispatchFrozen = false;
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800563 mInputFreezeReason = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800564 updateInputDispatchModeLw();
565 }
566 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700567
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800568 public void setEventDispatchingLw(boolean enabled) {
569 if (mInputDispatchEnabled != enabled) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700570 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800571 Slog.v(TAG_WM, "Setting event dispatching to " + enabled);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800572 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700573
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800574 mInputDispatchEnabled = enabled;
575 updateInputDispatchModeLw();
576 }
577 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700578
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800579 private void updateInputDispatchModeLw() {
580 mService.mInputManager.setInputDispatchMode(mInputDispatchEnabled, mInputDispatchFrozen);
581 }
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800582
583 void dump(PrintWriter pw, String prefix) {
584 if (mInputFreezeReason != null) {
585 pw.println(prefix + "mInputFreezeReason=" + mInputFreezeReason);
586 }
Winson Chung853c99a2017-03-21 22:16:42 -0700587 final Set<String> inputConsumerKeys = mInputConsumers.keySet();
588 if (!inputConsumerKeys.isEmpty()) {
589 pw.println(prefix + "InputConsumers:");
590 for (String key : inputConsumerKeys) {
591 pw.println(prefix + " name=" + key);
592 }
593 }
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800594 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800595
596 private final class UpdateInputForAllWindowsConsumer implements Consumer<WindowState> {
597
598 InputConsumerImpl navInputConsumer;
599 InputConsumerImpl pipInputConsumer;
600 InputConsumerImpl wallpaperInputConsumer;
601 Rect pipTouchableBounds;
602 boolean inDrag;
603 WallpaperController wallpaperController;
604
605 private void updateInputWindows(boolean inDrag) {
606
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800607 // TODO: multi-display
608 navInputConsumer = getInputConsumer(INPUT_CONSUMER_NAVIGATION, DEFAULT_DISPLAY);
609 pipInputConsumer = getInputConsumer(INPUT_CONSUMER_PIP, DEFAULT_DISPLAY);
610 wallpaperInputConsumer = getInputConsumer(INPUT_CONSUMER_WALLPAPER, DEFAULT_DISPLAY);
611 mAddInputConsumerHandle = navInputConsumer != null;
612 mAddPipInputConsumerHandle = pipInputConsumer != null;
613 mAddWallpaperInputConsumerHandle = wallpaperInputConsumer != null;
614 mTmpRect.setEmpty();
615 pipTouchableBounds = mAddPipInputConsumerHandle ? mTmpRect : null;
616 mDisableWallpaperTouchEvents = false;
617 this.inDrag = inDrag;
618 wallpaperController = mService.mRoot.mWallpaperController;
619
620 mService.mRoot.forAllWindows(this, true /* traverseTopToBottom */);
621 if (mAddWallpaperInputConsumerHandle) {
622 // No visible wallpaper found, add the wallpaper input consumer at the end.
623 addInputWindowHandle(wallpaperInputConsumer.mWindowHandle);
624 }
625
626 // Send windows to native code.
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800627 mService.mInputManager.setInputWindows(mInputWindowHandles, mFocusedInputWindowHandle);
Vladislav Kaznacheev2e96c632016-12-13 14:31:24 -0800628
629 clearInputWindowHandlesLw();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800630 }
631
632 @Override
633 public void accept(WindowState w) {
634 final InputChannel inputChannel = w.mInputChannel;
635 final InputWindowHandle inputWindowHandle = w.mInputWindowHandle;
636 if (inputChannel == null || inputWindowHandle == null || w.mRemoved
Matthew Nge15352e2016-12-20 15:36:29 -0800637 || w.canReceiveTouchInput()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800638 // Skip this window because it cannot possibly receive input.
639 return;
640 }
641
Winson Chung61ecc1b2017-02-17 10:46:17 -0800642 final int flags = w.mAttrs.flags;
643 final int privateFlags = w.mAttrs.privateFlags;
644 final int type = w.mAttrs.type;
645 final boolean hasFocus = w == mInputFocus;
646 final boolean isVisible = w.isVisibleLw();
647
648 if (w.getStackId() == PINNED_STACK_ID) {
649 if (mAddPipInputConsumerHandle
650 && (inputWindowHandle.layer <= pipInputConsumer.mWindowHandle.layer)) {
651 // Update the bounds of the Pip input consumer to match the Pinned stack
652 w.getStack().getBounds(pipTouchableBounds);
653 pipInputConsumer.mWindowHandle.touchableRegion.set(pipTouchableBounds);
654 addInputWindowHandle(pipInputConsumer.mWindowHandle);
655 mAddPipInputConsumerHandle = false;
656 }
657 // TODO: Fix w.canReceiveTouchInput() to handle this case
658 if (!hasFocus) {
659 // Skip this pinned stack window if it does not have focus
660 return;
661 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800662 }
663
664 if (mAddInputConsumerHandle
665 && inputWindowHandle.layer <= navInputConsumer.mWindowHandle.layer) {
666 addInputWindowHandle(navInputConsumer.mWindowHandle);
667 mAddInputConsumerHandle = false;
668 }
669
670 if (mAddWallpaperInputConsumerHandle) {
671 if (w.mAttrs.type == TYPE_WALLPAPER && w.isVisibleLw()) {
672 // Add the wallpaper input consumer above the first visible wallpaper.
673 addInputWindowHandle(wallpaperInputConsumer.mWindowHandle);
674 mAddWallpaperInputConsumerHandle = false;
675 }
676 }
677
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800678 if ((privateFlags & PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS) != 0) {
679 mDisableWallpaperTouchEvents = true;
680 }
681 final boolean hasWallpaper = wallpaperController.isWallpaperTarget(w)
682 && (privateFlags & PRIVATE_FLAG_KEYGUARD) == 0
683 && !mDisableWallpaperTouchEvents;
684
685 // If there's a drag in progress and 'child' is a potential drop target,
686 // make sure it's been told about the drag
687 if (inDrag && isVisible && w.getDisplayContent().isDefaultDisplay) {
688 mService.mDragState.sendDragStartedIfNeededLw(w);
689 }
690
691 addInputWindowHandle(
692 inputWindowHandle, w, flags, type, isVisible, hasFocus, hasWallpaper);
693 }
694 }
Jeff Brownea426552011-07-18 16:53:48 -0700695}