blob: 4a50d8a7eda82cf676310456466a0d28a796f0ac [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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-04-22 18:58:52 -070056#include <cutils/log.h>
Jeff Brownb88102f2010-09-08 11:49:43 -070057#include <ui/PowerManager.h>
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070058
59#include <stddef.h>
60#include <unistd.h>
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070061#include <errno.h>
62#include <limits.h>
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070063
Jeff Brownf2f487182010-10-01 17:46:21 -070064#define INDENT " "
65#define INDENT2 " "
66
Jeff Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-04-22 18:58:52 -0700250
251 while (mConnectionsByReceiveFd.size() != 0) {
252 unregisterInputChannel(mConnectionsByReceiveFd.valueAt(0)->inputChannel);
253 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700254}
255
256void InputDispatcher::dispatchOnce() {
Jeff Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-04-22 18:58:52 -0700264 }
Jeff Brown46b9ac0a2010-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 "
572 "has started interating with a different application.");
573 reason = "inbound event was dropped because the current application is not responding "
574 "and the user has started interating with a different application";
575 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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-04-22 18:58:52 -0700663 }
Jeff Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-04-22 18:58:52 -0700721}
722
Jeff Brownb88102f2010-09-08 11:49:43 -0700723bool InputDispatcher::dispatchConfigurationChangedLocked(
724 nsecs_t currentTime, ConfigurationChangedEntry* entry) {
Jeff Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-04-22 18:58:52 -0700975 LOGD(" ... Total movement samples currently batched %d ...", sampleCount);
976 }
977#endif
Jeff Brown46b9ac0a2010-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 Brown46b9ac0a2010-04-22 18:58:52 -0700984 "resumeWithAppendedMotionSample=%s",
Jeff Brownb88102f2010-09-08 11:49:43 -0700985 toString(resumeWithAppendedMotionSample));
Jeff Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-04-22 18:58:52 -07001004 inputTarget.inputChannel->getName().string());
Jeff Brownb6997262010-10-08 22:31:17 -07001005#endif
Jeff Brown46b9ac0a2010-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;
1242 bool wrongDevice = mTouchState.down
1243 && (mTouchState.deviceId != entry->deviceId
1244 || mTouchState.source != entry->source);
Jeff Browna032cc02011-03-07 16:56:21 -08001245 bool isHoverAction = (maskedAction == AMOTION_EVENT_ACTION_HOVER_MOVE
1246 || maskedAction == AMOTION_EVENT_ACTION_HOVER_ENTER
1247 || maskedAction == AMOTION_EVENT_ACTION_HOVER_EXIT);
1248 bool newGesture = (maskedAction == AMOTION_EVENT_ACTION_DOWN
1249 || maskedAction == AMOTION_EVENT_ACTION_SCROLL
1250 || isHoverAction);
1251 if (newGesture) {
Jeff Browncc0c1592011-02-19 05:07:28 -08001252 bool down = maskedAction == AMOTION_EVENT_ACTION_DOWN;
1253 if (wrongDevice && !down) {
1254 mTempTouchState.copyFrom(mTouchState);
1255 } else {
1256 mTempTouchState.reset();
1257 mTempTouchState.down = down;
1258 mTempTouchState.deviceId = entry->deviceId;
1259 mTempTouchState.source = entry->source;
1260 isSplit = false;
1261 wrongDevice = false;
1262 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001263 } else {
1264 mTempTouchState.copyFrom(mTouchState);
Jeff Browncc0c1592011-02-19 05:07:28 -08001265 }
1266 if (wrongDevice) {
Jeff Browna2cc28d2011-03-25 11:58:46 -07001267#if DEBUG_FOCUS
Jeff Browncc0c1592011-02-19 05:07:28 -08001268 LOGD("Dropping event because a pointer for a different device is already down.");
Jeff Brown95712852011-01-04 19:41:59 -08001269#endif
Jeff Browncc0c1592011-02-19 05:07:28 -08001270 injectionResult = INPUT_EVENT_INJECTION_FAILED;
1271 goto Failed;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001272 }
Jeff Brownb88102f2010-09-08 11:49:43 -07001273
Jeff Browna032cc02011-03-07 16:56:21 -08001274 if (newGesture || (isSplit && maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN)) {
Jeff Brown33bbfd22011-02-24 20:55:35 -08001275 /* Case 1: New splittable pointer going down, or need target for hover or scroll. */
Jeff Brownb88102f2010-09-08 11:49:43 -07001276
Jeff Browna032cc02011-03-07 16:56:21 -08001277 const MotionSample* sample = &entry->firstSample;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001278 int32_t pointerIndex = getMotionEventActionPointerIndex(action);
Jeff Browna032cc02011-03-07 16:56:21 -08001279 int32_t x = int32_t(sample->pointerCoords[pointerIndex].
Jeff Brownebbd5d12011-02-17 13:01:34 -08001280 getAxisValue(AMOTION_EVENT_AXIS_X));
Jeff Browna032cc02011-03-07 16:56:21 -08001281 int32_t y = int32_t(sample->pointerCoords[pointerIndex].
Jeff Brownebbd5d12011-02-17 13:01:34 -08001282 getAxisValue(AMOTION_EVENT_AXIS_Y));
Jeff Brown01ce2e92010-09-26 22:20:12 -07001283 const InputWindow* newTouchedWindow = NULL;
1284 const InputWindow* topErrorWindow = NULL;
Jeff Browna032cc02011-03-07 16:56:21 -08001285 bool isTouchModal = false;
Jeff Brownb88102f2010-09-08 11:49:43 -07001286
1287 // Traverse windows from front to back to find touched window and outside targets.
1288 size_t numWindows = mWindows.size();
1289 for (size_t i = 0; i < numWindows; i++) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001290 const InputWindow* window = & mWindows.editItemAt(i);
Jeff Brownb88102f2010-09-08 11:49:43 -07001291 int32_t flags = window->layoutParamsFlags;
1292
1293 if (flags & InputWindow::FLAG_SYSTEM_ERROR) {
1294 if (! topErrorWindow) {
1295 topErrorWindow = window;
1296 }
1297 }
1298
1299 if (window->visible) {
1300 if (! (flags & InputWindow::FLAG_NOT_TOUCHABLE)) {
Jeff Browna032cc02011-03-07 16:56:21 -08001301 isTouchModal = (flags & (InputWindow::FLAG_NOT_FOCUSABLE
Jeff Brownb88102f2010-09-08 11:49:43 -07001302 | InputWindow::FLAG_NOT_TOUCH_MODAL)) == 0;
Jeff Brownfbf09772011-01-16 14:06:57 -08001303 if (isTouchModal || window->touchableRegionContainsPoint(x, y)) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001304 if (! screenWasOff || flags & InputWindow::FLAG_TOUCHABLE_WHEN_WAKING) {
1305 newTouchedWindow = window;
Jeff Brownb88102f2010-09-08 11:49:43 -07001306 }
1307 break; // found touched window, exit window loop
1308 }
1309 }
1310
Jeff Brown01ce2e92010-09-26 22:20:12 -07001311 if (maskedAction == AMOTION_EVENT_ACTION_DOWN
1312 && (flags & InputWindow::FLAG_WATCH_OUTSIDE_TOUCH)) {
Jeff Browna032cc02011-03-07 16:56:21 -08001313 int32_t outsideTargetFlags = InputTarget::FLAG_DISPATCH_AS_OUTSIDE;
Jeff Brown19dfc832010-10-05 12:26:23 -07001314 if (isWindowObscuredAtPointLocked(window, x, y)) {
1315 outsideTargetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1316 }
1317
1318 mTempTouchState.addOrUpdateWindow(window, outsideTargetFlags, BitSet32(0));
Jeff Brownb88102f2010-09-08 11:49:43 -07001319 }
1320 }
1321 }
1322
1323 // If there is an error window but it is not taking focus (typically because
1324 // it is invisible) then wait for it. Any other focused window may in
1325 // fact be in ANR state.
1326 if (topErrorWindow && newTouchedWindow != topErrorWindow) {
1327#if DEBUG_FOCUS
1328 LOGD("Waiting because system error window is pending.");
1329#endif
1330 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1331 NULL, NULL, nextWakeupTime);
1332 injectionPermission = INJECTION_PERMISSION_UNKNOWN;
1333 goto Unresponsive;
1334 }
1335
Jeff Brown01ce2e92010-09-26 22:20:12 -07001336 // Figure out whether splitting will be allowed for this window.
Jeff Brown46e75292010-11-10 16:53:45 -08001337 if (newTouchedWindow && newTouchedWindow->supportsSplitTouch()) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001338 // New window supports splitting.
1339 isSplit = true;
1340 } else if (isSplit) {
1341 // New window does not support splitting but we have already split events.
1342 // Assign the pointer to the first foreground window we find.
1343 // (May be NULL which is why we put this code block before the next check.)
1344 newTouchedWindow = mTempTouchState.getFirstForegroundWindow();
1345 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001346
Jeff Brownb88102f2010-09-08 11:49:43 -07001347 // If we did not find a touched window then fail.
1348 if (! newTouchedWindow) {
1349 if (mFocusedApplication) {
1350#if DEBUG_FOCUS
1351 LOGD("Waiting because there is no touched window but there is a "
Jeff Brown519e0242010-09-15 15:18:56 -07001352 "focused application that may eventually add a new window: %s.",
1353 getApplicationWindowLabelLocked(mFocusedApplication, NULL).string());
Jeff Brownb88102f2010-09-08 11:49:43 -07001354#endif
1355 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1356 mFocusedApplication, NULL, nextWakeupTime);
Jeff Brownb88102f2010-09-08 11:49:43 -07001357 goto Unresponsive;
1358 }
1359
1360 LOGI("Dropping event because there is no touched window or focused application.");
1361 injectionResult = INPUT_EVENT_INJECTION_FAILED;
Jeff Brownb88102f2010-09-08 11:49:43 -07001362 goto Failed;
1363 }
1364
Jeff Brown19dfc832010-10-05 12:26:23 -07001365 // Set target flags.
Jeff Browna032cc02011-03-07 16:56:21 -08001366 int32_t targetFlags = InputTarget::FLAG_FOREGROUND | InputTarget::FLAG_DISPATCH_AS_IS;
Jeff Brown19dfc832010-10-05 12:26:23 -07001367 if (isSplit) {
1368 targetFlags |= InputTarget::FLAG_SPLIT;
1369 }
1370 if (isWindowObscuredAtPointLocked(newTouchedWindow, x, y)) {
1371 targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1372 }
1373
Jeff Browna032cc02011-03-07 16:56:21 -08001374 // Update hover state.
1375 if (isHoverAction) {
1376 newHoverWindow = newTouchedWindow;
1377
1378 // Ensure all subsequent motion samples are also within the touched window.
1379 // Set *outSplitBatchAfterSample to the sample before the first one that is not
1380 // within the touched window.
1381 if (!isTouchModal) {
1382 while (sample->next) {
1383 if (!newHoverWindow->touchableRegionContainsPoint(
1384 sample->next->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X),
1385 sample->next->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y))) {
1386 *outSplitBatchAfterSample = sample;
1387 break;
1388 }
1389 sample = sample->next;
1390 }
1391 }
1392 } else if (maskedAction == AMOTION_EVENT_ACTION_SCROLL) {
1393 newHoverWindow = mLastHoverWindow;
1394 }
1395
Jeff Brown01ce2e92010-09-26 22:20:12 -07001396 // Update the temporary touch state.
1397 BitSet32 pointerIds;
1398 if (isSplit) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07001399 uint32_t pointerId = entry->pointerProperties[pointerIndex].id;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001400 pointerIds.markBit(pointerId);
Jeff Brownb88102f2010-09-08 11:49:43 -07001401 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001402 mTempTouchState.addOrUpdateWindow(newTouchedWindow, targetFlags, pointerIds);
Jeff Brownb88102f2010-09-08 11:49:43 -07001403 } else {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001404 /* Case 2: Pointer move, up, cancel or non-splittable pointer down. */
Jeff Brownb88102f2010-09-08 11:49:43 -07001405
1406 // If the pointer is not currently down, then ignore the event.
Jeff Brown01ce2e92010-09-26 22:20:12 -07001407 if (! mTempTouchState.down) {
Jeff Browna2cc28d2011-03-25 11:58:46 -07001408#if DEBUG_FOCUS
Jeff Brown76860e32010-10-25 17:37:46 -07001409 LOGD("Dropping event because the pointer is not down or we previously "
1410 "dropped the pointer down event.");
1411#endif
Jeff Brownb88102f2010-09-08 11:49:43 -07001412 injectionResult = INPUT_EVENT_INJECTION_FAILED;
Jeff Brownb88102f2010-09-08 11:49:43 -07001413 goto Failed;
1414 }
Jeff Brown98db5fa2011-06-08 15:37:10 -07001415
1416 // Check whether touches should slip outside of the current foreground window.
1417 if (maskedAction == AMOTION_EVENT_ACTION_MOVE
1418 && entry->pointerCount == 1
1419 && mTempTouchState.isSlippery()) {
1420 const MotionSample* sample = &entry->firstSample;
1421 int32_t x = int32_t(sample->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X));
1422 int32_t y = int32_t(sample->pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y));
1423
1424 const InputWindow* oldTouchedWindow = mTempTouchState.getFirstForegroundWindow();
1425 const InputWindow* newTouchedWindow = findTouchedWindowAtLocked(x, y);
1426 if (oldTouchedWindow != newTouchedWindow && newTouchedWindow) {
1427#if DEBUG_FOCUS
1428 LOGD("Touch is slipping out of window %s into window %s.",
1429 oldTouchedWindow->name.string(), newTouchedWindow->name.string());
1430#endif
1431 // Make a slippery exit from the old window.
1432 mTempTouchState.addOrUpdateWindow(oldTouchedWindow,
1433 InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT, BitSet32(0));
1434
1435 // Make a slippery entrance into the new window.
1436 if (newTouchedWindow->supportsSplitTouch()) {
1437 isSplit = true;
1438 }
1439
1440 int32_t targetFlags = InputTarget::FLAG_FOREGROUND
1441 | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER;
1442 if (isSplit) {
1443 targetFlags |= InputTarget::FLAG_SPLIT;
1444 }
1445 if (isWindowObscuredAtPointLocked(newTouchedWindow, x, y)) {
1446 targetFlags |= InputTarget::FLAG_WINDOW_IS_OBSCURED;
1447 }
1448
1449 BitSet32 pointerIds;
1450 if (isSplit) {
1451 pointerIds.markBit(entry->pointerProperties[0].id);
1452 }
1453 mTempTouchState.addOrUpdateWindow(newTouchedWindow, targetFlags, pointerIds);
1454
1455 // Split the batch here so we send exactly one sample.
1456 *outSplitBatchAfterSample = &entry->firstSample;
1457 }
1458 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001459 }
Jeff Brownb88102f2010-09-08 11:49:43 -07001460
Jeff Browna032cc02011-03-07 16:56:21 -08001461 if (newHoverWindow != mLastHoverWindow) {
1462 // Split the batch here so we send exactly one sample as part of ENTER or EXIT.
1463 *outSplitBatchAfterSample = &entry->firstSample;
1464
1465 // Let the previous window know that the hover sequence is over.
1466 if (mLastHoverWindow) {
1467#if DEBUG_HOVER
1468 LOGD("Sending hover exit event to window %s.", mLastHoverWindow->name.string());
1469#endif
1470 mTempTouchState.addOrUpdateWindow(mLastHoverWindow,
1471 InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT, BitSet32(0));
1472 }
1473
1474 // Let the new window know that the hover sequence is starting.
1475 if (newHoverWindow) {
1476#if DEBUG_HOVER
1477 LOGD("Sending hover enter event to window %s.", newHoverWindow->name.string());
1478#endif
1479 mTempTouchState.addOrUpdateWindow(newHoverWindow,
1480 InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER, BitSet32(0));
1481 }
1482 }
1483
Jeff Brown01ce2e92010-09-26 22:20:12 -07001484 // Check permission to inject into all touched foreground windows and ensure there
1485 // is at least one touched foreground window.
1486 {
1487 bool haveForegroundWindow = false;
1488 for (size_t i = 0; i < mTempTouchState.windows.size(); i++) {
1489 const TouchedWindow& touchedWindow = mTempTouchState.windows[i];
1490 if (touchedWindow.targetFlags & InputTarget::FLAG_FOREGROUND) {
1491 haveForegroundWindow = true;
1492 if (! checkInjectionPermission(touchedWindow.window, entry->injectionState)) {
1493 injectionResult = INPUT_EVENT_INJECTION_PERMISSION_DENIED;
1494 injectionPermission = INJECTION_PERMISSION_DENIED;
1495 goto Failed;
1496 }
1497 }
1498 }
1499 if (! haveForegroundWindow) {
Jeff Browna2cc28d2011-03-25 11:58:46 -07001500#if DEBUG_FOCUS
Jeff Brown01ce2e92010-09-26 22:20:12 -07001501 LOGD("Dropping event because there is no touched foreground window to receive it.");
Jeff Brownb88102f2010-09-08 11:49:43 -07001502#endif
1503 injectionResult = INPUT_EVENT_INJECTION_FAILED;
Jeff Brownb88102f2010-09-08 11:49:43 -07001504 goto Failed;
1505 }
1506
Jeff Brown01ce2e92010-09-26 22:20:12 -07001507 // Permission granted to injection into all touched foreground windows.
1508 injectionPermission = INJECTION_PERMISSION_GRANTED;
1509 }
Jeff Brown519e0242010-09-15 15:18:56 -07001510
Kenny Root7a9db182011-06-02 15:16:05 -07001511 // Check whether windows listening for outside touches are owned by the same UID. If it is
1512 // set the policy flag that we will not reveal coordinate information to this window.
1513 if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1514 const InputWindow* foregroundWindow = mTempTouchState.getFirstForegroundWindow();
1515 const int32_t foregroundWindowUid = foregroundWindow->ownerUid;
1516 for (size_t i = 0; i < mTempTouchState.windows.size(); i++) {
1517 const TouchedWindow& touchedWindow = mTempTouchState.windows[i];
1518 if (touchedWindow.targetFlags & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
1519 const InputWindow* inputWindow = touchedWindow.window;
1520 if (inputWindow->ownerUid != foregroundWindowUid) {
1521 mTempTouchState.addOrUpdateWindow(inputWindow,
1522 InputTarget::FLAG_ZERO_COORDS, BitSet32(0));
1523 }
1524 }
1525 }
1526 }
1527
Jeff Brown01ce2e92010-09-26 22:20:12 -07001528 // Ensure all touched foreground windows are ready for new input.
1529 for (size_t i = 0; i < mTempTouchState.windows.size(); i++) {
1530 const TouchedWindow& touchedWindow = mTempTouchState.windows[i];
1531 if (touchedWindow.targetFlags & InputTarget::FLAG_FOREGROUND) {
1532 // If the touched window is paused then keep waiting.
1533 if (touchedWindow.window->paused) {
Jeff Browna2cc28d2011-03-25 11:58:46 -07001534#if DEBUG_FOCUS
Jeff Brown01ce2e92010-09-26 22:20:12 -07001535 LOGD("Waiting because touched window is paused.");
Jeff Brown519e0242010-09-15 15:18:56 -07001536#endif
Jeff Brown01ce2e92010-09-26 22:20:12 -07001537 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1538 NULL, touchedWindow.window, nextWakeupTime);
1539 goto Unresponsive;
1540 }
1541
1542 // If the touched window is still working on previous events then keep waiting.
1543 if (! isWindowFinishedWithPreviousInputLocked(touchedWindow.window)) {
1544#if DEBUG_FOCUS
1545 LOGD("Waiting because touched window still processing previous input.");
1546#endif
1547 injectionResult = handleTargetsNotReadyLocked(currentTime, entry,
1548 NULL, touchedWindow.window, nextWakeupTime);
1549 goto Unresponsive;
1550 }
1551 }
1552 }
1553
1554 // If this is the first pointer going down and the touched window has a wallpaper
1555 // then also add the touched wallpaper windows so they are locked in for the duration
1556 // of the touch gesture.
Jeff Brown33bbfd22011-02-24 20:55:35 -08001557 // We do not collect wallpapers during HOVER_MOVE or SCROLL because the wallpaper
1558 // engine only supports touch events. We would need to add a mechanism similar
1559 // to View.onGenericMotionEvent to enable wallpapers to handle these events.
1560 if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001561 const InputWindow* foregroundWindow = mTempTouchState.getFirstForegroundWindow();
1562 if (foregroundWindow->hasWallpaper) {
1563 for (size_t i = 0; i < mWindows.size(); i++) {
1564 const InputWindow* window = & mWindows[i];
1565 if (window->layoutParamsType == InputWindow::TYPE_WALLPAPER) {
Jeff Brown19dfc832010-10-05 12:26:23 -07001566 mTempTouchState.addOrUpdateWindow(window,
Jeff Browna032cc02011-03-07 16:56:21 -08001567 InputTarget::FLAG_WINDOW_IS_OBSCURED
1568 | InputTarget::FLAG_DISPATCH_AS_IS,
1569 BitSet32(0));
Jeff Brown01ce2e92010-09-26 22:20:12 -07001570 }
1571 }
1572 }
1573 }
1574
Jeff Brownb88102f2010-09-08 11:49:43 -07001575 // Success! Output targets.
1576 injectionResult = INPUT_EVENT_INJECTION_SUCCEEDED;
Jeff Brownb88102f2010-09-08 11:49:43 -07001577
Jeff Brown01ce2e92010-09-26 22:20:12 -07001578 for (size_t i = 0; i < mTempTouchState.windows.size(); i++) {
1579 const TouchedWindow& touchedWindow = mTempTouchState.windows.itemAt(i);
1580 addWindowTargetLocked(touchedWindow.window, touchedWindow.targetFlags,
1581 touchedWindow.pointerIds);
Jeff Brownb88102f2010-09-08 11:49:43 -07001582 }
1583
Jeff Browna032cc02011-03-07 16:56:21 -08001584 // Drop the outside or hover touch windows since we will not care about them
1585 // in the next iteration.
1586 mTempTouchState.filterNonAsIsTouchWindows();
Jeff Brown01ce2e92010-09-26 22:20:12 -07001587
Jeff Brownb88102f2010-09-08 11:49:43 -07001588Failed:
1589 // Check injection permission once and for all.
1590 if (injectionPermission == INJECTION_PERMISSION_UNKNOWN) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001591 if (checkInjectionPermission(NULL, entry->injectionState)) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001592 injectionPermission = INJECTION_PERMISSION_GRANTED;
1593 } else {
1594 injectionPermission = INJECTION_PERMISSION_DENIED;
1595 }
1596 }
1597
1598 // Update final pieces of touch state if the injector had permission.
1599 if (injectionPermission == INJECTION_PERMISSION_GRANTED) {
Jeff Brown95712852011-01-04 19:41:59 -08001600 if (!wrongDevice) {
1601 if (maskedAction == AMOTION_EVENT_ACTION_UP
Jeff Browncc0c1592011-02-19 05:07:28 -08001602 || maskedAction == AMOTION_EVENT_ACTION_CANCEL
Jeff Browna032cc02011-03-07 16:56:21 -08001603 || isHoverAction) {
Jeff Brown95712852011-01-04 19:41:59 -08001604 // All pointers up or canceled.
Jeff Brown33bbfd22011-02-24 20:55:35 -08001605 mTouchState.reset();
Jeff Brown95712852011-01-04 19:41:59 -08001606 } else if (maskedAction == AMOTION_EVENT_ACTION_DOWN) {
1607 // First pointer went down.
1608 if (mTouchState.down) {
Jeff Browncc0c1592011-02-19 05:07:28 -08001609 *outConflictingPointerActions = true;
Jeff Brownb6997262010-10-08 22:31:17 -07001610#if DEBUG_FOCUS
Jeff Brown95712852011-01-04 19:41:59 -08001611 LOGD("Pointer down received while already down.");
Jeff Brownb6997262010-10-08 22:31:17 -07001612#endif
Jeff Brown95712852011-01-04 19:41:59 -08001613 }
Jeff Brown33bbfd22011-02-24 20:55:35 -08001614 mTouchState.copyFrom(mTempTouchState);
Jeff Brown95712852011-01-04 19:41:59 -08001615 } else if (maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
1616 // One pointer went up.
1617 if (isSplit) {
1618 int32_t pointerIndex = getMotionEventActionPointerIndex(action);
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07001619 uint32_t pointerId = entry->pointerProperties[pointerIndex].id;
Jeff Brownb88102f2010-09-08 11:49:43 -07001620
Jeff Brown95712852011-01-04 19:41:59 -08001621 for (size_t i = 0; i < mTempTouchState.windows.size(); ) {
1622 TouchedWindow& touchedWindow = mTempTouchState.windows.editItemAt(i);
1623 if (touchedWindow.targetFlags & InputTarget::FLAG_SPLIT) {
1624 touchedWindow.pointerIds.clearBit(pointerId);
1625 if (touchedWindow.pointerIds.isEmpty()) {
1626 mTempTouchState.windows.removeAt(i);
1627 continue;
1628 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001629 }
Jeff Brown95712852011-01-04 19:41:59 -08001630 i += 1;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001631 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001632 }
Jeff Brown33bbfd22011-02-24 20:55:35 -08001633 mTouchState.copyFrom(mTempTouchState);
1634 } else if (maskedAction == AMOTION_EVENT_ACTION_SCROLL) {
1635 // Discard temporary touch state since it was only valid for this action.
1636 } else {
1637 // Save changes to touch state as-is for all other actions.
1638 mTouchState.copyFrom(mTempTouchState);
Jeff Brownb88102f2010-09-08 11:49:43 -07001639 }
Jeff Browna032cc02011-03-07 16:56:21 -08001640
1641 // Update hover state.
1642 mLastHoverWindow = newHoverWindow;
Jeff Brown95712852011-01-04 19:41:59 -08001643 }
Jeff Brownb88102f2010-09-08 11:49:43 -07001644 } else {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001645#if DEBUG_FOCUS
1646 LOGD("Not updating touch focus because injection was denied.");
1647#endif
Jeff Brownb88102f2010-09-08 11:49:43 -07001648 }
1649
1650Unresponsive:
Jeff Brown120a4592010-10-27 18:43:51 -07001651 // Reset temporary touch state to ensure we release unnecessary references to input channels.
1652 mTempTouchState.reset();
1653
Jeff Brown519e0242010-09-15 15:18:56 -07001654 nsecs_t timeSpentWaitingForApplication = getTimeSpentWaitingForApplicationLocked(currentTime);
1655 updateDispatchStatisticsLocked(currentTime, entry,
1656 injectionResult, timeSpentWaitingForApplication);
Jeff Brownb88102f2010-09-08 11:49:43 -07001657#if DEBUG_FOCUS
Jeff Brown01ce2e92010-09-26 22:20:12 -07001658 LOGD("findTouchedWindow finished: injectionResult=%d, injectionPermission=%d, "
1659 "timeSpentWaitingForApplication=%0.1fms",
Jeff Brown519e0242010-09-15 15:18:56 -07001660 injectionResult, injectionPermission, timeSpentWaitingForApplication / 1000000.0);
Jeff Brownb88102f2010-09-08 11:49:43 -07001661#endif
1662 return injectionResult;
1663}
1664
Jeff Brown01ce2e92010-09-26 22:20:12 -07001665void InputDispatcher::addWindowTargetLocked(const InputWindow* window, int32_t targetFlags,
1666 BitSet32 pointerIds) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001667 mCurrentInputTargets.push();
1668
1669 InputTarget& target = mCurrentInputTargets.editTop();
1670 target.inputChannel = window->inputChannel;
1671 target.flags = targetFlags;
Jeff Brownb88102f2010-09-08 11:49:43 -07001672 target.xOffset = - window->frameLeft;
1673 target.yOffset = - window->frameTop;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001674 target.scaleFactor = window->scaleFactor;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001675 target.pointerIds = pointerIds;
Jeff Brownb88102f2010-09-08 11:49:43 -07001676}
1677
1678void InputDispatcher::addMonitoringTargetsLocked() {
1679 for (size_t i = 0; i < mMonitoringChannels.size(); i++) {
1680 mCurrentInputTargets.push();
1681
1682 InputTarget& target = mCurrentInputTargets.editTop();
1683 target.inputChannel = mMonitoringChannels[i];
Jeff Brownb6110c22011-04-01 16:15:13 -07001684 target.flags = InputTarget::FLAG_DISPATCH_AS_IS;
Jeff Brownb88102f2010-09-08 11:49:43 -07001685 target.xOffset = 0;
1686 target.yOffset = 0;
Jeff Brownb6110c22011-04-01 16:15:13 -07001687 target.pointerIds.clear();
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001688 target.scaleFactor = 1.0f;
Jeff Brownb88102f2010-09-08 11:49:43 -07001689 }
1690}
1691
1692bool InputDispatcher::checkInjectionPermission(const InputWindow* window,
Jeff Brown01ce2e92010-09-26 22:20:12 -07001693 const InjectionState* injectionState) {
1694 if (injectionState
Jeff Brownb6997262010-10-08 22:31:17 -07001695 && (window == NULL || window->ownerUid != injectionState->injectorUid)
1696 && !hasInjectionPermission(injectionState->injectorPid, injectionState->injectorUid)) {
1697 if (window) {
1698 LOGW("Permission denied: injecting event from pid %d uid %d to window "
1699 "with input channel %s owned by uid %d",
1700 injectionState->injectorPid, injectionState->injectorUid,
1701 window->inputChannel->getName().string(),
1702 window->ownerUid);
1703 } else {
1704 LOGW("Permission denied: injecting event from pid %d uid %d",
1705 injectionState->injectorPid, injectionState->injectorUid);
Jeff Brownb88102f2010-09-08 11:49:43 -07001706 }
Jeff Brownb6997262010-10-08 22:31:17 -07001707 return false;
Jeff Brownb88102f2010-09-08 11:49:43 -07001708 }
1709 return true;
1710}
1711
Jeff Brown19dfc832010-10-05 12:26:23 -07001712bool InputDispatcher::isWindowObscuredAtPointLocked(
1713 const InputWindow* window, int32_t x, int32_t y) const {
Jeff Brownb88102f2010-09-08 11:49:43 -07001714 size_t numWindows = mWindows.size();
1715 for (size_t i = 0; i < numWindows; i++) {
1716 const InputWindow* other = & mWindows.itemAt(i);
1717 if (other == window) {
1718 break;
1719 }
Jeff Brown19dfc832010-10-05 12:26:23 -07001720 if (other->visible && ! other->isTrustedOverlay() && other->frameContainsPoint(x, y)) {
Jeff Brownb88102f2010-09-08 11:49:43 -07001721 return true;
1722 }
1723 }
1724 return false;
1725}
1726
Jeff Brown519e0242010-09-15 15:18:56 -07001727bool InputDispatcher::isWindowFinishedWithPreviousInputLocked(const InputWindow* window) {
1728 ssize_t connectionIndex = getConnectionIndexLocked(window->inputChannel);
1729 if (connectionIndex >= 0) {
1730 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
1731 return connection->outboundQueue.isEmpty();
1732 } else {
1733 return true;
1734 }
1735}
1736
1737String8 InputDispatcher::getApplicationWindowLabelLocked(const InputApplication* application,
1738 const InputWindow* window) {
1739 if (application) {
1740 if (window) {
1741 String8 label(application->name);
1742 label.append(" - ");
1743 label.append(window->name);
1744 return label;
1745 } else {
1746 return application->name;
1747 }
1748 } else if (window) {
1749 return window->name;
1750 } else {
1751 return String8("<unknown application or window>");
1752 }
1753}
1754
Jeff Browne2fe69e2010-10-18 13:21:23 -07001755void InputDispatcher::pokeUserActivityLocked(const EventEntry* eventEntry) {
Jeff Brown56194eb2011-03-02 19:23:13 -08001756 int32_t eventType = POWER_MANAGER_OTHER_EVENT;
Jeff Brown4d396052010-10-29 21:50:21 -07001757 switch (eventEntry->type) {
1758 case EventEntry::TYPE_MOTION: {
Jeff Browne2fe69e2010-10-18 13:21:23 -07001759 const MotionEntry* motionEntry = static_cast<const MotionEntry*>(eventEntry);
Jeff Brown4d396052010-10-29 21:50:21 -07001760 if (motionEntry->action == AMOTION_EVENT_ACTION_CANCEL) {
1761 return;
1762 }
1763
Jeff Brown56194eb2011-03-02 19:23:13 -08001764 if (MotionEvent::isTouchEvent(motionEntry->source, motionEntry->action)) {
Joe Onorato1a542c72010-11-08 09:48:20 -08001765 eventType = POWER_MANAGER_TOUCH_EVENT;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001766 }
Jeff Brown4d396052010-10-29 21:50:21 -07001767 break;
1768 }
1769 case EventEntry::TYPE_KEY: {
1770 const KeyEntry* keyEntry = static_cast<const KeyEntry*>(eventEntry);
1771 if (keyEntry->flags & AKEY_EVENT_FLAG_CANCELED) {
1772 return;
1773 }
Jeff Brown56194eb2011-03-02 19:23:13 -08001774 eventType = POWER_MANAGER_BUTTON_EVENT;
Jeff Brown4d396052010-10-29 21:50:21 -07001775 break;
1776 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001777 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001778
Jeff Brownb88102f2010-09-08 11:49:43 -07001779 CommandEntry* commandEntry = postCommandLocked(
1780 & InputDispatcher::doPokeUserActivityLockedInterruptible);
Jeff Browne2fe69e2010-10-18 13:21:23 -07001781 commandEntry->eventTime = eventEntry->eventTime;
Jeff Brownb88102f2010-09-08 11:49:43 -07001782 commandEntry->userActivityEventType = eventType;
1783}
1784
Jeff Brown7fbdc842010-06-17 20:52:56 -07001785void InputDispatcher::prepareDispatchCycleLocked(nsecs_t currentTime,
1786 const sp<Connection>& connection, EventEntry* eventEntry, const InputTarget* inputTarget,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001787 bool resumeWithAppendedMotionSample) {
1788#if DEBUG_DISPATCH_CYCLE
Jeff Brown519e0242010-09-15 15:18:56 -07001789 LOGD("channel '%s' ~ prepareDispatchCycle - flags=%d, "
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001790 "xOffset=%f, yOffset=%f, scaleFactor=%f"
Jeff Brown83c09682010-12-23 17:50:18 -08001791 "pointerIds=0x%x, "
Jeff Brown01ce2e92010-09-26 22:20:12 -07001792 "resumeWithAppendedMotionSample=%s",
Jeff Brown519e0242010-09-15 15:18:56 -07001793 connection->getInputChannelName(), inputTarget->flags,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001794 inputTarget->xOffset, inputTarget->yOffset,
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001795 inputTarget->scaleFactor, inputTarget->pointerIds.value,
Jeff Brownb88102f2010-09-08 11:49:43 -07001796 toString(resumeWithAppendedMotionSample));
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001797#endif
1798
Jeff Brown01ce2e92010-09-26 22:20:12 -07001799 // Make sure we are never called for streaming when splitting across multiple windows.
1800 bool isSplit = inputTarget->flags & InputTarget::FLAG_SPLIT;
Jeff Brownb6110c22011-04-01 16:15:13 -07001801 LOG_ASSERT(! (resumeWithAppendedMotionSample && isSplit));
Jeff Brown01ce2e92010-09-26 22:20:12 -07001802
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001803 // Skip this event if the connection status is not normal.
Jeff Brown519e0242010-09-15 15:18:56 -07001804 // We don't want to enqueue additional outbound events if the connection is broken.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001805 if (connection->status != Connection::STATUS_NORMAL) {
Jeff Brownb6997262010-10-08 22:31:17 -07001806#if DEBUG_DISPATCH_CYCLE
1807 LOGD("channel '%s' ~ Dropping event because the channel status is %s",
Jeff Brownb88102f2010-09-08 11:49:43 -07001808 connection->getInputChannelName(), connection->getStatusLabel());
Jeff Brownb6997262010-10-08 22:31:17 -07001809#endif
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001810 return;
1811 }
1812
Jeff Brown01ce2e92010-09-26 22:20:12 -07001813 // Split a motion event if needed.
1814 if (isSplit) {
Jeff Brownb6110c22011-04-01 16:15:13 -07001815 LOG_ASSERT(eventEntry->type == EventEntry::TYPE_MOTION);
Jeff Brown01ce2e92010-09-26 22:20:12 -07001816
1817 MotionEntry* originalMotionEntry = static_cast<MotionEntry*>(eventEntry);
1818 if (inputTarget->pointerIds.count() != originalMotionEntry->pointerCount) {
1819 MotionEntry* splitMotionEntry = splitMotionEvent(
1820 originalMotionEntry, inputTarget->pointerIds);
Jeff Brown58a2da82011-01-25 16:02:22 -08001821 if (!splitMotionEntry) {
1822 return; // split event was dropped
1823 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07001824#if DEBUG_FOCUS
1825 LOGD("channel '%s' ~ Split motion event.",
1826 connection->getInputChannelName());
1827 logOutboundMotionDetailsLocked(" ", splitMotionEntry);
1828#endif
1829 eventEntry = splitMotionEntry;
1830 }
1831 }
1832
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001833 // Resume the dispatch cycle with a freshly appended motion sample.
1834 // First we check that the last dispatch entry in the outbound queue is for the same
1835 // motion event to which we appended the motion sample. If we find such a dispatch
1836 // entry, and if it is currently in progress then we try to stream the new sample.
1837 bool wasEmpty = connection->outboundQueue.isEmpty();
1838
1839 if (! wasEmpty && resumeWithAppendedMotionSample) {
1840 DispatchEntry* motionEventDispatchEntry =
1841 connection->findQueuedDispatchEntryForEvent(eventEntry);
1842 if (motionEventDispatchEntry) {
1843 // If the dispatch entry is not in progress, then we must be busy dispatching an
1844 // earlier event. Not a problem, the motion event is on the outbound queue and will
1845 // be dispatched later.
1846 if (! motionEventDispatchEntry->inProgress) {
1847#if DEBUG_BATCHING
1848 LOGD("channel '%s' ~ Not streaming because the motion event has "
1849 "not yet been dispatched. "
1850 "(Waiting for earlier events to be consumed.)",
1851 connection->getInputChannelName());
1852#endif
1853 return;
1854 }
1855
1856 // If the dispatch entry is in progress but it already has a tail of pending
1857 // motion samples, then it must mean that the shared memory buffer filled up.
1858 // Not a problem, when this dispatch cycle is finished, we will eventually start
1859 // a new dispatch cycle to process the tail and that tail includes the newly
1860 // appended motion sample.
1861 if (motionEventDispatchEntry->tailMotionSample) {
1862#if DEBUG_BATCHING
1863 LOGD("channel '%s' ~ Not streaming because no new samples can "
1864 "be appended to the motion event in this dispatch cycle. "
1865 "(Waiting for next dispatch cycle to start.)",
1866 connection->getInputChannelName());
1867#endif
1868 return;
1869 }
1870
1871 // The dispatch entry is in progress and is still potentially open for streaming.
1872 // Try to stream the new motion sample. This might fail if the consumer has already
1873 // consumed the motion event (or if the channel is broken).
Jeff Brown01ce2e92010-09-26 22:20:12 -07001874 MotionEntry* motionEntry = static_cast<MotionEntry*>(eventEntry);
1875 MotionSample* appendedMotionSample = motionEntry->lastSample;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001876 status_t status;
1877 if (motionEventDispatchEntry->scaleFactor == 1.0f) {
1878 status = connection->inputPublisher.appendMotionSample(
1879 appendedMotionSample->eventTime, appendedMotionSample->pointerCoords);
1880 } else {
1881 PointerCoords scaledCoords[MAX_POINTERS];
1882 for (size_t i = 0; i < motionEntry->pointerCount; i++) {
1883 scaledCoords[i] = appendedMotionSample->pointerCoords[i];
1884 scaledCoords[i].scale(motionEventDispatchEntry->scaleFactor);
1885 }
1886 status = connection->inputPublisher.appendMotionSample(
1887 appendedMotionSample->eventTime, scaledCoords);
1888 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001889 if (status == OK) {
1890#if DEBUG_BATCHING
1891 LOGD("channel '%s' ~ Successfully streamed new motion sample.",
1892 connection->getInputChannelName());
1893#endif
1894 return;
1895 }
1896
1897#if DEBUG_BATCHING
1898 if (status == NO_MEMORY) {
1899 LOGD("channel '%s' ~ Could not append motion sample to currently "
1900 "dispatched move event because the shared memory buffer is full. "
1901 "(Waiting for next dispatch cycle to start.)",
1902 connection->getInputChannelName());
1903 } else if (status == status_t(FAILED_TRANSACTION)) {
1904 LOGD("channel '%s' ~ Could not append motion sample to currently "
Jeff Brown349703e2010-06-22 01:27:15 -07001905 "dispatched move event because the event has already been consumed. "
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001906 "(Waiting for next dispatch cycle to start.)",
1907 connection->getInputChannelName());
1908 } else {
1909 LOGD("channel '%s' ~ Could not append motion sample to currently "
1910 "dispatched move event due to an error, status=%d. "
1911 "(Waiting for next dispatch cycle to start.)",
1912 connection->getInputChannelName(), status);
1913 }
1914#endif
1915 // Failed to stream. Start a new tail of pending motion samples to dispatch
1916 // in the next cycle.
1917 motionEventDispatchEntry->tailMotionSample = appendedMotionSample;
1918 return;
1919 }
1920 }
1921
Jeff Browna032cc02011-03-07 16:56:21 -08001922 // Enqueue dispatch entries for the requested modes.
1923 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1924 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT);
1925 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1926 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_OUTSIDE);
1927 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1928 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER);
1929 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1930 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_IS);
Jeff Brown98db5fa2011-06-08 15:37:10 -07001931 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1932 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT);
1933 enqueueDispatchEntryLocked(connection, eventEntry, inputTarget,
1934 resumeWithAppendedMotionSample, InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER);
Jeff Browna032cc02011-03-07 16:56:21 -08001935
1936 // If the outbound queue was previously empty, start the dispatch cycle going.
Jeff Brownb6110c22011-04-01 16:15:13 -07001937 if (wasEmpty && !connection->outboundQueue.isEmpty()) {
Jeff Browna032cc02011-03-07 16:56:21 -08001938 activateConnectionLocked(connection.get());
1939 startDispatchCycleLocked(currentTime, connection);
1940 }
1941}
1942
1943void InputDispatcher::enqueueDispatchEntryLocked(
1944 const sp<Connection>& connection, EventEntry* eventEntry, const InputTarget* inputTarget,
1945 bool resumeWithAppendedMotionSample, int32_t dispatchMode) {
1946 int32_t inputTargetFlags = inputTarget->flags;
1947 if (!(inputTargetFlags & dispatchMode)) {
1948 return;
1949 }
1950 inputTargetFlags = (inputTargetFlags & ~InputTarget::FLAG_DISPATCH_MASK) | dispatchMode;
1951
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001952 // This is a new event.
1953 // Enqueue a new dispatch entry onto the outbound queue for this connection.
Jeff Brownb88102f2010-09-08 11:49:43 -07001954 DispatchEntry* dispatchEntry = mAllocator.obtainDispatchEntry(eventEntry, // increments ref
Dianne Hackbornaa9d84c2011-05-09 19:00:59 -07001955 inputTargetFlags, inputTarget->xOffset, inputTarget->yOffset,
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001956 inputTarget->scaleFactor);
Jeff Brown519e0242010-09-15 15:18:56 -07001957 if (dispatchEntry->hasForegroundTarget()) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07001958 incrementPendingForegroundDispatchesLocked(eventEntry);
Jeff Brown6ec402b2010-07-28 15:48:59 -07001959 }
1960
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001961 // Handle the case where we could not stream a new motion sample because the consumer has
1962 // already consumed the motion event (otherwise the corresponding dispatch entry would
1963 // still be in the outbound queue for this connection). We set the head motion sample
1964 // to the list starting with the newly appended motion sample.
1965 if (resumeWithAppendedMotionSample) {
1966#if DEBUG_BATCHING
1967 LOGD("channel '%s' ~ Preparing a new dispatch cycle for additional motion samples "
1968 "that cannot be streamed because the motion event has already been consumed.",
1969 connection->getInputChannelName());
1970#endif
1971 MotionSample* appendedMotionSample = static_cast<MotionEntry*>(eventEntry)->lastSample;
1972 dispatchEntry->headMotionSample = appendedMotionSample;
1973 }
1974
1975 // Enqueue the dispatch entry.
1976 connection->outboundQueue.enqueueAtTail(dispatchEntry);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001977}
1978
Jeff Brown7fbdc842010-06-17 20:52:56 -07001979void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime,
Jeff Brown519e0242010-09-15 15:18:56 -07001980 const sp<Connection>& connection) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001981#if DEBUG_DISPATCH_CYCLE
1982 LOGD("channel '%s' ~ startDispatchCycle",
1983 connection->getInputChannelName());
1984#endif
1985
Jeff Brownb6110c22011-04-01 16:15:13 -07001986 LOG_ASSERT(connection->status == Connection::STATUS_NORMAL);
1987 LOG_ASSERT(! connection->outboundQueue.isEmpty());
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001988
Jeff Brownb88102f2010-09-08 11:49:43 -07001989 DispatchEntry* dispatchEntry = connection->outboundQueue.headSentinel.next;
Jeff Brownb6110c22011-04-01 16:15:13 -07001990 LOG_ASSERT(! dispatchEntry->inProgress);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001991
Jeff Brownb88102f2010-09-08 11:49:43 -07001992 // Mark the dispatch entry as in progress.
1993 dispatchEntry->inProgress = true;
1994
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001995 // Publish the event.
1996 status_t status;
Jeff Browna032cc02011-03-07 16:56:21 -08001997 EventEntry* eventEntry = dispatchEntry->eventEntry;
Jeff Brown01ce2e92010-09-26 22:20:12 -07001998 switch (eventEntry->type) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07001999 case EventEntry::TYPE_KEY: {
Jeff Brown01ce2e92010-09-26 22:20:12 -07002000 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002001
2002 // Apply target flags.
2003 int32_t action = keyEntry->action;
2004 int32_t flags = keyEntry->flags;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002005
Jeff Browna032cc02011-03-07 16:56:21 -08002006 // Update the connection's input state.
2007 connection->inputState.trackKey(keyEntry, action);
2008
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002009 // Publish the key event.
Jeff Brownc5ed5912010-07-14 18:48:53 -07002010 status = connection->inputPublisher.publishKeyEvent(keyEntry->deviceId, keyEntry->source,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002011 action, flags, keyEntry->keyCode, keyEntry->scanCode,
2012 keyEntry->metaState, keyEntry->repeatCount, keyEntry->downTime,
2013 keyEntry->eventTime);
2014
2015 if (status) {
2016 LOGE("channel '%s' ~ Could not publish key event, "
2017 "status=%d", connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002018 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002019 return;
2020 }
2021 break;
2022 }
2023
2024 case EventEntry::TYPE_MOTION: {
Jeff Brown01ce2e92010-09-26 22:20:12 -07002025 MotionEntry* motionEntry = static_cast<MotionEntry*>(eventEntry);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002026
2027 // Apply target flags.
2028 int32_t action = motionEntry->action;
Jeff Brown85a31762010-09-01 17:01:00 -07002029 int32_t flags = motionEntry->flags;
Jeff Browna032cc02011-03-07 16:56:21 -08002030 if (dispatchEntry->targetFlags & InputTarget::FLAG_DISPATCH_AS_OUTSIDE) {
Jeff Brownc5ed5912010-07-14 18:48:53 -07002031 action = AMOTION_EVENT_ACTION_OUTSIDE;
Jeff Browna032cc02011-03-07 16:56:21 -08002032 } else if (dispatchEntry->targetFlags & InputTarget::FLAG_DISPATCH_AS_HOVER_EXIT) {
2033 action = AMOTION_EVENT_ACTION_HOVER_EXIT;
2034 } else if (dispatchEntry->targetFlags & InputTarget::FLAG_DISPATCH_AS_HOVER_ENTER) {
2035 action = AMOTION_EVENT_ACTION_HOVER_ENTER;
Jeff Brown98db5fa2011-06-08 15:37:10 -07002036 } else if (dispatchEntry->targetFlags & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT) {
2037 action = AMOTION_EVENT_ACTION_CANCEL;
2038 } else if (dispatchEntry->targetFlags & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER) {
2039 action = AMOTION_EVENT_ACTION_DOWN;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002040 }
Jeff Brown85a31762010-09-01 17:01:00 -07002041 if (dispatchEntry->targetFlags & InputTarget::FLAG_WINDOW_IS_OBSCURED) {
2042 flags |= AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED;
2043 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002044
2045 // If headMotionSample is non-NULL, then it points to the first new sample that we
2046 // were unable to dispatch during the previous cycle so we resume dispatching from
2047 // that point in the list of motion samples.
2048 // Otherwise, we just start from the first sample of the motion event.
2049 MotionSample* firstMotionSample = dispatchEntry->headMotionSample;
2050 if (! firstMotionSample) {
2051 firstMotionSample = & motionEntry->firstSample;
2052 }
2053
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002054 PointerCoords scaledCoords[MAX_POINTERS];
2055 const PointerCoords* usingCoords = firstMotionSample->pointerCoords;
2056
Jeff Brownd3616592010-07-16 17:21:06 -07002057 // Set the X and Y offset depending on the input source.
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002058 float xOffset, yOffset, scaleFactor;
Kenny Root7a9db182011-06-02 15:16:05 -07002059 if (motionEntry->source & AINPUT_SOURCE_CLASS_POINTER
2060 && !(dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS)) {
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002061 scaleFactor = dispatchEntry->scaleFactor;
2062 xOffset = dispatchEntry->xOffset * scaleFactor;
2063 yOffset = dispatchEntry->yOffset * scaleFactor;
2064 if (scaleFactor != 1.0f) {
2065 for (size_t i = 0; i < motionEntry->pointerCount; i++) {
2066 scaledCoords[i] = firstMotionSample->pointerCoords[i];
2067 scaledCoords[i].scale(scaleFactor);
2068 }
2069 usingCoords = scaledCoords;
2070 }
Jeff Brownd3616592010-07-16 17:21:06 -07002071 } else {
2072 xOffset = 0.0f;
2073 yOffset = 0.0f;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002074 scaleFactor = 1.0f;
Kenny Root7a9db182011-06-02 15:16:05 -07002075
2076 // We don't want the dispatch target to know.
2077 if (dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS) {
2078 for (size_t i = 0; i < motionEntry->pointerCount; i++) {
2079 scaledCoords[i].clear();
2080 }
2081 usingCoords = scaledCoords;
2082 }
Jeff Brownd3616592010-07-16 17:21:06 -07002083 }
2084
Jeff Browna032cc02011-03-07 16:56:21 -08002085 // Update the connection's input state.
2086 connection->inputState.trackMotion(motionEntry, action);
2087
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002088 // Publish the motion event and the first motion sample.
2089 status = connection->inputPublisher.publishMotionEvent(motionEntry->deviceId,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002090 motionEntry->source, action, flags, motionEntry->edgeFlags,
2091 motionEntry->metaState, motionEntry->buttonState,
2092 xOffset, yOffset,
2093 motionEntry->xPrecision, motionEntry->yPrecision,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002094 motionEntry->downTime, firstMotionSample->eventTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002095 motionEntry->pointerCount, motionEntry->pointerProperties,
2096 usingCoords);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002097
2098 if (status) {
2099 LOGE("channel '%s' ~ Could not publish motion event, "
2100 "status=%d", connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002101 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002102 return;
2103 }
2104
Jeff Browna032cc02011-03-07 16:56:21 -08002105 if (action == AMOTION_EVENT_ACTION_MOVE
2106 || action == AMOTION_EVENT_ACTION_HOVER_MOVE) {
2107 // Append additional motion samples.
2108 MotionSample* nextMotionSample = firstMotionSample->next;
2109 for (; nextMotionSample != NULL; nextMotionSample = nextMotionSample->next) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002110 if (usingCoords == scaledCoords) {
Kenny Root7a9db182011-06-02 15:16:05 -07002111 if (!(dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS)) {
2112 for (size_t i = 0; i < motionEntry->pointerCount; i++) {
2113 scaledCoords[i] = nextMotionSample->pointerCoords[i];
2114 scaledCoords[i].scale(scaleFactor);
2115 }
Dianne Hackborn2ba3e802011-05-11 10:59:54 -07002116 }
2117 } else {
2118 usingCoords = nextMotionSample->pointerCoords;
Dianne Hackborne7d25b72011-05-09 21:19:26 -07002119 }
Jeff Browna032cc02011-03-07 16:56:21 -08002120 status = connection->inputPublisher.appendMotionSample(
Dianne Hackbornaa9d84c2011-05-09 19:00:59 -07002121 nextMotionSample->eventTime, usingCoords);
Jeff Browna032cc02011-03-07 16:56:21 -08002122 if (status == NO_MEMORY) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002123#if DEBUG_DISPATCH_CYCLE
2124 LOGD("channel '%s' ~ Shared memory buffer full. Some motion samples will "
2125 "be sent in the next dispatch cycle.",
2126 connection->getInputChannelName());
2127#endif
Jeff Browna032cc02011-03-07 16:56:21 -08002128 break;
2129 }
2130 if (status != OK) {
2131 LOGE("channel '%s' ~ Could not append motion sample "
2132 "for a reason other than out of memory, status=%d",
2133 connection->getInputChannelName(), status);
2134 abortBrokenDispatchCycleLocked(currentTime, connection);
2135 return;
2136 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002137 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002138
Jeff Browna032cc02011-03-07 16:56:21 -08002139 // Remember the next motion sample that we could not dispatch, in case we ran out
2140 // of space in the shared memory buffer.
2141 dispatchEntry->tailMotionSample = nextMotionSample;
2142 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002143 break;
2144 }
2145
2146 default: {
Jeff Brownb6110c22011-04-01 16:15:13 -07002147 LOG_ASSERT(false);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002148 }
2149 }
2150
2151 // Send the dispatch signal.
2152 status = connection->inputPublisher.sendDispatchSignal();
2153 if (status) {
2154 LOGE("channel '%s' ~ Could not send dispatch signal, status=%d",
2155 connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002156 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002157 return;
2158 }
2159
2160 // Record information about the newly started dispatch cycle.
Jeff Brown01ce2e92010-09-26 22:20:12 -07002161 connection->lastEventTime = eventEntry->eventTime;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002162 connection->lastDispatchTime = currentTime;
2163
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002164 // Notify other system components.
2165 onDispatchCycleStartedLocked(currentTime, connection);
2166}
2167
Jeff Brown7fbdc842010-06-17 20:52:56 -07002168void InputDispatcher::finishDispatchCycleLocked(nsecs_t currentTime,
Jeff Brown3915bb82010-11-05 15:02:16 -07002169 const sp<Connection>& connection, bool handled) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002170#if DEBUG_DISPATCH_CYCLE
Jeff Brown9c3cda02010-06-15 01:31:58 -07002171 LOGD("channel '%s' ~ finishDispatchCycle - %01.1fms since event, "
Jeff Brown3915bb82010-11-05 15:02:16 -07002172 "%01.1fms since dispatch, handled=%s",
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002173 connection->getInputChannelName(),
2174 connection->getEventLatencyMillis(currentTime),
Jeff Brown3915bb82010-11-05 15:02:16 -07002175 connection->getDispatchLatencyMillis(currentTime),
2176 toString(handled));
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002177#endif
2178
Jeff Brown9c3cda02010-06-15 01:31:58 -07002179 if (connection->status == Connection::STATUS_BROKEN
2180 || connection->status == Connection::STATUS_ZOMBIE) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002181 return;
2182 }
2183
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002184 // Reset the publisher since the event has been consumed.
2185 // We do this now so that the publisher can release some of its internal resources
2186 // while waiting for the next dispatch cycle to begin.
2187 status_t status = connection->inputPublisher.reset();
2188 if (status) {
2189 LOGE("channel '%s' ~ Could not reset publisher, status=%d",
2190 connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002191 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002192 return;
2193 }
2194
Jeff Brown3915bb82010-11-05 15:02:16 -07002195 // Notify other system components and prepare to start the next dispatch cycle.
2196 onDispatchCycleFinishedLocked(currentTime, connection, handled);
Jeff Brownb88102f2010-09-08 11:49:43 -07002197}
2198
2199void InputDispatcher::startNextDispatchCycleLocked(nsecs_t currentTime,
2200 const sp<Connection>& connection) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002201 // Start the next dispatch cycle for this connection.
2202 while (! connection->outboundQueue.isEmpty()) {
Jeff Brownb88102f2010-09-08 11:49:43 -07002203 DispatchEntry* dispatchEntry = connection->outboundQueue.headSentinel.next;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002204 if (dispatchEntry->inProgress) {
2205 // Finish or resume current event in progress.
2206 if (dispatchEntry->tailMotionSample) {
2207 // We have a tail of undispatched motion samples.
2208 // Reuse the same DispatchEntry and start a new cycle.
2209 dispatchEntry->inProgress = false;
2210 dispatchEntry->headMotionSample = dispatchEntry->tailMotionSample;
2211 dispatchEntry->tailMotionSample = NULL;
Jeff Brown519e0242010-09-15 15:18:56 -07002212 startDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002213 return;
2214 }
2215 // Finished.
2216 connection->outboundQueue.dequeueAtHead();
Jeff Brown519e0242010-09-15 15:18:56 -07002217 if (dispatchEntry->hasForegroundTarget()) {
2218 decrementPendingForegroundDispatchesLocked(dispatchEntry->eventEntry);
Jeff Brown6ec402b2010-07-28 15:48:59 -07002219 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002220 mAllocator.releaseDispatchEntry(dispatchEntry);
2221 } else {
2222 // If the head is not in progress, then we must have already dequeued the in
Jeff Brown519e0242010-09-15 15:18:56 -07002223 // progress event, which means we actually aborted it.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002224 // So just start the next event for this connection.
Jeff Brown519e0242010-09-15 15:18:56 -07002225 startDispatchCycleLocked(currentTime, connection);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002226 return;
2227 }
2228 }
2229
2230 // Outbound queue is empty, deactivate the connection.
Jeff Brown7fbdc842010-06-17 20:52:56 -07002231 deactivateConnectionLocked(connection.get());
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002232}
2233
Jeff Brownb6997262010-10-08 22:31:17 -07002234void InputDispatcher::abortBrokenDispatchCycleLocked(nsecs_t currentTime,
2235 const sp<Connection>& connection) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002236#if DEBUG_DISPATCH_CYCLE
Jeff Brown83c09682010-12-23 17:50:18 -08002237 LOGD("channel '%s' ~ abortBrokenDispatchCycle",
2238 connection->getInputChannelName());
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002239#endif
2240
Jeff Brownb88102f2010-09-08 11:49:43 -07002241 // Clear the outbound queue.
Jeff Brown519e0242010-09-15 15:18:56 -07002242 drainOutboundQueueLocked(connection.get());
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002243
Jeff Brownb6997262010-10-08 22:31:17 -07002244 // The connection appears to be unrecoverably broken.
Jeff Brown9c3cda02010-06-15 01:31:58 -07002245 // Ignore already broken or zombie connections.
Jeff Brownb6997262010-10-08 22:31:17 -07002246 if (connection->status == Connection::STATUS_NORMAL) {
2247 connection->status = Connection::STATUS_BROKEN;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002248
Jeff Brownb6997262010-10-08 22:31:17 -07002249 // Notify other system components.
2250 onDispatchCycleBrokenLocked(currentTime, connection);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002251 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002252}
2253
Jeff Brown519e0242010-09-15 15:18:56 -07002254void InputDispatcher::drainOutboundQueueLocked(Connection* connection) {
2255 while (! connection->outboundQueue.isEmpty()) {
2256 DispatchEntry* dispatchEntry = connection->outboundQueue.dequeueAtHead();
2257 if (dispatchEntry->hasForegroundTarget()) {
2258 decrementPendingForegroundDispatchesLocked(dispatchEntry->eventEntry);
Jeff Brownb88102f2010-09-08 11:49:43 -07002259 }
2260 mAllocator.releaseDispatchEntry(dispatchEntry);
Jeff Brownb88102f2010-09-08 11:49:43 -07002261 }
2262
Jeff Brown519e0242010-09-15 15:18:56 -07002263 deactivateConnectionLocked(connection);
Jeff Brownb88102f2010-09-08 11:49:43 -07002264}
2265
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002266int InputDispatcher::handleReceiveCallback(int receiveFd, int events, void* data) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002267 InputDispatcher* d = static_cast<InputDispatcher*>(data);
2268
2269 { // acquire lock
2270 AutoMutex _l(d->mLock);
2271
2272 ssize_t connectionIndex = d->mConnectionsByReceiveFd.indexOfKey(receiveFd);
2273 if (connectionIndex < 0) {
2274 LOGE("Received spurious receive callback for unknown input channel. "
2275 "fd=%d, events=0x%x", receiveFd, events);
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002276 return 0; // remove the callback
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002277 }
2278
Jeff Brown7fbdc842010-06-17 20:52:56 -07002279 nsecs_t currentTime = now();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002280
2281 sp<Connection> connection = d->mConnectionsByReceiveFd.valueAt(connectionIndex);
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002282 if (events & (ALOOPER_EVENT_ERROR | ALOOPER_EVENT_HANGUP)) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002283 LOGE("channel '%s' ~ Consumer closed input channel or an error occurred. "
2284 "events=0x%x", connection->getInputChannelName(), events);
Jeff Brownb6997262010-10-08 22:31:17 -07002285 d->abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown9c3cda02010-06-15 01:31:58 -07002286 d->runCommandsLockedInterruptible();
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002287 return 0; // remove the callback
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002288 }
2289
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002290 if (! (events & ALOOPER_EVENT_INPUT)) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002291 LOGW("channel '%s' ~ Received spurious callback for unhandled poll event. "
2292 "events=0x%x", connection->getInputChannelName(), events);
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002293 return 1;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002294 }
2295
Jeff Brown3915bb82010-11-05 15:02:16 -07002296 bool handled = false;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002297 status_t status = connection->inputPublisher.receiveFinishedSignal(&handled);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002298 if (status) {
2299 LOGE("channel '%s' ~ Failed to receive finished signal. status=%d",
2300 connection->getInputChannelName(), status);
Jeff Brownb6997262010-10-08 22:31:17 -07002301 d->abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown9c3cda02010-06-15 01:31:58 -07002302 d->runCommandsLockedInterruptible();
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002303 return 0; // remove the callback
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002304 }
2305
Jeff Brown3915bb82010-11-05 15:02:16 -07002306 d->finishDispatchCycleLocked(currentTime, connection, handled);
Jeff Brown9c3cda02010-06-15 01:31:58 -07002307 d->runCommandsLockedInterruptible();
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002308 return 1;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002309 } // release lock
2310}
2311
Jeff Brownb6997262010-10-08 22:31:17 -07002312void InputDispatcher::synthesizeCancelationEventsForAllConnectionsLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002313 const CancelationOptions& options) {
Jeff Brownb6997262010-10-08 22:31:17 -07002314 for (size_t i = 0; i < mConnectionsByReceiveFd.size(); i++) {
2315 synthesizeCancelationEventsForConnectionLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002316 mConnectionsByReceiveFd.valueAt(i), options);
Jeff Brownb6997262010-10-08 22:31:17 -07002317 }
2318}
2319
2320void InputDispatcher::synthesizeCancelationEventsForInputChannelLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002321 const sp<InputChannel>& channel, const CancelationOptions& options) {
Jeff Brownb6997262010-10-08 22:31:17 -07002322 ssize_t index = getConnectionIndexLocked(channel);
2323 if (index >= 0) {
2324 synthesizeCancelationEventsForConnectionLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002325 mConnectionsByReceiveFd.valueAt(index), options);
Jeff Brownb6997262010-10-08 22:31:17 -07002326 }
2327}
2328
2329void InputDispatcher::synthesizeCancelationEventsForConnectionLocked(
Jeff Brownda3d5a92011-03-29 15:11:34 -07002330 const sp<Connection>& connection, const CancelationOptions& options) {
Jeff Brownb6997262010-10-08 22:31:17 -07002331 nsecs_t currentTime = now();
2332
2333 mTempCancelationEvents.clear();
2334 connection->inputState.synthesizeCancelationEvents(currentTime, & mAllocator,
2335 mTempCancelationEvents, options);
2336
2337 if (! mTempCancelationEvents.isEmpty()
2338 && connection->status != Connection::STATUS_BROKEN) {
2339#if DEBUG_OUTBOUND_EVENT_DETAILS
2340 LOGD("channel '%s' ~ Synthesized %d cancelation events to bring channel back in sync "
Jeff Brownda3d5a92011-03-29 15:11:34 -07002341 "with reality: %s, mode=%d.",
2342 connection->getInputChannelName(), mTempCancelationEvents.size(),
2343 options.reason, options.mode);
Jeff Brownb6997262010-10-08 22:31:17 -07002344#endif
2345 for (size_t i = 0; i < mTempCancelationEvents.size(); i++) {
2346 EventEntry* cancelationEventEntry = mTempCancelationEvents.itemAt(i);
2347 switch (cancelationEventEntry->type) {
2348 case EventEntry::TYPE_KEY:
2349 logOutboundKeyDetailsLocked("cancel - ",
2350 static_cast<KeyEntry*>(cancelationEventEntry));
2351 break;
2352 case EventEntry::TYPE_MOTION:
2353 logOutboundMotionDetailsLocked("cancel - ",
2354 static_cast<MotionEntry*>(cancelationEventEntry));
2355 break;
2356 }
2357
2358 int32_t xOffset, yOffset;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002359 float scaleFactor;
Jeff Brownb6997262010-10-08 22:31:17 -07002360 const InputWindow* window = getWindowLocked(connection->inputChannel);
2361 if (window) {
2362 xOffset = -window->frameLeft;
2363 yOffset = -window->frameTop;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002364 scaleFactor = window->scaleFactor;
Jeff Brownb6997262010-10-08 22:31:17 -07002365 } else {
2366 xOffset = 0;
2367 yOffset = 0;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002368 scaleFactor = 1.0f;
Jeff Brownb6997262010-10-08 22:31:17 -07002369 }
2370
2371 DispatchEntry* cancelationDispatchEntry =
2372 mAllocator.obtainDispatchEntry(cancelationEventEntry, // increments ref
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002373 0, xOffset, yOffset, scaleFactor);
Jeff Brownb6997262010-10-08 22:31:17 -07002374 connection->outboundQueue.enqueueAtTail(cancelationDispatchEntry);
2375
2376 mAllocator.releaseEventEntry(cancelationEventEntry);
2377 }
2378
2379 if (!connection->outboundQueue.headSentinel.next->inProgress) {
2380 startDispatchCycleLocked(currentTime, connection);
2381 }
2382 }
2383}
2384
Jeff Brown01ce2e92010-09-26 22:20:12 -07002385InputDispatcher::MotionEntry*
2386InputDispatcher::splitMotionEvent(const MotionEntry* originalMotionEntry, BitSet32 pointerIds) {
Jeff Brownb6110c22011-04-01 16:15:13 -07002387 LOG_ASSERT(pointerIds.value != 0);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002388
2389 uint32_t splitPointerIndexMap[MAX_POINTERS];
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002390 PointerProperties splitPointerProperties[MAX_POINTERS];
Jeff Brown01ce2e92010-09-26 22:20:12 -07002391 PointerCoords splitPointerCoords[MAX_POINTERS];
2392
2393 uint32_t originalPointerCount = originalMotionEntry->pointerCount;
2394 uint32_t splitPointerCount = 0;
2395
2396 for (uint32_t originalPointerIndex = 0; originalPointerIndex < originalPointerCount;
2397 originalPointerIndex++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002398 const PointerProperties& pointerProperties =
2399 originalMotionEntry->pointerProperties[originalPointerIndex];
2400 uint32_t pointerId = uint32_t(pointerProperties.id);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002401 if (pointerIds.hasBit(pointerId)) {
2402 splitPointerIndexMap[splitPointerCount] = originalPointerIndex;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002403 splitPointerProperties[splitPointerCount].copyFrom(pointerProperties);
Jeff Brownace13b12011-03-09 17:39:48 -08002404 splitPointerCoords[splitPointerCount].copyFrom(
2405 originalMotionEntry->firstSample.pointerCoords[originalPointerIndex]);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002406 splitPointerCount += 1;
2407 }
2408 }
Jeff Brown58a2da82011-01-25 16:02:22 -08002409
2410 if (splitPointerCount != pointerIds.count()) {
2411 // This is bad. We are missing some of the pointers that we expected to deliver.
2412 // Most likely this indicates that we received an ACTION_MOVE events that has
2413 // different pointer ids than we expected based on the previous ACTION_DOWN
2414 // or ACTION_POINTER_DOWN events that caused us to decide to split the pointers
2415 // in this way.
2416 LOGW("Dropping split motion event because the pointer count is %d but "
2417 "we expected there to be %d pointers. This probably means we received "
2418 "a broken sequence of pointer ids from the input device.",
2419 splitPointerCount, pointerIds.count());
2420 return NULL;
2421 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07002422
2423 int32_t action = originalMotionEntry->action;
2424 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK;
2425 if (maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN
2426 || maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
2427 int32_t originalPointerIndex = getMotionEventActionPointerIndex(action);
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002428 const PointerProperties& pointerProperties =
2429 originalMotionEntry->pointerProperties[originalPointerIndex];
2430 uint32_t pointerId = uint32_t(pointerProperties.id);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002431 if (pointerIds.hasBit(pointerId)) {
2432 if (pointerIds.count() == 1) {
2433 // The first/last pointer went down/up.
2434 action = maskedAction == AMOTION_EVENT_ACTION_POINTER_DOWN
2435 ? AMOTION_EVENT_ACTION_DOWN : AMOTION_EVENT_ACTION_UP;
Jeff Brown9a01d052010-09-27 16:35:11 -07002436 } else {
2437 // A secondary pointer went down/up.
2438 uint32_t splitPointerIndex = 0;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002439 while (pointerId != uint32_t(splitPointerProperties[splitPointerIndex].id)) {
Jeff Brown9a01d052010-09-27 16:35:11 -07002440 splitPointerIndex += 1;
2441 }
2442 action = maskedAction | (splitPointerIndex
2443 << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002444 }
2445 } else {
2446 // An unrelated pointer changed.
2447 action = AMOTION_EVENT_ACTION_MOVE;
2448 }
2449 }
2450
2451 MotionEntry* splitMotionEntry = mAllocator.obtainMotionEntry(
2452 originalMotionEntry->eventTime,
2453 originalMotionEntry->deviceId,
2454 originalMotionEntry->source,
2455 originalMotionEntry->policyFlags,
2456 action,
2457 originalMotionEntry->flags,
2458 originalMotionEntry->metaState,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002459 originalMotionEntry->buttonState,
Jeff Brown01ce2e92010-09-26 22:20:12 -07002460 originalMotionEntry->edgeFlags,
2461 originalMotionEntry->xPrecision,
2462 originalMotionEntry->yPrecision,
2463 originalMotionEntry->downTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002464 splitPointerCount, splitPointerProperties, splitPointerCoords);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002465
2466 for (MotionSample* originalMotionSample = originalMotionEntry->firstSample.next;
2467 originalMotionSample != NULL; originalMotionSample = originalMotionSample->next) {
2468 for (uint32_t splitPointerIndex = 0; splitPointerIndex < splitPointerCount;
2469 splitPointerIndex++) {
2470 uint32_t originalPointerIndex = splitPointerIndexMap[splitPointerIndex];
Jeff Brownace13b12011-03-09 17:39:48 -08002471 splitPointerCoords[splitPointerIndex].copyFrom(
2472 originalMotionSample->pointerCoords[originalPointerIndex]);
Jeff Brown01ce2e92010-09-26 22:20:12 -07002473 }
2474
2475 mAllocator.appendMotionSample(splitMotionEntry, originalMotionSample->eventTime,
2476 splitPointerCoords);
2477 }
2478
Jeff Browna032cc02011-03-07 16:56:21 -08002479 if (originalMotionEntry->injectionState) {
2480 splitMotionEntry->injectionState = originalMotionEntry->injectionState;
2481 splitMotionEntry->injectionState->refCount += 1;
2482 }
2483
Jeff Brown01ce2e92010-09-26 22:20:12 -07002484 return splitMotionEntry;
2485}
2486
Jeff Brown9c3cda02010-06-15 01:31:58 -07002487void InputDispatcher::notifyConfigurationChanged(nsecs_t eventTime) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002488#if DEBUG_INBOUND_EVENT_DETAILS
Jeff Brown9c3cda02010-06-15 01:31:58 -07002489 LOGD("notifyConfigurationChanged - eventTime=%lld", eventTime);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002490#endif
2491
Jeff Brownb88102f2010-09-08 11:49:43 -07002492 bool needWake;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002493 { // acquire lock
2494 AutoMutex _l(mLock);
2495
Jeff Brown7fbdc842010-06-17 20:52:56 -07002496 ConfigurationChangedEntry* newEntry = mAllocator.obtainConfigurationChangedEntry(eventTime);
Jeff Brownb88102f2010-09-08 11:49:43 -07002497 needWake = enqueueInboundEventLocked(newEntry);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002498 } // release lock
2499
Jeff Brownb88102f2010-09-08 11:49:43 -07002500 if (needWake) {
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002501 mLooper->wake();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002502 }
2503}
2504
Jeff Brown58a2da82011-01-25 16:02:22 -08002505void InputDispatcher::notifyKey(nsecs_t eventTime, int32_t deviceId, uint32_t source,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002506 uint32_t policyFlags, int32_t action, int32_t flags,
2507 int32_t keyCode, int32_t scanCode, int32_t metaState, nsecs_t downTime) {
2508#if DEBUG_INBOUND_EVENT_DETAILS
Jeff Brown90655042010-12-02 13:50:46 -08002509 LOGD("notifyKey - eventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, action=0x%x, "
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002510 "flags=0x%x, keyCode=0x%x, scanCode=0x%x, metaState=0x%x, downTime=%lld",
Jeff Brownc5ed5912010-07-14 18:48:53 -07002511 eventTime, deviceId, source, policyFlags, action, flags,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002512 keyCode, scanCode, metaState, downTime);
2513#endif
Jeff Brown01ce2e92010-09-26 22:20:12 -07002514 if (! validateKeyEvent(action)) {
2515 return;
2516 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002517
Jeff Brown1f245102010-11-18 20:53:46 -08002518 if ((policyFlags & POLICY_FLAG_VIRTUAL) || (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY)) {
2519 policyFlags |= POLICY_FLAG_VIRTUAL;
2520 flags |= AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY;
2521 }
Jeff Brown924c4d42011-03-07 16:40:47 -08002522 if (policyFlags & POLICY_FLAG_ALT) {
2523 metaState |= AMETA_ALT_ON | AMETA_ALT_LEFT_ON;
2524 }
2525 if (policyFlags & POLICY_FLAG_ALT_GR) {
2526 metaState |= AMETA_ALT_ON | AMETA_ALT_RIGHT_ON;
2527 }
2528 if (policyFlags & POLICY_FLAG_SHIFT) {
2529 metaState |= AMETA_SHIFT_ON | AMETA_SHIFT_LEFT_ON;
2530 }
2531 if (policyFlags & POLICY_FLAG_CAPS_LOCK) {
2532 metaState |= AMETA_CAPS_LOCK_ON;
2533 }
2534 if (policyFlags & POLICY_FLAG_FUNCTION) {
2535 metaState |= AMETA_FUNCTION_ON;
2536 }
Jeff Brown1f245102010-11-18 20:53:46 -08002537
Jeff Browne20c9e02010-10-11 14:20:19 -07002538 policyFlags |= POLICY_FLAG_TRUSTED;
Jeff Brown1f245102010-11-18 20:53:46 -08002539
2540 KeyEvent event;
2541 event.initialize(deviceId, source, action, flags, keyCode, scanCode,
2542 metaState, 0, downTime, eventTime);
2543
2544 mPolicy->interceptKeyBeforeQueueing(&event, /*byref*/ policyFlags);
2545
2546 if (policyFlags & POLICY_FLAG_WOKE_HERE) {
2547 flags |= AKEY_EVENT_FLAG_WOKE_HERE;
2548 }
Jeff Brownb6997262010-10-08 22:31:17 -07002549
Jeff Brownb88102f2010-09-08 11:49:43 -07002550 bool needWake;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002551 { // acquire lock
Jeff Brown0029c662011-03-30 02:25:18 -07002552 mLock.lock();
2553
2554 if (mInputFilterEnabled) {
2555 mLock.unlock();
2556
2557 policyFlags |= POLICY_FLAG_FILTERED;
2558 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
2559 return; // event was consumed by the filter
2560 }
2561
2562 mLock.lock();
2563 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002564
Jeff Brown7fbdc842010-06-17 20:52:56 -07002565 int32_t repeatCount = 0;
2566 KeyEntry* newEntry = mAllocator.obtainKeyEntry(eventTime,
Jeff Brownc5ed5912010-07-14 18:48:53 -07002567 deviceId, source, policyFlags, action, flags, keyCode, scanCode,
Jeff Brown7fbdc842010-06-17 20:52:56 -07002568 metaState, repeatCount, downTime);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002569
Jeff Brownb88102f2010-09-08 11:49:43 -07002570 needWake = enqueueInboundEventLocked(newEntry);
Jeff Brown0029c662011-03-30 02:25:18 -07002571 mLock.unlock();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002572 } // release lock
2573
Jeff Brownb88102f2010-09-08 11:49:43 -07002574 if (needWake) {
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002575 mLooper->wake();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002576 }
2577}
2578
Jeff Brown58a2da82011-01-25 16:02:22 -08002579void InputDispatcher::notifyMotion(nsecs_t eventTime, int32_t deviceId, uint32_t source,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002580 uint32_t policyFlags, int32_t action, int32_t flags,
2581 int32_t metaState, int32_t buttonState, int32_t edgeFlags,
2582 uint32_t pointerCount, const PointerProperties* pointerProperties,
2583 const PointerCoords* pointerCoords,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002584 float xPrecision, float yPrecision, nsecs_t downTime) {
2585#if DEBUG_INBOUND_EVENT_DETAILS
Jeff Brown90655042010-12-02 13:50:46 -08002586 LOGD("notifyMotion - eventTime=%lld, deviceId=%d, source=0x%x, policyFlags=0x%x, "
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002587 "action=0x%x, flags=0x%x, metaState=0x%x, buttonState=0x%x, edgeFlags=0x%x, "
Jeff Brown85a31762010-09-01 17:01:00 -07002588 "xPrecision=%f, yPrecision=%f, downTime=%lld",
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002589 eventTime, deviceId, source, policyFlags, action, flags,
2590 metaState, buttonState, edgeFlags,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002591 xPrecision, yPrecision, downTime);
2592 for (uint32_t i = 0; i < pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002593 LOGD(" Pointer %d: id=%d, toolType=%d, "
2594 "x=%f, y=%f, pressure=%f, size=%f, "
Jeff Brown85a31762010-09-01 17:01:00 -07002595 "touchMajor=%f, touchMinor=%f, toolMajor=%f, toolMinor=%f, "
Jeff Brown8d608662010-08-30 03:02:23 -07002596 "orientation=%f",
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002597 i, pointerProperties[i].id,
2598 pointerProperties[i].toolType,
Jeff Brownebbd5d12011-02-17 13:01:34 -08002599 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_X),
2600 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_Y),
2601 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_PRESSURE),
2602 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_SIZE),
2603 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR),
2604 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR),
2605 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR),
2606 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR),
2607 pointerCoords[i].getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION));
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002608 }
2609#endif
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002610 if (! validateMotionEvent(action, pointerCount, pointerProperties)) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07002611 return;
2612 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002613
Jeff Browne20c9e02010-10-11 14:20:19 -07002614 policyFlags |= POLICY_FLAG_TRUSTED;
Jeff Brown56194eb2011-03-02 19:23:13 -08002615 mPolicy->interceptMotionBeforeQueueing(eventTime, /*byref*/ policyFlags);
Jeff Brownb6997262010-10-08 22:31:17 -07002616
Jeff Brownb88102f2010-09-08 11:49:43 -07002617 bool needWake;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002618 { // acquire lock
Jeff Brown0029c662011-03-30 02:25:18 -07002619 mLock.lock();
2620
2621 if (mInputFilterEnabled) {
2622 mLock.unlock();
2623
2624 MotionEvent event;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002625 event.initialize(deviceId, source, action, flags, edgeFlags, metaState,
2626 buttonState, 0, 0,
Jeff Brown0029c662011-03-30 02:25:18 -07002627 xPrecision, yPrecision, downTime, eventTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002628 pointerCount, pointerProperties, pointerCoords);
Jeff Brown0029c662011-03-30 02:25:18 -07002629
2630 policyFlags |= POLICY_FLAG_FILTERED;
2631 if (!mPolicy->filterInputEvent(&event, policyFlags)) {
2632 return; // event was consumed by the filter
2633 }
2634
2635 mLock.lock();
2636 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002637
2638 // Attempt batching and streaming of move events.
Jeff Browncc0c1592011-02-19 05:07:28 -08002639 if (action == AMOTION_EVENT_ACTION_MOVE
2640 || action == AMOTION_EVENT_ACTION_HOVER_MOVE) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002641 // BATCHING CASE
2642 //
2643 // Try to append a move sample to the tail of the inbound queue for this device.
2644 // Give up if we encounter a non-move motion event for this device since that
2645 // means we cannot append any new samples until a new motion event has started.
Jeff Brownb88102f2010-09-08 11:49:43 -07002646 for (EventEntry* entry = mInboundQueue.tailSentinel.prev;
2647 entry != & mInboundQueue.headSentinel; entry = entry->prev) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002648 if (entry->type != EventEntry::TYPE_MOTION) {
2649 // Keep looking for motion events.
2650 continue;
2651 }
2652
2653 MotionEntry* motionEntry = static_cast<MotionEntry*>(entry);
Jeff Brownefd32662011-03-08 15:13:06 -08002654 if (motionEntry->deviceId != deviceId
2655 || motionEntry->source != source) {
2656 // Keep looking for this device and source.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002657 continue;
2658 }
2659
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002660 if (!motionEntry->canAppendSamples(action, pointerCount, pointerProperties)) {
Jeff Brownefd32662011-03-08 15:13:06 -08002661 // Last motion event in the queue for this device and source is
2662 // not compatible for appending new samples. Stop here.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002663 goto NoBatchingOrStreaming;
2664 }
2665
Jeff Brown9c3cda02010-06-15 01:31:58 -07002666 // Do the batching magic.
Jeff Brown4e91a182011-04-07 11:38:09 -07002667 batchMotionLocked(motionEntry, eventTime, metaState, pointerCoords,
2668 "most recent motion event for this device and source in the inbound queue");
Jeff Brown0029c662011-03-30 02:25:18 -07002669 mLock.unlock();
Jeff Brown9c3cda02010-06-15 01:31:58 -07002670 return; // done!
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002671 }
2672
Jeff Brownf6989da2011-04-06 17:19:48 -07002673 // BATCHING ONTO PENDING EVENT CASE
2674 //
2675 // Try to append a move sample to the currently pending event, if there is one.
2676 // We can do this as long as we are still waiting to find the targets for the
2677 // event. Once the targets are locked-in we can only do streaming.
2678 if (mPendingEvent
2679 && (!mPendingEvent->dispatchInProgress || !mCurrentInputTargetsValid)
2680 && mPendingEvent->type == EventEntry::TYPE_MOTION) {
2681 MotionEntry* motionEntry = static_cast<MotionEntry*>(mPendingEvent);
2682 if (motionEntry->deviceId == deviceId && motionEntry->source == source) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002683 if (!motionEntry->canAppendSamples(action, pointerCount, pointerProperties)) {
Jeff Brown4e91a182011-04-07 11:38:09 -07002684 // Pending motion event is for this device and source but it is
2685 // not compatible for appending new samples. Stop here.
Jeff Brownf6989da2011-04-06 17:19:48 -07002686 goto NoBatchingOrStreaming;
2687 }
2688
Jeff Brownf6989da2011-04-06 17:19:48 -07002689 // Do the batching magic.
Jeff Brown4e91a182011-04-07 11:38:09 -07002690 batchMotionLocked(motionEntry, eventTime, metaState, pointerCoords,
2691 "pending motion event");
Jeff Brownf6989da2011-04-06 17:19:48 -07002692 mLock.unlock();
2693 return; // done!
2694 }
2695 }
2696
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002697 // STREAMING CASE
2698 //
2699 // There is no pending motion event (of any kind) for this device in the inbound queue.
Jeff Brown519e0242010-09-15 15:18:56 -07002700 // Search the outbound queue for the current foreground targets to find a dispatched
2701 // motion event that is still in progress. If found, then, appen the new sample to
2702 // that event and push it out to all current targets. The logic in
2703 // prepareDispatchCycleLocked takes care of the case where some targets may
2704 // already have consumed the motion event by starting a new dispatch cycle if needed.
Jeff Brown9c3cda02010-06-15 01:31:58 -07002705 if (mCurrentInputTargetsValid) {
Jeff Brown519e0242010-09-15 15:18:56 -07002706 for (size_t i = 0; i < mCurrentInputTargets.size(); i++) {
2707 const InputTarget& inputTarget = mCurrentInputTargets[i];
2708 if ((inputTarget.flags & InputTarget::FLAG_FOREGROUND) == 0) {
2709 // Skip non-foreground targets. We only want to stream if there is at
2710 // least one foreground target whose dispatch is still in progress.
2711 continue;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002712 }
Jeff Brown519e0242010-09-15 15:18:56 -07002713
2714 ssize_t connectionIndex = getConnectionIndexLocked(inputTarget.inputChannel);
2715 if (connectionIndex < 0) {
2716 // Connection must no longer be valid.
2717 continue;
2718 }
2719
2720 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
2721 if (connection->outboundQueue.isEmpty()) {
2722 // This foreground target has an empty outbound queue.
2723 continue;
2724 }
2725
2726 DispatchEntry* dispatchEntry = connection->outboundQueue.headSentinel.next;
2727 if (! dispatchEntry->inProgress
Jeff Brown01ce2e92010-09-26 22:20:12 -07002728 || dispatchEntry->eventEntry->type != EventEntry::TYPE_MOTION
2729 || dispatchEntry->isSplit()) {
2730 // No motion event is being dispatched, or it is being split across
2731 // windows in which case we cannot stream.
Jeff Brown519e0242010-09-15 15:18:56 -07002732 continue;
2733 }
2734
2735 MotionEntry* motionEntry = static_cast<MotionEntry*>(
2736 dispatchEntry->eventEntry);
Jeff Browncc0c1592011-02-19 05:07:28 -08002737 if (motionEntry->action != action
Jeff Brown519e0242010-09-15 15:18:56 -07002738 || motionEntry->deviceId != deviceId
Jeff Brown58a2da82011-01-25 16:02:22 -08002739 || motionEntry->source != source
Jeff Brown519e0242010-09-15 15:18:56 -07002740 || motionEntry->pointerCount != pointerCount
2741 || motionEntry->isInjected()) {
2742 // The motion event is not compatible with this move.
2743 continue;
2744 }
2745
Jeff Browna032cc02011-03-07 16:56:21 -08002746 if (action == AMOTION_EVENT_ACTION_HOVER_MOVE) {
2747 if (!mLastHoverWindow) {
2748#if DEBUG_BATCHING
2749 LOGD("Not streaming hover move because there is no "
2750 "last hovered window.");
2751#endif
2752 goto NoBatchingOrStreaming;
2753 }
2754
2755 const InputWindow* hoverWindow = findTouchedWindowAtLocked(
2756 pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_X),
2757 pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_Y));
2758 if (mLastHoverWindow != hoverWindow) {
2759#if DEBUG_BATCHING
2760 LOGD("Not streaming hover move because the last hovered window "
2761 "is '%s' but the currently hovered window is '%s'.",
2762 mLastHoverWindow->name.string(),
2763 hoverWindow ? hoverWindow->name.string() : "<null>");
2764#endif
2765 goto NoBatchingOrStreaming;
2766 }
2767 }
2768
Jeff Brown519e0242010-09-15 15:18:56 -07002769 // Hurray! This foreground target is currently dispatching a move event
2770 // that we can stream onto. Append the motion sample and resume dispatch.
2771 mAllocator.appendMotionSample(motionEntry, eventTime, pointerCoords);
2772#if DEBUG_BATCHING
2773 LOGD("Appended motion sample onto batch for most recently dispatched "
Jeff Brown4e91a182011-04-07 11:38:09 -07002774 "motion event for this device and source in the outbound queues. "
Jeff Brown519e0242010-09-15 15:18:56 -07002775 "Attempting to stream the motion sample.");
2776#endif
2777 nsecs_t currentTime = now();
2778 dispatchEventToCurrentInputTargetsLocked(currentTime, motionEntry,
2779 true /*resumeWithAppendedMotionSample*/);
2780
2781 runCommandsLockedInterruptible();
Jeff Brown0029c662011-03-30 02:25:18 -07002782 mLock.unlock();
Jeff Brown519e0242010-09-15 15:18:56 -07002783 return; // done!
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002784 }
2785 }
2786
2787NoBatchingOrStreaming:;
2788 }
2789
2790 // Just enqueue a new motion event.
Jeff Brown7fbdc842010-06-17 20:52:56 -07002791 MotionEntry* newEntry = mAllocator.obtainMotionEntry(eventTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002792 deviceId, source, policyFlags, action, flags, metaState, buttonState, edgeFlags,
Jeff Brown7fbdc842010-06-17 20:52:56 -07002793 xPrecision, yPrecision, downTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002794 pointerCount, pointerProperties, pointerCoords);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002795
Jeff Brownb88102f2010-09-08 11:49:43 -07002796 needWake = enqueueInboundEventLocked(newEntry);
Jeff Brown0029c662011-03-30 02:25:18 -07002797 mLock.unlock();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002798 } // release lock
2799
Jeff Brownb88102f2010-09-08 11:49:43 -07002800 if (needWake) {
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002801 mLooper->wake();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07002802 }
2803}
2804
Jeff Brown4e91a182011-04-07 11:38:09 -07002805void InputDispatcher::batchMotionLocked(MotionEntry* entry, nsecs_t eventTime,
2806 int32_t metaState, const PointerCoords* pointerCoords, const char* eventDescription) {
2807 // Combine meta states.
2808 entry->metaState |= metaState;
2809
2810 // Coalesce this sample if not enough time has elapsed since the last sample was
2811 // initially appended to the batch.
2812 MotionSample* lastSample = entry->lastSample;
2813 long interval = eventTime - lastSample->eventTimeBeforeCoalescing;
2814 if (interval <= MOTION_SAMPLE_COALESCE_INTERVAL) {
2815 uint32_t pointerCount = entry->pointerCount;
2816 for (uint32_t i = 0; i < pointerCount; i++) {
2817 lastSample->pointerCoords[i].copyFrom(pointerCoords[i]);
2818 }
2819 lastSample->eventTime = eventTime;
2820#if DEBUG_BATCHING
2821 LOGD("Coalesced motion into last sample of batch for %s, events were %0.3f ms apart",
2822 eventDescription, interval * 0.000001f);
2823#endif
2824 return;
2825 }
2826
2827 // Append the sample.
2828 mAllocator.appendMotionSample(entry, eventTime, pointerCoords);
2829#if DEBUG_BATCHING
2830 LOGD("Appended motion sample onto batch for %s, events were %0.3f ms apart",
2831 eventDescription, interval * 0.000001f);
2832#endif
2833}
2834
Jeff Brownb6997262010-10-08 22:31:17 -07002835void InputDispatcher::notifySwitch(nsecs_t when, int32_t switchCode, int32_t switchValue,
2836 uint32_t policyFlags) {
2837#if DEBUG_INBOUND_EVENT_DETAILS
2838 LOGD("notifySwitch - switchCode=%d, switchValue=%d, policyFlags=0x%x",
2839 switchCode, switchValue, policyFlags);
2840#endif
2841
Jeff Browne20c9e02010-10-11 14:20:19 -07002842 policyFlags |= POLICY_FLAG_TRUSTED;
Jeff Brownb6997262010-10-08 22:31:17 -07002843 mPolicy->notifySwitch(when, switchCode, switchValue, policyFlags);
2844}
2845
Jeff Brown7fbdc842010-06-17 20:52:56 -07002846int32_t InputDispatcher::injectInputEvent(const InputEvent* event,
Jeff Brown0029c662011-03-30 02:25:18 -07002847 int32_t injectorPid, int32_t injectorUid, int32_t syncMode, int32_t timeoutMillis,
2848 uint32_t policyFlags) {
Jeff Brown7fbdc842010-06-17 20:52:56 -07002849#if DEBUG_INBOUND_EVENT_DETAILS
2850 LOGD("injectInputEvent - eventType=%d, injectorPid=%d, injectorUid=%d, "
Jeff Brown0029c662011-03-30 02:25:18 -07002851 "syncMode=%d, timeoutMillis=%d, policyFlags=0x%08x",
2852 event->getType(), injectorPid, injectorUid, syncMode, timeoutMillis, policyFlags);
Jeff Brown7fbdc842010-06-17 20:52:56 -07002853#endif
2854
2855 nsecs_t endTime = now() + milliseconds_to_nanoseconds(timeoutMillis);
Jeff Browne20c9e02010-10-11 14:20:19 -07002856
Jeff Brown0029c662011-03-30 02:25:18 -07002857 policyFlags |= POLICY_FLAG_INJECTED;
Jeff Browne20c9e02010-10-11 14:20:19 -07002858 if (hasInjectionPermission(injectorPid, injectorUid)) {
2859 policyFlags |= POLICY_FLAG_TRUSTED;
2860 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07002861
Jeff Brownb6997262010-10-08 22:31:17 -07002862 EventEntry* injectedEntry;
2863 switch (event->getType()) {
2864 case AINPUT_EVENT_TYPE_KEY: {
2865 const KeyEvent* keyEvent = static_cast<const KeyEvent*>(event);
2866 int32_t action = keyEvent->getAction();
2867 if (! validateKeyEvent(action)) {
Jeff Brownb88102f2010-09-08 11:49:43 -07002868 return INPUT_EVENT_INJECTION_FAILED;
2869 }
2870
Jeff Brownb6997262010-10-08 22:31:17 -07002871 int32_t flags = keyEvent->getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002872 if (flags & AKEY_EVENT_FLAG_VIRTUAL_HARD_KEY) {
2873 policyFlags |= POLICY_FLAG_VIRTUAL;
2874 }
2875
Jeff Brown0029c662011-03-30 02:25:18 -07002876 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
2877 mPolicy->interceptKeyBeforeQueueing(keyEvent, /*byref*/ policyFlags);
2878 }
Jeff Brown1f245102010-11-18 20:53:46 -08002879
2880 if (policyFlags & POLICY_FLAG_WOKE_HERE) {
2881 flags |= AKEY_EVENT_FLAG_WOKE_HERE;
2882 }
Jeff Brown6ec402b2010-07-28 15:48:59 -07002883
Jeff Brownb6997262010-10-08 22:31:17 -07002884 mLock.lock();
Jeff Brown1f245102010-11-18 20:53:46 -08002885 injectedEntry = mAllocator.obtainKeyEntry(keyEvent->getEventTime(),
2886 keyEvent->getDeviceId(), keyEvent->getSource(),
2887 policyFlags, action, flags,
2888 keyEvent->getKeyCode(), keyEvent->getScanCode(), keyEvent->getMetaState(),
Jeff Brownb6997262010-10-08 22:31:17 -07002889 keyEvent->getRepeatCount(), keyEvent->getDownTime());
2890 break;
2891 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07002892
Jeff Brownb6997262010-10-08 22:31:17 -07002893 case AINPUT_EVENT_TYPE_MOTION: {
2894 const MotionEvent* motionEvent = static_cast<const MotionEvent*>(event);
2895 int32_t action = motionEvent->getAction();
2896 size_t pointerCount = motionEvent->getPointerCount();
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002897 const PointerProperties* pointerProperties = motionEvent->getPointerProperties();
2898 if (! validateMotionEvent(action, pointerCount, pointerProperties)) {
Jeff Brownb6997262010-10-08 22:31:17 -07002899 return INPUT_EVENT_INJECTION_FAILED;
2900 }
2901
Jeff Brown0029c662011-03-30 02:25:18 -07002902 if (!(policyFlags & POLICY_FLAG_FILTERED)) {
2903 nsecs_t eventTime = motionEvent->getEventTime();
2904 mPolicy->interceptMotionBeforeQueueing(eventTime, /*byref*/ policyFlags);
2905 }
Jeff Brownb6997262010-10-08 22:31:17 -07002906
2907 mLock.lock();
2908 const nsecs_t* sampleEventTimes = motionEvent->getSampleEventTimes();
2909 const PointerCoords* samplePointerCoords = motionEvent->getSamplePointerCoords();
2910 MotionEntry* motionEntry = mAllocator.obtainMotionEntry(*sampleEventTimes,
2911 motionEvent->getDeviceId(), motionEvent->getSource(), policyFlags,
2912 action, motionEvent->getFlags(),
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002913 motionEvent->getMetaState(), motionEvent->getButtonState(),
2914 motionEvent->getEdgeFlags(),
Jeff Brownb6997262010-10-08 22:31:17 -07002915 motionEvent->getXPrecision(), motionEvent->getYPrecision(),
2916 motionEvent->getDownTime(), uint32_t(pointerCount),
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07002917 pointerProperties, samplePointerCoords);
Jeff Brownb6997262010-10-08 22:31:17 -07002918 for (size_t i = motionEvent->getHistorySize(); i > 0; i--) {
2919 sampleEventTimes += 1;
2920 samplePointerCoords += pointerCount;
2921 mAllocator.appendMotionSample(motionEntry, *sampleEventTimes, samplePointerCoords);
2922 }
2923 injectedEntry = motionEntry;
2924 break;
2925 }
2926
2927 default:
2928 LOGW("Cannot inject event of type %d", event->getType());
2929 return INPUT_EVENT_INJECTION_FAILED;
2930 }
2931
2932 InjectionState* injectionState = mAllocator.obtainInjectionState(injectorPid, injectorUid);
2933 if (syncMode == INPUT_EVENT_INJECTION_SYNC_NONE) {
2934 injectionState->injectionIsAsync = true;
2935 }
2936
2937 injectionState->refCount += 1;
2938 injectedEntry->injectionState = injectionState;
2939
2940 bool needWake = enqueueInboundEventLocked(injectedEntry);
2941 mLock.unlock();
Jeff Brown7fbdc842010-06-17 20:52:56 -07002942
Jeff Brownb88102f2010-09-08 11:49:43 -07002943 if (needWake) {
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07002944 mLooper->wake();
Jeff Brown7fbdc842010-06-17 20:52:56 -07002945 }
2946
2947 int32_t injectionResult;
2948 { // acquire lock
2949 AutoMutex _l(mLock);
2950
Jeff Brown6ec402b2010-07-28 15:48:59 -07002951 if (syncMode == INPUT_EVENT_INJECTION_SYNC_NONE) {
2952 injectionResult = INPUT_EVENT_INJECTION_SUCCEEDED;
2953 } else {
2954 for (;;) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07002955 injectionResult = injectionState->injectionResult;
Jeff Brown6ec402b2010-07-28 15:48:59 -07002956 if (injectionResult != INPUT_EVENT_INJECTION_PENDING) {
2957 break;
2958 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07002959
Jeff Brown7fbdc842010-06-17 20:52:56 -07002960 nsecs_t remainingTimeout = endTime - now();
2961 if (remainingTimeout <= 0) {
Jeff Brown6ec402b2010-07-28 15:48:59 -07002962#if DEBUG_INJECTION
2963 LOGD("injectInputEvent - Timed out waiting for injection result "
2964 "to become available.");
2965#endif
Jeff Brown7fbdc842010-06-17 20:52:56 -07002966 injectionResult = INPUT_EVENT_INJECTION_TIMED_OUT;
2967 break;
2968 }
2969
Jeff Brown6ec402b2010-07-28 15:48:59 -07002970 mInjectionResultAvailableCondition.waitRelative(mLock, remainingTimeout);
2971 }
2972
2973 if (injectionResult == INPUT_EVENT_INJECTION_SUCCEEDED
2974 && syncMode == INPUT_EVENT_INJECTION_SYNC_WAIT_FOR_FINISHED) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07002975 while (injectionState->pendingForegroundDispatches != 0) {
Jeff Brown6ec402b2010-07-28 15:48:59 -07002976#if DEBUG_INJECTION
Jeff Brown519e0242010-09-15 15:18:56 -07002977 LOGD("injectInputEvent - Waiting for %d pending foreground dispatches.",
Jeff Brown01ce2e92010-09-26 22:20:12 -07002978 injectionState->pendingForegroundDispatches);
Jeff Brown6ec402b2010-07-28 15:48:59 -07002979#endif
2980 nsecs_t remainingTimeout = endTime - now();
2981 if (remainingTimeout <= 0) {
2982#if DEBUG_INJECTION
Jeff Brown519e0242010-09-15 15:18:56 -07002983 LOGD("injectInputEvent - Timed out waiting for pending foreground "
Jeff Brown6ec402b2010-07-28 15:48:59 -07002984 "dispatches to finish.");
2985#endif
2986 injectionResult = INPUT_EVENT_INJECTION_TIMED_OUT;
2987 break;
2988 }
2989
2990 mInjectionSyncFinishedCondition.waitRelative(mLock, remainingTimeout);
2991 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07002992 }
2993 }
2994
Jeff Brown01ce2e92010-09-26 22:20:12 -07002995 mAllocator.releaseInjectionState(injectionState);
Jeff Brown7fbdc842010-06-17 20:52:56 -07002996 } // release lock
2997
Jeff Brown6ec402b2010-07-28 15:48:59 -07002998#if DEBUG_INJECTION
2999 LOGD("injectInputEvent - Finished with result %d. "
3000 "injectorPid=%d, injectorUid=%d",
3001 injectionResult, injectorPid, injectorUid);
3002#endif
3003
Jeff Brown7fbdc842010-06-17 20:52:56 -07003004 return injectionResult;
3005}
3006
Jeff Brownb6997262010-10-08 22:31:17 -07003007bool InputDispatcher::hasInjectionPermission(int32_t injectorPid, int32_t injectorUid) {
3008 return injectorUid == 0
3009 || mPolicy->checkInjectEventsPermissionNonReentrant(injectorPid, injectorUid);
3010}
3011
Jeff Brown7fbdc842010-06-17 20:52:56 -07003012void InputDispatcher::setInjectionResultLocked(EventEntry* entry, int32_t injectionResult) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07003013 InjectionState* injectionState = entry->injectionState;
3014 if (injectionState) {
Jeff Brown7fbdc842010-06-17 20:52:56 -07003015#if DEBUG_INJECTION
3016 LOGD("Setting input event injection result to %d. "
3017 "injectorPid=%d, injectorUid=%d",
Jeff Brown01ce2e92010-09-26 22:20:12 -07003018 injectionResult, injectionState->injectorPid, injectionState->injectorUid);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003019#endif
3020
Jeff Brown0029c662011-03-30 02:25:18 -07003021 if (injectionState->injectionIsAsync
3022 && !(entry->policyFlags & POLICY_FLAG_FILTERED)) {
Jeff Brown6ec402b2010-07-28 15:48:59 -07003023 // Log the outcome since the injector did not wait for the injection result.
3024 switch (injectionResult) {
3025 case INPUT_EVENT_INJECTION_SUCCEEDED:
3026 LOGV("Asynchronous input event injection succeeded.");
3027 break;
3028 case INPUT_EVENT_INJECTION_FAILED:
3029 LOGW("Asynchronous input event injection failed.");
3030 break;
3031 case INPUT_EVENT_INJECTION_PERMISSION_DENIED:
3032 LOGW("Asynchronous input event injection permission denied.");
3033 break;
3034 case INPUT_EVENT_INJECTION_TIMED_OUT:
3035 LOGW("Asynchronous input event injection timed out.");
3036 break;
3037 }
3038 }
3039
Jeff Brown01ce2e92010-09-26 22:20:12 -07003040 injectionState->injectionResult = injectionResult;
Jeff Brown7fbdc842010-06-17 20:52:56 -07003041 mInjectionResultAvailableCondition.broadcast();
3042 }
3043}
3044
Jeff Brown01ce2e92010-09-26 22:20:12 -07003045void InputDispatcher::incrementPendingForegroundDispatchesLocked(EventEntry* entry) {
3046 InjectionState* injectionState = entry->injectionState;
3047 if (injectionState) {
3048 injectionState->pendingForegroundDispatches += 1;
3049 }
3050}
3051
Jeff Brown519e0242010-09-15 15:18:56 -07003052void InputDispatcher::decrementPendingForegroundDispatchesLocked(EventEntry* entry) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07003053 InjectionState* injectionState = entry->injectionState;
3054 if (injectionState) {
3055 injectionState->pendingForegroundDispatches -= 1;
Jeff Brown6ec402b2010-07-28 15:48:59 -07003056
Jeff Brown01ce2e92010-09-26 22:20:12 -07003057 if (injectionState->pendingForegroundDispatches == 0) {
3058 mInjectionSyncFinishedCondition.broadcast();
3059 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003060 }
3061}
3062
Jeff Brown01ce2e92010-09-26 22:20:12 -07003063const InputWindow* InputDispatcher::getWindowLocked(const sp<InputChannel>& inputChannel) {
3064 for (size_t i = 0; i < mWindows.size(); i++) {
3065 const InputWindow* window = & mWindows[i];
3066 if (window->inputChannel == inputChannel) {
3067 return window;
3068 }
3069 }
3070 return NULL;
3071}
3072
Jeff Brownb88102f2010-09-08 11:49:43 -07003073void InputDispatcher::setInputWindows(const Vector<InputWindow>& inputWindows) {
3074#if DEBUG_FOCUS
3075 LOGD("setInputWindows");
3076#endif
3077 { // acquire lock
3078 AutoMutex _l(mLock);
3079
Jeff Brown01ce2e92010-09-26 22:20:12 -07003080 // Clear old window pointers.
Jeff Brownb6997262010-10-08 22:31:17 -07003081 sp<InputChannel> oldFocusedWindowChannel;
3082 if (mFocusedWindow) {
3083 oldFocusedWindowChannel = mFocusedWindow->inputChannel;
3084 mFocusedWindow = NULL;
3085 }
Jeff Browna032cc02011-03-07 16:56:21 -08003086 sp<InputChannel> oldLastHoverWindowChannel;
3087 if (mLastHoverWindow) {
3088 oldLastHoverWindowChannel = mLastHoverWindow->inputChannel;
3089 mLastHoverWindow = NULL;
3090 }
Jeff Brownb6997262010-10-08 22:31:17 -07003091
Jeff Brownb88102f2010-09-08 11:49:43 -07003092 mWindows.clear();
Jeff Brown2a95c2a2010-09-16 12:31:46 -07003093
3094 // Loop over new windows and rebuild the necessary window pointers for
3095 // tracking focus and touch.
Jeff Brownb88102f2010-09-08 11:49:43 -07003096 mWindows.appendVector(inputWindows);
3097
3098 size_t numWindows = mWindows.size();
3099 for (size_t i = 0; i < numWindows; i++) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07003100 const InputWindow* window = & mWindows.itemAt(i);
Jeff Brownb88102f2010-09-08 11:49:43 -07003101 if (window->hasFocus) {
3102 mFocusedWindow = window;
Jeff Brown01ce2e92010-09-26 22:20:12 -07003103 break;
Jeff Brownb88102f2010-09-08 11:49:43 -07003104 }
3105 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07003106
Jeff Brownb6997262010-10-08 22:31:17 -07003107 if (oldFocusedWindowChannel != NULL) {
3108 if (!mFocusedWindow || oldFocusedWindowChannel != mFocusedWindow->inputChannel) {
3109#if DEBUG_FOCUS
3110 LOGD("Focus left window: %s",
3111 oldFocusedWindowChannel->getName().string());
3112#endif
Jeff Brownda3d5a92011-03-29 15:11:34 -07003113 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS,
3114 "focus left window");
3115 synthesizeCancelationEventsForInputChannelLocked(oldFocusedWindowChannel, options);
Jeff Brownb6997262010-10-08 22:31:17 -07003116 oldFocusedWindowChannel.clear();
3117 }
3118 }
3119 if (mFocusedWindow && oldFocusedWindowChannel == NULL) {
3120#if DEBUG_FOCUS
3121 LOGD("Focus entered window: %s",
3122 mFocusedWindow->inputChannel->getName().string());
3123#endif
3124 }
3125
Jeff Brown01ce2e92010-09-26 22:20:12 -07003126 for (size_t i = 0; i < mTouchState.windows.size(); ) {
3127 TouchedWindow& touchedWindow = mTouchState.windows.editItemAt(i);
3128 const InputWindow* window = getWindowLocked(touchedWindow.channel);
3129 if (window) {
3130 touchedWindow.window = window;
3131 i += 1;
3132 } else {
Jeff Brownb6997262010-10-08 22:31:17 -07003133#if DEBUG_FOCUS
3134 LOGD("Touched window was removed: %s", touchedWindow.channel->getName().string());
3135#endif
Jeff Brownda3d5a92011-03-29 15:11:34 -07003136 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
3137 "touched window was removed");
3138 synthesizeCancelationEventsForInputChannelLocked(touchedWindow.channel, options);
Jeff Brownaf48cae2010-10-15 16:20:51 -07003139 mTouchState.windows.removeAt(i);
Jeff Brown01ce2e92010-09-26 22:20:12 -07003140 }
3141 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003142
Jeff Browna032cc02011-03-07 16:56:21 -08003143 // Recover the last hovered window.
3144 if (oldLastHoverWindowChannel != NULL) {
3145 mLastHoverWindow = getWindowLocked(oldLastHoverWindowChannel);
3146 oldLastHoverWindowChannel.clear();
3147 }
3148
Jeff Brownb88102f2010-09-08 11:49:43 -07003149#if DEBUG_FOCUS
Jeff Brownb6997262010-10-08 22:31:17 -07003150 //logDispatchStateLocked();
Jeff Brownb88102f2010-09-08 11:49:43 -07003151#endif
3152 } // release lock
3153
3154 // Wake up poll loop since it may need to make new input dispatching choices.
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003155 mLooper->wake();
Jeff Brownb88102f2010-09-08 11:49:43 -07003156}
3157
3158void InputDispatcher::setFocusedApplication(const InputApplication* inputApplication) {
3159#if DEBUG_FOCUS
3160 LOGD("setFocusedApplication");
3161#endif
3162 { // acquire lock
3163 AutoMutex _l(mLock);
3164
3165 releaseFocusedApplicationLocked();
3166
3167 if (inputApplication) {
3168 mFocusedApplicationStorage = *inputApplication;
3169 mFocusedApplication = & mFocusedApplicationStorage;
3170 }
3171
3172#if DEBUG_FOCUS
Jeff Brownb6997262010-10-08 22:31:17 -07003173 //logDispatchStateLocked();
Jeff Brownb88102f2010-09-08 11:49:43 -07003174#endif
3175 } // release lock
3176
3177 // Wake up poll loop since it may need to make new input dispatching choices.
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003178 mLooper->wake();
Jeff Brownb88102f2010-09-08 11:49:43 -07003179}
3180
3181void InputDispatcher::releaseFocusedApplicationLocked() {
3182 if (mFocusedApplication) {
3183 mFocusedApplication = NULL;
Jeff Brown928e0542011-01-10 11:17:36 -08003184 mFocusedApplicationStorage.inputApplicationHandle.clear();
Jeff Brownb88102f2010-09-08 11:49:43 -07003185 }
3186}
3187
3188void InputDispatcher::setInputDispatchMode(bool enabled, bool frozen) {
3189#if DEBUG_FOCUS
3190 LOGD("setInputDispatchMode: enabled=%d, frozen=%d", enabled, frozen);
3191#endif
3192
3193 bool changed;
3194 { // acquire lock
3195 AutoMutex _l(mLock);
3196
3197 if (mDispatchEnabled != enabled || mDispatchFrozen != frozen) {
Jeff Brown120a4592010-10-27 18:43:51 -07003198 if (mDispatchFrozen && !frozen) {
Jeff Brownb88102f2010-09-08 11:49:43 -07003199 resetANRTimeoutsLocked();
3200 }
3201
Jeff Brown120a4592010-10-27 18:43:51 -07003202 if (mDispatchEnabled && !enabled) {
3203 resetAndDropEverythingLocked("dispatcher is being disabled");
3204 }
3205
Jeff Brownb88102f2010-09-08 11:49:43 -07003206 mDispatchEnabled = enabled;
3207 mDispatchFrozen = frozen;
3208 changed = true;
3209 } else {
3210 changed = false;
3211 }
3212
3213#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 if (changed) {
3219 // Wake up poll loop since it may need to make new input dispatching choices.
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003220 mLooper->wake();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003221 }
3222}
3223
Jeff Brown0029c662011-03-30 02:25:18 -07003224void InputDispatcher::setInputFilterEnabled(bool enabled) {
3225#if DEBUG_FOCUS
3226 LOGD("setInputFilterEnabled: enabled=%d", enabled);
3227#endif
3228
3229 { // acquire lock
3230 AutoMutex _l(mLock);
3231
3232 if (mInputFilterEnabled == enabled) {
3233 return;
3234 }
3235
3236 mInputFilterEnabled = enabled;
3237 resetAndDropEverythingLocked("input filter is being enabled or disabled");
3238 } // release lock
3239
3240 // Wake up poll loop since there might be work to do to drop everything.
3241 mLooper->wake();
3242}
3243
Jeff Browne6504122010-09-27 14:52:15 -07003244bool InputDispatcher::transferTouchFocus(const sp<InputChannel>& fromChannel,
3245 const sp<InputChannel>& toChannel) {
3246#if DEBUG_FOCUS
3247 LOGD("transferTouchFocus: fromChannel=%s, toChannel=%s",
3248 fromChannel->getName().string(), toChannel->getName().string());
3249#endif
3250 { // acquire lock
3251 AutoMutex _l(mLock);
3252
3253 const InputWindow* fromWindow = getWindowLocked(fromChannel);
3254 const InputWindow* toWindow = getWindowLocked(toChannel);
3255 if (! fromWindow || ! toWindow) {
3256#if DEBUG_FOCUS
3257 LOGD("Cannot transfer focus because from or to window not found.");
3258#endif
3259 return false;
3260 }
3261 if (fromWindow == toWindow) {
3262#if DEBUG_FOCUS
3263 LOGD("Trivial transfer to same window.");
3264#endif
3265 return true;
3266 }
3267
3268 bool found = false;
3269 for (size_t i = 0; i < mTouchState.windows.size(); i++) {
3270 const TouchedWindow& touchedWindow = mTouchState.windows[i];
3271 if (touchedWindow.window == fromWindow) {
3272 int32_t oldTargetFlags = touchedWindow.targetFlags;
3273 BitSet32 pointerIds = touchedWindow.pointerIds;
3274
3275 mTouchState.windows.removeAt(i);
3276
Jeff Brown46e75292010-11-10 16:53:45 -08003277 int32_t newTargetFlags = oldTargetFlags
Jeff Browna032cc02011-03-07 16:56:21 -08003278 & (InputTarget::FLAG_FOREGROUND
3279 | InputTarget::FLAG_SPLIT | InputTarget::FLAG_DISPATCH_AS_IS);
Jeff Browne6504122010-09-27 14:52:15 -07003280 mTouchState.addOrUpdateWindow(toWindow, newTargetFlags, pointerIds);
3281
3282 found = true;
3283 break;
3284 }
3285 }
3286
3287 if (! found) {
3288#if DEBUG_FOCUS
3289 LOGD("Focus transfer failed because from window did not have focus.");
3290#endif
3291 return false;
3292 }
3293
Jeff Brown9c9f1a32010-10-11 18:32:20 -07003294 ssize_t fromConnectionIndex = getConnectionIndexLocked(fromChannel);
3295 ssize_t toConnectionIndex = getConnectionIndexLocked(toChannel);
3296 if (fromConnectionIndex >= 0 && toConnectionIndex >= 0) {
3297 sp<Connection> fromConnection = mConnectionsByReceiveFd.valueAt(fromConnectionIndex);
3298 sp<Connection> toConnection = mConnectionsByReceiveFd.valueAt(toConnectionIndex);
3299
3300 fromConnection->inputState.copyPointerStateTo(toConnection->inputState);
Jeff Brownda3d5a92011-03-29 15:11:34 -07003301 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS,
Jeff Brown9c9f1a32010-10-11 18:32:20 -07003302 "transferring touch focus from this window to another window");
Jeff Brownda3d5a92011-03-29 15:11:34 -07003303 synthesizeCancelationEventsForConnectionLocked(fromConnection, options);
Jeff Brown9c9f1a32010-10-11 18:32:20 -07003304 }
3305
Jeff Browne6504122010-09-27 14:52:15 -07003306#if DEBUG_FOCUS
3307 logDispatchStateLocked();
3308#endif
3309 } // release lock
3310
3311 // Wake up poll loop since it may need to make new input dispatching choices.
3312 mLooper->wake();
3313 return true;
3314}
3315
Jeff Brown120a4592010-10-27 18:43:51 -07003316void InputDispatcher::resetAndDropEverythingLocked(const char* reason) {
3317#if DEBUG_FOCUS
3318 LOGD("Resetting and dropping all events (%s).", reason);
3319#endif
3320
Jeff Brownda3d5a92011-03-29 15:11:34 -07003321 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS, reason);
3322 synthesizeCancelationEventsForAllConnectionsLocked(options);
Jeff Brown120a4592010-10-27 18:43:51 -07003323
3324 resetKeyRepeatLocked();
3325 releasePendingEventLocked();
3326 drainInboundQueueLocked();
3327 resetTargetsLocked();
3328
3329 mTouchState.reset();
3330}
3331
Jeff Brownb88102f2010-09-08 11:49:43 -07003332void InputDispatcher::logDispatchStateLocked() {
3333 String8 dump;
3334 dumpDispatchStateLocked(dump);
Jeff Brown2a95c2a2010-09-16 12:31:46 -07003335
3336 char* text = dump.lockBuffer(dump.size());
3337 char* start = text;
3338 while (*start != '\0') {
3339 char* end = strchr(start, '\n');
3340 if (*end == '\n') {
3341 *(end++) = '\0';
3342 }
3343 LOGD("%s", start);
3344 start = end;
3345 }
Jeff Brownb88102f2010-09-08 11:49:43 -07003346}
3347
3348void InputDispatcher::dumpDispatchStateLocked(String8& dump) {
Jeff Brownf2f487182010-10-01 17:46:21 -07003349 dump.appendFormat(INDENT "DispatchEnabled: %d\n", mDispatchEnabled);
3350 dump.appendFormat(INDENT "DispatchFrozen: %d\n", mDispatchFrozen);
Jeff Brownb88102f2010-09-08 11:49:43 -07003351
3352 if (mFocusedApplication) {
Jeff Brownf2f487182010-10-01 17:46:21 -07003353 dump.appendFormat(INDENT "FocusedApplication: name='%s', dispatchingTimeout=%0.3fms\n",
Jeff Brownb88102f2010-09-08 11:49:43 -07003354 mFocusedApplication->name.string(),
3355 mFocusedApplication->dispatchingTimeout / 1000000.0);
3356 } else {
Jeff Brownf2f487182010-10-01 17:46:21 -07003357 dump.append(INDENT "FocusedApplication: <null>\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003358 }
Jeff Brownf2f487182010-10-01 17:46:21 -07003359 dump.appendFormat(INDENT "FocusedWindow: name='%s'\n",
Jeff Brown2a95c2a2010-09-16 12:31:46 -07003360 mFocusedWindow != NULL ? mFocusedWindow->name.string() : "<null>");
Jeff Brownf2f487182010-10-01 17:46:21 -07003361
3362 dump.appendFormat(INDENT "TouchDown: %s\n", toString(mTouchState.down));
3363 dump.appendFormat(INDENT "TouchSplit: %s\n", toString(mTouchState.split));
Jeff Brown95712852011-01-04 19:41:59 -08003364 dump.appendFormat(INDENT "TouchDeviceId: %d\n", mTouchState.deviceId);
Jeff Brown58a2da82011-01-25 16:02:22 -08003365 dump.appendFormat(INDENT "TouchSource: 0x%08x\n", mTouchState.source);
Jeff Brownf2f487182010-10-01 17:46:21 -07003366 if (!mTouchState.windows.isEmpty()) {
3367 dump.append(INDENT "TouchedWindows:\n");
3368 for (size_t i = 0; i < mTouchState.windows.size(); i++) {
3369 const TouchedWindow& touchedWindow = mTouchState.windows[i];
3370 dump.appendFormat(INDENT2 "%d: name='%s', pointerIds=0x%0x, targetFlags=0x%x\n",
3371 i, touchedWindow.window->name.string(), touchedWindow.pointerIds.value,
3372 touchedWindow.targetFlags);
3373 }
3374 } else {
3375 dump.append(INDENT "TouchedWindows: <none>\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003376 }
3377
Jeff Brownf2f487182010-10-01 17:46:21 -07003378 if (!mWindows.isEmpty()) {
3379 dump.append(INDENT "Windows:\n");
3380 for (size_t i = 0; i < mWindows.size(); i++) {
3381 const InputWindow& window = mWindows[i];
3382 dump.appendFormat(INDENT2 "%d: name='%s', paused=%s, hasFocus=%s, hasWallpaper=%s, "
3383 "visible=%s, canReceiveKeys=%s, flags=0x%08x, type=0x%08x, layer=%d, "
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003384 "frame=[%d,%d][%d,%d], scale=%f, "
Jeff Brownfbf09772011-01-16 14:06:57 -08003385 "touchableRegion=",
Jeff Brownf2f487182010-10-01 17:46:21 -07003386 i, window.name.string(),
3387 toString(window.paused),
3388 toString(window.hasFocus),
3389 toString(window.hasWallpaper),
3390 toString(window.visible),
3391 toString(window.canReceiveKeys),
3392 window.layoutParamsFlags, window.layoutParamsType,
3393 window.layer,
3394 window.frameLeft, window.frameTop,
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003395 window.frameRight, window.frameBottom,
3396 window.scaleFactor);
Jeff Brownfbf09772011-01-16 14:06:57 -08003397 dumpRegion(dump, window.touchableRegion);
Jeff Brown474dcb52011-06-14 20:22:50 -07003398 dump.appendFormat(", inputFeatures=0x%08x", window.inputFeatures);
Jeff Brownfbf09772011-01-16 14:06:57 -08003399 dump.appendFormat(", ownerPid=%d, ownerUid=%d, dispatchingTimeout=%0.3fms\n",
Jeff Brownf2f487182010-10-01 17:46:21 -07003400 window.ownerPid, window.ownerUid,
3401 window.dispatchingTimeout / 1000000.0);
3402 }
3403 } else {
3404 dump.append(INDENT "Windows: <none>\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003405 }
3406
Jeff Brownf2f487182010-10-01 17:46:21 -07003407 if (!mMonitoringChannels.isEmpty()) {
3408 dump.append(INDENT "MonitoringChannels:\n");
3409 for (size_t i = 0; i < mMonitoringChannels.size(); i++) {
3410 const sp<InputChannel>& channel = mMonitoringChannels[i];
3411 dump.appendFormat(INDENT2 "%d: '%s'\n", i, channel->getName().string());
3412 }
3413 } else {
3414 dump.append(INDENT "MonitoringChannels: <none>\n");
3415 }
Jeff Brown519e0242010-09-15 15:18:56 -07003416
Jeff Brownf2f487182010-10-01 17:46:21 -07003417 dump.appendFormat(INDENT "InboundQueue: length=%u\n", mInboundQueue.count());
3418
3419 if (!mActiveConnections.isEmpty()) {
3420 dump.append(INDENT "ActiveConnections:\n");
3421 for (size_t i = 0; i < mActiveConnections.size(); i++) {
3422 const Connection* connection = mActiveConnections[i];
Jeff Brown76860e32010-10-25 17:37:46 -07003423 dump.appendFormat(INDENT2 "%d: '%s', status=%s, outboundQueueLength=%u, "
Jeff Brownb6997262010-10-08 22:31:17 -07003424 "inputState.isNeutral=%s\n",
Jeff Brownf2f487182010-10-01 17:46:21 -07003425 i, connection->getInputChannelName(), connection->getStatusLabel(),
3426 connection->outboundQueue.count(),
Jeff Brownb6997262010-10-08 22:31:17 -07003427 toString(connection->inputState.isNeutral()));
Jeff Brownf2f487182010-10-01 17:46:21 -07003428 }
3429 } else {
3430 dump.append(INDENT "ActiveConnections: <none>\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003431 }
3432
3433 if (isAppSwitchPendingLocked()) {
Jeff Brownf2f487182010-10-01 17:46:21 -07003434 dump.appendFormat(INDENT "AppSwitch: pending, due in %01.1fms\n",
Jeff Brownb88102f2010-09-08 11:49:43 -07003435 (mAppSwitchDueTime - now()) / 1000000.0);
3436 } else {
Jeff Brownf2f487182010-10-01 17:46:21 -07003437 dump.append(INDENT "AppSwitch: not pending\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003438 }
3439}
3440
Jeff Brown928e0542011-01-10 11:17:36 -08003441status_t InputDispatcher::registerInputChannel(const sp<InputChannel>& inputChannel,
3442 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) {
Jeff Brown9c3cda02010-06-15 01:31:58 -07003443#if DEBUG_REGISTRATION
Jeff Brownb88102f2010-09-08 11:49:43 -07003444 LOGD("channel '%s' ~ registerInputChannel - monitor=%s", inputChannel->getName().string(),
3445 toString(monitor));
Jeff Brown9c3cda02010-06-15 01:31:58 -07003446#endif
3447
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003448 { // acquire lock
3449 AutoMutex _l(mLock);
3450
Jeff Brown519e0242010-09-15 15:18:56 -07003451 if (getConnectionIndexLocked(inputChannel) >= 0) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003452 LOGW("Attempted to register already registered input channel '%s'",
3453 inputChannel->getName().string());
3454 return BAD_VALUE;
3455 }
3456
Jeff Brown928e0542011-01-10 11:17:36 -08003457 sp<Connection> connection = new Connection(inputChannel, inputWindowHandle);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003458 status_t status = connection->initialize();
3459 if (status) {
3460 LOGE("Failed to initialize input publisher for input channel '%s', status=%d",
3461 inputChannel->getName().string(), status);
3462 return status;
3463 }
3464
Jeff Brown2cbecea2010-08-17 15:59:26 -07003465 int32_t receiveFd = inputChannel->getReceivePipeFd();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003466 mConnectionsByReceiveFd.add(receiveFd, connection);
Jeff Brown9c3cda02010-06-15 01:31:58 -07003467
Jeff Brownb88102f2010-09-08 11:49:43 -07003468 if (monitor) {
3469 mMonitoringChannels.push(inputChannel);
3470 }
3471
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003472 mLooper->addFd(receiveFd, 0, ALOOPER_EVENT_INPUT, handleReceiveCallback, this);
Jeff Brown2cbecea2010-08-17 15:59:26 -07003473
Jeff Brown9c3cda02010-06-15 01:31:58 -07003474 runCommandsLockedInterruptible();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003475 } // release lock
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003476 return OK;
3477}
3478
3479status_t InputDispatcher::unregisterInputChannel(const sp<InputChannel>& inputChannel) {
Jeff Brown9c3cda02010-06-15 01:31:58 -07003480#if DEBUG_REGISTRATION
Jeff Brown349703e2010-06-22 01:27:15 -07003481 LOGD("channel '%s' ~ unregisterInputChannel", inputChannel->getName().string());
Jeff Brown9c3cda02010-06-15 01:31:58 -07003482#endif
3483
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003484 { // acquire lock
3485 AutoMutex _l(mLock);
3486
Jeff Brown519e0242010-09-15 15:18:56 -07003487 ssize_t connectionIndex = getConnectionIndexLocked(inputChannel);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003488 if (connectionIndex < 0) {
3489 LOGW("Attempted to unregister already unregistered input channel '%s'",
3490 inputChannel->getName().string());
3491 return BAD_VALUE;
3492 }
3493
3494 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
3495 mConnectionsByReceiveFd.removeItemsAt(connectionIndex);
3496
3497 connection->status = Connection::STATUS_ZOMBIE;
3498
Jeff Brownb88102f2010-09-08 11:49:43 -07003499 for (size_t i = 0; i < mMonitoringChannels.size(); i++) {
3500 if (mMonitoringChannels[i] == inputChannel) {
3501 mMonitoringChannels.removeAt(i);
3502 break;
3503 }
3504 }
3505
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003506 mLooper->removeFd(inputChannel->getReceivePipeFd());
Jeff Brown2cbecea2010-08-17 15:59:26 -07003507
Jeff Brown7fbdc842010-06-17 20:52:56 -07003508 nsecs_t currentTime = now();
Jeff Brownb6997262010-10-08 22:31:17 -07003509 abortBrokenDispatchCycleLocked(currentTime, connection);
Jeff Brown9c3cda02010-06-15 01:31:58 -07003510
3511 runCommandsLockedInterruptible();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003512 } // release lock
3513
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003514 // Wake the poll loop because removing the connection may have changed the current
3515 // synchronization state.
Jeff Brown4fe6c3e2010-09-13 23:17:30 -07003516 mLooper->wake();
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003517 return OK;
3518}
3519
Jeff Brown519e0242010-09-15 15:18:56 -07003520ssize_t InputDispatcher::getConnectionIndexLocked(const sp<InputChannel>& inputChannel) {
Jeff Brown2cbecea2010-08-17 15:59:26 -07003521 ssize_t connectionIndex = mConnectionsByReceiveFd.indexOfKey(inputChannel->getReceivePipeFd());
3522 if (connectionIndex >= 0) {
3523 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex);
3524 if (connection->inputChannel.get() == inputChannel.get()) {
3525 return connectionIndex;
3526 }
3527 }
3528
3529 return -1;
3530}
3531
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003532void InputDispatcher::activateConnectionLocked(Connection* connection) {
3533 for (size_t i = 0; i < mActiveConnections.size(); i++) {
3534 if (mActiveConnections.itemAt(i) == connection) {
3535 return;
3536 }
3537 }
3538 mActiveConnections.add(connection);
3539}
3540
3541void InputDispatcher::deactivateConnectionLocked(Connection* connection) {
3542 for (size_t i = 0; i < mActiveConnections.size(); i++) {
3543 if (mActiveConnections.itemAt(i) == connection) {
3544 mActiveConnections.removeAt(i);
3545 return;
3546 }
3547 }
3548}
3549
Jeff Brown9c3cda02010-06-15 01:31:58 -07003550void InputDispatcher::onDispatchCycleStartedLocked(
Jeff Brown7fbdc842010-06-17 20:52:56 -07003551 nsecs_t currentTime, const sp<Connection>& connection) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003552}
3553
Jeff Brown9c3cda02010-06-15 01:31:58 -07003554void InputDispatcher::onDispatchCycleFinishedLocked(
Jeff Brown3915bb82010-11-05 15:02:16 -07003555 nsecs_t currentTime, const sp<Connection>& connection, bool handled) {
3556 CommandEntry* commandEntry = postCommandLocked(
3557 & InputDispatcher::doDispatchCycleFinishedLockedInterruptible);
3558 commandEntry->connection = connection;
3559 commandEntry->handled = handled;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003560}
3561
Jeff Brown9c3cda02010-06-15 01:31:58 -07003562void InputDispatcher::onDispatchCycleBrokenLocked(
Jeff Brown7fbdc842010-06-17 20:52:56 -07003563 nsecs_t currentTime, const sp<Connection>& connection) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003564 LOGE("channel '%s' ~ Channel is unrecoverably broken and will be disposed!",
3565 connection->getInputChannelName());
3566
Jeff Brown9c3cda02010-06-15 01:31:58 -07003567 CommandEntry* commandEntry = postCommandLocked(
3568 & InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003569 commandEntry->connection = connection;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003570}
3571
Jeff Brown519e0242010-09-15 15:18:56 -07003572void InputDispatcher::onANRLocked(
3573 nsecs_t currentTime, const InputApplication* application, const InputWindow* window,
3574 nsecs_t eventTime, nsecs_t waitStartTime) {
3575 LOGI("Application is not responding: %s. "
3576 "%01.1fms since event, %01.1fms since wait started",
3577 getApplicationWindowLabelLocked(application, window).string(),
3578 (currentTime - eventTime) / 1000000.0,
3579 (currentTime - waitStartTime) / 1000000.0);
3580
3581 CommandEntry* commandEntry = postCommandLocked(
3582 & InputDispatcher::doNotifyANRLockedInterruptible);
3583 if (application) {
Jeff Brown928e0542011-01-10 11:17:36 -08003584 commandEntry->inputApplicationHandle = application->inputApplicationHandle;
Jeff Brown519e0242010-09-15 15:18:56 -07003585 }
3586 if (window) {
Jeff Brown928e0542011-01-10 11:17:36 -08003587 commandEntry->inputWindowHandle = window->inputWindowHandle;
Jeff Brown519e0242010-09-15 15:18:56 -07003588 commandEntry->inputChannel = window->inputChannel;
3589 }
3590}
3591
Jeff Brownb88102f2010-09-08 11:49:43 -07003592void InputDispatcher::doNotifyConfigurationChangedInterruptible(
3593 CommandEntry* commandEntry) {
3594 mLock.unlock();
3595
3596 mPolicy->notifyConfigurationChanged(commandEntry->eventTime);
3597
3598 mLock.lock();
3599}
3600
Jeff Brown9c3cda02010-06-15 01:31:58 -07003601void InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible(
3602 CommandEntry* commandEntry) {
Jeff Brown7fbdc842010-06-17 20:52:56 -07003603 sp<Connection> connection = commandEntry->connection;
Jeff Brown9c3cda02010-06-15 01:31:58 -07003604
Jeff Brown7fbdc842010-06-17 20:52:56 -07003605 if (connection->status != Connection::STATUS_ZOMBIE) {
3606 mLock.unlock();
Jeff Brown9c3cda02010-06-15 01:31:58 -07003607
Jeff Brown928e0542011-01-10 11:17:36 -08003608 mPolicy->notifyInputChannelBroken(connection->inputWindowHandle);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003609
3610 mLock.lock();
3611 }
Jeff Brown9c3cda02010-06-15 01:31:58 -07003612}
3613
Jeff Brown519e0242010-09-15 15:18:56 -07003614void InputDispatcher::doNotifyANRLockedInterruptible(
Jeff Brown9c3cda02010-06-15 01:31:58 -07003615 CommandEntry* commandEntry) {
Jeff Brown519e0242010-09-15 15:18:56 -07003616 mLock.unlock();
Jeff Brown9c3cda02010-06-15 01:31:58 -07003617
Jeff Brown519e0242010-09-15 15:18:56 -07003618 nsecs_t newTimeout = mPolicy->notifyANR(
Jeff Brown928e0542011-01-10 11:17:36 -08003619 commandEntry->inputApplicationHandle, commandEntry->inputWindowHandle);
Jeff Brown9c3cda02010-06-15 01:31:58 -07003620
Jeff Brown519e0242010-09-15 15:18:56 -07003621 mLock.lock();
Jeff Brown7fbdc842010-06-17 20:52:56 -07003622
Jeff Brown519e0242010-09-15 15:18:56 -07003623 resumeAfterTargetsNotReadyTimeoutLocked(newTimeout, commandEntry->inputChannel);
Jeff Brown9c3cda02010-06-15 01:31:58 -07003624}
3625
Jeff Brownb88102f2010-09-08 11:49:43 -07003626void InputDispatcher::doInterceptKeyBeforeDispatchingLockedInterruptible(
3627 CommandEntry* commandEntry) {
3628 KeyEntry* entry = commandEntry->keyEntry;
Jeff Brown1f245102010-11-18 20:53:46 -08003629
3630 KeyEvent event;
3631 initializeKeyEvent(&event, entry);
Jeff Brownb88102f2010-09-08 11:49:43 -07003632
3633 mLock.unlock();
3634
Jeff Brown928e0542011-01-10 11:17:36 -08003635 bool consumed = mPolicy->interceptKeyBeforeDispatching(commandEntry->inputWindowHandle,
Jeff Brown1f245102010-11-18 20:53:46 -08003636 &event, entry->policyFlags);
Jeff Brownb88102f2010-09-08 11:49:43 -07003637
3638 mLock.lock();
3639
3640 entry->interceptKeyResult = consumed
3641 ? KeyEntry::INTERCEPT_KEY_RESULT_SKIP
3642 : KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE;
3643 mAllocator.releaseKeyEntry(entry);
3644}
3645
Jeff Brown3915bb82010-11-05 15:02:16 -07003646void InputDispatcher::doDispatchCycleFinishedLockedInterruptible(
3647 CommandEntry* commandEntry) {
3648 sp<Connection> connection = commandEntry->connection;
3649 bool handled = commandEntry->handled;
3650
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003651 bool skipNext = false;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003652 if (!connection->outboundQueue.isEmpty()) {
Jeff Brown3915bb82010-11-05 15:02:16 -07003653 DispatchEntry* dispatchEntry = connection->outboundQueue.headSentinel.next;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003654 if (dispatchEntry->inProgress) {
3655 if (dispatchEntry->eventEntry->type == EventEntry::TYPE_KEY) {
3656 KeyEntry* keyEntry = static_cast<KeyEntry*>(dispatchEntry->eventEntry);
3657 skipNext = afterKeyEventLockedInterruptible(connection,
3658 dispatchEntry, keyEntry, handled);
3659 } else if (dispatchEntry->eventEntry->type == EventEntry::TYPE_MOTION) {
3660 MotionEntry* motionEntry = static_cast<MotionEntry*>(dispatchEntry->eventEntry);
3661 skipNext = afterMotionEventLockedInterruptible(connection,
3662 dispatchEntry, motionEntry, handled);
Jeff Brown49ed71d2010-12-06 17:13:33 -08003663 }
Jeff Brown3915bb82010-11-05 15:02:16 -07003664 }
3665 }
3666
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003667 if (!skipNext) {
3668 startNextDispatchCycleLocked(now(), connection);
3669 }
3670}
3671
3672bool InputDispatcher::afterKeyEventLockedInterruptible(const sp<Connection>& connection,
3673 DispatchEntry* dispatchEntry, KeyEntry* keyEntry, bool handled) {
3674 if (!(keyEntry->flags & AKEY_EVENT_FLAG_FALLBACK)) {
3675 // Get the fallback key state.
3676 // Clear it out after dispatching the UP.
3677 int32_t originalKeyCode = keyEntry->keyCode;
3678 int32_t fallbackKeyCode = connection->inputState.getFallbackKey(originalKeyCode);
3679 if (keyEntry->action == AKEY_EVENT_ACTION_UP) {
3680 connection->inputState.removeFallbackKey(originalKeyCode);
3681 }
3682
3683 if (handled || !dispatchEntry->hasForegroundTarget()) {
3684 // If the application handles the original key for which we previously
3685 // generated a fallback or if the window is not a foreground window,
3686 // then cancel the associated fallback key, if any.
3687 if (fallbackKeyCode != -1) {
3688 if (fallbackKeyCode != AKEYCODE_UNKNOWN) {
3689 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
3690 "application handled the original non-fallback key "
3691 "or is no longer a foreground target, "
3692 "canceling previously dispatched fallback key");
3693 options.keyCode = fallbackKeyCode;
3694 synthesizeCancelationEventsForConnectionLocked(connection, options);
3695 }
3696 connection->inputState.removeFallbackKey(originalKeyCode);
3697 }
3698 } else {
3699 // If the application did not handle a non-fallback key, first check
3700 // that we are in a good state to perform unhandled key event processing
3701 // Then ask the policy what to do with it.
3702 bool initialDown = keyEntry->action == AKEY_EVENT_ACTION_DOWN
3703 && keyEntry->repeatCount == 0;
3704 if (fallbackKeyCode == -1 && !initialDown) {
3705#if DEBUG_OUTBOUND_EVENT_DETAILS
3706 LOGD("Unhandled key event: Skipping unhandled key event processing "
3707 "since this is not an initial down. "
3708 "keyCode=%d, action=%d, repeatCount=%d",
3709 originalKeyCode, keyEntry->action, keyEntry->repeatCount);
3710#endif
3711 return false;
3712 }
3713
3714 // Dispatch the unhandled key to the policy.
3715#if DEBUG_OUTBOUND_EVENT_DETAILS
3716 LOGD("Unhandled key event: Asking policy to perform fallback action. "
3717 "keyCode=%d, action=%d, repeatCount=%d",
3718 keyEntry->keyCode, keyEntry->action, keyEntry->repeatCount);
3719#endif
3720 KeyEvent event;
3721 initializeKeyEvent(&event, keyEntry);
3722
3723 mLock.unlock();
3724
3725 bool fallback = mPolicy->dispatchUnhandledKey(connection->inputWindowHandle,
3726 &event, keyEntry->policyFlags, &event);
3727
3728 mLock.lock();
3729
3730 if (connection->status != Connection::STATUS_NORMAL) {
3731 connection->inputState.removeFallbackKey(originalKeyCode);
3732 return true; // skip next cycle
3733 }
3734
3735 LOG_ASSERT(connection->outboundQueue.headSentinel.next == dispatchEntry);
3736
3737 // Latch the fallback keycode for this key on an initial down.
3738 // The fallback keycode cannot change at any other point in the lifecycle.
3739 if (initialDown) {
3740 if (fallback) {
3741 fallbackKeyCode = event.getKeyCode();
3742 } else {
3743 fallbackKeyCode = AKEYCODE_UNKNOWN;
3744 }
3745 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode);
3746 }
3747
3748 LOG_ASSERT(fallbackKeyCode != -1);
3749
3750 // Cancel the fallback key if the policy decides not to send it anymore.
3751 // We will continue to dispatch the key to the policy but we will no
3752 // longer dispatch a fallback key to the application.
3753 if (fallbackKeyCode != AKEYCODE_UNKNOWN
3754 && (!fallback || fallbackKeyCode != event.getKeyCode())) {
3755#if DEBUG_OUTBOUND_EVENT_DETAILS
3756 if (fallback) {
3757 LOGD("Unhandled key event: Policy requested to send key %d"
3758 "as a fallback for %d, but on the DOWN it had requested "
3759 "to send %d instead. Fallback canceled.",
3760 event.getKeyCode(), originalKeyCode, fallbackKeyCode);
3761 } else {
3762 LOGD("Unhandled key event: Policy did not request fallback for %d,"
3763 "but on the DOWN it had requested to send %d. "
3764 "Fallback canceled.",
3765 originalKeyCode, fallbackKeyCode);
3766 }
3767#endif
3768
3769 CancelationOptions options(CancelationOptions::CANCEL_FALLBACK_EVENTS,
3770 "canceling fallback, policy no longer desires it");
3771 options.keyCode = fallbackKeyCode;
3772 synthesizeCancelationEventsForConnectionLocked(connection, options);
3773
3774 fallback = false;
3775 fallbackKeyCode = AKEYCODE_UNKNOWN;
3776 if (keyEntry->action != AKEY_EVENT_ACTION_UP) {
3777 connection->inputState.setFallbackKey(originalKeyCode,
3778 fallbackKeyCode);
3779 }
3780 }
3781
3782#if DEBUG_OUTBOUND_EVENT_DETAILS
3783 {
3784 String8 msg;
3785 const KeyedVector<int32_t, int32_t>& fallbackKeys =
3786 connection->inputState.getFallbackKeys();
3787 for (size_t i = 0; i < fallbackKeys.size(); i++) {
3788 msg.appendFormat(", %d->%d", fallbackKeys.keyAt(i),
3789 fallbackKeys.valueAt(i));
3790 }
3791 LOGD("Unhandled key event: %d currently tracked fallback keys%s.",
3792 fallbackKeys.size(), msg.string());
3793 }
3794#endif
3795
3796 if (fallback) {
3797 // Restart the dispatch cycle using the fallback key.
3798 keyEntry->eventTime = event.getEventTime();
3799 keyEntry->deviceId = event.getDeviceId();
3800 keyEntry->source = event.getSource();
3801 keyEntry->flags = event.getFlags() | AKEY_EVENT_FLAG_FALLBACK;
3802 keyEntry->keyCode = fallbackKeyCode;
3803 keyEntry->scanCode = event.getScanCode();
3804 keyEntry->metaState = event.getMetaState();
3805 keyEntry->repeatCount = event.getRepeatCount();
3806 keyEntry->downTime = event.getDownTime();
3807 keyEntry->syntheticRepeat = false;
3808
3809#if DEBUG_OUTBOUND_EVENT_DETAILS
3810 LOGD("Unhandled key event: Dispatching fallback key. "
3811 "originalKeyCode=%d, fallbackKeyCode=%d, fallbackMetaState=%08x",
3812 originalKeyCode, fallbackKeyCode, keyEntry->metaState);
3813#endif
3814
3815 dispatchEntry->inProgress = false;
3816 startDispatchCycleLocked(now(), connection);
3817 return true; // already started next cycle
3818 } else {
3819#if DEBUG_OUTBOUND_EVENT_DETAILS
3820 LOGD("Unhandled key event: No fallback key.");
3821#endif
3822 }
3823 }
3824 }
3825 return false;
3826}
3827
3828bool InputDispatcher::afterMotionEventLockedInterruptible(const sp<Connection>& connection,
3829 DispatchEntry* dispatchEntry, MotionEntry* motionEntry, bool handled) {
3830 return false;
Jeff Brown3915bb82010-11-05 15:02:16 -07003831}
3832
Jeff Brownb88102f2010-09-08 11:49:43 -07003833void InputDispatcher::doPokeUserActivityLockedInterruptible(CommandEntry* commandEntry) {
3834 mLock.unlock();
3835
Jeff Brown01ce2e92010-09-26 22:20:12 -07003836 mPolicy->pokeUserActivity(commandEntry->eventTime, commandEntry->userActivityEventType);
Jeff Brownb88102f2010-09-08 11:49:43 -07003837
3838 mLock.lock();
3839}
3840
Jeff Brown3915bb82010-11-05 15:02:16 -07003841void InputDispatcher::initializeKeyEvent(KeyEvent* event, const KeyEntry* entry) {
3842 event->initialize(entry->deviceId, entry->source, entry->action, entry->flags,
3843 entry->keyCode, entry->scanCode, entry->metaState, entry->repeatCount,
3844 entry->downTime, entry->eventTime);
3845}
3846
Jeff Brown519e0242010-09-15 15:18:56 -07003847void InputDispatcher::updateDispatchStatisticsLocked(nsecs_t currentTime, const EventEntry* entry,
3848 int32_t injectionResult, nsecs_t timeSpentWaitingForApplication) {
3849 // TODO Write some statistics about how long we spend waiting.
Jeff Brownb88102f2010-09-08 11:49:43 -07003850}
3851
3852void InputDispatcher::dump(String8& dump) {
Jeff Brownf2f487182010-10-01 17:46:21 -07003853 dump.append("Input Dispatcher State:\n");
Jeff Brownb88102f2010-09-08 11:49:43 -07003854 dumpDispatchStateLocked(dump);
Jeff Brown214eaf42011-05-26 19:17:02 -07003855
3856 dump.append(INDENT "Configuration:\n");
3857 dump.appendFormat(INDENT2 "MaxEventsPerSecond: %d\n", mConfig.maxEventsPerSecond);
3858 dump.appendFormat(INDENT2 "KeyRepeatDelay: %0.1fms\n", mConfig.keyRepeatDelay * 0.000001f);
3859 dump.appendFormat(INDENT2 "KeyRepeatTimeout: %0.1fms\n", mConfig.keyRepeatTimeout * 0.000001f);
Jeff Brownb88102f2010-09-08 11:49:43 -07003860}
3861
Jeff Brown9c3cda02010-06-15 01:31:58 -07003862
Jeff Brown519e0242010-09-15 15:18:56 -07003863// --- InputDispatcher::Queue ---
3864
3865template <typename T>
3866uint32_t InputDispatcher::Queue<T>::count() const {
3867 uint32_t result = 0;
3868 for (const T* entry = headSentinel.next; entry != & tailSentinel; entry = entry->next) {
3869 result += 1;
3870 }
3871 return result;
3872}
3873
3874
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003875// --- InputDispatcher::Allocator ---
3876
3877InputDispatcher::Allocator::Allocator() {
3878}
3879
Jeff Brown01ce2e92010-09-26 22:20:12 -07003880InputDispatcher::InjectionState*
3881InputDispatcher::Allocator::obtainInjectionState(int32_t injectorPid, int32_t injectorUid) {
3882 InjectionState* injectionState = mInjectionStatePool.alloc();
3883 injectionState->refCount = 1;
3884 injectionState->injectorPid = injectorPid;
3885 injectionState->injectorUid = injectorUid;
3886 injectionState->injectionIsAsync = false;
3887 injectionState->injectionResult = INPUT_EVENT_INJECTION_PENDING;
3888 injectionState->pendingForegroundDispatches = 0;
3889 return injectionState;
3890}
3891
Jeff Brown7fbdc842010-06-17 20:52:56 -07003892void InputDispatcher::Allocator::initializeEventEntry(EventEntry* entry, int32_t type,
Jeff Brownb6997262010-10-08 22:31:17 -07003893 nsecs_t eventTime, uint32_t policyFlags) {
Jeff Brown7fbdc842010-06-17 20:52:56 -07003894 entry->type = type;
3895 entry->refCount = 1;
3896 entry->dispatchInProgress = false;
Christopher Tatee91a5db2010-06-23 16:50:30 -07003897 entry->eventTime = eventTime;
Jeff Brownb6997262010-10-08 22:31:17 -07003898 entry->policyFlags = policyFlags;
Jeff Brown01ce2e92010-09-26 22:20:12 -07003899 entry->injectionState = NULL;
3900}
3901
3902void InputDispatcher::Allocator::releaseEventEntryInjectionState(EventEntry* entry) {
3903 if (entry->injectionState) {
3904 releaseInjectionState(entry->injectionState);
3905 entry->injectionState = NULL;
3906 }
Jeff Brown7fbdc842010-06-17 20:52:56 -07003907}
3908
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003909InputDispatcher::ConfigurationChangedEntry*
Jeff Brown7fbdc842010-06-17 20:52:56 -07003910InputDispatcher::Allocator::obtainConfigurationChangedEntry(nsecs_t eventTime) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003911 ConfigurationChangedEntry* entry = mConfigurationChangeEntryPool.alloc();
Jeff Brownb6997262010-10-08 22:31:17 -07003912 initializeEventEntry(entry, EventEntry::TYPE_CONFIGURATION_CHANGED, eventTime, 0);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003913 return entry;
3914}
3915
Jeff Brown7fbdc842010-06-17 20:52:56 -07003916InputDispatcher::KeyEntry* InputDispatcher::Allocator::obtainKeyEntry(nsecs_t eventTime,
Jeff Brown58a2da82011-01-25 16:02:22 -08003917 int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action,
Jeff Brown7fbdc842010-06-17 20:52:56 -07003918 int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState,
3919 int32_t repeatCount, nsecs_t downTime) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003920 KeyEntry* entry = mKeyEntryPool.alloc();
Jeff Brownb6997262010-10-08 22:31:17 -07003921 initializeEventEntry(entry, EventEntry::TYPE_KEY, eventTime, policyFlags);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003922
3923 entry->deviceId = deviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -07003924 entry->source = source;
Jeff Brown7fbdc842010-06-17 20:52:56 -07003925 entry->action = action;
3926 entry->flags = flags;
3927 entry->keyCode = keyCode;
3928 entry->scanCode = scanCode;
3929 entry->metaState = metaState;
3930 entry->repeatCount = repeatCount;
3931 entry->downTime = downTime;
Jeff Brownb88102f2010-09-08 11:49:43 -07003932 entry->syntheticRepeat = false;
3933 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003934 return entry;
3935}
3936
Jeff Brown7fbdc842010-06-17 20:52:56 -07003937InputDispatcher::MotionEntry* InputDispatcher::Allocator::obtainMotionEntry(nsecs_t eventTime,
Jeff Brown58a2da82011-01-25 16:02:22 -08003938 int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003939 int32_t metaState, int32_t buttonState,
3940 int32_t edgeFlags, float xPrecision, float yPrecision,
Jeff Brown7fbdc842010-06-17 20:52:56 -07003941 nsecs_t downTime, uint32_t pointerCount,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003942 const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003943 MotionEntry* entry = mMotionEntryPool.alloc();
Jeff Brownb6997262010-10-08 22:31:17 -07003944 initializeEventEntry(entry, EventEntry::TYPE_MOTION, eventTime, policyFlags);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003945
3946 entry->eventTime = eventTime;
3947 entry->deviceId = deviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -07003948 entry->source = source;
Jeff Brown7fbdc842010-06-17 20:52:56 -07003949 entry->action = action;
Jeff Brown85a31762010-09-01 17:01:00 -07003950 entry->flags = flags;
Jeff Brown7fbdc842010-06-17 20:52:56 -07003951 entry->metaState = metaState;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003952 entry->buttonState = buttonState;
Jeff Brown7fbdc842010-06-17 20:52:56 -07003953 entry->edgeFlags = edgeFlags;
3954 entry->xPrecision = xPrecision;
3955 entry->yPrecision = yPrecision;
3956 entry->downTime = downTime;
3957 entry->pointerCount = pointerCount;
3958 entry->firstSample.eventTime = eventTime;
Jeff Brown4e91a182011-04-07 11:38:09 -07003959 entry->firstSample.eventTimeBeforeCoalescing = eventTime;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003960 entry->firstSample.next = NULL;
Jeff Brown7fbdc842010-06-17 20:52:56 -07003961 entry->lastSample = & entry->firstSample;
3962 for (uint32_t i = 0; i < pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07003963 entry->pointerProperties[i].copyFrom(pointerProperties[i]);
Jeff Brownace13b12011-03-09 17:39:48 -08003964 entry->firstSample.pointerCoords[i].copyFrom(pointerCoords[i]);
Jeff Brown7fbdc842010-06-17 20:52:56 -07003965 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003966 return entry;
3967}
3968
3969InputDispatcher::DispatchEntry* InputDispatcher::Allocator::obtainDispatchEntry(
Jeff Brownb88102f2010-09-08 11:49:43 -07003970 EventEntry* eventEntry,
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003971 int32_t targetFlags, float xOffset, float yOffset, float scaleFactor) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003972 DispatchEntry* entry = mDispatchEntryPool.alloc();
3973 entry->eventEntry = eventEntry;
3974 eventEntry->refCount += 1;
Jeff Brownb88102f2010-09-08 11:49:43 -07003975 entry->targetFlags = targetFlags;
3976 entry->xOffset = xOffset;
3977 entry->yOffset = yOffset;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003978 entry->scaleFactor = scaleFactor;
Jeff Brownb88102f2010-09-08 11:49:43 -07003979 entry->inProgress = false;
3980 entry->headMotionSample = NULL;
3981 entry->tailMotionSample = NULL;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07003982 return entry;
3983}
3984
Jeff Brown9c3cda02010-06-15 01:31:58 -07003985InputDispatcher::CommandEntry* InputDispatcher::Allocator::obtainCommandEntry(Command command) {
3986 CommandEntry* entry = mCommandEntryPool.alloc();
3987 entry->command = command;
3988 return entry;
3989}
3990
Jeff Brown01ce2e92010-09-26 22:20:12 -07003991void InputDispatcher::Allocator::releaseInjectionState(InjectionState* injectionState) {
3992 injectionState->refCount -= 1;
3993 if (injectionState->refCount == 0) {
3994 mInjectionStatePool.free(injectionState);
3995 } else {
Jeff Brownb6110c22011-04-01 16:15:13 -07003996 LOG_ASSERT(injectionState->refCount > 0);
Jeff Brown01ce2e92010-09-26 22:20:12 -07003997 }
3998}
3999
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004000void InputDispatcher::Allocator::releaseEventEntry(EventEntry* entry) {
4001 switch (entry->type) {
4002 case EventEntry::TYPE_CONFIGURATION_CHANGED:
4003 releaseConfigurationChangedEntry(static_cast<ConfigurationChangedEntry*>(entry));
4004 break;
4005 case EventEntry::TYPE_KEY:
4006 releaseKeyEntry(static_cast<KeyEntry*>(entry));
4007 break;
4008 case EventEntry::TYPE_MOTION:
4009 releaseMotionEntry(static_cast<MotionEntry*>(entry));
4010 break;
4011 default:
Jeff Brownb6110c22011-04-01 16:15:13 -07004012 LOG_ASSERT(false);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004013 break;
4014 }
4015}
4016
4017void InputDispatcher::Allocator::releaseConfigurationChangedEntry(
4018 ConfigurationChangedEntry* entry) {
4019 entry->refCount -= 1;
4020 if (entry->refCount == 0) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004021 releaseEventEntryInjectionState(entry);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004022 mConfigurationChangeEntryPool.free(entry);
4023 } else {
Jeff Brownb6110c22011-04-01 16:15:13 -07004024 LOG_ASSERT(entry->refCount > 0);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004025 }
4026}
4027
4028void InputDispatcher::Allocator::releaseKeyEntry(KeyEntry* entry) {
4029 entry->refCount -= 1;
4030 if (entry->refCount == 0) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004031 releaseEventEntryInjectionState(entry);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004032 mKeyEntryPool.free(entry);
4033 } else {
Jeff Brownb6110c22011-04-01 16:15:13 -07004034 LOG_ASSERT(entry->refCount > 0);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004035 }
4036}
4037
4038void InputDispatcher::Allocator::releaseMotionEntry(MotionEntry* entry) {
4039 entry->refCount -= 1;
4040 if (entry->refCount == 0) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004041 releaseEventEntryInjectionState(entry);
Jeff Brown9c3cda02010-06-15 01:31:58 -07004042 for (MotionSample* sample = entry->firstSample.next; sample != NULL; ) {
4043 MotionSample* next = sample->next;
4044 mMotionSamplePool.free(sample);
4045 sample = next;
4046 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004047 mMotionEntryPool.free(entry);
4048 } else {
Jeff Brownb6110c22011-04-01 16:15:13 -07004049 LOG_ASSERT(entry->refCount > 0);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004050 }
4051}
4052
Jeff Browna032cc02011-03-07 16:56:21 -08004053void InputDispatcher::Allocator::freeMotionSample(MotionSample* sample) {
4054 mMotionSamplePool.free(sample);
4055}
4056
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004057void InputDispatcher::Allocator::releaseDispatchEntry(DispatchEntry* entry) {
4058 releaseEventEntry(entry->eventEntry);
4059 mDispatchEntryPool.free(entry);
4060}
4061
Jeff Brown9c3cda02010-06-15 01:31:58 -07004062void InputDispatcher::Allocator::releaseCommandEntry(CommandEntry* entry) {
4063 mCommandEntryPool.free(entry);
4064}
4065
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004066void InputDispatcher::Allocator::appendMotionSample(MotionEntry* motionEntry,
Jeff Brown7fbdc842010-06-17 20:52:56 -07004067 nsecs_t eventTime, const PointerCoords* pointerCoords) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004068 MotionSample* sample = mMotionSamplePool.alloc();
4069 sample->eventTime = eventTime;
Jeff Brown4e91a182011-04-07 11:38:09 -07004070 sample->eventTimeBeforeCoalescing = eventTime;
Jeff Brown7fbdc842010-06-17 20:52:56 -07004071 uint32_t pointerCount = motionEntry->pointerCount;
4072 for (uint32_t i = 0; i < pointerCount; i++) {
Jeff Brownace13b12011-03-09 17:39:48 -08004073 sample->pointerCoords[i].copyFrom(pointerCoords[i]);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004074 }
4075
4076 sample->next = NULL;
4077 motionEntry->lastSample->next = sample;
4078 motionEntry->lastSample = sample;
4079}
4080
Jeff Brown01ce2e92010-09-26 22:20:12 -07004081void InputDispatcher::Allocator::recycleKeyEntry(KeyEntry* keyEntry) {
4082 releaseEventEntryInjectionState(keyEntry);
Jeff Brownb88102f2010-09-08 11:49:43 -07004083
Jeff Brown01ce2e92010-09-26 22:20:12 -07004084 keyEntry->dispatchInProgress = false;
4085 keyEntry->syntheticRepeat = false;
4086 keyEntry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN;
Jeff Brownb88102f2010-09-08 11:49:43 -07004087}
4088
4089
Jeff Brownae9fc032010-08-18 15:51:08 -07004090// --- InputDispatcher::MotionEntry ---
4091
4092uint32_t InputDispatcher::MotionEntry::countSamples() const {
4093 uint32_t count = 1;
4094 for (MotionSample* sample = firstSample.next; sample != NULL; sample = sample->next) {
4095 count += 1;
4096 }
4097 return count;
4098}
4099
Jeff Brown4e91a182011-04-07 11:38:09 -07004100bool InputDispatcher::MotionEntry::canAppendSamples(int32_t action, uint32_t pointerCount,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004101 const PointerProperties* pointerProperties) const {
Jeff Brown4e91a182011-04-07 11:38:09 -07004102 if (this->action != action
4103 || this->pointerCount != pointerCount
4104 || this->isInjected()) {
4105 return false;
4106 }
4107 for (uint32_t i = 0; i < pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004108 if (this->pointerProperties[i] != pointerProperties[i]) {
Jeff Brown4e91a182011-04-07 11:38:09 -07004109 return false;
4110 }
4111 }
4112 return true;
4113}
4114
Jeff Brownb88102f2010-09-08 11:49:43 -07004115
4116// --- InputDispatcher::InputState ---
4117
Jeff Brownb6997262010-10-08 22:31:17 -07004118InputDispatcher::InputState::InputState() {
Jeff Brownb88102f2010-09-08 11:49:43 -07004119}
4120
4121InputDispatcher::InputState::~InputState() {
4122}
4123
4124bool InputDispatcher::InputState::isNeutral() const {
4125 return mKeyMementos.isEmpty() && mMotionMementos.isEmpty();
4126}
4127
Jeff Browna032cc02011-03-07 16:56:21 -08004128void InputDispatcher::InputState::trackEvent(const EventEntry* entry, int32_t action) {
Jeff Brownb88102f2010-09-08 11:49:43 -07004129 switch (entry->type) {
4130 case EventEntry::TYPE_KEY:
Jeff Browna032cc02011-03-07 16:56:21 -08004131 trackKey(static_cast<const KeyEntry*>(entry), action);
Jeff Browncc0c1592011-02-19 05:07:28 -08004132 break;
Jeff Brownb88102f2010-09-08 11:49:43 -07004133
4134 case EventEntry::TYPE_MOTION:
Jeff Browna032cc02011-03-07 16:56:21 -08004135 trackMotion(static_cast<const MotionEntry*>(entry), action);
Jeff Browncc0c1592011-02-19 05:07:28 -08004136 break;
Jeff Brownb88102f2010-09-08 11:49:43 -07004137 }
4138}
4139
Jeff Browna032cc02011-03-07 16:56:21 -08004140void InputDispatcher::InputState::trackKey(const KeyEntry* entry, int32_t action) {
Jeff Brownda3d5a92011-03-29 15:11:34 -07004141 if (action == AKEY_EVENT_ACTION_UP
4142 && (entry->flags & AKEY_EVENT_FLAG_FALLBACK)) {
4143 for (size_t i = 0; i < mFallbackKeys.size(); ) {
4144 if (mFallbackKeys.valueAt(i) == entry->keyCode) {
4145 mFallbackKeys.removeItemsAt(i);
4146 } else {
4147 i += 1;
4148 }
4149 }
4150 }
4151
Jeff Brownb88102f2010-09-08 11:49:43 -07004152 for (size_t i = 0; i < mKeyMementos.size(); i++) {
4153 KeyMemento& memento = mKeyMementos.editItemAt(i);
4154 if (memento.deviceId == entry->deviceId
4155 && memento.source == entry->source
4156 && memento.keyCode == entry->keyCode
4157 && memento.scanCode == entry->scanCode) {
4158 switch (action) {
4159 case AKEY_EVENT_ACTION_UP:
4160 mKeyMementos.removeAt(i);
Jeff Browncc0c1592011-02-19 05:07:28 -08004161 return;
Jeff Brownb88102f2010-09-08 11:49:43 -07004162
4163 case AKEY_EVENT_ACTION_DOWN:
Jeff Browncc0c1592011-02-19 05:07:28 -08004164 mKeyMementos.removeAt(i);
4165 goto Found;
Jeff Brownb88102f2010-09-08 11:49:43 -07004166
4167 default:
Jeff Browncc0c1592011-02-19 05:07:28 -08004168 return;
Jeff Brownb88102f2010-09-08 11:49:43 -07004169 }
4170 }
4171 }
4172
Jeff Browncc0c1592011-02-19 05:07:28 -08004173Found:
4174 if (action == AKEY_EVENT_ACTION_DOWN) {
Jeff Brownb88102f2010-09-08 11:49:43 -07004175 mKeyMementos.push();
4176 KeyMemento& memento = mKeyMementos.editTop();
4177 memento.deviceId = entry->deviceId;
4178 memento.source = entry->source;
4179 memento.keyCode = entry->keyCode;
4180 memento.scanCode = entry->scanCode;
Jeff Brown49ed71d2010-12-06 17:13:33 -08004181 memento.flags = entry->flags;
Jeff Brownb88102f2010-09-08 11:49:43 -07004182 memento.downTime = entry->downTime;
Jeff Brownb88102f2010-09-08 11:49:43 -07004183 }
4184}
4185
Jeff Browna032cc02011-03-07 16:56:21 -08004186void InputDispatcher::InputState::trackMotion(const MotionEntry* entry, int32_t action) {
4187 int32_t actionMasked = action & AMOTION_EVENT_ACTION_MASK;
Jeff Brownb88102f2010-09-08 11:49:43 -07004188 for (size_t i = 0; i < mMotionMementos.size(); i++) {
4189 MotionMemento& memento = mMotionMementos.editItemAt(i);
4190 if (memento.deviceId == entry->deviceId
4191 && memento.source == entry->source) {
Jeff Browna032cc02011-03-07 16:56:21 -08004192 switch (actionMasked) {
Jeff Brownb88102f2010-09-08 11:49:43 -07004193 case AMOTION_EVENT_ACTION_UP:
4194 case AMOTION_EVENT_ACTION_CANCEL:
Jeff Browna032cc02011-03-07 16:56:21 -08004195 case AMOTION_EVENT_ACTION_HOVER_ENTER:
Jeff Browncc0c1592011-02-19 05:07:28 -08004196 case AMOTION_EVENT_ACTION_HOVER_MOVE:
Jeff Browna032cc02011-03-07 16:56:21 -08004197 case AMOTION_EVENT_ACTION_HOVER_EXIT:
Jeff Brownb88102f2010-09-08 11:49:43 -07004198 mMotionMementos.removeAt(i);
Jeff Browncc0c1592011-02-19 05:07:28 -08004199 return;
Jeff Brownb88102f2010-09-08 11:49:43 -07004200
4201 case AMOTION_EVENT_ACTION_DOWN:
Jeff Browncc0c1592011-02-19 05:07:28 -08004202 mMotionMementos.removeAt(i);
4203 goto Found;
Jeff Brownb88102f2010-09-08 11:49:43 -07004204
4205 case AMOTION_EVENT_ACTION_POINTER_UP:
Jeff Browncc0c1592011-02-19 05:07:28 -08004206 case AMOTION_EVENT_ACTION_POINTER_DOWN:
Jeff Brownb88102f2010-09-08 11:49:43 -07004207 case AMOTION_EVENT_ACTION_MOVE:
Jeff Browncc0c1592011-02-19 05:07:28 -08004208 memento.setPointers(entry);
4209 return;
Jeff Brownb88102f2010-09-08 11:49:43 -07004210
4211 default:
Jeff Browncc0c1592011-02-19 05:07:28 -08004212 return;
Jeff Brownb88102f2010-09-08 11:49:43 -07004213 }
4214 }
4215 }
4216
Jeff Browncc0c1592011-02-19 05:07:28 -08004217Found:
Jeff Browna032cc02011-03-07 16:56:21 -08004218 switch (actionMasked) {
4219 case AMOTION_EVENT_ACTION_DOWN:
4220 case AMOTION_EVENT_ACTION_HOVER_ENTER:
4221 case AMOTION_EVENT_ACTION_HOVER_MOVE:
4222 case AMOTION_EVENT_ACTION_HOVER_EXIT:
Jeff Brownb88102f2010-09-08 11:49:43 -07004223 mMotionMementos.push();
4224 MotionMemento& memento = mMotionMementos.editTop();
4225 memento.deviceId = entry->deviceId;
4226 memento.source = entry->source;
4227 memento.xPrecision = entry->xPrecision;
4228 memento.yPrecision = entry->yPrecision;
4229 memento.downTime = entry->downTime;
4230 memento.setPointers(entry);
Jeff Browna032cc02011-03-07 16:56:21 -08004231 memento.hovering = actionMasked != AMOTION_EVENT_ACTION_DOWN;
Jeff Brownb88102f2010-09-08 11:49:43 -07004232 }
4233}
4234
4235void InputDispatcher::InputState::MotionMemento::setPointers(const MotionEntry* entry) {
4236 pointerCount = entry->pointerCount;
4237 for (uint32_t i = 0; i < entry->pointerCount; i++) {
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004238 pointerProperties[i].copyFrom(entry->pointerProperties[i]);
Jeff Brownace13b12011-03-09 17:39:48 -08004239 pointerCoords[i].copyFrom(entry->lastSample->pointerCoords[i]);
Jeff Brownb88102f2010-09-08 11:49:43 -07004240 }
4241}
4242
Jeff Brownb6997262010-10-08 22:31:17 -07004243void InputDispatcher::InputState::synthesizeCancelationEvents(nsecs_t currentTime,
4244 Allocator* allocator, Vector<EventEntry*>& outEvents,
Jeff Brownda3d5a92011-03-29 15:11:34 -07004245 const CancelationOptions& options) {
Jeff Brownb6997262010-10-08 22:31:17 -07004246 for (size_t i = 0; i < mKeyMementos.size(); ) {
Jeff Brownb88102f2010-09-08 11:49:43 -07004247 const KeyMemento& memento = mKeyMementos.itemAt(i);
Jeff Brown49ed71d2010-12-06 17:13:33 -08004248 if (shouldCancelKey(memento, options)) {
Jeff Brownb6997262010-10-08 22:31:17 -07004249 outEvents.push(allocator->obtainKeyEntry(currentTime,
4250 memento.deviceId, memento.source, 0,
Jeff Brown49ed71d2010-12-06 17:13:33 -08004251 AKEY_EVENT_ACTION_UP, memento.flags | AKEY_EVENT_FLAG_CANCELED,
Jeff Brownb6997262010-10-08 22:31:17 -07004252 memento.keyCode, memento.scanCode, 0, 0, memento.downTime));
4253 mKeyMementos.removeAt(i);
4254 } else {
4255 i += 1;
4256 }
Jeff Brownb88102f2010-09-08 11:49:43 -07004257 }
4258
Jeff Browna1160a72010-10-11 18:22:53 -07004259 for (size_t i = 0; i < mMotionMementos.size(); ) {
Jeff Brownb88102f2010-09-08 11:49:43 -07004260 const MotionMemento& memento = mMotionMementos.itemAt(i);
Jeff Brown49ed71d2010-12-06 17:13:33 -08004261 if (shouldCancelMotion(memento, options)) {
Jeff Brownb6997262010-10-08 22:31:17 -07004262 outEvents.push(allocator->obtainMotionEntry(currentTime,
4263 memento.deviceId, memento.source, 0,
Jeff Browna032cc02011-03-07 16:56:21 -08004264 memento.hovering
4265 ? AMOTION_EVENT_ACTION_HOVER_EXIT
4266 : AMOTION_EVENT_ACTION_CANCEL,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004267 0, 0, 0, 0,
Jeff Brownb6997262010-10-08 22:31:17 -07004268 memento.xPrecision, memento.yPrecision, memento.downTime,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -07004269 memento.pointerCount, memento.pointerProperties, memento.pointerCoords));
Jeff Brownb6997262010-10-08 22:31:17 -07004270 mMotionMementos.removeAt(i);
4271 } else {
4272 i += 1;
4273 }
Jeff Brownb88102f2010-09-08 11:49:43 -07004274 }
4275}
4276
4277void InputDispatcher::InputState::clear() {
4278 mKeyMementos.clear();
4279 mMotionMementos.clear();
Jeff Brownda3d5a92011-03-29 15:11:34 -07004280 mFallbackKeys.clear();
Jeff Brownb6997262010-10-08 22:31:17 -07004281}
4282
Jeff Brown9c9f1a32010-10-11 18:32:20 -07004283void InputDispatcher::InputState::copyPointerStateTo(InputState& other) const {
4284 for (size_t i = 0; i < mMotionMementos.size(); i++) {
4285 const MotionMemento& memento = mMotionMementos.itemAt(i);
4286 if (memento.source & AINPUT_SOURCE_CLASS_POINTER) {
4287 for (size_t j = 0; j < other.mMotionMementos.size(); ) {
4288 const MotionMemento& otherMemento = other.mMotionMementos.itemAt(j);
4289 if (memento.deviceId == otherMemento.deviceId
4290 && memento.source == otherMemento.source) {
4291 other.mMotionMementos.removeAt(j);
4292 } else {
4293 j += 1;
4294 }
4295 }
4296 other.mMotionMementos.push(memento);
4297 }
4298 }
4299}
4300
Jeff Brownda3d5a92011-03-29 15:11:34 -07004301int32_t InputDispatcher::InputState::getFallbackKey(int32_t originalKeyCode) {
4302 ssize_t index = mFallbackKeys.indexOfKey(originalKeyCode);
4303 return index >= 0 ? mFallbackKeys.valueAt(index) : -1;
4304}
4305
4306void InputDispatcher::InputState::setFallbackKey(int32_t originalKeyCode,
4307 int32_t fallbackKeyCode) {
4308 ssize_t index = mFallbackKeys.indexOfKey(originalKeyCode);
4309 if (index >= 0) {
4310 mFallbackKeys.replaceValueAt(index, fallbackKeyCode);
4311 } else {
4312 mFallbackKeys.add(originalKeyCode, fallbackKeyCode);
4313 }
4314}
4315
4316void InputDispatcher::InputState::removeFallbackKey(int32_t originalKeyCode) {
4317 mFallbackKeys.removeItem(originalKeyCode);
4318}
4319
Jeff Brown49ed71d2010-12-06 17:13:33 -08004320bool InputDispatcher::InputState::shouldCancelKey(const KeyMemento& memento,
Jeff Brownda3d5a92011-03-29 15:11:34 -07004321 const CancelationOptions& options) {
4322 if (options.keyCode != -1 && memento.keyCode != options.keyCode) {
4323 return false;
4324 }
4325
4326 switch (options.mode) {
4327 case CancelationOptions::CANCEL_ALL_EVENTS:
4328 case CancelationOptions::CANCEL_NON_POINTER_EVENTS:
Jeff Brownb6997262010-10-08 22:31:17 -07004329 return true;
Jeff Brownda3d5a92011-03-29 15:11:34 -07004330 case CancelationOptions::CANCEL_FALLBACK_EVENTS:
Jeff Brown49ed71d2010-12-06 17:13:33 -08004331 return memento.flags & AKEY_EVENT_FLAG_FALLBACK;
4332 default:
4333 return false;
4334 }
4335}
4336
4337bool InputDispatcher::InputState::shouldCancelMotion(const MotionMemento& memento,
Jeff Brownda3d5a92011-03-29 15:11:34 -07004338 const CancelationOptions& options) {
4339 switch (options.mode) {
4340 case CancelationOptions::CANCEL_ALL_EVENTS:
Jeff Brown49ed71d2010-12-06 17:13:33 -08004341 return true;
Jeff Brownda3d5a92011-03-29 15:11:34 -07004342 case CancelationOptions::CANCEL_POINTER_EVENTS:
Jeff Brown49ed71d2010-12-06 17:13:33 -08004343 return memento.source & AINPUT_SOURCE_CLASS_POINTER;
Jeff Brownda3d5a92011-03-29 15:11:34 -07004344 case CancelationOptions::CANCEL_NON_POINTER_EVENTS:
Jeff Brown49ed71d2010-12-06 17:13:33 -08004345 return !(memento.source & AINPUT_SOURCE_CLASS_POINTER);
4346 default:
4347 return false;
Jeff Brownb6997262010-10-08 22:31:17 -07004348 }
Jeff Brownb88102f2010-09-08 11:49:43 -07004349}
4350
4351
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004352// --- InputDispatcher::Connection ---
4353
Jeff Brown928e0542011-01-10 11:17:36 -08004354InputDispatcher::Connection::Connection(const sp<InputChannel>& inputChannel,
4355 const sp<InputWindowHandle>& inputWindowHandle) :
4356 status(STATUS_NORMAL), inputChannel(inputChannel), inputWindowHandle(inputWindowHandle),
4357 inputPublisher(inputChannel),
Jeff Brownda3d5a92011-03-29 15:11:34 -07004358 lastEventTime(LONG_LONG_MAX), lastDispatchTime(LONG_LONG_MAX) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004359}
4360
4361InputDispatcher::Connection::~Connection() {
4362}
4363
4364status_t InputDispatcher::Connection::initialize() {
4365 return inputPublisher.initialize();
4366}
4367
Jeff Brown9c3cda02010-06-15 01:31:58 -07004368const char* InputDispatcher::Connection::getStatusLabel() const {
4369 switch (status) {
4370 case STATUS_NORMAL:
4371 return "NORMAL";
4372
4373 case STATUS_BROKEN:
4374 return "BROKEN";
4375
Jeff Brown9c3cda02010-06-15 01:31:58 -07004376 case STATUS_ZOMBIE:
4377 return "ZOMBIE";
4378
4379 default:
4380 return "UNKNOWN";
4381 }
4382}
4383
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004384InputDispatcher::DispatchEntry* InputDispatcher::Connection::findQueuedDispatchEntryForEvent(
4385 const EventEntry* eventEntry) const {
Jeff Brownb88102f2010-09-08 11:49:43 -07004386 for (DispatchEntry* dispatchEntry = outboundQueue.tailSentinel.prev;
4387 dispatchEntry != & outboundQueue.headSentinel; dispatchEntry = dispatchEntry->prev) {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004388 if (dispatchEntry->eventEntry == eventEntry) {
4389 return dispatchEntry;
4390 }
4391 }
4392 return NULL;
4393}
4394
Jeff Brownb88102f2010-09-08 11:49:43 -07004395
Jeff Brown9c3cda02010-06-15 01:31:58 -07004396// --- InputDispatcher::CommandEntry ---
4397
Jeff Brownb88102f2010-09-08 11:49:43 -07004398InputDispatcher::CommandEntry::CommandEntry() :
4399 keyEntry(NULL) {
Jeff Brown9c3cda02010-06-15 01:31:58 -07004400}
4401
4402InputDispatcher::CommandEntry::~CommandEntry() {
4403}
4404
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004405
Jeff Brown01ce2e92010-09-26 22:20:12 -07004406// --- InputDispatcher::TouchState ---
4407
4408InputDispatcher::TouchState::TouchState() :
Jeff Brown58a2da82011-01-25 16:02:22 -08004409 down(false), split(false), deviceId(-1), source(0) {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004410}
4411
4412InputDispatcher::TouchState::~TouchState() {
4413}
4414
4415void InputDispatcher::TouchState::reset() {
4416 down = false;
4417 split = false;
Jeff Brown95712852011-01-04 19:41:59 -08004418 deviceId = -1;
Jeff Brown58a2da82011-01-25 16:02:22 -08004419 source = 0;
Jeff Brown01ce2e92010-09-26 22:20:12 -07004420 windows.clear();
4421}
4422
4423void InputDispatcher::TouchState::copyFrom(const TouchState& other) {
4424 down = other.down;
4425 split = other.split;
Jeff Brown95712852011-01-04 19:41:59 -08004426 deviceId = other.deviceId;
Jeff Brown58a2da82011-01-25 16:02:22 -08004427 source = other.source;
Jeff Brown01ce2e92010-09-26 22:20:12 -07004428 windows.clear();
4429 windows.appendVector(other.windows);
4430}
4431
4432void InputDispatcher::TouchState::addOrUpdateWindow(const InputWindow* window,
4433 int32_t targetFlags, BitSet32 pointerIds) {
4434 if (targetFlags & InputTarget::FLAG_SPLIT) {
4435 split = true;
4436 }
4437
4438 for (size_t i = 0; i < windows.size(); i++) {
4439 TouchedWindow& touchedWindow = windows.editItemAt(i);
4440 if (touchedWindow.window == window) {
4441 touchedWindow.targetFlags |= targetFlags;
Jeff Brown98db5fa2011-06-08 15:37:10 -07004442 if (targetFlags & InputTarget::FLAG_DISPATCH_AS_SLIPPERY_EXIT) {
4443 touchedWindow.targetFlags &= ~InputTarget::FLAG_DISPATCH_AS_IS;
4444 }
Jeff Brown01ce2e92010-09-26 22:20:12 -07004445 touchedWindow.pointerIds.value |= pointerIds.value;
4446 return;
4447 }
4448 }
4449
4450 windows.push();
4451
4452 TouchedWindow& touchedWindow = windows.editTop();
4453 touchedWindow.window = window;
4454 touchedWindow.targetFlags = targetFlags;
4455 touchedWindow.pointerIds = pointerIds;
4456 touchedWindow.channel = window->inputChannel;
4457}
4458
Jeff Browna032cc02011-03-07 16:56:21 -08004459void InputDispatcher::TouchState::filterNonAsIsTouchWindows() {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004460 for (size_t i = 0 ; i < windows.size(); ) {
Jeff Browna032cc02011-03-07 16:56:21 -08004461 TouchedWindow& window = windows.editItemAt(i);
Jeff Brown98db5fa2011-06-08 15:37:10 -07004462 if (window.targetFlags & (InputTarget::FLAG_DISPATCH_AS_IS
4463 | InputTarget::FLAG_DISPATCH_AS_SLIPPERY_ENTER)) {
Jeff Browna032cc02011-03-07 16:56:21 -08004464 window.targetFlags &= ~InputTarget::FLAG_DISPATCH_MASK;
4465 window.targetFlags |= InputTarget::FLAG_DISPATCH_AS_IS;
Jeff Brown01ce2e92010-09-26 22:20:12 -07004466 i += 1;
Jeff Browna032cc02011-03-07 16:56:21 -08004467 } else {
4468 windows.removeAt(i);
Jeff Brown01ce2e92010-09-26 22:20:12 -07004469 }
4470 }
4471}
4472
Jeff Brown98db5fa2011-06-08 15:37:10 -07004473const InputWindow* InputDispatcher::TouchState::getFirstForegroundWindow() const {
Jeff Brown01ce2e92010-09-26 22:20:12 -07004474 for (size_t i = 0; i < windows.size(); i++) {
Jeff Brown98db5fa2011-06-08 15:37:10 -07004475 const TouchedWindow& window = windows.itemAt(i);
4476 if (window.targetFlags & InputTarget::FLAG_FOREGROUND) {
4477 return window.window;
Jeff Brown01ce2e92010-09-26 22:20:12 -07004478 }
4479 }
4480 return NULL;
4481}
4482
Jeff Brown98db5fa2011-06-08 15:37:10 -07004483bool InputDispatcher::TouchState::isSlippery() const {
4484 // Must have exactly one foreground window.
4485 bool haveSlipperyForegroundWindow = false;
4486 for (size_t i = 0; i < windows.size(); i++) {
4487 const TouchedWindow& window = windows.itemAt(i);
4488 if (window.targetFlags & InputTarget::FLAG_FOREGROUND) {
4489 if (haveSlipperyForegroundWindow
4490 || !(window.window->layoutParamsFlags & InputWindow::FLAG_SLIPPERY)) {
4491 return false;
4492 }
4493 haveSlipperyForegroundWindow = true;
4494 }
4495 }
4496 return haveSlipperyForegroundWindow;
4497}
4498
Jeff Brown01ce2e92010-09-26 22:20:12 -07004499
Jeff Brown46b9ac0a2010-04-22 18:58:52 -07004500// --- InputDispatcherThread ---
4501
4502InputDispatcherThread::InputDispatcherThread(const sp<InputDispatcherInterface>& dispatcher) :
4503 Thread(/*canCallJava*/ true), mDispatcher(dispatcher) {
4504}
4505
4506InputDispatcherThread::~InputDispatcherThread() {
4507}
4508
4509bool InputDispatcherThread::threadLoop() {
4510 mDispatcher->dispatchOnce();
4511 return true;
4512}
4513
4514} // namespace android