blob: 80b189385f88c4510e4d2a903c1d59d308ca8049 [file] [log] [blame]
Jeff Brown46b9ac02010-04-22 18:58:52 -07001/*
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.
15 */
16
Jeff Brown4532e612012-04-05 14:27:12 -070017package com.android.server.input;
Jeff Brown46b9ac02010-04-22 18:58:52 -070018
Yohei Yukawa5660fad2016-01-27 22:04:09 -080019import android.annotation.NonNull;
Andrii Kulianed76e742017-06-26 14:57:02 -070020import android.app.IInputForwarder;
Jeff Browncf39bdf2012-05-18 14:41:19 -070021import android.app.Notification;
22import android.app.NotificationManager;
23import android.app.PendingIntent;
Jeff Brown5bbd4b42012-04-20 19:28:00 -070024import android.bluetooth.BluetoothAdapter;
25import android.bluetooth.BluetoothDevice;
Jeff Brown6ec6f792012-04-17 16:52:41 -070026import android.content.BroadcastReceiver;
Jeff Brown9f25b7f2012-04-10 14:30:49 -070027import android.content.ComponentName;
Jeff Brown46b9ac02010-04-22 18:58:52 -070028import android.content.Context;
Jeff Brown9f25b7f2012-04-10 14:30:49 -070029import android.content.Intent;
Jeff Brown6ec6f792012-04-17 16:52:41 -070030import android.content.IntentFilter;
Jeff Brown9f25b7f2012-04-10 14:30:49 -070031import android.content.pm.ActivityInfo;
Michael Wright8ebac232014-09-18 18:29:49 -070032import android.content.pm.ApplicationInfo;
Jeff Brown349703e2010-06-22 01:27:15 -070033import android.content.pm.PackageManager;
Jeff Brown9f25b7f2012-04-10 14:30:49 -070034import android.content.pm.PackageManager.NameNotFoundException;
Arthur Hung39134b22018-08-14 11:58:28 +080035import android.content.pm.ResolveInfo;
Jeff Brown9f25b7f2012-04-10 14:30:49 -070036import android.content.res.Resources;
Jeff Brown6ec6f792012-04-17 16:52:41 -070037import android.content.res.Resources.NotFoundException;
Jeff Brown9f25b7f2012-04-10 14:30:49 -070038import android.content.res.TypedArray;
39import android.content.res.XmlResourceParser;
Jeff Brown1a84fd12011-06-02 01:26:32 -070040import android.database.ContentObserver;
Andrii Kulianed76e742017-06-26 14:57:02 -070041import android.hardware.display.DisplayManager;
Jeff Brown4ccb8232014-01-16 22:16:42 -080042import android.hardware.display.DisplayViewport;
Jeff Brownaf9e8d32012-04-12 17:32:48 -070043import android.hardware.input.IInputDevicesChangedListener;
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -070044import android.hardware.input.IInputManager;
Arthur Hung39134b22018-08-14 11:58:28 +080045import android.hardware.input.ITabletModeChangedListener;
RoboErikfb290df2013-12-16 11:27:55 -080046import android.hardware.input.InputDeviceIdentifier;
Jeff Brownac143512012-04-05 18:57:33 -070047import android.hardware.input.InputManager;
Jeff Brown4ccb8232014-01-16 22:16:42 -080048import android.hardware.input.InputManagerInternal;
Jeff Brown9f25b7f2012-04-10 14:30:49 -070049import android.hardware.input.KeyboardLayout;
Jason Gerecked6396d62014-01-27 18:30:37 -080050import android.hardware.input.TouchCalibration;
Jeff Brown4532e612012-04-05 14:27:12 -070051import android.os.Binder;
Jeff Brown9f25b7f2012-04-10 14:30:49 -070052import android.os.Bundle;
Jeff Brown46b9ac02010-04-22 18:58:52 -070053import android.os.Environment;
Jeff Brown4532e612012-04-05 14:27:12 -070054import android.os.Handler;
Jeff Brownaf9e8d32012-04-12 17:32:48 -070055import android.os.IBinder;
Arthur Hung39134b22018-08-14 11:58:28 +080056import android.os.LocaleList;
Jeff Browna9d131c2012-09-20 16:48:17 -070057import android.os.Looper;
Jeff Brownaf9e8d32012-04-12 17:32:48 -070058import android.os.Message;
Jeff Brown05dc66a2011-03-02 14:41:58 -080059import android.os.MessageQueue;
Jeff Brownac143512012-04-05 18:57:33 -070060import android.os.Process;
Jeff Brownaf9e8d32012-04-12 17:32:48 -070061import android.os.RemoteException;
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -070062import android.os.UserHandle;
Jeff Brown1a84fd12011-06-02 01:26:32 -070063import android.provider.Settings;
64import android.provider.Settings.SettingNotFoundException;
Michael Wright07483422015-10-30 16:20:13 +000065import android.text.TextUtils;
Arthur Hung39134b22018-08-14 11:58:28 +080066import android.util.Log;
Jeff Brown46b9ac02010-04-22 18:58:52 -070067import android.util.Slog;
Jeff Brownaf9e8d32012-04-12 17:32:48 -070068import android.util.SparseArray;
Jeff Brown46b9ac02010-04-22 18:58:52 -070069import android.util.Xml;
Andrii Kulianed76e742017-06-26 14:57:02 -070070import android.view.Display;
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -070071import android.view.IInputFilter;
72import android.view.IInputFilterHost;
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -080073import android.view.IWindow;
Jeff Brown46b9ac02010-04-22 18:58:52 -070074import android.view.InputChannel;
Robert Carr788f5742018-07-30 17:46:45 -070075import android.view.InputApplicationHandle;
76import android.view.InputWindowHandle;
Jeff Brown8d608662010-08-30 03:02:23 -070077import android.view.InputDevice;
Jeff Brown6ec402b2010-07-28 15:48:59 -070078import android.view.InputEvent;
Jeff Brown1f245102010-11-18 20:53:46 -080079import android.view.KeyEvent;
Jeff Brown2352b972011-04-12 22:39:53 -070080import android.view.PointerIcon;
Jason Gerecked5220742014-03-10 09:47:59 -070081import android.view.Surface;
Jeff Browna4547672011-03-02 21:38:11 -080082import android.view.ViewConfiguration;
Yohei Yukawa2d9accb2018-03-07 19:15:15 -080083import android.widget.Toast;
Jeff Brown46b9ac02010-04-22 18:58:52 -070084
Arthur Hung39134b22018-08-14 11:58:28 +080085import com.android.internal.R;
86import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
87import com.android.internal.notification.SystemNotificationChannels;
88import com.android.internal.os.SomeArgs;
89import com.android.internal.util.DumpUtils;
90import com.android.internal.util.Preconditions;
91import com.android.internal.util.XmlUtils;
92import com.android.server.DisplayThread;
93import com.android.server.LocalServices;
94import com.android.server.Watchdog;
95import com.android.server.policy.WindowManagerPolicy;
96
97import libcore.io.IoUtils;
98import libcore.io.Streams;
99
100import org.xmlpull.v1.XmlPullParser;
101
Jeff Brown46b9ac02010-04-22 18:58:52 -0700102import java.io.File;
Jeff Brown4532e612012-04-05 14:27:12 -0700103import java.io.FileDescriptor;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700104import java.io.FileNotFoundException;
105import java.io.FileReader;
Adrian Roos99182342016-06-15 15:30:46 -0700106import java.io.FileWriter;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700107import java.io.IOException;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700108import java.io.InputStreamReader;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700109import java.io.PrintWriter;
110import java.util.ArrayList;
Michael Wright07483422015-10-30 16:20:13 +0000111import java.util.Collections;
Jeff Brown9f25b7f2012-04-10 14:30:49 -0700112import java.util.HashMap;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700113import java.util.HashSet;
Michael Wright39e5e942015-08-19 22:52:47 +0100114import java.util.List;
Michael Wright07483422015-10-30 16:20:13 +0000115import java.util.Locale;
Narayan Kamath607223f2018-02-19 14:09:02 +0000116import java.util.Objects;
Jeff Browna3bc5652012-04-17 11:42:25 -0700117
Jeff Brown46b9ac02010-04-22 18:58:52 -0700118/*
119 * Wraps the C++ InputManager and provides its callbacks.
Jeff Brown46b9ac02010-04-22 18:58:52 -0700120 */
Jeff Brownd728bf52012-09-08 18:05:28 -0700121public class InputManagerService extends IInputManager.Stub
Jeff Brown4ccb8232014-01-16 22:16:42 -0800122 implements Watchdog.Monitor {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700123 static final String TAG = "InputManager";
Jeff Brown1b9ba572012-05-21 10:54:18 -0700124 static final boolean DEBUG = false;
Jeff Brownb6997262010-10-08 22:31:17 -0700125
Jeff Brown4532e612012-04-05 14:27:12 -0700126 private static final String EXCLUDED_DEVICES_PATH = "etc/excluded-input-devices.xml";
127
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700128 private static final int MSG_DELIVER_INPUT_DEVICES_CHANGED = 1;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700129 private static final int MSG_SWITCH_KEYBOARD_LAYOUT = 2;
130 private static final int MSG_RELOAD_KEYBOARD_LAYOUTS = 3;
131 private static final int MSG_UPDATE_KEYBOARD_LAYOUTS = 4;
132 private static final int MSG_RELOAD_DEVICE_ALIASES = 5;
Michael Wright39e5e942015-08-19 22:52:47 +0100133 private static final int MSG_DELIVER_TABLET_MODE_CHANGED = 6;
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700134
Jeff Brown4532e612012-04-05 14:27:12 -0700135 // Pointer to native input manager service object.
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000136 private final long mPtr;
Jeff Brown4532e612012-04-05 14:27:12 -0700137
Jeff Brown46b9ac02010-04-22 18:58:52 -0700138 private final Context mContext;
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700139 private final InputManagerHandler mHandler;
Jeff Browna9d131c2012-09-20 16:48:17 -0700140
Adrian Roos99182342016-06-15 15:30:46 -0700141 private final File mDoubleTouchGestureEnableFile;
142
Jeff Browna9d131c2012-09-20 16:48:17 -0700143 private WindowManagerCallbacks mWindowManagerCallbacks;
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700144 private WiredAccessoryCallbacks mWiredAccessoryCallbacks;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700145 private boolean mSystemReady;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700146 private NotificationManager mNotificationManager;
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700147
Michael Wright39e5e942015-08-19 22:52:47 +0100148 private final Object mTabletModeLock = new Object();
149 // List of currently registered tablet mode changed listeners by process id
150 private final SparseArray<TabletModeChangedListenerRecord> mTabletModeChangedListeners =
151 new SparseArray<>(); // guarded by mTabletModeLock
152 private final List<TabletModeChangedListenerRecord> mTempTabletModeChangedListenersToNotify =
153 new ArrayList<>();
154
Jeff Browna3bc5652012-04-17 11:42:25 -0700155 // Persistent data store. Must be locked each time during use.
156 private final PersistentDataStore mDataStore = new PersistentDataStore();
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700157
158 // List of currently registered input devices changed listeners by process id.
159 private Object mInputDevicesLock = new Object();
160 private boolean mInputDevicesChangedPending; // guarded by mInputDevicesLock
161 private InputDevice[] mInputDevices = new InputDevice[0];
162 private final SparseArray<InputDevicesChangedListenerRecord> mInputDevicesChangedListeners =
163 new SparseArray<InputDevicesChangedListenerRecord>(); // guarded by mInputDevicesLock
164 private final ArrayList<InputDevicesChangedListenerRecord>
165 mTempInputDevicesChangedListenersToNotify =
166 new ArrayList<InputDevicesChangedListenerRecord>(); // handler thread only
Jeff Browncf39bdf2012-05-18 14:41:19 -0700167 private final ArrayList<InputDevice>
168 mTempFullKeyboards = new ArrayList<InputDevice>(); // handler thread only
169 private boolean mKeyboardLayoutNotificationShown;
Yohei Yukawa2d9accb2018-03-07 19:15:15 -0800170 private PendingIntent mKeyboardLayoutIntent;
171 private Toast mSwitchedKeyboardLayoutToast;
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700172
Jeff Browna47425a2012-04-13 04:09:27 -0700173 // State for vibrator tokens.
174 private Object mVibratorLock = new Object();
175 private HashMap<IBinder, VibratorToken> mVibratorTokens =
176 new HashMap<IBinder, VibratorToken>();
177 private int mNextVibratorTokenValue;
178
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700179 // State for the currently installed input filter.
180 final Object mInputFilterLock = new Object();
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -0700181 IInputFilter mInputFilter; // guarded by mInputFilterLock
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700182 InputFilterHost mInputFilterHost; // guarded by mInputFilterLock
Jeff Brown1a84fd12011-06-02 01:26:32 -0700183
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800184 private IWindow mFocusedWindow;
185 private boolean mFocusedWindowHasCapture;
186
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000187 private static native long nativeInit(InputManagerService service,
Jeff Brown4532e612012-04-05 14:27:12 -0700188 Context context, MessageQueue messageQueue);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000189 private static native void nativeStart(long ptr);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100190 private static native void nativeSetDisplayViewports(long ptr,
Santos Cordonee8931e2017-04-05 10:31:15 -0700191 DisplayViewport[] viewports);
Jeff Brownd728bf52012-09-08 18:05:28 -0700192
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000193 private static native int nativeGetScanCodeState(long ptr,
Jeff Brown4532e612012-04-05 14:27:12 -0700194 int deviceId, int sourceMask, int scanCode);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000195 private static native int nativeGetKeyCodeState(long ptr,
Jeff Brown4532e612012-04-05 14:27:12 -0700196 int deviceId, int sourceMask, int keyCode);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000197 private static native int nativeGetSwitchState(long ptr,
Jeff Brown4532e612012-04-05 14:27:12 -0700198 int deviceId, int sourceMask, int sw);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000199 private static native boolean nativeHasKeys(long ptr,
Jeff Brown4532e612012-04-05 14:27:12 -0700200 int deviceId, int sourceMask, int[] keyCodes, boolean[] keyExists);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000201 private static native void nativeRegisterInputChannel(long ptr, InputChannel inputChannel,
Arthur Hungbe5ce212018-09-13 18:41:56 +0800202 InputWindowHandle inputWindowHandle, int displayId);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000203 private static native void nativeUnregisterInputChannel(long ptr, InputChannel inputChannel);
204 private static native void nativeSetInputFilterEnabled(long ptr, boolean enable);
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -0800205 private static native int nativeInjectInputEvent(long ptr, InputEvent event,
Jeff Brown0029c662011-03-30 02:25:18 -0700206 int injectorPid, int injectorUid, int syncMode, int timeoutMillis,
207 int policyFlags);
Andrii Kulian112d0562016-03-08 10:44:22 -0800208 private static native void nativeToggleCapsLock(long ptr, int deviceId);
Arthur Hung39134b22018-08-14 11:58:28 +0800209 private static native void nativeSetInputWindows(long ptr, InputWindowHandle[] windowHandles,
210 int displayId);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000211 private static native void nativeSetInputDispatchMode(long ptr, boolean enabled, boolean frozen);
212 private static native void nativeSetSystemUiVisibility(long ptr, int visibility);
213 private static native void nativeSetFocusedApplication(long ptr,
Tiger Huang1e5b10a2018-07-30 20:19:51 +0800214 int displayId, InputApplicationHandle application);
215 private static native void nativeSetFocusedDisplay(long ptr, int displayId);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000216 private static native boolean nativeTransferTouchFocus(long ptr,
Jeff Brown4532e612012-04-05 14:27:12 -0700217 InputChannel fromChannel, InputChannel toChannel);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000218 private static native void nativeSetPointerSpeed(long ptr, int speed);
219 private static native void nativeSetShowTouches(long ptr, boolean enabled);
Jeff Brown037c33e2014-04-09 00:31:55 -0700220 private static native void nativeSetInteractive(long ptr, boolean interactive);
Jason Gerecke857aa7b2014-01-27 18:34:20 -0800221 private static native void nativeReloadCalibration(long ptr);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000222 private static native void nativeVibrate(long ptr, int deviceId, long[] pattern,
Jeff Browna47425a2012-04-13 04:09:27 -0700223 int repeat, int token);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000224 private static native void nativeCancelVibrate(long ptr, int deviceId, int token);
225 private static native void nativeReloadKeyboardLayouts(long ptr);
226 private static native void nativeReloadDeviceAliases(long ptr);
227 private static native String nativeDump(long ptr);
228 private static native void nativeMonitor(long ptr);
Siarhei Vishniakoua7f99b52017-03-21 17:39:40 -0700229 private static native boolean nativeIsInputDeviceEnabled(long ptr, int deviceId);
230 private static native void nativeEnableInputDevice(long ptr, int deviceId);
231 private static native void nativeDisableInputDevice(long ptr, int deviceId);
Michael Wrightf9d9ce772016-05-13 17:44:16 +0100232 private static native void nativeSetPointerIconType(long ptr, int iconId);
Jun Mukai19a56012015-11-24 11:25:52 -0800233 private static native void nativeReloadPointerIcons(long ptr);
Jun Mukaid4eaef72015-10-30 15:54:33 -0700234 private static native void nativeSetCustomPointerIcon(long ptr, PointerIcon icon);
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800235 private static native void nativeSetPointerCapture(long ptr, boolean detached);
Jeff Brown4532e612012-04-05 14:27:12 -0700236
Jeff Brownac143512012-04-05 18:57:33 -0700237 // Input event injection constants defined in InputDispatcher.h.
238 private static final int INPUT_EVENT_INJECTION_SUCCEEDED = 0;
239 private static final int INPUT_EVENT_INJECTION_PERMISSION_DENIED = 1;
240 private static final int INPUT_EVENT_INJECTION_FAILED = 2;
241 private static final int INPUT_EVENT_INJECTION_TIMED_OUT = 3;
242
243 // Maximum number of milliseconds to wait for input event injection.
244 private static final int INJECTION_TIMEOUT_MILLIS = 30 * 1000;
245
Jeff Brown6d0fec22010-07-23 21:28:06 -0700246 // Key states (may be returned by queries about the current state of a
247 // particular key code, scan code or switch).
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700248
Jeff Brown6d0fec22010-07-23 21:28:06 -0700249 /** The key state is unknown or the requested key itself is not supported. */
250 public static final int KEY_STATE_UNKNOWN = -1;
251
252 /** The key is up. /*/
253 public static final int KEY_STATE_UP = 0;
254
255 /** The key is down. */
256 public static final int KEY_STATE_DOWN = 1;
257
258 /** The key is down but is a virtual key press that is being emulated by the system. */
259 public static final int KEY_STATE_VIRTUAL = 2;
260
Jeff Brownc458ce92012-04-30 14:58:40 -0700261 /** Scan code: Mouse / trackball button. */
262 public static final int BTN_MOUSE = 0x110;
263
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700264 // Switch code values must match bionic/libc/kernel/common/linux/input.h
Jeff Brownc458ce92012-04-30 14:58:40 -0700265 /** Switch code: Lid switch. When set, lid is shut. */
266 public static final int SW_LID = 0x00;
267
Michael Wright39e5e942015-08-19 22:52:47 +0100268 /** Switch code: Tablet mode switch.
269 * When set, the device is in tablet mode (i.e. no keyboard is connected).
270 */
271 public static final int SW_TABLET_MODE = 0x01;
272
Jeff Brownc458ce92012-04-30 14:58:40 -0700273 /** Switch code: Keypad slide. When set, keyboard is exposed. */
274 public static final int SW_KEYPAD_SLIDE = 0x0a;
275
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700276 /** Switch code: Headphone. When set, headphone is inserted. */
277 public static final int SW_HEADPHONE_INSERT = 0x02;
278
279 /** Switch code: Microphone. When set, microphone is inserted. */
280 public static final int SW_MICROPHONE_INSERT = 0x04;
281
Jon Eklund43cc8bb2014-07-28 16:07:24 -0500282 /** Switch code: Line out. When set, Line out (hi-Z) is inserted. */
283 public static final int SW_LINEOUT_INSERT = 0x06;
284
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700285 /** Switch code: Headphone/Microphone Jack. When set, something is inserted. */
286 public static final int SW_JACK_PHYSICAL_INSERT = 0x07;
287
Michael Wright3818c922014-09-02 13:59:07 -0700288 /** Switch code: Camera lens cover. When set the lens is covered. */
289 public static final int SW_CAMERA_LENS_COVER = 0x09;
290
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700291 public static final int SW_LID_BIT = 1 << SW_LID;
Michael Wright39e5e942015-08-19 22:52:47 +0100292 public static final int SW_TABLET_MODE_BIT = 1 << SW_TABLET_MODE;
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700293 public static final int SW_KEYPAD_SLIDE_BIT = 1 << SW_KEYPAD_SLIDE;
294 public static final int SW_HEADPHONE_INSERT_BIT = 1 << SW_HEADPHONE_INSERT;
295 public static final int SW_MICROPHONE_INSERT_BIT = 1 << SW_MICROPHONE_INSERT;
Jon Eklund43cc8bb2014-07-28 16:07:24 -0500296 public static final int SW_LINEOUT_INSERT_BIT = 1 << SW_LINEOUT_INSERT;
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700297 public static final int SW_JACK_PHYSICAL_INSERT_BIT = 1 << SW_JACK_PHYSICAL_INSERT;
298 public static final int SW_JACK_BITS =
Jon Eklund43cc8bb2014-07-28 16:07:24 -0500299 SW_HEADPHONE_INSERT_BIT | SW_MICROPHONE_INSERT_BIT | SW_JACK_PHYSICAL_INSERT_BIT | SW_LINEOUT_INSERT_BIT;
Michael Wright3818c922014-09-02 13:59:07 -0700300 public static final int SW_CAMERA_LENS_COVER_BIT = 1 << SW_CAMERA_LENS_COVER;
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700301
302 /** Whether to use the dev/input/event or uevent subsystem for the audio jack. */
303 final boolean mUseDevInputEventForAudioJack;
304
Jeff Brown4ccb8232014-01-16 22:16:42 -0800305 public InputManagerService(Context context) {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700306 this.mContext = context;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800307 this.mHandler = new InputManagerHandler(DisplayThread.get().getLooper());
Jeff Brown05dc66a2011-03-02 14:41:58 -0800308
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700309 mUseDevInputEventForAudioJack =
310 context.getResources().getBoolean(R.bool.config_useDevInputEventForAudioJack);
311 Slog.i(TAG, "Initializing input manager, mUseDevInputEventForAudioJack="
312 + mUseDevInputEventForAudioJack);
Jeff Brown4532e612012-04-05 14:27:12 -0700313 mPtr = nativeInit(this, mContext, mHandler.getLooper().getQueue());
Jeff Brown4ccb8232014-01-16 22:16:42 -0800314
Adrian Roos99182342016-06-15 15:30:46 -0700315 String doubleTouchGestureEnablePath = context.getResources().getString(
316 R.string.config_doubleTouchGestureEnableFile);
317 mDoubleTouchGestureEnableFile = TextUtils.isEmpty(doubleTouchGestureEnablePath) ? null :
318 new File(doubleTouchGestureEnablePath);
319
Jeff Brown4ccb8232014-01-16 22:16:42 -0800320 LocalServices.addService(InputManagerInternal.class, new LocalService());
Jeff Brown46b9ac02010-04-22 18:58:52 -0700321 }
Jeff Brown1a84fd12011-06-02 01:26:32 -0700322
Jeff Browna9d131c2012-09-20 16:48:17 -0700323 public void setWindowManagerCallbacks(WindowManagerCallbacks callbacks) {
324 mWindowManagerCallbacks = callbacks;
325 }
326
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700327 public void setWiredAccessoryCallbacks(WiredAccessoryCallbacks callbacks) {
328 mWiredAccessoryCallbacks = callbacks;
329 }
330
Jeff Brown46b9ac02010-04-22 18:58:52 -0700331 public void start() {
332 Slog.i(TAG, "Starting input manager");
Jeff Brown4532e612012-04-05 14:27:12 -0700333 nativeStart(mPtr);
334
335 // Add ourself to the Watchdog monitors.
336 Watchdog.getInstance().addMonitor(this);
Jeff Brown1a84fd12011-06-02 01:26:32 -0700337
338 registerPointerSpeedSettingObserver();
Jeff Browndaf4a122011-08-26 17:14:14 -0700339 registerShowTouchesSettingObserver();
Jun Mukai19a56012015-11-24 11:25:52 -0800340 registerAccessibilityLargePointerSettingObserver();
Jeff Browndaf4a122011-08-26 17:14:14 -0700341
Jeff Brownd4935962012-09-25 13:27:20 -0700342 mContext.registerReceiver(new BroadcastReceiver() {
343 @Override
344 public void onReceive(Context context, Intent intent) {
345 updatePointerSpeedFromSettings();
346 updateShowTouchesFromSettings();
Jun Mukaie4e75da2015-12-15 16:19:20 -0800347 updateAccessibilityLargePointerFromSettings();
Jeff Brownd4935962012-09-25 13:27:20 -0700348 }
349 }, new IntentFilter(Intent.ACTION_USER_SWITCHED), null, mHandler);
350
Jeff Brown1a84fd12011-06-02 01:26:32 -0700351 updatePointerSpeedFromSettings();
Jeff Browndaf4a122011-08-26 17:14:14 -0700352 updateShowTouchesFromSettings();
Jun Mukaie4e75da2015-12-15 16:19:20 -0800353 updateAccessibilityLargePointerFromSettings();
Jeff Brown46b9ac02010-04-22 18:58:52 -0700354 }
Jeff Brown6ec6f792012-04-17 16:52:41 -0700355
Siarhei Vishniakouc8631852018-07-06 11:33:56 +0100356 // TODO(BT) Pass in parameter for bluetooth system
Svetoslav Ganova0027152013-06-25 14:59:53 -0700357 public void systemRunning() {
Jeff Brown6ec6f792012-04-17 16:52:41 -0700358 if (DEBUG) {
359 Slog.d(TAG, "System ready.");
360 }
Jeff Browncf39bdf2012-05-18 14:41:19 -0700361 mNotificationManager = (NotificationManager)mContext.getSystemService(
362 Context.NOTIFICATION_SERVICE);
Jeff Brown6ec6f792012-04-17 16:52:41 -0700363 mSystemReady = true;
Jeff Brown6ec6f792012-04-17 16:52:41 -0700364
365 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
366 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
367 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
Jeff Brown69b07162013-11-07 00:30:16 -0800368 filter.addAction(Intent.ACTION_PACKAGE_REPLACED);
Jeff Brown6ec6f792012-04-17 16:52:41 -0700369 filter.addDataScheme("package");
370 mContext.registerReceiver(new BroadcastReceiver() {
371 @Override
372 public void onReceive(Context context, Intent intent) {
Jeff Browncf39bdf2012-05-18 14:41:19 -0700373 updateKeyboardLayouts();
Jeff Brown6ec6f792012-04-17 16:52:41 -0700374 }
375 }, filter, null, mHandler);
Jeff Brown5bbd4b42012-04-20 19:28:00 -0700376
377 filter = new IntentFilter(BluetoothDevice.ACTION_ALIAS_CHANGED);
378 mContext.registerReceiver(new BroadcastReceiver() {
379 @Override
380 public void onReceive(Context context, Intent intent) {
Jeff Brown5bbd4b42012-04-20 19:28:00 -0700381 reloadDeviceAliases();
382 }
383 }, filter, null, mHandler);
384
Jeff Browncf39bdf2012-05-18 14:41:19 -0700385 mHandler.sendEmptyMessage(MSG_RELOAD_DEVICE_ALIASES);
386 mHandler.sendEmptyMessage(MSG_UPDATE_KEYBOARD_LAYOUTS);
Eric Laurent4a5eeb92014-05-06 10:49:04 -0700387
388 if (mWiredAccessoryCallbacks != null) {
389 mWiredAccessoryCallbacks.systemReady();
390 }
Jeff Brown6ec6f792012-04-17 16:52:41 -0700391 }
392
393 private void reloadKeyboardLayouts() {
Jeff Browncf39bdf2012-05-18 14:41:19 -0700394 if (DEBUG) {
395 Slog.d(TAG, "Reloading keyboard layouts.");
396 }
Jeff Brown6ec6f792012-04-17 16:52:41 -0700397 nativeReloadKeyboardLayouts(mPtr);
398 }
399
Jeff Brown5bbd4b42012-04-20 19:28:00 -0700400 private void reloadDeviceAliases() {
Jeff Browncf39bdf2012-05-18 14:41:19 -0700401 if (DEBUG) {
402 Slog.d(TAG, "Reloading device names.");
403 }
Jeff Brown5bbd4b42012-04-20 19:28:00 -0700404 nativeReloadDeviceAliases(mPtr);
405 }
406
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100407 private void setDisplayViewportsInternal(List<DisplayViewport> viewports) {
408 nativeSetDisplayViewports(mPtr, viewports.toArray(new DisplayViewport[0]));
Jeff Brown46b9ac02010-04-22 18:58:52 -0700409 }
Jeff Brownac143512012-04-05 18:57:33 -0700410
Jeff Brown6d0fec22010-07-23 21:28:06 -0700411 /**
412 * Gets the current state of a key or button by key code.
413 * @param deviceId The input device id, or -1 to consult all devices.
414 * @param sourceMask The input sources to consult, or {@link InputDevice#SOURCE_ANY} to
415 * consider all input sources. An input device is consulted if at least one of its
416 * non-class input source bits matches the specified source mask.
417 * @param keyCode The key code to check.
418 * @return The key state.
419 */
420 public int getKeyCodeState(int deviceId, int sourceMask, int keyCode) {
Jeff Brown4532e612012-04-05 14:27:12 -0700421 return nativeGetKeyCodeState(mPtr, deviceId, sourceMask, keyCode);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700422 }
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700423
Jeff Brown6d0fec22010-07-23 21:28:06 -0700424 /**
425 * Gets the current state of a key or button by scan code.
426 * @param deviceId The input device id, or -1 to consult all devices.
427 * @param sourceMask The input sources to consult, or {@link InputDevice#SOURCE_ANY} to
428 * consider all input sources. An input device is consulted if at least one of its
429 * non-class input source bits matches the specified source mask.
430 * @param scanCode The scan code to check.
431 * @return The key state.
432 */
433 public int getScanCodeState(int deviceId, int sourceMask, int scanCode) {
Jeff Brown4532e612012-04-05 14:27:12 -0700434 return nativeGetScanCodeState(mPtr, deviceId, sourceMask, scanCode);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700435 }
RoboErikfb290df2013-12-16 11:27:55 -0800436
Jeff Brown6d0fec22010-07-23 21:28:06 -0700437 /**
438 * Gets the current state of a switch by switch code.
439 * @param deviceId The input device id, or -1 to consult all devices.
440 * @param sourceMask The input sources to consult, or {@link InputDevice#SOURCE_ANY} to
441 * consider all input sources. An input device is consulted if at least one of its
442 * non-class input source bits matches the specified source mask.
443 * @param switchCode The switch code to check.
444 * @return The switch state.
445 */
446 public int getSwitchState(int deviceId, int sourceMask, int switchCode) {
Jeff Brown4532e612012-04-05 14:27:12 -0700447 return nativeGetSwitchState(mPtr, deviceId, sourceMask, switchCode);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700448 }
449
Jeff Brown6d0fec22010-07-23 21:28:06 -0700450 /**
451 * Determines whether the specified key codes are supported by a particular device.
452 * @param deviceId The input device id, or -1 to consult all devices.
453 * @param sourceMask The input sources to consult, or {@link InputDevice#SOURCE_ANY} to
454 * consider all input sources. An input device is consulted if at least one of its
455 * non-class input source bits matches the specified source mask.
456 * @param keyCodes The array of key codes to check.
457 * @param keyExists An array at least as large as keyCodes whose entries will be set
458 * to true or false based on the presence or absence of support for the corresponding
459 * key codes.
460 * @return True if the lookup was successful, false otherwise.
461 */
Jeff Brown9f25b7f2012-04-10 14:30:49 -0700462 @Override // Binder call
Jeff Brown6d0fec22010-07-23 21:28:06 -0700463 public boolean hasKeys(int deviceId, int sourceMask, int[] keyCodes, boolean[] keyExists) {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700464 if (keyCodes == null) {
465 throw new IllegalArgumentException("keyCodes must not be null.");
466 }
Jeff Brown6d0fec22010-07-23 21:28:06 -0700467 if (keyExists == null || keyExists.length < keyCodes.length) {
468 throw new IllegalArgumentException("keyExists must not be null and must be at "
469 + "least as large as keyCodes.");
Jeff Brown46b9ac02010-04-22 18:58:52 -0700470 }
RoboErikfb290df2013-12-16 11:27:55 -0800471
Jeff Brown4532e612012-04-05 14:27:12 -0700472 return nativeHasKeys(mPtr, deviceId, sourceMask, keyCodes, keyExists);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700473 }
RoboErikfb290df2013-12-16 11:27:55 -0800474
Jeff Browna41ca772010-08-11 14:46:32 -0700475 /**
476 * Creates an input channel that will receive all input from the input dispatcher.
477 * @param inputChannelName The input channel name.
Arthur Hungbe5ce212018-09-13 18:41:56 +0800478 * @param displayId Target display id.
Jeff Browna41ca772010-08-11 14:46:32 -0700479 * @return The input channel.
480 */
Arthur Hungbe5ce212018-09-13 18:41:56 +0800481 public InputChannel monitorInput(String inputChannelName, int displayId) {
Jeff Browna41ca772010-08-11 14:46:32 -0700482 if (inputChannelName == null) {
483 throw new IllegalArgumentException("inputChannelName must not be null.");
484 }
RoboErikfb290df2013-12-16 11:27:55 -0800485
Arthur Hungbe5ce212018-09-13 18:41:56 +0800486 if (displayId < Display.DEFAULT_DISPLAY) {
487 throw new IllegalArgumentException("displayId must >= 0.");
488 }
489
Jeff Browna41ca772010-08-11 14:46:32 -0700490 InputChannel[] inputChannels = InputChannel.openInputChannelPair(inputChannelName);
Arthur Hungbe5ce212018-09-13 18:41:56 +0800491 // Register channel for monitor.
492 nativeRegisterInputChannel(mPtr, inputChannels[0], null, displayId);
Jeff Browna41ca772010-08-11 14:46:32 -0700493 inputChannels[0].dispose(); // don't need to retain the Java object reference
494 return inputChannels[1];
495 }
496
497 /**
498 * Registers an input channel so that it can be used as an input event target.
499 * @param inputChannel The input channel to register.
Jeff Brown928e0542011-01-10 11:17:36 -0800500 * @param inputWindowHandle The handle of the input window associated with the
501 * input channel, or null if none.
Jeff Browna41ca772010-08-11 14:46:32 -0700502 */
Jeff Brown928e0542011-01-10 11:17:36 -0800503 public void registerInputChannel(InputChannel inputChannel,
504 InputWindowHandle inputWindowHandle) {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700505 if (inputChannel == null) {
506 throw new IllegalArgumentException("inputChannel must not be null.");
507 }
RoboErikfb290df2013-12-16 11:27:55 -0800508
Arthur Hungbe5ce212018-09-13 18:41:56 +0800509 // Register channel for normal.
510 nativeRegisterInputChannel(mPtr, inputChannel, inputWindowHandle, Display.INVALID_DISPLAY);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700511 }
RoboErikfb290df2013-12-16 11:27:55 -0800512
Jeff Browna41ca772010-08-11 14:46:32 -0700513 /**
514 * Unregisters an input channel.
515 * @param inputChannel The input channel to unregister.
516 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700517 public void unregisterInputChannel(InputChannel inputChannel) {
518 if (inputChannel == null) {
519 throw new IllegalArgumentException("inputChannel must not be null.");
520 }
RoboErikfb290df2013-12-16 11:27:55 -0800521
Jeff Brown4532e612012-04-05 14:27:12 -0700522 nativeUnregisterInputChannel(mPtr, inputChannel);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700523 }
Jeff Brown0029c662011-03-30 02:25:18 -0700524
525 /**
526 * Sets an input filter that will receive all input events before they are dispatched.
527 * The input filter may then reinterpret input events or inject new ones.
528 *
529 * To ensure consistency, the input dispatcher automatically drops all events
530 * in progress whenever an input filter is installed or uninstalled. After an input
531 * filter is uninstalled, it can no longer send input events unless it is reinstalled.
532 * Any events it attempts to send after it has been uninstalled will be dropped.
533 *
534 * @param filter The input filter, or null to remove the current filter.
535 */
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -0700536 public void setInputFilter(IInputFilter filter) {
Jeff Brown0029c662011-03-30 02:25:18 -0700537 synchronized (mInputFilterLock) {
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -0700538 final IInputFilter oldFilter = mInputFilter;
Jeff Brown0029c662011-03-30 02:25:18 -0700539 if (oldFilter == filter) {
540 return; // nothing to do
541 }
542
543 if (oldFilter != null) {
544 mInputFilter = null;
545 mInputFilterHost.disconnectLocked();
546 mInputFilterHost = null;
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -0700547 try {
548 oldFilter.uninstall();
549 } catch (RemoteException re) {
550 /* ignore */
551 }
Jeff Brown0029c662011-03-30 02:25:18 -0700552 }
553
554 if (filter != null) {
555 mInputFilter = filter;
556 mInputFilterHost = new InputFilterHost();
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -0700557 try {
558 filter.install(mInputFilterHost);
559 } catch (RemoteException re) {
560 /* ignore */
561 }
Jeff Brown0029c662011-03-30 02:25:18 -0700562 }
563
Jeff Brown4532e612012-04-05 14:27:12 -0700564 nativeSetInputFilterEnabled(mPtr, filter != null);
Jeff Brown0029c662011-03-30 02:25:18 -0700565 }
566 }
567
Jeff Brown9f25b7f2012-04-10 14:30:49 -0700568 @Override // Binder call
Jeff Brownac143512012-04-05 18:57:33 -0700569 public boolean injectInputEvent(InputEvent event, int mode) {
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -0800570 return injectInputEventInternal(event, mode);
Jeff Brownca9bc702014-02-11 14:32:56 -0800571 }
572
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -0800573 private boolean injectInputEventInternal(InputEvent event, int mode) {
Jeff Brown7fbdc842010-06-17 20:52:56 -0700574 if (event == null) {
575 throw new IllegalArgumentException("event must not be null");
576 }
Jeff Brownac143512012-04-05 18:57:33 -0700577 if (mode != InputManager.INJECT_INPUT_EVENT_MODE_ASYNC
578 && mode != InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH
579 && mode != InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_RESULT) {
580 throw new IllegalArgumentException("mode is invalid");
Jeff Brown7fbdc842010-06-17 20:52:56 -0700581 }
Jeff Brown6ec402b2010-07-28 15:48:59 -0700582
Jeff Brownac143512012-04-05 18:57:33 -0700583 final int pid = Binder.getCallingPid();
584 final int uid = Binder.getCallingUid();
585 final long ident = Binder.clearCallingIdentity();
586 final int result;
587 try {
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -0800588 result = nativeInjectInputEvent(mPtr, event, pid, uid, mode,
Jeff Brownac143512012-04-05 18:57:33 -0700589 INJECTION_TIMEOUT_MILLIS, WindowManagerPolicy.FLAG_DISABLE_KEY_REPEAT);
590 } finally {
591 Binder.restoreCallingIdentity(ident);
592 }
593 switch (result) {
594 case INPUT_EVENT_INJECTION_PERMISSION_DENIED:
595 Slog.w(TAG, "Input event injection from pid " + pid + " permission denied.");
596 throw new SecurityException(
597 "Injecting to another application requires INJECT_EVENTS permission");
598 case INPUT_EVENT_INJECTION_SUCCEEDED:
599 return true;
600 case INPUT_EVENT_INJECTION_TIMED_OUT:
601 Slog.w(TAG, "Input event injection from pid " + pid + " timed out.");
602 return false;
603 case INPUT_EVENT_INJECTION_FAILED:
604 default:
605 Slog.w(TAG, "Input event injection from pid " + pid + " failed.");
606 return false;
607 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700608 }
Jeff Brown0029c662011-03-30 02:25:18 -0700609
Jeff Brown8d608662010-08-30 03:02:23 -0700610 /**
611 * Gets information about the input device with the specified id.
Craig Mautner2f39e9f2012-09-21 11:39:54 -0700612 * @param deviceId The device id.
Jeff Brown8d608662010-08-30 03:02:23 -0700613 * @return The input device or null if not found.
614 */
Jeff Brown9f25b7f2012-04-10 14:30:49 -0700615 @Override // Binder call
Jeff Brown8d608662010-08-30 03:02:23 -0700616 public InputDevice getInputDevice(int deviceId) {
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700617 synchronized (mInputDevicesLock) {
618 final int count = mInputDevices.length;
619 for (int i = 0; i < count; i++) {
620 final InputDevice inputDevice = mInputDevices[i];
621 if (inputDevice.getId() == deviceId) {
622 return inputDevice;
623 }
624 }
625 }
626 return null;
Jeff Brown8d608662010-08-30 03:02:23 -0700627 }
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700628
Siarhei Vishniakoua7f99b52017-03-21 17:39:40 -0700629 // Binder call
630 @Override
631 public boolean isInputDeviceEnabled(int deviceId) {
632 return nativeIsInputDeviceEnabled(mPtr, deviceId);
633 }
634
635 // Binder call
636 @Override
637 public void enableInputDevice(int deviceId) {
638 if (!checkCallingPermission(android.Manifest.permission.DISABLE_INPUT_DEVICE,
639 "enableInputDevice()")) {
640 throw new SecurityException("Requires DISABLE_INPUT_DEVICE permission");
641 }
642 nativeEnableInputDevice(mPtr, deviceId);
643 }
644
645 // Binder call
646 @Override
647 public void disableInputDevice(int deviceId) {
648 if (!checkCallingPermission(android.Manifest.permission.DISABLE_INPUT_DEVICE,
649 "disableInputDevice()")) {
650 throw new SecurityException("Requires DISABLE_INPUT_DEVICE permission");
651 }
652 nativeDisableInputDevice(mPtr, deviceId);
653 }
654
Jeff Brown8d608662010-08-30 03:02:23 -0700655 /**
656 * Gets the ids of all input devices in the system.
657 * @return The input device ids.
658 */
Jeff Brown9f25b7f2012-04-10 14:30:49 -0700659 @Override // Binder call
Jeff Brown8d608662010-08-30 03:02:23 -0700660 public int[] getInputDeviceIds() {
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700661 synchronized (mInputDevicesLock) {
662 final int count = mInputDevices.length;
663 int[] ids = new int[count];
664 for (int i = 0; i < count; i++) {
665 ids[i] = mInputDevices[i].getId();
666 }
667 return ids;
668 }
669 }
670
Jeff Browndaa37532012-05-01 15:54:03 -0700671 /**
672 * Gets all input devices in the system.
673 * @return The array of input devices.
674 */
675 public InputDevice[] getInputDevices() {
676 synchronized (mInputDevicesLock) {
677 return mInputDevices;
678 }
679 }
680
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700681 @Override // Binder call
682 public void registerInputDevicesChangedListener(IInputDevicesChangedListener listener) {
683 if (listener == null) {
684 throw new IllegalArgumentException("listener must not be null");
685 }
686
687 synchronized (mInputDevicesLock) {
688 int callingPid = Binder.getCallingPid();
689 if (mInputDevicesChangedListeners.get(callingPid) != null) {
690 throw new SecurityException("The calling process has already "
691 + "registered an InputDevicesChangedListener.");
692 }
693
694 InputDevicesChangedListenerRecord record =
695 new InputDevicesChangedListenerRecord(callingPid, listener);
696 try {
697 IBinder binder = listener.asBinder();
698 binder.linkToDeath(record, 0);
699 } catch (RemoteException ex) {
700 // give up
701 throw new RuntimeException(ex);
702 }
703
704 mInputDevicesChangedListeners.put(callingPid, record);
705 }
706 }
707
708 private void onInputDevicesChangedListenerDied(int pid) {
709 synchronized (mInputDevicesLock) {
710 mInputDevicesChangedListeners.remove(pid);
711 }
712 }
713
714 // Must be called on handler.
Jeff Browncf39bdf2012-05-18 14:41:19 -0700715 private void deliverInputDevicesChanged(InputDevice[] oldInputDevices) {
716 // Scan for changes.
717 int numFullKeyboardsAdded = 0;
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700718 mTempInputDevicesChangedListenersToNotify.clear();
Jeff Browncf39bdf2012-05-18 14:41:19 -0700719 mTempFullKeyboards.clear();
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700720 final int numListeners;
721 final int[] deviceIdAndGeneration;
722 synchronized (mInputDevicesLock) {
723 if (!mInputDevicesChangedPending) {
724 return;
725 }
726 mInputDevicesChangedPending = false;
727
728 numListeners = mInputDevicesChangedListeners.size();
729 for (int i = 0; i < numListeners; i++) {
730 mTempInputDevicesChangedListenersToNotify.add(
731 mInputDevicesChangedListeners.valueAt(i));
732 }
733
734 final int numDevices = mInputDevices.length;
735 deviceIdAndGeneration = new int[numDevices * 2];
736 for (int i = 0; i < numDevices; i++) {
737 final InputDevice inputDevice = mInputDevices[i];
738 deviceIdAndGeneration[i * 2] = inputDevice.getId();
739 deviceIdAndGeneration[i * 2 + 1] = inputDevice.getGeneration();
Jeff Browncf39bdf2012-05-18 14:41:19 -0700740
Jeff Brown7e4ff4b2012-05-30 14:32:16 -0700741 if (!inputDevice.isVirtual() && inputDevice.isFullKeyboard()) {
Jeff Browncf39bdf2012-05-18 14:41:19 -0700742 if (!containsInputDeviceWithDescriptor(oldInputDevices,
743 inputDevice.getDescriptor())) {
744 mTempFullKeyboards.add(numFullKeyboardsAdded++, inputDevice);
745 } else {
746 mTempFullKeyboards.add(inputDevice);
747 }
748 }
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700749 }
750 }
751
Jeff Browncf39bdf2012-05-18 14:41:19 -0700752 // Notify listeners.
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700753 for (int i = 0; i < numListeners; i++) {
754 mTempInputDevicesChangedListenersToNotify.get(i).notifyInputDevicesChanged(
755 deviceIdAndGeneration);
756 }
Jeff Browncf39bdf2012-05-18 14:41:19 -0700757 mTempInputDevicesChangedListenersToNotify.clear();
758
759 // Check for missing keyboard layouts.
Michael Wright07483422015-10-30 16:20:13 +0000760 List<InputDevice> keyboardsMissingLayout = new ArrayList<>();
761 final int numFullKeyboards = mTempFullKeyboards.size();
762 synchronized (mDataStore) {
763 for (int i = 0; i < numFullKeyboards; i++) {
764 final InputDevice inputDevice = mTempFullKeyboards.get(i);
765 String layout =
766 getCurrentKeyboardLayoutForInputDevice(inputDevice.getIdentifier());
767 if (layout == null) {
768 layout = getDefaultKeyboardLayout(inputDevice);
769 if (layout != null) {
770 setCurrentKeyboardLayoutForInputDevice(
771 inputDevice.getIdentifier(), layout);
Jeff Browncf39bdf2012-05-18 14:41:19 -0700772 }
773 }
Michael Wright07483422015-10-30 16:20:13 +0000774 if (layout == null) {
775 keyboardsMissingLayout.add(inputDevice);
776 }
Jeff Browncf39bdf2012-05-18 14:41:19 -0700777 }
Michael Wright07483422015-10-30 16:20:13 +0000778 }
779
780 if (mNotificationManager != null) {
781 if (!keyboardsMissingLayout.isEmpty()) {
782 if (keyboardsMissingLayout.size() > 1) {
783 // We have more than one keyboard missing a layout, so drop the
784 // user at the generic input methods page so they can pick which
785 // one to set.
786 showMissingKeyboardLayoutNotification(null);
787 } else {
788 showMissingKeyboardLayoutNotification(keyboardsMissingLayout.get(0));
Jeff Browncf39bdf2012-05-18 14:41:19 -0700789 }
790 } else if (mKeyboardLayoutNotificationShown) {
791 hideMissingKeyboardLayoutNotification();
792 }
793 }
794 mTempFullKeyboards.clear();
795 }
796
Michael Wright07483422015-10-30 16:20:13 +0000797 private String getDefaultKeyboardLayout(final InputDevice d) {
798 final Locale systemLocale = mContext.getResources().getConfiguration().locale;
799 // If our locale doesn't have a language for some reason, then we don't really have a
800 // reasonable default.
801 if (TextUtils.isEmpty(systemLocale.getLanguage())) {
802 return null;
803 }
804 final List<KeyboardLayout> layouts = new ArrayList<>();
805 visitAllKeyboardLayouts(new KeyboardLayoutVisitor() {
806 @Override
807 public void visitKeyboardLayout(Resources resources,
808 int keyboardLayoutResId, KeyboardLayout layout) {
809 // Only select a default when we know the layout is appropriate. For now, this
810 // means its a custom layout for a specific keyboard.
811 if (layout.getVendorId() != d.getVendorId()
812 || layout.getProductId() != d.getProductId()) {
813 return;
814 }
Yohei Yukawa5660fad2016-01-27 22:04:09 -0800815 final LocaleList locales = layout.getLocales();
816 final int numLocales = locales.size();
817 for (int localeIndex = 0; localeIndex < numLocales; ++localeIndex) {
818 if (isCompatibleLocale(systemLocale, locales.get(localeIndex))) {
Michael Wright07483422015-10-30 16:20:13 +0000819 layouts.add(layout);
820 break;
821 }
822 }
823 }
824 });
825
826 if (layouts.isEmpty()) {
827 return null;
828 }
829
830 // First sort so that ones with higher priority are listed at the top
831 Collections.sort(layouts);
832 // Next we want to try to find an exact match of language, country and variant.
833 final int N = layouts.size();
834 for (int i = 0; i < N; i++) {
835 KeyboardLayout layout = layouts.get(i);
Yohei Yukawa5660fad2016-01-27 22:04:09 -0800836 final LocaleList locales = layout.getLocales();
837 final int numLocales = locales.size();
838 for (int localeIndex = 0; localeIndex < numLocales; ++localeIndex) {
839 final Locale locale = locales.get(localeIndex);
840 if (locale.getCountry().equals(systemLocale.getCountry())
841 && locale.getVariant().equals(systemLocale.getVariant())) {
Michael Wright07483422015-10-30 16:20:13 +0000842 return layout.getDescriptor();
843 }
844 }
845 }
846 // Then try an exact match of language and country
847 for (int i = 0; i < N; i++) {
848 KeyboardLayout layout = layouts.get(i);
Yohei Yukawa5660fad2016-01-27 22:04:09 -0800849 final LocaleList locales = layout.getLocales();
850 final int numLocales = locales.size();
851 for (int localeIndex = 0; localeIndex < numLocales; ++localeIndex) {
852 final Locale locale = locales.get(localeIndex);
853 if (locale.getCountry().equals(systemLocale.getCountry())) {
Michael Wright07483422015-10-30 16:20:13 +0000854 return layout.getDescriptor();
855 }
856 }
857 }
858
859 // Give up and just use the highest priority layout with matching language
860 return layouts.get(0).getDescriptor();
861 }
862
863 private static boolean isCompatibleLocale(Locale systemLocale, Locale keyboardLocale) {
864 // Different languages are never compatible
865 if (!systemLocale.getLanguage().equals(keyboardLocale.getLanguage())) {
866 return false;
867 }
868 // If both the system and the keyboard layout have a country specifier, they must be equal.
869 if (!TextUtils.isEmpty(systemLocale.getCountry())
870 && !TextUtils.isEmpty(keyboardLocale.getCountry())
871 && !systemLocale.getCountry().equals(keyboardLocale.getCountry())) {
872 return false;
873 }
874 return true;
875 }
876
Jason Gerecke857aa7b2014-01-27 18:34:20 -0800877 @Override // Binder call & native callback
Jason Gerecked5220742014-03-10 09:47:59 -0700878 public TouchCalibration getTouchCalibrationForInputDevice(String inputDeviceDescriptor,
879 int surfaceRotation) {
Jason Gerecked6396d62014-01-27 18:30:37 -0800880 if (inputDeviceDescriptor == null) {
881 throw new IllegalArgumentException("inputDeviceDescriptor must not be null");
882 }
883
884 synchronized (mDataStore) {
Jason Gerecked5220742014-03-10 09:47:59 -0700885 return mDataStore.getTouchCalibration(inputDeviceDescriptor, surfaceRotation);
Jason Gerecked6396d62014-01-27 18:30:37 -0800886 }
887 }
888
889 @Override // Binder call
Jason Gerecked5220742014-03-10 09:47:59 -0700890 public void setTouchCalibrationForInputDevice(String inputDeviceDescriptor, int surfaceRotation,
Jason Gerecked6396d62014-01-27 18:30:37 -0800891 TouchCalibration calibration) {
892 if (!checkCallingPermission(android.Manifest.permission.SET_INPUT_CALIBRATION,
893 "setTouchCalibrationForInputDevice()")) {
894 throw new SecurityException("Requires SET_INPUT_CALIBRATION permission");
895 }
896 if (inputDeviceDescriptor == null) {
897 throw new IllegalArgumentException("inputDeviceDescriptor must not be null");
898 }
899 if (calibration == null) {
900 throw new IllegalArgumentException("calibration must not be null");
901 }
Jason Gerecked5220742014-03-10 09:47:59 -0700902 if (surfaceRotation < Surface.ROTATION_0 || surfaceRotation > Surface.ROTATION_270) {
903 throw new IllegalArgumentException("surfaceRotation value out of bounds");
904 }
Jason Gerecked6396d62014-01-27 18:30:37 -0800905
906 synchronized (mDataStore) {
907 try {
Jason Gerecked5220742014-03-10 09:47:59 -0700908 if (mDataStore.setTouchCalibration(inputDeviceDescriptor, surfaceRotation,
909 calibration)) {
Jason Gerecke857aa7b2014-01-27 18:34:20 -0800910 nativeReloadCalibration(mPtr);
911 }
Jason Gerecked6396d62014-01-27 18:30:37 -0800912 } finally {
913 mDataStore.saveIfNeeded();
914 }
915 }
916 }
917
Michael Wright39e5e942015-08-19 22:52:47 +0100918 @Override // Binder call
Michael Wright9209c9c2015-09-03 17:57:01 +0100919 public int isInTabletMode() {
920 if (!checkCallingPermission(android.Manifest.permission.TABLET_MODE,
921 "isInTabletMode()")) {
922 throw new SecurityException("Requires TABLET_MODE permission");
923 }
924 return getSwitchState(-1, InputDevice.SOURCE_ANY, SW_TABLET_MODE);
925 }
926
927 @Override // Binder call
Michael Wright39e5e942015-08-19 22:52:47 +0100928 public void registerTabletModeChangedListener(ITabletModeChangedListener listener) {
Michael Wright9209c9c2015-09-03 17:57:01 +0100929 if (!checkCallingPermission(android.Manifest.permission.TABLET_MODE,
Michael Wright39e5e942015-08-19 22:52:47 +0100930 "registerTabletModeChangedListener()")) {
931 throw new SecurityException("Requires TABLET_MODE_LISTENER permission");
932 }
933 if (listener == null) {
934 throw new IllegalArgumentException("listener must not be null");
935 }
936
937 synchronized (mTabletModeLock) {
938 final int callingPid = Binder.getCallingPid();
939 if (mTabletModeChangedListeners.get(callingPid) != null) {
940 throw new IllegalStateException("The calling process has already registered "
941 + "a TabletModeChangedListener.");
942 }
943 TabletModeChangedListenerRecord record =
944 new TabletModeChangedListenerRecord(callingPid, listener);
945 try {
946 IBinder binder = listener.asBinder();
947 binder.linkToDeath(record, 0);
948 } catch (RemoteException ex) {
949 throw new RuntimeException(ex);
950 }
951 mTabletModeChangedListeners.put(callingPid, record);
952 }
953 }
954
955 private void onTabletModeChangedListenerDied(int pid) {
956 synchronized (mTabletModeLock) {
957 mTabletModeChangedListeners.remove(pid);
958 }
959 }
960
961 // Must be called on handler
962 private void deliverTabletModeChanged(long whenNanos, boolean inTabletMode) {
963 mTempTabletModeChangedListenersToNotify.clear();
964 final int numListeners;
965 synchronized (mTabletModeLock) {
966 numListeners = mTabletModeChangedListeners.size();
967 for (int i = 0; i < numListeners; i++) {
968 mTempTabletModeChangedListenersToNotify.add(
969 mTabletModeChangedListeners.valueAt(i));
970 }
971 }
972 for (int i = 0; i < numListeners; i++) {
973 mTempTabletModeChangedListenersToNotify.get(i).notifyTabletModeChanged(
974 whenNanos, inTabletMode);
975 }
976 }
977
Jeff Browncf39bdf2012-05-18 14:41:19 -0700978 // Must be called on handler.
Michael Wrightc93fbd12014-09-22 20:07:59 -0700979 private void showMissingKeyboardLayoutNotification(InputDevice device) {
Jeff Browncf39bdf2012-05-18 14:41:19 -0700980 if (!mKeyboardLayoutNotificationShown) {
Yohei Yukawa2bff4902016-03-30 01:06:37 -0700981 final Intent intent = new Intent(Settings.ACTION_HARD_KEYBOARD_SETTINGS);
Michael Wrightc93fbd12014-09-22 20:07:59 -0700982 if (device != null) {
983 intent.putExtra(Settings.EXTRA_INPUT_DEVICE_IDENTIFIER, device.getIdentifier());
Jeff Browncf39bdf2012-05-18 14:41:19 -0700984 }
Michael Wrightc93fbd12014-09-22 20:07:59 -0700985 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
986 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
987 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
988 final PendingIntent keyboardLayoutIntent = PendingIntent.getActivityAsUser(mContext, 0,
989 intent, 0, null, UserHandle.CURRENT);
Jeff Browncf39bdf2012-05-18 14:41:19 -0700990
991 Resources r = mContext.getResources();
Geoffrey Pitschaf759c52017-02-15 09:35:38 -0500992 Notification notification =
993 new Notification.Builder(mContext, SystemNotificationChannels.PHYSICAL_KEYBOARD)
994 .setContentTitle(r.getString(
995 R.string.select_keyboard_layout_notification_title))
996 .setContentText(r.getString(
997 R.string.select_keyboard_layout_notification_message))
998 .setContentIntent(keyboardLayoutIntent)
999 .setSmallIcon(R.drawable.ic_settings_language)
1000 .setColor(mContext.getColor(
1001 com.android.internal.R.color.system_notification_accent_color))
1002 .build();
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07001003 mNotificationManager.notifyAsUser(null,
Chris Wren282cfef2017-03-27 15:01:44 -04001004 SystemMessage.NOTE_SELECT_KEYBOARD_LAYOUT,
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07001005 notification, UserHandle.ALL);
Jeff Browncf39bdf2012-05-18 14:41:19 -07001006 mKeyboardLayoutNotificationShown = true;
1007 }
1008 }
1009
1010 // Must be called on handler.
1011 private void hideMissingKeyboardLayoutNotification() {
1012 if (mKeyboardLayoutNotificationShown) {
1013 mKeyboardLayoutNotificationShown = false;
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07001014 mNotificationManager.cancelAsUser(null,
Chris Wren282cfef2017-03-27 15:01:44 -04001015 SystemMessage.NOTE_SELECT_KEYBOARD_LAYOUT,
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -07001016 UserHandle.ALL);
Jeff Browncf39bdf2012-05-18 14:41:19 -07001017 }
1018 }
1019
1020 // Must be called on handler.
1021 private void updateKeyboardLayouts() {
1022 // Scan all input devices state for keyboard layouts that have been uninstalled.
1023 final HashSet<String> availableKeyboardLayouts = new HashSet<String>();
1024 visitAllKeyboardLayouts(new KeyboardLayoutVisitor() {
1025 @Override
Michael Wright07483422015-10-30 16:20:13 +00001026 public void visitKeyboardLayout(Resources resources,
1027 int keyboardLayoutResId, KeyboardLayout layout) {
1028 availableKeyboardLayouts.add(layout.getDescriptor());
Jeff Browncf39bdf2012-05-18 14:41:19 -07001029 }
1030 });
1031 synchronized (mDataStore) {
1032 try {
1033 mDataStore.removeUninstalledKeyboardLayouts(availableKeyboardLayouts);
1034 } finally {
1035 mDataStore.saveIfNeeded();
1036 }
1037 }
1038
1039 // Reload keyboard layouts.
1040 reloadKeyboardLayouts();
1041 }
1042
Jeff Browncf39bdf2012-05-18 14:41:19 -07001043 private static boolean containsInputDeviceWithDescriptor(InputDevice[] inputDevices,
1044 String descriptor) {
1045 final int numDevices = inputDevices.length;
1046 for (int i = 0; i < numDevices; i++) {
1047 final InputDevice inputDevice = inputDevices[i];
1048 if (inputDevice.getDescriptor().equals(descriptor)) {
1049 return true;
1050 }
1051 }
1052 return false;
Jeff Brown8d608662010-08-30 03:02:23 -07001053 }
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001054
1055 @Override // Binder call
1056 public KeyboardLayout[] getKeyboardLayouts() {
Jeff Brown6ec6f792012-04-17 16:52:41 -07001057 final ArrayList<KeyboardLayout> list = new ArrayList<KeyboardLayout>();
1058 visitAllKeyboardLayouts(new KeyboardLayoutVisitor() {
1059 @Override
Michael Wright07483422015-10-30 16:20:13 +00001060 public void visitKeyboardLayout(Resources resources,
1061 int keyboardLayoutResId, KeyboardLayout layout) {
1062 list.add(layout);
1063 }
1064 });
1065 return list.toArray(new KeyboardLayout[list.size()]);
1066 }
1067
Michael Wrightb0e804a2016-01-04 16:48:53 -05001068 @Override // Binder call
Michael Wright07483422015-10-30 16:20:13 +00001069 public KeyboardLayout[] getKeyboardLayoutsForInputDevice(
1070 final InputDeviceIdentifier identifier) {
Michael Wrightb0e804a2016-01-04 16:48:53 -05001071 final String[] enabledLayoutDescriptors =
1072 getEnabledKeyboardLayoutsForInputDevice(identifier);
1073 final ArrayList<KeyboardLayout> enabledLayouts =
1074 new ArrayList<KeyboardLayout>(enabledLayoutDescriptors.length);
1075 final ArrayList<KeyboardLayout> potentialLayouts = new ArrayList<KeyboardLayout>();
Michael Wright07483422015-10-30 16:20:13 +00001076 visitAllKeyboardLayouts(new KeyboardLayoutVisitor() {
1077 boolean mHasSeenDeviceSpecificLayout;
1078
1079 @Override
1080 public void visitKeyboardLayout(Resources resources,
1081 int keyboardLayoutResId, KeyboardLayout layout) {
Michael Wrightb0e804a2016-01-04 16:48:53 -05001082 // First check if it's enabled. If the keyboard layout is enabled then we always
1083 // want to return it as a possible layout for the device.
1084 for (String s : enabledLayoutDescriptors) {
1085 if (s != null && s.equals(layout.getDescriptor())) {
1086 enabledLayouts.add(layout);
1087 return;
1088 }
1089 }
1090 // Next find any potential layouts that aren't yet enabled for the device. For
1091 // devices that have special layouts we assume there's a reason that the generic
1092 // layouts don't work for them so we don't want to return them since it's likely
1093 // to result in a poor user experience.
Michael Wright07483422015-10-30 16:20:13 +00001094 if (layout.getVendorId() == identifier.getVendorId()
1095 && layout.getProductId() == identifier.getProductId()) {
1096 if (!mHasSeenDeviceSpecificLayout) {
1097 mHasSeenDeviceSpecificLayout = true;
Michael Wrightb0e804a2016-01-04 16:48:53 -05001098 potentialLayouts.clear();
Michael Wright07483422015-10-30 16:20:13 +00001099 }
Michael Wrightb0e804a2016-01-04 16:48:53 -05001100 potentialLayouts.add(layout);
Michael Wright07483422015-10-30 16:20:13 +00001101 } else if (layout.getVendorId() == -1 && layout.getProductId() == -1
1102 && !mHasSeenDeviceSpecificLayout) {
Michael Wrightb0e804a2016-01-04 16:48:53 -05001103 potentialLayouts.add(layout);
Michael Wright07483422015-10-30 16:20:13 +00001104 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001105 }
1106 });
Michael Wrightb0e804a2016-01-04 16:48:53 -05001107 final int enabledLayoutSize = enabledLayouts.size();
1108 final int potentialLayoutSize = potentialLayouts.size();
1109 KeyboardLayout[] layouts = new KeyboardLayout[enabledLayoutSize + potentialLayoutSize];
1110 enabledLayouts.toArray(layouts);
1111 for (int i = 0; i < potentialLayoutSize; i++) {
1112 layouts[enabledLayoutSize + i] = potentialLayouts.get(i);
1113 }
1114 return layouts;
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001115 }
1116
1117 @Override // Binder call
1118 public KeyboardLayout getKeyboardLayout(String keyboardLayoutDescriptor) {
1119 if (keyboardLayoutDescriptor == null) {
1120 throw new IllegalArgumentException("keyboardLayoutDescriptor must not be null");
1121 }
1122
Jeff Brown6ec6f792012-04-17 16:52:41 -07001123 final KeyboardLayout[] result = new KeyboardLayout[1];
1124 visitKeyboardLayout(keyboardLayoutDescriptor, new KeyboardLayoutVisitor() {
1125 @Override
Michael Wright07483422015-10-30 16:20:13 +00001126 public void visitKeyboardLayout(Resources resources,
1127 int keyboardLayoutResId, KeyboardLayout layout) {
1128 result[0] = layout;
Jeff Brown6ec6f792012-04-17 16:52:41 -07001129 }
1130 });
1131 if (result[0] == null) {
Michael Wright07483422015-10-30 16:20:13 +00001132 Slog.w(TAG, "Could not get keyboard layout with descriptor '"
Jeff Brown6ec6f792012-04-17 16:52:41 -07001133 + keyboardLayoutDescriptor + "'.");
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001134 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001135 return result[0];
1136 }
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001137
Jeff Brown6ec6f792012-04-17 16:52:41 -07001138 private void visitAllKeyboardLayouts(KeyboardLayoutVisitor visitor) {
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001139 final PackageManager pm = mContext.getPackageManager();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001140 Intent intent = new Intent(InputManager.ACTION_QUERY_KEYBOARD_LAYOUTS);
1141 for (ResolveInfo resolveInfo : pm.queryBroadcastReceivers(intent,
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001142 PackageManager.GET_META_DATA | PackageManager.MATCH_DIRECT_BOOT_AWARE
1143 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE)) {
Michael Wright8ebac232014-09-18 18:29:49 -07001144 final ActivityInfo activityInfo = resolveInfo.activityInfo;
1145 final int priority = resolveInfo.priority;
1146 visitKeyboardLayoutsInPackage(pm, activityInfo, null, priority, visitor);
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001147 }
1148 }
1149
Jeff Brown6ec6f792012-04-17 16:52:41 -07001150 private void visitKeyboardLayout(String keyboardLayoutDescriptor,
1151 KeyboardLayoutVisitor visitor) {
1152 KeyboardLayoutDescriptor d = KeyboardLayoutDescriptor.parse(keyboardLayoutDescriptor);
1153 if (d != null) {
1154 final PackageManager pm = mContext.getPackageManager();
1155 try {
1156 ActivityInfo receiver = pm.getReceiverInfo(
1157 new ComponentName(d.packageName, d.receiverName),
Jeff Sharkey5217cac2015-12-20 15:34:01 -07001158 PackageManager.GET_META_DATA
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001159 | PackageManager.MATCH_DIRECT_BOOT_AWARE
1160 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE);
Michael Wright8ebac232014-09-18 18:29:49 -07001161 visitKeyboardLayoutsInPackage(pm, receiver, d.keyboardLayoutName, 0, visitor);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001162 } catch (NameNotFoundException ex) {
1163 }
1164 }
1165 }
1166
1167 private void visitKeyboardLayoutsInPackage(PackageManager pm, ActivityInfo receiver,
Michael Wright8ebac232014-09-18 18:29:49 -07001168 String keyboardName, int requestedPriority, KeyboardLayoutVisitor visitor) {
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001169 Bundle metaData = receiver.metaData;
1170 if (metaData == null) {
Jeff Brown6ec6f792012-04-17 16:52:41 -07001171 return;
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001172 }
1173
1174 int configResId = metaData.getInt(InputManager.META_DATA_KEYBOARD_LAYOUTS);
1175 if (configResId == 0) {
Michael Wright07483422015-10-30 16:20:13 +00001176 Slog.w(TAG, "Missing meta-data '" + InputManager.META_DATA_KEYBOARD_LAYOUTS
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001177 + "' on receiver " + receiver.packageName + "/" + receiver.name);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001178 return;
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001179 }
1180
Jeff Brownd9fec5d2012-05-17 16:01:54 -07001181 CharSequence receiverLabel = receiver.loadLabel(pm);
1182 String collection = receiverLabel != null ? receiverLabel.toString() : "";
Michael Wright8ebac232014-09-18 18:29:49 -07001183 int priority;
1184 if ((receiver.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
1185 priority = requestedPriority;
1186 } else {
1187 priority = 0;
1188 }
Jeff Brownd9fec5d2012-05-17 16:01:54 -07001189
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001190 try {
1191 Resources resources = pm.getResourcesForApplication(receiver.applicationInfo);
1192 XmlResourceParser parser = resources.getXml(configResId);
1193 try {
1194 XmlUtils.beginDocument(parser, "keyboard-layouts");
1195
1196 for (;;) {
1197 XmlUtils.nextElement(parser);
1198 String element = parser.getName();
1199 if (element == null) {
1200 break;
1201 }
1202 if (element.equals("keyboard-layout")) {
1203 TypedArray a = resources.obtainAttributes(
1204 parser, com.android.internal.R.styleable.KeyboardLayout);
1205 try {
1206 String name = a.getString(
1207 com.android.internal.R.styleable.KeyboardLayout_name);
1208 String label = a.getString(
1209 com.android.internal.R.styleable.KeyboardLayout_label);
Jeff Brown2f095762012-05-10 21:29:33 -07001210 int keyboardLayoutResId = a.getResourceId(
1211 com.android.internal.R.styleable.KeyboardLayout_keyboardLayout,
1212 0);
Michael Wright07483422015-10-30 16:20:13 +00001213 String languageTags = a.getString(
1214 com.android.internal.R.styleable.KeyboardLayout_locale);
Yohei Yukawa5660fad2016-01-27 22:04:09 -08001215 LocaleList locales = getLocalesFromLanguageTags(languageTags);
Michael Wright07483422015-10-30 16:20:13 +00001216 int vid = a.getInt(
1217 com.android.internal.R.styleable.KeyboardLayout_vendorId, -1);
1218 int pid = a.getInt(
1219 com.android.internal.R.styleable.KeyboardLayout_productId, -1);
1220
Jeff Brown2f095762012-05-10 21:29:33 -07001221 if (name == null || label == null || keyboardLayoutResId == 0) {
Michael Wright07483422015-10-30 16:20:13 +00001222 Slog.w(TAG, "Missing required 'name', 'label' or 'keyboardLayout' "
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001223 + "attributes in keyboard layout "
1224 + "resource from receiver "
1225 + receiver.packageName + "/" + receiver.name);
1226 } else {
1227 String descriptor = KeyboardLayoutDescriptor.format(
1228 receiver.packageName, receiver.name, name);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001229 if (keyboardName == null || name.equals(keyboardName)) {
Michael Wright07483422015-10-30 16:20:13 +00001230 KeyboardLayout layout = new KeyboardLayout(
1231 descriptor, label, collection, priority,
1232 locales, vid, pid);
1233 visitor.visitKeyboardLayout(
1234 resources, keyboardLayoutResId, layout);
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001235 }
1236 }
1237 } finally {
1238 a.recycle();
1239 }
1240 } else {
Michael Wright07483422015-10-30 16:20:13 +00001241 Slog.w(TAG, "Skipping unrecognized element '" + element
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001242 + "' in keyboard layout resource from receiver "
1243 + receiver.packageName + "/" + receiver.name);
1244 }
1245 }
1246 } finally {
1247 parser.close();
1248 }
1249 } catch (Exception ex) {
Michael Wright07483422015-10-30 16:20:13 +00001250 Slog.w(TAG, "Could not parse keyboard layout resource from receiver "
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001251 + receiver.packageName + "/" + receiver.name, ex);
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001252 }
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001253 }
1254
Yohei Yukawa5660fad2016-01-27 22:04:09 -08001255 @NonNull
1256 private static LocaleList getLocalesFromLanguageTags(String languageTags) {
Michael Wright07483422015-10-30 16:20:13 +00001257 if (TextUtils.isEmpty(languageTags)) {
Yohei Yukawa5660fad2016-01-27 22:04:09 -08001258 return LocaleList.getEmptyLocaleList();
Michael Wright07483422015-10-30 16:20:13 +00001259 }
Yohei Yukawa5660fad2016-01-27 22:04:09 -08001260 return LocaleList.forLanguageTags(languageTags.replace('|', ','));
Michael Wright07483422015-10-30 16:20:13 +00001261 }
1262
RoboErikfb290df2013-12-16 11:27:55 -08001263 /**
1264 * Builds a layout descriptor for the vendor/product. This returns the
1265 * descriptor for ids that aren't useful (such as the default 0, 0).
1266 */
1267 private String getLayoutDescriptor(InputDeviceIdentifier identifier) {
1268 if (identifier == null || identifier.getDescriptor() == null) {
1269 throw new IllegalArgumentException("identifier and descriptor must not be null");
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001270 }
1271
RoboErikfb290df2013-12-16 11:27:55 -08001272 if (identifier.getVendorId() == 0 && identifier.getProductId() == 0) {
1273 return identifier.getDescriptor();
1274 }
1275 StringBuilder bob = new StringBuilder();
1276 bob.append("vendor:").append(identifier.getVendorId());
1277 bob.append(",product:").append(identifier.getProductId());
1278 return bob.toString();
1279 }
1280
1281 @Override // Binder call
1282 public String getCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier) {
1283
1284 String key = getLayoutDescriptor(identifier);
Jeff Browna3bc5652012-04-17 11:42:25 -07001285 synchronized (mDataStore) {
RoboErikfb290df2013-12-16 11:27:55 -08001286 String layout = null;
1287 // try loading it using the layout descriptor if we have it
1288 layout = mDataStore.getCurrentKeyboardLayout(key);
1289 if (layout == null && !key.equals(identifier.getDescriptor())) {
1290 // if it doesn't exist fall back to the device descriptor
1291 layout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor());
1292 }
1293 if (DEBUG) {
1294 Slog.d(TAG, "Loaded keyboard layout id for " + key + " and got "
1295 + layout);
1296 }
1297 return layout;
Jeff Browna3bc5652012-04-17 11:42:25 -07001298 }
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001299 }
1300
1301 @Override // Binder call
RoboErikfb290df2013-12-16 11:27:55 -08001302 public void setCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier,
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001303 String keyboardLayoutDescriptor) {
1304 if (!checkCallingPermission(android.Manifest.permission.SET_KEYBOARD_LAYOUT,
Jeff Browncf39bdf2012-05-18 14:41:19 -07001305 "setCurrentKeyboardLayoutForInputDevice()")) {
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001306 throw new SecurityException("Requires SET_KEYBOARD_LAYOUT permission");
1307 }
Jeff Browncf39bdf2012-05-18 14:41:19 -07001308 if (keyboardLayoutDescriptor == null) {
1309 throw new IllegalArgumentException("keyboardLayoutDescriptor must not be null");
1310 }
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001311
RoboErikfb290df2013-12-16 11:27:55 -08001312 String key = getLayoutDescriptor(identifier);
Jeff Browna3bc5652012-04-17 11:42:25 -07001313 synchronized (mDataStore) {
1314 try {
RoboErikfb290df2013-12-16 11:27:55 -08001315 if (mDataStore.setCurrentKeyboardLayout(key, keyboardLayoutDescriptor)) {
1316 if (DEBUG) {
1317 Slog.d(TAG, "Saved keyboard layout using " + key);
1318 }
Jeff Browncf39bdf2012-05-18 14:41:19 -07001319 mHandler.sendEmptyMessage(MSG_RELOAD_KEYBOARD_LAYOUTS);
1320 }
Jeff Browna3bc5652012-04-17 11:42:25 -07001321 } finally {
1322 mDataStore.saveIfNeeded();
1323 }
1324 }
Jeff Browncf39bdf2012-05-18 14:41:19 -07001325 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001326
Jeff Browncf39bdf2012-05-18 14:41:19 -07001327 @Override // Binder call
Michael Wright07483422015-10-30 16:20:13 +00001328 public String[] getEnabledKeyboardLayoutsForInputDevice(InputDeviceIdentifier identifier) {
RoboErikfb290df2013-12-16 11:27:55 -08001329 String key = getLayoutDescriptor(identifier);
Jeff Browncf39bdf2012-05-18 14:41:19 -07001330 synchronized (mDataStore) {
RoboErikfb290df2013-12-16 11:27:55 -08001331 String[] layouts = mDataStore.getKeyboardLayouts(key);
1332 if ((layouts == null || layouts.length == 0)
1333 && !key.equals(identifier.getDescriptor())) {
1334 layouts = mDataStore.getKeyboardLayouts(identifier.getDescriptor());
1335 }
1336 return layouts;
Jeff Browncf39bdf2012-05-18 14:41:19 -07001337 }
1338 }
1339
1340 @Override // Binder call
RoboErikfb290df2013-12-16 11:27:55 -08001341 public void addKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier,
Jeff Browncf39bdf2012-05-18 14:41:19 -07001342 String keyboardLayoutDescriptor) {
1343 if (!checkCallingPermission(android.Manifest.permission.SET_KEYBOARD_LAYOUT,
1344 "addKeyboardLayoutForInputDevice()")) {
1345 throw new SecurityException("Requires SET_KEYBOARD_LAYOUT permission");
1346 }
Jeff Browncf39bdf2012-05-18 14:41:19 -07001347 if (keyboardLayoutDescriptor == null) {
1348 throw new IllegalArgumentException("keyboardLayoutDescriptor must not be null");
1349 }
1350
RoboErikfb290df2013-12-16 11:27:55 -08001351 String key = getLayoutDescriptor(identifier);
Jeff Browncf39bdf2012-05-18 14:41:19 -07001352 synchronized (mDataStore) {
1353 try {
RoboErikfb290df2013-12-16 11:27:55 -08001354 String oldLayout = mDataStore.getCurrentKeyboardLayout(key);
1355 if (oldLayout == null && !key.equals(identifier.getDescriptor())) {
1356 oldLayout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor());
1357 }
1358 if (mDataStore.addKeyboardLayout(key, keyboardLayoutDescriptor)
Yohei Yukawa2d9accb2018-03-07 19:15:15 -08001359 && !Objects.equals(oldLayout,
1360 mDataStore.getCurrentKeyboardLayout(key))) {
Jeff Browncf39bdf2012-05-18 14:41:19 -07001361 mHandler.sendEmptyMessage(MSG_RELOAD_KEYBOARD_LAYOUTS);
1362 }
1363 } finally {
1364 mDataStore.saveIfNeeded();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001365 }
Jeff Browncf39bdf2012-05-18 14:41:19 -07001366 }
1367 }
1368
1369 @Override // Binder call
RoboErikfb290df2013-12-16 11:27:55 -08001370 public void removeKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier,
Jeff Browncf39bdf2012-05-18 14:41:19 -07001371 String keyboardLayoutDescriptor) {
1372 if (!checkCallingPermission(android.Manifest.permission.SET_KEYBOARD_LAYOUT,
1373 "removeKeyboardLayoutForInputDevice()")) {
1374 throw new SecurityException("Requires SET_KEYBOARD_LAYOUT permission");
1375 }
Jeff Browncf39bdf2012-05-18 14:41:19 -07001376 if (keyboardLayoutDescriptor == null) {
1377 throw new IllegalArgumentException("keyboardLayoutDescriptor must not be null");
1378 }
1379
RoboErikfb290df2013-12-16 11:27:55 -08001380 String key = getLayoutDescriptor(identifier);
Jeff Browncf39bdf2012-05-18 14:41:19 -07001381 synchronized (mDataStore) {
1382 try {
RoboErikfb290df2013-12-16 11:27:55 -08001383 String oldLayout = mDataStore.getCurrentKeyboardLayout(key);
1384 if (oldLayout == null && !key.equals(identifier.getDescriptor())) {
1385 oldLayout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor());
1386 }
1387 boolean removed = mDataStore.removeKeyboardLayout(key, keyboardLayoutDescriptor);
1388 if (!key.equals(identifier.getDescriptor())) {
1389 // We need to remove from both places to ensure it is gone
1390 removed |= mDataStore.removeKeyboardLayout(identifier.getDescriptor(),
1391 keyboardLayoutDescriptor);
1392 }
Narayan Kamath607223f2018-02-19 14:09:02 +00001393 if (removed && !Objects.equals(oldLayout,
RoboErikfb290df2013-12-16 11:27:55 -08001394 mDataStore.getCurrentKeyboardLayout(key))) {
Jeff Browncf39bdf2012-05-18 14:41:19 -07001395 mHandler.sendEmptyMessage(MSG_RELOAD_KEYBOARD_LAYOUTS);
1396 }
1397 } finally {
1398 mDataStore.saveIfNeeded();
1399 }
1400 }
1401 }
1402
Yohei Yukawa2d9accb2018-03-07 19:15:15 -08001403 public void switchKeyboardLayout(int deviceId, int direction) {
1404 mHandler.obtainMessage(MSG_SWITCH_KEYBOARD_LAYOUT, deviceId, direction).sendToTarget();
Jeff Browncf39bdf2012-05-18 14:41:19 -07001405 }
1406
1407 // Must be called on handler.
Yohei Yukawa2d9accb2018-03-07 19:15:15 -08001408 private void handleSwitchKeyboardLayout(int deviceId, int direction) {
1409 final InputDevice device = getInputDevice(deviceId);
1410 if (device != null) {
1411 final boolean changed;
1412 final String keyboardLayoutDescriptor;
1413
1414 String key = getLayoutDescriptor(device.getIdentifier());
1415 synchronized (mDataStore) {
1416 try {
1417 changed = mDataStore.switchKeyboardLayout(key, direction);
1418 keyboardLayoutDescriptor = mDataStore.getCurrentKeyboardLayout(
1419 key);
1420 } finally {
1421 mDataStore.saveIfNeeded();
Jeff Browncf39bdf2012-05-18 14:41:19 -07001422 }
Yohei Yukawa2d9accb2018-03-07 19:15:15 -08001423 }
1424
1425 if (changed) {
1426 if (mSwitchedKeyboardLayoutToast != null) {
1427 mSwitchedKeyboardLayoutToast.cancel();
1428 mSwitchedKeyboardLayoutToast = null;
1429 }
1430 if (keyboardLayoutDescriptor != null) {
1431 KeyboardLayout keyboardLayout = getKeyboardLayout(keyboardLayoutDescriptor);
1432 if (keyboardLayout != null) {
1433 mSwitchedKeyboardLayoutToast = Toast.makeText(
1434 mContext, keyboardLayout.getLabel(), Toast.LENGTH_SHORT);
1435 mSwitchedKeyboardLayoutToast.show();
Jeff Browncf39bdf2012-05-18 14:41:19 -07001436 }
1437 }
Yohei Yukawa2d9accb2018-03-07 19:15:15 -08001438
1439 reloadKeyboardLayouts();
Jeff Browncf39bdf2012-05-18 14:41:19 -07001440 }
Jeff Brown6ec6f792012-04-17 16:52:41 -07001441 }
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001442 }
1443
Tiger Huang1e5b10a2018-07-30 20:19:51 +08001444 public void setInputWindows(InputWindowHandle[] windowHandles, int displayId) {
Arthur Hung39134b22018-08-14 11:58:28 +08001445 nativeSetInputWindows(mPtr, windowHandles, displayId);
Jeff Brown349703e2010-06-22 01:27:15 -07001446 }
RoboErikfb290df2013-12-16 11:27:55 -08001447
Tiger Huang1e5b10a2018-07-30 20:19:51 +08001448 public void setFocusedApplication(int displayId, InputApplicationHandle application) {
1449 nativeSetFocusedApplication(mPtr, displayId, application);
1450 }
1451
1452 public void setFocusedWindow(InputWindowHandle focusedWindowHandle) {
1453 final IWindow newFocusedWindow =
1454 focusedWindowHandle != null ? focusedWindowHandle.clientWindow : null;
1455 if (mFocusedWindow != newFocusedWindow) {
1456 if (mFocusedWindowHasCapture) {
1457 setPointerCapture(false);
1458 }
1459 mFocusedWindow = newFocusedWindow;
1460 }
1461 }
1462
1463 public void setFocusedDisplay(int displayId) {
1464 nativeSetFocusedDisplay(mPtr, displayId);
Jeff Brown349703e2010-06-22 01:27:15 -07001465 }
RoboErikfb290df2013-12-16 11:27:55 -08001466
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -08001467 @Override
1468 public void requestPointerCapture(IBinder windowToken, boolean enabled) {
1469 if (mFocusedWindow == null || mFocusedWindow.asBinder() != windowToken) {
1470 Slog.e(TAG, "requestPointerCapture called for a window that has no focus: "
1471 + windowToken);
1472 return;
1473 }
1474 if (mFocusedWindowHasCapture == enabled) {
1475 Slog.i(TAG, "requestPointerCapture: already " + (enabled ? "enabled" : "disabled"));
1476 return;
1477 }
1478 setPointerCapture(enabled);
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -08001479 }
1480
1481 private void setPointerCapture(boolean enabled) {
Tiger Huang1e5b10a2018-07-30 20:19:51 +08001482 if (mFocusedWindowHasCapture != enabled) {
1483 mFocusedWindowHasCapture = enabled;
1484 try {
1485 mFocusedWindow.dispatchPointerCaptureChanged(enabled);
1486 } catch (RemoteException ex) {
1487 /* ignore */
1488 }
1489 nativeSetPointerCapture(mPtr, enabled);
1490 }
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -08001491 }
1492
Jeff Brown349703e2010-06-22 01:27:15 -07001493 public void setInputDispatchMode(boolean enabled, boolean frozen) {
Jeff Brown4532e612012-04-05 14:27:12 -07001494 nativeSetInputDispatchMode(mPtr, enabled, frozen);
Jeff Brown349703e2010-06-22 01:27:15 -07001495 }
Jeff Brown05dc66a2011-03-02 14:41:58 -08001496
1497 public void setSystemUiVisibility(int visibility) {
Jeff Brown4532e612012-04-05 14:27:12 -07001498 nativeSetSystemUiVisibility(mPtr, visibility);
Jeff Brown05dc66a2011-03-02 14:41:58 -08001499 }
1500
Jeff Browne6504122010-09-27 14:52:15 -07001501 /**
1502 * Atomically transfers touch focus from one window to another as identified by
1503 * their input channels. It is possible for multiple windows to have
1504 * touch focus if they support split touch dispatch
1505 * {@link android.view.WindowManager.LayoutParams#FLAG_SPLIT_TOUCH} but this
1506 * method only transfers touch focus of the specified window without affecting
1507 * other windows that may also have touch focus at the same time.
1508 * @param fromChannel The channel of a window that currently has touch focus.
1509 * @param toChannel The channel of the window that should receive touch focus in
1510 * place of the first.
1511 * @return True if the transfer was successful. False if the window with the
1512 * specified channel did not actually have touch focus at the time of the request.
1513 */
1514 public boolean transferTouchFocus(InputChannel fromChannel, InputChannel toChannel) {
1515 if (fromChannel == null) {
1516 throw new IllegalArgumentException("fromChannel must not be null.");
1517 }
1518 if (toChannel == null) {
1519 throw new IllegalArgumentException("toChannel must not be null.");
1520 }
Jeff Brown4532e612012-04-05 14:27:12 -07001521 return nativeTransferTouchFocus(mPtr, fromChannel, toChannel);
Jeff Browne6504122010-09-27 14:52:15 -07001522 }
Jeff Brown05dc66a2011-03-02 14:41:58 -08001523
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001524 @Override // Binder call
Jeff Brownac143512012-04-05 18:57:33 -07001525 public void tryPointerSpeed(int speed) {
1526 if (!checkCallingPermission(android.Manifest.permission.SET_POINTER_SPEED,
1527 "tryPointerSpeed()")) {
1528 throw new SecurityException("Requires SET_POINTER_SPEED permission");
1529 }
1530
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001531 if (speed < InputManager.MIN_POINTER_SPEED || speed > InputManager.MAX_POINTER_SPEED) {
1532 throw new IllegalArgumentException("speed out of range");
1533 }
1534
Jeff Brownac143512012-04-05 18:57:33 -07001535 setPointerSpeedUnchecked(speed);
Jeff Brown1a84fd12011-06-02 01:26:32 -07001536 }
1537
1538 public void updatePointerSpeedFromSettings() {
Jeff Brownac143512012-04-05 18:57:33 -07001539 int speed = getPointerSpeedSetting();
1540 setPointerSpeedUnchecked(speed);
1541 }
1542
1543 private void setPointerSpeedUnchecked(int speed) {
1544 speed = Math.min(Math.max(speed, InputManager.MIN_POINTER_SPEED),
1545 InputManager.MAX_POINTER_SPEED);
1546 nativeSetPointerSpeed(mPtr, speed);
Jeff Brown1a84fd12011-06-02 01:26:32 -07001547 }
1548
1549 private void registerPointerSpeedSettingObserver() {
1550 mContext.getContentResolver().registerContentObserver(
1551 Settings.System.getUriFor(Settings.System.POINTER_SPEED), true,
Jeff Brown4532e612012-04-05 14:27:12 -07001552 new ContentObserver(mHandler) {
Jeff Brown1a84fd12011-06-02 01:26:32 -07001553 @Override
1554 public void onChange(boolean selfChange) {
1555 updatePointerSpeedFromSettings();
1556 }
Jeff Brownd4935962012-09-25 13:27:20 -07001557 }, UserHandle.USER_ALL);
Jeff Brown1a84fd12011-06-02 01:26:32 -07001558 }
1559
Jeff Brownac143512012-04-05 18:57:33 -07001560 private int getPointerSpeedSetting() {
1561 int speed = InputManager.DEFAULT_POINTER_SPEED;
Jeff Brown1a84fd12011-06-02 01:26:32 -07001562 try {
Jeff Brownd4935962012-09-25 13:27:20 -07001563 speed = Settings.System.getIntForUser(mContext.getContentResolver(),
1564 Settings.System.POINTER_SPEED, UserHandle.USER_CURRENT);
Jeff Brown1a84fd12011-06-02 01:26:32 -07001565 } catch (SettingNotFoundException snfe) {
1566 }
1567 return speed;
1568 }
1569
Jeff Browndaf4a122011-08-26 17:14:14 -07001570 public void updateShowTouchesFromSettings() {
1571 int setting = getShowTouchesSetting(0);
Jeff Brown4532e612012-04-05 14:27:12 -07001572 nativeSetShowTouches(mPtr, setting != 0);
Jeff Browndaf4a122011-08-26 17:14:14 -07001573 }
1574
1575 private void registerShowTouchesSettingObserver() {
1576 mContext.getContentResolver().registerContentObserver(
1577 Settings.System.getUriFor(Settings.System.SHOW_TOUCHES), true,
Jeff Brown4532e612012-04-05 14:27:12 -07001578 new ContentObserver(mHandler) {
Jeff Browndaf4a122011-08-26 17:14:14 -07001579 @Override
1580 public void onChange(boolean selfChange) {
1581 updateShowTouchesFromSettings();
1582 }
Jeff Brownd4935962012-09-25 13:27:20 -07001583 }, UserHandle.USER_ALL);
Jeff Browndaf4a122011-08-26 17:14:14 -07001584 }
1585
Jun Mukaie4e75da2015-12-15 16:19:20 -08001586 public void updateAccessibilityLargePointerFromSettings() {
1587 final int accessibilityConfig = Settings.Secure.getIntForUser(
1588 mContext.getContentResolver(), Settings.Secure.ACCESSIBILITY_LARGE_POINTER_ICON,
1589 0, UserHandle.USER_CURRENT);
Jun Mukai1f3dbff2015-12-16 14:41:25 -08001590 PointerIcon.setUseLargeIcons(accessibilityConfig == 1);
Jun Mukaie4e75da2015-12-15 16:19:20 -08001591 nativeReloadPointerIcons(mPtr);
1592 }
1593
Jun Mukai19a56012015-11-24 11:25:52 -08001594 private void registerAccessibilityLargePointerSettingObserver() {
1595 mContext.getContentResolver().registerContentObserver(
1596 Settings.Secure.getUriFor(Settings.Secure.ACCESSIBILITY_LARGE_POINTER_ICON), true,
1597 new ContentObserver(mHandler) {
1598 @Override
1599 public void onChange(boolean selfChange) {
Jun Mukaie4e75da2015-12-15 16:19:20 -08001600 updateAccessibilityLargePointerFromSettings();
Jun Mukai19a56012015-11-24 11:25:52 -08001601 }
1602 }, UserHandle.USER_ALL);
1603 }
1604
Jeff Browndaf4a122011-08-26 17:14:14 -07001605 private int getShowTouchesSetting(int defaultValue) {
1606 int result = defaultValue;
1607 try {
Jeff Brownd4935962012-09-25 13:27:20 -07001608 result = Settings.System.getIntForUser(mContext.getContentResolver(),
1609 Settings.System.SHOW_TOUCHES, UserHandle.USER_CURRENT);
Jeff Browndaf4a122011-08-26 17:14:14 -07001610 } catch (SettingNotFoundException snfe) {
1611 }
1612 return result;
1613 }
1614
Jeff Browna47425a2012-04-13 04:09:27 -07001615 // Binder call
1616 @Override
1617 public void vibrate(int deviceId, long[] pattern, int repeat, IBinder token) {
1618 if (repeat >= pattern.length) {
1619 throw new ArrayIndexOutOfBoundsException();
1620 }
1621
1622 VibratorToken v;
1623 synchronized (mVibratorLock) {
1624 v = mVibratorTokens.get(token);
1625 if (v == null) {
1626 v = new VibratorToken(deviceId, token, mNextVibratorTokenValue++);
1627 try {
1628 token.linkToDeath(v, 0);
1629 } catch (RemoteException ex) {
1630 // give up
1631 throw new RuntimeException(ex);
1632 }
1633 mVibratorTokens.put(token, v);
1634 }
1635 }
1636
1637 synchronized (v) {
1638 v.mVibrating = true;
1639 nativeVibrate(mPtr, deviceId, pattern, repeat, v.mTokenValue);
1640 }
1641 }
1642
1643 // Binder call
1644 @Override
1645 public void cancelVibrate(int deviceId, IBinder token) {
1646 VibratorToken v;
1647 synchronized (mVibratorLock) {
1648 v = mVibratorTokens.get(token);
1649 if (v == null || v.mDeviceId != deviceId) {
1650 return; // nothing to cancel
1651 }
1652 }
1653
1654 cancelVibrateIfNeeded(v);
1655 }
1656
1657 void onVibratorTokenDied(VibratorToken v) {
1658 synchronized (mVibratorLock) {
1659 mVibratorTokens.remove(v.mToken);
1660 }
1661
1662 cancelVibrateIfNeeded(v);
1663 }
1664
1665 private void cancelVibrateIfNeeded(VibratorToken v) {
1666 synchronized (v) {
1667 if (v.mVibrating) {
1668 nativeCancelVibrate(mPtr, v.mDeviceId, v.mTokenValue);
1669 v.mVibrating = false;
1670 }
1671 }
1672 }
1673
Jun Mukai19a56012015-11-24 11:25:52 -08001674 // Binder call
1675 @Override
Michael Wrightf9d9ce772016-05-13 17:44:16 +01001676 public void setPointerIconType(int iconId) {
1677 nativeSetPointerIconType(mPtr, iconId);
Jun Mukai19a56012015-11-24 11:25:52 -08001678 }
Jun Mukai1db53972015-09-11 18:08:31 -07001679
Jun Mukaid4eaef72015-10-30 15:54:33 -07001680 // Binder call
1681 @Override
1682 public void setCustomPointerIcon(PointerIcon icon) {
Michael Wrightb004b512017-01-18 18:09:29 +00001683 Preconditions.checkNotNull(icon);
Jun Mukaid4eaef72015-10-30 15:54:33 -07001684 nativeSetCustomPointerIcon(mPtr, icon);
1685 }
1686
Jeff Brown4532e612012-04-05 14:27:12 -07001687 @Override
Yohei Yukawa2d9accb2018-03-07 19:15:15 -08001688 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06001689 if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return;
Jeff Brown4532e612012-04-05 14:27:12 -07001690
1691 pw.println("INPUT MANAGER (dumpsys input)\n");
1692 String dumpStr = nativeDump(mPtr);
Jeff Browne33348b2010-07-15 23:54:05 -07001693 if (dumpStr != null) {
1694 pw.println(dumpStr);
1695 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07001696 }
Jeff Brownb4ff35d2011-01-02 16:37:43 -08001697
Jeff Brownac143512012-04-05 18:57:33 -07001698 private boolean checkCallingPermission(String permission, String func) {
1699 // Quick check: if the calling permission is me, it's all okay.
1700 if (Binder.getCallingPid() == Process.myPid()) {
1701 return true;
1702 }
1703
1704 if (mContext.checkCallingPermission(permission) == PackageManager.PERMISSION_GRANTED) {
1705 return true;
1706 }
1707 String msg = "Permission Denial: " + func + " from pid="
1708 + Binder.getCallingPid()
1709 + ", uid=" + Binder.getCallingUid()
1710 + " requires " + permission;
1711 Slog.w(TAG, msg);
1712 return false;
1713 }
1714
Jeff Brown4532e612012-04-05 14:27:12 -07001715 // Called by the heartbeat to ensure locks are not held indefinitely (for deadlock detection).
Craig Mautner2f39e9f2012-09-21 11:39:54 -07001716 @Override
Jeff Brown89ef0722011-08-10 16:25:21 -07001717 public void monitor() {
1718 synchronized (mInputFilterLock) { }
Jeff Brown4532e612012-04-05 14:27:12 -07001719 nativeMonitor(mPtr);
Jeff Brown89ef0722011-08-10 16:25:21 -07001720 }
1721
Andrii Kulianed76e742017-06-26 14:57:02 -07001722 // Binder call
1723 @Override
1724 public IInputForwarder createInputForwarder(int displayId) throws RemoteException {
1725 if (!checkCallingPermission(android.Manifest.permission.INJECT_EVENTS,
1726 "createInputForwarder()")) {
1727 throw new SecurityException("Requires INJECT_EVENTS permission");
1728 }
1729 final DisplayManager displayManager = mContext.getSystemService(DisplayManager.class);
1730 final Display display = displayManager.getDisplay(displayId);
1731 if (display == null) {
1732 throw new IllegalArgumentException(
1733 "Can't create input forwarder for non-existent displayId: " + displayId);
1734 }
1735 final int callingUid = Binder.getCallingUid();
1736 final int displayOwnerUid = display.getOwnerUid();
1737 if (callingUid != displayOwnerUid) {
1738 throw new SecurityException(
1739 "Only owner of the display can forward input events to it.");
1740 }
1741
1742 return new InputForwarder(displayId);
1743 }
1744
Jeff Brown4532e612012-04-05 14:27:12 -07001745 // Native callback.
1746 private void notifyConfigurationChanged(long whenNanos) {
Jeff Browna9d131c2012-09-20 16:48:17 -07001747 mWindowManagerCallbacks.notifyConfigurationChanged();
Jeff Brown4532e612012-04-05 14:27:12 -07001748 }
1749
1750 // Native callback.
Jeff Brownaf9e8d32012-04-12 17:32:48 -07001751 private void notifyInputDevicesChanged(InputDevice[] inputDevices) {
1752 synchronized (mInputDevicesLock) {
Jeff Brownaf9e8d32012-04-12 17:32:48 -07001753 if (!mInputDevicesChangedPending) {
1754 mInputDevicesChangedPending = true;
Jeff Browncf39bdf2012-05-18 14:41:19 -07001755 mHandler.obtainMessage(MSG_DELIVER_INPUT_DEVICES_CHANGED,
1756 mInputDevices).sendToTarget();
Jeff Brownaf9e8d32012-04-12 17:32:48 -07001757 }
Jeff Browncf39bdf2012-05-18 14:41:19 -07001758
1759 mInputDevices = inputDevices;
Jeff Brownaf9e8d32012-04-12 17:32:48 -07001760 }
1761 }
1762
1763 // Native callback.
Jeff Brownbcc046a2012-09-27 20:46:43 -07001764 private void notifySwitch(long whenNanos, int switchValues, int switchMask) {
1765 if (DEBUG) {
1766 Slog.d(TAG, "notifySwitch: values=" + Integer.toHexString(switchValues)
1767 + ", mask=" + Integer.toHexString(switchMask));
1768 }
1769
Craig Mautner2f39e9f2012-09-21 11:39:54 -07001770 if ((switchMask & SW_LID_BIT) != 0) {
1771 final boolean lidOpen = ((switchValues & SW_LID_BIT) == 0);
Jeff Brownbcc046a2012-09-27 20:46:43 -07001772 mWindowManagerCallbacks.notifyLidSwitchChanged(whenNanos, lidOpen);
Jeff Brown53384282012-08-20 20:16:01 -07001773 }
Craig Mautner2f39e9f2012-09-21 11:39:54 -07001774
Michael Wright3818c922014-09-02 13:59:07 -07001775 if ((switchMask & SW_CAMERA_LENS_COVER_BIT) != 0) {
Michael Wright9e10d252014-09-13 19:41:20 -07001776 final boolean lensCovered = ((switchValues & SW_CAMERA_LENS_COVER_BIT) != 0);
Michael Wright3818c922014-09-02 13:59:07 -07001777 mWindowManagerCallbacks.notifyCameraLensCoverSwitchChanged(whenNanos, lensCovered);
1778 }
1779
Craig Mautner2f39e9f2012-09-21 11:39:54 -07001780 if (mUseDevInputEventForAudioJack && (switchMask & SW_JACK_BITS) != 0) {
1781 mWiredAccessoryCallbacks.notifyWiredAccessoryChanged(whenNanos, switchValues,
1782 switchMask);
1783 }
Michael Wright39e5e942015-08-19 22:52:47 +01001784
Michael Wright9209c9c2015-09-03 17:57:01 +01001785 if ((switchMask & SW_TABLET_MODE_BIT) != 0) {
Michael Wright39e5e942015-08-19 22:52:47 +01001786 SomeArgs args = SomeArgs.obtain();
1787 args.argi1 = (int) (whenNanos & 0xFFFFFFFF);
1788 args.argi2 = (int) (whenNanos >> 32);
1789 args.arg1 = Boolean.valueOf((switchValues & SW_TABLET_MODE_BIT) != 0);
1790 mHandler.obtainMessage(MSG_DELIVER_TABLET_MODE_CHANGED,
1791 args).sendToTarget();
1792 }
Jeff Brown4532e612012-04-05 14:27:12 -07001793 }
1794
1795 // Native callback.
1796 private void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) {
Jeff Browna9d131c2012-09-20 16:48:17 -07001797 mWindowManagerCallbacks.notifyInputChannelBroken(inputWindowHandle);
Jeff Brown4532e612012-04-05 14:27:12 -07001798 }
1799
1800 // Native callback.
1801 private long notifyANR(InputApplicationHandle inputApplicationHandle,
Jeff Brownbd181bb2013-09-10 16:44:24 -07001802 InputWindowHandle inputWindowHandle, String reason) {
1803 return mWindowManagerCallbacks.notifyANR(
1804 inputApplicationHandle, inputWindowHandle, reason);
Jeff Brown4532e612012-04-05 14:27:12 -07001805 }
1806
1807 // Native callback.
1808 final boolean filterInputEvent(InputEvent event, int policyFlags) {
1809 synchronized (mInputFilterLock) {
1810 if (mInputFilter != null) {
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07001811 try {
1812 mInputFilter.filterInputEvent(event, policyFlags);
1813 } catch (RemoteException e) {
1814 /* ignore */
1815 }
Jeff Brown4532e612012-04-05 14:27:12 -07001816 return false;
1817 }
1818 }
1819 event.recycle();
1820 return true;
1821 }
1822
1823 // Native callback.
Jeff Brown037c33e2014-04-09 00:31:55 -07001824 private int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
1825 return mWindowManagerCallbacks.interceptKeyBeforeQueueing(event, policyFlags);
Jeff Brown4532e612012-04-05 14:27:12 -07001826 }
1827
1828 // Native callback.
Michael Wright70af00a2014-09-03 19:30:20 -07001829 private int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
1830 return mWindowManagerCallbacks.interceptMotionBeforeQueueingNonInteractive(
Jeff Brown26875502014-01-30 21:47:47 -08001831 whenNanos, policyFlags);
Jeff Brown4532e612012-04-05 14:27:12 -07001832 }
1833
1834 // Native callback.
1835 private long interceptKeyBeforeDispatching(InputWindowHandle focus,
1836 KeyEvent event, int policyFlags) {
Jeff Browna9d131c2012-09-20 16:48:17 -07001837 return mWindowManagerCallbacks.interceptKeyBeforeDispatching(focus, event, policyFlags);
Jeff Brown4532e612012-04-05 14:27:12 -07001838 }
1839
1840 // Native callback.
1841 private KeyEvent dispatchUnhandledKey(InputWindowHandle focus,
1842 KeyEvent event, int policyFlags) {
Jeff Browna9d131c2012-09-20 16:48:17 -07001843 return mWindowManagerCallbacks.dispatchUnhandledKey(focus, event, policyFlags);
Jeff Brown4532e612012-04-05 14:27:12 -07001844 }
1845
1846 // Native callback.
1847 private boolean checkInjectEventsPermission(int injectorPid, int injectorUid) {
1848 return mContext.checkPermission(android.Manifest.permission.INJECT_EVENTS,
1849 injectorPid, injectorUid) == PackageManager.PERMISSION_GRANTED;
1850 }
1851
1852 // Native callback.
1853 private int getVirtualKeyQuietTimeMillis() {
1854 return mContext.getResources().getInteger(
1855 com.android.internal.R.integer.config_virtualKeyQuietTimeMillis);
1856 }
1857
1858 // Native callback.
1859 private String[] getExcludedDeviceNames() {
1860 ArrayList<String> names = new ArrayList<String>();
1861
1862 // Read partner-provided list of excluded input devices
1863 XmlPullParser parser = null;
1864 // Environment.getRootDirectory() is a fancy way of saying ANDROID_ROOT or "/system".
Tsukasa Hashimotoea12b552018-09-11 16:47:22 +09001865 final File[] baseDirs = {
1866 Environment.getRootDirectory(),
1867 Environment.getVendorDirectory()
1868 };
1869 for (File baseDir: baseDirs) {
1870 File confFile = new File(baseDir, EXCLUDED_DEVICES_PATH);
1871 FileReader confreader = null;
1872 try {
1873 confreader = new FileReader(confFile);
1874 parser = Xml.newPullParser();
1875 parser.setInput(confreader);
1876 XmlUtils.beginDocument(parser, "devices");
Jeff Brown4532e612012-04-05 14:27:12 -07001877
Tsukasa Hashimotoea12b552018-09-11 16:47:22 +09001878 while (true) {
1879 XmlUtils.nextElement(parser);
1880 if (!"device".equals(parser.getName())) {
1881 break;
1882 }
1883 String name = parser.getAttributeValue(null, "name");
1884 if (name != null) {
1885 names.add(name);
1886 }
Jeff Brown4532e612012-04-05 14:27:12 -07001887 }
Tsukasa Hashimotoea12b552018-09-11 16:47:22 +09001888 } catch (FileNotFoundException e) {
1889 // It's ok if the file does not exist.
1890 } catch (Exception e) {
1891 Slog.e(TAG, "Exception while parsing '" + confFile.getAbsolutePath() + "'", e);
1892 } finally {
1893 try { if (confreader != null) confreader.close(); } catch (IOException e) { }
Jeff Brown4532e612012-04-05 14:27:12 -07001894 }
Jeff Brown4532e612012-04-05 14:27:12 -07001895 }
1896
1897 return names.toArray(new String[names.size()]);
1898 }
1899
1900 // Native callback.
1901 private int getKeyRepeatTimeout() {
1902 return ViewConfiguration.getKeyRepeatTimeout();
1903 }
1904
1905 // Native callback.
1906 private int getKeyRepeatDelay() {
1907 return ViewConfiguration.getKeyRepeatDelay();
1908 }
1909
1910 // Native callback.
1911 private int getHoverTapTimeout() {
1912 return ViewConfiguration.getHoverTapTimeout();
1913 }
1914
1915 // Native callback.
1916 private int getHoverTapSlop() {
1917 return ViewConfiguration.getHoverTapSlop();
1918 }
1919
1920 // Native callback.
1921 private int getDoubleTapTimeout() {
1922 return ViewConfiguration.getDoubleTapTimeout();
1923 }
1924
1925 // Native callback.
1926 private int getLongPressTimeout() {
1927 return ViewConfiguration.getLongPressTimeout();
1928 }
1929
1930 // Native callback.
1931 private int getPointerLayer() {
Jeff Browna9d131c2012-09-20 16:48:17 -07001932 return mWindowManagerCallbacks.getPointerLayer();
Jeff Brown4532e612012-04-05 14:27:12 -07001933 }
1934
1935 // Native callback.
1936 private PointerIcon getPointerIcon() {
1937 return PointerIcon.getDefaultIcon(mContext);
1938 }
1939
Jeff Brown6ec6f792012-04-17 16:52:41 -07001940 // Native callback.
RoboErikfb290df2013-12-16 11:27:55 -08001941 private String[] getKeyboardLayoutOverlay(InputDeviceIdentifier identifier) {
Jeff Brown6ec6f792012-04-17 16:52:41 -07001942 if (!mSystemReady) {
1943 return null;
1944 }
1945
RoboErikfb290df2013-12-16 11:27:55 -08001946 String keyboardLayoutDescriptor = getCurrentKeyboardLayoutForInputDevice(identifier);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001947 if (keyboardLayoutDescriptor == null) {
1948 return null;
1949 }
1950
1951 final String[] result = new String[2];
1952 visitKeyboardLayout(keyboardLayoutDescriptor, new KeyboardLayoutVisitor() {
1953 @Override
Michael Wright07483422015-10-30 16:20:13 +00001954 public void visitKeyboardLayout(Resources resources,
1955 int keyboardLayoutResId, KeyboardLayout layout) {
Jeff Brown6ec6f792012-04-17 16:52:41 -07001956 try {
Michael Wright07483422015-10-30 16:20:13 +00001957 result[0] = layout.getDescriptor();
Jeff Brown6ec6f792012-04-17 16:52:41 -07001958 result[1] = Streams.readFully(new InputStreamReader(
Jeff Brown2f095762012-05-10 21:29:33 -07001959 resources.openRawResource(keyboardLayoutResId)));
Jeff Brown6ec6f792012-04-17 16:52:41 -07001960 } catch (IOException ex) {
1961 } catch (NotFoundException ex) {
1962 }
1963 }
1964 });
1965 if (result[0] == null) {
Michael Wright07483422015-10-30 16:20:13 +00001966 Slog.w(TAG, "Could not get keyboard layout with descriptor '"
Jeff Brown6ec6f792012-04-17 16:52:41 -07001967 + keyboardLayoutDescriptor + "'.");
1968 return null;
1969 }
1970 return result;
1971 }
1972
Jeff Brown5bbd4b42012-04-20 19:28:00 -07001973 // Native callback.
1974 private String getDeviceAlias(String uniqueId) {
Matthew Xie96313142012-06-29 16:57:31 -07001975 if (BluetoothAdapter.checkBluetoothAddress(uniqueId)) {
1976 // TODO(BT) mBluetoothService.getRemoteAlias(uniqueId)
1977 return null;
Jeff Brown5bbd4b42012-04-20 19:28:00 -07001978 }
1979 return null;
1980 }
1981
Jeff Brown4532e612012-04-05 14:27:12 -07001982 /**
1983 * Callback interface implemented by the Window Manager.
1984 */
Jeff Browna9d131c2012-09-20 16:48:17 -07001985 public interface WindowManagerCallbacks {
Jeff Brown4532e612012-04-05 14:27:12 -07001986 public void notifyConfigurationChanged();
1987
1988 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen);
1989
Michael Wright3818c922014-09-02 13:59:07 -07001990 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered);
1991
Jeff Brown4532e612012-04-05 14:27:12 -07001992 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle);
1993
1994 public long notifyANR(InputApplicationHandle inputApplicationHandle,
Jeff Brownbd181bb2013-09-10 16:44:24 -07001995 InputWindowHandle inputWindowHandle, String reason);
Jeff Brown4532e612012-04-05 14:27:12 -07001996
Jeff Brown037c33e2014-04-09 00:31:55 -07001997 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags);
Jeff Brown4532e612012-04-05 14:27:12 -07001998
Michael Wright70af00a2014-09-03 19:30:20 -07001999 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags);
Jeff Brown4532e612012-04-05 14:27:12 -07002000
2001 public long interceptKeyBeforeDispatching(InputWindowHandle focus,
2002 KeyEvent event, int policyFlags);
2003
2004 public KeyEvent dispatchUnhandledKey(InputWindowHandle focus,
2005 KeyEvent event, int policyFlags);
2006
2007 public int getPointerLayer();
2008 }
2009
2010 /**
Craig Mautner2f39e9f2012-09-21 11:39:54 -07002011 * Callback interface implemented by WiredAccessoryObserver.
2012 */
2013 public interface WiredAccessoryCallbacks {
2014 public void notifyWiredAccessoryChanged(long whenNanos, int switchValues, int switchMask);
Eric Laurent4a5eeb92014-05-06 10:49:04 -07002015 public void systemReady();
Craig Mautner2f39e9f2012-09-21 11:39:54 -07002016 }
2017
2018 /**
Jeff Brownaf9e8d32012-04-12 17:32:48 -07002019 * Private handler for the input manager.
2020 */
2021 private final class InputManagerHandler extends Handler {
Jeff Browna9d131c2012-09-20 16:48:17 -07002022 public InputManagerHandler(Looper looper) {
2023 super(looper, null, true /*async*/);
Jeff Browna2910d02012-08-25 12:29:46 -07002024 }
2025
Jeff Brownaf9e8d32012-04-12 17:32:48 -07002026 @Override
2027 public void handleMessage(Message msg) {
2028 switch (msg.what) {
2029 case MSG_DELIVER_INPUT_DEVICES_CHANGED:
Jeff Browncf39bdf2012-05-18 14:41:19 -07002030 deliverInputDevicesChanged((InputDevice[])msg.obj);
2031 break;
Yohei Yukawa2d9accb2018-03-07 19:15:15 -08002032 case MSG_SWITCH_KEYBOARD_LAYOUT:
2033 handleSwitchKeyboardLayout(msg.arg1, msg.arg2);
Jeff Browncf39bdf2012-05-18 14:41:19 -07002034 break;
2035 case MSG_RELOAD_KEYBOARD_LAYOUTS:
2036 reloadKeyboardLayouts();
2037 break;
2038 case MSG_UPDATE_KEYBOARD_LAYOUTS:
2039 updateKeyboardLayouts();
2040 break;
2041 case MSG_RELOAD_DEVICE_ALIASES:
2042 reloadDeviceAliases();
Jeff Brownaf9e8d32012-04-12 17:32:48 -07002043 break;
Yohei Yukawa19a40002018-03-07 19:15:38 -08002044 case MSG_DELIVER_TABLET_MODE_CHANGED:
Michael Wright39e5e942015-08-19 22:52:47 +01002045 SomeArgs args = (SomeArgs) msg.obj;
2046 long whenNanos = (args.argi1 & 0xFFFFFFFFl) | ((long) args.argi2 << 32);
2047 boolean inTabletMode = (boolean) args.arg1;
2048 deliverTabletModeChanged(whenNanos, inTabletMode);
2049 break;
Jeff Brownaf9e8d32012-04-12 17:32:48 -07002050 }
2051 }
2052 }
2053
2054 /**
Jeff Brown4532e612012-04-05 14:27:12 -07002055 * Hosting interface for input filters to call back into the input manager.
2056 */
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07002057 private final class InputFilterHost extends IInputFilterHost.Stub {
Jeff Brown0029c662011-03-30 02:25:18 -07002058 private boolean mDisconnected;
2059
2060 public void disconnectLocked() {
2061 mDisconnected = true;
2062 }
2063
Craig Mautner2f39e9f2012-09-21 11:39:54 -07002064 @Override
Jeff Brown0029c662011-03-30 02:25:18 -07002065 public void sendInputEvent(InputEvent event, int policyFlags) {
2066 if (event == null) {
2067 throw new IllegalArgumentException("event must not be null");
2068 }
2069
2070 synchronized (mInputFilterLock) {
2071 if (!mDisconnected) {
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -08002072 nativeInjectInputEvent(mPtr, event, 0, 0,
Jeff Brownac143512012-04-05 18:57:33 -07002073 InputManager.INJECT_INPUT_EVENT_MODE_ASYNC, 0,
Jeff Brown0029c662011-03-30 02:25:18 -07002074 policyFlags | WindowManagerPolicy.FLAG_FILTERED);
2075 }
2076 }
2077 }
2078 }
Jeff Brown9f25b7f2012-04-10 14:30:49 -07002079
2080 private static final class KeyboardLayoutDescriptor {
2081 public String packageName;
2082 public String receiverName;
2083 public String keyboardLayoutName;
2084
2085 public static String format(String packageName,
2086 String receiverName, String keyboardName) {
2087 return packageName + "/" + receiverName + "/" + keyboardName;
2088 }
2089
2090 public static KeyboardLayoutDescriptor parse(String descriptor) {
2091 int pos = descriptor.indexOf('/');
2092 if (pos < 0 || pos + 1 == descriptor.length()) {
2093 return null;
2094 }
2095 int pos2 = descriptor.indexOf('/', pos + 1);
2096 if (pos2 < pos + 2 || pos2 + 1 == descriptor.length()) {
2097 return null;
2098 }
2099
2100 KeyboardLayoutDescriptor result = new KeyboardLayoutDescriptor();
2101 result.packageName = descriptor.substring(0, pos);
2102 result.receiverName = descriptor.substring(pos + 1, pos2);
2103 result.keyboardLayoutName = descriptor.substring(pos2 + 1);
2104 return result;
2105 }
2106 }
Jeff Brownaf9e8d32012-04-12 17:32:48 -07002107
Jeff Brown6ec6f792012-04-17 16:52:41 -07002108 private interface KeyboardLayoutVisitor {
Michael Wright07483422015-10-30 16:20:13 +00002109 void visitKeyboardLayout(Resources resources,
2110 int keyboardLayoutResId, KeyboardLayout layout);
Jeff Brown6ec6f792012-04-17 16:52:41 -07002111 }
2112
Jeff Brownaf9e8d32012-04-12 17:32:48 -07002113 private final class InputDevicesChangedListenerRecord implements DeathRecipient {
2114 private final int mPid;
2115 private final IInputDevicesChangedListener mListener;
2116
2117 public InputDevicesChangedListenerRecord(int pid, IInputDevicesChangedListener listener) {
2118 mPid = pid;
2119 mListener = listener;
2120 }
2121
2122 @Override
2123 public void binderDied() {
2124 if (DEBUG) {
2125 Slog.d(TAG, "Input devices changed listener for pid " + mPid + " died.");
2126 }
2127 onInputDevicesChangedListenerDied(mPid);
2128 }
2129
2130 public void notifyInputDevicesChanged(int[] info) {
2131 try {
2132 mListener.onInputDevicesChanged(info);
2133 } catch (RemoteException ex) {
2134 Slog.w(TAG, "Failed to notify process "
2135 + mPid + " that input devices changed, assuming it died.", ex);
2136 binderDied();
2137 }
2138 }
2139 }
Jeff Browna47425a2012-04-13 04:09:27 -07002140
Michael Wright39e5e942015-08-19 22:52:47 +01002141 private final class TabletModeChangedListenerRecord implements DeathRecipient {
2142 private final int mPid;
2143 private final ITabletModeChangedListener mListener;
2144
2145 public TabletModeChangedListenerRecord(int pid, ITabletModeChangedListener listener) {
2146 mPid = pid;
2147 mListener = listener;
2148 }
2149
2150 @Override
2151 public void binderDied() {
2152 if (DEBUG) {
2153 Slog.d(TAG, "Tablet mode changed listener for pid " + mPid + " died.");
2154 }
2155 onTabletModeChangedListenerDied(mPid);
2156 }
2157
2158 public void notifyTabletModeChanged(long whenNanos, boolean inTabletMode) {
2159 try {
2160 mListener.onTabletModeChanged(whenNanos, inTabletMode);
2161 } catch (RemoteException ex) {
2162 Slog.w(TAG, "Failed to notify process " + mPid +
2163 " that tablet mode changed, assuming it died.", ex);
2164 binderDied();
2165 }
2166 }
2167 }
2168
Jeff Browna47425a2012-04-13 04:09:27 -07002169 private final class VibratorToken implements DeathRecipient {
2170 public final int mDeviceId;
2171 public final IBinder mToken;
2172 public final int mTokenValue;
2173
2174 public boolean mVibrating;
2175
2176 public VibratorToken(int deviceId, IBinder token, int tokenValue) {
2177 mDeviceId = deviceId;
2178 mToken = token;
2179 mTokenValue = tokenValue;
2180 }
2181
2182 @Override
2183 public void binderDied() {
2184 if (DEBUG) {
2185 Slog.d(TAG, "Vibrator token died.");
2186 }
2187 onVibratorTokenDied(this);
2188 }
2189 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08002190
2191 private final class LocalService extends InputManagerInternal {
2192 @Override
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01002193 public void setDisplayViewports(List<DisplayViewport> viewports) {
2194 setDisplayViewportsInternal(viewports);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002195 }
Jeff Brownca9bc702014-02-11 14:32:56 -08002196
2197 @Override
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -08002198 public boolean injectInputEvent(InputEvent event, int mode) {
2199 return injectInputEventInternal(event, mode);
Jeff Brownca9bc702014-02-11 14:32:56 -08002200 }
Jeff Brown037c33e2014-04-09 00:31:55 -07002201
2202 @Override
2203 public void setInteractive(boolean interactive) {
2204 nativeSetInteractive(mPtr, interactive);
2205 }
Yohei Yukawab097b822015-12-01 10:43:08 -08002206
2207 @Override
Andrii Kulian112d0562016-03-08 10:44:22 -08002208 public void toggleCapsLock(int deviceId) {
2209 nativeToggleCapsLock(mPtr, deviceId);
2210 }
Adrian Roos99182342016-06-15 15:30:46 -07002211
2212 @Override
2213 public void setPulseGestureEnabled(boolean enabled) {
2214 if (mDoubleTouchGestureEnableFile != null) {
2215 FileWriter writer = null;
2216 try {
2217 writer = new FileWriter(mDoubleTouchGestureEnableFile);
2218 writer.write(enabled ? "1" : "0");
2219 } catch (IOException e) {
2220 Log.wtf(TAG, "Unable to setPulseGestureEnabled", e);
2221 } finally {
2222 IoUtils.closeQuietly(writer);
2223 }
2224 }
2225 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08002226 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002227}