blob: 2542286635e67d995382781e8e0858ae94ce265d [file] [log] [blame]
Jeff Brownc28867a2013-03-26 15:42:39 -07001/*
2 * Copyright (C) 2013 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 "InputEventSender"
18
19//#define LOG_NDEBUG 0
20
Steven Moreland2279b252017-07-19 09:50:45 -070021#include <nativehelper/JNIHelp.h>
Jeff Brownc28867a2013-03-26 15:42:39 -070022
23#include <android_runtime/AndroidRuntime.h>
Siarhei Vishniakoud2188aa2019-02-25 16:06:37 -060024#include <log/log.h>
Jeff Brownc28867a2013-03-26 15:42:39 -070025#include <utils/Looper.h>
Jeff Brown9d3b1a42013-07-01 19:07:15 -070026#include <input/InputTransport.h>
Jeff Brownc28867a2013-03-26 15:42:39 -070027#include "android_os_MessageQueue.h"
28#include "android_view_InputChannel.h"
29#include "android_view_KeyEvent.h"
30#include "android_view_MotionEvent.h"
31
Steven Moreland2279b252017-07-19 09:50:45 -070032#include <nativehelper/ScopedLocalRef.h>
Siarhei Vishniakoud2188aa2019-02-25 16:06:37 -060033#include <unordered_map>
Jeff Browna4ca8ea2013-04-02 18:01:38 -070034
Andreas Gampe987f79f2014-11-18 17:29:46 -080035#include "core_jni_helpers.h"
36
Jeff Brownc28867a2013-03-26 15:42:39 -070037namespace android {
38
Andreas Gampeed6b9df2014-11-20 22:02:20 -080039// Log debug messages about the dispatch cycle.
40static const bool kDebugDispatchCycle = false;
41
Jeff Brownc28867a2013-03-26 15:42:39 -070042static struct {
43 jclass clazz;
44
45 jmethodID dispatchInputEventFinished;
46} gInputEventSenderClassInfo;
47
48
49class NativeInputEventSender : public LooperCallback {
50public:
51 NativeInputEventSender(JNIEnv* env,
Jeff Browna4ca8ea2013-04-02 18:01:38 -070052 jobject senderWeak, const sp<InputChannel>& inputChannel,
Jeff Brownc28867a2013-03-26 15:42:39 -070053 const sp<MessageQueue>& messageQueue);
54
55 status_t initialize();
56 void dispose();
57 status_t sendKeyEvent(uint32_t seq, const KeyEvent* event);
58 status_t sendMotionEvent(uint32_t seq, const MotionEvent* event);
59
60protected:
61 virtual ~NativeInputEventSender();
62
63private:
Jeff Browna4ca8ea2013-04-02 18:01:38 -070064 jobject mSenderWeakGlobal;
Jeff Brownc28867a2013-03-26 15:42:39 -070065 InputPublisher mInputPublisher;
66 sp<MessageQueue> mMessageQueue;
Siarhei Vishniakoud2188aa2019-02-25 16:06:37 -060067 std::unordered_map<uint32_t, uint32_t> mPublishedSeqMap;
68
Jeff Brownc28867a2013-03-26 15:42:39 -070069 uint32_t mNextPublishedSeq;
70
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -080071 const std::string getInputChannelName() {
72 return mInputPublisher.getChannel()->getName();
Jeff Brownc28867a2013-03-26 15:42:39 -070073 }
74
75 virtual int handleEvent(int receiveFd, int events, void* data);
76 status_t receiveFinishedSignals(JNIEnv* env);
77};
78
79
80NativeInputEventSender::NativeInputEventSender(JNIEnv* env,
Jeff Browna4ca8ea2013-04-02 18:01:38 -070081 jobject senderWeak, const sp<InputChannel>& inputChannel,
Jeff Brownc28867a2013-03-26 15:42:39 -070082 const sp<MessageQueue>& messageQueue) :
Jeff Browna4ca8ea2013-04-02 18:01:38 -070083 mSenderWeakGlobal(env->NewGlobalRef(senderWeak)),
Jeff Brownc28867a2013-03-26 15:42:39 -070084 mInputPublisher(inputChannel), mMessageQueue(messageQueue),
Michael Wright10f9b092013-04-01 13:11:34 -070085 mNextPublishedSeq(1) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -080086 if (kDebugDispatchCycle) {
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -080087 ALOGD("channel '%s' ~ Initializing input event sender.", getInputChannelName().c_str());
Andreas Gampeed6b9df2014-11-20 22:02:20 -080088 }
Jeff Brownc28867a2013-03-26 15:42:39 -070089}
90
91NativeInputEventSender::~NativeInputEventSender() {
92 JNIEnv* env = AndroidRuntime::getJNIEnv();
Jeff Browna4ca8ea2013-04-02 18:01:38 -070093 env->DeleteGlobalRef(mSenderWeakGlobal);
Jeff Brownc28867a2013-03-26 15:42:39 -070094}
95
96status_t NativeInputEventSender::initialize() {
97 int receiveFd = mInputPublisher.getChannel()->getFd();
98 mMessageQueue->getLooper()->addFd(receiveFd, 0, ALOOPER_EVENT_INPUT, this, NULL);
99 return OK;
100}
101
102void NativeInputEventSender::dispose() {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800103 if (kDebugDispatchCycle) {
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -0800104 ALOGD("channel '%s' ~ Disposing input event sender.", getInputChannelName().c_str());
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800105 }
Jeff Brownc28867a2013-03-26 15:42:39 -0700106
107 mMessageQueue->getLooper()->removeFd(mInputPublisher.getChannel()->getFd());
108}
109
110status_t NativeInputEventSender::sendKeyEvent(uint32_t seq, const KeyEvent* event) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800111 if (kDebugDispatchCycle) {
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -0800112 ALOGD("channel '%s' ~ Sending key event, seq=%u.", getInputChannelName().c_str(), seq);
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800113 }
Jeff Brownc28867a2013-03-26 15:42:39 -0700114
115 uint32_t publishedSeq = mNextPublishedSeq++;
116 status_t status = mInputPublisher.publishKeyEvent(publishedSeq,
Siarhei Vishniakou91fa08f2018-06-08 22:49:30 +0100117 event->getDeviceId(), event->getSource(), event->getDisplayId(), event->getAction(),
118 event->getFlags(), event->getKeyCode(), event->getScanCode(), event->getMetaState(),
Jeff Brownc28867a2013-03-26 15:42:39 -0700119 event->getRepeatCount(), event->getDownTime(), event->getEventTime());
120 if (status) {
121 ALOGW("Failed to send key event on channel '%s'. status=%d",
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -0800122 getInputChannelName().c_str(), status);
Jeff Brownc28867a2013-03-26 15:42:39 -0700123 return status;
124 }
Siarhei Vishniakoud2188aa2019-02-25 16:06:37 -0600125 mPublishedSeqMap.emplace(publishedSeq, seq);
Jeff Brownc28867a2013-03-26 15:42:39 -0700126 return OK;
127}
128
129status_t NativeInputEventSender::sendMotionEvent(uint32_t seq, const MotionEvent* event) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800130 if (kDebugDispatchCycle) {
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -0800131 ALOGD("channel '%s' ~ Sending motion event, seq=%u.", getInputChannelName().c_str(), seq);
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800132 }
Jeff Brownc28867a2013-03-26 15:42:39 -0700133
134 uint32_t publishedSeq;
135 for (size_t i = 0; i <= event->getHistorySize(); i++) {
136 publishedSeq = mNextPublishedSeq++;
137 status_t status = mInputPublisher.publishMotionEvent(publishedSeq,
Siarhei Vishniakou91fa08f2018-06-08 22:49:30 +0100138 event->getDeviceId(), event->getSource(), event->getDisplayId(),
Michael Wright5bd69e62015-05-14 14:48:08 +0100139 event->getAction(), event->getActionButton(), event->getFlags(),
Jeff Brownc28867a2013-03-26 15:42:39 -0700140 event->getEdgeFlags(), event->getMetaState(), event->getButtonState(),
Siarhei Vishniakou0fae8702019-01-14 17:37:31 -0800141 event->getClassification(),
Jeff Brownc28867a2013-03-26 15:42:39 -0700142 event->getXOffset(), event->getYOffset(),
143 event->getXPrecision(), event->getYPrecision(),
144 event->getDownTime(), event->getHistoricalEventTime(i),
145 event->getPointerCount(), event->getPointerProperties(),
146 event->getHistoricalRawPointerCoords(0, i));
147 if (status) {
148 ALOGW("Failed to send motion event sample on channel '%s'. status=%d",
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -0800149 getInputChannelName().c_str(), status);
Jeff Brownc28867a2013-03-26 15:42:39 -0700150 return status;
151 }
152 }
Siarhei Vishniakoud2188aa2019-02-25 16:06:37 -0600153 mPublishedSeqMap.emplace(publishedSeq, seq);
Jeff Brownc28867a2013-03-26 15:42:39 -0700154 return OK;
155}
156
157int NativeInputEventSender::handleEvent(int receiveFd, int events, void* data) {
158 if (events & (ALOOPER_EVENT_ERROR | ALOOPER_EVENT_HANGUP)) {
Jeff Brown44e13ef2013-03-27 12:34:30 -0700159 // This error typically occurs when the consumer has closed the input channel
160 // as part of finishing an IME session, in which case the publisher will
161 // soon be disposed as well.
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800162 if (kDebugDispatchCycle) {
163 ALOGD("channel '%s' ~ Consumer closed input channel or an error occurred. "
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -0800164 "events=0x%x", getInputChannelName().c_str(), events);
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800165 }
166
Jeff Brownc28867a2013-03-26 15:42:39 -0700167 return 0; // remove the callback
168 }
169
170 if (!(events & ALOOPER_EVENT_INPUT)) {
171 ALOGW("channel '%s' ~ Received spurious callback for unhandled poll event. "
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -0800172 "events=0x%x", getInputChannelName().c_str(), events);
Jeff Brownc28867a2013-03-26 15:42:39 -0700173 return 1;
174 }
175
176 JNIEnv* env = AndroidRuntime::getJNIEnv();
177 status_t status = receiveFinishedSignals(env);
178 mMessageQueue->raiseAndClearException(env, "handleReceiveCallback");
179 return status == OK || status == NO_MEMORY ? 1 : 0;
180}
181
182status_t NativeInputEventSender::receiveFinishedSignals(JNIEnv* env) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800183 if (kDebugDispatchCycle) {
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -0800184 ALOGD("channel '%s' ~ Receiving finished signals.", getInputChannelName().c_str());
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800185 }
Jeff Brownc28867a2013-03-26 15:42:39 -0700186
Jeff Browna4ca8ea2013-04-02 18:01:38 -0700187 ScopedLocalRef<jobject> senderObj(env, NULL);
Jeff Brownc28867a2013-03-26 15:42:39 -0700188 bool skipCallbacks = false;
189 for (;;) {
190 uint32_t publishedSeq;
191 bool handled;
192 status_t status = mInputPublisher.receiveFinishedSignal(&publishedSeq, &handled);
193 if (status) {
194 if (status == WOULD_BLOCK) {
195 return OK;
196 }
197 ALOGE("channel '%s' ~ Failed to consume finished signals. status=%d",
Siarhei Vishniakoud6058f42018-01-04 13:00:48 -0800198 getInputChannelName().c_str(), status);
Jeff Brownc28867a2013-03-26 15:42:39 -0700199 return status;
200 }
201
Siarhei Vishniakoud2188aa2019-02-25 16:06:37 -0600202 auto it = mPublishedSeqMap.find(publishedSeq);
203 if (it == mPublishedSeqMap.end()) {
204 continue;
205 }
Jeff Brownc28867a2013-03-26 15:42:39 -0700206
Siarhei Vishniakoud2188aa2019-02-25 16:06:37 -0600207 uint32_t seq = it->second;
208 mPublishedSeqMap.erase(it);
209
210 if (kDebugDispatchCycle) {
211 ALOGD("channel '%s' ~ Received finished signal, seq=%u, handled=%s, "
212 "pendingEvents=%zu.",
213 getInputChannelName().c_str(), seq, handled ? "true" : "false",
214 mPublishedSeqMap.size());
215 }
216
217 if (!skipCallbacks) {
218 if (!senderObj.get()) {
219 senderObj.reset(jniGetReferent(env, mSenderWeakGlobal));
220 if (!senderObj.get()) {
221 ALOGW("channel '%s' ~ Sender object was finalized "
222 "without being disposed.", getInputChannelName().c_str());
223 return DEAD_OBJECT;
224 }
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800225 }
Jeff Brownc28867a2013-03-26 15:42:39 -0700226
Siarhei Vishniakoud2188aa2019-02-25 16:06:37 -0600227 env->CallVoidMethod(senderObj.get(),
228 gInputEventSenderClassInfo.dispatchInputEventFinished,
229 jint(seq), jboolean(handled));
230 if (env->ExceptionCheck()) {
231 ALOGE("Exception dispatching finished signal.");
232 skipCallbacks = true;
Jeff Brownc28867a2013-03-26 15:42:39 -0700233 }
234 }
235 }
236}
237
238
Ashok Bhata931d5212014-01-08 14:04:51 +0000239static jlong nativeInit(JNIEnv* env, jclass clazz, jobject senderWeak,
Jeff Brownc28867a2013-03-26 15:42:39 -0700240 jobject inputChannelObj, jobject messageQueueObj) {
241 sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env,
242 inputChannelObj);
243 if (inputChannel == NULL) {
244 jniThrowRuntimeException(env, "InputChannel is not initialized.");
245 return 0;
246 }
247
248 sp<MessageQueue> messageQueue = android_os_MessageQueue_getMessageQueue(env, messageQueueObj);
249 if (messageQueue == NULL) {
250 jniThrowRuntimeException(env, "MessageQueue is not initialized.");
251 return 0;
252 }
253
254 sp<NativeInputEventSender> sender = new NativeInputEventSender(env,
Jeff Browna4ca8ea2013-04-02 18:01:38 -0700255 senderWeak, inputChannel, messageQueue);
Jeff Brownc28867a2013-03-26 15:42:39 -0700256 status_t status = sender->initialize();
257 if (status) {
258 String8 message;
259 message.appendFormat("Failed to initialize input event sender. status=%d", status);
260 jniThrowRuntimeException(env, message.string());
261 return 0;
262 }
263
264 sender->incStrong(gInputEventSenderClassInfo.clazz); // retain a reference for the object
Ashok Bhata931d5212014-01-08 14:04:51 +0000265 return reinterpret_cast<jlong>(sender.get());
Jeff Brownc28867a2013-03-26 15:42:39 -0700266}
267
Ashok Bhata931d5212014-01-08 14:04:51 +0000268static void nativeDispose(JNIEnv* env, jclass clazz, jlong senderPtr) {
Jeff Brownc28867a2013-03-26 15:42:39 -0700269 sp<NativeInputEventSender> sender =
270 reinterpret_cast<NativeInputEventSender*>(senderPtr);
271 sender->dispose();
272 sender->decStrong(gInputEventSenderClassInfo.clazz); // drop reference held by the object
273}
274
Ashok Bhata931d5212014-01-08 14:04:51 +0000275static jboolean nativeSendKeyEvent(JNIEnv* env, jclass clazz, jlong senderPtr,
Jeff Brownc28867a2013-03-26 15:42:39 -0700276 jint seq, jobject eventObj) {
277 sp<NativeInputEventSender> sender =
278 reinterpret_cast<NativeInputEventSender*>(senderPtr);
279 KeyEvent event;
280 android_view_KeyEvent_toNative(env, eventObj, &event);
281 status_t status = sender->sendKeyEvent(seq, &event);
282 return !status;
283}
284
Ashok Bhata931d5212014-01-08 14:04:51 +0000285static jboolean nativeSendMotionEvent(JNIEnv* env, jclass clazz, jlong senderPtr,
Jeff Brownc28867a2013-03-26 15:42:39 -0700286 jint seq, jobject eventObj) {
287 sp<NativeInputEventSender> sender =
288 reinterpret_cast<NativeInputEventSender*>(senderPtr);
289 MotionEvent* event = android_view_MotionEvent_getNativePtr(env, eventObj);
290 status_t status = sender->sendMotionEvent(seq, event);
291 return !status;
292}
293
294
Daniel Micay76f6a862015-09-19 17:31:01 -0400295static const JNINativeMethod gMethods[] = {
Jeff Brownc28867a2013-03-26 15:42:39 -0700296 /* name, signature, funcPtr */
297 { "nativeInit",
Ashok Bhata931d5212014-01-08 14:04:51 +0000298 "(Ljava/lang/ref/WeakReference;Landroid/view/InputChannel;Landroid/os/MessageQueue;)J",
Jeff Brownc28867a2013-03-26 15:42:39 -0700299 (void*)nativeInit },
Ashok Bhata931d5212014-01-08 14:04:51 +0000300 { "nativeDispose", "(J)V",
Jeff Brownc28867a2013-03-26 15:42:39 -0700301 (void*)nativeDispose },
Ashok Bhata931d5212014-01-08 14:04:51 +0000302 { "nativeSendKeyEvent", "(JILandroid/view/KeyEvent;)Z",
Jeff Brownc28867a2013-03-26 15:42:39 -0700303 (void*)nativeSendKeyEvent },
Ashok Bhata931d5212014-01-08 14:04:51 +0000304 { "nativeSendMotionEvent", "(JILandroid/view/MotionEvent;)Z",
Jeff Brownc28867a2013-03-26 15:42:39 -0700305 (void*)nativeSendMotionEvent },
306};
307
Jeff Brownc28867a2013-03-26 15:42:39 -0700308int register_android_view_InputEventSender(JNIEnv* env) {
Andreas Gampe987f79f2014-11-18 17:29:46 -0800309 int res = RegisterMethodsOrDie(env, "android/view/InputEventSender", gMethods, NELEM(gMethods));
Jeff Brownc28867a2013-03-26 15:42:39 -0700310
Andreas Gampe987f79f2014-11-18 17:29:46 -0800311 jclass clazz = FindClassOrDie(env, "android/view/InputEventSender");
312 gInputEventSenderClassInfo.clazz = MakeGlobalRefOrDie(env, clazz);
Jeff Brownc28867a2013-03-26 15:42:39 -0700313
Andreas Gampe987f79f2014-11-18 17:29:46 -0800314 gInputEventSenderClassInfo.dispatchInputEventFinished = GetMethodIDOrDie(
315 env, gInputEventSenderClassInfo.clazz, "dispatchInputEventFinished", "(IZ)V");
316
317 return res;
Jeff Brownc28867a2013-03-26 15:42:39 -0700318}
319
320} // namespace android