blob: 85ce38ae2020871bb3fc7b6b4156620a00ec80e4 [file] [log] [blame]
Jeff Brownb4ff35d2011-01-02 16:37:43 -08001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jeff Brown46b9ac02010-04-22 18:58:52 -070017#define LOG_TAG "InputDispatcher"
18
19//#define LOG_NDEBUG 0
20
21// Log detailed debug messages about each inbound event notification to the dispatcher.
Jeff Brown349703e2010-06-22 01:27:15 -070022#define DEBUG_INBOUND_EVENT_DETAILS 0
Jeff Brown46b9ac02010-04-22 18:58:52 -070023
24// Log detailed debug messages about each outbound event processed by the dispatcher.
Jeff Brown349703e2010-06-22 01:27:15 -070025#define DEBUG_OUTBOUND_EVENT_DETAILS 0
Jeff Brown46b9ac02010-04-22 18:58:52 -070026
27// Log debug messages about batching.
Jeff Brown349703e2010-06-22 01:27:15 -070028#define DEBUG_BATCHING 0
Jeff Brown46b9ac02010-04-22 18:58:52 -070029
30// Log debug messages about the dispatch cycle.
Jeff Brown349703e2010-06-22 01:27:15 -070031#define DEBUG_DISPATCH_CYCLE 0
Jeff Brown46b9ac02010-04-22 18:58:52 -070032
Jeff Brown9c3cda02010-06-15 01:31:58 -070033// Log debug messages about registrations.
Jeff Brown349703e2010-06-22 01:27:15 -070034#define DEBUG_REGISTRATION 0
Jeff Brown9c3cda02010-06-15 01:31:58 -070035
Jeff Brown46b9ac02010-04-22 18:58:52 -070036// Log debug messages about performance statistics.
Jeff Brown349703e2010-06-22 01:27:15 -070037#define DEBUG_PERFORMANCE_STATISTICS 0
Jeff Brown46b9ac02010-04-22 18:58:52 -070038
Jeff Brown7fbdc842010-06-17 20:52:56 -070039// Log debug messages about input event injection.
Jeff Brown349703e2010-06-22 01:27:15 -070040#define DEBUG_INJECTION 0
Jeff Brown7fbdc842010-06-17 20:52:56 -070041
Jeff Brownae9fc032010-08-18 15:51:08 -070042// Log debug messages about input event throttling.
43#define DEBUG_THROTTLING 0
44
Jeff Brownb88102f2010-09-08 11:49:43 -070045// Log debug messages about input focus tracking.
46#define DEBUG_FOCUS 0
47
48// Log debug messages about the app switch latency optimization.
49#define DEBUG_APP_SWITCH 0
50
Jeff Browna032cc02011-03-07 16:56:21 -080051// Log debug messages about hover events.
52#define DEBUG_HOVER 0
53
Jeff Brownb4ff35d2011-01-02 16:37:43 -080054#include "InputDispatcher.h"
55
Jeff Brown46b9ac02010-04-22 18:58:52 -070056#include <cutils/log.h>
Jeff Brownb88102f2010-09-08 11:49:43 -070057#include <ui/PowerManager.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070058
59#include <stddef.h>
60#include <unistd.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070061#include <errno.h>
62#include <limits.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070063
Jeff Brownf2f48712010-10-01 17:46:21 -070064#define INDENT " "
65#define INDENT2 " "
66
Jeff Brown46b9ac02010-04-22 18:58:52 -070067namespace android {
68
Jeff Brownb88102f2010-09-08 11:49:43 -070069// Default input dispatching timeout if there is no focused application or paused window
70// from which to determine an appropriate dispatching timeout.
71const nsecs_t DEFAULT_INPUT_DISPATCHING_TIMEOUT = 5000 * 1000000LL; // 5 sec
72
73// Amount of time to allow for all pending events to be processed when an app switch
74// key is on the way. This is used to preempt input dispatch and drop input events
75// when an application takes too long to respond and the user has pressed an app switch key.
76const nsecs_t APP_SWITCH_TIMEOUT = 500 * 1000000LL; // 0.5sec
77
Jeff Brown928e0542011-01-10 11:17:36 -080078// Amount of time to allow for an event to be dispatched (measured since its eventTime)
79// before considering it stale and dropping it.
80const nsecs_t STALE_EVENT_TIMEOUT = 10000 * 1000000LL; // 10sec
81
Jeff Brown4e91a182011-04-07 11:38:09 -070082// Motion samples that are received within this amount of time are simply coalesced
83// when batched instead of being appended. This is done because some drivers update
84// the location of pointers one at a time instead of all at once.
85// For example, when there are 10 fingers down, the input dispatcher may receive 10
86// samples in quick succession with only one finger's location changed in each sample.
87//
88// This value effectively imposes an upper bound on the touch sampling rate.
89// Touch sensors typically have a 50Hz - 200Hz sampling rate, so we expect distinct
90// samples to become available 5-20ms apart but individual finger reports can trickle
91// in over a period of 2-4ms or so.
92//
93// Empirical testing shows that a 2ms coalescing interval (500Hz) is not enough,
94// a 3ms coalescing interval (333Hz) works well most of the time and doesn't introduce
95// significant quantization noise on current hardware.
96const nsecs_t MOTION_SAMPLE_COALESCE_INTERVAL = 3 * 1000000LL; // 3ms, 333Hz
97
Jeff Brown46b9ac02010-04-22 18:58:52 -070098
Jeff Brown7fbdc842010-06-17 20:52:56 -070099static inline nsecs_t now() {
100 return systemTime(SYSTEM_TIME_MONOTONIC);
101}
102
Jeff Brownb88102f2010-09-08 11:49:43 -0700103static inline const char* toString(bool value) {
104 return value ? "true" : "false";
105}
106
Jeff Brown01ce2e92010-09-26 22:20:12 -0700107static inline int32_t getMotionEventActionPointerIndex(int32_t action) {
108 return (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
109 >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
110}
111
112static bool isValidKeyAction(int32_t action) {
113 switch (action) {
114 case AKEY_EVENT_ACTION_DOWN:
115 case AKEY_EVENT_ACTION_UP:
116 return true;
117 default:
118 return false;
119 }
120}
121
122static bool validateKeyEvent(int32_t action) {
123 if (! isValidKeyAction(action)) {
124 LOGE("Key event has invalid action code 0x%x", action);
125 return false;
126 }
127 return true;
128}
129
Jeff Brownb6997262010-10-08 22:31:17 -0700130static bool isValidMotionAction(int32_t action, size_t pointerCount) {
Jeff Brown01ce2e92010-09-26 22:20:12 -0700131 switch (action & AMOTION_EVENT_ACTION_MASK) {
132 case AMOTION_EVENT_ACTION_DOWN:
133 case AMOTION_EVENT_ACTION_UP:
134 case AMOTION_EVENT_ACTION_CANCEL:
135 case AMOTION_EVENT_ACTION_MOVE:
Jeff Brown01ce2e92010-09-26 22:20:12 -0700136 case AMOTION_EVENT_ACTION_OUTSIDE:
Jeff Browna032cc02011-03-07 16:56:21 -0800137 case AMOTION_EVENT_ACTION_HOVER_ENTER:
Jeff Browncc0c1592011-02-19 05:07:28 -0800138 case AMOTION_EVENT_ACTION_HOVER_MOVE:
Jeff Browna032cc02011-03-07 16:56:21 -0800139 case AMOTION_EVENT_ACTION_HOVER_EXIT:
Jeff Brown33bbfd22011-02-24 20:55:35 -0800140 case AMOTION_EVENT_ACTION_SCROLL:
Jeff Brown01ce2e92010-09-26 22:20:12 -0700141 return true;
Jeff Brownb6997262010-10-08 22:31:17 -0700142 case AMOTION_EVENT_ACTION_POINTER_DOWN:
143 case AMOTION_EVENT_ACTION_POINTER_UP: {
144 int32_t index = getMotionEventActionPointerIndex(action);
145 return index >= 0 && size_t(index) < pointerCount;
146 }
Jeff Brown01ce2e92010-09-26 22:20:12 -0700147 default:
148 return false;
149 }
150}
151
152static bool validateMotionEvent(int32_t action, size_t pointerCount,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700153 const PointerProperties* pointerProperties) {
Jeff Brownb6997262010-10-08 22:31:17 -0700154 if (! isValidMotionAction(action, pointerCount)) {
Jeff Brown01ce2e92010-09-26 22:20:12 -0700155 LOGE("Motion event has invalid action code 0x%x", action);
156 return false;
157 }
158 if (pointerCount < 1 || pointerCount > MAX_POINTERS) {
159 LOGE("Motion event has invalid pointer count %d; value must be between 1 and %d.",
160 pointerCount, MAX_POINTERS);
161 return false;
162 }
Jeff Brownc3db8582010-10-20 15:33:38 -0700163 BitSet32 pointerIdBits;
Jeff Brown01ce2e92010-09-26 22:20:12 -0700164 for (size_t i = 0; i < pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700165 int32_t id = pointerProperties[i].id;
Jeff Brownc3db8582010-10-20 15:33:38 -0700166 if (id < 0 || id > MAX_POINTER_ID) {
Jeff Brown01ce2e92010-09-26 22:20:12 -0700167 LOGE("Motion event has invalid pointer id %d; value must be between 0 and %d",
Jeff Brownc3db8582010-10-20 15:33:38 -0700168 id, MAX_POINTER_ID);
Jeff Brown01ce2e92010-09-26 22:20:12 -0700169 return false;
170 }
Jeff Brownc3db8582010-10-20 15:33:38 -0700171 if (pointerIdBits.hasBit(id)) {
172 LOGE("Motion event has duplicate pointer id %d", id);
173 return false;
174 }
175 pointerIdBits.markBit(id);
Jeff Brown01ce2e92010-09-26 22:20:12 -0700176 }
177 return true;
178}
179
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400180static void scalePointerCoords(const PointerCoords* inCoords, size_t count, float scaleFactor,
181 PointerCoords* outCoords) {
182 for (size_t i = 0; i < count; i++) {
183 outCoords[i] = inCoords[i];
184 outCoords[i].scale(scaleFactor);
185 }
186}
187
Jeff Brownfbf09772011-01-16 14:06:57 -0800188static void dumpRegion(String8& dump, const SkRegion& region) {
189 if (region.isEmpty()) {
190 dump.append("<empty>");
191 return;
192 }
193
194 bool first = true;
195 for (SkRegion::Iterator it(region); !it.done(); it.next()) {
196 if (first) {
197 first = false;
198 } else {
199 dump.append("|");
200 }
201 const SkIRect& rect = it.rect();
202 dump.appendFormat("[%d,%d][%d,%d]", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
203 }
204}
205
Jeff Brownb88102f2010-09-08 11:49:43 -0700206
Jeff Brown46b9ac02010-04-22 18:58:52 -0700207// --- InputDispatcher ---
208
Jeff Brown9c3cda02010-06-15 01:31:58 -0700209InputDispatcher::InputDispatcher(const sp<InputDispatcherPolicyInterface>& policy) :
Jeff Brownb88102f2010-09-08 11:49:43 -0700210 mPolicy(policy),
Jeff Brown928e0542011-01-10 11:17:36 -0800211 mPendingEvent(NULL), mAppSwitchSawKeyDown(false), mAppSwitchDueTime(LONG_LONG_MAX),
212 mNextUnblockedEvent(NULL),
Jeff Brown0029c662011-03-30 02:25:18 -0700213 mDispatchEnabled(true), mDispatchFrozen(false), mInputFilterEnabled(false),
Jeff Brown01ce2e92010-09-26 22:20:12 -0700214 mFocusedWindow(NULL),
Jeff Brownb88102f2010-09-08 11:49:43 -0700215 mFocusedApplication(NULL),
216 mCurrentInputTargetsValid(false),
Jeff Browna032cc02011-03-07 16:56:21 -0800217 mInputTargetWaitCause(INPUT_TARGET_WAIT_CAUSE_NONE),
218 mLastHoverWindow(NULL) {
Jeff Brown4fe6c3e2010-09-13 23:17:30 -0700219 mLooper = new Looper(false);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700220
Jeff Brownb88102f2010-09-08 11:49:43 -0700221 mInboundQueue.headSentinel.refCount = -1;
222 mInboundQueue.headSentinel.type = EventEntry::TYPE_SENTINEL;
223 mInboundQueue.headSentinel.eventTime = LONG_LONG_MIN;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700224
Jeff Brownb88102f2010-09-08 11:49:43 -0700225 mInboundQueue.tailSentinel.refCount = -1;
226 mInboundQueue.tailSentinel.type = EventEntry::TYPE_SENTINEL;
227 mInboundQueue.tailSentinel.eventTime = LONG_LONG_MAX;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700228
229 mKeyRepeatState.lastKeyEntry = NULL;
Jeff Brown9c3cda02010-06-15 01:31:58 -0700230
Jeff Brown214eaf42011-05-26 19:17:02 -0700231 policy->getDispatcherConfiguration(&mConfig);
232
233 mThrottleState.minTimeBetweenEvents = 1000000000LL / mConfig.maxEventsPerSecond;
Jeff Brownae9fc032010-08-18 15:51:08 -0700234 mThrottleState.lastDeviceId = -1;
235
236#if DEBUG_THROTTLING
237 mThrottleState.originalSampleCount = 0;
Jeff Brown214eaf42011-05-26 19:17:02 -0700238 LOGD("Throttling - Max events per second = %d", mConfig.maxEventsPerSecond);
Jeff Brownae9fc032010-08-18 15:51:08 -0700239#endif
Jeff Brown46b9ac02010-04-22 18:58:52 -0700240}
241
242InputDispatcher::~InputDispatcher() {
Jeff Brownb88102f2010-09-08 11:49:43 -0700243 { // acquire lock
244 AutoMutex _l(mLock);
245
246 resetKeyRepeatLocked();
Jeff Brown54a18252010-09-16 14:07:33 -0700247 releasePendingEventLocked();
Jeff Brownb88102f2010-09-08 11:49:43 -0700248 drainInboundQueueLocked();
249 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700250
251 while (mConnectionsByReceiveFd.size() != 0) {
252 unregisterInputChannel(mConnectionsByReceiveFd.valueAt(0)->inputChannel);
253 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700254}
255
256void InputDispatcher::dispatchOnce() {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700257 nsecs_t nextWakeupTime = LONG_LONG_MAX;
258 { // acquire lock
259 AutoMutex _l(mLock);
Jeff Brown214eaf42011-05-26 19:17:02 -0700260 dispatchOnceInnerLocked(&nextWakeupTime);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700261
Jeff Brownb88102f2010-09-08 11:49:43 -0700262 if (runCommandsLockedInterruptible()) {
263 nextWakeupTime = LONG_LONG_MIN; // force next poll to wake up immediately
Jeff Brown46b9ac02010-04-22 18:58:52 -0700264 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700265 } // release lock
266
Jeff Brownb88102f2010-09-08 11:49:43 -0700267 // Wait for callback or timeout or wake. (make sure we round up, not down)
268 nsecs_t currentTime = now();
Jeff Brownaa3855d2011-03-17 01:34:19 -0700269 int timeoutMillis = toMillisecondTimeoutDelay(currentTime, nextWakeupTime);
Jeff Brown4fe6c3e2010-09-13 23:17:30 -0700270 mLooper->pollOnce(timeoutMillis);
Jeff Brownb88102f2010-09-08 11:49:43 -0700271}
272
Jeff Brown214eaf42011-05-26 19:17:02 -0700273void InputDispatcher::dispatchOnceInnerLocked(nsecs_t* nextWakeupTime) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700274 nsecs_t currentTime = now();
275
276 // Reset the key repeat timer whenever we disallow key events, even if the next event
277 // is not a key. This is to ensure that we abort a key repeat if the device is just coming
278 // out of sleep.
Jeff Brown214eaf42011-05-26 19:17:02 -0700279 if (!mPolicy->isKeyRepeatEnabled()) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700280 resetKeyRepeatLocked();
281 }
282
Jeff Brownb88102f2010-09-08 11:49:43 -0700283 // If dispatching is frozen, do not process timeouts or try to deliver any new events.
284 if (mDispatchFrozen) {
285#if DEBUG_FOCUS
286 LOGD("Dispatch frozen. Waiting some more.");
287#endif
288 return;
289 }
290
291 // Optimize latency of app switches.
292 // Essentially we start a short timeout when an app switch key (HOME / ENDCALL) has
293 // been pressed. When it expires, we preempt dispatch and drop all other pending events.
294 bool isAppSwitchDue = mAppSwitchDueTime <= currentTime;
295 if (mAppSwitchDueTime < *nextWakeupTime) {
296 *nextWakeupTime = mAppSwitchDueTime;
297 }
298
Jeff Brownb88102f2010-09-08 11:49:43 -0700299 // Ready to start a new event.
300 // If we don't already have a pending event, go grab one.
301 if (! mPendingEvent) {
302 if (mInboundQueue.isEmpty()) {
303 if (isAppSwitchDue) {
304 // The inbound queue is empty so the app switch key we were waiting
305 // for will never arrive. Stop waiting for it.
306 resetPendingAppSwitchLocked(false);
307 isAppSwitchDue = false;
308 }
309
310 // Synthesize a key repeat if appropriate.
311 if (mKeyRepeatState.lastKeyEntry) {
312 if (currentTime >= mKeyRepeatState.nextRepeatTime) {
Jeff Brown214eaf42011-05-26 19:17:02 -0700313 mPendingEvent = synthesizeKeyRepeatLocked(currentTime);
Jeff Brownb88102f2010-09-08 11:49:43 -0700314 } else {
315 if (mKeyRepeatState.nextRepeatTime < *nextWakeupTime) {
316 *nextWakeupTime = mKeyRepeatState.nextRepeatTime;
317 }
318 }
319 }
320 if (! mPendingEvent) {
321 return;
322 }
323 } else {
324 // Inbound queue has at least one entry.
325 EventEntry* entry = mInboundQueue.headSentinel.next;
326
327 // Throttle the entry if it is a move event and there are no
328 // other events behind it in the queue. Due to movement batching, additional
329 // samples may be appended to this event by the time the throttling timeout
330 // expires.
331 // TODO Make this smarter and consider throttling per device independently.
Jeff Brownb6997262010-10-08 22:31:17 -0700332 if (entry->type == EventEntry::TYPE_MOTION
333 && !isAppSwitchDue
334 && mDispatchEnabled
335 && (entry->policyFlags & POLICY_FLAG_PASS_TO_USER)
336 && !entry->isInjected()) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700337 MotionEntry* motionEntry = static_cast<MotionEntry*>(entry);
338 int32_t deviceId = motionEntry->deviceId;
339 uint32_t source = motionEntry->source;
340 if (! isAppSwitchDue
341 && motionEntry->next == & mInboundQueue.tailSentinel // exactly one event
Jeff Browncc0c1592011-02-19 05:07:28 -0800342 && (motionEntry->action == AMOTION_EVENT_ACTION_MOVE
343 || motionEntry->action == AMOTION_EVENT_ACTION_HOVER_MOVE)
Jeff Brownb88102f2010-09-08 11:49:43 -0700344 && deviceId == mThrottleState.lastDeviceId
345 && source == mThrottleState.lastSource) {
346 nsecs_t nextTime = mThrottleState.lastEventTime
347 + mThrottleState.minTimeBetweenEvents;
348 if (currentTime < nextTime) {
349 // Throttle it!
350#if DEBUG_THROTTLING
351 LOGD("Throttling - Delaying motion event for "
Jeff Brown90655042010-12-02 13:50:46 -0800352 "device %d, source 0x%08x by up to %0.3fms.",
Jeff Brownb88102f2010-09-08 11:49:43 -0700353 deviceId, source, (nextTime - currentTime) * 0.000001);
354#endif
355 if (nextTime < *nextWakeupTime) {
356 *nextWakeupTime = nextTime;
357 }
358 if (mThrottleState.originalSampleCount == 0) {
359 mThrottleState.originalSampleCount =
360 motionEntry->countSamples();
361 }
362 return;
363 }
364 }
365
366#if DEBUG_THROTTLING
367 if (mThrottleState.originalSampleCount != 0) {
368 uint32_t count = motionEntry->countSamples();
369 LOGD("Throttling - Motion event sample count grew by %d from %d to %d.",
370 count - mThrottleState.originalSampleCount,
371 mThrottleState.originalSampleCount, count);
372 mThrottleState.originalSampleCount = 0;
373 }
374#endif
375
makarand.karvekarf634ded2011-03-02 15:41:03 -0600376 mThrottleState.lastEventTime = currentTime;
Jeff Brownb88102f2010-09-08 11:49:43 -0700377 mThrottleState.lastDeviceId = deviceId;
378 mThrottleState.lastSource = source;
379 }
380
381 mInboundQueue.dequeue(entry);
382 mPendingEvent = entry;
383 }
Jeff Browne2fe69e2010-10-18 13:21:23 -0700384
385 // Poke user activity for this event.
386 if (mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER) {
387 pokeUserActivityLocked(mPendingEvent);
388 }
Jeff Brownb88102f2010-09-08 11:49:43 -0700389 }
390
391 // Now we have an event to dispatch.
Jeff Brown928e0542011-01-10 11:17:36 -0800392 // All events are eventually dequeued and processed this way, even if we intend to drop them.
Jeff Brownb6110c22011-04-01 16:15:13 -0700393 LOG_ASSERT(mPendingEvent != NULL);
Jeff Brown54a18252010-09-16 14:07:33 -0700394 bool done = false;
Jeff Brownb6997262010-10-08 22:31:17 -0700395 DropReason dropReason = DROP_REASON_NOT_DROPPED;
396 if (!(mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER)) {
397 dropReason = DROP_REASON_POLICY;
398 } else if (!mDispatchEnabled) {
399 dropReason = DROP_REASON_DISABLED;
400 }
Jeff Brown928e0542011-01-10 11:17:36 -0800401
402 if (mNextUnblockedEvent == mPendingEvent) {
403 mNextUnblockedEvent = NULL;
404 }
405
Jeff Brownb88102f2010-09-08 11:49:43 -0700406 switch (mPendingEvent->type) {
407 case EventEntry::TYPE_CONFIGURATION_CHANGED: {
408 ConfigurationChangedEntry* typedEntry =
409 static_cast<ConfigurationChangedEntry*>(mPendingEvent);
Jeff Brown54a18252010-09-16 14:07:33 -0700410 done = dispatchConfigurationChangedLocked(currentTime, typedEntry);
Jeff Brownb6997262010-10-08 22:31:17 -0700411 dropReason = DROP_REASON_NOT_DROPPED; // configuration changes are never dropped
Jeff Brownb88102f2010-09-08 11:49:43 -0700412 break;
413 }
414
415 case EventEntry::TYPE_KEY: {
416 KeyEntry* typedEntry = static_cast<KeyEntry*>(mPendingEvent);
Jeff Brownb6997262010-10-08 22:31:17 -0700417 if (isAppSwitchDue) {
418 if (isAppSwitchKeyEventLocked(typedEntry)) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700419 resetPendingAppSwitchLocked(true);
Jeff Brownb6997262010-10-08 22:31:17 -0700420 isAppSwitchDue = false;
421 } else if (dropReason == DROP_REASON_NOT_DROPPED) {
422 dropReason = DROP_REASON_APP_SWITCH;
Jeff Brownb88102f2010-09-08 11:49:43 -0700423 }
424 }
Jeff Brown928e0542011-01-10 11:17:36 -0800425 if (dropReason == DROP_REASON_NOT_DROPPED
426 && isStaleEventLocked(currentTime, typedEntry)) {
427 dropReason = DROP_REASON_STALE;
428 }
429 if (dropReason == DROP_REASON_NOT_DROPPED && mNextUnblockedEvent) {
430 dropReason = DROP_REASON_BLOCKED;
431 }
Jeff Brown214eaf42011-05-26 19:17:02 -0700432 done = dispatchKeyLocked(currentTime, typedEntry, &dropReason, nextWakeupTime);
Jeff Brownb88102f2010-09-08 11:49:43 -0700433 break;
434 }
435
436 case EventEntry::TYPE_MOTION: {
437 MotionEntry* typedEntry = static_cast<MotionEntry*>(mPendingEvent);
Jeff Brownb6997262010-10-08 22:31:17 -0700438 if (dropReason == DROP_REASON_NOT_DROPPED && isAppSwitchDue) {
439 dropReason = DROP_REASON_APP_SWITCH;
Jeff Brownb88102f2010-09-08 11:49:43 -0700440 }
Jeff Brown928e0542011-01-10 11:17:36 -0800441 if (dropReason == DROP_REASON_NOT_DROPPED
442 && isStaleEventLocked(currentTime, typedEntry)) {
443 dropReason = DROP_REASON_STALE;
444 }
445 if (dropReason == DROP_REASON_NOT_DROPPED && mNextUnblockedEvent) {
446 dropReason = DROP_REASON_BLOCKED;
447 }
Jeff Brownb6997262010-10-08 22:31:17 -0700448 done = dispatchMotionLocked(currentTime, typedEntry,
Jeff Browne20c9e02010-10-11 14:20:19 -0700449 &dropReason, nextWakeupTime);
Jeff Brownb88102f2010-09-08 11:49:43 -0700450 break;
451 }
452
453 default:
Jeff Brownb6110c22011-04-01 16:15:13 -0700454 LOG_ASSERT(false);
Jeff Brownb88102f2010-09-08 11:49:43 -0700455 break;
456 }
457
Jeff Brown54a18252010-09-16 14:07:33 -0700458 if (done) {
Jeff Brownb6997262010-10-08 22:31:17 -0700459 if (dropReason != DROP_REASON_NOT_DROPPED) {
460 dropInboundEventLocked(mPendingEvent, dropReason);
461 }
462
Jeff Brown54a18252010-09-16 14:07:33 -0700463 releasePendingEventLocked();
Jeff Brownb88102f2010-09-08 11:49:43 -0700464 *nextWakeupTime = LONG_LONG_MIN; // force next poll to wake up immediately
465 }
466}
467
468bool InputDispatcher::enqueueInboundEventLocked(EventEntry* entry) {
469 bool needWake = mInboundQueue.isEmpty();
470 mInboundQueue.enqueueAtTail(entry);
471
472 switch (entry->type) {
Jeff Brownb6997262010-10-08 22:31:17 -0700473 case EventEntry::TYPE_KEY: {
Jeff Brown928e0542011-01-10 11:17:36 -0800474 // Optimize app switch latency.
475 // If the application takes too long to catch up then we drop all events preceding
476 // the app switch key.
Jeff Brownb6997262010-10-08 22:31:17 -0700477 KeyEntry* keyEntry = static_cast<KeyEntry*>(entry);
478 if (isAppSwitchKeyEventLocked(keyEntry)) {
479 if (keyEntry->action == AKEY_EVENT_ACTION_DOWN) {
480 mAppSwitchSawKeyDown = true;
481 } else if (keyEntry->action == AKEY_EVENT_ACTION_UP) {
482 if (mAppSwitchSawKeyDown) {
483#if DEBUG_APP_SWITCH
484 LOGD("App switch is pending!");
485#endif
486 mAppSwitchDueTime = keyEntry->eventTime + APP_SWITCH_TIMEOUT;
487 mAppSwitchSawKeyDown = false;
488 needWake = true;
489 }
490 }
491 }
Jeff Brownb88102f2010-09-08 11:49:43 -0700492 break;
493 }
Jeff Brown928e0542011-01-10 11:17:36 -0800494
495 case EventEntry::TYPE_MOTION: {
496 // Optimize case where the current application is unresponsive and the user
497 // decides to touch a window in a different application.
498 // If the application takes too long to catch up then we drop all events preceding
499 // the touch into the other window.
500 MotionEntry* motionEntry = static_cast<MotionEntry*>(entry);
Jeff Brown33bbfd22011-02-24 20:55:35 -0800501 if (motionEntry->action == AMOTION_EVENT_ACTION_DOWN
Jeff Brown928e0542011-01-10 11:17:36 -0800502 && (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER)
503 && mInputTargetWaitCause == INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY
504 && mInputTargetWaitApplication != NULL) {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800505 int32_t x = int32_t(motionEntry->firstSample.pointerCoords[0].
Jeff Brownebbd5d12011-02-17 13:01:34 -0800506 getAxisValue(AMOTION_EVENT_AXIS_X));
Jeff Brown91c69ab2011-02-14 17:03:18 -0800507 int32_t y = int32_t(motionEntry->firstSample.pointerCoords[0].
Jeff Brownebbd5d12011-02-17 13:01:34 -0800508 getAxisValue(AMOTION_EVENT_AXIS_Y));
Jeff Brown928e0542011-01-10 11:17:36 -0800509 const InputWindow* touchedWindow = findTouchedWindowAtLocked(x, y);
510 if (touchedWindow
511 && touchedWindow->inputWindowHandle != NULL
512 && touchedWindow->inputWindowHandle->getInputApplicationHandle()
513 != mInputTargetWaitApplication) {
514 // User touched a different application than the one we are waiting on.
515 // Flag the event, and start pruning the input queue.
516 mNextUnblockedEvent = motionEntry;
517 needWake = true;
518 }
519 }
520 break;
521 }
Jeff Brownb6997262010-10-08 22:31:17 -0700522 }
Jeff Brownb88102f2010-09-08 11:49:43 -0700523
524 return needWake;
525}
526
Jeff Brown928e0542011-01-10 11:17:36 -0800527const InputWindow* InputDispatcher::findTouchedWindowAtLocked(int32_t x, int32_t y) {
528 // Traverse windows from front to back to find touched window.
529 size_t numWindows = mWindows.size();
530 for (size_t i = 0; i < numWindows; i++) {
531 const InputWindow* window = & mWindows.editItemAt(i);
532 int32_t flags = window->layoutParamsFlags;
533
534 if (window->visible) {
535 if (!(flags & InputWindow::FLAG_NOT_TOUCHABLE)) {
536 bool isTouchModal = (flags & (InputWindow::FLAG_NOT_FOCUSABLE
537 | InputWindow::FLAG_NOT_TOUCH_MODAL)) == 0;
Jeff Brownfbf09772011-01-16 14:06:57 -0800538 if (isTouchModal || window->touchableRegionContainsPoint(x, y)) {
Jeff Brown928e0542011-01-10 11:17:36 -0800539 // Found window.
540 return window;
541 }
542 }
543 }
544
545 if (flags & InputWindow::FLAG_SYSTEM_ERROR) {
546 // Error window is on top but not visible, so touch is dropped.
547 return NULL;
548 }
549 }
550 return NULL;
551}
552
Jeff Brownb6997262010-10-08 22:31:17 -0700553void InputDispatcher::dropInboundEventLocked(EventEntry* entry, DropReason dropReason) {
554 const char* reason;
555 switch (dropReason) {
556 case DROP_REASON_POLICY:
Jeff Browne20c9e02010-10-11 14:20:19 -0700557#if DEBUG_INBOUND_EVENT_DETAILS
Jeff Brown3122e442010-10-11 23:32:49 -0700558 LOGD("Dropped event because policy consumed it.");
Jeff Browne20c9e02010-10-11 14:20:19 -0700559#endif
Jeff Brown3122e442010-10-11 23:32:49 -0700560 reason = "inbound event was dropped because the policy consumed it";
Jeff Brownb6997262010-10-08 22:31:17 -0700561 break;
562 case DROP_REASON_DISABLED:
563 LOGI("Dropped event because input dispatch is disabled.");
564 reason = "inbound event was dropped because input dispatch is disabled";
565 break;
566 case DROP_REASON_APP_SWITCH:
567 LOGI("Dropped event because of pending overdue app switch.");
568 reason = "inbound event was dropped because of pending overdue app switch";
569 break;
Jeff Brown928e0542011-01-10 11:17:36 -0800570 case DROP_REASON_BLOCKED:
571 LOGI("Dropped event because the current application is not responding and the user "
Jeff Brown81346812011-06-28 20:08:48 -0700572 "has started interacting with a different application.");
Jeff Brown928e0542011-01-10 11:17:36 -0800573 reason = "inbound event was dropped because the current application is not responding "
Jeff Brown81346812011-06-28 20:08:48 -0700574 "and the user has started interacting with a different application";
Jeff Brown928e0542011-01-10 11:17:36 -0800575 break;
576 case DROP_REASON_STALE:
577 LOGI("Dropped event because it is stale.");
578 reason = "inbound event was dropped because it is stale";
579 break;
Jeff Brownb6997262010-10-08 22:31:17 -0700580 default:
Jeff Brownb6110c22011-04-01 16:15:13 -0700581 LOG_ASSERT(false);
Jeff Brownb6997262010-10-08 22:31:17 -0700582 return;
583 }
584
585 switch (entry->type) {
Jeff Brownda3d5a92011-03-29 15:11:34 -0700586 case EventEntry::TYPE_KEY: {
587 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
588 synthesizeCancelationEventsForAllConnectionsLocked(options);
Jeff Brownb6997262010-10-08 22:31:17 -0700589 break;
Jeff Brownda3d5a92011-03-29 15:11:34 -0700590 }
Jeff Brownb6997262010-10-08 22:31:17 -0700591 case EventEntry::TYPE_MOTION: {
592 MotionEntry* motionEntry = static_cast<MotionEntry*>(entry);
593 if (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER) {
Jeff Brownda3d5a92011-03-29 15:11:34 -0700594 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, reason);
595 synthesizeCancelationEventsForAllConnectionsLocked(options);
Jeff Brownb6997262010-10-08 22:31:17 -0700596 } else {
Jeff Brownda3d5a92011-03-29 15:11:34 -0700597 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
598 synthesizeCancelationEventsForAllConnectionsLocked(options);
Jeff Brownb6997262010-10-08 22:31:17 -0700599 }
600 break;
601 }
602 }
603}
604
605bool InputDispatcher::isAppSwitchKeyCode(int32_t keyCode) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700606 return keyCode == AKEYCODE_HOME || keyCode == AKEYCODE_ENDCALL;
607}
608
Jeff Brownb6997262010-10-08 22:31:17 -0700609bool InputDispatcher::isAppSwitchKeyEventLocked(KeyEntry* keyEntry) {
610 return ! (keyEntry->flags & AKEY_EVENT_FLAG_CANCELED)
611 && isAppSwitchKeyCode(keyEntry->keyCode)
Jeff Browne20c9e02010-10-11 14:20:19 -0700612 && (keyEntry->policyFlags & POLICY_FLAG_TRUSTED)
Jeff Brownb6997262010-10-08 22:31:17 -0700613 && (keyEntry->policyFlags & POLICY_FLAG_PASS_TO_USER);
614}
615
Jeff Brownb88102f2010-09-08 11:49:43 -0700616bool InputDispatcher::isAppSwitchPendingLocked() {
617 return mAppSwitchDueTime != LONG_LONG_MAX;
618}
619
Jeff Brownb88102f2010-09-08 11:49:43 -0700620void InputDispatcher::resetPendingAppSwitchLocked(bool handled) {
621 mAppSwitchDueTime = LONG_LONG_MAX;
622
623#if DEBUG_APP_SWITCH
624 if (handled) {
625 LOGD("App switch has arrived.");
626 } else {
627 LOGD("App switch was abandoned.");
628 }
629#endif
Jeff Brown46b9ac02010-04-22 18:58:52 -0700630}
631
Jeff Brown928e0542011-01-10 11:17:36 -0800632bool InputDispatcher::isStaleEventLocked(nsecs_t currentTime, EventEntry* entry) {
633 return currentTime - entry->eventTime >= STALE_EVENT_TIMEOUT;
634}
635
Jeff Brown9c3cda02010-06-15 01:31:58 -0700636bool InputDispatcher::runCommandsLockedInterruptible() {
637 if (mCommandQueue.isEmpty()) {
638 return false;
639 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700640
Jeff Brown9c3cda02010-06-15 01:31:58 -0700641 do {
642 CommandEntry* commandEntry = mCommandQueue.dequeueAtHead();
643
644 Command command = commandEntry->command;
645 (this->*command)(commandEntry); // commands are implicitly 'LockedInterruptible'
646
Jeff Brown7fbdc842010-06-17 20:52:56 -0700647 commandEntry->connection.clear();
Jeff Brown9c3cda02010-06-15 01:31:58 -0700648 mAllocator.releaseCommandEntry(commandEntry);
649 } while (! mCommandQueue.isEmpty());
650 return true;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700651}
652
Jeff Brown9c3cda02010-06-15 01:31:58 -0700653InputDispatcher::CommandEntry* InputDispatcher::postCommandLocked(Command command) {
654 CommandEntry* commandEntry = mAllocator.obtainCommandEntry(command);
655 mCommandQueue.enqueueAtTail(commandEntry);
656 return commandEntry;
657}
658
Jeff Brownb88102f2010-09-08 11:49:43 -0700659void InputDispatcher::drainInboundQueueLocked() {
660 while (! mInboundQueue.isEmpty()) {
661 EventEntry* entry = mInboundQueue.dequeueAtHead();
Jeff Brown54a18252010-09-16 14:07:33 -0700662 releaseInboundEventLocked(entry);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700663 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700664}
665
Jeff Brown54a18252010-09-16 14:07:33 -0700666void InputDispatcher::releasePendingEventLocked() {
Jeff Brownb88102f2010-09-08 11:49:43 -0700667 if (mPendingEvent) {
Jeff Brown54a18252010-09-16 14:07:33 -0700668 releaseInboundEventLocked(mPendingEvent);
Jeff Brownb88102f2010-09-08 11:49:43 -0700669 mPendingEvent = NULL;
670 }
671}
672
Jeff Brown54a18252010-09-16 14:07:33 -0700673void InputDispatcher::releaseInboundEventLocked(EventEntry* entry) {
Jeff Brown01ce2e92010-09-26 22:20:12 -0700674 InjectionState* injectionState = entry->injectionState;
675 if (injectionState && injectionState->injectionResult == INPUT_EVENT_INJECTION_PENDING) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700676#if DEBUG_DISPATCH_CYCLE
Jeff Brown01ce2e92010-09-26 22:20:12 -0700677 LOGD("Injected inbound event was dropped.");
Jeff Brownb88102f2010-09-08 11:49:43 -0700678#endif
679 setInjectionResultLocked(entry, INPUT_EVENT_INJECTION_FAILED);
680 }
681 mAllocator.releaseEventEntry(entry);
682}
683
Jeff Brownb88102f2010-09-08 11:49:43 -0700684void InputDispatcher::resetKeyRepeatLocked() {
685 if (mKeyRepeatState.lastKeyEntry) {
686 mAllocator.releaseKeyEntry(mKeyRepeatState.lastKeyEntry);
687 mKeyRepeatState.lastKeyEntry = NULL;
688 }
689}
690
Jeff Brown214eaf42011-05-26 19:17:02 -0700691InputDispatcher::KeyEntry* InputDispatcher::synthesizeKeyRepeatLocked(nsecs_t currentTime) {
Jeff Brown349703e2010-06-22 01:27:15 -0700692 KeyEntry* entry = mKeyRepeatState.lastKeyEntry;
693
Jeff Brown349703e2010-06-22 01:27:15 -0700694 // Reuse the repeated key entry if it is otherwise unreferenced.
Jeff Browne20c9e02010-10-11 14:20:19 -0700695 uint32_t policyFlags = (entry->policyFlags & POLICY_FLAG_RAW_MASK)
696 | POLICY_FLAG_PASS_TO_USER | POLICY_FLAG_TRUSTED;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700697 if (entry->refCount == 1) {
Jeff Brown01ce2e92010-09-26 22:20:12 -0700698 mAllocator.recycleKeyEntry(entry);
Jeff Brown7fbdc842010-06-17 20:52:56 -0700699 entry->eventTime = currentTime;
Jeff Brown7fbdc842010-06-17 20:52:56 -0700700 entry->policyFlags = policyFlags;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700701 entry->repeatCount += 1;
702 } else {
Jeff Brown7fbdc842010-06-17 20:52:56 -0700703 KeyEntry* newEntry = mAllocator.obtainKeyEntry(currentTime,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700704 entry->deviceId, entry->source, policyFlags,
Jeff Brown7fbdc842010-06-17 20:52:56 -0700705 entry->action, entry->flags, entry->keyCode, entry->scanCode,
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700706 entry->metaState, entry->repeatCount + 1, entry->downTime);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700707
708 mKeyRepeatState.lastKeyEntry = newEntry;
709 mAllocator.releaseKeyEntry(entry);
710
711 entry = newEntry;
712 }
Jeff Brownb88102f2010-09-08 11:49:43 -0700713 entry->syntheticRepeat = true;
714
715 // Increment reference count since we keep a reference to the event in
716 // mKeyRepeatState.lastKeyEntry in addition to the one we return.
717 entry->refCount += 1;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700718
Jeff Brown214eaf42011-05-26 19:17:02 -0700719 mKeyRepeatState.nextRepeatTime = currentTime + mConfig.keyRepeatDelay;
Jeff Brownb88102f2010-09-08 11:49:43 -0700720 return entry;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700721}
722
Jeff Brownb88102f2010-09-08 11:49:43 -0700723bool InputDispatcher::dispatchConfigurationChangedLocked(
724 nsecs_t currentTime, ConfigurationChangedEntry* entry) {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700725#if DEBUG_OUTBOUND_EVENT_DETAILS
Jeff Brownb88102f2010-09-08 11:49:43 -0700726 LOGD("dispatchConfigurationChanged - eventTime=%lld", entry->eventTime);
727#endif
728
729 // Reset key repeating in case a keyboard device was added or removed or something.
730 resetKeyRepeatLocked();
731
732 // Enqueue a command to run outside the lock to tell the policy that the configuration changed.
733 CommandEntry* commandEntry = postCommandLocked(
734 & InputDispatcher::doNotifyConfigurationChangedInterruptible);
735 commandEntry->eventTime = entry->eventTime;
736 return true;
737}
738
Jeff Brown214eaf42011-05-26 19:17:02 -0700739bool InputDispatcher::dispatchKeyLocked(nsecs_t currentTime, KeyEntry* entry,
Jeff Browne20c9e02010-10-11 14:20:19 -0700740 DropReason* dropReason, nsecs_t* nextWakeupTime) {
Jeff Browne46a0a42010-11-02 17:58:22 -0700741 // Preprocessing.
742 if (! entry->dispatchInProgress) {
743 if (entry->repeatCount == 0
744 && entry->action == AKEY_EVENT_ACTION_DOWN
745 && (entry->policyFlags & POLICY_FLAG_TRUSTED)
Jeff Brown0029c662011-03-30 02:25:18 -0700746 && (!(entry->policyFlags & POLICY_FLAG_DISABLE_KEY_REPEAT))) {
Jeff Browne46a0a42010-11-02 17:58:22 -0700747 if (mKeyRepeatState.lastKeyEntry
748 && mKeyRepeatState.lastKeyEntry->keyCode == entry->keyCode) {
749 // We have seen two identical key downs in a row which indicates that the device
750 // driver is automatically generating key repeats itself. We take note of the
751 // repeat here, but we disable our own next key repeat timer since it is clear that
752 // we will not need to synthesize key repeats ourselves.
753 entry->repeatCount = mKeyRepeatState.lastKeyEntry->repeatCount + 1;
754 resetKeyRepeatLocked();
755 mKeyRepeatState.nextRepeatTime = LONG_LONG_MAX; // don't generate repeats ourselves
756 } else {
757 // Not a repeat. Save key down state in case we do see a repeat later.
758 resetKeyRepeatLocked();
Jeff Brown214eaf42011-05-26 19:17:02 -0700759 mKeyRepeatState.nextRepeatTime = entry->eventTime + mConfig.keyRepeatTimeout;
Jeff Browne46a0a42010-11-02 17:58:22 -0700760 }
761 mKeyRepeatState.lastKeyEntry = entry;
762 entry->refCount += 1;
763 } else if (! entry->syntheticRepeat) {
764 resetKeyRepeatLocked();
765 }
766
Jeff Browne2e01262011-03-02 20:34:30 -0800767 if (entry->repeatCount == 1) {
768 entry->flags |= AKEY_EVENT_FLAG_LONG_PRESS;
769 } else {
770 entry->flags &= ~AKEY_EVENT_FLAG_LONG_PRESS;
771 }
772
Jeff Browne46a0a42010-11-02 17:58:22 -0700773 entry->dispatchInProgress = true;
774 resetTargetsLocked();
775
776 logOutboundKeyDetailsLocked("dispatchKey - ", entry);
777 }
778
Jeff Brown54a18252010-09-16 14:07:33 -0700779 // Give the policy a chance to intercept the key.
780 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN) {
Jeff Browne20c9e02010-10-11 14:20:19 -0700781 if (entry->policyFlags & POLICY_FLAG_PASS_TO_USER) {
Jeff Brown54a18252010-09-16 14:07:33 -0700782 CommandEntry* commandEntry = postCommandLocked(
783 & InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible);
Jeff Browne20c9e02010-10-11 14:20:19 -0700784 if (mFocusedWindow) {
Jeff Brown928e0542011-01-10 11:17:36 -0800785 commandEntry->inputWindowHandle = mFocusedWindow->inputWindowHandle;
Jeff Brown54a18252010-09-16 14:07:33 -0700786 }
787 commandEntry->keyEntry = entry;
788 entry->refCount += 1;
789 return false; // wait for the command to run
790 } else {
791 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE;
792 }
793 } else if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_SKIP) {
Jeff Browne20c9e02010-10-11 14:20:19 -0700794 if (*dropReason == DROP_REASON_NOT_DROPPED) {
795 *dropReason = DROP_REASON_POLICY;
796 }
Jeff Brown54a18252010-09-16 14:07:33 -0700797 }
798
799 // Clean up if dropping the event.
Jeff Browne20c9e02010-10-11 14:20:19 -0700800 if (*dropReason != DROP_REASON_NOT_DROPPED) {
Jeff Brown54a18252010-09-16 14:07:33 -0700801 resetTargetsLocked();
Jeff Brown3122e442010-10-11 23:32:49 -0700802 setInjectionResultLocked(entry, *dropReason == DROP_REASON_POLICY
803 ? INPUT_EVENT_INJECTION_SUCCEEDED : INPUT_EVENT_INJECTION_FAILED);
Jeff Brown54a18252010-09-16 14:07:33 -0700804 return true;
805 }
806
Jeff Brownb88102f2010-09-08 11:49:43 -0700807 // Identify targets.
808 if (! mCurrentInputTargetsValid) {
Jeff Brown01ce2e92010-09-26 22:20:12 -0700809 int32_t injectionResult = findFocusedWindowTargetsLocked(currentTime,
810 entry, nextWakeupTime);
Jeff Brownb88102f2010-09-08 11:49:43 -0700811 if (injectionResult == INPUT_EVENT_INJECTION_PENDING) {
812 return false;
813 }
814
815 setInjectionResultLocked(entry, injectionResult);
816 if (injectionResult != INPUT_EVENT_INJECTION_SUCCEEDED) {
817 return true;
818 }
819
820 addMonitoringTargetsLocked();
Jeff Brown01ce2e92010-09-26 22:20:12 -0700821 commitTargetsLocked();
Jeff Brownb88102f2010-09-08 11:49:43 -0700822 }
823
824 // Dispatch the key.
825 dispatchEventToCurrentInputTargetsLocked(currentTime, entry, false);
Jeff Brownb88102f2010-09-08 11:49:43 -0700826 return true;
827}
828
829void InputDispatcher::logOutboundKeyDetailsLocked(const char* prefix, const KeyEntry* entry) {
830#if DEBUG_OUTBOUND_EVENT_DETAILS
Jeff Brown90655042010-12-02 13:50:46 -0800831 LOGD("%seventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, "
Jeff Brownb88102f2010-09-08 11:49:43 -0700832 "action=0x%x, flags=0x%x, keyCode=0x%x, scanCode=0x%x, metaState=0x%x, "
Jeff Browne46a0a42010-11-02 17:58:22 -0700833 "repeatCount=%d, downTime=%lld",
Jeff Brownb88102f2010-09-08 11:49:43 -0700834 prefix,
835 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags,
836 entry->action, entry->flags, entry->keyCode, entry->scanCode, entry->metaState,
Jeff Browne46a0a42010-11-02 17:58:22 -0700837 entry->repeatCount, entry->downTime);
Jeff Brownb88102f2010-09-08 11:49:43 -0700838#endif
839}
840
841bool InputDispatcher::dispatchMotionLocked(
Jeff Browne20c9e02010-10-11 14:20:19 -0700842 nsecs_t currentTime, MotionEntry* entry, DropReason* dropReason, nsecs_t* nextWakeupTime) {
Jeff Browne46a0a42010-11-02 17:58:22 -0700843 // Preprocessing.
844 if (! entry->dispatchInProgress) {
845 entry->dispatchInProgress = true;
846 resetTargetsLocked();
847
848 logOutboundMotionDetailsLocked("dispatchMotion - ", entry);
849 }
850
Jeff Brown54a18252010-09-16 14:07:33 -0700851 // Clean up if dropping the event.
Jeff Browne20c9e02010-10-11 14:20:19 -0700852 if (*dropReason != DROP_REASON_NOT_DROPPED) {
Jeff Brown54a18252010-09-16 14:07:33 -0700853 resetTargetsLocked();
Jeff Brown3122e442010-10-11 23:32:49 -0700854 setInjectionResultLocked(entry, *dropReason == DROP_REASON_POLICY
855 ? INPUT_EVENT_INJECTION_SUCCEEDED : INPUT_EVENT_INJECTION_FAILED);
Jeff Brown54a18252010-09-16 14:07:33 -0700856 return true;
857 }
858
Jeff Brownb88102f2010-09-08 11:49:43 -0700859 bool isPointerEvent = entry->source & AINPUT_SOURCE_CLASS_POINTER;
860
861 // Identify targets.
Jeff Browncc0c1592011-02-19 05:07:28 -0800862 bool conflictingPointerActions = false;
Jeff Brownb88102f2010-09-08 11:49:43 -0700863 if (! mCurrentInputTargetsValid) {
Jeff Brownb88102f2010-09-08 11:49:43 -0700864 int32_t injectionResult;
Jeff Browna032cc02011-03-07 16:56:21 -0800865 const MotionSample* splitBatchAfterSample = NULL;
Jeff Brownb88102f2010-09-08 11:49:43 -0700866 if (isPointerEvent) {
867 // Pointer event. (eg. touchscreen)
Jeff Brown01ce2e92010-09-26 22:20:12 -0700868 injectionResult = findTouchedWindowTargetsLocked(currentTime,
Jeff Browna032cc02011-03-07 16:56:21 -0800869 entry, nextWakeupTime, &conflictingPointerActions, &splitBatchAfterSample);
Jeff Brownb88102f2010-09-08 11:49:43 -0700870 } else {
871 // Non touch event. (eg. trackball)
Jeff Brown01ce2e92010-09-26 22:20:12 -0700872 injectionResult = findFocusedWindowTargetsLocked(currentTime,
873 entry, nextWakeupTime);
Jeff Brownb88102f2010-09-08 11:49:43 -0700874 }
875 if (injectionResult == INPUT_EVENT_INJECTION_PENDING) {
876 return false;
877 }
878
879 setInjectionResultLocked(entry, injectionResult);
880 if (injectionResult != INPUT_EVENT_INJECTION_SUCCEEDED) {
881 return true;
882 }
883
884 addMonitoringTargetsLocked();
Jeff Brown01ce2e92010-09-26 22:20:12 -0700885 commitTargetsLocked();
Jeff Browna032cc02011-03-07 16:56:21 -0800886
887 // Unbatch the event if necessary by splitting it into two parts after the
888 // motion sample indicated by splitBatchAfterSample.
889 if (splitBatchAfterSample && splitBatchAfterSample->next) {
890#if DEBUG_BATCHING
891 uint32_t originalSampleCount = entry->countSamples();
892#endif
893 MotionSample* nextSample = splitBatchAfterSample->next;
894 MotionEntry* nextEntry = mAllocator.obtainMotionEntry(nextSample->eventTime,
895 entry->deviceId, entry->source, entry->policyFlags,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700896 entry->action, entry->flags,
897 entry->metaState, entry->buttonState, entry->edgeFlags,
Jeff Browna032cc02011-03-07 16:56:21 -0800898 entry->xPrecision, entry->yPrecision, entry->downTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700899 entry->pointerCount, entry->pointerProperties, nextSample->pointerCoords);
Jeff Browna032cc02011-03-07 16:56:21 -0800900 if (nextSample != entry->lastSample) {
901 nextEntry->firstSample.next = nextSample->next;
902 nextEntry->lastSample = entry->lastSample;
903 }
904 mAllocator.freeMotionSample(nextSample);
905
906 entry->lastSample = const_cast<MotionSample*>(splitBatchAfterSample);
907 entry->lastSample->next = NULL;
908
909 if (entry->injectionState) {
910 nextEntry->injectionState = entry->injectionState;
911 entry->injectionState->refCount += 1;
912 }
913
914#if DEBUG_BATCHING
915 LOGD("Split batch of %d samples into two parts, first part has %d samples, "
916 "second part has %d samples.", originalSampleCount,
917 entry->countSamples(), nextEntry->countSamples());
918#endif
919
920 mInboundQueue.enqueueAtHead(nextEntry);
921 }
Jeff Brownb88102f2010-09-08 11:49:43 -0700922 }
923
924 // Dispatch the motion.
Jeff Browncc0c1592011-02-19 05:07:28 -0800925 if (conflictingPointerActions) {
Jeff Brownda3d5a92011-03-29 15:11:34 -0700926 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
927 "conflicting pointer actions");
928 synthesizeCancelationEventsForAllConnectionsLocked(options);
Jeff Browncc0c1592011-02-19 05:07:28 -0800929 }
Jeff Brownb88102f2010-09-08 11:49:43 -0700930 dispatchEventToCurrentInputTargetsLocked(currentTime, entry, false);
Jeff Brownb88102f2010-09-08 11:49:43 -0700931 return true;
932}
933
934
935void InputDispatcher::logOutboundMotionDetailsLocked(const char* prefix, const MotionEntry* entry) {
936#if DEBUG_OUTBOUND_EVENT_DETAILS
Jeff Brown90655042010-12-02 13:50:46 -0800937 LOGD("%seventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, "
Jeff Brown85a31762010-09-01 17:01:00 -0700938 "action=0x%x, flags=0x%x, "
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700939 "metaState=0x%x, buttonState=0x%x, "
940 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%lld",
Jeff Brownb88102f2010-09-08 11:49:43 -0700941 prefix,
Jeff Brown85a31762010-09-01 17:01:00 -0700942 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags,
943 entry->action, entry->flags,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700944 entry->metaState, entry->buttonState,
945 entry->edgeFlags, entry->xPrecision, entry->yPrecision,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700946 entry->downTime);
947
948 // Print the most recent sample that we have available, this may change due to batching.
949 size_t sampleCount = 1;
Jeff Brownb88102f2010-09-08 11:49:43 -0700950 const MotionSample* sample = & entry->firstSample;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700951 for (; sample->next != NULL; sample = sample->next) {
952 sampleCount += 1;
953 }
954 for (uint32_t i = 0; i < entry->pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700955 LOGD(" Pointer %d: id=%d, toolType=%d, "
956 "x=%f, y=%f, pressure=%f, size=%f, "
Jeff Brown85a31762010-09-01 17:01:00 -0700957 "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, "
Jeff Brown8d608662010-08-30 03:02:23 -0700958 "orientation=%f",
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700959 i, entry->pointerProperties[i].id,
960 entry->pointerProperties[i].toolType,
Jeff Brownebbd5d12011-02-17 13:01:34 -0800961 sample->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X),
962 sample->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y),
963 sample->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE),
964 sample->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE),
965 sample->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR),
966 sample->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR),
967 sample->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR),
968 sample->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR),
969 sample->pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION));
Jeff Brown46b9ac02010-04-22 18:58:52 -0700970 }
971
972 // Keep in mind that due to batching, it is possible for the number of samples actually
973 // dispatched to change before the application finally consumed them.
Jeff Brownc5ed5912010-07-14 18:48:53 -0700974 if (entry->action == AMOTION_EVENT_ACTION_MOVE) {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700975 LOGD(" ... Total movement samples currently batched %d ...", sampleCount);
976 }
977#endif
Jeff Brown46b9ac02010-04-22 18:58:52 -0700978}
979
980void InputDispatcher::dispatchEventToCurrentInputTargetsLocked(nsecs_t currentTime,
981 EventEntry* eventEntry, bool resumeWithAppendedMotionSample) {
982#if DEBUG_DISPATCH_CYCLE
Jeff Brown9c3cda02010-06-15 01:31:58 -0700983 LOGD("dispatchEventToCurrentInputTargets - "
Jeff Brown46b9ac02010-04-22 18:58:52 -0700984 "resumeWithAppendedMotionSample=%s",
Jeff Brownb88102f2010-09-08 11:49:43 -0700985 toString(resumeWithAppendedMotionSample));
Jeff Brown46b9ac02010-04-22 18:58:52 -0700986#endif
987
Jeff Brownb6110c22011-04-01 16:15:13 -0700988 LOG_ASSERT(eventEntry->dispatchInProgress); // should already have been set to true
Jeff Brown9c3cda02010-06-15 01:31:58 -0700989
Jeff Browne2fe69e2010-10-18 13:21:23 -0700990 pokeUserActivityLocked(eventEntry);
991
Jeff Brown46b9ac02010-04-22 18:58:52 -0700992 for (size_t i = 0; i < mCurrentInputTargets.size(); i++) {
993 const InputTarget& inputTarget = mCurrentInputTargets.itemAt(i);
994
Jeff Brown519e0242010-09-15 15:18:56 -0700995 ssize_t connectionIndex = getConnectionIndexLocked(inputTarget.inputChannel);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700996 if (connectionIndex >= 0) {
997 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
Jeff Brown7fbdc842010-06-17 20:52:56 -0700998 prepareDispatchCycleLocked(currentTime, connection, eventEntry, & inputTarget,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700999 resumeWithAppendedMotionSample);
1000 } else {
Jeff Brownb6997262010-10-08 22:31:17 -07001001#if DEBUG_FOCUS
1002 LOGD("Dropping event delivery to target with channel '%s' because it "
1003 "is no longer registered with the input dispatcher.",
Jeff Brown46b9ac02010-04-22 18:58:52 -07001004 inputTarget.inputChannel->getName().string());
Jeff Brownb6997262010-10-08 22:31:17 -07001005#endif
Jeff Brown46b9ac02010-04-22 18:58:52 -07001006 }
1007 }
1008}
1009
Jeff Brown54a18252010-09-16 14:07:33 -07001010void InputDispatcher::resetTargetsLocked() {
Jeff Brownb88102f2010-09-08 11:49:43 -07001011 mCurrentInputTargetsValid = false;
1012 mCurrentInputTargets.clear();
Jeff Brownb88102f2010-09-08 11:49:43 -07001013 mInputTargetWaitCause = INPUT_TARGET_WAIT_CAUSE_NONE;
Jeff Brown928e0542011-01-10 11:17:36 -08001014 mInputTargetWaitApplication.clear();
Jeff Brownb88102f2010-09-08 11:49:43 -07001015}
1016
Jeff Brown01ce2e92010-09-26 22:20:12 -07001017void InputDispatcher::commitTargetsLocked() {
Jeff Brownb88102f2010-09-08 11:49:43 -07001018 mCurrentInputTargetsValid = true;
1019}
1020
1021int32_t InputDispatcher::handleTargetsNotReadyLocked(nsecs_t currentTime,
1022 const EventEntry* entry, const InputApplication* application, const InputWindow* window,
1023 nsecs_t* nextWakeupTime) {
1024 if (application == NULL && window == NULL) {
1025 if (mInputTargetWaitCause != INPUT_TARGET_WAIT_CAUSE_SYSTEM_NOT_READY) {
1026#if DEBUG_FOCUS
1027 LOGD("Waiting for system to become ready for input.");
1028#endif
1029 mInputTargetWaitCause = INPUT_TARGET_WAIT_CAUSE_SYSTEM_NOT_READY;
1030 mInputTargetWaitStartTime = currentTime;
1031 mInputTargetWaitTimeoutTime = LONG_LONG_MAX;
1032 mInputTargetWaitTimeoutExpired = false;
Jeff Brown928e0542011-01-10 11:17:36 -08001033 mInputTargetWaitApplication.clear();
Jeff Brownb88102f2010-09-08 11:49:43 -07001034 }
1035 } else {
1036 if (mInputTargetWaitCause != INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY) {
1037#if DEBUG_FOCUS
Jeff Brown519e0242010-09-15 15:18:56 -07001038 LOGD("Waiting for application to become ready for input: %s",
1039 getApplicationWindowLabelLocked(application, window).string());
Jeff Brownb88102f2010-09-08 11:49:43 -07001040#endif
1041 nsecs_t timeout = window ? window->dispatchingTimeout :
1042 application ? application->dispatchingTimeout : DEFAULT_INPUT_DISPATCHING_TIMEOUT;
1043
1044 mInputTargetWaitCause = INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY;
1045 mInputTargetWaitStartTime = currentTime;
1046 mInputTargetWaitTimeoutTime = currentTime + timeout;
1047 mInputTargetWaitTimeoutExpired = false;
Jeff Brown928e0542011-01-10 11:17:36 -08001048 mInputTargetWaitApplication.clear();
1049
1050 if (window && window->inputWindowHandle != NULL) {
1051 mInputTargetWaitApplication =
1052 window->inputWindowHandle->getInputApplicationHandle();
1053 }
1054 if (mInputTargetWaitApplication == NULL && application) {
1055 mInputTargetWaitApplication = application->inputApplicationHandle;
1056 }
Jeff Brownb88102f2010-09-08 11:49:43 -07001057 }
1058 }
1059
1060 if (mInputTargetWaitTimeoutExpired) {
1061 return INPUT_EVENT_INJECTION_TIMED_OUT;
1062 }
1063
1064 if (currentTime >= mInputTargetWaitTimeoutTime) {
Jeff Brown519e0242010-09-15 15:18:56 -07001065 onANRLocked(currentTime, application, window, entry->eventTime, mInputTargetWaitStartTime);
Jeff Brownb88102f2010-09-08 11:49:43 -07001066
1067 // Force poll loop to wake up immediately on next iteration once we get the
1068 // ANR response back from the policy.
1069 *nextWakeupTime = LONG_LONG_MIN;
1070 return INPUT_EVENT_INJECTION_PENDING;
1071 } else {
1072 // Force poll loop to wake up when timeout is due.
1073 if (mInputTargetWaitTimeoutTime < *nextWakeupTime) {
1074 *nextWakeupTime = mInputTargetWaitTimeoutTime;
1075 }
1076 return INPUT_EVENT_INJECTION_PENDING;
1077 }
1078}
1079
Jeff Brown519e0242010-09-15 15:18:56 -07001080void InputDispatcher::resumeAfterTargetsNotReadyTimeoutLocked(nsecs_t newTimeout,
1081 const sp<InputChannel>& inputChannel) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001082 if (newTimeout > 0) {
1083 // Extend the timeout.
1084 mInputTargetWaitTimeoutTime = now() + newTimeout;
1085 } else {
1086 // Give up.
1087 mInputTargetWaitTimeoutExpired = true;
Jeff Brown519e0242010-09-15 15:18:56 -07001088
Jeff Brown01ce2e92010-09-26 22:20:12 -07001089 // Release the touch targets.
1090 mTouchState.reset();
Jeff Brown2a95c2a2010-09-16 12:31:46 -07001091
Jeff Brown519e0242010-09-15 15:18:56 -07001092 // Input state will not be realistic. Mark it out of sync.
Jeff Browndc3e0052010-09-16 11:02:16 -07001093 if (inputChannel.get()) {
1094 ssize_t connectionIndex = getConnectionIndexLocked(inputChannel);
1095 if (connectionIndex >= 0) {
1096 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
Jeff Brown00045a72010-12-09 18:10:30 -08001097 if (connection->status == Connection::STATUS_NORMAL) {
Jeff Brownda3d5a92011-03-29 15:11:34 -07001098 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS,
Jeff Brown00045a72010-12-09 18:10:30 -08001099 "application not responding");
Jeff Brownda3d5a92011-03-29 15:11:34 -07001100 synthesizeCancelationEventsForConnectionLocked(connection, options);
Jeff Brown00045a72010-12-09 18:10:30 -08001101 }
Jeff Browndc3e0052010-09-16 11:02:16 -07001102 }
Jeff Brown519e0242010-09-15 15:18:56 -07001103 }
Jeff Brownb88102f2010-09-08 11:49:43 -07001104 }
1105}
1106
Jeff Brown519e0242010-09-15 15:18:56 -07001107nsecs_t InputDispatcher::getTimeSpentWaitingForApplicationLocked(
Jeff Brownb88102f2010-09-08 11:49:43 -07001108 nsecs_t currentTime) {
1109 if (mInputTargetWaitCause == INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY) {
1110 return currentTime - mInputTargetWaitStartTime;
1111 }
1112 return 0;
1113}
1114
1115void InputDispatcher::resetANRTimeoutsLocked() {
1116#if DEBUG_FOCUS
1117 LOGD("Resetting ANR timeouts.");
1118#endif
1119
Jeff Brownb88102f2010-09-08 11:49:43 -07001120 // Reset input target wait timeout.
1121 mInputTargetWaitCause = INPUT_TARGET_WAIT_CAUSE_NONE;
1122}
1123
Jeff Brown01ce2e92010-09-26 22:20:12 -07001124int32_t InputDispatcher::findFocusedWindowTargetsLocked(nsecs_t currentTime,
1125 const EventEntry* entry, nsecs_t* nextWakeupTime) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001126 mCurrentInputTargets.clear();
1127
1128 int32_t injectionResult;
1129
1130 // If there is no currently focused window and no focused application
1131 // then drop the event.
1132 if (! mFocusedWindow) {
1133 if (mFocusedApplication) {
1134#if DEBUG_FOCUS
1135 LOGD("Waiting because there is no focused window but there is a "
Jeff Brown519e0242010-09-15 15:18:56 -07001136 "focused application that may eventually add a window: %s.",
1137 getApplicationWindowLabelLocked(mFocusedApplication, NULL).string());
Jeff Brownb88102f2010-09-08 11:49:43 -07001138#endif
1139 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1140 mFocusedApplication, NULL, nextWakeupTime);
1141 goto Unresponsive;
1142 }
1143
1144 LOGI("Dropping event because there is no focused window or focused application.");
1145 injectionResult = INPUT_EVENT_INJECTION_FAILED;
1146 goto Failed;
1147 }
1148
1149 // Check permissions.
Jeff Brown01ce2e92010-09-26 22:20:12 -07001150 if (! checkInjectionPermission(mFocusedWindow, entry->injectionState)) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001151 injectionResult = INPUT_EVENT_INJECTION_PERMISSION_DENIED;
1152 goto Failed;
1153 }
1154
1155 // If the currently focused window is paused then keep waiting.
1156 if (mFocusedWindow->paused) {
1157#if DEBUG_FOCUS
1158 LOGD("Waiting because focused window is paused.");
1159#endif
1160 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1161 mFocusedApplication, mFocusedWindow, nextWakeupTime);
1162 goto Unresponsive;
1163 }
1164
Jeff Brown519e0242010-09-15 15:18:56 -07001165 // If the currently focused window is still working on previous events then keep waiting.
1166 if (! isWindowFinishedWithPreviousInputLocked(mFocusedWindow)) {
1167#if DEBUG_FOCUS
1168 LOGD("Waiting because focused window still processing previous input.");
1169#endif
1170 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1171 mFocusedApplication, mFocusedWindow, nextWakeupTime);
1172 goto Unresponsive;
1173 }
1174
Jeff Brownb88102f2010-09-08 11:49:43 -07001175 // Success! Output targets.
1176 injectionResult = INPUT_EVENT_INJECTION_SUCCEEDED;
Jeff Browna032cc02011-03-07 16:56:21 -08001177 addWindowTargetLocked(mFocusedWindow,
1178 InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_IS, BitSet32(0));
Jeff Brownb88102f2010-09-08 11:49:43 -07001179
1180 // Done.
1181Failed:
1182Unresponsive:
Jeff Brown519e0242010-09-15 15:18:56 -07001183 nsecs_t timeSpentWaitingForApplication = getTimeSpentWaitingForApplicationLocked(currentTime);
1184 updateDispatchStatisticsLocked(currentTime, entry,
1185 injectionResult, timeSpentWaitingForApplication);
Jeff Brownb88102f2010-09-08 11:49:43 -07001186#if DEBUG_FOCUS
Jeff Brown519e0242010-09-15 15:18:56 -07001187 LOGD("findFocusedWindow finished: injectionResult=%d, "
1188 "timeSpendWaitingForApplication=%0.1fms",
1189 injectionResult, timeSpentWaitingForApplication / 1000000.0);
Jeff Brownb88102f2010-09-08 11:49:43 -07001190#endif
1191 return injectionResult;
1192}
1193
Jeff Brown01ce2e92010-09-26 22:20:12 -07001194int32_t InputDispatcher::findTouchedWindowTargetsLocked(nsecs_t currentTime,
Jeff Browna032cc02011-03-07 16:56:21 -08001195 const MotionEntry* entry, nsecs_t* nextWakeupTime, bool* outConflictingPointerActions,
1196 const MotionSample** outSplitBatchAfterSample) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001197 enum InjectionPermission {
1198 INJECTION_PERMISSION_UNKNOWN,
1199 INJECTION_PERMISSION_GRANTED,
1200 INJECTION_PERMISSION_DENIED
1201 };
1202
Jeff Brownb88102f2010-09-08 11:49:43 -07001203 mCurrentInputTargets.clear();
1204
1205 nsecs_t startTime = now();
1206
1207 // For security reasons, we defer updating the touch state until we are sure that
1208 // event injection will be allowed.
1209 //
1210 // FIXME In the original code, screenWasOff could never be set to true.
1211 // The reason is that the POLICY_FLAG_WOKE_HERE
1212 // and POLICY_FLAG_BRIGHT_HERE flags were set only when preprocessing raw
1213 // EV_KEY, EV_REL and EV_ABS events. As it happens, the touch event was
1214 // actually enqueued using the policyFlags that appeared in the final EV_SYN
1215 // events upon which no preprocessing took place. So policyFlags was always 0.
1216 // In the new native input dispatcher we're a bit more careful about event
1217 // preprocessing so the touches we receive can actually have non-zero policyFlags.
1218 // Unfortunately we obtain undesirable behavior.
1219 //
1220 // Here's what happens:
1221 //
1222 // When the device dims in anticipation of going to sleep, touches
1223 // in windows which have FLAG_TOUCHABLE_WHEN_WAKING cause
1224 // the device to brighten and reset the user activity timer.
1225 // Touches on other windows (such as the launcher window)
1226 // are dropped. Then after a moment, the device goes to sleep. Oops.
1227 //
1228 // Also notice how screenWasOff was being initialized using POLICY_FLAG_BRIGHT_HERE
1229 // instead of POLICY_FLAG_WOKE_HERE...
1230 //
1231 bool screenWasOff = false; // original policy: policyFlags & POLICY_FLAG_BRIGHT_HERE;
1232
1233 int32_t action = entry->action;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001234 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
Jeff Brownb88102f2010-09-08 11:49:43 -07001235
1236 // Update the touch state as needed based on the properties of the touch event.
Jeff Brown01ce2e92010-09-26 22:20:12 -07001237 int32_t injectionResult = INPUT_EVENT_INJECTION_PENDING;
1238 InjectionPermission injectionPermission = INJECTION_PERMISSION_UNKNOWN;
Jeff Browna032cc02011-03-07 16:56:21 -08001239 const InputWindow* newHoverWindow = NULL;
Jeff Browncc0c1592011-02-19 05:07:28 -08001240
1241 bool isSplit = mTouchState.split;
Jeff Brown81346812011-06-28 20:08:48 -07001242 bool switchedDevice = mTouchState.deviceId != entry->deviceId
1243 || mTouchState.source != entry->source;
Jeff Browna032cc02011-03-07 16:56:21 -08001244 bool isHoverAction = (maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE
1245 || maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER
1246 || maskedAction == AMOTION_EVENT_ACTION_HOVER_EXIT);
1247 bool newGesture = (maskedAction == AMOTION_EVENT_ACTION_DOWN
1248 || maskedAction == AMOTION_EVENT_ACTION_SCROLL
1249 || isHoverAction);
Jeff Brown81346812011-06-28 20:08:48 -07001250 bool wrongDevice = false;
Jeff Browna032cc02011-03-07 16:56:21 -08001251 if (newGesture) {
Jeff Browncc0c1592011-02-19 05:07:28 -08001252 bool down = maskedAction == AMOTION_EVENT_ACTION_DOWN;
Jeff Brown81346812011-06-28 20:08:48 -07001253 if (switchedDevice && mTouchState.down && !down) {
1254#if DEBUG_FOCUS
1255 LOGD("Dropping event because a pointer for a different device is already down.");
1256#endif
Jeff Browncc0c1592011-02-19 05:07:28 -08001257 mTempTouchState.copyFrom(mTouchState);
Jeff Brown81346812011-06-28 20:08:48 -07001258 injectionResult = INPUT_EVENT_INJECTION_FAILED;
1259 switchedDevice = false;
1260 wrongDevice = true;
1261 goto Failed;
Jeff Browncc0c1592011-02-19 05:07:28 -08001262 }
Jeff Brown81346812011-06-28 20:08:48 -07001263 mTempTouchState.reset();
1264 mTempTouchState.down = down;
1265 mTempTouchState.deviceId = entry->deviceId;
1266 mTempTouchState.source = entry->source;
1267 isSplit = false;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001268 } else {
1269 mTempTouchState.copyFrom(mTouchState);
Jeff Browncc0c1592011-02-19 05:07:28 -08001270 }
Jeff Brownb88102f2010-09-08 11:49:43 -07001271
Jeff Browna032cc02011-03-07 16:56:21 -08001272 if (newGesture || (isSplit && maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN)) {
Jeff Brown33bbfd22011-02-24 20:55:35 -08001273 /* Case 1: New splittable pointer going down, or need target for hover or scroll. */
Jeff Brownb88102f2010-09-08 11:49:43 -07001274
Jeff Browna032cc02011-03-07 16:56:21 -08001275 const MotionSample* sample = &entry->firstSample;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001276 int32_t pointerIndex = getMotionEventActionPointerIndex(action);
Jeff Browna032cc02011-03-07 16:56:21 -08001277 int32_t x = int32_t(sample->pointerCoords[pointerIndex].
Jeff Brownebbd5d12011-02-17 13:01:34 -08001278 getAxisValue(AMOTION_EVENT_AXIS_X));
Jeff Browna032cc02011-03-07 16:56:21 -08001279 int32_t y = int32_t(sample->pointerCoords[pointerIndex].
Jeff Brownebbd5d12011-02-17 13:01:34 -08001280 getAxisValue(AMOTION_EVENT_AXIS_Y));
Jeff Brown01ce2e92010-09-26 22:20:12 -07001281 const InputWindow* newTouchedWindow = NULL;
1282 const InputWindow* topErrorWindow = NULL;
Jeff Browna032cc02011-03-07 16:56:21 -08001283 bool isTouchModal = false;
Jeff Brownb88102f2010-09-08 11:49:43 -07001284
1285 // Traverse windows from front to back to find touched window and outside targets.
1286 size_t numWindows = mWindows.size();
1287 for (size_t i = 0; i < numWindows; i++) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001288 const InputWindow* window = & mWindows.editItemAt(i);
Jeff Brownb88102f2010-09-08 11:49:43 -07001289 int32_t flags = window->layoutParamsFlags;
1290
1291 if (flags & InputWindow::FLAG_SYSTEM_ERROR) {
1292 if (! topErrorWindow) {
1293 topErrorWindow = window;
1294 }
1295 }
1296
1297 if (window->visible) {
1298 if (! (flags & InputWindow::FLAG_NOT_TOUCHABLE)) {
Jeff Browna032cc02011-03-07 16:56:21 -08001299 isTouchModal = (flags & (InputWindow::FLAG_NOT_FOCUSABLE
Jeff Brownb88102f2010-09-08 11:49:43 -07001300 | InputWindow::FLAG_NOT_TOUCH_MODAL)) == 0;
Jeff Brownfbf09772011-01-16 14:06:57 -08001301 if (isTouchModal || window->touchableRegionContainsPoint(x, y)) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001302 if (! screenWasOff || flags & InputWindow::FLAG_TOUCHABLE_WHEN_WAKING) {
1303 newTouchedWindow = window;
Jeff Brownb88102f2010-09-08 11:49:43 -07001304 }
1305 break; // found touched window, exit window loop
1306 }
1307 }
1308
Jeff Brown01ce2e92010-09-26 22:20:12 -07001309 if (maskedAction == AMOTION_EVENT_ACTION_DOWN
1310 && (flags & InputWindow::FLAG_WATCH_OUTSIDE_TOUCH)) {
Jeff Browna032cc02011-03-07 16:56:21 -08001311 int32_t outsideTargetFlags = InputTarget::FLAG_DISPATCH_AS_OUTSIDE;
Jeff Brown19dfc832010-10-05 12:26:23 -07001312 if (isWindowObscuredAtPointLocked(window, x, y)) {
1313 outsideTargetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1314 }
1315
1316 mTempTouchState.addOrUpdateWindow(window, outsideTargetFlags, BitSet32(0));
Jeff Brownb88102f2010-09-08 11:49:43 -07001317 }
1318 }
1319 }
1320
1321 // If there is an error window but it is not taking focus (typically because
1322 // it is invisible) then wait for it. Any other focused window may in
1323 // fact be in ANR state.
1324 if (topErrorWindow && newTouchedWindow != topErrorWindow) {
1325#if DEBUG_FOCUS
1326 LOGD("Waiting because system error window is pending.");
1327#endif
1328 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1329 NULL, NULL, nextWakeupTime);
1330 injectionPermission = INJECTION_PERMISSION_UNKNOWN;
1331 goto Unresponsive;
1332 }
1333
Jeff Brown01ce2e92010-09-26 22:20:12 -07001334 // Figure out whether splitting will be allowed for this window.
Jeff Brown46e75292010-11-10 16:53:45 -08001335 if (newTouchedWindow && newTouchedWindow->supportsSplitTouch()) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001336 // New window supports splitting.
1337 isSplit = true;
1338 } else if (isSplit) {
1339 // New window does not support splitting but we have already split events.
1340 // Assign the pointer to the first foreground window we find.
1341 // (May be NULL which is why we put this code block before the next check.)
1342 newTouchedWindow = mTempTouchState.getFirstForegroundWindow();
1343 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001344
Jeff Brownb88102f2010-09-08 11:49:43 -07001345 // If we did not find a touched window then fail.
1346 if (! newTouchedWindow) {
1347 if (mFocusedApplication) {
1348#if DEBUG_FOCUS
1349 LOGD("Waiting because there is no touched window but there is a "
Jeff Brown519e0242010-09-15 15:18:56 -07001350 "focused application that may eventually add a new window: %s.",
1351 getApplicationWindowLabelLocked(mFocusedApplication, NULL).string());
Jeff Brownb88102f2010-09-08 11:49:43 -07001352#endif
1353 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1354 mFocusedApplication, NULL, nextWakeupTime);
Jeff Brownb88102f2010-09-08 11:49:43 -07001355 goto Unresponsive;
1356 }
1357
1358 LOGI("Dropping event because there is no touched window or focused application.");
1359 injectionResult = INPUT_EVENT_INJECTION_FAILED;
Jeff Brownb88102f2010-09-08 11:49:43 -07001360 goto Failed;
1361 }
1362
Jeff Brown19dfc832010-10-05 12:26:23 -07001363 // Set target flags.
Jeff Browna032cc02011-03-07 16:56:21 -08001364 int32_t targetFlags = InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_IS;
Jeff Brown19dfc832010-10-05 12:26:23 -07001365 if (isSplit) {
1366 targetFlags |= InputTarget::FLAG_SPLIT;
1367 }
1368 if (isWindowObscuredAtPointLocked(newTouchedWindow, x, y)) {
1369 targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1370 }
1371
Jeff Browna032cc02011-03-07 16:56:21 -08001372 // Update hover state.
1373 if (isHoverAction) {
1374 newHoverWindow = newTouchedWindow;
1375
1376 // Ensure all subsequent motion samples are also within the touched window.
1377 // Set *outSplitBatchAfterSample to the sample before the first one that is not
1378 // within the touched window.
1379 if (!isTouchModal) {
1380 while (sample->next) {
1381 if (!newHoverWindow->touchableRegionContainsPoint(
1382 sample->next->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X),
1383 sample->next->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y))) {
1384 *outSplitBatchAfterSample = sample;
1385 break;
1386 }
1387 sample = sample->next;
1388 }
1389 }
1390 } else if (maskedAction == AMOTION_EVENT_ACTION_SCROLL) {
1391 newHoverWindow = mLastHoverWindow;
1392 }
1393
Jeff Brown01ce2e92010-09-26 22:20:12 -07001394 // Update the temporary touch state.
1395 BitSet32 pointerIds;
1396 if (isSplit) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07001397 uint32_t pointerId = entry->pointerProperties[pointerIndex].id;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001398 pointerIds.markBit(pointerId);
Jeff Brownb88102f2010-09-08 11:49:43 -07001399 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001400 mTempTouchState.addOrUpdateWindow(newTouchedWindow, targetFlags, pointerIds);
Jeff Brownb88102f2010-09-08 11:49:43 -07001401 } else {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001402 /* Case 2: Pointer move, up, cancel or non-splittable pointer down. */
Jeff Brownb88102f2010-09-08 11:49:43 -07001403
1404 // If the pointer is not currently down, then ignore the event.
Jeff Brown01ce2e92010-09-26 22:20:12 -07001405 if (! mTempTouchState.down) {
Jeff Browna2cc28d2011-03-25 11:58:46 -07001406#if DEBUG_FOCUS
Jeff Brown76860e32010-10-25 17:37:46 -07001407 LOGD("Dropping event because the pointer is not down or we previously "
1408 "dropped the pointer down event.");
1409#endif
Jeff Brownb88102f2010-09-08 11:49:43 -07001410 injectionResult = INPUT_EVENT_INJECTION_FAILED;
Jeff Brownb88102f2010-09-08 11:49:43 -07001411 goto Failed;
1412 }
Jeff Brown98db5fa2011-06-08 15:37:10 -07001413
1414 // Check whether touches should slip outside of the current foreground window.
1415 if (maskedAction == AMOTION_EVENT_ACTION_MOVE
1416 && entry->pointerCount == 1
1417 && mTempTouchState.isSlippery()) {
1418 const MotionSample* sample = &entry->firstSample;
1419 int32_t x = int32_t(sample->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X));
1420 int32_t y = int32_t(sample->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y));
1421
1422 const InputWindow* oldTouchedWindow = mTempTouchState.getFirstForegroundWindow();
1423 const InputWindow* newTouchedWindow = findTouchedWindowAtLocked(x, y);
1424 if (oldTouchedWindow != newTouchedWindow && newTouchedWindow) {
1425#if DEBUG_FOCUS
1426 LOGD("Touch is slipping out of window %s into window %s.",
1427 oldTouchedWindow->name.string(), newTouchedWindow->name.string());
1428#endif
1429 // Make a slippery exit from the old window.
1430 mTempTouchState.addOrUpdateWindow(oldTouchedWindow,
1431 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT, BitSet32(0));
1432
1433 // Make a slippery entrance into the new window.
1434 if (newTouchedWindow->supportsSplitTouch()) {
1435 isSplit = true;
1436 }
1437
1438 int32_t targetFlags = InputTarget::FLAG_FOREGROUND
1439 | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER;
1440 if (isSplit) {
1441 targetFlags |= InputTarget::FLAG_SPLIT;
1442 }
1443 if (isWindowObscuredAtPointLocked(newTouchedWindow, x, y)) {
1444 targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1445 }
1446
1447 BitSet32 pointerIds;
1448 if (isSplit) {
1449 pointerIds.markBit(entry->pointerProperties[0].id);
1450 }
1451 mTempTouchState.addOrUpdateWindow(newTouchedWindow, targetFlags, pointerIds);
1452
1453 // Split the batch here so we send exactly one sample.
1454 *outSplitBatchAfterSample = &entry->firstSample;
1455 }
1456 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001457 }
Jeff Brownb88102f2010-09-08 11:49:43 -07001458
Jeff Browna032cc02011-03-07 16:56:21 -08001459 if (newHoverWindow != mLastHoverWindow) {
1460 // Split the batch here so we send exactly one sample as part of ENTER or EXIT.
1461 *outSplitBatchAfterSample = &entry->firstSample;
1462
1463 // Let the previous window know that the hover sequence is over.
1464 if (mLastHoverWindow) {
1465#if DEBUG_HOVER
1466 LOGD("Sending hover exit event to window %s.", mLastHoverWindow->name.string());
1467#endif
1468 mTempTouchState.addOrUpdateWindow(mLastHoverWindow,
1469 InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT, BitSet32(0));
1470 }
1471
1472 // Let the new window know that the hover sequence is starting.
1473 if (newHoverWindow) {
1474#if DEBUG_HOVER
1475 LOGD("Sending hover enter event to window %s.", newHoverWindow->name.string());
1476#endif
1477 mTempTouchState.addOrUpdateWindow(newHoverWindow,
1478 InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER, BitSet32(0));
1479 }
1480 }
1481
Jeff Brown01ce2e92010-09-26 22:20:12 -07001482 // Check permission to inject into all touched foreground windows and ensure there
1483 // is at least one touched foreground window.
1484 {
1485 bool haveForegroundWindow = false;
1486 for (size_t i = 0; i < mTempTouchState.windows.size(); i++) {
1487 const TouchedWindow& touchedWindow = mTempTouchState.windows[i];
1488 if (touchedWindow.targetFlags & InputTarget::FLAG_FOREGROUND) {
1489 haveForegroundWindow = true;
1490 if (! checkInjectionPermission(touchedWindow.window, entry->injectionState)) {
1491 injectionResult = INPUT_EVENT_INJECTION_PERMISSION_DENIED;
1492 injectionPermission = INJECTION_PERMISSION_DENIED;
1493 goto Failed;
1494 }
1495 }
1496 }
1497 if (! haveForegroundWindow) {
Jeff Browna2cc28d2011-03-25 11:58:46 -07001498#if DEBUG_FOCUS
Jeff Brown01ce2e92010-09-26 22:20:12 -07001499 LOGD("Dropping event because there is no touched foreground window to receive it.");
Jeff Brownb88102f2010-09-08 11:49:43 -07001500#endif
1501 injectionResult = INPUT_EVENT_INJECTION_FAILED;
Jeff Brownb88102f2010-09-08 11:49:43 -07001502 goto Failed;
1503 }
1504
Jeff Brown01ce2e92010-09-26 22:20:12 -07001505 // Permission granted to injection into all touched foreground windows.
1506 injectionPermission = INJECTION_PERMISSION_GRANTED;
1507 }
Jeff Brown519e0242010-09-15 15:18:56 -07001508
Kenny Root7a9db182011-06-02 15:16:05 -07001509 // Check whether windows listening for outside touches are owned by the same UID. If it is
1510 // set the policy flag that we will not reveal coordinate information to this window.
1511 if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1512 const InputWindow* foregroundWindow = mTempTouchState.getFirstForegroundWindow();
1513 const int32_t foregroundWindowUid = foregroundWindow->ownerUid;
1514 for (size_t i = 0; i < mTempTouchState.windows.size(); i++) {
1515 const TouchedWindow& touchedWindow = mTempTouchState.windows[i];
1516 if (touchedWindow.targetFlags & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
1517 const InputWindow* inputWindow = touchedWindow.window;
1518 if (inputWindow->ownerUid != foregroundWindowUid) {
1519 mTempTouchState.addOrUpdateWindow(inputWindow,
1520 InputTarget::FLAG_ZERO_COORDS, BitSet32(0));
1521 }
1522 }
1523 }
1524 }
1525
Jeff Brown01ce2e92010-09-26 22:20:12 -07001526 // Ensure all touched foreground windows are ready for new input.
1527 for (size_t i = 0; i < mTempTouchState.windows.size(); i++) {
1528 const TouchedWindow& touchedWindow = mTempTouchState.windows[i];
1529 if (touchedWindow.targetFlags & InputTarget::FLAG_FOREGROUND) {
1530 // If the touched window is paused then keep waiting.
1531 if (touchedWindow.window->paused) {
Jeff Browna2cc28d2011-03-25 11:58:46 -07001532#if DEBUG_FOCUS
Jeff Brown01ce2e92010-09-26 22:20:12 -07001533 LOGD("Waiting because touched window is paused.");
Jeff Brown519e0242010-09-15 15:18:56 -07001534#endif
Jeff Brown01ce2e92010-09-26 22:20:12 -07001535 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1536 NULL, touchedWindow.window, nextWakeupTime);
1537 goto Unresponsive;
1538 }
1539
1540 // If the touched window is still working on previous events then keep waiting.
1541 if (! isWindowFinishedWithPreviousInputLocked(touchedWindow.window)) {
1542#if DEBUG_FOCUS
1543 LOGD("Waiting because touched window still processing previous input.");
1544#endif
1545 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1546 NULL, touchedWindow.window, nextWakeupTime);
1547 goto Unresponsive;
1548 }
1549 }
1550 }
1551
1552 // If this is the first pointer going down and the touched window has a wallpaper
1553 // then also add the touched wallpaper windows so they are locked in for the duration
1554 // of the touch gesture.
Jeff Brown33bbfd22011-02-24 20:55:35 -08001555 // We do not collect wallpapers during HOVER_MOVE or SCROLL because the wallpaper
1556 // engine only supports touch events. We would need to add a mechanism similar
1557 // to View.onGenericMotionEvent to enable wallpapers to handle these events.
1558 if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001559 const InputWindow* foregroundWindow = mTempTouchState.getFirstForegroundWindow();
1560 if (foregroundWindow->hasWallpaper) {
1561 for (size_t i = 0; i < mWindows.size(); i++) {
1562 const InputWindow* window = & mWindows[i];
1563 if (window->layoutParamsType == InputWindow::TYPE_WALLPAPER) {
Jeff Brown19dfc832010-10-05 12:26:23 -07001564 mTempTouchState.addOrUpdateWindow(window,
Jeff Browna032cc02011-03-07 16:56:21 -08001565 InputTarget::FLAG_WINDOW_IS_OBSCURED
1566 | InputTarget::FLAG_DISPATCH_AS_IS,
1567 BitSet32(0));
Jeff Brown01ce2e92010-09-26 22:20:12 -07001568 }
1569 }
1570 }
1571 }
1572
Jeff Brownb88102f2010-09-08 11:49:43 -07001573 // Success! Output targets.
1574 injectionResult = INPUT_EVENT_INJECTION_SUCCEEDED;
Jeff Brownb88102f2010-09-08 11:49:43 -07001575
Jeff Brown01ce2e92010-09-26 22:20:12 -07001576 for (size_t i = 0; i < mTempTouchState.windows.size(); i++) {
1577 const TouchedWindow& touchedWindow = mTempTouchState.windows.itemAt(i);
1578 addWindowTargetLocked(touchedWindow.window, touchedWindow.targetFlags,
1579 touchedWindow.pointerIds);
Jeff Brownb88102f2010-09-08 11:49:43 -07001580 }
1581
Jeff Browna032cc02011-03-07 16:56:21 -08001582 // Drop the outside or hover touch windows since we will not care about them
1583 // in the next iteration.
1584 mTempTouchState.filterNonAsIsTouchWindows();
Jeff Brown01ce2e92010-09-26 22:20:12 -07001585
Jeff Brownb88102f2010-09-08 11:49:43 -07001586Failed:
1587 // Check injection permission once and for all.
1588 if (injectionPermission == INJECTION_PERMISSION_UNKNOWN) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001589 if (checkInjectionPermission(NULL, entry->injectionState)) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001590 injectionPermission = INJECTION_PERMISSION_GRANTED;
1591 } else {
1592 injectionPermission = INJECTION_PERMISSION_DENIED;
1593 }
1594 }
1595
1596 // Update final pieces of touch state if the injector had permission.
1597 if (injectionPermission == INJECTION_PERMISSION_GRANTED) {
Jeff Brown95712852011-01-04 19:41:59 -08001598 if (!wrongDevice) {
Jeff Brown81346812011-06-28 20:08:48 -07001599 if (switchedDevice) {
1600#if DEBUG_FOCUS
1601 LOGD("Conflicting pointer actions: Switched to a different device.");
1602#endif
1603 *outConflictingPointerActions = true;
1604 }
1605
1606 if (isHoverAction) {
1607 // Started hovering, therefore no longer down.
1608 if (mTouchState.down) {
1609#if DEBUG_FOCUS
1610 LOGD("Conflicting pointer actions: Hover received while pointer was down.");
1611#endif
1612 *outConflictingPointerActions = true;
1613 }
1614 mTouchState.reset();
1615 if (maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER
1616 || maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE) {
1617 mTouchState.deviceId = entry->deviceId;
1618 mTouchState.source = entry->source;
1619 }
1620 } else if (maskedAction == AMOTION_EVENT_ACTION_UP
1621 || maskedAction == AMOTION_EVENT_ACTION_CANCEL) {
Jeff Brown95712852011-01-04 19:41:59 -08001622 // All pointers up or canceled.
Jeff Brown33bbfd22011-02-24 20:55:35 -08001623 mTouchState.reset();
Jeff Brown95712852011-01-04 19:41:59 -08001624 } else if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1625 // First pointer went down.
1626 if (mTouchState.down) {
Jeff Brownb6997262010-10-08 22:31:17 -07001627#if DEBUG_FOCUS
Jeff Brown81346812011-06-28 20:08:48 -07001628 LOGD("Conflicting pointer actions: Down received while already down.");
Jeff Brownb6997262010-10-08 22:31:17 -07001629#endif
Jeff Brown81346812011-06-28 20:08:48 -07001630 *outConflictingPointerActions = true;
Jeff Brown95712852011-01-04 19:41:59 -08001631 }
Jeff Brown33bbfd22011-02-24 20:55:35 -08001632 mTouchState.copyFrom(mTempTouchState);
Jeff Brown95712852011-01-04 19:41:59 -08001633 } else if (maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
1634 // One pointer went up.
1635 if (isSplit) {
1636 int32_t pointerIndex = getMotionEventActionPointerIndex(action);
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07001637 uint32_t pointerId = entry->pointerProperties[pointerIndex].id;
Jeff Brownb88102f2010-09-08 11:49:43 -07001638
Jeff Brown95712852011-01-04 19:41:59 -08001639 for (size_t i = 0; i < mTempTouchState.windows.size(); ) {
1640 TouchedWindow& touchedWindow = mTempTouchState.windows.editItemAt(i);
1641 if (touchedWindow.targetFlags & InputTarget::FLAG_SPLIT) {
1642 touchedWindow.pointerIds.clearBit(pointerId);
1643 if (touchedWindow.pointerIds.isEmpty()) {
1644 mTempTouchState.windows.removeAt(i);
1645 continue;
1646 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001647 }
Jeff Brown95712852011-01-04 19:41:59 -08001648 i += 1;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001649 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001650 }
Jeff Brown33bbfd22011-02-24 20:55:35 -08001651 mTouchState.copyFrom(mTempTouchState);
1652 } else if (maskedAction == AMOTION_EVENT_ACTION_SCROLL) {
1653 // Discard temporary touch state since it was only valid for this action.
1654 } else {
1655 // Save changes to touch state as-is for all other actions.
1656 mTouchState.copyFrom(mTempTouchState);
Jeff Brownb88102f2010-09-08 11:49:43 -07001657 }
Jeff Browna032cc02011-03-07 16:56:21 -08001658
1659 // Update hover state.
1660 mLastHoverWindow = newHoverWindow;
Jeff Brown95712852011-01-04 19:41:59 -08001661 }
Jeff Brownb88102f2010-09-08 11:49:43 -07001662 } else {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001663#if DEBUG_FOCUS
1664 LOGD("Not updating touch focus because injection was denied.");
1665#endif
Jeff Brownb88102f2010-09-08 11:49:43 -07001666 }
1667
1668Unresponsive:
Jeff Brown120a4592010-10-27 18:43:51 -07001669 // Reset temporary touch state to ensure we release unnecessary references to input channels.
1670 mTempTouchState.reset();
1671
Jeff Brown519e0242010-09-15 15:18:56 -07001672 nsecs_t timeSpentWaitingForApplication = getTimeSpentWaitingForApplicationLocked(currentTime);
1673 updateDispatchStatisticsLocked(currentTime, entry,
1674 injectionResult, timeSpentWaitingForApplication);
Jeff Brownb88102f2010-09-08 11:49:43 -07001675#if DEBUG_FOCUS
Jeff Brown01ce2e92010-09-26 22:20:12 -07001676 LOGD("findTouchedWindow finished: injectionResult=%d, injectionPermission=%d, "
1677 "timeSpentWaitingForApplication=%0.1fms",
Jeff Brown519e0242010-09-15 15:18:56 -07001678 injectionResult, injectionPermission, timeSpentWaitingForApplication / 1000000.0);
Jeff Brownb88102f2010-09-08 11:49:43 -07001679#endif
1680 return injectionResult;
1681}
1682
Jeff Brown01ce2e92010-09-26 22:20:12 -07001683void InputDispatcher::addWindowTargetLocked(const InputWindow* window, int32_t targetFlags,
1684 BitSet32 pointerIds) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001685 mCurrentInputTargets.push();
1686
1687 InputTarget& target = mCurrentInputTargets.editTop();
1688 target.inputChannel = window->inputChannel;
1689 target.flags = targetFlags;
Jeff Brownb88102f2010-09-08 11:49:43 -07001690 target.xOffset = - window->frameLeft;
1691 target.yOffset = - window->frameTop;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001692 target.scaleFactor = window->scaleFactor;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001693 target.pointerIds = pointerIds;
Jeff Brownb88102f2010-09-08 11:49:43 -07001694}
1695
1696void InputDispatcher::addMonitoringTargetsLocked() {
1697 for (size_t i = 0; i < mMonitoringChannels.size(); i++) {
1698 mCurrentInputTargets.push();
1699
1700 InputTarget& target = mCurrentInputTargets.editTop();
1701 target.inputChannel = mMonitoringChannels[i];
Jeff Brownb6110c22011-04-01 16:15:13 -07001702 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
Jeff Brownb88102f2010-09-08 11:49:43 -07001703 target.xOffset = 0;
1704 target.yOffset = 0;
Jeff Brownb6110c22011-04-01 16:15:13 -07001705 target.pointerIds.clear();
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001706 target.scaleFactor = 1.0f;
Jeff Brownb88102f2010-09-08 11:49:43 -07001707 }
1708}
1709
1710bool InputDispatcher::checkInjectionPermission(const InputWindow* window,
Jeff Brown01ce2e92010-09-26 22:20:12 -07001711 const InjectionState* injectionState) {
1712 if (injectionState
Jeff Brownb6997262010-10-08 22:31:17 -07001713 && (window == NULL || window->ownerUid != injectionState->injectorUid)
1714 && !hasInjectionPermission(injectionState->injectorPid, injectionState->injectorUid)) {
1715 if (window) {
1716 LOGW("Permission denied: injecting event from pid %d uid %d to window "
1717 "with input channel %s owned by uid %d",
1718 injectionState->injectorPid, injectionState->injectorUid,
1719 window->inputChannel->getName().string(),
1720 window->ownerUid);
1721 } else {
1722 LOGW("Permission denied: injecting event from pid %d uid %d",
1723 injectionState->injectorPid, injectionState->injectorUid);
Jeff Brownb88102f2010-09-08 11:49:43 -07001724 }
Jeff Brownb6997262010-10-08 22:31:17 -07001725 return false;
Jeff Brownb88102f2010-09-08 11:49:43 -07001726 }
1727 return true;
1728}
1729
Jeff Brown19dfc832010-10-05 12:26:23 -07001730bool InputDispatcher::isWindowObscuredAtPointLocked(
1731 const InputWindow* window, int32_t x, int32_t y) const {
Jeff Brownb88102f2010-09-08 11:49:43 -07001732 size_t numWindows = mWindows.size();
1733 for (size_t i = 0; i < numWindows; i++) {
1734 const InputWindow* other = & mWindows.itemAt(i);
1735 if (other == window) {
1736 break;
1737 }
Jeff Brown19dfc832010-10-05 12:26:23 -07001738 if (other->visible && ! other->isTrustedOverlay() && other->frameContainsPoint(x, y)) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001739 return true;
1740 }
1741 }
1742 return false;
1743}
1744
Jeff Brown519e0242010-09-15 15:18:56 -07001745bool InputDispatcher::isWindowFinishedWithPreviousInputLocked(const InputWindow* window) {
1746 ssize_t connectionIndex = getConnectionIndexLocked(window->inputChannel);
1747 if (connectionIndex >= 0) {
1748 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
1749 return connection->outboundQueue.isEmpty();
1750 } else {
1751 return true;
1752 }
1753}
1754
1755String8 InputDispatcher::getApplicationWindowLabelLocked(const InputApplication* application,
1756 const InputWindow* window) {
1757 if (application) {
1758 if (window) {
1759 String8 label(application->name);
1760 label.append(" - ");
1761 label.append(window->name);
1762 return label;
1763 } else {
1764 return application->name;
1765 }
1766 } else if (window) {
1767 return window->name;
1768 } else {
1769 return String8("<unknown application or window>");
1770 }
1771}
1772
Jeff Browne2fe69e2010-10-18 13:21:23 -07001773void InputDispatcher::pokeUserActivityLocked(const EventEntry* eventEntry) {
Jeff Brown56194eb2011-03-02 19:23:13 -08001774 int32_t eventType = POWER_MANAGER_OTHER_EVENT;
Jeff Brown4d396052010-10-29 21:50:21 -07001775 switch (eventEntry->type) {
1776 case EventEntry::TYPE_MOTION: {
Jeff Browne2fe69e2010-10-18 13:21:23 -07001777 const MotionEntry* motionEntry = static_cast<const MotionEntry*>(eventEntry);
Jeff Brown4d396052010-10-29 21:50:21 -07001778 if (motionEntry->action == AMOTION_EVENT_ACTION_CANCEL) {
1779 return;
1780 }
1781
Jeff Brown56194eb2011-03-02 19:23:13 -08001782 if (MotionEvent::isTouchEvent(motionEntry->source, motionEntry->action)) {
Joe Onorato1a542c72010-11-08 09:48:20 -08001783 eventType = POWER_MANAGER_TOUCH_EVENT;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001784 }
Jeff Brown4d396052010-10-29 21:50:21 -07001785 break;
1786 }
1787 case EventEntry::TYPE_KEY: {
1788 const KeyEntry* keyEntry = static_cast<const KeyEntry*>(eventEntry);
1789 if (keyEntry->flags & AKEY_EVENT_FLAG_CANCELED) {
1790 return;
1791 }
Jeff Brown56194eb2011-03-02 19:23:13 -08001792 eventType = POWER_MANAGER_BUTTON_EVENT;
Jeff Brown4d396052010-10-29 21:50:21 -07001793 break;
1794 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001795 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001796
Jeff Brownb88102f2010-09-08 11:49:43 -07001797 CommandEntry* commandEntry = postCommandLocked(
1798 & InputDispatcher::doPokeUserActivityLockedInterruptible);
Jeff Browne2fe69e2010-10-18 13:21:23 -07001799 commandEntry->eventTime = eventEntry->eventTime;
Jeff Brownb88102f2010-09-08 11:49:43 -07001800 commandEntry->userActivityEventType = eventType;
1801}
1802
Jeff Brown7fbdc842010-06-17 20:52:56 -07001803void InputDispatcher::prepareDispatchCycleLocked(nsecs_t currentTime,
1804 const sp<Connection>& connection, EventEntry* eventEntry, const InputTarget* inputTarget,
Jeff Brown46b9ac02010-04-22 18:58:52 -07001805 bool resumeWithAppendedMotionSample) {
1806#if DEBUG_DISPATCH_CYCLE
Jeff Brown519e0242010-09-15 15:18:56 -07001807 LOGD("channel '%s' ~ prepareDispatchCycle - flags=%d, "
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001808 "xOffset=%f, yOffset=%f, scaleFactor=%f"
Jeff Brown83c09682010-12-23 17:50:18 -08001809 "pointerIds=0x%x, "
Jeff Brown01ce2e92010-09-26 22:20:12 -07001810 "resumeWithAppendedMotionSample=%s",
Jeff Brown519e0242010-09-15 15:18:56 -07001811 connection->getInputChannelName(), inputTarget->flags,
Jeff Brown46b9ac02010-04-22 18:58:52 -07001812 inputTarget->xOffset, inputTarget->yOffset,
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001813 inputTarget->scaleFactor, inputTarget->pointerIds.value,
Jeff Brownb88102f2010-09-08 11:49:43 -07001814 toString(resumeWithAppendedMotionSample));
Jeff Brown46b9ac02010-04-22 18:58:52 -07001815#endif
1816
Jeff Brown01ce2e92010-09-26 22:20:12 -07001817 // Make sure we are never called for streaming when splitting across multiple windows.
1818 bool isSplit = inputTarget->flags & InputTarget::FLAG_SPLIT;
Jeff Brownb6110c22011-04-01 16:15:13 -07001819 LOG_ASSERT(! (resumeWithAppendedMotionSample && isSplit));
Jeff Brown01ce2e92010-09-26 22:20:12 -07001820
Jeff Brown46b9ac02010-04-22 18:58:52 -07001821 // Skip this event if the connection status is not normal.
Jeff Brown519e0242010-09-15 15:18:56 -07001822 // We don't want to enqueue additional outbound events if the connection is broken.
Jeff Brown46b9ac02010-04-22 18:58:52 -07001823 if (connection->status != Connection::STATUS_NORMAL) {
Jeff Brownb6997262010-10-08 22:31:17 -07001824#if DEBUG_DISPATCH_CYCLE
1825 LOGD("channel '%s' ~ Dropping event because the channel status is %s",
Jeff Brownb88102f2010-09-08 11:49:43 -07001826 connection->getInputChannelName(), connection->getStatusLabel());
Jeff Brownb6997262010-10-08 22:31:17 -07001827#endif
Jeff Brown46b9ac02010-04-22 18:58:52 -07001828 return;
1829 }
1830
Jeff Brown01ce2e92010-09-26 22:20:12 -07001831 // Split a motion event if needed.
1832 if (isSplit) {
Jeff Brownb6110c22011-04-01 16:15:13 -07001833 LOG_ASSERT(eventEntry->type == EventEntry::TYPE_MOTION);
Jeff Brown01ce2e92010-09-26 22:20:12 -07001834
1835 MotionEntry* originalMotionEntry = static_cast<MotionEntry*>(eventEntry);
1836 if (inputTarget->pointerIds.count() != originalMotionEntry->pointerCount) {
1837 MotionEntry* splitMotionEntry = splitMotionEvent(
1838 originalMotionEntry, inputTarget->pointerIds);
Jeff Brown58a2da82011-01-25 16:02:22 -08001839 if (!splitMotionEntry) {
1840 return; // split event was dropped
1841 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001842#if DEBUG_FOCUS
1843 LOGD("channel '%s' ~ Split motion event.",
1844 connection->getInputChannelName());
1845 logOutboundMotionDetailsLocked(" ", splitMotionEntry);
1846#endif
1847 eventEntry = splitMotionEntry;
1848 }
1849 }
1850
Jeff Brown46b9ac02010-04-22 18:58:52 -07001851 // Resume the dispatch cycle with a freshly appended motion sample.
1852 // First we check that the last dispatch entry in the outbound queue is for the same
1853 // motion event to which we appended the motion sample. If we find such a dispatch
1854 // entry, and if it is currently in progress then we try to stream the new sample.
1855 bool wasEmpty = connection->outboundQueue.isEmpty();
1856
1857 if (! wasEmpty && resumeWithAppendedMotionSample) {
1858 DispatchEntry* motionEventDispatchEntry =
1859 connection->findQueuedDispatchEntryForEvent(eventEntry);
1860 if (motionEventDispatchEntry) {
1861 // If the dispatch entry is not in progress, then we must be busy dispatching an
1862 // earlier event. Not a problem, the motion event is on the outbound queue and will
1863 // be dispatched later.
1864 if (! motionEventDispatchEntry->inProgress) {
1865#if DEBUG_BATCHING
1866 LOGD("channel '%s' ~ Not streaming because the motion event has "
1867 "not yet been dispatched. "
1868 "(Waiting for earlier events to be consumed.)",
1869 connection->getInputChannelName());
1870#endif
1871 return;
1872 }
1873
1874 // If the dispatch entry is in progress but it already has a tail of pending
1875 // motion samples, then it must mean that the shared memory buffer filled up.
1876 // Not a problem, when this dispatch cycle is finished, we will eventually start
1877 // a new dispatch cycle to process the tail and that tail includes the newly
1878 // appended motion sample.
1879 if (motionEventDispatchEntry->tailMotionSample) {
1880#if DEBUG_BATCHING
1881 LOGD("channel '%s' ~ Not streaming because no new samples can "
1882 "be appended to the motion event in this dispatch cycle. "
1883 "(Waiting for next dispatch cycle to start.)",
1884 connection->getInputChannelName());
1885#endif
1886 return;
1887 }
1888
Jeff Brown81346812011-06-28 20:08:48 -07001889 // If the motion event was modified in flight, then we cannot stream the sample.
1890 if ((motionEventDispatchEntry->targetFlags & InputTarget::FLAG_DISPATCH_MASK)
1891 != InputTarget::FLAG_DISPATCH_AS_IS) {
1892#if DEBUG_BATCHING
1893 LOGD("channel '%s' ~ Not streaming because the motion event was not "
1894 "being dispatched as-is. "
1895 "(Waiting for next dispatch cycle to start.)",
1896 connection->getInputChannelName());
1897#endif
1898 return;
1899 }
1900
Jeff Brown46b9ac02010-04-22 18:58:52 -07001901 // The dispatch entry is in progress and is still potentially open for streaming.
1902 // Try to stream the new motion sample. This might fail if the consumer has already
1903 // consumed the motion event (or if the channel is broken).
Jeff Brown01ce2e92010-09-26 22:20:12 -07001904 MotionEntry* motionEntry = static_cast<MotionEntry*>(eventEntry);
1905 MotionSample* appendedMotionSample = motionEntry->lastSample;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001906 status_t status;
1907 if (motionEventDispatchEntry->scaleFactor == 1.0f) {
1908 status = connection->inputPublisher.appendMotionSample(
1909 appendedMotionSample->eventTime, appendedMotionSample->pointerCoords);
1910 } else {
1911 PointerCoords scaledCoords[MAX_POINTERS];
1912 for (size_t i = 0; i < motionEntry->pointerCount; i++) {
1913 scaledCoords[i] = appendedMotionSample->pointerCoords[i];
1914 scaledCoords[i].scale(motionEventDispatchEntry->scaleFactor);
1915 }
1916 status = connection->inputPublisher.appendMotionSample(
1917 appendedMotionSample->eventTime, scaledCoords);
1918 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07001919 if (status == OK) {
1920#if DEBUG_BATCHING
1921 LOGD("channel '%s' ~ Successfully streamed new motion sample.",
1922 connection->getInputChannelName());
1923#endif
1924 return;
1925 }
1926
1927#if DEBUG_BATCHING
1928 if (status == NO_MEMORY) {
1929 LOGD("channel '%s' ~ Could not append motion sample to currently "
1930 "dispatched move event because the shared memory buffer is full. "
1931 "(Waiting for next dispatch cycle to start.)",
1932 connection->getInputChannelName());
1933 } else if (status == status_t(FAILED_TRANSACTION)) {
1934 LOGD("channel '%s' ~ Could not append motion sample to currently "
Jeff Brown349703e2010-06-22 01:27:15 -07001935 "dispatched move event because the event has already been consumed. "
Jeff Brown46b9ac02010-04-22 18:58:52 -07001936 "(Waiting for next dispatch cycle to start.)",
1937 connection->getInputChannelName());
1938 } else {
1939 LOGD("channel '%s' ~ Could not append motion sample to currently "
1940 "dispatched move event due to an error, status=%d. "
1941 "(Waiting for next dispatch cycle to start.)",
1942 connection->getInputChannelName(), status);
1943 }
1944#endif
1945 // Failed to stream. Start a new tail of pending motion samples to dispatch
1946 // in the next cycle.
1947 motionEventDispatchEntry->tailMotionSample = appendedMotionSample;
1948 return;
1949 }
1950 }
1951
Jeff Browna032cc02011-03-07 16:56:21 -08001952 // Enqueue dispatch entries for the requested modes.
1953 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1954 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT);
1955 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1956 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_OUTSIDE);
1957 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1958 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER);
1959 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1960 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_IS);
Jeff Brown98db5fa2011-06-08 15:37:10 -07001961 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1962 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT);
1963 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1964 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER);
Jeff Browna032cc02011-03-07 16:56:21 -08001965
1966 // If the outbound queue was previously empty, start the dispatch cycle going.
Jeff Brownb6110c22011-04-01 16:15:13 -07001967 if (wasEmpty && !connection->outboundQueue.isEmpty()) {
Jeff Browna032cc02011-03-07 16:56:21 -08001968 activateConnectionLocked(connection.get());
1969 startDispatchCycleLocked(currentTime, connection);
1970 }
1971}
1972
1973void InputDispatcher::enqueueDispatchEntryLocked(
1974 const sp<Connection>& connection, EventEntry* eventEntry, const InputTarget* inputTarget,
1975 bool resumeWithAppendedMotionSample, int32_t dispatchMode) {
1976 int32_t inputTargetFlags = inputTarget->flags;
1977 if (!(inputTargetFlags & dispatchMode)) {
1978 return;
1979 }
1980 inputTargetFlags = (inputTargetFlags & ~InputTarget::FLAG_DISPATCH_MASK) | dispatchMode;
1981
Jeff Brown46b9ac02010-04-22 18:58:52 -07001982 // This is a new event.
1983 // Enqueue a new dispatch entry onto the outbound queue for this connection.
Jeff Brownb88102f2010-09-08 11:49:43 -07001984 DispatchEntry* dispatchEntry = mAllocator.obtainDispatchEntry(eventEntry, // increments ref
Dianne Hackbornaa9d84c2011-05-09 19:00:59 -07001985 inputTargetFlags, inputTarget->xOffset, inputTarget->yOffset,
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001986 inputTarget->scaleFactor);
Jeff Brown519e0242010-09-15 15:18:56 -07001987 if (dispatchEntry->hasForegroundTarget()) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001988 incrementPendingForegroundDispatchesLocked(eventEntry);
Jeff Brown6ec402b2010-07-28 15:48:59 -07001989 }
1990
Jeff Brown46b9ac02010-04-22 18:58:52 -07001991 // Handle the case where we could not stream a new motion sample because the consumer has
1992 // already consumed the motion event (otherwise the corresponding dispatch entry would
1993 // still be in the outbound queue for this connection). We set the head motion sample
1994 // to the list starting with the newly appended motion sample.
1995 if (resumeWithAppendedMotionSample) {
1996#if DEBUG_BATCHING
1997 LOGD("channel '%s' ~ Preparing a new dispatch cycle for additional motion samples "
1998 "that cannot be streamed because the motion event has already been consumed.",
1999 connection->getInputChannelName());
2000#endif
2001 MotionSample* appendedMotionSample = static_cast<MotionEntry*>(eventEntry)->lastSample;
2002 dispatchEntry->headMotionSample = appendedMotionSample;
2003 }
2004
Jeff Brown81346812011-06-28 20:08:48 -07002005 // Apply target flags and update the connection's input state.
2006 switch (eventEntry->type) {
2007 case EventEntry::TYPE_KEY: {
2008 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry);
2009 dispatchEntry->resolvedAction = keyEntry->action;
2010 dispatchEntry->resolvedFlags = keyEntry->flags;
2011
2012 if (!connection->inputState.trackKey(keyEntry,
2013 dispatchEntry->resolvedAction, dispatchEntry->resolvedFlags)) {
2014#if DEBUG_DISPATCH_CYCLE
2015 LOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent key event",
2016 connection->getInputChannelName());
2017#endif
2018 return; // skip the inconsistent event
2019 }
2020 break;
2021 }
2022
2023 case EventEntry::TYPE_MOTION: {
2024 MotionEntry* motionEntry = static_cast<MotionEntry*>(eventEntry);
2025 if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
2026 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_OUTSIDE;
2027 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT) {
2028 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_EXIT;
2029 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER) {
2030 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER;
2031 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT) {
2032 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_CANCEL;
2033 } else if (dispatchMode & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER) {
2034 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_DOWN;
2035 } else {
2036 dispatchEntry->resolvedAction = motionEntry->action;
2037 }
2038 if (dispatchEntry->resolvedAction == AMOTION_EVENT_ACTION_HOVER_MOVE
2039 && !connection->inputState.isHovering(
2040 motionEntry->deviceId, motionEntry->source)) {
2041#if DEBUG_DISPATCH_CYCLE
2042 LOGD("channel '%s' ~ enqueueDispatchEntryLocked: filling in missing hover enter event",
2043 connection->getInputChannelName());
2044#endif
2045 dispatchEntry->resolvedAction = AMOTION_EVENT_ACTION_HOVER_ENTER;
2046 }
2047
2048 dispatchEntry->resolvedFlags = motionEntry->flags;
2049 if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_OBSCURED) {
2050 dispatchEntry->resolvedFlags |= AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED;
2051 }
2052
2053 if (!connection->inputState.trackMotion(motionEntry,
2054 dispatchEntry->resolvedAction, dispatchEntry->resolvedFlags)) {
2055#if DEBUG_DISPATCH_CYCLE
2056 LOGD("channel '%s' ~ enqueueDispatchEntryLocked: skipping inconsistent motion event",
2057 connection->getInputChannelName());
2058#endif
2059 return; // skip the inconsistent event
2060 }
2061 break;
2062 }
2063 }
2064
Jeff Brown46b9ac02010-04-22 18:58:52 -07002065 // Enqueue the dispatch entry.
2066 connection->outboundQueue.enqueueAtTail(dispatchEntry);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002067}
2068
Jeff Brown7fbdc842010-06-17 20:52:56 -07002069void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime,
Jeff Brown519e0242010-09-15 15:18:56 -07002070 const sp<Connection>& connection) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002071#if DEBUG_DISPATCH_CYCLE
2072 LOGD("channel '%s' ~ startDispatchCycle",
2073 connection->getInputChannelName());
2074#endif
2075
Jeff Brownb6110c22011-04-01 16:15:13 -07002076 LOG_ASSERT(connection->status == Connection::STATUS_NORMAL);
2077 LOG_ASSERT(! connection->outboundQueue.isEmpty());
Jeff Brown46b9ac02010-04-22 18:58:52 -07002078
Jeff Brownb88102f2010-09-08 11:49:43 -07002079 DispatchEntry* dispatchEntry = connection->outboundQueue.headSentinel.next;
Jeff Brownb6110c22011-04-01 16:15:13 -07002080 LOG_ASSERT(! dispatchEntry->inProgress);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002081
Jeff Brownb88102f2010-09-08 11:49:43 -07002082 // Mark the dispatch entry as in progress.
2083 dispatchEntry->inProgress = true;
2084
Jeff Brown46b9ac02010-04-22 18:58:52 -07002085 // Publish the event.
2086 status_t status;
Jeff Browna032cc02011-03-07 16:56:21 -08002087 EventEntry* eventEntry = dispatchEntry->eventEntry;
Jeff Brown01ce2e92010-09-26 22:20:12 -07002088 switch (eventEntry->type) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002089 case EventEntry::TYPE_KEY: {
Jeff Brown01ce2e92010-09-26 22:20:12 -07002090 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002091
Jeff Brown46b9ac02010-04-22 18:58:52 -07002092 // Publish the key event.
Jeff Brown81346812011-06-28 20:08:48 -07002093 status = connection->inputPublisher.publishKeyEvent(
2094 keyEntry->deviceId, keyEntry->source,
2095 dispatchEntry->resolvedAction, dispatchEntry->resolvedFlags,
2096 keyEntry->keyCode, keyEntry->scanCode,
Jeff Brown46b9ac02010-04-22 18:58:52 -07002097 keyEntry->metaState, keyEntry->repeatCount, keyEntry->downTime,
2098 keyEntry->eventTime);
2099
2100 if (status) {
2101 LOGE("channel '%s' ~ Could not publish key event, "
2102 "status=%d", connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002103 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002104 return;
2105 }
2106 break;
2107 }
2108
2109 case EventEntry::TYPE_MOTION: {
Jeff Brown01ce2e92010-09-26 22:20:12 -07002110 MotionEntry* motionEntry = static_cast<MotionEntry*>(eventEntry);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002111
Jeff Brown46b9ac02010-04-22 18:58:52 -07002112 // If headMotionSample is non-NULL, then it points to the first new sample that we
2113 // were unable to dispatch during the previous cycle so we resume dispatching from
2114 // that point in the list of motion samples.
2115 // Otherwise, we just start from the first sample of the motion event.
2116 MotionSample* firstMotionSample = dispatchEntry->headMotionSample;
2117 if (! firstMotionSample) {
2118 firstMotionSample = & motionEntry->firstSample;
2119 }
2120
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002121 PointerCoords scaledCoords[MAX_POINTERS];
2122 const PointerCoords* usingCoords = firstMotionSample->pointerCoords;
2123
Jeff Brownd3616592010-07-16 17:21:06 -07002124 // Set the X and Y offset depending on the input source.
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002125 float xOffset, yOffset, scaleFactor;
Kenny Root7a9db182011-06-02 15:16:05 -07002126 if (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER
2127 && !(dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS)) {
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002128 scaleFactor = dispatchEntry->scaleFactor;
2129 xOffset = dispatchEntry->xOffset * scaleFactor;
2130 yOffset = dispatchEntry->yOffset * scaleFactor;
2131 if (scaleFactor != 1.0f) {
2132 for (size_t i = 0; i < motionEntry->pointerCount; i++) {
2133 scaledCoords[i] = firstMotionSample->pointerCoords[i];
2134 scaledCoords[i].scale(scaleFactor);
2135 }
2136 usingCoords = scaledCoords;
2137 }
Jeff Brownd3616592010-07-16 17:21:06 -07002138 } else {
2139 xOffset = 0.0f;
2140 yOffset = 0.0f;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002141 scaleFactor = 1.0f;
Kenny Root7a9db182011-06-02 15:16:05 -07002142
2143 // We don't want the dispatch target to know.
2144 if (dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS) {
2145 for (size_t i = 0; i < motionEntry->pointerCount; i++) {
2146 scaledCoords[i].clear();
2147 }
2148 usingCoords = scaledCoords;
2149 }
Jeff Brownd3616592010-07-16 17:21:06 -07002150 }
2151
Jeff Brown46b9ac02010-04-22 18:58:52 -07002152 // Publish the motion event and the first motion sample.
Jeff Brown81346812011-06-28 20:08:48 -07002153 status = connection->inputPublisher.publishMotionEvent(
2154 motionEntry->deviceId, motionEntry->source,
2155 dispatchEntry->resolvedAction, dispatchEntry->resolvedFlags,
2156 motionEntry->edgeFlags, motionEntry->metaState, motionEntry->buttonState,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002157 xOffset, yOffset,
2158 motionEntry->xPrecision, motionEntry->yPrecision,
Jeff Brown46b9ac02010-04-22 18:58:52 -07002159 motionEntry->downTime, firstMotionSample->eventTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002160 motionEntry->pointerCount, motionEntry->pointerProperties,
2161 usingCoords);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002162
2163 if (status) {
2164 LOGE("channel '%s' ~ Could not publish motion event, "
2165 "status=%d", connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002166 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002167 return;
2168 }
2169
Jeff Brown81346812011-06-28 20:08:48 -07002170 if (dispatchEntry->resolvedAction == AMOTION_EVENT_ACTION_MOVE
2171 || dispatchEntry->resolvedAction == AMOTION_EVENT_ACTION_HOVER_MOVE) {
Jeff Browna032cc02011-03-07 16:56:21 -08002172 // Append additional motion samples.
2173 MotionSample* nextMotionSample = firstMotionSample->next;
2174 for (; nextMotionSample != NULL; nextMotionSample = nextMotionSample->next) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002175 if (usingCoords == scaledCoords) {
Kenny Root7a9db182011-06-02 15:16:05 -07002176 if (!(dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS)) {
2177 for (size_t i = 0; i < motionEntry->pointerCount; i++) {
2178 scaledCoords[i] = nextMotionSample->pointerCoords[i];
2179 scaledCoords[i].scale(scaleFactor);
2180 }
Dianne Hackborn2ba3e802011-05-11 10:59:54 -07002181 }
2182 } else {
2183 usingCoords = nextMotionSample->pointerCoords;
Dianne Hackborne7d25b72011-05-09 21:19:26 -07002184 }
Jeff Browna032cc02011-03-07 16:56:21 -08002185 status = connection->inputPublisher.appendMotionSample(
Dianne Hackbornaa9d84c2011-05-09 19:00:59 -07002186 nextMotionSample->eventTime, usingCoords);
Jeff Browna032cc02011-03-07 16:56:21 -08002187 if (status == NO_MEMORY) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002188#if DEBUG_DISPATCH_CYCLE
2189 LOGD("channel '%s' ~ Shared memory buffer full. Some motion samples will "
2190 "be sent in the next dispatch cycle.",
2191 connection->getInputChannelName());
2192#endif
Jeff Browna032cc02011-03-07 16:56:21 -08002193 break;
2194 }
2195 if (status != OK) {
2196 LOGE("channel '%s' ~ Could not append motion sample "
2197 "for a reason other than out of memory, status=%d",
2198 connection->getInputChannelName(), status);
2199 abortBrokenDispatchCycleLocked(currentTime, connection);
2200 return;
2201 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002202 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002203
Jeff Browna032cc02011-03-07 16:56:21 -08002204 // Remember the next motion sample that we could not dispatch, in case we ran out
2205 // of space in the shared memory buffer.
2206 dispatchEntry->tailMotionSample = nextMotionSample;
2207 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002208 break;
2209 }
2210
2211 default: {
Jeff Brownb6110c22011-04-01 16:15:13 -07002212 LOG_ASSERT(false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002213 }
2214 }
2215
2216 // Send the dispatch signal.
2217 status = connection->inputPublisher.sendDispatchSignal();
2218 if (status) {
2219 LOGE("channel '%s' ~ Could not send dispatch signal, status=%d",
2220 connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002221 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002222 return;
2223 }
2224
2225 // Record information about the newly started dispatch cycle.
Jeff Brown01ce2e92010-09-26 22:20:12 -07002226 connection->lastEventTime = eventEntry->eventTime;
Jeff Brown46b9ac02010-04-22 18:58:52 -07002227 connection->lastDispatchTime = currentTime;
2228
Jeff Brown46b9ac02010-04-22 18:58:52 -07002229 // Notify other system components.
2230 onDispatchCycleStartedLocked(currentTime, connection);
2231}
2232
Jeff Brown7fbdc842010-06-17 20:52:56 -07002233void InputDispatcher::finishDispatchCycleLocked(nsecs_t currentTime,
Jeff Brown3915bb82010-11-05 15:02:16 -07002234 const sp<Connection>& connection, bool handled) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002235#if DEBUG_DISPATCH_CYCLE
Jeff Brown9c3cda02010-06-15 01:31:58 -07002236 LOGD("channel '%s' ~ finishDispatchCycle - %01.1fms since event, "
Jeff Brown3915bb82010-11-05 15:02:16 -07002237 "%01.1fms since dispatch, handled=%s",
Jeff Brown46b9ac02010-04-22 18:58:52 -07002238 connection->getInputChannelName(),
2239 connection->getEventLatencyMillis(currentTime),
Jeff Brown3915bb82010-11-05 15:02:16 -07002240 connection->getDispatchLatencyMillis(currentTime),
2241 toString(handled));
Jeff Brown46b9ac02010-04-22 18:58:52 -07002242#endif
2243
Jeff Brown9c3cda02010-06-15 01:31:58 -07002244 if (connection->status == Connection::STATUS_BROKEN
2245 || connection->status == Connection::STATUS_ZOMBIE) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002246 return;
2247 }
2248
Jeff Brown46b9ac02010-04-22 18:58:52 -07002249 // Reset the publisher since the event has been consumed.
2250 // We do this now so that the publisher can release some of its internal resources
2251 // while waiting for the next dispatch cycle to begin.
2252 status_t status = connection->inputPublisher.reset();
2253 if (status) {
2254 LOGE("channel '%s' ~ Could not reset publisher, status=%d",
2255 connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002256 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002257 return;
2258 }
2259
Jeff Brown3915bb82010-11-05 15:02:16 -07002260 // Notify other system components and prepare to start the next dispatch cycle.
2261 onDispatchCycleFinishedLocked(currentTime, connection, handled);
Jeff Brownb88102f2010-09-08 11:49:43 -07002262}
2263
2264void InputDispatcher::startNextDispatchCycleLocked(nsecs_t currentTime,
2265 const sp<Connection>& connection) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002266 // Start the next dispatch cycle for this connection.
2267 while (! connection->outboundQueue.isEmpty()) {
Jeff Brownb88102f2010-09-08 11:49:43 -07002268 DispatchEntry* dispatchEntry = connection->outboundQueue.headSentinel.next;
Jeff Brown46b9ac02010-04-22 18:58:52 -07002269 if (dispatchEntry->inProgress) {
2270 // Finish or resume current event in progress.
2271 if (dispatchEntry->tailMotionSample) {
2272 // We have a tail of undispatched motion samples.
2273 // Reuse the same DispatchEntry and start a new cycle.
2274 dispatchEntry->inProgress = false;
2275 dispatchEntry->headMotionSample = dispatchEntry->tailMotionSample;
2276 dispatchEntry->tailMotionSample = NULL;
Jeff Brown519e0242010-09-15 15:18:56 -07002277 startDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002278 return;
2279 }
2280 // Finished.
2281 connection->outboundQueue.dequeueAtHead();
Jeff Brown519e0242010-09-15 15:18:56 -07002282 if (dispatchEntry->hasForegroundTarget()) {
2283 decrementPendingForegroundDispatchesLocked(dispatchEntry->eventEntry);
Jeff Brown6ec402b2010-07-28 15:48:59 -07002284 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002285 mAllocator.releaseDispatchEntry(dispatchEntry);
2286 } else {
2287 // If the head is not in progress, then we must have already dequeued the in
Jeff Brown519e0242010-09-15 15:18:56 -07002288 // progress event, which means we actually aborted it.
Jeff Brown46b9ac02010-04-22 18:58:52 -07002289 // So just start the next event for this connection.
Jeff Brown519e0242010-09-15 15:18:56 -07002290 startDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002291 return;
2292 }
2293 }
2294
2295 // Outbound queue is empty, deactivate the connection.
Jeff Brown7fbdc842010-06-17 20:52:56 -07002296 deactivateConnectionLocked(connection.get());
Jeff Brown46b9ac02010-04-22 18:58:52 -07002297}
2298
Jeff Brownb6997262010-10-08 22:31:17 -07002299void InputDispatcher::abortBrokenDispatchCycleLocked(nsecs_t currentTime,
2300 const sp<Connection>& connection) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002301#if DEBUG_DISPATCH_CYCLE
Jeff Brown83c09682010-12-23 17:50:18 -08002302 LOGD("channel '%s' ~ abortBrokenDispatchCycle",
2303 connection->getInputChannelName());
Jeff Brown46b9ac02010-04-22 18:58:52 -07002304#endif
2305
Jeff Brownb88102f2010-09-08 11:49:43 -07002306 // Clear the outbound queue.
Jeff Brown519e0242010-09-15 15:18:56 -07002307 drainOutboundQueueLocked(connection.get());
Jeff Brown46b9ac02010-04-22 18:58:52 -07002308
Jeff Brownb6997262010-10-08 22:31:17 -07002309 // The connection appears to be unrecoverably broken.
Jeff Brown9c3cda02010-06-15 01:31:58 -07002310 // Ignore already broken or zombie connections.
Jeff Brownb6997262010-10-08 22:31:17 -07002311 if (connection->status == Connection::STATUS_NORMAL) {
2312 connection->status = Connection::STATUS_BROKEN;
Jeff Brown46b9ac02010-04-22 18:58:52 -07002313
Jeff Brownb6997262010-10-08 22:31:17 -07002314 // Notify other system components.
2315 onDispatchCycleBrokenLocked(currentTime, connection);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002316 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002317}
2318
Jeff Brown519e0242010-09-15 15:18:56 -07002319void InputDispatcher::drainOutboundQueueLocked(Connection* connection) {
2320 while (! connection->outboundQueue.isEmpty()) {
2321 DispatchEntry* dispatchEntry = connection->outboundQueue.dequeueAtHead();
2322 if (dispatchEntry->hasForegroundTarget()) {
2323 decrementPendingForegroundDispatchesLocked(dispatchEntry->eventEntry);
Jeff Brownb88102f2010-09-08 11:49:43 -07002324 }
2325 mAllocator.releaseDispatchEntry(dispatchEntry);
Jeff Brownb88102f2010-09-08 11:49:43 -07002326 }
2327
Jeff Brown519e0242010-09-15 15:18:56 -07002328 deactivateConnectionLocked(connection);
Jeff Brownb88102f2010-09-08 11:49:43 -07002329}
2330
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002331int InputDispatcher::handleReceiveCallback(int receiveFd, int events, void* data) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002332 InputDispatcher* d = static_cast<InputDispatcher*>(data);
2333
2334 { // acquire lock
2335 AutoMutex _l(d->mLock);
2336
2337 ssize_t connectionIndex = d->mConnectionsByReceiveFd.indexOfKey(receiveFd);
2338 if (connectionIndex < 0) {
2339 LOGE("Received spurious receive callback for unknown input channel. "
2340 "fd=%d, events=0x%x", receiveFd, events);
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002341 return 0; // remove the callback
Jeff Brown46b9ac02010-04-22 18:58:52 -07002342 }
2343
Jeff Brown7fbdc842010-06-17 20:52:56 -07002344 nsecs_t currentTime = now();
Jeff Brown46b9ac02010-04-22 18:58:52 -07002345
2346 sp<Connection> connection = d->mConnectionsByReceiveFd.valueAt(connectionIndex);
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002347 if (events & (ALOOPER_EVENT_ERROR | ALOOPER_EVENT_HANGUP)) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002348 LOGE("channel '%s' ~ Consumer closed input channel or an error occurred. "
2349 "events=0x%x", connection->getInputChannelName(), events);
Jeff Brownb6997262010-10-08 22:31:17 -07002350 d->abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown9c3cda02010-06-15 01:31:58 -07002351 d->runCommandsLockedInterruptible();
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002352 return 0; // remove the callback
Jeff Brown46b9ac02010-04-22 18:58:52 -07002353 }
2354
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002355 if (! (events & ALOOPER_EVENT_INPUT)) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002356 LOGW("channel '%s' ~ Received spurious callback for unhandled poll event. "
2357 "events=0x%x", connection->getInputChannelName(), events);
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002358 return 1;
Jeff Brown46b9ac02010-04-22 18:58:52 -07002359 }
2360
Jeff Brown3915bb82010-11-05 15:02:16 -07002361 bool handled = false;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002362 status_t status = connection->inputPublisher.receiveFinishedSignal(&handled);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002363 if (status) {
2364 LOGE("channel '%s' ~ Failed to receive finished signal. status=%d",
2365 connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002366 d->abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown9c3cda02010-06-15 01:31:58 -07002367 d->runCommandsLockedInterruptible();
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002368 return 0; // remove the callback
Jeff Brown46b9ac02010-04-22 18:58:52 -07002369 }
2370
Jeff Brown3915bb82010-11-05 15:02:16 -07002371 d->finishDispatchCycleLocked(currentTime, connection, handled);
Jeff Brown9c3cda02010-06-15 01:31:58 -07002372 d->runCommandsLockedInterruptible();
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002373 return 1;
Jeff Brown46b9ac02010-04-22 18:58:52 -07002374 } // release lock
2375}
2376
Jeff Brownb6997262010-10-08 22:31:17 -07002377void InputDispatcher::synthesizeCancelationEventsForAllConnectionsLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002378 const CancelationOptions& options) {
Jeff Brownb6997262010-10-08 22:31:17 -07002379 for (size_t i = 0; i < mConnectionsByReceiveFd.size(); i++) {
2380 synthesizeCancelationEventsForConnectionLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002381 mConnectionsByReceiveFd.valueAt(i), options);
Jeff Brownb6997262010-10-08 22:31:17 -07002382 }
2383}
2384
2385void InputDispatcher::synthesizeCancelationEventsForInputChannelLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002386 const sp<InputChannel>& channel, const CancelationOptions& options) {
Jeff Brownb6997262010-10-08 22:31:17 -07002387 ssize_t index = getConnectionIndexLocked(channel);
2388 if (index >= 0) {
2389 synthesizeCancelationEventsForConnectionLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002390 mConnectionsByReceiveFd.valueAt(index), options);
Jeff Brownb6997262010-10-08 22:31:17 -07002391 }
2392}
2393
2394void InputDispatcher::synthesizeCancelationEventsForConnectionLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002395 const sp<Connection>& connection, const CancelationOptions& options) {
Jeff Brownb6997262010-10-08 22:31:17 -07002396 nsecs_t currentTime = now();
2397
2398 mTempCancelationEvents.clear();
2399 connection->inputState.synthesizeCancelationEvents(currentTime, & mAllocator,
2400 mTempCancelationEvents, options);
2401
2402 if (! mTempCancelationEvents.isEmpty()
2403 && connection->status != Connection::STATUS_BROKEN) {
2404#if DEBUG_OUTBOUND_EVENT_DETAILS
2405 LOGD("channel '%s' ~ Synthesized %d cancelation events to bring channel back in sync "
Jeff Brownda3d5a92011-03-29 15:11:34 -07002406 "with reality: %s, mode=%d.",
2407 connection->getInputChannelName(), mTempCancelationEvents.size(),
2408 options.reason, options.mode);
Jeff Brownb6997262010-10-08 22:31:17 -07002409#endif
2410 for (size_t i = 0; i < mTempCancelationEvents.size(); i++) {
2411 EventEntry* cancelationEventEntry = mTempCancelationEvents.itemAt(i);
2412 switch (cancelationEventEntry->type) {
2413 case EventEntry::TYPE_KEY:
2414 logOutboundKeyDetailsLocked("cancel - ",
2415 static_cast<KeyEntry*>(cancelationEventEntry));
2416 break;
2417 case EventEntry::TYPE_MOTION:
2418 logOutboundMotionDetailsLocked("cancel - ",
2419 static_cast<MotionEntry*>(cancelationEventEntry));
2420 break;
2421 }
2422
Jeff Brown81346812011-06-28 20:08:48 -07002423 InputTarget target;
Jeff Brownb6997262010-10-08 22:31:17 -07002424 const InputWindow* window = getWindowLocked(connection->inputChannel);
2425 if (window) {
Jeff Brown81346812011-06-28 20:08:48 -07002426 target.xOffset = -window->frameLeft;
2427 target.yOffset = -window->frameTop;
2428 target.scaleFactor = window->scaleFactor;
Jeff Brownb6997262010-10-08 22:31:17 -07002429 } else {
Jeff Brown81346812011-06-28 20:08:48 -07002430 target.xOffset = 0;
2431 target.yOffset = 0;
2432 target.scaleFactor = 1.0f;
Jeff Brownb6997262010-10-08 22:31:17 -07002433 }
Jeff Brown81346812011-06-28 20:08:48 -07002434 target.inputChannel = connection->inputChannel;
2435 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
Jeff Brownb6997262010-10-08 22:31:17 -07002436
Jeff Brown81346812011-06-28 20:08:48 -07002437 enqueueDispatchEntryLocked(connection, cancelationEventEntry, // increments ref
2438 &target, false, InputTarget::FLAG_DISPATCH_AS_IS);
Jeff Brownb6997262010-10-08 22:31:17 -07002439
2440 mAllocator.releaseEventEntry(cancelationEventEntry);
2441 }
2442
2443 if (!connection->outboundQueue.headSentinel.next->inProgress) {
2444 startDispatchCycleLocked(currentTime, connection);
2445 }
2446 }
2447}
2448
Jeff Brown01ce2e92010-09-26 22:20:12 -07002449InputDispatcher::MotionEntry*
2450InputDispatcher::splitMotionEvent(const MotionEntry* originalMotionEntry, BitSet32 pointerIds) {
Jeff Brownb6110c22011-04-01 16:15:13 -07002451 LOG_ASSERT(pointerIds.value != 0);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002452
2453 uint32_t splitPointerIndexMap[MAX_POINTERS];
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002454 PointerProperties splitPointerProperties[MAX_POINTERS];
Jeff Brown01ce2e92010-09-26 22:20:12 -07002455 PointerCoords splitPointerCoords[MAX_POINTERS];
2456
2457 uint32_t originalPointerCount = originalMotionEntry->pointerCount;
2458 uint32_t splitPointerCount = 0;
2459
2460 for (uint32_t originalPointerIndex = 0; originalPointerIndex < originalPointerCount;
2461 originalPointerIndex++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002462 const PointerProperties& pointerProperties =
2463 originalMotionEntry->pointerProperties[originalPointerIndex];
2464 uint32_t pointerId = uint32_t(pointerProperties.id);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002465 if (pointerIds.hasBit(pointerId)) {
2466 splitPointerIndexMap[splitPointerCount] = originalPointerIndex;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002467 splitPointerProperties[splitPointerCount].copyFrom(pointerProperties);
Jeff Brownace13b12011-03-09 17:39:48 -08002468 splitPointerCoords[splitPointerCount].copyFrom(
2469 originalMotionEntry->firstSample.pointerCoords[originalPointerIndex]);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002470 splitPointerCount += 1;
2471 }
2472 }
Jeff Brown58a2da82011-01-25 16:02:22 -08002473
2474 if (splitPointerCount != pointerIds.count()) {
2475 // This is bad. We are missing some of the pointers that we expected to deliver.
2476 // Most likely this indicates that we received an ACTION_MOVE events that has
2477 // different pointer ids than we expected based on the previous ACTION_DOWN
2478 // or ACTION_POINTER_DOWN events that caused us to decide to split the pointers
2479 // in this way.
2480 LOGW("Dropping split motion event because the pointer count is %d but "
2481 "we expected there to be %d pointers. This probably means we received "
2482 "a broken sequence of pointer ids from the input device.",
2483 splitPointerCount, pointerIds.count());
2484 return NULL;
2485 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07002486
2487 int32_t action = originalMotionEntry->action;
2488 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
2489 if (maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN
2490 || maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
2491 int32_t originalPointerIndex = getMotionEventActionPointerIndex(action);
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002492 const PointerProperties& pointerProperties =
2493 originalMotionEntry->pointerProperties[originalPointerIndex];
2494 uint32_t pointerId = uint32_t(pointerProperties.id);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002495 if (pointerIds.hasBit(pointerId)) {
2496 if (pointerIds.count() == 1) {
2497 // The first/last pointer went down/up.
2498 action = maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN
2499 ? AMOTION_EVENT_ACTION_DOWN : AMOTION_EVENT_ACTION_UP;
Jeff Brown9a01d052010-09-27 16:35:11 -07002500 } else {
2501 // A secondary pointer went down/up.
2502 uint32_t splitPointerIndex = 0;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002503 while (pointerId != uint32_t(splitPointerProperties[splitPointerIndex].id)) {
Jeff Brown9a01d052010-09-27 16:35:11 -07002504 splitPointerIndex += 1;
2505 }
2506 action = maskedAction | (splitPointerIndex
2507 << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002508 }
2509 } else {
2510 // An unrelated pointer changed.
2511 action = AMOTION_EVENT_ACTION_MOVE;
2512 }
2513 }
2514
2515 MotionEntry* splitMotionEntry = mAllocator.obtainMotionEntry(
2516 originalMotionEntry->eventTime,
2517 originalMotionEntry->deviceId,
2518 originalMotionEntry->source,
2519 originalMotionEntry->policyFlags,
2520 action,
2521 originalMotionEntry->flags,
2522 originalMotionEntry->metaState,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002523 originalMotionEntry->buttonState,
Jeff Brown01ce2e92010-09-26 22:20:12 -07002524 originalMotionEntry->edgeFlags,
2525 originalMotionEntry->xPrecision,
2526 originalMotionEntry->yPrecision,
2527 originalMotionEntry->downTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002528 splitPointerCount, splitPointerProperties, splitPointerCoords);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002529
2530 for (MotionSample* originalMotionSample = originalMotionEntry->firstSample.next;
2531 originalMotionSample != NULL; originalMotionSample = originalMotionSample->next) {
2532 for (uint32_t splitPointerIndex = 0; splitPointerIndex < splitPointerCount;
2533 splitPointerIndex++) {
2534 uint32_t originalPointerIndex = splitPointerIndexMap[splitPointerIndex];
Jeff Brownace13b12011-03-09 17:39:48 -08002535 splitPointerCoords[splitPointerIndex].copyFrom(
2536 originalMotionSample->pointerCoords[originalPointerIndex]);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002537 }
2538
2539 mAllocator.appendMotionSample(splitMotionEntry, originalMotionSample->eventTime,
2540 splitPointerCoords);
2541 }
2542
Jeff Browna032cc02011-03-07 16:56:21 -08002543 if (originalMotionEntry->injectionState) {
2544 splitMotionEntry->injectionState = originalMotionEntry->injectionState;
2545 splitMotionEntry->injectionState->refCount += 1;
2546 }
2547
Jeff Brown01ce2e92010-09-26 22:20:12 -07002548 return splitMotionEntry;
2549}
2550
Jeff Brown9c3cda02010-06-15 01:31:58 -07002551void InputDispatcher::notifyConfigurationChanged(nsecs_t eventTime) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002552#if DEBUG_INBOUND_EVENT_DETAILS
Jeff Brown9c3cda02010-06-15 01:31:58 -07002553 LOGD("notifyConfigurationChanged - eventTime=%lld", eventTime);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002554#endif
2555
Jeff Brownb88102f2010-09-08 11:49:43 -07002556 bool needWake;
Jeff Brown46b9ac02010-04-22 18:58:52 -07002557 { // acquire lock
2558 AutoMutex _l(mLock);
2559
Jeff Brown7fbdc842010-06-17 20:52:56 -07002560 ConfigurationChangedEntry* newEntry = mAllocator.obtainConfigurationChangedEntry(eventTime);
Jeff Brownb88102f2010-09-08 11:49:43 -07002561 needWake = enqueueInboundEventLocked(newEntry);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002562 } // release lock
2563
Jeff Brownb88102f2010-09-08 11:49:43 -07002564 if (needWake) {
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002565 mLooper->wake();
Jeff Brown46b9ac02010-04-22 18:58:52 -07002566 }
2567}
2568
Jeff Brown58a2da82011-01-25 16:02:22 -08002569void InputDispatcher::notifyKey(nsecs_t eventTime, int32_t deviceId, uint32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -07002570 uint32_t policyFlags, int32_t action, int32_t flags,
2571 int32_t keyCode, int32_t scanCode, int32_t metaState, nsecs_t downTime) {
2572#if DEBUG_INBOUND_EVENT_DETAILS
Jeff Brown90655042010-12-02 13:50:46 -08002573 LOGD("notifyKey - eventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, action=0x%x, "
Jeff Brown46b9ac02010-04-22 18:58:52 -07002574 "flags=0x%x, keyCode=0x%x, scanCode=0x%x, metaState=0x%x, downTime=%lld",
Jeff Brownc5ed5912010-07-14 18:48:53 -07002575 eventTime, deviceId, source, policyFlags, action, flags,
Jeff Brown46b9ac02010-04-22 18:58:52 -07002576 keyCode, scanCode, metaState, downTime);
2577#endif
Jeff Brown01ce2e92010-09-26 22:20:12 -07002578 if (! validateKeyEvent(action)) {
2579 return;
2580 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002581
Jeff Brown1f245102010-11-18 20:53:46 -08002582 if ((policyFlags & POLICY_FLAG_VIRTUAL) || (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY)) {
2583 policyFlags |= POLICY_FLAG_VIRTUAL;
2584 flags |= AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY;
2585 }
Jeff Brown924c4d42011-03-07 16:40:47 -08002586 if (policyFlags & POLICY_FLAG_ALT) {
2587 metaState |= AMETA_ALT_ON | AMETA_ALT_LEFT_ON;
2588 }
2589 if (policyFlags & POLICY_FLAG_ALT_GR) {
2590 metaState |= AMETA_ALT_ON | AMETA_ALT_RIGHT_ON;
2591 }
2592 if (policyFlags & POLICY_FLAG_SHIFT) {
2593 metaState |= AMETA_SHIFT_ON | AMETA_SHIFT_LEFT_ON;
2594 }
2595 if (policyFlags & POLICY_FLAG_CAPS_LOCK) {
2596 metaState |= AMETA_CAPS_LOCK_ON;
2597 }
2598 if (policyFlags & POLICY_FLAG_FUNCTION) {
2599 metaState |= AMETA_FUNCTION_ON;
2600 }
Jeff Brown1f245102010-11-18 20:53:46 -08002601
Jeff Browne20c9e02010-10-11 14:20:19 -07002602 policyFlags |= POLICY_FLAG_TRUSTED;
Jeff Brown1f245102010-11-18 20:53:46 -08002603
2604 KeyEvent event;
2605 event.initialize(deviceId, source, action, flags, keyCode, scanCode,
2606 metaState, 0, downTime, eventTime);
2607
2608 mPolicy->interceptKeyBeforeQueueing(&event, /*byref*/ policyFlags);
2609
2610 if (policyFlags & POLICY_FLAG_WOKE_HERE) {
2611 flags |= AKEY_EVENT_FLAG_WOKE_HERE;
2612 }
Jeff Brownb6997262010-10-08 22:31:17 -07002613
Jeff Brownb88102f2010-09-08 11:49:43 -07002614 bool needWake;
Jeff Brown46b9ac02010-04-22 18:58:52 -07002615 { // acquire lock
Jeff Brown0029c662011-03-30 02:25:18 -07002616 mLock.lock();
2617
2618 if (mInputFilterEnabled) {
2619 mLock.unlock();
2620
2621 policyFlags |= POLICY_FLAG_FILTERED;
2622 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
2623 return; // event was consumed by the filter
2624 }
2625
2626 mLock.lock();
2627 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002628
Jeff Brown7fbdc842010-06-17 20:52:56 -07002629 int32_t repeatCount = 0;
2630 KeyEntry* newEntry = mAllocator.obtainKeyEntry(eventTime,
Jeff Brownc5ed5912010-07-14 18:48:53 -07002631 deviceId, source, policyFlags, action, flags, keyCode, scanCode,
Jeff Brown7fbdc842010-06-17 20:52:56 -07002632 metaState, repeatCount, downTime);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002633
Jeff Brownb88102f2010-09-08 11:49:43 -07002634 needWake = enqueueInboundEventLocked(newEntry);
Jeff Brown0029c662011-03-30 02:25:18 -07002635 mLock.unlock();
Jeff Brown46b9ac02010-04-22 18:58:52 -07002636 } // release lock
2637
Jeff Brownb88102f2010-09-08 11:49:43 -07002638 if (needWake) {
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002639 mLooper->wake();
Jeff Brown46b9ac02010-04-22 18:58:52 -07002640 }
2641}
2642
Jeff Brown58a2da82011-01-25 16:02:22 -08002643void InputDispatcher::notifyMotion(nsecs_t eventTime, int32_t deviceId, uint32_t source,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002644 uint32_t policyFlags, int32_t action, int32_t flags,
2645 int32_t metaState, int32_t buttonState, int32_t edgeFlags,
2646 uint32_t pointerCount, const PointerProperties* pointerProperties,
2647 const PointerCoords* pointerCoords,
Jeff Brown46b9ac02010-04-22 18:58:52 -07002648 float xPrecision, float yPrecision, nsecs_t downTime) {
2649#if DEBUG_INBOUND_EVENT_DETAILS
Jeff Brown90655042010-12-02 13:50:46 -08002650 LOGD("notifyMotion - eventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, "
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002651 "action=0x%x, flags=0x%x, metaState=0x%x, buttonState=0x%x, edgeFlags=0x%x, "
Jeff Brown85a31762010-09-01 17:01:00 -07002652 "xPrecision=%f, yPrecision=%f, downTime=%lld",
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002653 eventTime, deviceId, source, policyFlags, action, flags,
2654 metaState, buttonState, edgeFlags,
Jeff Brown46b9ac02010-04-22 18:58:52 -07002655 xPrecision, yPrecision, downTime);
2656 for (uint32_t i = 0; i < pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002657 LOGD(" Pointer %d: id=%d, toolType=%d, "
2658 "x=%f, y=%f, pressure=%f, size=%f, "
Jeff Brown85a31762010-09-01 17:01:00 -07002659 "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, "
Jeff Brown8d608662010-08-30 03:02:23 -07002660 "orientation=%f",
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002661 i, pointerProperties[i].id,
2662 pointerProperties[i].toolType,
Jeff Brownebbd5d12011-02-17 13:01:34 -08002663 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X),
2664 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y),
2665 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE),
2666 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE),
2667 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR),
2668 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR),
2669 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR),
2670 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR),
2671 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION));
Jeff Brown46b9ac02010-04-22 18:58:52 -07002672 }
2673#endif
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002674 if (! validateMotionEvent(action, pointerCount, pointerProperties)) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07002675 return;
2676 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002677
Jeff Browne20c9e02010-10-11 14:20:19 -07002678 policyFlags |= POLICY_FLAG_TRUSTED;
Jeff Brown56194eb2011-03-02 19:23:13 -08002679 mPolicy->interceptMotionBeforeQueueing(eventTime, /*byref*/ policyFlags);
Jeff Brownb6997262010-10-08 22:31:17 -07002680
Jeff Brownb88102f2010-09-08 11:49:43 -07002681 bool needWake;
Jeff Brown46b9ac02010-04-22 18:58:52 -07002682 { // acquire lock
Jeff Brown0029c662011-03-30 02:25:18 -07002683 mLock.lock();
2684
2685 if (mInputFilterEnabled) {
2686 mLock.unlock();
2687
2688 MotionEvent event;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002689 event.initialize(deviceId, source, action, flags, edgeFlags, metaState,
2690 buttonState, 0, 0,
Jeff Brown0029c662011-03-30 02:25:18 -07002691 xPrecision, yPrecision, downTime, eventTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002692 pointerCount, pointerProperties, pointerCoords);
Jeff Brown0029c662011-03-30 02:25:18 -07002693
2694 policyFlags |= POLICY_FLAG_FILTERED;
2695 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
2696 return; // event was consumed by the filter
2697 }
2698
2699 mLock.lock();
2700 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07002701
2702 // Attempt batching and streaming of move events.
Jeff Browncc0c1592011-02-19 05:07:28 -08002703 if (action == AMOTION_EVENT_ACTION_MOVE
2704 || action == AMOTION_EVENT_ACTION_HOVER_MOVE) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002705 // BATCHING CASE
2706 //
2707 // Try to append a move sample to the tail of the inbound queue for this device.
2708 // Give up if we encounter a non-move motion event for this device since that
2709 // means we cannot append any new samples until a new motion event has started.
Jeff Brownb88102f2010-09-08 11:49:43 -07002710 for (EventEntry* entry = mInboundQueue.tailSentinel.prev;
2711 entry != & mInboundQueue.headSentinel; entry = entry->prev) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07002712 if (entry->type != EventEntry::TYPE_MOTION) {
2713 // Keep looking for motion events.
2714 continue;
2715 }
2716
2717 MotionEntry* motionEntry = static_cast<MotionEntry*>(entry);
Jeff Brownefd32662011-03-08 15:13:06 -08002718 if (motionEntry->deviceId != deviceId
2719 || motionEntry->source != source) {
2720 // Keep looking for this device and source.
Jeff Brown46b9ac02010-04-22 18:58:52 -07002721 continue;
2722 }
2723
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002724 if (!motionEntry->canAppendSamples(action, pointerCount, pointerProperties)) {
Jeff Brownefd32662011-03-08 15:13:06 -08002725 // Last motion event in the queue for this device and source is
2726 // not compatible for appending new samples. Stop here.
Jeff Brown46b9ac02010-04-22 18:58:52 -07002727 goto NoBatchingOrStreaming;
2728 }
2729
Jeff Brown9c3cda02010-06-15 01:31:58 -07002730 // Do the batching magic.
Jeff Brown4e91a182011-04-07 11:38:09 -07002731 batchMotionLocked(motionEntry, eventTime, metaState, pointerCoords,
2732 "most recent motion event for this device and source in the inbound queue");
Jeff Brown0029c662011-03-30 02:25:18 -07002733 mLock.unlock();
Jeff Brown9c3cda02010-06-15 01:31:58 -07002734 return; // done!
Jeff Brown46b9ac02010-04-22 18:58:52 -07002735 }
2736
Jeff Brownf6989da2011-04-06 17:19:48 -07002737 // BATCHING ONTO PENDING EVENT CASE
2738 //
2739 // Try to append a move sample to the currently pending event, if there is one.
2740 // We can do this as long as we are still waiting to find the targets for the
2741 // event. Once the targets are locked-in we can only do streaming.
2742 if (mPendingEvent
2743 && (!mPendingEvent->dispatchInProgress || !mCurrentInputTargetsValid)
2744 && mPendingEvent->type == EventEntry::TYPE_MOTION) {
2745 MotionEntry* motionEntry = static_cast<MotionEntry*>(mPendingEvent);
2746 if (motionEntry->deviceId == deviceId && motionEntry->source == source) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002747 if (!motionEntry->canAppendSamples(action, pointerCount, pointerProperties)) {
Jeff Brown4e91a182011-04-07 11:38:09 -07002748 // Pending motion event is for this device and source but it is
2749 // not compatible for appending new samples. Stop here.
Jeff Brownf6989da2011-04-06 17:19:48 -07002750 goto NoBatchingOrStreaming;
2751 }
2752
Jeff Brownf6989da2011-04-06 17:19:48 -07002753 // Do the batching magic.
Jeff Brown4e91a182011-04-07 11:38:09 -07002754 batchMotionLocked(motionEntry, eventTime, metaState, pointerCoords,
2755 "pending motion event");
Jeff Brownf6989da2011-04-06 17:19:48 -07002756 mLock.unlock();
2757 return; // done!
2758 }
2759 }
2760
Jeff Brown46b9ac02010-04-22 18:58:52 -07002761 // STREAMING CASE
2762 //
2763 // There is no pending motion event (of any kind) for this device in the inbound queue.
Jeff Brown519e0242010-09-15 15:18:56 -07002764 // Search the outbound queue for the current foreground targets to find a dispatched
2765 // motion event that is still in progress. If found, then, appen the new sample to
2766 // that event and push it out to all current targets. The logic in
2767 // prepareDispatchCycleLocked takes care of the case where some targets may
2768 // already have consumed the motion event by starting a new dispatch cycle if needed.
Jeff Brown9c3cda02010-06-15 01:31:58 -07002769 if (mCurrentInputTargetsValid) {
Jeff Brown519e0242010-09-15 15:18:56 -07002770 for (size_t i = 0; i < mCurrentInputTargets.size(); i++) {
2771 const InputTarget& inputTarget = mCurrentInputTargets[i];
2772 if ((inputTarget.flags & InputTarget::FLAG_FOREGROUND) == 0) {
2773 // Skip non-foreground targets. We only want to stream if there is at
2774 // least one foreground target whose dispatch is still in progress.
2775 continue;
Jeff Brown46b9ac02010-04-22 18:58:52 -07002776 }
Jeff Brown519e0242010-09-15 15:18:56 -07002777
2778 ssize_t connectionIndex = getConnectionIndexLocked(inputTarget.inputChannel);
2779 if (connectionIndex < 0) {
2780 // Connection must no longer be valid.
2781 continue;
2782 }
2783
2784 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
2785 if (connection->outboundQueue.isEmpty()) {
2786 // This foreground target has an empty outbound queue.
2787 continue;
2788 }
2789
2790 DispatchEntry* dispatchEntry = connection->outboundQueue.headSentinel.next;
2791 if (! dispatchEntry->inProgress
Jeff Brown01ce2e92010-09-26 22:20:12 -07002792 || dispatchEntry->eventEntry->type != EventEntry::TYPE_MOTION
2793 || dispatchEntry->isSplit()) {
2794 // No motion event is being dispatched, or it is being split across
2795 // windows in which case we cannot stream.
Jeff Brown519e0242010-09-15 15:18:56 -07002796 continue;
2797 }
2798
2799 MotionEntry* motionEntry = static_cast<MotionEntry*>(
2800 dispatchEntry->eventEntry);
Jeff Browncc0c1592011-02-19 05:07:28 -08002801 if (motionEntry->action != action
Jeff Brown519e0242010-09-15 15:18:56 -07002802 || motionEntry->deviceId != deviceId
Jeff Brown58a2da82011-01-25 16:02:22 -08002803 || motionEntry->source != source
Jeff Brown519e0242010-09-15 15:18:56 -07002804 || motionEntry->pointerCount != pointerCount
2805 || motionEntry->isInjected()) {
2806 // The motion event is not compatible with this move.
2807 continue;
2808 }
2809
Jeff Browna032cc02011-03-07 16:56:21 -08002810 if (action == AMOTION_EVENT_ACTION_HOVER_MOVE) {
2811 if (!mLastHoverWindow) {
2812#if DEBUG_BATCHING
2813 LOGD("Not streaming hover move because there is no "
2814 "last hovered window.");
2815#endif
2816 goto NoBatchingOrStreaming;
2817 }
2818
2819 const InputWindow* hoverWindow = findTouchedWindowAtLocked(
2820 pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X),
2821 pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y));
2822 if (mLastHoverWindow != hoverWindow) {
2823#if DEBUG_BATCHING
2824 LOGD("Not streaming hover move because the last hovered window "
2825 "is '%s' but the currently hovered window is '%s'.",
2826 mLastHoverWindow->name.string(),
2827 hoverWindow ? hoverWindow->name.string() : "<null>");
2828#endif
2829 goto NoBatchingOrStreaming;
2830 }
2831 }
2832
Jeff Brown519e0242010-09-15 15:18:56 -07002833 // Hurray! This foreground target is currently dispatching a move event
2834 // that we can stream onto. Append the motion sample and resume dispatch.
2835 mAllocator.appendMotionSample(motionEntry, eventTime, pointerCoords);
2836#if DEBUG_BATCHING
2837 LOGD("Appended motion sample onto batch for most recently dispatched "
Jeff Brown4e91a182011-04-07 11:38:09 -07002838 "motion event for this device and source in the outbound queues. "
Jeff Brown519e0242010-09-15 15:18:56 -07002839 "Attempting to stream the motion sample.");
2840#endif
2841 nsecs_t currentTime = now();
2842 dispatchEventToCurrentInputTargetsLocked(currentTime, motionEntry,
2843 true /*resumeWithAppendedMotionSample*/);
2844
2845 runCommandsLockedInterruptible();
Jeff Brown0029c662011-03-30 02:25:18 -07002846 mLock.unlock();
Jeff Brown519e0242010-09-15 15:18:56 -07002847 return; // done!
Jeff Brown46b9ac02010-04-22 18:58:52 -07002848 }
2849 }
2850
2851NoBatchingOrStreaming:;
2852 }
2853
2854 // Just enqueue a new motion event.
Jeff Brown7fbdc842010-06-17 20:52:56 -07002855 MotionEntry* newEntry = mAllocator.obtainMotionEntry(eventTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002856 deviceId, source, policyFlags, action, flags, metaState, buttonState, edgeFlags,
Jeff Brown7fbdc842010-06-17 20:52:56 -07002857 xPrecision, yPrecision, downTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002858 pointerCount, pointerProperties, pointerCoords);
Jeff Brown46b9ac02010-04-22 18:58:52 -07002859
Jeff Brownb88102f2010-09-08 11:49:43 -07002860 needWake = enqueueInboundEventLocked(newEntry);
Jeff Brown0029c662011-03-30 02:25:18 -07002861 mLock.unlock();
Jeff Brown46b9ac02010-04-22 18:58:52 -07002862 } // release lock
2863
Jeff Brownb88102f2010-09-08 11:49:43 -07002864 if (needWake) {
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002865 mLooper->wake();
Jeff Brown46b9ac02010-04-22 18:58:52 -07002866 }
2867}
2868
Jeff Brown4e91a182011-04-07 11:38:09 -07002869void InputDispatcher::batchMotionLocked(MotionEntry* entry, nsecs_t eventTime,
2870 int32_t metaState, const PointerCoords* pointerCoords, const char* eventDescription) {
2871 // Combine meta states.
2872 entry->metaState |= metaState;
2873
2874 // Coalesce this sample if not enough time has elapsed since the last sample was
2875 // initially appended to the batch.
2876 MotionSample* lastSample = entry->lastSample;
2877 long interval = eventTime - lastSample->eventTimeBeforeCoalescing;
2878 if (interval <= MOTION_SAMPLE_COALESCE_INTERVAL) {
2879 uint32_t pointerCount = entry->pointerCount;
2880 for (uint32_t i = 0; i < pointerCount; i++) {
2881 lastSample->pointerCoords[i].copyFrom(pointerCoords[i]);
2882 }
2883 lastSample->eventTime = eventTime;
2884#if DEBUG_BATCHING
2885 LOGD("Coalesced motion into last sample of batch for %s, events were %0.3f ms apart",
2886 eventDescription, interval * 0.000001f);
2887#endif
2888 return;
2889 }
2890
2891 // Append the sample.
2892 mAllocator.appendMotionSample(entry, eventTime, pointerCoords);
2893#if DEBUG_BATCHING
2894 LOGD("Appended motion sample onto batch for %s, events were %0.3f ms apart",
2895 eventDescription, interval * 0.000001f);
2896#endif
2897}
2898
Jeff Brownb6997262010-10-08 22:31:17 -07002899void InputDispatcher::notifySwitch(nsecs_t when, int32_t switchCode, int32_t switchValue,
2900 uint32_t policyFlags) {
2901#if DEBUG_INBOUND_EVENT_DETAILS
2902 LOGD("notifySwitch - switchCode=%d, switchValue=%d, policyFlags=0x%x",
2903 switchCode, switchValue, policyFlags);
2904#endif
2905
Jeff Browne20c9e02010-10-11 14:20:19 -07002906 policyFlags |= POLICY_FLAG_TRUSTED;
Jeff Brownb6997262010-10-08 22:31:17 -07002907 mPolicy->notifySwitch(when, switchCode, switchValue, policyFlags);
2908}
2909
Jeff Brown7fbdc842010-06-17 20:52:56 -07002910int32_t InputDispatcher::injectInputEvent(const InputEvent* event,
Jeff Brown0029c662011-03-30 02:25:18 -07002911 int32_t injectorPid, int32_t injectorUid, int32_t syncMode, int32_t timeoutMillis,
2912 uint32_t policyFlags) {
Jeff Brown7fbdc842010-06-17 20:52:56 -07002913#if DEBUG_INBOUND_EVENT_DETAILS
2914 LOGD("injectInputEvent - eventType=%d, injectorPid=%d, injectorUid=%d, "
Jeff Brown0029c662011-03-30 02:25:18 -07002915 "syncMode=%d, timeoutMillis=%d, policyFlags=0x%08x",
2916 event->getType(), injectorPid, injectorUid, syncMode, timeoutMillis, policyFlags);
Jeff Brown7fbdc842010-06-17 20:52:56 -07002917#endif
2918
2919 nsecs_t endTime = now() + milliseconds_to_nanoseconds(timeoutMillis);
Jeff Browne20c9e02010-10-11 14:20:19 -07002920
Jeff Brown0029c662011-03-30 02:25:18 -07002921 policyFlags |= POLICY_FLAG_INJECTED;
Jeff Browne20c9e02010-10-11 14:20:19 -07002922 if (hasInjectionPermission(injectorPid, injectorUid)) {
2923 policyFlags |= POLICY_FLAG_TRUSTED;
2924 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07002925
Jeff Brownb6997262010-10-08 22:31:17 -07002926 EventEntry* injectedEntry;
2927 switch (event->getType()) {
2928 case AINPUT_EVENT_TYPE_KEY: {
2929 const KeyEvent* keyEvent = static_cast<const KeyEvent*>(event);
2930 int32_t action = keyEvent->getAction();
2931 if (! validateKeyEvent(action)) {
Jeff Brownb88102f2010-09-08 11:49:43 -07002932 return INPUT_EVENT_INJECTION_FAILED;
2933 }
2934
Jeff Brownb6997262010-10-08 22:31:17 -07002935 int32_t flags = keyEvent->getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002936 if (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY) {
2937 policyFlags |= POLICY_FLAG_VIRTUAL;
2938 }
2939
Jeff Brown0029c662011-03-30 02:25:18 -07002940 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
2941 mPolicy->interceptKeyBeforeQueueing(keyEvent, /*byref*/ policyFlags);
2942 }
Jeff Brown1f245102010-11-18 20:53:46 -08002943
2944 if (policyFlags & POLICY_FLAG_WOKE_HERE) {
2945 flags |= AKEY_EVENT_FLAG_WOKE_HERE;
2946 }
Jeff Brown6ec402b2010-07-28 15:48:59 -07002947
Jeff Brownb6997262010-10-08 22:31:17 -07002948 mLock.lock();
Jeff Brown1f245102010-11-18 20:53:46 -08002949 injectedEntry = mAllocator.obtainKeyEntry(keyEvent->getEventTime(),
2950 keyEvent->getDeviceId(), keyEvent->getSource(),
2951 policyFlags, action, flags,
2952 keyEvent->getKeyCode(), keyEvent->getScanCode(), keyEvent->getMetaState(),
Jeff Brownb6997262010-10-08 22:31:17 -07002953 keyEvent->getRepeatCount(), keyEvent->getDownTime());
2954 break;
2955 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07002956
Jeff Brownb6997262010-10-08 22:31:17 -07002957 case AINPUT_EVENT_TYPE_MOTION: {
2958 const MotionEvent* motionEvent = static_cast<const MotionEvent*>(event);
2959 int32_t action = motionEvent->getAction();
2960 size_t pointerCount = motionEvent->getPointerCount();
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002961 const PointerProperties* pointerProperties = motionEvent->getPointerProperties();
2962 if (! validateMotionEvent(action, pointerCount, pointerProperties)) {
Jeff Brownb6997262010-10-08 22:31:17 -07002963 return INPUT_EVENT_INJECTION_FAILED;
2964 }
2965
Jeff Brown0029c662011-03-30 02:25:18 -07002966 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
2967 nsecs_t eventTime = motionEvent->getEventTime();
2968 mPolicy->interceptMotionBeforeQueueing(eventTime, /*byref*/ policyFlags);
2969 }
Jeff Brownb6997262010-10-08 22:31:17 -07002970
2971 mLock.lock();
2972 const nsecs_t* sampleEventTimes = motionEvent->getSampleEventTimes();
2973 const PointerCoords* samplePointerCoords = motionEvent->getSamplePointerCoords();
2974 MotionEntry* motionEntry = mAllocator.obtainMotionEntry(*sampleEventTimes,
2975 motionEvent->getDeviceId(), motionEvent->getSource(), policyFlags,
2976 action, motionEvent->getFlags(),
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002977 motionEvent->getMetaState(), motionEvent->getButtonState(),
2978 motionEvent->getEdgeFlags(),
Jeff Brownb6997262010-10-08 22:31:17 -07002979 motionEvent->getXPrecision(), motionEvent->getYPrecision(),
2980 motionEvent->getDownTime(), uint32_t(pointerCount),
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002981 pointerProperties, samplePointerCoords);
Jeff Brownb6997262010-10-08 22:31:17 -07002982 for (size_t i = motionEvent->getHistorySize(); i > 0; i--) {
2983 sampleEventTimes += 1;
2984 samplePointerCoords += pointerCount;
2985 mAllocator.appendMotionSample(motionEntry, *sampleEventTimes, samplePointerCoords);
2986 }
2987 injectedEntry = motionEntry;
2988 break;
2989 }
2990
2991 default:
2992 LOGW("Cannot inject event of type %d", event->getType());
2993 return INPUT_EVENT_INJECTION_FAILED;
2994 }
2995
2996 InjectionState* injectionState = mAllocator.obtainInjectionState(injectorPid, injectorUid);
2997 if (syncMode == INPUT_EVENT_INJECTION_SYNC_NONE) {
2998 injectionState->injectionIsAsync = true;
2999 }
3000
3001 injectionState->refCount += 1;
3002 injectedEntry->injectionState = injectionState;
3003
3004 bool needWake = enqueueInboundEventLocked(injectedEntry);
3005 mLock.unlock();
Jeff Brown7fbdc842010-06-17 20:52:56 -07003006
Jeff Brownb88102f2010-09-08 11:49:43 -07003007 if (needWake) {
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003008 mLooper->wake();
Jeff Brown7fbdc842010-06-17 20:52:56 -07003009 }
3010
3011 int32_t injectionResult;
3012 { // acquire lock
3013 AutoMutex _l(mLock);
3014
Jeff Brown6ec402b2010-07-28 15:48:59 -07003015 if (syncMode == INPUT_EVENT_INJECTION_SYNC_NONE) {
3016 injectionResult = INPUT_EVENT_INJECTION_SUCCEEDED;
3017 } else {
3018 for (;;) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07003019 injectionResult = injectionState->injectionResult;
Jeff Brown6ec402b2010-07-28 15:48:59 -07003020 if (injectionResult != INPUT_EVENT_INJECTION_PENDING) {
3021 break;
3022 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07003023
Jeff Brown7fbdc842010-06-17 20:52:56 -07003024 nsecs_t remainingTimeout = endTime - now();
3025 if (remainingTimeout <= 0) {
Jeff Brown6ec402b2010-07-28 15:48:59 -07003026#if DEBUG_INJECTION
3027 LOGD("injectInputEvent - Timed out waiting for injection result "
3028 "to become available.");
3029#endif
Jeff Brown7fbdc842010-06-17 20:52:56 -07003030 injectionResult = INPUT_EVENT_INJECTION_TIMED_OUT;
3031 break;
3032 }
3033
Jeff Brown6ec402b2010-07-28 15:48:59 -07003034 mInjectionResultAvailableCondition.waitRelative(mLock, remainingTimeout);
3035 }
3036
3037 if (injectionResult == INPUT_EVENT_INJECTION_SUCCEEDED
3038 && syncMode == INPUT_EVENT_INJECTION_SYNC_WAIT_FOR_FINISHED) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07003039 while (injectionState->pendingForegroundDispatches != 0) {
Jeff Brown6ec402b2010-07-28 15:48:59 -07003040#if DEBUG_INJECTION
Jeff Brown519e0242010-09-15 15:18:56 -07003041 LOGD("injectInputEvent - Waiting for %d pending foreground dispatches.",
Jeff Brown01ce2e92010-09-26 22:20:12 -07003042 injectionState->pendingForegroundDispatches);
Jeff Brown6ec402b2010-07-28 15:48:59 -07003043#endif
3044 nsecs_t remainingTimeout = endTime - now();
3045 if (remainingTimeout <= 0) {
3046#if DEBUG_INJECTION
Jeff Brown519e0242010-09-15 15:18:56 -07003047 LOGD("injectInputEvent - Timed out waiting for pending foreground "
Jeff Brown6ec402b2010-07-28 15:48:59 -07003048 "dispatches to finish.");
3049#endif
3050 injectionResult = INPUT_EVENT_INJECTION_TIMED_OUT;
3051 break;
3052 }
3053
3054 mInjectionSyncFinishedCondition.waitRelative(mLock, remainingTimeout);
3055 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07003056 }
3057 }
3058
Jeff Brown01ce2e92010-09-26 22:20:12 -07003059 mAllocator.releaseInjectionState(injectionState);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003060 } // release lock
3061
Jeff Brown6ec402b2010-07-28 15:48:59 -07003062#if DEBUG_INJECTION
3063 LOGD("injectInputEvent - Finished with result %d. "
3064 "injectorPid=%d, injectorUid=%d",
3065 injectionResult, injectorPid, injectorUid);
3066#endif
3067
Jeff Brown7fbdc842010-06-17 20:52:56 -07003068 return injectionResult;
3069}
3070
Jeff Brownb6997262010-10-08 22:31:17 -07003071bool InputDispatcher::hasInjectionPermission(int32_t injectorPid, int32_t injectorUid) {
3072 return injectorUid == 0
3073 || mPolicy->checkInjectEventsPermissionNonReentrant(injectorPid, injectorUid);
3074}
3075
Jeff Brown7fbdc842010-06-17 20:52:56 -07003076void InputDispatcher::setInjectionResultLocked(EventEntry* entry, int32_t injectionResult) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07003077 InjectionState* injectionState = entry->injectionState;
3078 if (injectionState) {
Jeff Brown7fbdc842010-06-17 20:52:56 -07003079#if DEBUG_INJECTION
3080 LOGD("Setting input event injection result to %d. "
3081 "injectorPid=%d, injectorUid=%d",
Jeff Brown01ce2e92010-09-26 22:20:12 -07003082 injectionResult, injectionState->injectorPid, injectionState->injectorUid);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003083#endif
3084
Jeff Brown0029c662011-03-30 02:25:18 -07003085 if (injectionState->injectionIsAsync
3086 && !(entry->policyFlags & POLICY_FLAG_FILTERED)) {
Jeff Brown6ec402b2010-07-28 15:48:59 -07003087 // Log the outcome since the injector did not wait for the injection result.
3088 switch (injectionResult) {
3089 case INPUT_EVENT_INJECTION_SUCCEEDED:
3090 LOGV("Asynchronous input event injection succeeded.");
3091 break;
3092 case INPUT_EVENT_INJECTION_FAILED:
3093 LOGW("Asynchronous input event injection failed.");
3094 break;
3095 case INPUT_EVENT_INJECTION_PERMISSION_DENIED:
3096 LOGW("Asynchronous input event injection permission denied.");
3097 break;
3098 case INPUT_EVENT_INJECTION_TIMED_OUT:
3099 LOGW("Asynchronous input event injection timed out.");
3100 break;
3101 }
3102 }
3103
Jeff Brown01ce2e92010-09-26 22:20:12 -07003104 injectionState->injectionResult = injectionResult;
Jeff Brown7fbdc842010-06-17 20:52:56 -07003105 mInjectionResultAvailableCondition.broadcast();
3106 }
3107}
3108
Jeff Brown01ce2e92010-09-26 22:20:12 -07003109void InputDispatcher::incrementPendingForegroundDispatchesLocked(EventEntry* entry) {
3110 InjectionState* injectionState = entry->injectionState;
3111 if (injectionState) {
3112 injectionState->pendingForegroundDispatches += 1;
3113 }
3114}
3115
Jeff Brown519e0242010-09-15 15:18:56 -07003116void InputDispatcher::decrementPendingForegroundDispatchesLocked(EventEntry* entry) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07003117 InjectionState* injectionState = entry->injectionState;
3118 if (injectionState) {
3119 injectionState->pendingForegroundDispatches -= 1;
Jeff Brown6ec402b2010-07-28 15:48:59 -07003120
Jeff Brown01ce2e92010-09-26 22:20:12 -07003121 if (injectionState->pendingForegroundDispatches == 0) {
3122 mInjectionSyncFinishedCondition.broadcast();
3123 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003124 }
3125}
3126
Jeff Brown01ce2e92010-09-26 22:20:12 -07003127const InputWindow* InputDispatcher::getWindowLocked(const sp<InputChannel>& inputChannel) {
3128 for (size_t i = 0; i < mWindows.size(); i++) {
3129 const InputWindow* window = & mWindows[i];
3130 if (window->inputChannel == inputChannel) {
3131 return window;
3132 }
3133 }
3134 return NULL;
3135}
3136
Jeff Brownb88102f2010-09-08 11:49:43 -07003137void InputDispatcher::setInputWindows(const Vector<InputWindow>& inputWindows) {
3138#if DEBUG_FOCUS
3139 LOGD("setInputWindows");
3140#endif
3141 { // acquire lock
3142 AutoMutex _l(mLock);
3143
Jeff Brown01ce2e92010-09-26 22:20:12 -07003144 // Clear old window pointers.
Jeff Brownb6997262010-10-08 22:31:17 -07003145 sp<InputChannel> oldFocusedWindowChannel;
3146 if (mFocusedWindow) {
3147 oldFocusedWindowChannel = mFocusedWindow->inputChannel;
3148 mFocusedWindow = NULL;
3149 }
Jeff Browna032cc02011-03-07 16:56:21 -08003150 sp<InputChannel> oldLastHoverWindowChannel;
3151 if (mLastHoverWindow) {
3152 oldLastHoverWindowChannel = mLastHoverWindow->inputChannel;
3153 mLastHoverWindow = NULL;
3154 }
Jeff Brownb6997262010-10-08 22:31:17 -07003155
Jeff Brownb88102f2010-09-08 11:49:43 -07003156 mWindows.clear();
Jeff Brown2a95c2a2010-09-16 12:31:46 -07003157
3158 // Loop over new windows and rebuild the necessary window pointers for
3159 // tracking focus and touch.
Jeff Brownb88102f2010-09-08 11:49:43 -07003160 mWindows.appendVector(inputWindows);
3161
3162 size_t numWindows = mWindows.size();
3163 for (size_t i = 0; i < numWindows; i++) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07003164 const InputWindow* window = & mWindows.itemAt(i);
Jeff Brownb88102f2010-09-08 11:49:43 -07003165 if (window->hasFocus) {
3166 mFocusedWindow = window;
Jeff Brown01ce2e92010-09-26 22:20:12 -07003167 break;
Jeff Brownb88102f2010-09-08 11:49:43 -07003168 }
3169 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07003170
Jeff Brownb6997262010-10-08 22:31:17 -07003171 if (oldFocusedWindowChannel != NULL) {
3172 if (!mFocusedWindow || oldFocusedWindowChannel != mFocusedWindow->inputChannel) {
3173#if DEBUG_FOCUS
3174 LOGD("Focus left window: %s",
3175 oldFocusedWindowChannel->getName().string());
3176#endif
Jeff Brownda3d5a92011-03-29 15:11:34 -07003177 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS,
3178 "focus left window");
3179 synthesizeCancelationEventsForInputChannelLocked(oldFocusedWindowChannel, options);
Jeff Brownb6997262010-10-08 22:31:17 -07003180 oldFocusedWindowChannel.clear();
3181 }
3182 }
3183 if (mFocusedWindow && oldFocusedWindowChannel == NULL) {
3184#if DEBUG_FOCUS
3185 LOGD("Focus entered window: %s",
3186 mFocusedWindow->inputChannel->getName().string());
3187#endif
3188 }
3189
Jeff Brown01ce2e92010-09-26 22:20:12 -07003190 for (size_t i = 0; i < mTouchState.windows.size(); ) {
3191 TouchedWindow& touchedWindow = mTouchState.windows.editItemAt(i);
3192 const InputWindow* window = getWindowLocked(touchedWindow.channel);
3193 if (window) {
3194 touchedWindow.window = window;
3195 i += 1;
3196 } else {
Jeff Brownb6997262010-10-08 22:31:17 -07003197#if DEBUG_FOCUS
3198 LOGD("Touched window was removed: %s", touchedWindow.channel->getName().string());
3199#endif
Jeff Brownda3d5a92011-03-29 15:11:34 -07003200 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
3201 "touched window was removed");
3202 synthesizeCancelationEventsForInputChannelLocked(touchedWindow.channel, options);
Jeff Brownaf48cae2010-10-15 16:20:51 -07003203 mTouchState.windows.removeAt(i);
Jeff Brown01ce2e92010-09-26 22:20:12 -07003204 }
3205 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003206
Jeff Browna032cc02011-03-07 16:56:21 -08003207 // Recover the last hovered window.
3208 if (oldLastHoverWindowChannel != NULL) {
3209 mLastHoverWindow = getWindowLocked(oldLastHoverWindowChannel);
3210 oldLastHoverWindowChannel.clear();
3211 }
3212
Jeff Brownb88102f2010-09-08 11:49:43 -07003213#if DEBUG_FOCUS
Jeff Brownb6997262010-10-08 22:31:17 -07003214 //logDispatchStateLocked();
Jeff Brownb88102f2010-09-08 11:49:43 -07003215#endif
3216 } // release lock
3217
3218 // Wake up poll loop since it may need to make new input dispatching choices.
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003219 mLooper->wake();
Jeff Brownb88102f2010-09-08 11:49:43 -07003220}
3221
3222void InputDispatcher::setFocusedApplication(const InputApplication* inputApplication) {
3223#if DEBUG_FOCUS
3224 LOGD("setFocusedApplication");
3225#endif
3226 { // acquire lock
3227 AutoMutex _l(mLock);
3228
3229 releaseFocusedApplicationLocked();
3230
3231 if (inputApplication) {
3232 mFocusedApplicationStorage = *inputApplication;
3233 mFocusedApplication = & mFocusedApplicationStorage;
3234 }
3235
3236#if DEBUG_FOCUS
Jeff Brownb6997262010-10-08 22:31:17 -07003237 //logDispatchStateLocked();
Jeff Brownb88102f2010-09-08 11:49:43 -07003238#endif
3239 } // release lock
3240
3241 // Wake up poll loop since it may need to make new input dispatching choices.
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003242 mLooper->wake();
Jeff Brownb88102f2010-09-08 11:49:43 -07003243}
3244
3245void InputDispatcher::releaseFocusedApplicationLocked() {
3246 if (mFocusedApplication) {
3247 mFocusedApplication = NULL;
Jeff Brown928e0542011-01-10 11:17:36 -08003248 mFocusedApplicationStorage.inputApplicationHandle.clear();
Jeff Brownb88102f2010-09-08 11:49:43 -07003249 }
3250}
3251
3252void InputDispatcher::setInputDispatchMode(bool enabled, bool frozen) {
3253#if DEBUG_FOCUS
3254 LOGD("setInputDispatchMode: enabled=%d, frozen=%d", enabled, frozen);
3255#endif
3256
3257 bool changed;
3258 { // acquire lock
3259 AutoMutex _l(mLock);
3260
3261 if (mDispatchEnabled != enabled || mDispatchFrozen != frozen) {
Jeff Brown120a4592010-10-27 18:43:51 -07003262 if (mDispatchFrozen && !frozen) {
Jeff Brownb88102f2010-09-08 11:49:43 -07003263 resetANRTimeoutsLocked();
3264 }
3265
Jeff Brown120a4592010-10-27 18:43:51 -07003266 if (mDispatchEnabled && !enabled) {
3267 resetAndDropEverythingLocked("dispatcher is being disabled");
3268 }
3269
Jeff Brownb88102f2010-09-08 11:49:43 -07003270 mDispatchEnabled = enabled;
3271 mDispatchFrozen = frozen;
3272 changed = true;
3273 } else {
3274 changed = false;
3275 }
3276
3277#if DEBUG_FOCUS
Jeff Brownb6997262010-10-08 22:31:17 -07003278 //logDispatchStateLocked();
Jeff Brownb88102f2010-09-08 11:49:43 -07003279#endif
3280 } // release lock
3281
3282 if (changed) {
3283 // Wake up poll loop since it may need to make new input dispatching choices.
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003284 mLooper->wake();
Jeff Brown46b9ac02010-04-22 18:58:52 -07003285 }
3286}
3287
Jeff Brown0029c662011-03-30 02:25:18 -07003288void InputDispatcher::setInputFilterEnabled(bool enabled) {
3289#if DEBUG_FOCUS
3290 LOGD("setInputFilterEnabled: enabled=%d", enabled);
3291#endif
3292
3293 { // acquire lock
3294 AutoMutex _l(mLock);
3295
3296 if (mInputFilterEnabled == enabled) {
3297 return;
3298 }
3299
3300 mInputFilterEnabled = enabled;
3301 resetAndDropEverythingLocked("input filter is being enabled or disabled");
3302 } // release lock
3303
3304 // Wake up poll loop since there might be work to do to drop everything.
3305 mLooper->wake();
3306}
3307
Jeff Browne6504122010-09-27 14:52:15 -07003308bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel,
3309 const sp<InputChannel>& toChannel) {
3310#if DEBUG_FOCUS
3311 LOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
3312 fromChannel->getName().string(), toChannel->getName().string());
3313#endif
3314 { // acquire lock
3315 AutoMutex _l(mLock);
3316
3317 const InputWindow* fromWindow = getWindowLocked(fromChannel);
3318 const InputWindow* toWindow = getWindowLocked(toChannel);
3319 if (! fromWindow || ! toWindow) {
3320#if DEBUG_FOCUS
3321 LOGD("Cannot transfer focus because from or to window not found.");
3322#endif
3323 return false;
3324 }
3325 if (fromWindow == toWindow) {
3326#if DEBUG_FOCUS
3327 LOGD("Trivial transfer to same window.");
3328#endif
3329 return true;
3330 }
3331
3332 bool found = false;
3333 for (size_t i = 0; i < mTouchState.windows.size(); i++) {
3334 const TouchedWindow& touchedWindow = mTouchState.windows[i];
3335 if (touchedWindow.window == fromWindow) {
3336 int32_t oldTargetFlags = touchedWindow.targetFlags;
3337 BitSet32 pointerIds = touchedWindow.pointerIds;
3338
3339 mTouchState.windows.removeAt(i);
3340
Jeff Brown46e75292010-11-10 16:53:45 -08003341 int32_t newTargetFlags = oldTargetFlags
Jeff Browna032cc02011-03-07 16:56:21 -08003342 & (InputTarget::FLAG_FOREGROUND
3343 | InputTarget::FLAG_SPLIT | InputTarget::FLAG_DISPATCH_AS_IS);
Jeff Browne6504122010-09-27 14:52:15 -07003344 mTouchState.addOrUpdateWindow(toWindow, newTargetFlags, pointerIds);
3345
3346 found = true;
3347 break;
3348 }
3349 }
3350
3351 if (! found) {
3352#if DEBUG_FOCUS
3353 LOGD("Focus transfer failed because from window did not have focus.");
3354#endif
3355 return false;
3356 }
3357
Jeff Brown9c9f1a32010-10-11 18:32:20 -07003358 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);
3359 ssize_t toConnectionIndex = getConnectionIndexLocked(toChannel);
3360 if (fromConnectionIndex >= 0 && toConnectionIndex >= 0) {
3361 sp<Connection> fromConnection = mConnectionsByReceiveFd.valueAt(fromConnectionIndex);
3362 sp<Connection> toConnection = mConnectionsByReceiveFd.valueAt(toConnectionIndex);
3363
3364 fromConnection->inputState.copyPointerStateTo(toConnection->inputState);
Jeff Brownda3d5a92011-03-29 15:11:34 -07003365 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Jeff Brown9c9f1a32010-10-11 18:32:20 -07003366 "transferring touch focus from this window to another window");
Jeff Brownda3d5a92011-03-29 15:11:34 -07003367 synthesizeCancelationEventsForConnectionLocked(fromConnection, options);
Jeff Brown9c9f1a32010-10-11 18:32:20 -07003368 }
3369
Jeff Browne6504122010-09-27 14:52:15 -07003370#if DEBUG_FOCUS
3371 logDispatchStateLocked();
3372#endif
3373 } // release lock
3374
3375 // Wake up poll loop since it may need to make new input dispatching choices.
3376 mLooper->wake();
3377 return true;
3378}
3379
Jeff Brown120a4592010-10-27 18:43:51 -07003380void InputDispatcher::resetAndDropEverythingLocked(const char* reason) {
3381#if DEBUG_FOCUS
3382 LOGD("Resetting and dropping all events (%s).", reason);
3383#endif
3384
Jeff Brownda3d5a92011-03-29 15:11:34 -07003385 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, reason);
3386 synthesizeCancelationEventsForAllConnectionsLocked(options);
Jeff Brown120a4592010-10-27 18:43:51 -07003387
3388 resetKeyRepeatLocked();
3389 releasePendingEventLocked();
3390 drainInboundQueueLocked();
3391 resetTargetsLocked();
3392
3393 mTouchState.reset();
Jeff Brown81346812011-06-28 20:08:48 -07003394 mLastHoverWindow = NULL;
Jeff Brown120a4592010-10-27 18:43:51 -07003395}
3396
Jeff Brownb88102f2010-09-08 11:49:43 -07003397void InputDispatcher::logDispatchStateLocked() {
3398 String8 dump;
3399 dumpDispatchStateLocked(dump);
Jeff Brown2a95c2a2010-09-16 12:31:46 -07003400
3401 char* text = dump.lockBuffer(dump.size());
3402 char* start = text;
3403 while (*start != '\0') {
3404 char* end = strchr(start, '\n');
3405 if (*end == '\n') {
3406 *(end++) = '\0';
3407 }
3408 LOGD("%s", start);
3409 start = end;
3410 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003411}
3412
3413void InputDispatcher::dumpDispatchStateLocked(String8& dump) {
Jeff Brownf2f48712010-10-01 17:46:21 -07003414 dump.appendFormat(INDENT "DispatchEnabled: %d\n", mDispatchEnabled);
3415 dump.appendFormat(INDENT "DispatchFrozen: %d\n", mDispatchFrozen);
Jeff Brownb88102f2010-09-08 11:49:43 -07003416
3417 if (mFocusedApplication) {
Jeff Brownf2f48712010-10-01 17:46:21 -07003418 dump.appendFormat(INDENT "FocusedApplication: name='%s', dispatchingTimeout=%0.3fms\n",
Jeff Brownb88102f2010-09-08 11:49:43 -07003419 mFocusedApplication->name.string(),
3420 mFocusedApplication->dispatchingTimeout / 1000000.0);
3421 } else {
Jeff Brownf2f48712010-10-01 17:46:21 -07003422 dump.append(INDENT "FocusedApplication: <null>\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003423 }
Jeff Brownf2f48712010-10-01 17:46:21 -07003424 dump.appendFormat(INDENT "FocusedWindow: name='%s'\n",
Jeff Brown2a95c2a2010-09-16 12:31:46 -07003425 mFocusedWindow != NULL ? mFocusedWindow->name.string() : "<null>");
Jeff Brownf2f48712010-10-01 17:46:21 -07003426
3427 dump.appendFormat(INDENT "TouchDown: %s\n", toString(mTouchState.down));
3428 dump.appendFormat(INDENT "TouchSplit: %s\n", toString(mTouchState.split));
Jeff Brown95712852011-01-04 19:41:59 -08003429 dump.appendFormat(INDENT "TouchDeviceId: %d\n", mTouchState.deviceId);
Jeff Brown58a2da82011-01-25 16:02:22 -08003430 dump.appendFormat(INDENT "TouchSource: 0x%08x\n", mTouchState.source);
Jeff Brownf2f48712010-10-01 17:46:21 -07003431 if (!mTouchState.windows.isEmpty()) {
3432 dump.append(INDENT "TouchedWindows:\n");
3433 for (size_t i = 0; i < mTouchState.windows.size(); i++) {
3434 const TouchedWindow& touchedWindow = mTouchState.windows[i];
3435 dump.appendFormat(INDENT2 "%d: name='%s', pointerIds=0x%0x, targetFlags=0x%x\n",
3436 i, touchedWindow.window->name.string(), touchedWindow.pointerIds.value,
3437 touchedWindow.targetFlags);
3438 }
3439 } else {
3440 dump.append(INDENT "TouchedWindows: <none>\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003441 }
3442
Jeff Brownf2f48712010-10-01 17:46:21 -07003443 if (!mWindows.isEmpty()) {
3444 dump.append(INDENT "Windows:\n");
3445 for (size_t i = 0; i < mWindows.size(); i++) {
3446 const InputWindow& window = mWindows[i];
3447 dump.appendFormat(INDENT2 "%d: name='%s', paused=%s, hasFocus=%s, hasWallpaper=%s, "
3448 "visible=%s, canReceiveKeys=%s, flags=0x%08x, type=0x%08x, layer=%d, "
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003449 "frame=[%d,%d][%d,%d], scale=%f, "
Jeff Brownfbf09772011-01-16 14:06:57 -08003450 "touchableRegion=",
Jeff Brownf2f48712010-10-01 17:46:21 -07003451 i, window.name.string(),
3452 toString(window.paused),
3453 toString(window.hasFocus),
3454 toString(window.hasWallpaper),
3455 toString(window.visible),
3456 toString(window.canReceiveKeys),
3457 window.layoutParamsFlags, window.layoutParamsType,
3458 window.layer,
3459 window.frameLeft, window.frameTop,
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003460 window.frameRight, window.frameBottom,
3461 window.scaleFactor);
Jeff Brownfbf09772011-01-16 14:06:57 -08003462 dumpRegion(dump, window.touchableRegion);
Jeff Brown474dcb52011-06-14 20:22:50 -07003463 dump.appendFormat(", inputFeatures=0x%08x", window.inputFeatures);
Jeff Brownfbf09772011-01-16 14:06:57 -08003464 dump.appendFormat(", ownerPid=%d, ownerUid=%d, dispatchingTimeout=%0.3fms\n",
Jeff Brownf2f48712010-10-01 17:46:21 -07003465 window.ownerPid, window.ownerUid,
3466 window.dispatchingTimeout / 1000000.0);
3467 }
3468 } else {
3469 dump.append(INDENT "Windows: <none>\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003470 }
3471
Jeff Brownf2f48712010-10-01 17:46:21 -07003472 if (!mMonitoringChannels.isEmpty()) {
3473 dump.append(INDENT "MonitoringChannels:\n");
3474 for (size_t i = 0; i < mMonitoringChannels.size(); i++) {
3475 const sp<InputChannel>& channel = mMonitoringChannels[i];
3476 dump.appendFormat(INDENT2 "%d: '%s'\n", i, channel->getName().string());
3477 }
3478 } else {
3479 dump.append(INDENT "MonitoringChannels: <none>\n");
3480 }
Jeff Brown519e0242010-09-15 15:18:56 -07003481
Jeff Brownf2f48712010-10-01 17:46:21 -07003482 dump.appendFormat(INDENT "InboundQueue: length=%u\n", mInboundQueue.count());
3483
3484 if (!mActiveConnections.isEmpty()) {
3485 dump.append(INDENT "ActiveConnections:\n");
3486 for (size_t i = 0; i < mActiveConnections.size(); i++) {
3487 const Connection* connection = mActiveConnections[i];
Jeff Brown76860e32010-10-25 17:37:46 -07003488 dump.appendFormat(INDENT2 "%d: '%s', status=%s, outboundQueueLength=%u, "
Jeff Brownb6997262010-10-08 22:31:17 -07003489 "inputState.isNeutral=%s\n",
Jeff Brownf2f48712010-10-01 17:46:21 -07003490 i, connection->getInputChannelName(), connection->getStatusLabel(),
3491 connection->outboundQueue.count(),
Jeff Brownb6997262010-10-08 22:31:17 -07003492 toString(connection->inputState.isNeutral()));
Jeff Brownf2f48712010-10-01 17:46:21 -07003493 }
3494 } else {
3495 dump.append(INDENT "ActiveConnections: <none>\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003496 }
3497
3498 if (isAppSwitchPendingLocked()) {
Jeff Brownf2f48712010-10-01 17:46:21 -07003499 dump.appendFormat(INDENT "AppSwitch: pending, due in %01.1fms\n",
Jeff Brownb88102f2010-09-08 11:49:43 -07003500 (mAppSwitchDueTime - now()) / 1000000.0);
3501 } else {
Jeff Brownf2f48712010-10-01 17:46:21 -07003502 dump.append(INDENT "AppSwitch: not pending\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003503 }
3504}
3505
Jeff Brown928e0542011-01-10 11:17:36 -08003506status_t InputDispatcher::registerInputChannel(const sp<InputChannel>& inputChannel,
3507 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) {
Jeff Brown9c3cda02010-06-15 01:31:58 -07003508#if DEBUG_REGISTRATION
Jeff Brownb88102f2010-09-08 11:49:43 -07003509 LOGD("channel '%s' ~ registerInputChannel - monitor=%s", inputChannel->getName().string(),
3510 toString(monitor));
Jeff Brown9c3cda02010-06-15 01:31:58 -07003511#endif
3512
Jeff Brown46b9ac02010-04-22 18:58:52 -07003513 { // acquire lock
3514 AutoMutex _l(mLock);
3515
Jeff Brown519e0242010-09-15 15:18:56 -07003516 if (getConnectionIndexLocked(inputChannel) >= 0) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07003517 LOGW("Attempted to register already registered input channel '%s'",
3518 inputChannel->getName().string());
3519 return BAD_VALUE;
3520 }
3521
Jeff Brown928e0542011-01-10 11:17:36 -08003522 sp<Connection> connection = new Connection(inputChannel, inputWindowHandle);
Jeff Brown46b9ac02010-04-22 18:58:52 -07003523 status_t status = connection->initialize();
3524 if (status) {
3525 LOGE("Failed to initialize input publisher for input channel '%s', status=%d",
3526 inputChannel->getName().string(), status);
3527 return status;
3528 }
3529
Jeff Brown2cbecea2010-08-17 15:59:26 -07003530 int32_t receiveFd = inputChannel->getReceivePipeFd();
Jeff Brown46b9ac02010-04-22 18:58:52 -07003531 mConnectionsByReceiveFd.add(receiveFd, connection);
Jeff Brown9c3cda02010-06-15 01:31:58 -07003532
Jeff Brownb88102f2010-09-08 11:49:43 -07003533 if (monitor) {
3534 mMonitoringChannels.push(inputChannel);
3535 }
3536
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003537 mLooper->addFd(receiveFd, 0, ALOOPER_EVENT_INPUT, handleReceiveCallback, this);
Jeff Brown2cbecea2010-08-17 15:59:26 -07003538
Jeff Brown9c3cda02010-06-15 01:31:58 -07003539 runCommandsLockedInterruptible();
Jeff Brown46b9ac02010-04-22 18:58:52 -07003540 } // release lock
Jeff Brown46b9ac02010-04-22 18:58:52 -07003541 return OK;
3542}
3543
3544status_t InputDispatcher::unregisterInputChannel(const sp<InputChannel>& inputChannel) {
Jeff Brown9c3cda02010-06-15 01:31:58 -07003545#if DEBUG_REGISTRATION
Jeff Brown349703e2010-06-22 01:27:15 -07003546 LOGD("channel '%s' ~ unregisterInputChannel", inputChannel->getName().string());
Jeff Brown9c3cda02010-06-15 01:31:58 -07003547#endif
3548
Jeff Brown46b9ac02010-04-22 18:58:52 -07003549 { // acquire lock
3550 AutoMutex _l(mLock);
3551
Jeff Brown519e0242010-09-15 15:18:56 -07003552 ssize_t connectionIndex = getConnectionIndexLocked(inputChannel);
Jeff Brown46b9ac02010-04-22 18:58:52 -07003553 if (connectionIndex < 0) {
3554 LOGW("Attempted to unregister already unregistered input channel '%s'",
3555 inputChannel->getName().string());
3556 return BAD_VALUE;
3557 }
3558
3559 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
3560 mConnectionsByReceiveFd.removeItemsAt(connectionIndex);
3561
3562 connection->status = Connection::STATUS_ZOMBIE;
3563
Jeff Brownb88102f2010-09-08 11:49:43 -07003564 for (size_t i = 0; i < mMonitoringChannels.size(); i++) {
3565 if (mMonitoringChannels[i] == inputChannel) {
3566 mMonitoringChannels.removeAt(i);
3567 break;
3568 }
3569 }
3570
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003571 mLooper->removeFd(inputChannel->getReceivePipeFd());
Jeff Brown2cbecea2010-08-17 15:59:26 -07003572
Jeff Brown7fbdc842010-06-17 20:52:56 -07003573 nsecs_t currentTime = now();
Jeff Brownb6997262010-10-08 22:31:17 -07003574 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown9c3cda02010-06-15 01:31:58 -07003575
3576 runCommandsLockedInterruptible();
Jeff Brown46b9ac02010-04-22 18:58:52 -07003577 } // release lock
3578
Jeff Brown46b9ac02010-04-22 18:58:52 -07003579 // Wake the poll loop because removing the connection may have changed the current
3580 // synchronization state.
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003581 mLooper->wake();
Jeff Brown46b9ac02010-04-22 18:58:52 -07003582 return OK;
3583}
3584
Jeff Brown519e0242010-09-15 15:18:56 -07003585ssize_t InputDispatcher::getConnectionIndexLocked(const sp<InputChannel>& inputChannel) {
Jeff Brown2cbecea2010-08-17 15:59:26 -07003586 ssize_t connectionIndex = mConnectionsByReceiveFd.indexOfKey(inputChannel->getReceivePipeFd());
3587 if (connectionIndex >= 0) {
3588 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
3589 if (connection->inputChannel.get() == inputChannel.get()) {
3590 return connectionIndex;
3591 }
3592 }
3593
3594 return -1;
3595}
3596
Jeff Brown46b9ac02010-04-22 18:58:52 -07003597void InputDispatcher::activateConnectionLocked(Connection* connection) {
3598 for (size_t i = 0; i < mActiveConnections.size(); i++) {
3599 if (mActiveConnections.itemAt(i) == connection) {
3600 return;
3601 }
3602 }
3603 mActiveConnections.add(connection);
3604}
3605
3606void InputDispatcher::deactivateConnectionLocked(Connection* connection) {
3607 for (size_t i = 0; i < mActiveConnections.size(); i++) {
3608 if (mActiveConnections.itemAt(i) == connection) {
3609 mActiveConnections.removeAt(i);
3610 return;
3611 }
3612 }
3613}
3614
Jeff Brown9c3cda02010-06-15 01:31:58 -07003615void InputDispatcher::onDispatchCycleStartedLocked(
Jeff Brown7fbdc842010-06-17 20:52:56 -07003616 nsecs_t currentTime, const sp<Connection>& connection) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07003617}
3618
Jeff Brown9c3cda02010-06-15 01:31:58 -07003619void InputDispatcher::onDispatchCycleFinishedLocked(
Jeff Brown3915bb82010-11-05 15:02:16 -07003620 nsecs_t currentTime, const sp<Connection>& connection, bool handled) {
3621 CommandEntry* commandEntry = postCommandLocked(
3622 & InputDispatcher::doDispatchCycleFinishedLockedInterruptible);
3623 commandEntry->connection = connection;
3624 commandEntry->handled = handled;
Jeff Brown46b9ac02010-04-22 18:58:52 -07003625}
3626
Jeff Brown9c3cda02010-06-15 01:31:58 -07003627void InputDispatcher::onDispatchCycleBrokenLocked(
Jeff Brown7fbdc842010-06-17 20:52:56 -07003628 nsecs_t currentTime, const sp<Connection>& connection) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07003629 LOGE("channel '%s' ~ Channel is unrecoverably broken and will be disposed!",
3630 connection->getInputChannelName());
3631
Jeff Brown9c3cda02010-06-15 01:31:58 -07003632 CommandEntry* commandEntry = postCommandLocked(
3633 & InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003634 commandEntry->connection = connection;
Jeff Brown46b9ac02010-04-22 18:58:52 -07003635}
3636
Jeff Brown519e0242010-09-15 15:18:56 -07003637void InputDispatcher::onANRLocked(
3638 nsecs_t currentTime, const InputApplication* application, const InputWindow* window,
3639 nsecs_t eventTime, nsecs_t waitStartTime) {
3640 LOGI("Application is not responding: %s. "
3641 "%01.1fms since event, %01.1fms since wait started",
3642 getApplicationWindowLabelLocked(application, window).string(),
3643 (currentTime - eventTime) / 1000000.0,
3644 (currentTime - waitStartTime) / 1000000.0);
3645
3646 CommandEntry* commandEntry = postCommandLocked(
3647 & InputDispatcher::doNotifyANRLockedInterruptible);
3648 if (application) {
Jeff Brown928e0542011-01-10 11:17:36 -08003649 commandEntry->inputApplicationHandle = application->inputApplicationHandle;
Jeff Brown519e0242010-09-15 15:18:56 -07003650 }
3651 if (window) {
Jeff Brown928e0542011-01-10 11:17:36 -08003652 commandEntry->inputWindowHandle = window->inputWindowHandle;
Jeff Brown519e0242010-09-15 15:18:56 -07003653 commandEntry->inputChannel = window->inputChannel;
3654 }
3655}
3656
Jeff Brownb88102f2010-09-08 11:49:43 -07003657void InputDispatcher::doNotifyConfigurationChangedInterruptible(
3658 CommandEntry* commandEntry) {
3659 mLock.unlock();
3660
3661 mPolicy->notifyConfigurationChanged(commandEntry->eventTime);
3662
3663 mLock.lock();
3664}
3665
Jeff Brown9c3cda02010-06-15 01:31:58 -07003666void InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible(
3667 CommandEntry* commandEntry) {
Jeff Brown7fbdc842010-06-17 20:52:56 -07003668 sp<Connection> connection = commandEntry->connection;
Jeff Brown9c3cda02010-06-15 01:31:58 -07003669
Jeff Brown7fbdc842010-06-17 20:52:56 -07003670 if (connection->status != Connection::STATUS_ZOMBIE) {
3671 mLock.unlock();
Jeff Brown9c3cda02010-06-15 01:31:58 -07003672
Jeff Brown928e0542011-01-10 11:17:36 -08003673 mPolicy->notifyInputChannelBroken(connection->inputWindowHandle);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003674
3675 mLock.lock();
3676 }
Jeff Brown9c3cda02010-06-15 01:31:58 -07003677}
3678
Jeff Brown519e0242010-09-15 15:18:56 -07003679void InputDispatcher::doNotifyANRLockedInterruptible(
Jeff Brown9c3cda02010-06-15 01:31:58 -07003680 CommandEntry* commandEntry) {
Jeff Brown519e0242010-09-15 15:18:56 -07003681 mLock.unlock();
Jeff Brown9c3cda02010-06-15 01:31:58 -07003682
Jeff Brown519e0242010-09-15 15:18:56 -07003683 nsecs_t newTimeout = mPolicy->notifyANR(
Jeff Brown928e0542011-01-10 11:17:36 -08003684 commandEntry->inputApplicationHandle, commandEntry->inputWindowHandle);
Jeff Brown9c3cda02010-06-15 01:31:58 -07003685
Jeff Brown519e0242010-09-15 15:18:56 -07003686 mLock.lock();
Jeff Brown7fbdc842010-06-17 20:52:56 -07003687
Jeff Brown519e0242010-09-15 15:18:56 -07003688 resumeAfterTargetsNotReadyTimeoutLocked(newTimeout, commandEntry->inputChannel);
Jeff Brown9c3cda02010-06-15 01:31:58 -07003689}
3690
Jeff Brownb88102f2010-09-08 11:49:43 -07003691void InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible(
3692 CommandEntry* commandEntry) {
3693 KeyEntry* entry = commandEntry->keyEntry;
Jeff Brown1f245102010-11-18 20:53:46 -08003694
3695 KeyEvent event;
3696 initializeKeyEvent(&event, entry);
Jeff Brownb88102f2010-09-08 11:49:43 -07003697
3698 mLock.unlock();
3699
Jeff Brown928e0542011-01-10 11:17:36 -08003700 bool consumed = mPolicy->interceptKeyBeforeDispatching(commandEntry->inputWindowHandle,
Jeff Brown1f245102010-11-18 20:53:46 -08003701 &event, entry->policyFlags);
Jeff Brownb88102f2010-09-08 11:49:43 -07003702
3703 mLock.lock();
3704
3705 entry->interceptKeyResult = consumed
3706 ? KeyEntry::INTERCEPT_KEY_RESULT_SKIP
3707 : KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE;
3708 mAllocator.releaseKeyEntry(entry);
3709}
3710
Jeff Brown3915bb82010-11-05 15:02:16 -07003711void InputDispatcher::doDispatchCycleFinishedLockedInterruptible(
3712 CommandEntry* commandEntry) {
3713 sp<Connection> connection = commandEntry->connection;
3714 bool handled = commandEntry->handled;
3715
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003716 bool skipNext = false;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003717 if (!connection->outboundQueue.isEmpty()) {
Jeff Brown3915bb82010-11-05 15:02:16 -07003718 DispatchEntry* dispatchEntry = connection->outboundQueue.headSentinel.next;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003719 if (dispatchEntry->inProgress) {
3720 if (dispatchEntry->eventEntry->type == EventEntry::TYPE_KEY) {
3721 KeyEntry* keyEntry = static_cast<KeyEntry*>(dispatchEntry->eventEntry);
3722 skipNext = afterKeyEventLockedInterruptible(connection,
3723 dispatchEntry, keyEntry, handled);
3724 } else if (dispatchEntry->eventEntry->type == EventEntry::TYPE_MOTION) {
3725 MotionEntry* motionEntry = static_cast<MotionEntry*>(dispatchEntry->eventEntry);
3726 skipNext = afterMotionEventLockedInterruptible(connection,
3727 dispatchEntry, motionEntry, handled);
Jeff Brown49ed71d2010-12-06 17:13:33 -08003728 }
Jeff Brown3915bb82010-11-05 15:02:16 -07003729 }
3730 }
3731
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003732 if (!skipNext) {
3733 startNextDispatchCycleLocked(now(), connection);
3734 }
3735}
3736
3737bool InputDispatcher::afterKeyEventLockedInterruptible(const sp<Connection>& connection,
3738 DispatchEntry* dispatchEntry, KeyEntry* keyEntry, bool handled) {
3739 if (!(keyEntry->flags & AKEY_EVENT_FLAG_FALLBACK)) {
3740 // Get the fallback key state.
3741 // Clear it out after dispatching the UP.
3742 int32_t originalKeyCode = keyEntry->keyCode;
3743 int32_t fallbackKeyCode = connection->inputState.getFallbackKey(originalKeyCode);
3744 if (keyEntry->action == AKEY_EVENT_ACTION_UP) {
3745 connection->inputState.removeFallbackKey(originalKeyCode);
3746 }
3747
3748 if (handled || !dispatchEntry->hasForegroundTarget()) {
3749 // If the application handles the original key for which we previously
3750 // generated a fallback or if the window is not a foreground window,
3751 // then cancel the associated fallback key, if any.
3752 if (fallbackKeyCode != -1) {
3753 if (fallbackKeyCode != AKEYCODE_UNKNOWN) {
3754 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
3755 "application handled the original non-fallback key "
3756 "or is no longer a foreground target, "
3757 "canceling previously dispatched fallback key");
3758 options.keyCode = fallbackKeyCode;
3759 synthesizeCancelationEventsForConnectionLocked(connection, options);
3760 }
3761 connection->inputState.removeFallbackKey(originalKeyCode);
3762 }
3763 } else {
3764 // If the application did not handle a non-fallback key, first check
3765 // that we are in a good state to perform unhandled key event processing
3766 // Then ask the policy what to do with it.
3767 bool initialDown = keyEntry->action == AKEY_EVENT_ACTION_DOWN
3768 && keyEntry->repeatCount == 0;
3769 if (fallbackKeyCode == -1 && !initialDown) {
3770#if DEBUG_OUTBOUND_EVENT_DETAILS
3771 LOGD("Unhandled key event: Skipping unhandled key event processing "
3772 "since this is not an initial down. "
3773 "keyCode=%d, action=%d, repeatCount=%d",
3774 originalKeyCode, keyEntry->action, keyEntry->repeatCount);
3775#endif
3776 return false;
3777 }
3778
3779 // Dispatch the unhandled key to the policy.
3780#if DEBUG_OUTBOUND_EVENT_DETAILS
3781 LOGD("Unhandled key event: Asking policy to perform fallback action. "
3782 "keyCode=%d, action=%d, repeatCount=%d",
3783 keyEntry->keyCode, keyEntry->action, keyEntry->repeatCount);
3784#endif
3785 KeyEvent event;
3786 initializeKeyEvent(&event, keyEntry);
3787
3788 mLock.unlock();
3789
3790 bool fallback = mPolicy->dispatchUnhandledKey(connection->inputWindowHandle,
3791 &event, keyEntry->policyFlags, &event);
3792
3793 mLock.lock();
3794
3795 if (connection->status != Connection::STATUS_NORMAL) {
3796 connection->inputState.removeFallbackKey(originalKeyCode);
3797 return true; // skip next cycle
3798 }
3799
3800 LOG_ASSERT(connection->outboundQueue.headSentinel.next == dispatchEntry);
3801
3802 // Latch the fallback keycode for this key on an initial down.
3803 // The fallback keycode cannot change at any other point in the lifecycle.
3804 if (initialDown) {
3805 if (fallback) {
3806 fallbackKeyCode = event.getKeyCode();
3807 } else {
3808 fallbackKeyCode = AKEYCODE_UNKNOWN;
3809 }
3810 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode);
3811 }
3812
3813 LOG_ASSERT(fallbackKeyCode != -1);
3814
3815 // Cancel the fallback key if the policy decides not to send it anymore.
3816 // We will continue to dispatch the key to the policy but we will no
3817 // longer dispatch a fallback key to the application.
3818 if (fallbackKeyCode != AKEYCODE_UNKNOWN
3819 && (!fallback || fallbackKeyCode != event.getKeyCode())) {
3820#if DEBUG_OUTBOUND_EVENT_DETAILS
3821 if (fallback) {
3822 LOGD("Unhandled key event: Policy requested to send key %d"
3823 "as a fallback for %d, but on the DOWN it had requested "
3824 "to send %d instead. Fallback canceled.",
3825 event.getKeyCode(), originalKeyCode, fallbackKeyCode);
3826 } else {
3827 LOGD("Unhandled key event: Policy did not request fallback for %d,"
3828 "but on the DOWN it had requested to send %d. "
3829 "Fallback canceled.",
3830 originalKeyCode, fallbackKeyCode);
3831 }
3832#endif
3833
3834 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
3835 "canceling fallback, policy no longer desires it");
3836 options.keyCode = fallbackKeyCode;
3837 synthesizeCancelationEventsForConnectionLocked(connection, options);
3838
3839 fallback = false;
3840 fallbackKeyCode = AKEYCODE_UNKNOWN;
3841 if (keyEntry->action != AKEY_EVENT_ACTION_UP) {
3842 connection->inputState.setFallbackKey(originalKeyCode,
3843 fallbackKeyCode);
3844 }
3845 }
3846
3847#if DEBUG_OUTBOUND_EVENT_DETAILS
3848 {
3849 String8 msg;
3850 const KeyedVector<int32_t, int32_t>& fallbackKeys =
3851 connection->inputState.getFallbackKeys();
3852 for (size_t i = 0; i < fallbackKeys.size(); i++) {
3853 msg.appendFormat(", %d->%d", fallbackKeys.keyAt(i),
3854 fallbackKeys.valueAt(i));
3855 }
3856 LOGD("Unhandled key event: %d currently tracked fallback keys%s.",
3857 fallbackKeys.size(), msg.string());
3858 }
3859#endif
3860
3861 if (fallback) {
3862 // Restart the dispatch cycle using the fallback key.
3863 keyEntry->eventTime = event.getEventTime();
3864 keyEntry->deviceId = event.getDeviceId();
3865 keyEntry->source = event.getSource();
3866 keyEntry->flags = event.getFlags() | AKEY_EVENT_FLAG_FALLBACK;
3867 keyEntry->keyCode = fallbackKeyCode;
3868 keyEntry->scanCode = event.getScanCode();
3869 keyEntry->metaState = event.getMetaState();
3870 keyEntry->repeatCount = event.getRepeatCount();
3871 keyEntry->downTime = event.getDownTime();
3872 keyEntry->syntheticRepeat = false;
3873
3874#if DEBUG_OUTBOUND_EVENT_DETAILS
3875 LOGD("Unhandled key event: Dispatching fallback key. "
3876 "originalKeyCode=%d, fallbackKeyCode=%d, fallbackMetaState=%08x",
3877 originalKeyCode, fallbackKeyCode, keyEntry->metaState);
3878#endif
3879
3880 dispatchEntry->inProgress = false;
3881 startDispatchCycleLocked(now(), connection);
3882 return true; // already started next cycle
3883 } else {
3884#if DEBUG_OUTBOUND_EVENT_DETAILS
3885 LOGD("Unhandled key event: No fallback key.");
3886#endif
3887 }
3888 }
3889 }
3890 return false;
3891}
3892
3893bool InputDispatcher::afterMotionEventLockedInterruptible(const sp<Connection>& connection,
3894 DispatchEntry* dispatchEntry, MotionEntry* motionEntry, bool handled) {
3895 return false;
Jeff Brown3915bb82010-11-05 15:02:16 -07003896}
3897
Jeff Brownb88102f2010-09-08 11:49:43 -07003898void InputDispatcher::doPokeUserActivityLockedInterruptible(CommandEntry* commandEntry) {
3899 mLock.unlock();
3900
Jeff Brown01ce2e92010-09-26 22:20:12 -07003901 mPolicy->pokeUserActivity(commandEntry->eventTime, commandEntry->userActivityEventType);
Jeff Brownb88102f2010-09-08 11:49:43 -07003902
3903 mLock.lock();
3904}
3905
Jeff Brown3915bb82010-11-05 15:02:16 -07003906void InputDispatcher::initializeKeyEvent(KeyEvent* event, const KeyEntry* entry) {
3907 event->initialize(entry->deviceId, entry->source, entry->action, entry->flags,
3908 entry->keyCode, entry->scanCode, entry->metaState, entry->repeatCount,
3909 entry->downTime, entry->eventTime);
3910}
3911
Jeff Brown519e0242010-09-15 15:18:56 -07003912void InputDispatcher::updateDispatchStatisticsLocked(nsecs_t currentTime, const EventEntry* entry,
3913 int32_t injectionResult, nsecs_t timeSpentWaitingForApplication) {
3914 // TODO Write some statistics about how long we spend waiting.
Jeff Brownb88102f2010-09-08 11:49:43 -07003915}
3916
3917void InputDispatcher::dump(String8& dump) {
Jeff Brownf2f48712010-10-01 17:46:21 -07003918 dump.append("Input Dispatcher State:\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003919 dumpDispatchStateLocked(dump);
Jeff Brown214eaf42011-05-26 19:17:02 -07003920
3921 dump.append(INDENT "Configuration:\n");
3922 dump.appendFormat(INDENT2 "MaxEventsPerSecond: %d\n", mConfig.maxEventsPerSecond);
3923 dump.appendFormat(INDENT2 "KeyRepeatDelay: %0.1fms\n", mConfig.keyRepeatDelay * 0.000001f);
3924 dump.appendFormat(INDENT2 "KeyRepeatTimeout: %0.1fms\n", mConfig.keyRepeatTimeout * 0.000001f);
Jeff Brownb88102f2010-09-08 11:49:43 -07003925}
3926
Jeff Brown9c3cda02010-06-15 01:31:58 -07003927
Jeff Brown519e0242010-09-15 15:18:56 -07003928// --- InputDispatcher::Queue ---
3929
3930template <typename T>
3931uint32_t InputDispatcher::Queue<T>::count() const {
3932 uint32_t result = 0;
3933 for (const T* entry = headSentinel.next; entry != & tailSentinel; entry = entry->next) {
3934 result += 1;
3935 }
3936 return result;
3937}
3938
3939
Jeff Brown46b9ac02010-04-22 18:58:52 -07003940// --- InputDispatcher::Allocator ---
3941
3942InputDispatcher::Allocator::Allocator() {
3943}
3944
Jeff Brown01ce2e92010-09-26 22:20:12 -07003945InputDispatcher::InjectionState*
3946InputDispatcher::Allocator::obtainInjectionState(int32_t injectorPid, int32_t injectorUid) {
3947 InjectionState* injectionState = mInjectionStatePool.alloc();
3948 injectionState->refCount = 1;
3949 injectionState->injectorPid = injectorPid;
3950 injectionState->injectorUid = injectorUid;
3951 injectionState->injectionIsAsync = false;
3952 injectionState->injectionResult = INPUT_EVENT_INJECTION_PENDING;
3953 injectionState->pendingForegroundDispatches = 0;
3954 return injectionState;
3955}
3956
Jeff Brown7fbdc842010-06-17 20:52:56 -07003957void InputDispatcher::Allocator::initializeEventEntry(EventEntry* entry, int32_t type,
Jeff Brownb6997262010-10-08 22:31:17 -07003958 nsecs_t eventTime, uint32_t policyFlags) {
Jeff Brown7fbdc842010-06-17 20:52:56 -07003959 entry->type = type;
3960 entry->refCount = 1;
3961 entry->dispatchInProgress = false;
Christopher Tatee91a5db2010-06-23 16:50:30 -07003962 entry->eventTime = eventTime;
Jeff Brownb6997262010-10-08 22:31:17 -07003963 entry->policyFlags = policyFlags;
Jeff Brown01ce2e92010-09-26 22:20:12 -07003964 entry->injectionState = NULL;
3965}
3966
3967void InputDispatcher::Allocator::releaseEventEntryInjectionState(EventEntry* entry) {
3968 if (entry->injectionState) {
3969 releaseInjectionState(entry->injectionState);
3970 entry->injectionState = NULL;
3971 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07003972}
3973
Jeff Brown46b9ac02010-04-22 18:58:52 -07003974InputDispatcher::ConfigurationChangedEntry*
Jeff Brown7fbdc842010-06-17 20:52:56 -07003975InputDispatcher::Allocator::obtainConfigurationChangedEntry(nsecs_t eventTime) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07003976 ConfigurationChangedEntry* entry = mConfigurationChangeEntryPool.alloc();
Jeff Brownb6997262010-10-08 22:31:17 -07003977 initializeEventEntry(entry, EventEntry::TYPE_CONFIGURATION_CHANGED, eventTime, 0);
Jeff Brown46b9ac02010-04-22 18:58:52 -07003978 return entry;
3979}
3980
Jeff Brown7fbdc842010-06-17 20:52:56 -07003981InputDispatcher::KeyEntry* InputDispatcher::Allocator::obtainKeyEntry(nsecs_t eventTime,
Jeff Brown58a2da82011-01-25 16:02:22 -08003982 int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action,
Jeff Brown7fbdc842010-06-17 20:52:56 -07003983 int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState,
3984 int32_t repeatCount, nsecs_t downTime) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07003985 KeyEntry* entry = mKeyEntryPool.alloc();
Jeff Brownb6997262010-10-08 22:31:17 -07003986 initializeEventEntry(entry, EventEntry::TYPE_KEY, eventTime, policyFlags);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003987
3988 entry->deviceId = deviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -07003989 entry->source = source;
Jeff Brown7fbdc842010-06-17 20:52:56 -07003990 entry->action = action;
3991 entry->flags = flags;
3992 entry->keyCode = keyCode;
3993 entry->scanCode = scanCode;
3994 entry->metaState = metaState;
3995 entry->repeatCount = repeatCount;
3996 entry->downTime = downTime;
Jeff Brownb88102f2010-09-08 11:49:43 -07003997 entry->syntheticRepeat = false;
3998 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN;
Jeff Brown46b9ac02010-04-22 18:58:52 -07003999 return entry;
4000}
4001
Jeff Brown7fbdc842010-06-17 20:52:56 -07004002InputDispatcher::MotionEntry* InputDispatcher::Allocator::obtainMotionEntry(nsecs_t eventTime,
Jeff Brown58a2da82011-01-25 16:02:22 -08004003 int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004004 int32_t metaState, int32_t buttonState,
4005 int32_t edgeFlags, float xPrecision, float yPrecision,
Jeff Brown7fbdc842010-06-17 20:52:56 -07004006 nsecs_t downTime, uint32_t pointerCount,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004007 const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07004008 MotionEntry* entry = mMotionEntryPool.alloc();
Jeff Brownb6997262010-10-08 22:31:17 -07004009 initializeEventEntry(entry, EventEntry::TYPE_MOTION, eventTime, policyFlags);
Jeff Brown7fbdc842010-06-17 20:52:56 -07004010
4011 entry->eventTime = eventTime;
4012 entry->deviceId = deviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -07004013 entry->source = source;
Jeff Brown7fbdc842010-06-17 20:52:56 -07004014 entry->action = action;
Jeff Brown85a31762010-09-01 17:01:00 -07004015 entry->flags = flags;
Jeff Brown7fbdc842010-06-17 20:52:56 -07004016 entry->metaState = metaState;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004017 entry->buttonState = buttonState;
Jeff Brown7fbdc842010-06-17 20:52:56 -07004018 entry->edgeFlags = edgeFlags;
4019 entry->xPrecision = xPrecision;
4020 entry->yPrecision = yPrecision;
4021 entry->downTime = downTime;
4022 entry->pointerCount = pointerCount;
4023 entry->firstSample.eventTime = eventTime;
Jeff Brown4e91a182011-04-07 11:38:09 -07004024 entry->firstSample.eventTimeBeforeCoalescing = eventTime;
Jeff Brown46b9ac02010-04-22 18:58:52 -07004025 entry->firstSample.next = NULL;
Jeff Brown7fbdc842010-06-17 20:52:56 -07004026 entry->lastSample = & entry->firstSample;
4027 for (uint32_t i = 0; i < pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004028 entry->pointerProperties[i].copyFrom(pointerProperties[i]);
Jeff Brownace13b12011-03-09 17:39:48 -08004029 entry->firstSample.pointerCoords[i].copyFrom(pointerCoords[i]);
Jeff Brown7fbdc842010-06-17 20:52:56 -07004030 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07004031 return entry;
4032}
4033
4034InputDispatcher::DispatchEntry* InputDispatcher::Allocator::obtainDispatchEntry(
Jeff Brownb88102f2010-09-08 11:49:43 -07004035 EventEntry* eventEntry,
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004036 int32_t targetFlags, float xOffset, float yOffset, float scaleFactor) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07004037 DispatchEntry* entry = mDispatchEntryPool.alloc();
4038 entry->eventEntry = eventEntry;
4039 eventEntry->refCount += 1;
Jeff Brownb88102f2010-09-08 11:49:43 -07004040 entry->targetFlags = targetFlags;
4041 entry->xOffset = xOffset;
4042 entry->yOffset = yOffset;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004043 entry->scaleFactor = scaleFactor;
Jeff Brownb88102f2010-09-08 11:49:43 -07004044 entry->inProgress = false;
4045 entry->headMotionSample = NULL;
4046 entry->tailMotionSample = NULL;
Jeff Brown46b9ac02010-04-22 18:58:52 -07004047 return entry;
4048}
4049
Jeff Brown9c3cda02010-06-15 01:31:58 -07004050InputDispatcher::CommandEntry* InputDispatcher::Allocator::obtainCommandEntry(Command command) {
4051 CommandEntry* entry = mCommandEntryPool.alloc();
4052 entry->command = command;
4053 return entry;
4054}
4055
Jeff Brown01ce2e92010-09-26 22:20:12 -07004056void InputDispatcher::Allocator::releaseInjectionState(InjectionState* injectionState) {
4057 injectionState->refCount -= 1;
4058 if (injectionState->refCount == 0) {
4059 mInjectionStatePool.free(injectionState);
4060 } else {
Jeff Brownb6110c22011-04-01 16:15:13 -07004061 LOG_ASSERT(injectionState->refCount > 0);
Jeff Brown01ce2e92010-09-26 22:20:12 -07004062 }
4063}
4064
Jeff Brown46b9ac02010-04-22 18:58:52 -07004065void InputDispatcher::Allocator::releaseEventEntry(EventEntry* entry) {
4066 switch (entry->type) {
4067 case EventEntry::TYPE_CONFIGURATION_CHANGED:
4068 releaseConfigurationChangedEntry(static_cast<ConfigurationChangedEntry*>(entry));
4069 break;
4070 case EventEntry::TYPE_KEY:
4071 releaseKeyEntry(static_cast<KeyEntry*>(entry));
4072 break;
4073 case EventEntry::TYPE_MOTION:
4074 releaseMotionEntry(static_cast<MotionEntry*>(entry));
4075 break;
4076 default:
Jeff Brownb6110c22011-04-01 16:15:13 -07004077 LOG_ASSERT(false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004078 break;
4079 }
4080}
4081
4082void InputDispatcher::Allocator::releaseConfigurationChangedEntry(
4083 ConfigurationChangedEntry* entry) {
4084 entry->refCount -= 1;
4085 if (entry->refCount == 0) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004086 releaseEventEntryInjectionState(entry);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004087 mConfigurationChangeEntryPool.free(entry);
4088 } else {
Jeff Brownb6110c22011-04-01 16:15:13 -07004089 LOG_ASSERT(entry->refCount > 0);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004090 }
4091}
4092
4093void InputDispatcher::Allocator::releaseKeyEntry(KeyEntry* entry) {
4094 entry->refCount -= 1;
4095 if (entry->refCount == 0) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004096 releaseEventEntryInjectionState(entry);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004097 mKeyEntryPool.free(entry);
4098 } else {
Jeff Brownb6110c22011-04-01 16:15:13 -07004099 LOG_ASSERT(entry->refCount > 0);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004100 }
4101}
4102
4103void InputDispatcher::Allocator::releaseMotionEntry(MotionEntry* entry) {
4104 entry->refCount -= 1;
4105 if (entry->refCount == 0) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004106 releaseEventEntryInjectionState(entry);
Jeff Brown9c3cda02010-06-15 01:31:58 -07004107 for (MotionSample* sample = entry->firstSample.next; sample != NULL; ) {
4108 MotionSample* next = sample->next;
4109 mMotionSamplePool.free(sample);
4110 sample = next;
4111 }
Jeff Brown46b9ac02010-04-22 18:58:52 -07004112 mMotionEntryPool.free(entry);
4113 } else {
Jeff Brownb6110c22011-04-01 16:15:13 -07004114 LOG_ASSERT(entry->refCount > 0);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004115 }
4116}
4117
Jeff Browna032cc02011-03-07 16:56:21 -08004118void InputDispatcher::Allocator::freeMotionSample(MotionSample* sample) {
4119 mMotionSamplePool.free(sample);
4120}
4121
Jeff Brown46b9ac02010-04-22 18:58:52 -07004122void InputDispatcher::Allocator::releaseDispatchEntry(DispatchEntry* entry) {
4123 releaseEventEntry(entry->eventEntry);
4124 mDispatchEntryPool.free(entry);
4125}
4126
Jeff Brown9c3cda02010-06-15 01:31:58 -07004127void InputDispatcher::Allocator::releaseCommandEntry(CommandEntry* entry) {
4128 mCommandEntryPool.free(entry);
4129}
4130
Jeff Brown46b9ac02010-04-22 18:58:52 -07004131void InputDispatcher::Allocator::appendMotionSample(MotionEntry* motionEntry,
Jeff Brown7fbdc842010-06-17 20:52:56 -07004132 nsecs_t eventTime, const PointerCoords* pointerCoords) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07004133 MotionSample* sample = mMotionSamplePool.alloc();
4134 sample->eventTime = eventTime;
Jeff Brown4e91a182011-04-07 11:38:09 -07004135 sample->eventTimeBeforeCoalescing = eventTime;
Jeff Brown7fbdc842010-06-17 20:52:56 -07004136 uint32_t pointerCount = motionEntry->pointerCount;
4137 for (uint32_t i = 0; i < pointerCount; i++) {
Jeff Brownace13b12011-03-09 17:39:48 -08004138 sample->pointerCoords[i].copyFrom(pointerCoords[i]);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004139 }
4140
4141 sample->next = NULL;
4142 motionEntry->lastSample->next = sample;
4143 motionEntry->lastSample = sample;
4144}
4145
Jeff Brown01ce2e92010-09-26 22:20:12 -07004146void InputDispatcher::Allocator::recycleKeyEntry(KeyEntry* keyEntry) {
4147 releaseEventEntryInjectionState(keyEntry);
Jeff Brownb88102f2010-09-08 11:49:43 -07004148
Jeff Brown01ce2e92010-09-26 22:20:12 -07004149 keyEntry->dispatchInProgress = false;
4150 keyEntry->syntheticRepeat = false;
4151 keyEntry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN;
Jeff Brownb88102f2010-09-08 11:49:43 -07004152}
4153
4154
Jeff Brownae9fc032010-08-18 15:51:08 -07004155// --- InputDispatcher::MotionEntry ---
4156
4157uint32_t InputDispatcher::MotionEntry::countSamples() const {
4158 uint32_t count = 1;
4159 for (MotionSample* sample = firstSample.next; sample != NULL; sample = sample->next) {
4160 count += 1;
4161 }
4162 return count;
4163}
4164
Jeff Brown4e91a182011-04-07 11:38:09 -07004165bool InputDispatcher::MotionEntry::canAppendSamples(int32_t action, uint32_t pointerCount,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004166 const PointerProperties* pointerProperties) const {
Jeff Brown4e91a182011-04-07 11:38:09 -07004167 if (this->action != action
4168 || this->pointerCount != pointerCount
4169 || this->isInjected()) {
4170 return false;
4171 }
4172 for (uint32_t i = 0; i < pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004173 if (this->pointerProperties[i] != pointerProperties[i]) {
Jeff Brown4e91a182011-04-07 11:38:09 -07004174 return false;
4175 }
4176 }
4177 return true;
4178}
4179
Jeff Brownb88102f2010-09-08 11:49:43 -07004180
4181// --- InputDispatcher::InputState ---
4182
Jeff Brownb6997262010-10-08 22:31:17 -07004183InputDispatcher::InputState::InputState() {
Jeff Brownb88102f2010-09-08 11:49:43 -07004184}
4185
4186InputDispatcher::InputState::~InputState() {
4187}
4188
4189bool InputDispatcher::InputState::isNeutral() const {
4190 return mKeyMementos.isEmpty() && mMotionMementos.isEmpty();
4191}
4192
Jeff Brown81346812011-06-28 20:08:48 -07004193bool InputDispatcher::InputState::isHovering(int32_t deviceId, uint32_t source) const {
4194 for (size_t i = 0; i < mMotionMementos.size(); i++) {
4195 const MotionMemento& memento = mMotionMementos.itemAt(i);
4196 if (memento.deviceId == deviceId
4197 && memento.source == source
4198 && memento.hovering) {
4199 return true;
4200 }
4201 }
4202 return false;
4203}
Jeff Brownb88102f2010-09-08 11:49:43 -07004204
Jeff Brown81346812011-06-28 20:08:48 -07004205bool InputDispatcher::InputState::trackKey(const KeyEntry* entry,
4206 int32_t action, int32_t flags) {
4207 switch (action) {
4208 case AKEY_EVENT_ACTION_UP: {
4209 if (entry->flags & AKEY_EVENT_FLAG_FALLBACK) {
4210 for (size_t i = 0; i < mFallbackKeys.size(); ) {
4211 if (mFallbackKeys.valueAt(i) == entry->keyCode) {
4212 mFallbackKeys.removeItemsAt(i);
4213 } else {
4214 i += 1;
4215 }
4216 }
4217 }
4218 ssize_t index = findKeyMemento(entry);
4219 if (index >= 0) {
4220 mKeyMementos.removeAt(index);
4221 return true;
4222 }
4223#if DEBUG_OUTBOUND_EVENT_DETAILS
4224 LOGD("Dropping inconsistent key up event: deviceId=%d, source=%08x, "
4225 "keyCode=%d, scanCode=%d",
4226 entry->deviceId, entry->source, entry->keyCode, entry->scanCode);
4227#endif
4228 return false;
4229 }
4230
4231 case AKEY_EVENT_ACTION_DOWN: {
4232 ssize_t index = findKeyMemento(entry);
4233 if (index >= 0) {
4234 mKeyMementos.removeAt(index);
4235 }
4236 addKeyMemento(entry, flags);
4237 return true;
4238 }
4239
4240 default:
4241 return true;
Jeff Brownb88102f2010-09-08 11:49:43 -07004242 }
4243}
4244
Jeff Brown81346812011-06-28 20:08:48 -07004245bool InputDispatcher::InputState::trackMotion(const MotionEntry* entry,
4246 int32_t action, int32_t flags) {
4247 int32_t actionMasked = action & AMOTION_EVENT_ACTION_MASK;
4248 switch (actionMasked) {
4249 case AMOTION_EVENT_ACTION_UP:
4250 case AMOTION_EVENT_ACTION_CANCEL: {
4251 ssize_t index = findMotionMemento(entry, false /*hovering*/);
4252 if (index >= 0) {
4253 mMotionMementos.removeAt(index);
4254 return true;
Jeff Brownda3d5a92011-03-29 15:11:34 -07004255 }
Jeff Brown81346812011-06-28 20:08:48 -07004256#if DEBUG_OUTBOUND_EVENT_DETAILS
4257 LOGD("Dropping inconsistent motion up or cancel event: deviceId=%d, source=%08x, "
4258 "actionMasked=%d",
4259 entry->deviceId, entry->source, actionMasked);
4260#endif
4261 return false;
Jeff Brownda3d5a92011-03-29 15:11:34 -07004262 }
4263
Jeff Brown81346812011-06-28 20:08:48 -07004264 case AMOTION_EVENT_ACTION_DOWN: {
4265 ssize_t index = findMotionMemento(entry, false /*hovering*/);
4266 if (index >= 0) {
4267 mMotionMementos.removeAt(index);
4268 }
4269 addMotionMemento(entry, flags, false /*hovering*/);
4270 return true;
4271 }
4272
4273 case AMOTION_EVENT_ACTION_POINTER_UP:
4274 case AMOTION_EVENT_ACTION_POINTER_DOWN:
4275 case AMOTION_EVENT_ACTION_MOVE: {
4276 ssize_t index = findMotionMemento(entry, false /*hovering*/);
4277 if (index >= 0) {
4278 MotionMemento& memento = mMotionMementos.editItemAt(index);
4279 memento.setPointers(entry);
4280 return true;
4281 }
Jeff Brown2e45fb62011-06-29 21:19:05 -07004282 if (actionMasked == AMOTION_EVENT_ACTION_MOVE
4283 && (entry->source & (AINPUT_SOURCE_CLASS_JOYSTICK
4284 | AINPUT_SOURCE_CLASS_NAVIGATION))) {
4285 // Joysticks and trackballs can send MOVE events without corresponding DOWN or UP.
4286 return true;
4287 }
Jeff Brown81346812011-06-28 20:08:48 -07004288#if DEBUG_OUTBOUND_EVENT_DETAILS
4289 LOGD("Dropping inconsistent motion pointer up/down or move event: "
4290 "deviceId=%d, source=%08x, actionMasked=%d",
4291 entry->deviceId, entry->source, actionMasked);
4292#endif
4293 return false;
4294 }
4295
4296 case AMOTION_EVENT_ACTION_HOVER_EXIT: {
4297 ssize_t index = findMotionMemento(entry, true /*hovering*/);
4298 if (index >= 0) {
4299 mMotionMementos.removeAt(index);
4300 return true;
4301 }
4302#if DEBUG_OUTBOUND_EVENT_DETAILS
4303 LOGD("Dropping inconsistent motion hover exit event: deviceId=%d, source=%08x",
4304 entry->deviceId, entry->source);
4305#endif
4306 return false;
4307 }
4308
4309 case AMOTION_EVENT_ACTION_HOVER_ENTER:
4310 case AMOTION_EVENT_ACTION_HOVER_MOVE: {
4311 ssize_t index = findMotionMemento(entry, true /*hovering*/);
4312 if (index >= 0) {
4313 mMotionMementos.removeAt(index);
4314 }
4315 addMotionMemento(entry, flags, true /*hovering*/);
4316 return true;
4317 }
4318
4319 default:
4320 return true;
4321 }
4322}
4323
4324ssize_t InputDispatcher::InputState::findKeyMemento(const KeyEntry* entry) const {
Jeff Brownb88102f2010-09-08 11:49:43 -07004325 for (size_t i = 0; i < mKeyMementos.size(); i++) {
Jeff Brown81346812011-06-28 20:08:48 -07004326 const KeyMemento& memento = mKeyMementos.itemAt(i);
Jeff Brownb88102f2010-09-08 11:49:43 -07004327 if (memento.deviceId == entry->deviceId
4328 && memento.source == entry->source
4329 && memento.keyCode == entry->keyCode
4330 && memento.scanCode == entry->scanCode) {
Jeff Brown81346812011-06-28 20:08:48 -07004331 return i;
Jeff Brownb88102f2010-09-08 11:49:43 -07004332 }
4333 }
Jeff Brown81346812011-06-28 20:08:48 -07004334 return -1;
Jeff Brownb88102f2010-09-08 11:49:43 -07004335}
4336
Jeff Brown81346812011-06-28 20:08:48 -07004337ssize_t InputDispatcher::InputState::findMotionMemento(const MotionEntry* entry,
4338 bool hovering) const {
Jeff Brownb88102f2010-09-08 11:49:43 -07004339 for (size_t i = 0; i < mMotionMementos.size(); i++) {
Jeff Brown81346812011-06-28 20:08:48 -07004340 const MotionMemento& memento = mMotionMementos.itemAt(i);
Jeff Brownb88102f2010-09-08 11:49:43 -07004341 if (memento.deviceId == entry->deviceId
Jeff Brown81346812011-06-28 20:08:48 -07004342 && memento.source == entry->source
4343 && memento.hovering == hovering) {
4344 return i;
Jeff Brownb88102f2010-09-08 11:49:43 -07004345 }
4346 }
Jeff Brown81346812011-06-28 20:08:48 -07004347 return -1;
4348}
Jeff Brownb88102f2010-09-08 11:49:43 -07004349
Jeff Brown81346812011-06-28 20:08:48 -07004350void InputDispatcher::InputState::addKeyMemento(const KeyEntry* entry, int32_t flags) {
4351 mKeyMementos.push();
4352 KeyMemento& memento = mKeyMementos.editTop();
4353 memento.deviceId = entry->deviceId;
4354 memento.source = entry->source;
4355 memento.keyCode = entry->keyCode;
4356 memento.scanCode = entry->scanCode;
4357 memento.flags = flags;
4358 memento.downTime = entry->downTime;
4359}
4360
4361void InputDispatcher::InputState::addMotionMemento(const MotionEntry* entry,
4362 int32_t flags, bool hovering) {
4363 mMotionMementos.push();
4364 MotionMemento& memento = mMotionMementos.editTop();
4365 memento.deviceId = entry->deviceId;
4366 memento.source = entry->source;
4367 memento.flags = flags;
4368 memento.xPrecision = entry->xPrecision;
4369 memento.yPrecision = entry->yPrecision;
4370 memento.downTime = entry->downTime;
4371 memento.setPointers(entry);
4372 memento.hovering = hovering;
Jeff Brownb88102f2010-09-08 11:49:43 -07004373}
4374
4375void InputDispatcher::InputState::MotionMemento::setPointers(const MotionEntry* entry) {
4376 pointerCount = entry->pointerCount;
4377 for (uint32_t i = 0; i < entry->pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004378 pointerProperties[i].copyFrom(entry->pointerProperties[i]);
Jeff Brownace13b12011-03-09 17:39:48 -08004379 pointerCoords[i].copyFrom(entry->lastSample->pointerCoords[i]);
Jeff Brownb88102f2010-09-08 11:49:43 -07004380 }
4381}
4382
Jeff Brownb6997262010-10-08 22:31:17 -07004383void InputDispatcher::InputState::synthesizeCancelationEvents(nsecs_t currentTime,
4384 Allocator* allocator, Vector<EventEntry*>& outEvents,
Jeff Brownda3d5a92011-03-29 15:11:34 -07004385 const CancelationOptions& options) {
Jeff Brown81346812011-06-28 20:08:48 -07004386 for (size_t i = 0; i < mKeyMementos.size(); i++) {
Jeff Brownb88102f2010-09-08 11:49:43 -07004387 const KeyMemento& memento = mKeyMementos.itemAt(i);
Jeff Brown49ed71d2010-12-06 17:13:33 -08004388 if (shouldCancelKey(memento, options)) {
Jeff Brownb6997262010-10-08 22:31:17 -07004389 outEvents.push(allocator->obtainKeyEntry(currentTime,
4390 memento.deviceId, memento.source, 0,
Jeff Brown49ed71d2010-12-06 17:13:33 -08004391 AKEY_EVENT_ACTION_UP, memento.flags | AKEY_EVENT_FLAG_CANCELED,
Jeff Brownb6997262010-10-08 22:31:17 -07004392 memento.keyCode, memento.scanCode, 0, 0, memento.downTime));
Jeff Brownb6997262010-10-08 22:31:17 -07004393 }
Jeff Brownb88102f2010-09-08 11:49:43 -07004394 }
4395
Jeff Brown81346812011-06-28 20:08:48 -07004396 for (size_t i = 0; i < mMotionMementos.size(); i++) {
Jeff Brownb88102f2010-09-08 11:49:43 -07004397 const MotionMemento& memento = mMotionMementos.itemAt(i);
Jeff Brown49ed71d2010-12-06 17:13:33 -08004398 if (shouldCancelMotion(memento, options)) {
Jeff Brownb6997262010-10-08 22:31:17 -07004399 outEvents.push(allocator->obtainMotionEntry(currentTime,
4400 memento.deviceId, memento.source, 0,
Jeff Browna032cc02011-03-07 16:56:21 -08004401 memento.hovering
4402 ? AMOTION_EVENT_ACTION_HOVER_EXIT
4403 : AMOTION_EVENT_ACTION_CANCEL,
Jeff Brown81346812011-06-28 20:08:48 -07004404 memento.flags, 0, 0, 0,
Jeff Brownb6997262010-10-08 22:31:17 -07004405 memento.xPrecision, memento.yPrecision, memento.downTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004406 memento.pointerCount, memento.pointerProperties, memento.pointerCoords));
Jeff Brownb6997262010-10-08 22:31:17 -07004407 }
Jeff Brownb88102f2010-09-08 11:49:43 -07004408 }
4409}
4410
4411void InputDispatcher::InputState::clear() {
4412 mKeyMementos.clear();
4413 mMotionMementos.clear();
Jeff Brownda3d5a92011-03-29 15:11:34 -07004414 mFallbackKeys.clear();
Jeff Brownb6997262010-10-08 22:31:17 -07004415}
4416
Jeff Brown9c9f1a32010-10-11 18:32:20 -07004417void InputDispatcher::InputState::copyPointerStateTo(InputState& other) const {
4418 for (size_t i = 0; i < mMotionMementos.size(); i++) {
4419 const MotionMemento& memento = mMotionMementos.itemAt(i);
4420 if (memento.source & AINPUT_SOURCE_CLASS_POINTER) {
4421 for (size_t j = 0; j < other.mMotionMementos.size(); ) {
4422 const MotionMemento& otherMemento = other.mMotionMementos.itemAt(j);
4423 if (memento.deviceId == otherMemento.deviceId
4424 && memento.source == otherMemento.source) {
4425 other.mMotionMementos.removeAt(j);
4426 } else {
4427 j += 1;
4428 }
4429 }
4430 other.mMotionMementos.push(memento);
4431 }
4432 }
4433}
4434
Jeff Brownda3d5a92011-03-29 15:11:34 -07004435int32_t InputDispatcher::InputState::getFallbackKey(int32_t originalKeyCode) {
4436 ssize_t index = mFallbackKeys.indexOfKey(originalKeyCode);
4437 return index >= 0 ? mFallbackKeys.valueAt(index) : -1;
4438}
4439
4440void InputDispatcher::InputState::setFallbackKey(int32_t originalKeyCode,
4441 int32_t fallbackKeyCode) {
4442 ssize_t index = mFallbackKeys.indexOfKey(originalKeyCode);
4443 if (index >= 0) {
4444 mFallbackKeys.replaceValueAt(index, fallbackKeyCode);
4445 } else {
4446 mFallbackKeys.add(originalKeyCode, fallbackKeyCode);
4447 }
4448}
4449
4450void InputDispatcher::InputState::removeFallbackKey(int32_t originalKeyCode) {
4451 mFallbackKeys.removeItem(originalKeyCode);
4452}
4453
Jeff Brown49ed71d2010-12-06 17:13:33 -08004454bool InputDispatcher::InputState::shouldCancelKey(const KeyMemento& memento,
Jeff Brownda3d5a92011-03-29 15:11:34 -07004455 const CancelationOptions& options) {
4456 if (options.keyCode != -1 && memento.keyCode != options.keyCode) {
4457 return false;
4458 }
4459
4460 switch (options.mode) {
4461 case CancelationOptions::CANCEL_ALL_EVENTS:
4462 case CancelationOptions::CANCEL_NON_POINTER_EVENTS:
Jeff Brownb6997262010-10-08 22:31:17 -07004463 return true;
Jeff Brownda3d5a92011-03-29 15:11:34 -07004464 case CancelationOptions::CANCEL_FALLBACK_EVENTS:
Jeff Brown49ed71d2010-12-06 17:13:33 -08004465 return memento.flags & AKEY_EVENT_FLAG_FALLBACK;
4466 default:
4467 return false;
4468 }
4469}
4470
4471bool InputDispatcher::InputState::shouldCancelMotion(const MotionMemento& memento,
Jeff Brownda3d5a92011-03-29 15:11:34 -07004472 const CancelationOptions& options) {
4473 switch (options.mode) {
4474 case CancelationOptions::CANCEL_ALL_EVENTS:
Jeff Brown49ed71d2010-12-06 17:13:33 -08004475 return true;
Jeff Brownda3d5a92011-03-29 15:11:34 -07004476 case CancelationOptions::CANCEL_POINTER_EVENTS:
Jeff Brown49ed71d2010-12-06 17:13:33 -08004477 return memento.source & AINPUT_SOURCE_CLASS_POINTER;
Jeff Brownda3d5a92011-03-29 15:11:34 -07004478 case CancelationOptions::CANCEL_NON_POINTER_EVENTS:
Jeff Brown49ed71d2010-12-06 17:13:33 -08004479 return !(memento.source & AINPUT_SOURCE_CLASS_POINTER);
4480 default:
4481 return false;
Jeff Brownb6997262010-10-08 22:31:17 -07004482 }
Jeff Brownb88102f2010-09-08 11:49:43 -07004483}
4484
4485
Jeff Brown46b9ac02010-04-22 18:58:52 -07004486// --- InputDispatcher::Connection ---
4487
Jeff Brown928e0542011-01-10 11:17:36 -08004488InputDispatcher::Connection::Connection(const sp<InputChannel>& inputChannel,
4489 const sp<InputWindowHandle>& inputWindowHandle) :
4490 status(STATUS_NORMAL), inputChannel(inputChannel), inputWindowHandle(inputWindowHandle),
4491 inputPublisher(inputChannel),
Jeff Brownda3d5a92011-03-29 15:11:34 -07004492 lastEventTime(LONG_LONG_MAX), lastDispatchTime(LONG_LONG_MAX) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07004493}
4494
4495InputDispatcher::Connection::~Connection() {
4496}
4497
4498status_t InputDispatcher::Connection::initialize() {
4499 return inputPublisher.initialize();
4500}
4501
Jeff Brown9c3cda02010-06-15 01:31:58 -07004502const char* InputDispatcher::Connection::getStatusLabel() const {
4503 switch (status) {
4504 case STATUS_NORMAL:
4505 return "NORMAL";
4506
4507 case STATUS_BROKEN:
4508 return "BROKEN";
4509
Jeff Brown9c3cda02010-06-15 01:31:58 -07004510 case STATUS_ZOMBIE:
4511 return "ZOMBIE";
4512
4513 default:
4514 return "UNKNOWN";
4515 }
4516}
4517
Jeff Brown46b9ac02010-04-22 18:58:52 -07004518InputDispatcher::DispatchEntry* InputDispatcher::Connection::findQueuedDispatchEntryForEvent(
4519 const EventEntry* eventEntry) const {
Jeff Brownb88102f2010-09-08 11:49:43 -07004520 for (DispatchEntry* dispatchEntry = outboundQueue.tailSentinel.prev;
4521 dispatchEntry != & outboundQueue.headSentinel; dispatchEntry = dispatchEntry->prev) {
Jeff Brown46b9ac02010-04-22 18:58:52 -07004522 if (dispatchEntry->eventEntry == eventEntry) {
4523 return dispatchEntry;
4524 }
4525 }
4526 return NULL;
4527}
4528
Jeff Brownb88102f2010-09-08 11:49:43 -07004529
Jeff Brown9c3cda02010-06-15 01:31:58 -07004530// --- InputDispatcher::CommandEntry ---
4531
Jeff Brownb88102f2010-09-08 11:49:43 -07004532InputDispatcher::CommandEntry::CommandEntry() :
4533 keyEntry(NULL) {
Jeff Brown9c3cda02010-06-15 01:31:58 -07004534}
4535
4536InputDispatcher::CommandEntry::~CommandEntry() {
4537}
4538
Jeff Brown46b9ac02010-04-22 18:58:52 -07004539
Jeff Brown01ce2e92010-09-26 22:20:12 -07004540// --- InputDispatcher::TouchState ---
4541
4542InputDispatcher::TouchState::TouchState() :
Jeff Brown58a2da82011-01-25 16:02:22 -08004543 down(false), split(false), deviceId(-1), source(0) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004544}
4545
4546InputDispatcher::TouchState::~TouchState() {
4547}
4548
4549void InputDispatcher::TouchState::reset() {
4550 down = false;
4551 split = false;
Jeff Brown95712852011-01-04 19:41:59 -08004552 deviceId = -1;
Jeff Brown58a2da82011-01-25 16:02:22 -08004553 source = 0;
Jeff Brown01ce2e92010-09-26 22:20:12 -07004554 windows.clear();
4555}
4556
4557void InputDispatcher::TouchState::copyFrom(const TouchState& other) {
4558 down = other.down;
4559 split = other.split;
Jeff Brown95712852011-01-04 19:41:59 -08004560 deviceId = other.deviceId;
Jeff Brown58a2da82011-01-25 16:02:22 -08004561 source = other.source;
Jeff Brown01ce2e92010-09-26 22:20:12 -07004562 windows.clear();
4563 windows.appendVector(other.windows);
4564}
4565
4566void InputDispatcher::TouchState::addOrUpdateWindow(const InputWindow* window,
4567 int32_t targetFlags, BitSet32 pointerIds) {
4568 if (targetFlags & InputTarget::FLAG_SPLIT) {
4569 split = true;
4570 }
4571
4572 for (size_t i = 0; i < windows.size(); i++) {
4573 TouchedWindow& touchedWindow = windows.editItemAt(i);
4574 if (touchedWindow.window == window) {
4575 touchedWindow.targetFlags |= targetFlags;
Jeff Brown98db5fa2011-06-08 15:37:10 -07004576 if (targetFlags & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT) {
4577 touchedWindow.targetFlags &= ~InputTarget::FLAG_DISPATCH_AS_IS;
4578 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07004579 touchedWindow.pointerIds.value |= pointerIds.value;
4580 return;
4581 }
4582 }
4583
4584 windows.push();
4585
4586 TouchedWindow& touchedWindow = windows.editTop();
4587 touchedWindow.window = window;
4588 touchedWindow.targetFlags = targetFlags;
4589 touchedWindow.pointerIds = pointerIds;
4590 touchedWindow.channel = window->inputChannel;
4591}
4592
Jeff Browna032cc02011-03-07 16:56:21 -08004593void InputDispatcher::TouchState::filterNonAsIsTouchWindows() {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004594 for (size_t i = 0 ; i < windows.size(); ) {
Jeff Browna032cc02011-03-07 16:56:21 -08004595 TouchedWindow& window = windows.editItemAt(i);
Jeff Brown98db5fa2011-06-08 15:37:10 -07004596 if (window.targetFlags & (InputTarget::FLAG_DISPATCH_AS_IS
4597 | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER)) {
Jeff Browna032cc02011-03-07 16:56:21 -08004598 window.targetFlags &= ~InputTarget::FLAG_DISPATCH_MASK;
4599 window.targetFlags |= InputTarget::FLAG_DISPATCH_AS_IS;
Jeff Brown01ce2e92010-09-26 22:20:12 -07004600 i += 1;
Jeff Browna032cc02011-03-07 16:56:21 -08004601 } else {
4602 windows.removeAt(i);
Jeff Brown01ce2e92010-09-26 22:20:12 -07004603 }
4604 }
4605}
4606
Jeff Brown98db5fa2011-06-08 15:37:10 -07004607const InputWindow* InputDispatcher::TouchState::getFirstForegroundWindow() const {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004608 for (size_t i = 0; i < windows.size(); i++) {
Jeff Brown98db5fa2011-06-08 15:37:10 -07004609 const TouchedWindow& window = windows.itemAt(i);
4610 if (window.targetFlags & InputTarget::FLAG_FOREGROUND) {
4611 return window.window;
Jeff Brown01ce2e92010-09-26 22:20:12 -07004612 }
4613 }
4614 return NULL;
4615}
4616
Jeff Brown98db5fa2011-06-08 15:37:10 -07004617bool InputDispatcher::TouchState::isSlippery() const {
4618 // Must have exactly one foreground window.
4619 bool haveSlipperyForegroundWindow = false;
4620 for (size_t i = 0; i < windows.size(); i++) {
4621 const TouchedWindow& window = windows.itemAt(i);
4622 if (window.targetFlags & InputTarget::FLAG_FOREGROUND) {
4623 if (haveSlipperyForegroundWindow
4624 || !(window.window->layoutParamsFlags & InputWindow::FLAG_SLIPPERY)) {
4625 return false;
4626 }
4627 haveSlipperyForegroundWindow = true;
4628 }
4629 }
4630 return haveSlipperyForegroundWindow;
4631}
4632
Jeff Brown01ce2e92010-09-26 22:20:12 -07004633
Jeff Brown46b9ac02010-04-22 18:58:52 -07004634// --- InputDispatcherThread ---
4635
4636InputDispatcherThread::InputDispatcherThread(const sp<InputDispatcherInterface>& dispatcher) :
4637 Thread(/*canCallJava*/ true), mDispatcher(dispatcher) {
4638}
4639
4640InputDispatcherThread::~InputDispatcherThread() {
4641}
4642
4643bool InputDispatcherThread::threadLoop() {
4644 mDispatcher->dispatchOnce();
4645 return true;
4646}
4647
4648} // namespace android