blob: 3caf89d750c8dc77738a040fc9b5e3dfd14142a4 [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();
Wale Ogunwale7402ddf2017-03-29 12:58:24 -0700261 final boolean abort = controller != null
Brian Carlstrom7b0f2e82017-03-31 00:24:18 -0700262 && controller.keyDispatchingTimedOut(reason,
263 (windowState != null) ? windowState.mSession.mPid : -1);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800264 if (!abort) {
265 // The activity manager declined to abort dispatching.
266 // Wait a bit longer and timeout again later.
267 return appWindowToken.mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800268 }
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700269 } else if (windowState != null) {
270 try {
271 // Notify the activity manager about the timeout and let it decide whether
272 // to abort dispatching or keep waiting.
Sudheer Shankadc589ac2016-11-10 15:30:17 -0800273 long timeout = ActivityManager.getService().inputDispatchingTimedOut(
Jeff Brownbd181bb2013-09-10 16:44:24 -0700274 windowState.mSession.mPid, aboveSystem, reason);
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700275 if (timeout >= 0) {
276 // The activity manager declined to abort dispatching.
277 // Wait a bit longer and timeout again later.
baik.handef340d2015-04-15 10:21:05 +0900278 return timeout * 1000000L; // nanoseconds
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700279 }
280 } catch (RemoteException ex) {
281 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800282 }
283 return 0; // abort dispatching
284 }
285
Wale Ogunwale7402ddf2017-03-29 12:58:24 -0700286 private void addInputWindowHandle(final InputWindowHandle windowHandle) {
Jeff Brown9302c872011-07-13 22:51:29 -0700287 if (mInputWindowHandles == null) {
288 mInputWindowHandles = new InputWindowHandle[16];
289 }
290 if (mInputWindowHandleCount >= mInputWindowHandles.length) {
291 mInputWindowHandles = Arrays.copyOf(mInputWindowHandles,
292 mInputWindowHandleCount * 2);
293 }
294 mInputWindowHandles[mInputWindowHandleCount++] = windowHandle;
295 }
296
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700297 void addInputWindowHandle(final InputWindowHandle inputWindowHandle,
Craig Mautnerc08eab82014-11-11 09:03:59 -0800298 final WindowState child, int flags, final int type, final boolean isVisible,
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800299 final boolean hasFocus, final boolean hasWallpaper) {
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700300 // Add a window to our list of input windows.
301 inputWindowHandle.name = child.toString();
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800302 flags = child.getTouchableRegion(inputWindowHandle.touchableRegion, flags);
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700303 inputWindowHandle.layoutParamsFlags = flags;
304 inputWindowHandle.layoutParamsType = type;
305 inputWindowHandle.dispatchingTimeoutNanos = child.getInputDispatchingTimeoutNanos();
306 inputWindowHandle.visible = isVisible;
307 inputWindowHandle.canReceiveKeys = child.canReceiveKeys();
308 inputWindowHandle.hasFocus = hasFocus;
309 inputWindowHandle.hasWallpaper = hasWallpaper;
310 inputWindowHandle.paused = child.mAppToken != null ? child.mAppToken.paused : false;
311 inputWindowHandle.layer = child.mLayer;
312 inputWindowHandle.ownerPid = child.mSession.mPid;
313 inputWindowHandle.ownerUid = child.mSession.mUid;
314 inputWindowHandle.inputFeatures = child.mAttrs.inputFeatures;
315
316 final Rect frame = child.mFrame;
317 inputWindowHandle.frameLeft = frame.left;
318 inputWindowHandle.frameTop = frame.top;
319 inputWindowHandle.frameRight = frame.right;
320 inputWindowHandle.frameBottom = frame.bottom;
321
322 if (child.mGlobalScale != 1) {
323 // If we are scaling the window, input coordinates need
324 // to be inversely scaled to map from what is on screen
325 // to what is actually being touched in the UI.
326 inputWindowHandle.scaleFactor = 1.0f/child.mGlobalScale;
327 } else {
328 inputWindowHandle.scaleFactor = 1;
329 }
330
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700331 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800332 Slog.d(TAG_WM, "addInputWindowHandle: "
Chong Zhangb15758a2015-11-17 12:12:03 -0800333 + child + ", " + inputWindowHandle);
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700334 }
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700335 addInputWindowHandle(inputWindowHandle);
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800336 if (hasFocus) {
337 mFocusedInputWindowHandle = inputWindowHandle;
338 }
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700339 }
340
Jeff Brown9302c872011-07-13 22:51:29 -0700341 private void clearInputWindowHandlesLw() {
342 while (mInputWindowHandleCount != 0) {
343 mInputWindowHandles[--mInputWindowHandleCount] = null;
344 }
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800345 mFocusedInputWindowHandle = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800346 }
347
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000348 void setUpdateInputWindowsNeededLw() {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800349 mUpdateInputWindowsNeeded = true;
350 }
351
352 /* Updates the cached window information provided to the input dispatcher. */
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000353 void updateInputWindowsLw(boolean force) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800354 if (!force && !mUpdateInputWindowsNeeded) {
355 return;
356 }
357 mUpdateInputWindowsNeeded = false;
358
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800359 if (false) Slog.d(TAG_WM, ">>>>>> ENTERED updateInputWindowsLw");
Jeff Brown9302c872011-07-13 22:51:29 -0700360
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800361 // Populate the input window list with information about all of the windows that
362 // could potentially receive input.
363 // As an optimization, we could try to prune the list of windows but this turns
364 // out to be difficult because only the native code knows for sure which window
365 // currently has touch focus.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800366
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700367 // If there's a drag in flight, provide a pseudo-window to catch drag input
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800368 final boolean inDrag = (mService.mDragState != null);
369 if (inDrag) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800370 if (DEBUG_DRAG) {
371 Log.d(TAG_WM, "Inserting drag window");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800372 }
Vladislav Kaznacheev64b103a2016-08-10 11:49:08 -0700373 final InputWindowHandle dragWindowHandle = mService.mDragState.getInputWindowHandle();
Jeff Browncc4f7db2011-08-30 20:34:48 -0700374 if (dragWindowHandle != null) {
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700375 addInputWindowHandle(dragWindowHandle);
Jeff Browncc4f7db2011-08-30 20:34:48 -0700376 } else {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800377 Slog.w(TAG_WM, "Drag is in progress but there is no "
Jeff Browncc4f7db2011-08-30 20:34:48 -0700378 + "drag window handle.");
379 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800380 }
381
Chong Zhang8e89b312015-09-09 15:09:30 -0700382 final boolean inPositioning = (mService.mTaskPositioner != null);
383 if (inPositioning) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800384 if (DEBUG_TASK_POSITIONING) {
385 Log.d(TAG_WM, "Inserting window handle for repositioning");
Chong Zhang8e89b312015-09-09 15:09:30 -0700386 }
387 final InputWindowHandle dragWindowHandle = mService.mTaskPositioner.mDragWindowHandle;
388 if (dragWindowHandle != null) {
Wale Ogunwalee05f5012016-09-16 16:27:29 -0700389 addInputWindowHandle(dragWindowHandle);
Chong Zhang8e89b312015-09-09 15:09:30 -0700390 } else {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800391 Slog.e(TAG_WM,
Chong Zhang8e89b312015-09-09 15:09:30 -0700392 "Repositioning is in progress but there is no drag window handle.");
393 }
394 }
395
Jeff Brown83d616a2012-09-09 20:33:43 -0700396 // Add all windows on the default display.
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800397 mUpdateInputForAllWindowsConsumer.updateInputWindows(inDrag);
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000398
399 if (false) Slog.d(TAG_WM, "<<<<<<< EXITED updateInputWindowsLw");
400 }
401
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800402 /* Notifies that the input device configuration has changed. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700403 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800404 public void notifyConfigurationChanged() {
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700405 // TODO(multi-display): Notify proper displays that are associated with this input device.
406 mService.sendNewConfiguration(DEFAULT_DISPLAY);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800407
408 synchronized (mInputDevicesReadyMonitor) {
409 if (!mInputDevicesReady) {
410 mInputDevicesReady = true;
411 mInputDevicesReadyMonitor.notifyAll();
412 }
413 }
414 }
415
416 /* Waits until the built-in input devices have been configured. */
417 public boolean waitForInputDevicesReady(long timeoutMillis) {
418 synchronized (mInputDevicesReadyMonitor) {
419 if (!mInputDevicesReady) {
420 try {
421 mInputDevicesReadyMonitor.wait(timeoutMillis);
422 } catch (InterruptedException ex) {
423 }
424 }
425 return mInputDevicesReady;
426 }
427 }
428
429 /* Notifies that the lid switch changed state. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700430 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800431 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
432 mService.mPolicy.notifyLidSwitchChanged(whenNanos, lidOpen);
433 }
Craig Mautner58458122013-09-14 14:59:50 -0700434
Michael Wright3818c922014-09-02 13:59:07 -0700435 /* Notifies that the camera lens cover state has changed. */
436 @Override
437 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
438 mService.mPolicy.notifyCameraLensCoverSwitchChanged(whenNanos, lensCovered);
439 }
440
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800441 /* Provides an opportunity for the window manager policy to intercept early key
442 * processing as soon as the key has been read from the device. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700443 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -0700444 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
445 return mService.mPolicy.interceptKeyBeforeQueueing(event, policyFlags);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800446 }
Jeff Brown56194eb2011-03-02 19:23:13 -0800447
Michael Wright70af00a2014-09-03 19:30:20 -0700448 /* Provides an opportunity for the window manager policy to intercept early motion event
449 * processing when the device is in a non-interactive state since these events are normally
Jeff Brown56194eb2011-03-02 19:23:13 -0800450 * dropped. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700451 @Override
Michael Wright70af00a2014-09-03 19:30:20 -0700452 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
453 return mService.mPolicy.interceptMotionBeforeQueueingNonInteractive(
454 whenNanos, policyFlags);
Jeff Brown56194eb2011-03-02 19:23:13 -0800455 }
456
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800457 /* Provides an opportunity for the window manager policy to process a key before
458 * ordinary dispatch. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700459 @Override
Jeff Brown905805a2011-10-12 13:57:59 -0700460 public long interceptKeyBeforeDispatching(
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800461 InputWindowHandle focus, KeyEvent event, int policyFlags) {
462 WindowState windowState = focus != null ? (WindowState) focus.windowState : null;
463 return mService.mPolicy.interceptKeyBeforeDispatching(windowState, event, policyFlags);
464 }
Craig Mautner58458122013-09-14 14:59:50 -0700465
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800466 /* Provides an opportunity for the window manager policy to process a key that
467 * the application did not handle. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700468 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800469 public KeyEvent dispatchUnhandledKey(
470 InputWindowHandle focus, KeyEvent event, int policyFlags) {
471 WindowState windowState = focus != null ? (WindowState) focus.windowState : null;
472 return mService.mPolicy.dispatchUnhandledKey(windowState, event, policyFlags);
473 }
Jeff Brown4532e612012-04-05 14:27:12 -0700474
475 /* Callback to get pointer layer. */
Jeff Brown0b31d812013-08-22 19:41:29 -0700476 @Override
Jeff Brown4532e612012-04-05 14:27:12 -0700477 public int getPointerLayer() {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800478 return mService.mPolicy.getWindowLayerFromTypeLw(WindowManager.LayoutParams.TYPE_POINTER)
Jeff Brown4532e612012-04-05 14:27:12 -0700479 * WindowManagerService.TYPE_LAYER_MULTIPLIER
480 + WindowManagerService.TYPE_LAYER_OFFSET;
481 }
482
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800483 /* Called when the current input focus changes.
484 * Layer assignment is assumed to be complete by the time this is called.
485 */
486 public void setInputFocusLw(WindowState newWindow, boolean updateInputWindows) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700487 if (DEBUG_FOCUS_LIGHT || DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800488 Slog.d(TAG_WM, "Input focus has changed to " + newWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800489 }
490
491 if (newWindow != mInputFocus) {
492 if (newWindow != null && newWindow.canReceiveKeys()) {
493 // Displaying a window implicitly causes dispatching to be unpaused.
494 // This is to protect against bugs if someone pauses dispatching but
495 // forgets to resume.
496 newWindow.mToken.paused = false;
497 }
498
499 mInputFocus = newWindow;
500 setUpdateInputWindowsNeededLw();
501
502 if (updateInputWindows) {
503 updateInputWindowsLw(false /*force*/);
504 }
505 }
506 }
Craig Mautner58458122013-09-14 14:59:50 -0700507
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800508 public void setFocusedAppLw(AppWindowToken newApp) {
509 // Focused app has changed.
510 if (newApp == null) {
511 mService.mInputManager.setFocusedApplication(null);
512 } else {
Jeff Brown9302c872011-07-13 22:51:29 -0700513 final InputApplicationHandle handle = newApp.mInputApplicationHandle;
514 handle.name = newApp.toString();
Wale Ogunwale72919d22016-12-08 18:58:50 -0800515 handle.dispatchingTimeoutNanos = newApp.mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800516
Jeff Brown9302c872011-07-13 22:51:29 -0700517 mService.mInputManager.setFocusedApplication(handle);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800518 }
519 }
Craig Mautner58458122013-09-14 14:59:50 -0700520
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800521 public void pauseDispatchingLw(WindowToken window) {
522 if (! window.paused) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700523 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800524 Slog.v(TAG_WM, "Pausing WindowToken " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800525 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700526
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800527 window.paused = true;
528 updateInputWindowsLw(true /*force*/);
529 }
530 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700531
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800532 public void resumeDispatchingLw(WindowToken window) {
533 if (window.paused) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700534 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800535 Slog.v(TAG_WM, "Resuming WindowToken " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800536 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700537
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800538 window.paused = false;
539 updateInputWindowsLw(true /*force*/);
540 }
541 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700542
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800543 public void freezeInputDispatchingLw() {
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800544 if (!mInputDispatchFrozen) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700545 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800546 Slog.v(TAG_WM, "Freezing input dispatching");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800547 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700548
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800549 mInputDispatchFrozen = true;
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800550
551 if (DEBUG_INPUT || true) {
552 mInputFreezeReason = Debug.getCallers(6);
553 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800554 updateInputDispatchModeLw();
555 }
556 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700557
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800558 public void thawInputDispatchingLw() {
559 if (mInputDispatchFrozen) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700560 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800561 Slog.v(TAG_WM, "Thawing input dispatching");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800562 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700563
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800564 mInputDispatchFrozen = false;
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800565 mInputFreezeReason = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800566 updateInputDispatchModeLw();
567 }
568 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700569
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800570 public void setEventDispatchingLw(boolean enabled) {
571 if (mInputDispatchEnabled != enabled) {
Filip Gruszczynskif8a2a632015-10-28 11:18:02 -0700572 if (DEBUG_INPUT) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800573 Slog.v(TAG_WM, "Setting event dispatching to " + enabled);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800574 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700575
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800576 mInputDispatchEnabled = enabled;
577 updateInputDispatchModeLw();
578 }
579 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700580
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800581 private void updateInputDispatchModeLw() {
582 mService.mInputManager.setInputDispatchMode(mInputDispatchEnabled, mInputDispatchFrozen);
583 }
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800584
585 void dump(PrintWriter pw, String prefix) {
586 if (mInputFreezeReason != null) {
587 pw.println(prefix + "mInputFreezeReason=" + mInputFreezeReason);
588 }
Winson Chung853c99a2017-03-21 22:16:42 -0700589 final Set<String> inputConsumerKeys = mInputConsumers.keySet();
590 if (!inputConsumerKeys.isEmpty()) {
591 pw.println(prefix + "InputConsumers:");
592 for (String key : inputConsumerKeys) {
593 pw.println(prefix + " name=" + key);
594 }
595 }
Wale Ogunwalee89eeac2016-03-12 11:07:58 -0800596 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800597
598 private final class UpdateInputForAllWindowsConsumer implements Consumer<WindowState> {
599
600 InputConsumerImpl navInputConsumer;
601 InputConsumerImpl pipInputConsumer;
602 InputConsumerImpl wallpaperInputConsumer;
603 Rect pipTouchableBounds;
604 boolean inDrag;
605 WallpaperController wallpaperController;
606
607 private void updateInputWindows(boolean inDrag) {
608
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800609 // TODO: multi-display
610 navInputConsumer = getInputConsumer(INPUT_CONSUMER_NAVIGATION, DEFAULT_DISPLAY);
611 pipInputConsumer = getInputConsumer(INPUT_CONSUMER_PIP, DEFAULT_DISPLAY);
612 wallpaperInputConsumer = getInputConsumer(INPUT_CONSUMER_WALLPAPER, DEFAULT_DISPLAY);
613 mAddInputConsumerHandle = navInputConsumer != null;
614 mAddPipInputConsumerHandle = pipInputConsumer != null;
615 mAddWallpaperInputConsumerHandle = wallpaperInputConsumer != null;
616 mTmpRect.setEmpty();
617 pipTouchableBounds = mAddPipInputConsumerHandle ? mTmpRect : null;
618 mDisableWallpaperTouchEvents = false;
619 this.inDrag = inDrag;
620 wallpaperController = mService.mRoot.mWallpaperController;
621
622 mService.mRoot.forAllWindows(this, true /* traverseTopToBottom */);
623 if (mAddWallpaperInputConsumerHandle) {
624 // No visible wallpaper found, add the wallpaper input consumer at the end.
625 addInputWindowHandle(wallpaperInputConsumer.mWindowHandle);
626 }
627
628 // Send windows to native code.
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800629 mService.mInputManager.setInputWindows(mInputWindowHandles, mFocusedInputWindowHandle);
Vladislav Kaznacheev2e96c632016-12-13 14:31:24 -0800630
631 clearInputWindowHandlesLw();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800632 }
633
634 @Override
635 public void accept(WindowState w) {
636 final InputChannel inputChannel = w.mInputChannel;
637 final InputWindowHandle inputWindowHandle = w.mInputWindowHandle;
638 if (inputChannel == null || inputWindowHandle == null || w.mRemoved
Matthew Nge15352e2016-12-20 15:36:29 -0800639 || w.canReceiveTouchInput()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800640 // Skip this window because it cannot possibly receive input.
641 return;
642 }
643
Winson Chung61ecc1b2017-02-17 10:46:17 -0800644 final int flags = w.mAttrs.flags;
645 final int privateFlags = w.mAttrs.privateFlags;
646 final int type = w.mAttrs.type;
647 final boolean hasFocus = w == mInputFocus;
648 final boolean isVisible = w.isVisibleLw();
649
650 if (w.getStackId() == PINNED_STACK_ID) {
651 if (mAddPipInputConsumerHandle
652 && (inputWindowHandle.layer <= pipInputConsumer.mWindowHandle.layer)) {
653 // Update the bounds of the Pip input consumer to match the Pinned stack
654 w.getStack().getBounds(pipTouchableBounds);
655 pipInputConsumer.mWindowHandle.touchableRegion.set(pipTouchableBounds);
656 addInputWindowHandle(pipInputConsumer.mWindowHandle);
657 mAddPipInputConsumerHandle = false;
658 }
659 // TODO: Fix w.canReceiveTouchInput() to handle this case
660 if (!hasFocus) {
661 // Skip this pinned stack window if it does not have focus
662 return;
663 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800664 }
665
666 if (mAddInputConsumerHandle
667 && inputWindowHandle.layer <= navInputConsumer.mWindowHandle.layer) {
668 addInputWindowHandle(navInputConsumer.mWindowHandle);
669 mAddInputConsumerHandle = false;
670 }
671
672 if (mAddWallpaperInputConsumerHandle) {
673 if (w.mAttrs.type == TYPE_WALLPAPER && w.isVisibleLw()) {
674 // Add the wallpaper input consumer above the first visible wallpaper.
675 addInputWindowHandle(wallpaperInputConsumer.mWindowHandle);
676 mAddWallpaperInputConsumerHandle = false;
677 }
678 }
679
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800680 if ((privateFlags & PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS) != 0) {
681 mDisableWallpaperTouchEvents = true;
682 }
683 final boolean hasWallpaper = wallpaperController.isWallpaperTarget(w)
684 && (privateFlags & PRIVATE_FLAG_KEYGUARD) == 0
685 && !mDisableWallpaperTouchEvents;
686
687 // If there's a drag in progress and 'child' is a potential drop target,
688 // make sure it's been told about the drag
689 if (inDrag && isVisible && w.getDisplayContent().isDefaultDisplay) {
690 mService.mDragState.sendDragStartedIfNeededLw(w);
691 }
692
693 addInputWindowHandle(
694 inputWindowHandle, w, flags, type, isVisible, hasFocus, hasWallpaper);
695 }
696 }
Jeff Brownea426552011-07-18 16:53:48 -0700697}