blob: 35c6583ed222591659fae8c9d597174773f7c78d [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
17#define LOG_TAG "InputManager-JNI"
18
Jeff Brown9c3cda02010-06-15 01:31:58 -070019//#define LOG_NDEBUG 0
20
21// Log debug messages about InputReaderPolicy
Jeff Brown349703e2010-06-22 01:27:15 -070022#define DEBUG_INPUT_READER_POLICY 0
Jeff Brown9c3cda02010-06-15 01:31:58 -070023
24// Log debug messages about InputDispatcherPolicy
Jeff Brown349703e2010-06-22 01:27:15 -070025#define DEBUG_INPUT_DISPATCHER_POLICY 0
Jeff Brown9c3cda02010-06-15 01:31:58 -070026
Jeff Brown83c09682010-12-23 17:50:18 -080027
Jeff Brown46b9ac02010-04-22 18:58:52 -070028#include "JNIHelp.h"
29#include "jni.h"
Jeff Brown349703e2010-06-22 01:27:15 -070030#include <limits.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070031#include <android_runtime/AndroidRuntime.h>
Ruben Brunk87eac992013-09-09 17:44:59 -070032#include <android_runtime/Log.h>
Jeff Brownb4ff35d2011-01-02 16:37:43 -080033
Jeff Brown46b9ac02010-04-22 18:58:52 -070034#include <utils/Log.h>
Jeff Brown05dc66a2011-03-02 14:41:58 -080035#include <utils/Looper.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070036#include <utils/threads.h>
Jeff Brown83c09682010-12-23 17:50:18 -080037
Jeff Brownb4ff35d2011-01-02 16:37:43 -080038#include <input/PointerController.h>
Jeff Brown5541de92011-04-11 11:54:25 -070039#include <input/SpriteController.h>
Jeff Brownb4ff35d2011-01-02 16:37:43 -080040
Michael Wrightd6b473712014-02-10 15:56:36 -080041#include <inputflinger/InputManager.h>
42
Jeff Brown05dc66a2011-03-02 14:41:58 -080043#include <android_os_MessageQueue.h>
Jeff Brown9f25b7f2012-04-10 14:30:49 -070044#include <android_view_InputDevice.h>
Jeff Brownb4ff35d2011-01-02 16:37:43 -080045#include <android_view_KeyEvent.h>
46#include <android_view_MotionEvent.h>
47#include <android_view_InputChannel.h>
Jeff Brown2352b972011-04-12 22:39:53 -070048#include <android_view_PointerIcon.h>
Jeff Brownb4ff35d2011-01-02 16:37:43 -080049#include <android/graphics/GraphicsJNI.h>
50
Jeff Brown6ec6f792012-04-17 16:52:41 -070051#include <ScopedLocalRef.h>
Jason Gerecke857aa7b2014-01-27 18:34:20 -080052#include <ScopedPrimitiveArray.h>
Jeff Brown6ec6f792012-04-17 16:52:41 -070053#include <ScopedUtfChars.h>
54
Jeff Brown4f8ecd82012-06-18 18:29:13 -070055#include "com_android_server_power_PowerManagerService.h"
Jeff Brown4532e612012-04-05 14:27:12 -070056#include "com_android_server_input_InputApplicationHandle.h"
57#include "com_android_server_input_InputWindowHandle.h"
Jeff Brown46b9ac02010-04-22 18:58:52 -070058
59namespace android {
60
Jeff Brown1a84fd12011-06-02 01:26:32 -070061// The exponent used to calculate the pointer speed scaling factor.
62// The scaling factor is calculated as 2 ^ (speed * exponent),
63// where the speed ranges from -7 to + 7 and is supplied by the user.
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -070064static const float POINTER_SPEED_EXPONENT = 1.0f / 4;
Jeff Brown1a84fd12011-06-02 01:26:32 -070065
Jeff Brown46b9ac02010-04-22 18:58:52 -070066static struct {
Jeff Brown46b9ac02010-04-22 18:58:52 -070067 jmethodID notifyConfigurationChanged;
Jeff Brownaf9e8d32012-04-12 17:32:48 -070068 jmethodID notifyInputDevicesChanged;
Jeff Brown53384282012-08-20 20:16:01 -070069 jmethodID notifySwitch;
Jeff Brown7fbdc842010-06-17 20:52:56 -070070 jmethodID notifyInputChannelBroken;
Jeff Brown349703e2010-06-22 01:27:15 -070071 jmethodID notifyANR;
Jeff Brown0029c662011-03-30 02:25:18 -070072 jmethodID filterInputEvent;
Jeff Brown349703e2010-06-22 01:27:15 -070073 jmethodID interceptKeyBeforeQueueing;
Jeff Brown56194eb2011-03-02 19:23:13 -080074 jmethodID interceptMotionBeforeQueueingWhenScreenOff;
Jeff Brown349703e2010-06-22 01:27:15 -070075 jmethodID interceptKeyBeforeDispatching;
Jeff Brown3915bb82010-11-05 15:02:16 -070076 jmethodID dispatchUnhandledKey;
Jeff Brown349703e2010-06-22 01:27:15 -070077 jmethodID checkInjectEventsPermission;
Jeff Brownfe508922011-01-18 15:10:10 -080078 jmethodID getVirtualKeyQuietTimeMillis;
Jeff Brown46b9ac02010-04-22 18:58:52 -070079 jmethodID getExcludedDeviceNames;
Jeff Browna4547672011-03-02 21:38:11 -080080 jmethodID getKeyRepeatTimeout;
81 jmethodID getKeyRepeatDelay;
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -070082 jmethodID getHoverTapTimeout;
83 jmethodID getHoverTapSlop;
Jeff Brown214eaf42011-05-26 19:17:02 -070084 jmethodID getDoubleTapTimeout;
85 jmethodID getLongPressTimeout;
Jeff Brown83c09682010-12-23 17:50:18 -080086 jmethodID getPointerLayer;
Jeff Brownb4ff35d2011-01-02 16:37:43 -080087 jmethodID getPointerIcon;
Jeff Brown6ec6f792012-04-17 16:52:41 -070088 jmethodID getKeyboardLayoutOverlay;
Jeff Brown5bbd4b42012-04-20 19:28:00 -070089 jmethodID getDeviceAlias;
Jason Gerecke857aa7b2014-01-27 18:34:20 -080090 jmethodID getTouchCalibrationForInputDevice;
Jeff Brown4532e612012-04-05 14:27:12 -070091} gServiceClassInfo;
Jeff Brown46b9ac02010-04-22 18:58:52 -070092
93static struct {
94 jclass clazz;
Jeff Brownaf9e8d32012-04-12 17:32:48 -070095} gInputDeviceClassInfo;
96
97static struct {
98 jclass clazz;
Jeff Brown6ec402b2010-07-28 15:48:59 -070099} gKeyEventClassInfo;
100
101static struct {
102 jclass clazz;
103} gMotionEventClassInfo;
104
RoboErikfb290df2013-12-16 11:27:55 -0800105static struct {
106 jclass clazz;
107 jmethodID constructor;
108} gInputDeviceIdentifierInfo;
109
Jason Gerecke857aa7b2014-01-27 18:34:20 -0800110static struct {
111 jclass clazz;
112 jmethodID getAffineTransform;
113} gTouchCalibrationClassInfo;
114
RoboErikfb290df2013-12-16 11:27:55 -0800115
Jeff Brown928e0542011-01-10 11:17:36 -0800116
117// --- Global functions ---
118
Jeff Brown214eaf42011-05-26 19:17:02 -0700119template<typename T>
120inline static T min(const T& a, const T& b) {
121 return a < b ? a : b;
122}
123
124template<typename T>
125inline static T max(const T& a, const T& b) {
126 return a > b ? a : b;
127}
128
Jeff Brown928e0542011-01-10 11:17:36 -0800129static jobject getInputApplicationHandleObjLocalRef(JNIEnv* env,
130 const sp<InputApplicationHandle>& inputApplicationHandle) {
131 if (inputApplicationHandle == NULL) {
132 return NULL;
133 }
134 return static_cast<NativeInputApplicationHandle*>(inputApplicationHandle.get())->
135 getInputApplicationHandleObjLocalRef(env);
136}
137
138static jobject getInputWindowHandleObjLocalRef(JNIEnv* env,
139 const sp<InputWindowHandle>& inputWindowHandle) {
140 if (inputWindowHandle == NULL) {
141 return NULL;
142 }
143 return static_cast<NativeInputWindowHandle*>(inputWindowHandle.get())->
144 getInputWindowHandleObjLocalRef(env);
145}
146
Jeff Brown2352b972011-04-12 22:39:53 -0700147static void loadSystemIconAsSprite(JNIEnv* env, jobject contextObj, int32_t style,
148 SpriteIcon* outSpriteIcon) {
149 PointerIcon pointerIcon;
150 status_t status = android_view_PointerIcon_loadSystemIcon(env,
151 contextObj, style, &pointerIcon);
152 if (!status) {
153 pointerIcon.bitmap.copyTo(&outSpriteIcon->bitmap, SkBitmap::kARGB_8888_Config);
154 outSpriteIcon->hotSpotX = pointerIcon.hotSpotX;
155 outSpriteIcon->hotSpotY = pointerIcon.hotSpotY;
156 }
157}
158
Jeff Brown905805a2011-10-12 13:57:59 -0700159enum {
160 WM_ACTION_PASS_TO_USER = 1,
Jeff Brown905805a2011-10-12 13:57:59 -0700161};
162
Jeff Brown928e0542011-01-10 11:17:36 -0800163
164// --- NativeInputManager ---
Jeff Brown83c09682010-12-23 17:50:18 -0800165
Jeff Brown9c3cda02010-06-15 01:31:58 -0700166class NativeInputManager : public virtual RefBase,
167 public virtual InputReaderPolicyInterface,
Jeff Brown2352b972011-04-12 22:39:53 -0700168 public virtual InputDispatcherPolicyInterface,
169 public virtual PointerControllerPolicyInterface {
Jeff Brown9c3cda02010-06-15 01:31:58 -0700170protected:
171 virtual ~NativeInputManager();
172
173public:
Jeff Brown4532e612012-04-05 14:27:12 -0700174 NativeInputManager(jobject contextObj, jobject serviceObj, const sp<Looper>& looper);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700175
176 inline sp<InputManager> getInputManager() const { return mInputManager; }
177
Jeff Brownb88102f2010-09-08 11:49:43 -0700178 void dump(String8& dump);
Jeff Browne33348b2010-07-15 23:54:05 -0700179
Jeff Brownd728bf52012-09-08 18:05:28 -0700180 void setDisplayViewport(bool external, const DisplayViewport& viewport);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700181
Jeff Brown7fbdc842010-06-17 20:52:56 -0700182 status_t registerInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel,
Jeff Brown928e0542011-01-10 11:17:36 -0800183 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
Jeff Brown7fbdc842010-06-17 20:52:56 -0700184 status_t unregisterInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel);
185
Jeff Brown9302c872011-07-13 22:51:29 -0700186 void setInputWindows(JNIEnv* env, jobjectArray windowHandleObjArray);
187 void setFocusedApplication(JNIEnv* env, jobject applicationHandleObj);
Jeff Brown349703e2010-06-22 01:27:15 -0700188 void setInputDispatchMode(bool enabled, bool frozen);
Jeff Brown05dc66a2011-03-02 14:41:58 -0800189 void setSystemUiVisibility(int32_t visibility);
Jeff Brown1a84fd12011-06-02 01:26:32 -0700190 void setPointerSpeed(int32_t speed);
Jeff Browndaf4a122011-08-26 17:14:14 -0700191 void setShowTouches(bool enabled);
Jason Gerecke857aa7b2014-01-27 18:34:20 -0800192 void reloadCalibration();
Jeff Brown349703e2010-06-22 01:27:15 -0700193
Jeff Brown9c3cda02010-06-15 01:31:58 -0700194 /* --- InputReaderPolicyInterface implementation --- */
195
Jeff Brown214eaf42011-05-26 19:17:02 -0700196 virtual void getReaderConfiguration(InputReaderConfiguration* outConfig);
Jeff Brown83c09682010-12-23 17:50:18 -0800197 virtual sp<PointerControllerInterface> obtainPointerController(int32_t deviceId);
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700198 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices);
RoboErikfb290df2013-12-16 11:27:55 -0800199 virtual sp<KeyCharacterMap> getKeyboardLayoutOverlay(const InputDeviceIdentifier& identifier);
Jeff Brown5bbd4b42012-04-20 19:28:00 -0700200 virtual String8 getDeviceAlias(const InputDeviceIdentifier& identifier);
Jason Gerecke857aa7b2014-01-27 18:34:20 -0800201 TouchAffineTransformation getTouchAffineTransformation(JNIEnv *env, jfloatArray matrixArr);
202 TouchAffineTransformation getTouchAffineTransformation(const String8& inputDeviceDescriptor);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700203
204 /* --- InputDispatcherPolicyInterface implementation --- */
205
Jeff Brownbcc046a2012-09-27 20:46:43 -0700206 virtual void notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask,
Jeff Browne20c9e02010-10-11 14:20:19 -0700207 uint32_t policyFlags);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700208 virtual void notifyConfigurationChanged(nsecs_t when);
Jeff Brown519e0242010-09-15 15:18:56 -0700209 virtual nsecs_t notifyANR(const sp<InputApplicationHandle>& inputApplicationHandle,
Jeff Brownbd181bb2013-09-10 16:44:24 -0700210 const sp<InputWindowHandle>& inputWindowHandle,
211 const String8& reason);
Jeff Brown928e0542011-01-10 11:17:36 -0800212 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle);
Jeff Brown0029c662011-03-30 02:25:18 -0700213 virtual bool filterInputEvent(const InputEvent* inputEvent, uint32_t policyFlags);
Jeff Brown214eaf42011-05-26 19:17:02 -0700214 virtual void getDispatcherConfiguration(InputDispatcherConfiguration* outConfig);
215 virtual bool isKeyRepeatEnabled();
Jeff Brown1f245102010-11-18 20:53:46 -0800216 virtual void interceptKeyBeforeQueueing(const KeyEvent* keyEvent, uint32_t& policyFlags);
Jeff Brown56194eb2011-03-02 19:23:13 -0800217 virtual void interceptMotionBeforeQueueing(nsecs_t when, uint32_t& policyFlags);
Jeff Brown905805a2011-10-12 13:57:59 -0700218 virtual nsecs_t interceptKeyBeforeDispatching(
219 const sp<InputWindowHandle>& inputWindowHandle,
Jeff Brownb88102f2010-09-08 11:49:43 -0700220 const KeyEvent* keyEvent, uint32_t policyFlags);
Jeff Brown928e0542011-01-10 11:17:36 -0800221 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle,
Jeff Brown49ed71d2010-12-06 17:13:33 -0800222 const KeyEvent* keyEvent, uint32_t policyFlags, KeyEvent* outFallbackKeyEvent);
Jeff Brown01ce2e92010-09-26 22:20:12 -0700223 virtual void pokeUserActivity(nsecs_t eventTime, int32_t eventType);
Jeff Brownb88102f2010-09-08 11:49:43 -0700224 virtual bool checkInjectEventsPermissionNonReentrant(
225 int32_t injectorPid, int32_t injectorUid);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700226
Jeff Brown2352b972011-04-12 22:39:53 -0700227 /* --- PointerControllerPolicyInterface implementation --- */
228
229 virtual void loadPointerResources(PointerResources* outResources);
230
Jeff Brown9c3cda02010-06-15 01:31:58 -0700231private:
232 sp<InputManager> mInputManager;
233
Jeff Brown2352b972011-04-12 22:39:53 -0700234 jobject mContextObj;
Jeff Brown4532e612012-04-05 14:27:12 -0700235 jobject mServiceObj;
Jeff Brown05dc66a2011-03-02 14:41:58 -0800236 sp<Looper> mLooper;
Jeff Brown9c3cda02010-06-15 01:31:58 -0700237
Jeff Brown83c09682010-12-23 17:50:18 -0800238 Mutex mLock;
239 struct Locked {
240 // Display size information.
Jeff Brownd728bf52012-09-08 18:05:28 -0700241 DisplayViewport internalViewport;
242 DisplayViewport externalViewport;
Jeff Brown83c09682010-12-23 17:50:18 -0800243
Jeff Brown05dc66a2011-03-02 14:41:58 -0800244 // System UI visibility.
245 int32_t systemUiVisibility;
246
Jeff Brown1a84fd12011-06-02 01:26:32 -0700247 // Pointer speed.
248 int32_t pointerSpeed;
249
Jeff Brown474dcb52011-06-14 20:22:50 -0700250 // True if pointer gestures are enabled.
251 bool pointerGesturesEnabled;
252
Jeff Browndaf4a122011-08-26 17:14:14 -0700253 // Show touches feature enable/disable.
254 bool showTouches;
255
Jeff Brown5541de92011-04-11 11:54:25 -0700256 // Sprite controller singleton, created on first use.
257 sp<SpriteController> spriteController;
258
Jeff Brown83c09682010-12-23 17:50:18 -0800259 // Pointer controller singleton, created and destroyed as needed.
260 wp<PointerController> pointerController;
Jeff Brown83c09682010-12-23 17:50:18 -0800261 } mLocked;
Jeff Brown9c3cda02010-06-15 01:31:58 -0700262
Jeff Brown2352b972011-04-12 22:39:53 -0700263 void updateInactivityTimeoutLocked(const sp<PointerController>& controller);
Jeff Brown56194eb2011-03-02 19:23:13 -0800264 void handleInterceptActions(jint wmActions, nsecs_t when, uint32_t& policyFlags);
Jeff Brown5541de92011-04-11 11:54:25 -0700265 void ensureSpriteControllerLocked();
Jeff Brown05dc66a2011-03-02 14:41:58 -0800266
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700267 // Power manager interactions.
Jeff Brown9c3cda02010-06-15 01:31:58 -0700268 bool isScreenOn();
269 bool isScreenBright();
270
Jeff Brownb88102f2010-09-08 11:49:43 -0700271 static bool checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName);
Jeff Browna41ca772010-08-11 14:46:32 -0700272
Jeff Brown9c3cda02010-06-15 01:31:58 -0700273 static inline JNIEnv* jniEnv() {
274 return AndroidRuntime::getJNIEnv();
275 }
Jeff Brown9c3cda02010-06-15 01:31:58 -0700276};
277
Jeff Brown928e0542011-01-10 11:17:36 -0800278
Jeff Brown9c3cda02010-06-15 01:31:58 -0700279
Jeff Brown2352b972011-04-12 22:39:53 -0700280NativeInputManager::NativeInputManager(jobject contextObj,
Jeff Brown4532e612012-04-05 14:27:12 -0700281 jobject serviceObj, const sp<Looper>& looper) :
Jeff Brown214eaf42011-05-26 19:17:02 -0700282 mLooper(looper) {
Jeff Brown9c3cda02010-06-15 01:31:58 -0700283 JNIEnv* env = jniEnv();
284
Jeff Brown2352b972011-04-12 22:39:53 -0700285 mContextObj = env->NewGlobalRef(contextObj);
Jeff Brown4532e612012-04-05 14:27:12 -0700286 mServiceObj = env->NewGlobalRef(serviceObj);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700287
Jeff Brown83c09682010-12-23 17:50:18 -0800288 {
289 AutoMutex _l(mLock);
Jeff Brown05dc66a2011-03-02 14:41:58 -0800290 mLocked.systemUiVisibility = ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE;
Jeff Brown1a84fd12011-06-02 01:26:32 -0700291 mLocked.pointerSpeed = 0;
Jeff Brown474dcb52011-06-14 20:22:50 -0700292 mLocked.pointerGesturesEnabled = true;
Jeff Browndaf4a122011-08-26 17:14:14 -0700293 mLocked.showTouches = false;
Jeff Brown83c09682010-12-23 17:50:18 -0800294 }
295
Jeff Brown9c3cda02010-06-15 01:31:58 -0700296 sp<EventHub> eventHub = new EventHub();
297 mInputManager = new InputManager(eventHub, this, this);
298}
299
300NativeInputManager::~NativeInputManager() {
301 JNIEnv* env = jniEnv();
302
Jeff Brown2352b972011-04-12 22:39:53 -0700303 env->DeleteGlobalRef(mContextObj);
Jeff Brown4532e612012-04-05 14:27:12 -0700304 env->DeleteGlobalRef(mServiceObj);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700305}
306
Jeff Brownb88102f2010-09-08 11:49:43 -0700307void NativeInputManager::dump(String8& dump) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700308 mInputManager->getReader()->dump(dump);
309 dump.append("\n");
Jeff Brown6d0fec22010-07-23 21:28:06 -0700310
Jeff Brownb88102f2010-09-08 11:49:43 -0700311 mInputManager->getDispatcher()->dump(dump);
312 dump.append("\n");
Jeff Brown9c3cda02010-06-15 01:31:58 -0700313}
314
Jeff Brown7fbdc842010-06-17 20:52:56 -0700315bool NativeInputManager::checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) {
Jeff Brown9c3cda02010-06-15 01:31:58 -0700316 if (env->ExceptionCheck()) {
Steve Block3762c312012-01-06 19:20:56 +0000317 ALOGE("An exception was thrown by callback '%s'.", methodName);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700318 LOGE_EX(env);
319 env->ExceptionClear();
320 return true;
321 }
322 return false;
323}
324
Jeff Brownd728bf52012-09-08 18:05:28 -0700325void NativeInputManager::setDisplayViewport(bool external, const DisplayViewport& viewport) {
Jeff Brown65fd2512011-08-18 11:20:58 -0700326 bool changed = false;
Jeff Brownd728bf52012-09-08 18:05:28 -0700327 {
Jeff Brown65fd2512011-08-18 11:20:58 -0700328 AutoMutex _l(mLock);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700329
Jeff Brownd728bf52012-09-08 18:05:28 -0700330 DisplayViewport& v = external ? mLocked.externalViewport : mLocked.internalViewport;
331 if (v != viewport) {
Jeff Brown65fd2512011-08-18 11:20:58 -0700332 changed = true;
Jeff Brownd728bf52012-09-08 18:05:28 -0700333 v = viewport;
Jeff Brownbc68a592011-07-25 12:58:12 -0700334
Jeff Brownd728bf52012-09-08 18:05:28 -0700335 if (!external) {
336 sp<PointerController> controller = mLocked.pointerController.promote();
337 if (controller != NULL) {
338 controller->setDisplayViewport(
339 viewport.logicalRight - viewport.logicalLeft,
340 viewport.logicalBottom - viewport.logicalTop,
341 viewport.orientation);
342 }
Jeff Brown2352b972011-04-12 22:39:53 -0700343 }
Jeff Brown65fd2512011-08-18 11:20:58 -0700344 }
Jeff Brown9c3cda02010-06-15 01:31:58 -0700345 }
Jeff Brown65fd2512011-08-18 11:20:58 -0700346
347 if (changed) {
348 mInputManager->getReader()->requestRefreshConfiguration(
349 InputReaderConfiguration::CHANGE_DISPLAY_INFO);
350 }
Jeff Brown9c3cda02010-06-15 01:31:58 -0700351}
352
Jeff Brown7fbdc842010-06-17 20:52:56 -0700353status_t NativeInputManager::registerInputChannel(JNIEnv* env,
Jeff Brown928e0542011-01-10 11:17:36 -0800354 const sp<InputChannel>& inputChannel,
355 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) {
356 return mInputManager->getDispatcher()->registerInputChannel(
357 inputChannel, inputWindowHandle, monitor);
Jeff Brown7fbdc842010-06-17 20:52:56 -0700358}
359
360status_t NativeInputManager::unregisterInputChannel(JNIEnv* env,
361 const sp<InputChannel>& inputChannel) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700362 return mInputManager->getDispatcher()->unregisterInputChannel(inputChannel);
Jeff Brown7fbdc842010-06-17 20:52:56 -0700363}
364
Jeff Brown214eaf42011-05-26 19:17:02 -0700365void NativeInputManager::getReaderConfiguration(InputReaderConfiguration* outConfig) {
Jeff Brown9c3cda02010-06-15 01:31:58 -0700366 JNIEnv* env = jniEnv();
367
Jeff Brown4532e612012-04-05 14:27:12 -0700368 jint virtualKeyQuietTime = env->CallIntMethod(mServiceObj,
369 gServiceClassInfo.getVirtualKeyQuietTimeMillis);
Jeff Brown214eaf42011-05-26 19:17:02 -0700370 if (!checkAndClearExceptionFromCallback(env, "getVirtualKeyQuietTimeMillis")) {
371 outConfig->virtualKeyQuietTime = milliseconds_to_nanoseconds(virtualKeyQuietTime);
372 }
373
374 outConfig->excludedDeviceNames.clear();
Jeff Brown4532e612012-04-05 14:27:12 -0700375 jobjectArray excludedDeviceNames = jobjectArray(env->CallObjectMethod(mServiceObj,
376 gServiceClassInfo.getExcludedDeviceNames));
Jeff Brown214eaf42011-05-26 19:17:02 -0700377 if (!checkAndClearExceptionFromCallback(env, "getExcludedDeviceNames") && excludedDeviceNames) {
378 jsize length = env->GetArrayLength(excludedDeviceNames);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700379 for (jsize i = 0; i < length; i++) {
Jeff Brown214eaf42011-05-26 19:17:02 -0700380 jstring item = jstring(env->GetObjectArrayElement(excludedDeviceNames, i));
Jeff Brown9c3cda02010-06-15 01:31:58 -0700381 const char* deviceNameChars = env->GetStringUTFChars(item, NULL);
Jeff Brown214eaf42011-05-26 19:17:02 -0700382 outConfig->excludedDeviceNames.add(String8(deviceNameChars));
Jeff Brown9c3cda02010-06-15 01:31:58 -0700383 env->ReleaseStringUTFChars(item, deviceNameChars);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700384 env->DeleteLocalRef(item);
385 }
Jeff Brown214eaf42011-05-26 19:17:02 -0700386 env->DeleteLocalRef(excludedDeviceNames);
387 }
388
Jeff Brown4532e612012-04-05 14:27:12 -0700389 jint hoverTapTimeout = env->CallIntMethod(mServiceObj,
390 gServiceClassInfo.getHoverTapTimeout);
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -0700391 if (!checkAndClearExceptionFromCallback(env, "getHoverTapTimeout")) {
Jeff Brown4532e612012-04-05 14:27:12 -0700392 jint doubleTapTimeout = env->CallIntMethod(mServiceObj,
393 gServiceClassInfo.getDoubleTapTimeout);
Jeff Brown214eaf42011-05-26 19:17:02 -0700394 if (!checkAndClearExceptionFromCallback(env, "getDoubleTapTimeout")) {
Jeff Brown4532e612012-04-05 14:27:12 -0700395 jint longPressTimeout = env->CallIntMethod(mServiceObj,
396 gServiceClassInfo.getLongPressTimeout);
Jeff Brown214eaf42011-05-26 19:17:02 -0700397 if (!checkAndClearExceptionFromCallback(env, "getLongPressTimeout")) {
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -0700398 outConfig->pointerGestureTapInterval = milliseconds_to_nanoseconds(hoverTapTimeout);
Jeff Brown214eaf42011-05-26 19:17:02 -0700399
400 // We must ensure that the tap-drag interval is significantly shorter than
401 // the long-press timeout because the tap is held down for the entire duration
402 // of the double-tap timeout.
403 jint tapDragInterval = max(min(longPressTimeout - 100,
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -0700404 doubleTapTimeout), hoverTapTimeout);
Jeff Brown214eaf42011-05-26 19:17:02 -0700405 outConfig->pointerGestureTapDragInterval =
406 milliseconds_to_nanoseconds(tapDragInterval);
407 }
408 }
409 }
410
Jeff Brown4532e612012-04-05 14:27:12 -0700411 jint hoverTapSlop = env->CallIntMethod(mServiceObj,
412 gServiceClassInfo.getHoverTapSlop);
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -0700413 if (!checkAndClearExceptionFromCallback(env, "getHoverTapSlop")) {
414 outConfig->pointerGestureTapSlop = hoverTapSlop;
Jeff Brown9c3cda02010-06-15 01:31:58 -0700415 }
Jeff Brown1a84fd12011-06-02 01:26:32 -0700416
417 { // acquire lock
418 AutoMutex _l(mLock);
419
420 outConfig->pointerVelocityControlParameters.scale = exp2f(mLocked.pointerSpeed
421 * POINTER_SPEED_EXPONENT);
Jeff Brown474dcb52011-06-14 20:22:50 -0700422 outConfig->pointerGesturesEnabled = mLocked.pointerGesturesEnabled;
Jeff Brown65fd2512011-08-18 11:20:58 -0700423
Jeff Browndaf4a122011-08-26 17:14:14 -0700424 outConfig->showTouches = mLocked.showTouches;
425
Jeff Brownd728bf52012-09-08 18:05:28 -0700426 outConfig->setDisplayInfo(false /*external*/, mLocked.internalViewport);
427 outConfig->setDisplayInfo(true /*external*/, mLocked.externalViewport);
Jeff Brown1a84fd12011-06-02 01:26:32 -0700428 } // release lock
Jeff Brown9c3cda02010-06-15 01:31:58 -0700429}
430
Jeff Brown83c09682010-12-23 17:50:18 -0800431sp<PointerControllerInterface> NativeInputManager::obtainPointerController(int32_t deviceId) {
432 AutoMutex _l(mLock);
433
434 sp<PointerController> controller = mLocked.pointerController.promote();
435 if (controller == NULL) {
Jeff Brown5541de92011-04-11 11:54:25 -0700436 ensureSpriteControllerLocked();
Jeff Brown83c09682010-12-23 17:50:18 -0800437
Jeff Brown2352b972011-04-12 22:39:53 -0700438 controller = new PointerController(this, mLooper, mLocked.spriteController);
Jeff Brown83c09682010-12-23 17:50:18 -0800439 mLocked.pointerController = controller;
440
Jeff Brownd728bf52012-09-08 18:05:28 -0700441 DisplayViewport& v = mLocked.internalViewport;
442 controller->setDisplayViewport(
443 v.logicalRight - v.logicalLeft,
444 v.logicalBottom - v.logicalTop,
445 v.orientation);
Jeff Brownb4ff35d2011-01-02 16:37:43 -0800446
Jeff Brown5541de92011-04-11 11:54:25 -0700447 JNIEnv* env = jniEnv();
Jeff Brown4532e612012-04-05 14:27:12 -0700448 jobject pointerIconObj = env->CallObjectMethod(mServiceObj,
449 gServiceClassInfo.getPointerIcon);
Jeff Brown2352b972011-04-12 22:39:53 -0700450 if (!checkAndClearExceptionFromCallback(env, "getPointerIcon")) {
451 PointerIcon pointerIcon;
452 status_t status = android_view_PointerIcon_load(env, pointerIconObj,
453 mContextObj, &pointerIcon);
454 if (!status && !pointerIcon.isNullIcon()) {
455 controller->setPointerIcon(SpriteIcon(pointerIcon.bitmap,
456 pointerIcon.hotSpotX, pointerIcon.hotSpotY));
457 } else {
458 controller->setPointerIcon(SpriteIcon());
Jeff Brownb4ff35d2011-01-02 16:37:43 -0800459 }
Jeff Brown2352b972011-04-12 22:39:53 -0700460 env->DeleteLocalRef(pointerIconObj);
Jeff Brownb4ff35d2011-01-02 16:37:43 -0800461 }
Jeff Brown05dc66a2011-03-02 14:41:58 -0800462
Jeff Brown2352b972011-04-12 22:39:53 -0700463 updateInactivityTimeoutLocked(controller);
Jeff Brown83c09682010-12-23 17:50:18 -0800464 }
465 return controller;
466}
467
Jeff Brown5541de92011-04-11 11:54:25 -0700468void NativeInputManager::ensureSpriteControllerLocked() {
469 if (mLocked.spriteController == NULL) {
470 JNIEnv* env = jniEnv();
Jeff Brown4532e612012-04-05 14:27:12 -0700471 jint layer = env->CallIntMethod(mServiceObj, gServiceClassInfo.getPointerLayer);
Jeff Brown5541de92011-04-11 11:54:25 -0700472 if (checkAndClearExceptionFromCallback(env, "getPointerLayer")) {
473 layer = -1;
474 }
475 mLocked.spriteController = new SpriteController(mLooper, layer);
476 }
477}
478
Jeff Brownaf9e8d32012-04-12 17:32:48 -0700479void NativeInputManager::notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) {
480 JNIEnv* env = jniEnv();
481
482 size_t count = inputDevices.size();
483 jobjectArray inputDevicesObjArray = env->NewObjectArray(
484 count, gInputDeviceClassInfo.clazz, NULL);
485 if (inputDevicesObjArray) {
486 bool error = false;
487 for (size_t i = 0; i < count; i++) {
488 jobject inputDeviceObj = android_view_InputDevice_create(env, inputDevices.itemAt(i));
489 if (!inputDeviceObj) {
490 error = true;
491 break;
492 }
493
494 env->SetObjectArrayElement(inputDevicesObjArray, i, inputDeviceObj);
495 env->DeleteLocalRef(inputDeviceObj);
496 }
497
498 if (!error) {
499 env->CallVoidMethod(mServiceObj, gServiceClassInfo.notifyInputDevicesChanged,
500 inputDevicesObjArray);
501 }
502
503 env->DeleteLocalRef(inputDevicesObjArray);
504 }
505
506 checkAndClearExceptionFromCallback(env, "notifyInputDevicesChanged");
507}
508
Jeff Brown6ec6f792012-04-17 16:52:41 -0700509sp<KeyCharacterMap> NativeInputManager::getKeyboardLayoutOverlay(
RoboErikfb290df2013-12-16 11:27:55 -0800510 const InputDeviceIdentifier& identifier) {
Jeff Brown6ec6f792012-04-17 16:52:41 -0700511 JNIEnv* env = jniEnv();
512
513 sp<KeyCharacterMap> result;
RoboErikfb290df2013-12-16 11:27:55 -0800514 ScopedLocalRef<jstring> descriptor(env, env->NewStringUTF(identifier.descriptor.string()));
515 ScopedLocalRef<jobject> identifierObj(env, env->NewObject(gInputDeviceIdentifierInfo.clazz,
516 gInputDeviceIdentifierInfo.constructor, descriptor.get(),
517 identifier.vendor, identifier.product));
Jeff Brown6ec6f792012-04-17 16:52:41 -0700518 ScopedLocalRef<jobjectArray> arrayObj(env, jobjectArray(env->CallObjectMethod(mServiceObj,
RoboErikfb290df2013-12-16 11:27:55 -0800519 gServiceClassInfo.getKeyboardLayoutOverlay, identifierObj.get())));
Jeff Brown6ec6f792012-04-17 16:52:41 -0700520 if (arrayObj.get()) {
521 ScopedLocalRef<jstring> filenameObj(env,
522 jstring(env->GetObjectArrayElement(arrayObj.get(), 0)));
523 ScopedLocalRef<jstring> contentsObj(env,
524 jstring(env->GetObjectArrayElement(arrayObj.get(), 1)));
525 ScopedUtfChars filenameChars(env, filenameObj.get());
526 ScopedUtfChars contentsChars(env, contentsObj.get());
527
528 KeyCharacterMap::loadContents(String8(filenameChars.c_str()),
529 String8(contentsChars.c_str()), KeyCharacterMap::FORMAT_OVERLAY, &result);
530 }
531 checkAndClearExceptionFromCallback(env, "getKeyboardLayoutOverlay");
532 return result;
533}
534
Jeff Brown5bbd4b42012-04-20 19:28:00 -0700535String8 NativeInputManager::getDeviceAlias(const InputDeviceIdentifier& identifier) {
536 JNIEnv* env = jniEnv();
537
538 ScopedLocalRef<jstring> uniqueIdObj(env, env->NewStringUTF(identifier.uniqueId.string()));
539 ScopedLocalRef<jstring> aliasObj(env, jstring(env->CallObjectMethod(mServiceObj,
540 gServiceClassInfo.getDeviceAlias, uniqueIdObj.get())));
541 String8 result;
542 if (aliasObj.get()) {
543 ScopedUtfChars aliasChars(env, aliasObj.get());
544 result.setTo(aliasChars.c_str());
545 }
546 checkAndClearExceptionFromCallback(env, "getDeviceAlias");
547 return result;
548}
549
Jeff Brownbcc046a2012-09-27 20:46:43 -0700550void NativeInputManager::notifySwitch(nsecs_t when,
551 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) {
Jeff Browne20c9e02010-10-11 14:20:19 -0700552#if DEBUG_INPUT_DISPATCHER_POLICY
Jeff Brownbcc046a2012-09-27 20:46:43 -0700553 ALOGD("notifySwitch - when=%lld, switchValues=0x%08x, switchMask=0x%08x, policyFlags=0x%x",
554 when, switchValues, switchMask, policyFlags);
Jeff Browne20c9e02010-10-11 14:20:19 -0700555#endif
556
557 JNIEnv* env = jniEnv();
558
Jeff Brown53384282012-08-20 20:16:01 -0700559 env->CallVoidMethod(mServiceObj, gServiceClassInfo.notifySwitch,
Jeff Brownbcc046a2012-09-27 20:46:43 -0700560 when, switchValues, switchMask);
Jeff Brown53384282012-08-20 20:16:01 -0700561 checkAndClearExceptionFromCallback(env, "notifySwitch");
Jeff Browne20c9e02010-10-11 14:20:19 -0700562}
563
Jeff Brown9c3cda02010-06-15 01:31:58 -0700564void NativeInputManager::notifyConfigurationChanged(nsecs_t when) {
565#if DEBUG_INPUT_DISPATCHER_POLICY
Steve Block5baa3a62011-12-20 16:23:08 +0000566 ALOGD("notifyConfigurationChanged - when=%lld", when);
Jeff Brown9c3cda02010-06-15 01:31:58 -0700567#endif
568
569 JNIEnv* env = jniEnv();
570
Jeff Brown4532e612012-04-05 14:27:12 -0700571 env->CallVoidMethod(mServiceObj, gServiceClassInfo.notifyConfigurationChanged, when);
Jeff Brown7fbdc842010-06-17 20:52:56 -0700572 checkAndClearExceptionFromCallback(env, "notifyConfigurationChanged");
Jeff Brown9c3cda02010-06-15 01:31:58 -0700573}
574
Jeff Brown519e0242010-09-15 15:18:56 -0700575nsecs_t NativeInputManager::notifyANR(const sp<InputApplicationHandle>& inputApplicationHandle,
Jeff Brownbd181bb2013-09-10 16:44:24 -0700576 const sp<InputWindowHandle>& inputWindowHandle, const String8& reason) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700577#if DEBUG_INPUT_DISPATCHER_POLICY
Steve Block5baa3a62011-12-20 16:23:08 +0000578 ALOGD("notifyANR");
Jeff Brownb88102f2010-09-08 11:49:43 -0700579#endif
580
581 JNIEnv* env = jniEnv();
582
Jeff Brown928e0542011-01-10 11:17:36 -0800583 jobject inputApplicationHandleObj =
584 getInputApplicationHandleObjLocalRef(env, inputApplicationHandle);
585 jobject inputWindowHandleObj =
586 getInputWindowHandleObjLocalRef(env, inputWindowHandle);
Jeff Brownbd181bb2013-09-10 16:44:24 -0700587 jstring reasonObj = env->NewStringUTF(reason.string());
Jeff Brownb88102f2010-09-08 11:49:43 -0700588
Jeff Brown4532e612012-04-05 14:27:12 -0700589 jlong newTimeout = env->CallLongMethod(mServiceObj,
Jeff Brownbd181bb2013-09-10 16:44:24 -0700590 gServiceClassInfo.notifyANR, inputApplicationHandleObj, inputWindowHandleObj,
591 reasonObj);
Jeff Brown519e0242010-09-15 15:18:56 -0700592 if (checkAndClearExceptionFromCallback(env, "notifyANR")) {
593 newTimeout = 0; // abort dispatch
594 } else {
595 assert(newTimeout >= 0);
596 }
597
Jeff Brownbd181bb2013-09-10 16:44:24 -0700598 env->DeleteLocalRef(reasonObj);
Jeff Brown928e0542011-01-10 11:17:36 -0800599 env->DeleteLocalRef(inputWindowHandleObj);
600 env->DeleteLocalRef(inputApplicationHandleObj);
Jeff Brownb88102f2010-09-08 11:49:43 -0700601 return newTimeout;
602}
603
Jeff Brown928e0542011-01-10 11:17:36 -0800604void NativeInputManager::notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) {
Jeff Brown9c3cda02010-06-15 01:31:58 -0700605#if DEBUG_INPUT_DISPATCHER_POLICY
Steve Block5baa3a62011-12-20 16:23:08 +0000606 ALOGD("notifyInputChannelBroken");
Jeff Brown9c3cda02010-06-15 01:31:58 -0700607#endif
608
Jeff Brown7fbdc842010-06-17 20:52:56 -0700609 JNIEnv* env = jniEnv();
610
Jeff Brown928e0542011-01-10 11:17:36 -0800611 jobject inputWindowHandleObj =
612 getInputWindowHandleObjLocalRef(env, inputWindowHandle);
613 if (inputWindowHandleObj) {
Jeff Brown4532e612012-04-05 14:27:12 -0700614 env->CallVoidMethod(mServiceObj, gServiceClassInfo.notifyInputChannelBroken,
Jeff Brown928e0542011-01-10 11:17:36 -0800615 inputWindowHandleObj);
Jeff Brown7fbdc842010-06-17 20:52:56 -0700616 checkAndClearExceptionFromCallback(env, "notifyInputChannelBroken");
617
Jeff Brown928e0542011-01-10 11:17:36 -0800618 env->DeleteLocalRef(inputWindowHandleObj);
Jeff Brown7fbdc842010-06-17 20:52:56 -0700619 }
Jeff Brown9c3cda02010-06-15 01:31:58 -0700620}
621
Jeff Brown214eaf42011-05-26 19:17:02 -0700622void NativeInputManager::getDispatcherConfiguration(InputDispatcherConfiguration* outConfig) {
623 JNIEnv* env = jniEnv();
Jeff Browna4547672011-03-02 21:38:11 -0800624
Jeff Brown4532e612012-04-05 14:27:12 -0700625 jint keyRepeatTimeout = env->CallIntMethod(mServiceObj,
626 gServiceClassInfo.getKeyRepeatTimeout);
Jeff Brown214eaf42011-05-26 19:17:02 -0700627 if (!checkAndClearExceptionFromCallback(env, "getKeyRepeatTimeout")) {
628 outConfig->keyRepeatTimeout = milliseconds_to_nanoseconds(keyRepeatTimeout);
629 }
Jeff Browna4547672011-03-02 21:38:11 -0800630
Jeff Brown4532e612012-04-05 14:27:12 -0700631 jint keyRepeatDelay = env->CallIntMethod(mServiceObj,
632 gServiceClassInfo.getKeyRepeatDelay);
Jeff Brown214eaf42011-05-26 19:17:02 -0700633 if (!checkAndClearExceptionFromCallback(env, "getKeyRepeatDelay")) {
634 outConfig->keyRepeatDelay = milliseconds_to_nanoseconds(keyRepeatDelay);
635 }
Jeff Brown9c3cda02010-06-15 01:31:58 -0700636}
637
Jeff Brown214eaf42011-05-26 19:17:02 -0700638bool NativeInputManager::isKeyRepeatEnabled() {
639 // Only enable automatic key repeating when the screen is on.
640 return isScreenOn();
Jeff Brownae9fc032010-08-18 15:51:08 -0700641}
642
Jeff Brown9302c872011-07-13 22:51:29 -0700643void NativeInputManager::setInputWindows(JNIEnv* env, jobjectArray windowHandleObjArray) {
644 Vector<sp<InputWindowHandle> > windowHandles;
Jeff Brown349703e2010-06-22 01:27:15 -0700645
Jeff Brown9302c872011-07-13 22:51:29 -0700646 if (windowHandleObjArray) {
647 jsize length = env->GetArrayLength(windowHandleObjArray);
648 for (jsize i = 0; i < length; i++) {
649 jobject windowHandleObj = env->GetObjectArrayElement(windowHandleObjArray, i);
650 if (! windowHandleObj) {
651 break; // found null element indicating end of used portion of the array
Jeff Brown474dcb52011-06-14 20:22:50 -0700652 }
Jeff Brown9302c872011-07-13 22:51:29 -0700653
654 sp<InputWindowHandle> windowHandle =
655 android_server_InputWindowHandle_getHandle(env, windowHandleObj);
656 if (windowHandle != NULL) {
657 windowHandles.push(windowHandle);
658 }
659 env->DeleteLocalRef(windowHandleObj);
Jeff Brown349703e2010-06-22 01:27:15 -0700660 }
Jeff Brownb88102f2010-09-08 11:49:43 -0700661 }
Jeff Brown349703e2010-06-22 01:27:15 -0700662
Jeff Brown9302c872011-07-13 22:51:29 -0700663 mInputManager->getDispatcher()->setInputWindows(windowHandles);
664
665 // Do this after the dispatcher has updated the window handle state.
666 bool newPointerGesturesEnabled = true;
667 size_t numWindows = windowHandles.size();
668 for (size_t i = 0; i < numWindows; i++) {
669 const sp<InputWindowHandle>& windowHandle = windowHandles.itemAt(i);
Jeff Browncc4f7db2011-08-30 20:34:48 -0700670 const InputWindowInfo* windowInfo = windowHandle->getInfo();
671 if (windowInfo && windowInfo->hasFocus && (windowInfo->inputFeatures
672 & InputWindowInfo::INPUT_FEATURE_DISABLE_TOUCH_PAD_GESTURES)) {
Jeff Brown9302c872011-07-13 22:51:29 -0700673 newPointerGesturesEnabled = false;
674 }
675 }
Jeff Brown474dcb52011-06-14 20:22:50 -0700676
677 uint32_t changes = 0;
678 { // acquire lock
679 AutoMutex _l(mLock);
680
681 if (mLocked.pointerGesturesEnabled != newPointerGesturesEnabled) {
682 mLocked.pointerGesturesEnabled = newPointerGesturesEnabled;
683 changes |= InputReaderConfiguration::CHANGE_POINTER_GESTURE_ENABLEMENT;
684 }
685 } // release lock
686
687 if (changes) {
688 mInputManager->getReader()->requestRefreshConfiguration(changes);
689 }
Jeff Brown349703e2010-06-22 01:27:15 -0700690}
691
Jeff Brown9302c872011-07-13 22:51:29 -0700692void NativeInputManager::setFocusedApplication(JNIEnv* env, jobject applicationHandleObj) {
693 sp<InputApplicationHandle> applicationHandle =
694 android_server_InputApplicationHandle_getHandle(env, applicationHandleObj);
695 mInputManager->getDispatcher()->setFocusedApplication(applicationHandle);
Jeff Brown349703e2010-06-22 01:27:15 -0700696}
697
698void NativeInputManager::setInputDispatchMode(bool enabled, bool frozen) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700699 mInputManager->getDispatcher()->setInputDispatchMode(enabled, frozen);
Jeff Brown349703e2010-06-22 01:27:15 -0700700}
701
Jeff Brown05dc66a2011-03-02 14:41:58 -0800702void NativeInputManager::setSystemUiVisibility(int32_t visibility) {
703 AutoMutex _l(mLock);
704
705 if (mLocked.systemUiVisibility != visibility) {
706 mLocked.systemUiVisibility = visibility;
707
708 sp<PointerController> controller = mLocked.pointerController.promote();
709 if (controller != NULL) {
Jeff Brown2352b972011-04-12 22:39:53 -0700710 updateInactivityTimeoutLocked(controller);
Jeff Brown05dc66a2011-03-02 14:41:58 -0800711 }
712 }
713}
714
Jeff Brown2352b972011-04-12 22:39:53 -0700715void NativeInputManager::updateInactivityTimeoutLocked(const sp<PointerController>& controller) {
Jeff Brown05dc66a2011-03-02 14:41:58 -0800716 bool lightsOut = mLocked.systemUiVisibility & ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN;
Jeff Brown2352b972011-04-12 22:39:53 -0700717 controller->setInactivityTimeout(lightsOut
718 ? PointerController::INACTIVITY_TIMEOUT_SHORT
719 : PointerController::INACTIVITY_TIMEOUT_NORMAL);
Jeff Brown05dc66a2011-03-02 14:41:58 -0800720}
721
Jeff Brown1a84fd12011-06-02 01:26:32 -0700722void NativeInputManager::setPointerSpeed(int32_t speed) {
Jeff Brown474dcb52011-06-14 20:22:50 -0700723 { // acquire lock
724 AutoMutex _l(mLock);
Jeff Brown1a84fd12011-06-02 01:26:32 -0700725
Jeff Brown474dcb52011-06-14 20:22:50 -0700726 if (mLocked.pointerSpeed == speed) {
727 return;
728 }
729
Steve Block6215d3f2012-01-04 20:05:49 +0000730 ALOGI("Setting pointer speed to %d.", speed);
Jeff Brown1a84fd12011-06-02 01:26:32 -0700731 mLocked.pointerSpeed = speed;
Jeff Brown474dcb52011-06-14 20:22:50 -0700732 } // release lock
Jeff Brown1a84fd12011-06-02 01:26:32 -0700733
Jeff Brown474dcb52011-06-14 20:22:50 -0700734 mInputManager->getReader()->requestRefreshConfiguration(
735 InputReaderConfiguration::CHANGE_POINTER_SPEED);
Jeff Brown1a84fd12011-06-02 01:26:32 -0700736}
737
Jeff Browndaf4a122011-08-26 17:14:14 -0700738void NativeInputManager::setShowTouches(bool enabled) {
739 { // acquire lock
740 AutoMutex _l(mLock);
741
742 if (mLocked.showTouches == enabled) {
743 return;
744 }
745
Steve Block6215d3f2012-01-04 20:05:49 +0000746 ALOGI("Setting show touches feature to %s.", enabled ? "enabled" : "disabled");
Jeff Browndaf4a122011-08-26 17:14:14 -0700747 mLocked.showTouches = enabled;
748 } // release lock
749
750 mInputManager->getReader()->requestRefreshConfiguration(
751 InputReaderConfiguration::CHANGE_SHOW_TOUCHES);
752}
753
Jason Gerecke857aa7b2014-01-27 18:34:20 -0800754void NativeInputManager::reloadCalibration() {
755 mInputManager->getReader()->requestRefreshConfiguration(
756 InputReaderConfiguration::TOUCH_AFFINE_TRANSFORMATION);
757}
758
Jeff Browne20c9e02010-10-11 14:20:19 -0700759bool NativeInputManager::isScreenOn() {
760 return android_server_PowerManagerService_isScreenOn();
761}
762
763bool NativeInputManager::isScreenBright() {
764 return android_server_PowerManagerService_isScreenBright();
765}
766
Jason Gerecke857aa7b2014-01-27 18:34:20 -0800767TouchAffineTransformation NativeInputManager::getTouchAffineTransformation(
768 JNIEnv *env, jfloatArray matrixArr) {
769 ScopedFloatArrayRO matrix(env, matrixArr);
770 assert(matrix.size() == 6);
771
772 TouchAffineTransformation transform;
773 transform.x_scale = matrix[0];
774 transform.x_ymix = matrix[1];
775 transform.x_offset = matrix[2];
776 transform.y_xmix = matrix[3];
777 transform.y_scale = matrix[4];
778 transform.y_offset = matrix[5];
779
780 return transform;
781}
782
783TouchAffineTransformation NativeInputManager::getTouchAffineTransformation(
784 const String8& inputDeviceDescriptor) {
785 JNIEnv* env = jniEnv();
786
787 ScopedLocalRef<jstring> descriptorObj(env, env->NewStringUTF(inputDeviceDescriptor.string()));
788
789 jobject cal = env->CallObjectMethod(mServiceObj,
790 gServiceClassInfo.getTouchCalibrationForInputDevice, descriptorObj.get());
791
792 jfloatArray matrixArr = jfloatArray(env->CallObjectMethod(cal,
793 gTouchCalibrationClassInfo.getAffineTransform));
794
795 TouchAffineTransformation transform = getTouchAffineTransformation(env, matrixArr);
796
797 env->DeleteLocalRef(matrixArr);
798 env->DeleteLocalRef(cal);
799
800 return transform;
801}
802
Jeff Brown0029c662011-03-30 02:25:18 -0700803bool NativeInputManager::filterInputEvent(const InputEvent* inputEvent, uint32_t policyFlags) {
804 jobject inputEventObj;
805
806 JNIEnv* env = jniEnv();
807 switch (inputEvent->getType()) {
808 case AINPUT_EVENT_TYPE_KEY:
809 inputEventObj = android_view_KeyEvent_fromNative(env,
810 static_cast<const KeyEvent*>(inputEvent));
811 break;
812 case AINPUT_EVENT_TYPE_MOTION:
813 inputEventObj = android_view_MotionEvent_obtainAsCopy(env,
814 static_cast<const MotionEvent*>(inputEvent));
815 break;
816 default:
817 return true; // dispatch the event normally
818 }
819
820 if (!inputEventObj) {
Steve Block3762c312012-01-06 19:20:56 +0000821 ALOGE("Failed to obtain input event object for filterInputEvent.");
Jeff Brown0029c662011-03-30 02:25:18 -0700822 return true; // dispatch the event normally
823 }
824
825 // The callee is responsible for recycling the event.
Jeff Brown4532e612012-04-05 14:27:12 -0700826 jboolean pass = env->CallBooleanMethod(mServiceObj, gServiceClassInfo.filterInputEvent,
Jeff Brown0029c662011-03-30 02:25:18 -0700827 inputEventObj, policyFlags);
828 if (checkAndClearExceptionFromCallback(env, "filterInputEvent")) {
829 pass = true;
830 }
831 env->DeleteLocalRef(inputEventObj);
832 return pass;
833}
834
Jeff Brown1f245102010-11-18 20:53:46 -0800835void NativeInputManager::interceptKeyBeforeQueueing(const KeyEvent* keyEvent,
836 uint32_t& policyFlags) {
Jeff Brown3122e442010-10-11 23:32:49 -0700837 // Policy:
838 // - Ignore untrusted events and pass them along.
839 // - Ask the window manager what to do with normal events and trusted injected events.
840 // - For normal events wake and brighten the screen if currently off or dim.
841 if ((policyFlags & POLICY_FLAG_TRUSTED)) {
Jeff Brown1f245102010-11-18 20:53:46 -0800842 nsecs_t when = keyEvent->getEventTime();
Jeff Brown3122e442010-10-11 23:32:49 -0700843 bool isScreenOn = this->isScreenOn();
844 bool isScreenBright = this->isScreenBright();
Jeff Browne20c9e02010-10-11 14:20:19 -0700845
Jeff Brown3122e442010-10-11 23:32:49 -0700846 JNIEnv* env = jniEnv();
Jeff Brown1f245102010-11-18 20:53:46 -0800847 jobject keyEventObj = android_view_KeyEvent_fromNative(env, keyEvent);
848 jint wmActions;
849 if (keyEventObj) {
Jeff Brown4532e612012-04-05 14:27:12 -0700850 wmActions = env->CallIntMethod(mServiceObj,
851 gServiceClassInfo.interceptKeyBeforeQueueing,
Jeff Brown1f245102010-11-18 20:53:46 -0800852 keyEventObj, policyFlags, isScreenOn);
853 if (checkAndClearExceptionFromCallback(env, "interceptKeyBeforeQueueing")) {
854 wmActions = 0;
855 }
856 android_view_KeyEvent_recycle(env, keyEventObj);
857 env->DeleteLocalRef(keyEventObj);
858 } else {
Steve Block3762c312012-01-06 19:20:56 +0000859 ALOGE("Failed to obtain key event object for interceptKeyBeforeQueueing.");
Jeff Brown3122e442010-10-11 23:32:49 -0700860 wmActions = 0;
Jeff Browne20c9e02010-10-11 14:20:19 -0700861 }
862
Jeff Brown1f245102010-11-18 20:53:46 -0800863 if (!(policyFlags & POLICY_FLAG_INJECTED)) {
Jeff Brown3122e442010-10-11 23:32:49 -0700864 if (!isScreenOn) {
865 policyFlags |= POLICY_FLAG_WOKE_HERE;
Jeff Brown3122e442010-10-11 23:32:49 -0700866 }
867
868 if (!isScreenBright) {
869 policyFlags |= POLICY_FLAG_BRIGHT_HERE;
870 }
Jeff Browne20c9e02010-10-11 14:20:19 -0700871 }
872
Jeff Brown56194eb2011-03-02 19:23:13 -0800873 handleInterceptActions(wmActions, when, /*byref*/ policyFlags);
Jeff Brown3122e442010-10-11 23:32:49 -0700874 } else {
Jeff Browne20c9e02010-10-11 14:20:19 -0700875 policyFlags |= POLICY_FLAG_PASS_TO_USER;
876 }
877}
878
Jeff Brown56194eb2011-03-02 19:23:13 -0800879void NativeInputManager::interceptMotionBeforeQueueing(nsecs_t when, uint32_t& policyFlags) {
Jeff Brown3122e442010-10-11 23:32:49 -0700880 // Policy:
881 // - Ignore untrusted events and pass them along.
882 // - No special filtering for injected events required at this time.
883 // - Filter normal events based on screen state.
884 // - For normal events brighten (but do not wake) the screen if currently dim.
885 if ((policyFlags & POLICY_FLAG_TRUSTED) && !(policyFlags & POLICY_FLAG_INJECTED)) {
886 if (isScreenOn()) {
887 policyFlags |= POLICY_FLAG_PASS_TO_USER;
Jeff Browne20c9e02010-10-11 14:20:19 -0700888
Jeff Brown3122e442010-10-11 23:32:49 -0700889 if (!isScreenBright()) {
890 policyFlags |= POLICY_FLAG_BRIGHT_HERE;
891 }
Jeff Brown56194eb2011-03-02 19:23:13 -0800892 } else {
893 JNIEnv* env = jniEnv();
Jeff Brown4532e612012-04-05 14:27:12 -0700894 jint wmActions = env->CallIntMethod(mServiceObj,
895 gServiceClassInfo.interceptMotionBeforeQueueingWhenScreenOff,
Jeff Brown26875502014-01-30 21:47:47 -0800896 when, policyFlags);
Jeff Brown56194eb2011-03-02 19:23:13 -0800897 if (checkAndClearExceptionFromCallback(env,
898 "interceptMotionBeforeQueueingWhenScreenOff")) {
899 wmActions = 0;
900 }
901
902 policyFlags |= POLICY_FLAG_WOKE_HERE | POLICY_FLAG_BRIGHT_HERE;
903 handleInterceptActions(wmActions, when, /*byref*/ policyFlags);
Jeff Browne20c9e02010-10-11 14:20:19 -0700904 }
Jeff Brown3122e442010-10-11 23:32:49 -0700905 } else {
906 policyFlags |= POLICY_FLAG_PASS_TO_USER;
Jeff Browne20c9e02010-10-11 14:20:19 -0700907 }
908}
909
Jeff Brown56194eb2011-03-02 19:23:13 -0800910void NativeInputManager::handleInterceptActions(jint wmActions, nsecs_t when,
911 uint32_t& policyFlags) {
Jeff Brown56194eb2011-03-02 19:23:13 -0800912 if (wmActions & WM_ACTION_PASS_TO_USER) {
913 policyFlags |= POLICY_FLAG_PASS_TO_USER;
914 } else {
Jeff Brown9267beb2011-03-07 20:11:22 -0800915#if DEBUG_INPUT_DISPATCHER_POLICY
Steve Block5baa3a62011-12-20 16:23:08 +0000916 ALOGD("handleInterceptActions: Not passing key to user.");
Jeff Brown56194eb2011-03-02 19:23:13 -0800917#endif
918 }
919}
920
Jeff Brown905805a2011-10-12 13:57:59 -0700921nsecs_t NativeInputManager::interceptKeyBeforeDispatching(
Jeff Brown928e0542011-01-10 11:17:36 -0800922 const sp<InputWindowHandle>& inputWindowHandle,
Jeff Browne20c9e02010-10-11 14:20:19 -0700923 const KeyEvent* keyEvent, uint32_t policyFlags) {
Jeff Brown3122e442010-10-11 23:32:49 -0700924 // Policy:
925 // - Ignore untrusted events and pass them along.
926 // - Filter normal events and trusted injected events through the window manager policy to
927 // handle the HOME key and the like.
Jeff Brown905805a2011-10-12 13:57:59 -0700928 nsecs_t result = 0;
Jeff Brown3122e442010-10-11 23:32:49 -0700929 if (policyFlags & POLICY_FLAG_TRUSTED) {
930 JNIEnv* env = jniEnv();
Jeff Brownd0097872010-06-30 14:41:59 -0700931
Jeff Brown928e0542011-01-10 11:17:36 -0800932 // Note: inputWindowHandle may be null.
933 jobject inputWindowHandleObj = getInputWindowHandleObjLocalRef(env, inputWindowHandle);
Jeff Brown1f245102010-11-18 20:53:46 -0800934 jobject keyEventObj = android_view_KeyEvent_fromNative(env, keyEvent);
935 if (keyEventObj) {
Jeff Brown4532e612012-04-05 14:27:12 -0700936 jlong delayMillis = env->CallLongMethod(mServiceObj,
937 gServiceClassInfo.interceptKeyBeforeDispatching,
Jeff Brown928e0542011-01-10 11:17:36 -0800938 inputWindowHandleObj, keyEventObj, policyFlags);
Jeff Brown1f245102010-11-18 20:53:46 -0800939 bool error = checkAndClearExceptionFromCallback(env, "interceptKeyBeforeDispatching");
940 android_view_KeyEvent_recycle(env, keyEventObj);
941 env->DeleteLocalRef(keyEventObj);
Jeff Brown905805a2011-10-12 13:57:59 -0700942 if (!error) {
943 if (delayMillis < 0) {
944 result = -1;
945 } else if (delayMillis > 0) {
946 result = milliseconds_to_nanoseconds(delayMillis);
947 }
948 }
Jeff Brown1f245102010-11-18 20:53:46 -0800949 } else {
Steve Block3762c312012-01-06 19:20:56 +0000950 ALOGE("Failed to obtain key event object for interceptKeyBeforeDispatching.");
Jeff Brown1f245102010-11-18 20:53:46 -0800951 }
Jeff Brown928e0542011-01-10 11:17:36 -0800952 env->DeleteLocalRef(inputWindowHandleObj);
Jeff Brown3122e442010-10-11 23:32:49 -0700953 }
Jeff Brown1f245102010-11-18 20:53:46 -0800954 return result;
Jeff Brownd0097872010-06-30 14:41:59 -0700955}
956
Jeff Brown928e0542011-01-10 11:17:36 -0800957bool NativeInputManager::dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle,
Jeff Brown49ed71d2010-12-06 17:13:33 -0800958 const KeyEvent* keyEvent, uint32_t policyFlags, KeyEvent* outFallbackKeyEvent) {
Jeff Brown3915bb82010-11-05 15:02:16 -0700959 // Policy:
960 // - Ignore untrusted events and do not perform default handling.
Jeff Brown49ed71d2010-12-06 17:13:33 -0800961 bool result = false;
Jeff Brown3915bb82010-11-05 15:02:16 -0700962 if (policyFlags & POLICY_FLAG_TRUSTED) {
963 JNIEnv* env = jniEnv();
964
Jeff Brown928e0542011-01-10 11:17:36 -0800965 // Note: inputWindowHandle may be null.
966 jobject inputWindowHandleObj = getInputWindowHandleObjLocalRef(env, inputWindowHandle);
Jeff Brown1f245102010-11-18 20:53:46 -0800967 jobject keyEventObj = android_view_KeyEvent_fromNative(env, keyEvent);
968 if (keyEventObj) {
Jeff Brown4532e612012-04-05 14:27:12 -0700969 jobject fallbackKeyEventObj = env->CallObjectMethod(mServiceObj,
970 gServiceClassInfo.dispatchUnhandledKey,
Jeff Brown928e0542011-01-10 11:17:36 -0800971 inputWindowHandleObj, keyEventObj, policyFlags);
Jeff Brownda3d5a92011-03-29 15:11:34 -0700972 if (checkAndClearExceptionFromCallback(env, "dispatchUnhandledKey")) {
973 fallbackKeyEventObj = NULL;
974 }
Jeff Brown1f245102010-11-18 20:53:46 -0800975 android_view_KeyEvent_recycle(env, keyEventObj);
976 env->DeleteLocalRef(keyEventObj);
Jeff Brown49ed71d2010-12-06 17:13:33 -0800977
978 if (fallbackKeyEventObj) {
979 // Note: outFallbackKeyEvent may be the same object as keyEvent.
980 if (!android_view_KeyEvent_toNative(env, fallbackKeyEventObj,
981 outFallbackKeyEvent)) {
982 result = true;
983 }
984 android_view_KeyEvent_recycle(env, fallbackKeyEventObj);
985 env->DeleteLocalRef(fallbackKeyEventObj);
986 }
Jeff Brown1f245102010-11-18 20:53:46 -0800987 } else {
Steve Block3762c312012-01-06 19:20:56 +0000988 ALOGE("Failed to obtain key event object for dispatchUnhandledKey.");
Jeff Brown1f245102010-11-18 20:53:46 -0800989 }
Jeff Brown928e0542011-01-10 11:17:36 -0800990 env->DeleteLocalRef(inputWindowHandleObj);
Jeff Brown3915bb82010-11-05 15:02:16 -0700991 }
Jeff Brown1f245102010-11-18 20:53:46 -0800992 return result;
Jeff Brown3915bb82010-11-05 15:02:16 -0700993}
994
Jeff Brown01ce2e92010-09-26 22:20:12 -0700995void NativeInputManager::pokeUserActivity(nsecs_t eventTime, int32_t eventType) {
996 android_server_PowerManagerService_userActivity(eventTime, eventType);
Jeff Brown349703e2010-06-22 01:27:15 -0700997}
998
Jeff Brown349703e2010-06-22 01:27:15 -0700999
Jeff Brownb88102f2010-09-08 11:49:43 -07001000bool NativeInputManager::checkInjectEventsPermissionNonReentrant(
1001 int32_t injectorPid, int32_t injectorUid) {
1002 JNIEnv* env = jniEnv();
Jeff Brown4532e612012-04-05 14:27:12 -07001003 jboolean result = env->CallBooleanMethod(mServiceObj,
1004 gServiceClassInfo.checkInjectEventsPermission, injectorPid, injectorUid);
Jeff Brownda3d5a92011-03-29 15:11:34 -07001005 if (checkAndClearExceptionFromCallback(env, "checkInjectEventsPermission")) {
1006 result = false;
1007 }
Jeff Brown349703e2010-06-22 01:27:15 -07001008 return result;
1009}
1010
Jeff Brown2352b972011-04-12 22:39:53 -07001011void NativeInputManager::loadPointerResources(PointerResources* outResources) {
1012 JNIEnv* env = jniEnv();
1013
1014 loadSystemIconAsSprite(env, mContextObj, POINTER_ICON_STYLE_SPOT_HOVER,
1015 &outResources->spotHover);
1016 loadSystemIconAsSprite(env, mContextObj, POINTER_ICON_STYLE_SPOT_TOUCH,
1017 &outResources->spotTouch);
1018 loadSystemIconAsSprite(env, mContextObj, POINTER_ICON_STYLE_SPOT_ANCHOR,
1019 &outResources->spotAnchor);
1020}
1021
Jeff Brown83c09682010-12-23 17:50:18 -08001022
Jeff Brown9c3cda02010-06-15 01:31:58 -07001023// ----------------------------------------------------------------------------
1024
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001025static jlong nativeInit(JNIEnv* env, jclass clazz,
Jeff Brown4532e612012-04-05 14:27:12 -07001026 jobject serviceObj, jobject contextObj, jobject messageQueueObj) {
Jeff Brown603b4452012-04-06 17:39:41 -07001027 sp<MessageQueue> messageQueue = android_os_MessageQueue_getMessageQueue(env, messageQueueObj);
Jeff Brown864693462013-01-28 14:25:53 -08001028 if (messageQueue == NULL) {
1029 jniThrowRuntimeException(env, "MessageQueue is not initialized.");
1030 return 0;
1031 }
1032
Jeff Brown603b4452012-04-06 17:39:41 -07001033 NativeInputManager* im = new NativeInputManager(contextObj, serviceObj,
1034 messageQueue->getLooper());
Mathias Agopianb1d90c82013-03-06 17:45:42 -08001035 im->incStrong(0);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001036 return reinterpret_cast<jlong>(im);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001037}
1038
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001039static void nativeStart(JNIEnv* env, jclass clazz, jlong ptr) {
Jeff Brown4532e612012-04-05 14:27:12 -07001040 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001041
Jeff Brown4532e612012-04-05 14:27:12 -07001042 status_t result = im->getInputManager()->start();
Jeff Brown46b9ac02010-04-22 18:58:52 -07001043 if (result) {
1044 jniThrowRuntimeException(env, "Input manager could not be started.");
1045 }
1046}
1047
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001048static void nativeSetDisplayViewport(JNIEnv* env, jclass clazz, jlong ptr, jboolean external,
Jeff Brownd728bf52012-09-08 18:05:28 -07001049 jint displayId, jint orientation,
1050 jint logicalLeft, jint logicalTop, jint logicalRight, jint logicalBottom,
Jeff Brown83d616a2012-09-09 20:33:43 -07001051 jint physicalLeft, jint physicalTop, jint physicalRight, jint physicalBottom,
1052 jint deviceWidth, jint deviceHeight) {
Jeff Brown4532e612012-04-05 14:27:12 -07001053 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001054
Jeff Brownd728bf52012-09-08 18:05:28 -07001055 DisplayViewport v;
1056 v.displayId = displayId;
1057 v.orientation = orientation;
1058 v.logicalLeft = logicalLeft;
1059 v.logicalTop = logicalTop;
1060 v.logicalRight = logicalRight;
1061 v.logicalBottom = logicalBottom;
1062 v.physicalLeft = physicalLeft;
1063 v.physicalTop = physicalTop;
1064 v.physicalRight = physicalRight;
1065 v.physicalBottom = physicalBottom;
Jeff Brown83d616a2012-09-09 20:33:43 -07001066 v.deviceWidth = deviceWidth;
1067 v.deviceHeight = deviceHeight;
Jeff Brownd728bf52012-09-08 18:05:28 -07001068 im->setDisplayViewport(external, v);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001069}
1070
Jeff Brown4532e612012-04-05 14:27:12 -07001071static jint nativeGetScanCodeState(JNIEnv* env, jclass clazz,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001072 jlong ptr, jint deviceId, jint sourceMask, jint scanCode) {
Jeff Brown4532e612012-04-05 14:27:12 -07001073 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001074
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001075 return (jint) im->getInputManager()->getReader()->getScanCodeState(
Jeff Brown6d0fec22010-07-23 21:28:06 -07001076 deviceId, uint32_t(sourceMask), scanCode);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001077}
1078
Jeff Brown4532e612012-04-05 14:27:12 -07001079static jint nativeGetKeyCodeState(JNIEnv* env, jclass clazz,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001080 jlong ptr, jint deviceId, jint sourceMask, jint keyCode) {
Jeff Brown4532e612012-04-05 14:27:12 -07001081 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001082
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001083 return (jint) im->getInputManager()->getReader()->getKeyCodeState(
Jeff Brown6d0fec22010-07-23 21:28:06 -07001084 deviceId, uint32_t(sourceMask), keyCode);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001085}
1086
Jeff Brown4532e612012-04-05 14:27:12 -07001087static jint nativeGetSwitchState(JNIEnv* env, jclass clazz,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001088 jlong ptr, jint deviceId, jint sourceMask, jint sw) {
Jeff Brown4532e612012-04-05 14:27:12 -07001089 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001090
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001091 return (jint) im->getInputManager()->getReader()->getSwitchState(
Jeff Brown6d0fec22010-07-23 21:28:06 -07001092 deviceId, uint32_t(sourceMask), sw);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001093}
1094
Jeff Brown4532e612012-04-05 14:27:12 -07001095static jboolean nativeHasKeys(JNIEnv* env, jclass clazz,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001096 jlong ptr, jint deviceId, jint sourceMask, jintArray keyCodes, jbooleanArray outFlags) {
Jeff Brown4532e612012-04-05 14:27:12 -07001097 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001098
1099 int32_t* codes = env->GetIntArrayElements(keyCodes, NULL);
1100 uint8_t* flags = env->GetBooleanArrayElements(outFlags, NULL);
1101 jsize numCodes = env->GetArrayLength(keyCodes);
1102 jboolean result;
Jeff Brown6d0fec22010-07-23 21:28:06 -07001103 if (numCodes == env->GetArrayLength(keyCodes)) {
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001104 if (im->getInputManager()->getReader()->hasKeys(
1105 deviceId, uint32_t(sourceMask), numCodes, codes, flags)) {
1106 result = JNI_TRUE;
1107 } else {
1108 result = JNI_FALSE;
1109 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07001110 } else {
1111 result = JNI_FALSE;
1112 }
1113
1114 env->ReleaseBooleanArrayElements(outFlags, flags, 0);
1115 env->ReleaseIntArrayElements(keyCodes, codes, 0);
1116 return result;
1117}
1118
1119static void throwInputChannelNotInitialized(JNIEnv* env) {
1120 jniThrowException(env, "java/lang/IllegalStateException",
1121 "inputChannel is not initialized");
1122}
1123
Jeff Brown4532e612012-04-05 14:27:12 -07001124static void handleInputChannelDisposed(JNIEnv* env,
Jeff Brown46b9ac02010-04-22 18:58:52 -07001125 jobject inputChannelObj, const sp<InputChannel>& inputChannel, void* data) {
Jeff Brown4532e612012-04-05 14:27:12 -07001126 NativeInputManager* im = static_cast<NativeInputManager*>(data);
1127
Steve Block8564c8d2012-01-05 23:22:43 +00001128 ALOGW("Input channel object '%s' was disposed without first being unregistered with "
Jeff Brown46b9ac02010-04-22 18:58:52 -07001129 "the input manager!", inputChannel->getName().string());
Jeff Brown4532e612012-04-05 14:27:12 -07001130 im->unregisterInputChannel(env, inputChannel);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001131}
1132
Jeff Brown4532e612012-04-05 14:27:12 -07001133static void nativeRegisterInputChannel(JNIEnv* env, jclass clazz,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001134 jlong ptr, jobject inputChannelObj, jobject inputWindowHandleObj, jboolean monitor) {
Jeff Brown4532e612012-04-05 14:27:12 -07001135 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001136
1137 sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env,
1138 inputChannelObj);
1139 if (inputChannel == NULL) {
1140 throwInputChannelNotInitialized(env);
1141 return;
1142 }
1143
Jeff Brown928e0542011-01-10 11:17:36 -08001144 sp<InputWindowHandle> inputWindowHandle =
1145 android_server_InputWindowHandle_getHandle(env, inputWindowHandleObj);
Jeff Brown7fbdc842010-06-17 20:52:56 -07001146
Jeff Brown4532e612012-04-05 14:27:12 -07001147 status_t status = im->registerInputChannel(
Jeff Brown928e0542011-01-10 11:17:36 -08001148 env, inputChannel, inputWindowHandle, monitor);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001149 if (status) {
Jeff Browncc4f7db2011-08-30 20:34:48 -07001150 String8 message;
1151 message.appendFormat("Failed to register input channel. status=%d", status);
1152 jniThrowRuntimeException(env, message.string());
Jeff Brown46b9ac02010-04-22 18:58:52 -07001153 return;
1154 }
1155
Jeff Browna41ca772010-08-11 14:46:32 -07001156 if (! monitor) {
1157 android_view_InputChannel_setDisposeCallback(env, inputChannelObj,
Jeff Brown4532e612012-04-05 14:27:12 -07001158 handleInputChannelDisposed, im);
Jeff Browna41ca772010-08-11 14:46:32 -07001159 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07001160}
1161
Jeff Brown4532e612012-04-05 14:27:12 -07001162static void nativeUnregisterInputChannel(JNIEnv* env, jclass clazz,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001163 jlong ptr, jobject inputChannelObj) {
Jeff Brown4532e612012-04-05 14:27:12 -07001164 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001165
1166 sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env,
1167 inputChannelObj);
1168 if (inputChannel == NULL) {
1169 throwInputChannelNotInitialized(env);
1170 return;
1171 }
1172
1173 android_view_InputChannel_setDisposeCallback(env, inputChannelObj, NULL, NULL);
1174
Jeff Brown4532e612012-04-05 14:27:12 -07001175 status_t status = im->unregisterInputChannel(env, inputChannel);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001176 if (status && status != BAD_VALUE) { // ignore already unregistered channel
1177 String8 message;
1178 message.appendFormat("Failed to unregister input channel. status=%d", status);
1179 jniThrowRuntimeException(env, message.string());
Jeff Brown46b9ac02010-04-22 18:58:52 -07001180 }
1181}
1182
Jeff Brown4532e612012-04-05 14:27:12 -07001183static void nativeSetInputFilterEnabled(JNIEnv* env, jclass clazz,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001184 jlong ptr, jboolean enabled) {
Jeff Brown4532e612012-04-05 14:27:12 -07001185 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown0029c662011-03-30 02:25:18 -07001186
Jeff Brown4532e612012-04-05 14:27:12 -07001187 im->getInputManager()->getDispatcher()->setInputFilterEnabled(enabled);
Jeff Brown0029c662011-03-30 02:25:18 -07001188}
1189
Jeff Brown4532e612012-04-05 14:27:12 -07001190static jint nativeInjectInputEvent(JNIEnv* env, jclass clazz,
Jeff Brownca9bc702014-02-11 14:32:56 -08001191 jlong ptr, jobject inputEventObj, jint displayId, jint injectorPid, jint injectorUid,
Jeff Brown0029c662011-03-30 02:25:18 -07001192 jint syncMode, jint timeoutMillis, jint policyFlags) {
Jeff Brown4532e612012-04-05 14:27:12 -07001193 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown7fbdc842010-06-17 20:52:56 -07001194
Jeff Brown6ec402b2010-07-28 15:48:59 -07001195 if (env->IsInstanceOf(inputEventObj, gKeyEventClassInfo.clazz)) {
1196 KeyEvent keyEvent;
Jeff Brown1f245102010-11-18 20:53:46 -08001197 status_t status = android_view_KeyEvent_toNative(env, inputEventObj, & keyEvent);
1198 if (status) {
1199 jniThrowRuntimeException(env, "Could not read contents of KeyEvent object.");
1200 return INPUT_EVENT_INJECTION_FAILED;
1201 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07001202
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001203 return (jint) im->getInputManager()->getDispatcher()->injectInputEvent(
Jeff Brownca9bc702014-02-11 14:32:56 -08001204 & keyEvent, displayId, injectorPid, injectorUid, syncMode, timeoutMillis,
Jeff Brown0029c662011-03-30 02:25:18 -07001205 uint32_t(policyFlags));
Jeff Brown6ec402b2010-07-28 15:48:59 -07001206 } else if (env->IsInstanceOf(inputEventObj, gMotionEventClassInfo.clazz)) {
Jeff Brown2ed24622011-03-14 19:39:54 -07001207 const MotionEvent* motionEvent = android_view_MotionEvent_getNativePtr(env, inputEventObj);
1208 if (!motionEvent) {
Jeff Brown1f245102010-11-18 20:53:46 -08001209 jniThrowRuntimeException(env, "Could not read contents of MotionEvent object.");
1210 return INPUT_EVENT_INJECTION_FAILED;
1211 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07001212
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001213 return (jint) im->getInputManager()->getDispatcher()->injectInputEvent(
Jeff Brownca9bc702014-02-11 14:32:56 -08001214 motionEvent, displayId, injectorPid, injectorUid, syncMode, timeoutMillis,
Jeff Brown0029c662011-03-30 02:25:18 -07001215 uint32_t(policyFlags));
Jeff Brown6ec402b2010-07-28 15:48:59 -07001216 } else {
1217 jniThrowRuntimeException(env, "Invalid input event type.");
Jeff Brown7fbdc842010-06-17 20:52:56 -07001218 return INPUT_EVENT_INJECTION_FAILED;
1219 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07001220}
1221
Jeff Brown4532e612012-04-05 14:27:12 -07001222static void nativeSetInputWindows(JNIEnv* env, jclass clazz,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001223 jlong ptr, jobjectArray windowHandleObjArray) {
Jeff Brown4532e612012-04-05 14:27:12 -07001224 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown349703e2010-06-22 01:27:15 -07001225
Jeff Brown4532e612012-04-05 14:27:12 -07001226 im->setInputWindows(env, windowHandleObjArray);
Jeff Brown349703e2010-06-22 01:27:15 -07001227}
1228
Jeff Brown4532e612012-04-05 14:27:12 -07001229static void nativeSetFocusedApplication(JNIEnv* env, jclass clazz,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001230 jlong ptr, jobject applicationHandleObj) {
Jeff Brown4532e612012-04-05 14:27:12 -07001231 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown349703e2010-06-22 01:27:15 -07001232
Jeff Brown4532e612012-04-05 14:27:12 -07001233 im->setFocusedApplication(env, applicationHandleObj);
Jeff Brown349703e2010-06-22 01:27:15 -07001234}
1235
Jeff Brown4532e612012-04-05 14:27:12 -07001236static void nativeSetInputDispatchMode(JNIEnv* env,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001237 jclass clazz, jlong ptr, jboolean enabled, jboolean frozen) {
Jeff Brown4532e612012-04-05 14:27:12 -07001238 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown349703e2010-06-22 01:27:15 -07001239
Jeff Brown4532e612012-04-05 14:27:12 -07001240 im->setInputDispatchMode(enabled, frozen);
Jeff Brown349703e2010-06-22 01:27:15 -07001241}
1242
Jeff Brown4532e612012-04-05 14:27:12 -07001243static void nativeSetSystemUiVisibility(JNIEnv* env,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001244 jclass clazz, jlong ptr, jint visibility) {
Jeff Brown4532e612012-04-05 14:27:12 -07001245 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown05dc66a2011-03-02 14:41:58 -08001246
Jeff Brown4532e612012-04-05 14:27:12 -07001247 im->setSystemUiVisibility(visibility);
Jeff Brown05dc66a2011-03-02 14:41:58 -08001248}
1249
Jeff Brown4532e612012-04-05 14:27:12 -07001250static jboolean nativeTransferTouchFocus(JNIEnv* env,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001251 jclass clazz, jlong ptr, jobject fromChannelObj, jobject toChannelObj) {
Jeff Brown4532e612012-04-05 14:27:12 -07001252 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Browne6504122010-09-27 14:52:15 -07001253
1254 sp<InputChannel> fromChannel =
1255 android_view_InputChannel_getInputChannel(env, fromChannelObj);
1256 sp<InputChannel> toChannel =
1257 android_view_InputChannel_getInputChannel(env, toChannelObj);
1258
1259 if (fromChannel == NULL || toChannel == NULL) {
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001260 return JNI_FALSE;
Jeff Browne6504122010-09-27 14:52:15 -07001261 }
1262
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001263 if (im->getInputManager()->getDispatcher()->
1264 transferTouchFocus(fromChannel, toChannel)) {
1265 return JNI_TRUE;
1266 } else {
1267 return JNI_FALSE;
1268 }
Jeff Browne6504122010-09-27 14:52:15 -07001269}
1270
Jeff Brown4532e612012-04-05 14:27:12 -07001271static void nativeSetPointerSpeed(JNIEnv* env,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001272 jclass clazz, jlong ptr, jint speed) {
Jeff Brown4532e612012-04-05 14:27:12 -07001273 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown1a84fd12011-06-02 01:26:32 -07001274
Jeff Brown4532e612012-04-05 14:27:12 -07001275 im->setPointerSpeed(speed);
Jeff Brown1a84fd12011-06-02 01:26:32 -07001276}
1277
Jeff Brown4532e612012-04-05 14:27:12 -07001278static void nativeSetShowTouches(JNIEnv* env,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001279 jclass clazz, jlong ptr, jboolean enabled) {
Jeff Brown4532e612012-04-05 14:27:12 -07001280 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Browndaf4a122011-08-26 17:14:14 -07001281
Jeff Brown4532e612012-04-05 14:27:12 -07001282 im->setShowTouches(enabled);
Jeff Browndaf4a122011-08-26 17:14:14 -07001283}
1284
Jason Gerecke857aa7b2014-01-27 18:34:20 -08001285static void nativeReloadCalibration(JNIEnv* env, jclass clazz, jlong ptr) {
1286 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
1287 im->reloadCalibration();
1288}
1289
Jeff Browna47425a2012-04-13 04:09:27 -07001290static void nativeVibrate(JNIEnv* env,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001291 jclass clazz, jlong ptr, jint deviceId, jlongArray patternObj,
Jeff Browna47425a2012-04-13 04:09:27 -07001292 jint repeat, jint token) {
1293 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
1294
1295 size_t patternSize = env->GetArrayLength(patternObj);
1296 if (patternSize > MAX_VIBRATE_PATTERN_SIZE) {
1297 ALOGI("Skipped requested vibration because the pattern size is %d "
1298 "which is more than the maximum supported size of %d.",
1299 patternSize, MAX_VIBRATE_PATTERN_SIZE);
1300 return; // limit to reasonable size
1301 }
1302
1303 jlong* patternMillis = static_cast<jlong*>(env->GetPrimitiveArrayCritical(
1304 patternObj, NULL));
1305 nsecs_t pattern[patternSize];
1306 for (size_t i = 0; i < patternSize; i++) {
1307 pattern[i] = max(jlong(0), min(patternMillis[i],
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001308 (jlong)(MAX_VIBRATE_PATTERN_DELAY_NSECS / 1000000LL))) * 1000000LL;
Jeff Browna47425a2012-04-13 04:09:27 -07001309 }
1310 env->ReleasePrimitiveArrayCritical(patternObj, patternMillis, JNI_ABORT);
1311
1312 im->getInputManager()->getReader()->vibrate(deviceId, pattern, patternSize, repeat, token);
1313}
1314
1315static void nativeCancelVibrate(JNIEnv* env,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001316 jclass clazz, jlong ptr, jint deviceId, jint token) {
Jeff Browna47425a2012-04-13 04:09:27 -07001317 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
1318
1319 im->getInputManager()->getReader()->cancelVibrate(deviceId, token);
1320}
1321
Jeff Brown6ec6f792012-04-17 16:52:41 -07001322static void nativeReloadKeyboardLayouts(JNIEnv* env,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001323 jclass clazz, jlong ptr) {
Jeff Brown6ec6f792012-04-17 16:52:41 -07001324 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
1325
Jeff Brown5bbd4b42012-04-20 19:28:00 -07001326 im->getInputManager()->getReader()->requestRefreshConfiguration(
1327 InputReaderConfiguration::CHANGE_KEYBOARD_LAYOUTS);
1328}
1329
1330static void nativeReloadDeviceAliases(JNIEnv* env,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001331 jclass clazz, jlong ptr) {
Jeff Brown5bbd4b42012-04-20 19:28:00 -07001332 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
1333
1334 im->getInputManager()->getReader()->requestRefreshConfiguration(
1335 InputReaderConfiguration::CHANGE_DEVICE_ALIAS);
Jeff Brown6ec6f792012-04-17 16:52:41 -07001336}
1337
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001338static jstring nativeDump(JNIEnv* env, jclass clazz, jlong ptr) {
Jeff Brown4532e612012-04-05 14:27:12 -07001339 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Browne33348b2010-07-15 23:54:05 -07001340
Jeff Brownb88102f2010-09-08 11:49:43 -07001341 String8 dump;
Jeff Brown4532e612012-04-05 14:27:12 -07001342 im->dump(dump);
Jeff Browne33348b2010-07-15 23:54:05 -07001343 return env->NewStringUTF(dump.string());
1344}
1345
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001346static void nativeMonitor(JNIEnv* env, jclass clazz, jlong ptr) {
Jeff Brown4532e612012-04-05 14:27:12 -07001347 NativeInputManager* im = reinterpret_cast<NativeInputManager*>(ptr);
Jeff Brown89ef0722011-08-10 16:25:21 -07001348
Jeff Brown4532e612012-04-05 14:27:12 -07001349 im->getInputManager()->getReader()->monitor();
1350 im->getInputManager()->getDispatcher()->monitor();
Jeff Brown89ef0722011-08-10 16:25:21 -07001351}
1352
Jeff Brown9c3cda02010-06-15 01:31:58 -07001353// ----------------------------------------------------------------------------
1354
Jeff Brown46b9ac02010-04-22 18:58:52 -07001355static JNINativeMethod gInputManagerMethods[] = {
1356 /* name, signature, funcPtr */
Jeff Brown4532e612012-04-05 14:27:12 -07001357 { "nativeInit",
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001358 "(Lcom/android/server/input/InputManagerService;Landroid/content/Context;Landroid/os/MessageQueue;)J",
Jeff Brown4532e612012-04-05 14:27:12 -07001359 (void*) nativeInit },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001360 { "nativeStart", "(J)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001361 (void*) nativeStart },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001362 { "nativeSetDisplayViewport", "(JZIIIIIIIIIIII)V",
Jeff Brownd728bf52012-09-08 18:05:28 -07001363 (void*) nativeSetDisplayViewport },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001364 { "nativeGetScanCodeState", "(JIII)I",
Jeff Brown4532e612012-04-05 14:27:12 -07001365 (void*) nativeGetScanCodeState },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001366 { "nativeGetKeyCodeState", "(JIII)I",
Jeff Brown4532e612012-04-05 14:27:12 -07001367 (void*) nativeGetKeyCodeState },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001368 { "nativeGetSwitchState", "(JIII)I",
Jeff Brown4532e612012-04-05 14:27:12 -07001369 (void*) nativeGetSwitchState },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001370 { "nativeHasKeys", "(JII[I[Z)Z",
Jeff Brown4532e612012-04-05 14:27:12 -07001371 (void*) nativeHasKeys },
Jeff Brown928e0542011-01-10 11:17:36 -08001372 { "nativeRegisterInputChannel",
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001373 "(JLandroid/view/InputChannel;Lcom/android/server/input/InputWindowHandle;Z)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001374 (void*) nativeRegisterInputChannel },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001375 { "nativeUnregisterInputChannel", "(JLandroid/view/InputChannel;)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001376 (void*) nativeUnregisterInputChannel },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001377 { "nativeSetInputFilterEnabled", "(JZ)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001378 (void*) nativeSetInputFilterEnabled },
Jeff Brownca9bc702014-02-11 14:32:56 -08001379 { "nativeInjectInputEvent", "(JLandroid/view/InputEvent;IIIIII)I",
Jeff Brown4532e612012-04-05 14:27:12 -07001380 (void*) nativeInjectInputEvent },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001381 { "nativeSetInputWindows", "(J[Lcom/android/server/input/InputWindowHandle;)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001382 (void*) nativeSetInputWindows },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001383 { "nativeSetFocusedApplication", "(JLcom/android/server/input/InputApplicationHandle;)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001384 (void*) nativeSetFocusedApplication },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001385 { "nativeSetInputDispatchMode", "(JZZ)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001386 (void*) nativeSetInputDispatchMode },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001387 { "nativeSetSystemUiVisibility", "(JI)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001388 (void*) nativeSetSystemUiVisibility },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001389 { "nativeTransferTouchFocus", "(JLandroid/view/InputChannel;Landroid/view/InputChannel;)Z",
Jeff Brown4532e612012-04-05 14:27:12 -07001390 (void*) nativeTransferTouchFocus },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001391 { "nativeSetPointerSpeed", "(JI)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001392 (void*) nativeSetPointerSpeed },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001393 { "nativeSetShowTouches", "(JZ)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001394 (void*) nativeSetShowTouches },
Jason Gerecke857aa7b2014-01-27 18:34:20 -08001395 { "nativeReloadCalibration", "(J)V",
1396 (void*) nativeReloadCalibration },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001397 { "nativeVibrate", "(JI[JII)V",
Jeff Browna47425a2012-04-13 04:09:27 -07001398 (void*) nativeVibrate },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001399 { "nativeCancelVibrate", "(JII)V",
Jeff Browna47425a2012-04-13 04:09:27 -07001400 (void*) nativeCancelVibrate },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001401 { "nativeReloadKeyboardLayouts", "(J)V",
Jeff Brown6ec6f792012-04-17 16:52:41 -07001402 (void*) nativeReloadKeyboardLayouts },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001403 { "nativeReloadDeviceAliases", "(J)V",
Jeff Brown5bbd4b42012-04-20 19:28:00 -07001404 (void*) nativeReloadDeviceAliases },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001405 { "nativeDump", "(J)Ljava/lang/String;",
Jeff Brown4532e612012-04-05 14:27:12 -07001406 (void*) nativeDump },
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +00001407 { "nativeMonitor", "(J)V",
Jeff Brown4532e612012-04-05 14:27:12 -07001408 (void*) nativeMonitor },
Jeff Brown46b9ac02010-04-22 18:58:52 -07001409};
1410
1411#define FIND_CLASS(var, className) \
1412 var = env->FindClass(className); \
Carl Shapiro17cc33a2011-03-05 20:53:16 -08001413 LOG_FATAL_IF(! var, "Unable to find class " className);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001414
1415#define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
1416 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
1417 LOG_FATAL_IF(! var, "Unable to find method " methodName);
1418
1419#define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
1420 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
1421 LOG_FATAL_IF(! var, "Unable to find field " fieldName);
1422
1423int register_android_server_InputManager(JNIEnv* env) {
Jeff Brown4532e612012-04-05 14:27:12 -07001424 int res = jniRegisterNativeMethods(env, "com/android/server/input/InputManagerService",
Jeff Brown46b9ac02010-04-22 18:58:52 -07001425 gInputManagerMethods, NELEM(gInputManagerMethods));
1426 LOG_FATAL_IF(res < 0, "Unable to register native methods.");
1427
Jeff Brown9c3cda02010-06-15 01:31:58 -07001428 // Callbacks
Jeff Brown46b9ac02010-04-22 18:58:52 -07001429
Carl Shapiro17cc33a2011-03-05 20:53:16 -08001430 jclass clazz;
Jeff Brown4532e612012-04-05 14:27:12 -07001431 FIND_CLASS(clazz, "com/android/server/input/InputManagerService");
Jeff Brown46b9ac02010-04-22 18:58:52 -07001432
Jeff Brown4532e612012-04-05 14:27:12 -07001433 GET_METHOD_ID(gServiceClassInfo.notifyConfigurationChanged, clazz,
Jeff Brown57c59372010-09-21 18:22:55 -07001434 "notifyConfigurationChanged", "(J)V");
Jeff Brown46b9ac02010-04-22 18:58:52 -07001435
Jeff Brownaf9e8d32012-04-12 17:32:48 -07001436 GET_METHOD_ID(gServiceClassInfo.notifyInputDevicesChanged, clazz,
1437 "notifyInputDevicesChanged", "([Landroid/view/InputDevice;)V");
1438
Jeff Brown53384282012-08-20 20:16:01 -07001439 GET_METHOD_ID(gServiceClassInfo.notifySwitch, clazz,
1440 "notifySwitch", "(JII)V");
Jeff Brown46b9ac02010-04-22 18:58:52 -07001441
Jeff Brown4532e612012-04-05 14:27:12 -07001442 GET_METHOD_ID(gServiceClassInfo.notifyInputChannelBroken, clazz,
1443 "notifyInputChannelBroken", "(Lcom/android/server/input/InputWindowHandle;)V");
Jeff Brown7fbdc842010-06-17 20:52:56 -07001444
Jeff Brown4532e612012-04-05 14:27:12 -07001445 GET_METHOD_ID(gServiceClassInfo.notifyANR, clazz,
Jeff Brown928e0542011-01-10 11:17:36 -08001446 "notifyANR",
Jeff Brownbd181bb2013-09-10 16:44:24 -07001447 "(Lcom/android/server/input/InputApplicationHandle;Lcom/android/server/input/InputWindowHandle;Ljava/lang/String;)J");
Jeff Brown349703e2010-06-22 01:27:15 -07001448
Jeff Brown4532e612012-04-05 14:27:12 -07001449 GET_METHOD_ID(gServiceClassInfo.filterInputEvent, clazz,
Jeff Brown0029c662011-03-30 02:25:18 -07001450 "filterInputEvent", "(Landroid/view/InputEvent;I)Z");
1451
Jeff Brown4532e612012-04-05 14:27:12 -07001452 GET_METHOD_ID(gServiceClassInfo.interceptKeyBeforeQueueing, clazz,
Jeff Brown1f245102010-11-18 20:53:46 -08001453 "interceptKeyBeforeQueueing", "(Landroid/view/KeyEvent;IZ)I");
Jeff Brown349703e2010-06-22 01:27:15 -07001454
Jeff Brown4532e612012-04-05 14:27:12 -07001455 GET_METHOD_ID(gServiceClassInfo.interceptMotionBeforeQueueingWhenScreenOff,
Carl Shapiro17cc33a2011-03-05 20:53:16 -08001456 clazz,
Jeff Brown26875502014-01-30 21:47:47 -08001457 "interceptMotionBeforeQueueingWhenScreenOff", "(JI)I");
Jeff Brown56194eb2011-03-02 19:23:13 -08001458
Jeff Brown4532e612012-04-05 14:27:12 -07001459 GET_METHOD_ID(gServiceClassInfo.interceptKeyBeforeDispatching, clazz,
Jeff Brown1f245102010-11-18 20:53:46 -08001460 "interceptKeyBeforeDispatching",
Jeff Brown4532e612012-04-05 14:27:12 -07001461 "(Lcom/android/server/input/InputWindowHandle;Landroid/view/KeyEvent;I)J");
Jeff Brown349703e2010-06-22 01:27:15 -07001462
Jeff Brown4532e612012-04-05 14:27:12 -07001463 GET_METHOD_ID(gServiceClassInfo.dispatchUnhandledKey, clazz,
Jeff Brown49ed71d2010-12-06 17:13:33 -08001464 "dispatchUnhandledKey",
Jeff Brown4532e612012-04-05 14:27:12 -07001465 "(Lcom/android/server/input/InputWindowHandle;Landroid/view/KeyEvent;I)Landroid/view/KeyEvent;");
Jeff Brown3915bb82010-11-05 15:02:16 -07001466
Jeff Brown4532e612012-04-05 14:27:12 -07001467 GET_METHOD_ID(gServiceClassInfo.checkInjectEventsPermission, clazz,
Jeff Brown349703e2010-06-22 01:27:15 -07001468 "checkInjectEventsPermission", "(II)Z");
Jeff Brown46b9ac02010-04-22 18:58:52 -07001469
Jeff Brown4532e612012-04-05 14:27:12 -07001470 GET_METHOD_ID(gServiceClassInfo.getVirtualKeyQuietTimeMillis, clazz,
Jeff Brownfe508922011-01-18 15:10:10 -08001471 "getVirtualKeyQuietTimeMillis", "()I");
1472
Jeff Brown4532e612012-04-05 14:27:12 -07001473 GET_METHOD_ID(gServiceClassInfo.getExcludedDeviceNames, clazz,
Jeff Brown46b9ac02010-04-22 18:58:52 -07001474 "getExcludedDeviceNames", "()[Ljava/lang/String;");
1475
Jeff Brown4532e612012-04-05 14:27:12 -07001476 GET_METHOD_ID(gServiceClassInfo.getKeyRepeatTimeout, clazz,
Jeff Browna4547672011-03-02 21:38:11 -08001477 "getKeyRepeatTimeout", "()I");
1478
Jeff Brown4532e612012-04-05 14:27:12 -07001479 GET_METHOD_ID(gServiceClassInfo.getKeyRepeatDelay, clazz,
Jeff Browna4547672011-03-02 21:38:11 -08001480 "getKeyRepeatDelay", "()I");
1481
Jeff Brown4532e612012-04-05 14:27:12 -07001482 GET_METHOD_ID(gServiceClassInfo.getHoverTapTimeout, clazz,
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -07001483 "getHoverTapTimeout", "()I");
1484
Jeff Brown4532e612012-04-05 14:27:12 -07001485 GET_METHOD_ID(gServiceClassInfo.getHoverTapSlop, clazz,
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -07001486 "getHoverTapSlop", "()I");
Jeff Brown214eaf42011-05-26 19:17:02 -07001487
Jeff Brown4532e612012-04-05 14:27:12 -07001488 GET_METHOD_ID(gServiceClassInfo.getDoubleTapTimeout, clazz,
Jeff Brown214eaf42011-05-26 19:17:02 -07001489 "getDoubleTapTimeout", "()I");
1490
Jeff Brown4532e612012-04-05 14:27:12 -07001491 GET_METHOD_ID(gServiceClassInfo.getLongPressTimeout, clazz,
Jeff Brown214eaf42011-05-26 19:17:02 -07001492 "getLongPressTimeout", "()I");
1493
Jeff Brown4532e612012-04-05 14:27:12 -07001494 GET_METHOD_ID(gServiceClassInfo.getPointerLayer, clazz,
Jeff Brown83c09682010-12-23 17:50:18 -08001495 "getPointerLayer", "()I");
1496
Jeff Brown4532e612012-04-05 14:27:12 -07001497 GET_METHOD_ID(gServiceClassInfo.getPointerIcon, clazz,
Jeff Brown2352b972011-04-12 22:39:53 -07001498 "getPointerIcon", "()Landroid/view/PointerIcon;");
Jeff Brownb4ff35d2011-01-02 16:37:43 -08001499
Jeff Brown6ec6f792012-04-17 16:52:41 -07001500 GET_METHOD_ID(gServiceClassInfo.getKeyboardLayoutOverlay, clazz,
RoboErikfb290df2013-12-16 11:27:55 -08001501 "getKeyboardLayoutOverlay",
1502 "(Landroid/hardware/input/InputDeviceIdentifier;)[Ljava/lang/String;");
Jeff Brown6ec6f792012-04-17 16:52:41 -07001503
Jeff Brown5bbd4b42012-04-20 19:28:00 -07001504 GET_METHOD_ID(gServiceClassInfo.getDeviceAlias, clazz,
1505 "getDeviceAlias", "(Ljava/lang/String;)Ljava/lang/String;");
1506
Jason Gerecke857aa7b2014-01-27 18:34:20 -08001507 GET_METHOD_ID(gServiceClassInfo.getTouchCalibrationForInputDevice, clazz,
1508 "getTouchCalibrationForInputDevice",
1509 "(Ljava/lang/String;)Landroid/hardware/input/TouchCalibration;");
1510
Jeff Brownaf9e8d32012-04-12 17:32:48 -07001511 // InputDevice
1512
1513 FIND_CLASS(gInputDeviceClassInfo.clazz, "android/view/InputDevice");
1514 gInputDeviceClassInfo.clazz = jclass(env->NewGlobalRef(gInputDeviceClassInfo.clazz));
1515
Jeff Brown6ec402b2010-07-28 15:48:59 -07001516 // KeyEvent
1517
1518 FIND_CLASS(gKeyEventClassInfo.clazz, "android/view/KeyEvent");
Carl Shapiro17cc33a2011-03-05 20:53:16 -08001519 gKeyEventClassInfo.clazz = jclass(env->NewGlobalRef(gKeyEventClassInfo.clazz));
1520
Jeff Brown8d608662010-08-30 03:02:23 -07001521 // MotionEvent
Jeff Brown6ec402b2010-07-28 15:48:59 -07001522
1523 FIND_CLASS(gMotionEventClassInfo.clazz, "android/view/MotionEvent");
Carl Shapiro17cc33a2011-03-05 20:53:16 -08001524 gMotionEventClassInfo.clazz = jclass(env->NewGlobalRef(gMotionEventClassInfo.clazz));
Jeff Brown6ec402b2010-07-28 15:48:59 -07001525
RoboErikfb290df2013-12-16 11:27:55 -08001526 // InputDeviceIdentifier
1527
1528 FIND_CLASS(gInputDeviceIdentifierInfo.clazz, "android/hardware/input/InputDeviceIdentifier");
1529 gInputDeviceIdentifierInfo.clazz = jclass(env->NewGlobalRef(gInputDeviceIdentifierInfo.clazz));
1530 GET_METHOD_ID(gInputDeviceIdentifierInfo.constructor, gInputDeviceIdentifierInfo.clazz,
1531 "<init>", "(Ljava/lang/String;II)V");
1532
Jason Gerecke857aa7b2014-01-27 18:34:20 -08001533 // TouchCalibration
1534
1535 FIND_CLASS(gTouchCalibrationClassInfo.clazz, "android/hardware/input/TouchCalibration");
1536 gTouchCalibrationClassInfo.clazz = jclass(env->NewGlobalRef(gTouchCalibrationClassInfo.clazz));
1537
1538 GET_METHOD_ID(gTouchCalibrationClassInfo.getAffineTransform, gTouchCalibrationClassInfo.clazz,
1539 "getAffineTransform", "()[F");
1540
Jeff Brown46b9ac02010-04-22 18:58:52 -07001541 return 0;
1542}
1543
Jeff Brown46b9ac02010-04-22 18:58:52 -07001544} /* namespace android */