Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef _UI_INPUT_DISPATCHER_H |
| 18 | #define _UI_INPUT_DISPATCHER_H |
| 19 | |
| 20 | #include <ui/Input.h> |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 21 | #include <ui/InputTransport.h> |
| 22 | #include <utils/KeyedVector.h> |
| 23 | #include <utils/Vector.h> |
| 24 | #include <utils/threads.h> |
| 25 | #include <utils/Timers.h> |
| 26 | #include <utils/RefBase.h> |
| 27 | #include <utils/String8.h> |
Jeff Brown | 4fe6c3e | 2010-09-13 23:17:30 -0700 | [diff] [blame] | 28 | #include <utils/Looper.h> |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 29 | #include <utils/BitSet.h> |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 30 | |
| 31 | #include <stddef.h> |
| 32 | #include <unistd.h> |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 33 | #include <limits.h> |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 34 | |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 35 | #include "InputWindow.h" |
| 36 | #include "InputApplication.h" |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 37 | #include "InputListener.h" |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 38 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 39 | |
| 40 | namespace android { |
| 41 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 42 | /* |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 43 | * Constants used to report the outcome of input event injection. |
| 44 | */ |
| 45 | enum { |
| 46 | /* (INTERNAL USE ONLY) Specifies that injection is pending and its outcome is unknown. */ |
| 47 | INPUT_EVENT_INJECTION_PENDING = -1, |
| 48 | |
| 49 | /* Injection succeeded. */ |
| 50 | INPUT_EVENT_INJECTION_SUCCEEDED = 0, |
| 51 | |
| 52 | /* Injection failed because the injector did not have permission to inject |
| 53 | * into the application with input focus. */ |
| 54 | INPUT_EVENT_INJECTION_PERMISSION_DENIED = 1, |
| 55 | |
| 56 | /* Injection failed because there were no available input targets. */ |
| 57 | INPUT_EVENT_INJECTION_FAILED = 2, |
| 58 | |
| 59 | /* Injection failed due to a timeout. */ |
| 60 | INPUT_EVENT_INJECTION_TIMED_OUT = 3 |
| 61 | }; |
| 62 | |
Jeff Brown | 6ec402b | 2010-07-28 15:48:59 -0700 | [diff] [blame] | 63 | /* |
| 64 | * Constants used to determine the input event injection synchronization mode. |
| 65 | */ |
| 66 | enum { |
| 67 | /* Injection is asynchronous and is assumed always to be successful. */ |
| 68 | INPUT_EVENT_INJECTION_SYNC_NONE = 0, |
| 69 | |
| 70 | /* Waits for previous events to be dispatched so that the input dispatcher can determine |
| 71 | * whether input event injection willbe permitted based on the current input focus. |
| 72 | * Does not wait for the input event to finish processing. */ |
| 73 | INPUT_EVENT_INJECTION_SYNC_WAIT_FOR_RESULT = 1, |
| 74 | |
| 75 | /* Waits for the input event to be completely processed. */ |
| 76 | INPUT_EVENT_INJECTION_SYNC_WAIT_FOR_FINISHED = 2, |
| 77 | }; |
| 78 | |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 79 | |
| 80 | /* |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 81 | * An input target specifies how an input event is to be dispatched to a particular window |
| 82 | * including the window's input channel, control flags, a timeout, and an X / Y offset to |
| 83 | * be added to input event coordinates to compensate for the absolute position of the |
| 84 | * window area. |
| 85 | */ |
| 86 | struct InputTarget { |
| 87 | enum { |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 88 | /* This flag indicates that the event is being delivered to a foreground application. */ |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 89 | FLAG_FOREGROUND = 1 << 0, |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 90 | |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 91 | /* This flag indicates that the target of a MotionEvent is partly or wholly |
| 92 | * obscured by another visible window above it. The motion event should be |
| 93 | * delivered with flag AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED. */ |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 94 | FLAG_WINDOW_IS_OBSCURED = 1 << 1, |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 95 | |
| 96 | /* This flag indicates that a motion event is being split across multiple windows. */ |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 97 | FLAG_SPLIT = 1 << 2, |
| 98 | |
Kenny Root | 7a9db18 | 2011-06-02 15:16:05 -0700 | [diff] [blame] | 99 | /* This flag indicates that the pointer coordinates dispatched to the application |
| 100 | * will be zeroed out to avoid revealing information to an application. This is |
| 101 | * used in conjunction with FLAG_DISPATCH_AS_OUTSIDE to prevent apps not sharing |
| 102 | * the same UID from watching all touches. */ |
| 103 | FLAG_ZERO_COORDS = 1 << 3, |
| 104 | |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 105 | /* This flag indicates that the event should be sent as is. |
| 106 | * Should always be set unless the event is to be transmuted. */ |
| 107 | FLAG_DISPATCH_AS_IS = 1 << 8, |
| 108 | |
| 109 | /* This flag indicates that a MotionEvent with AMOTION_EVENT_ACTION_DOWN falls outside |
| 110 | * of the area of this target and so should instead be delivered as an |
| 111 | * AMOTION_EVENT_ACTION_OUTSIDE to this target. */ |
| 112 | FLAG_DISPATCH_AS_OUTSIDE = 1 << 9, |
| 113 | |
| 114 | /* This flag indicates that a hover sequence is starting in the given window. |
| 115 | * The event is transmuted into ACTION_HOVER_ENTER. */ |
| 116 | FLAG_DISPATCH_AS_HOVER_ENTER = 1 << 10, |
| 117 | |
| 118 | /* This flag indicates that a hover event happened outside of a window which handled |
| 119 | * previous hover events, signifying the end of the current hover sequence for that |
| 120 | * window. |
| 121 | * The event is transmuted into ACTION_HOVER_ENTER. */ |
| 122 | FLAG_DISPATCH_AS_HOVER_EXIT = 1 << 11, |
| 123 | |
Jeff Brown | 98db5fa | 2011-06-08 15:37:10 -0700 | [diff] [blame] | 124 | /* This flag indicates that the event should be canceled. |
| 125 | * It is used to transmute ACTION_MOVE into ACTION_CANCEL when a touch slips |
| 126 | * outside of a window. */ |
| 127 | FLAG_DISPATCH_AS_SLIPPERY_EXIT = 1 << 12, |
| 128 | |
| 129 | /* This flag indicates that the event should be dispatched as an initial down. |
| 130 | * It is used to transmute ACTION_MOVE into ACTION_DOWN when a touch slips |
| 131 | * into a new window. */ |
| 132 | FLAG_DISPATCH_AS_SLIPPERY_ENTER = 1 << 13, |
| 133 | |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 134 | /* Mask for all dispatch modes. */ |
| 135 | FLAG_DISPATCH_MASK = FLAG_DISPATCH_AS_IS |
| 136 | | FLAG_DISPATCH_AS_OUTSIDE |
| 137 | | FLAG_DISPATCH_AS_HOVER_ENTER |
Jeff Brown | 98db5fa | 2011-06-08 15:37:10 -0700 | [diff] [blame] | 138 | | FLAG_DISPATCH_AS_HOVER_EXIT |
| 139 | | FLAG_DISPATCH_AS_SLIPPERY_EXIT |
| 140 | | FLAG_DISPATCH_AS_SLIPPERY_ENTER, |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 141 | }; |
| 142 | |
| 143 | // The input channel to be targeted. |
| 144 | sp<InputChannel> inputChannel; |
| 145 | |
| 146 | // Flags for the input target. |
| 147 | int32_t flags; |
| 148 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 149 | // The x and y offset to add to a MotionEvent as it is delivered. |
| 150 | // (ignored for KeyEvents) |
| 151 | float xOffset, yOffset; |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 152 | |
Dianne Hackborn | e2515ee | 2011-04-27 18:52:56 -0400 | [diff] [blame] | 153 | // Scaling factor to apply to MotionEvent as it is delivered. |
| 154 | // (ignored for KeyEvents) |
| 155 | float scaleFactor; |
| 156 | |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 157 | // The subset of pointer ids to include in motion events dispatched to this input target |
| 158 | // if FLAG_SPLIT is set. |
| 159 | BitSet32 pointerIds; |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 160 | }; |
| 161 | |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 162 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 163 | /* |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 164 | * Input dispatcher configuration. |
| 165 | * |
| 166 | * Specifies various options that modify the behavior of the input dispatcher. |
| 167 | */ |
| 168 | struct InputDispatcherConfiguration { |
| 169 | // The key repeat initial timeout. |
| 170 | nsecs_t keyRepeatTimeout; |
| 171 | |
| 172 | // The key repeat inter-key delay. |
| 173 | nsecs_t keyRepeatDelay; |
| 174 | |
| 175 | // The maximum suggested event delivery rate per second. |
| 176 | // This value is used to throttle motion event movement actions on a per-device |
| 177 | // basis. It is not intended to be a hard limit. |
| 178 | int32_t maxEventsPerSecond; |
| 179 | |
| 180 | InputDispatcherConfiguration() : |
| 181 | keyRepeatTimeout(500 * 1000000LL), |
| 182 | keyRepeatDelay(50 * 1000000LL), |
| 183 | maxEventsPerSecond(60) { } |
| 184 | }; |
| 185 | |
| 186 | |
| 187 | /* |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 188 | * Input dispatcher policy interface. |
| 189 | * |
| 190 | * The input reader policy is used by the input reader to interact with the Window Manager |
| 191 | * and other system components. |
| 192 | * |
| 193 | * The actual implementation is partially supported by callbacks into the DVM |
| 194 | * via JNI. This interface is also mocked in the unit tests. |
| 195 | */ |
| 196 | class InputDispatcherPolicyInterface : public virtual RefBase { |
| 197 | protected: |
| 198 | InputDispatcherPolicyInterface() { } |
| 199 | virtual ~InputDispatcherPolicyInterface() { } |
| 200 | |
| 201 | public: |
| 202 | /* Notifies the system that a configuration change has occurred. */ |
| 203 | virtual void notifyConfigurationChanged(nsecs_t when) = 0; |
| 204 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 205 | /* Notifies the system that an application is not responding. |
| 206 | * Returns a new timeout to continue waiting, or 0 to abort dispatch. */ |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 207 | virtual nsecs_t notifyANR(const sp<InputApplicationHandle>& inputApplicationHandle, |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 208 | const sp<InputWindowHandle>& inputWindowHandle) = 0; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 209 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 210 | /* Notifies the system that an input channel is unrecoverably broken. */ |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 211 | virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) = 0; |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 212 | |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 213 | /* Gets the input dispatcher configuration. */ |
| 214 | virtual void getDispatcherConfiguration(InputDispatcherConfiguration* outConfig) = 0; |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 215 | |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 216 | /* Returns true if automatic key repeating is enabled. */ |
| 217 | virtual bool isKeyRepeatEnabled() = 0; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 218 | |
Jeff Brown | 0029c66 | 2011-03-30 02:25:18 -0700 | [diff] [blame] | 219 | /* Filters an input event. |
| 220 | * Return true to dispatch the event unmodified, false to consume the event. |
| 221 | * A filter can also transform and inject events later by passing POLICY_FLAG_FILTERED |
| 222 | * to injectInputEvent. |
| 223 | */ |
| 224 | virtual bool filterInputEvent(const InputEvent* inputEvent, uint32_t policyFlags) = 0; |
| 225 | |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 226 | /* Intercepts a key event immediately before queueing it. |
| 227 | * The policy can use this method as an opportunity to perform power management functions |
| 228 | * and early event preprocessing such as updating policy flags. |
| 229 | * |
| 230 | * This method is expected to set the POLICY_FLAG_PASS_TO_USER policy flag if the event |
| 231 | * should be dispatched to applications. |
| 232 | */ |
Jeff Brown | 1f24510 | 2010-11-18 20:53:46 -0800 | [diff] [blame] | 233 | virtual void interceptKeyBeforeQueueing(const KeyEvent* keyEvent, uint32_t& policyFlags) = 0; |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 234 | |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 235 | /* Intercepts a touch, trackball or other motion event before queueing it. |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 236 | * The policy can use this method as an opportunity to perform power management functions |
| 237 | * and early event preprocessing such as updating policy flags. |
| 238 | * |
| 239 | * This method is expected to set the POLICY_FLAG_PASS_TO_USER policy flag if the event |
| 240 | * should be dispatched to applications. |
| 241 | */ |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 242 | virtual void interceptMotionBeforeQueueing(nsecs_t when, uint32_t& policyFlags) = 0; |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 243 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 244 | /* Allows the policy a chance to intercept a key before dispatching. */ |
Jeff Brown | 905805a | 2011-10-12 13:57:59 -0700 | [diff] [blame] | 245 | virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle, |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 246 | const KeyEvent* keyEvent, uint32_t policyFlags) = 0; |
| 247 | |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 248 | /* Allows the policy a chance to perform default processing for an unhandled key. |
| 249 | * Returns an alternate keycode to redispatch as a fallback, or 0 to give up. */ |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 250 | virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle, |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 251 | const KeyEvent* keyEvent, uint32_t policyFlags, KeyEvent* outFallbackKeyEvent) = 0; |
Jeff Brown | 3915bb8 | 2010-11-05 15:02:16 -0700 | [diff] [blame] | 252 | |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 253 | /* Notifies the policy about switch events. |
| 254 | */ |
| 255 | virtual void notifySwitch(nsecs_t when, |
| 256 | int32_t switchCode, int32_t switchValue, uint32_t policyFlags) = 0; |
| 257 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 258 | /* Poke user activity for an event dispatched to a window. */ |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 259 | virtual void pokeUserActivity(nsecs_t eventTime, int32_t eventType) = 0; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 260 | |
| 261 | /* Checks whether a given application pid/uid has permission to inject input events |
| 262 | * into other applications. |
| 263 | * |
| 264 | * This method is special in that its implementation promises to be non-reentrant and |
| 265 | * is safe to call while holding other locks. (Most other methods make no such guarantees!) |
| 266 | */ |
| 267 | virtual bool checkInjectEventsPermissionNonReentrant( |
| 268 | int32_t injectorPid, int32_t injectorUid) = 0; |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 269 | }; |
| 270 | |
| 271 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 272 | /* Notifies the system about input events generated by the input reader. |
| 273 | * The dispatcher is expected to be mostly asynchronous. */ |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 274 | class InputDispatcherInterface : public virtual RefBase, public InputListenerInterface { |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 275 | protected: |
| 276 | InputDispatcherInterface() { } |
| 277 | virtual ~InputDispatcherInterface() { } |
| 278 | |
| 279 | public: |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 280 | /* Dumps the state of the input dispatcher. |
| 281 | * |
| 282 | * This method may be called on any thread (usually by the input manager). */ |
| 283 | virtual void dump(String8& dump) = 0; |
| 284 | |
Jeff Brown | 89ef072 | 2011-08-10 16:25:21 -0700 | [diff] [blame] | 285 | /* Called by the heatbeat to ensures that the dispatcher has not deadlocked. */ |
| 286 | virtual void monitor() = 0; |
| 287 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 288 | /* Runs a single iteration of the dispatch loop. |
| 289 | * Nominally processes one queued event, a timeout, or a response from an input consumer. |
| 290 | * |
| 291 | * This method should only be called on the input dispatcher thread. |
| 292 | */ |
| 293 | virtual void dispatchOnce() = 0; |
| 294 | |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 295 | /* Injects an input event and optionally waits for sync. |
Jeff Brown | 6ec402b | 2010-07-28 15:48:59 -0700 | [diff] [blame] | 296 | * The synchronization mode determines whether the method blocks while waiting for |
| 297 | * input injection to proceed. |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 298 | * Returns one of the INPUT_EVENT_INJECTION_XXX constants. |
| 299 | * |
| 300 | * This method may be called on any thread (usually by the input manager). |
| 301 | */ |
| 302 | virtual int32_t injectInputEvent(const InputEvent* event, |
Jeff Brown | 0029c66 | 2011-03-30 02:25:18 -0700 | [diff] [blame] | 303 | int32_t injectorPid, int32_t injectorUid, int32_t syncMode, int32_t timeoutMillis, |
| 304 | uint32_t policyFlags) = 0; |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 305 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 306 | /* Sets the list of input windows. |
| 307 | * |
| 308 | * This method may be called on any thread (usually by the input manager). |
| 309 | */ |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 310 | virtual void setInputWindows(const Vector<sp<InputWindowHandle> >& inputWindowHandles) = 0; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 311 | |
| 312 | /* Sets the focused application. |
| 313 | * |
| 314 | * This method may be called on any thread (usually by the input manager). |
| 315 | */ |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 316 | virtual void setFocusedApplication( |
| 317 | const sp<InputApplicationHandle>& inputApplicationHandle) = 0; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 318 | |
| 319 | /* Sets the input dispatching mode. |
| 320 | * |
| 321 | * This method may be called on any thread (usually by the input manager). |
| 322 | */ |
| 323 | virtual void setInputDispatchMode(bool enabled, bool frozen) = 0; |
| 324 | |
Jeff Brown | 0029c66 | 2011-03-30 02:25:18 -0700 | [diff] [blame] | 325 | /* Sets whether input event filtering is enabled. |
| 326 | * When enabled, incoming input events are sent to the policy's filterInputEvent |
| 327 | * method instead of being dispatched. The filter is expected to use |
| 328 | * injectInputEvent to inject the events it would like to have dispatched. |
| 329 | * It should include POLICY_FLAG_FILTERED in the policy flags during injection. |
| 330 | */ |
| 331 | virtual void setInputFilterEnabled(bool enabled) = 0; |
| 332 | |
Jeff Brown | e650412 | 2010-09-27 14:52:15 -0700 | [diff] [blame] | 333 | /* Transfers touch focus from the window associated with one channel to the |
| 334 | * window associated with the other channel. |
| 335 | * |
| 336 | * Returns true on success. False if the window did not actually have touch focus. |
| 337 | */ |
| 338 | virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel, |
| 339 | const sp<InputChannel>& toChannel) = 0; |
| 340 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 341 | /* Registers or unregister input channels that may be used as targets for input events. |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 342 | * If monitor is true, the channel will receive a copy of all input events. |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 343 | * |
| 344 | * These methods may be called on any thread (usually by the input manager). |
| 345 | */ |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 346 | virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel, |
| 347 | const sp<InputWindowHandle>& inputWindowHandle, bool monitor) = 0; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 348 | virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel) = 0; |
| 349 | }; |
| 350 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 351 | /* Dispatches events to input targets. Some functions of the input dispatcher, such as |
| 352 | * identifying input targets, are controlled by a separate policy object. |
| 353 | * |
| 354 | * IMPORTANT INVARIANT: |
| 355 | * Because the policy can potentially block or cause re-entrance into the input dispatcher, |
| 356 | * the input dispatcher never calls into the policy while holding its internal locks. |
| 357 | * The implementation is also carefully designed to recover from scenarios such as an |
| 358 | * input channel becoming unregistered while identifying input targets or processing timeouts. |
| 359 | * |
| 360 | * Methods marked 'Locked' must be called with the lock acquired. |
| 361 | * |
| 362 | * Methods marked 'LockedInterruptible' must be called with the lock acquired but |
| 363 | * may during the course of their execution release the lock, call into the policy, and |
| 364 | * then reacquire the lock. The caller is responsible for recovering gracefully. |
| 365 | * |
| 366 | * A 'LockedInterruptible' method may called a 'Locked' method, but NOT vice-versa. |
| 367 | */ |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 368 | class InputDispatcher : public InputDispatcherInterface { |
| 369 | protected: |
| 370 | virtual ~InputDispatcher(); |
| 371 | |
| 372 | public: |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 373 | explicit InputDispatcher(const sp<InputDispatcherPolicyInterface>& policy); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 374 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 375 | virtual void dump(String8& dump); |
Jeff Brown | 89ef072 | 2011-08-10 16:25:21 -0700 | [diff] [blame] | 376 | virtual void monitor(); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 377 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 378 | virtual void dispatchOnce(); |
| 379 | |
Jeff Brown | be1aa82 | 2011-07-27 16:04:54 -0700 | [diff] [blame] | 380 | virtual void notifyConfigurationChanged(const NotifyConfigurationChangedArgs* args); |
| 381 | virtual void notifyKey(const NotifyKeyArgs* args); |
| 382 | virtual void notifyMotion(const NotifyMotionArgs* args); |
| 383 | virtual void notifySwitch(const NotifySwitchArgs* args); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 384 | virtual void notifyDeviceReset(const NotifyDeviceResetArgs* args); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 385 | |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 386 | virtual int32_t injectInputEvent(const InputEvent* event, |
Jeff Brown | 0029c66 | 2011-03-30 02:25:18 -0700 | [diff] [blame] | 387 | int32_t injectorPid, int32_t injectorUid, int32_t syncMode, int32_t timeoutMillis, |
| 388 | uint32_t policyFlags); |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 389 | |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 390 | virtual void setInputWindows(const Vector<sp<InputWindowHandle> >& inputWindowHandles); |
| 391 | virtual void setFocusedApplication(const sp<InputApplicationHandle>& inputApplicationHandle); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 392 | virtual void setInputDispatchMode(bool enabled, bool frozen); |
Jeff Brown | 0029c66 | 2011-03-30 02:25:18 -0700 | [diff] [blame] | 393 | virtual void setInputFilterEnabled(bool enabled); |
Jeff Brown | 349703e | 2010-06-22 01:27:15 -0700 | [diff] [blame] | 394 | |
Jeff Brown | e650412 | 2010-09-27 14:52:15 -0700 | [diff] [blame] | 395 | virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel, |
| 396 | const sp<InputChannel>& toChannel); |
| 397 | |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 398 | virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel, |
| 399 | const sp<InputWindowHandle>& inputWindowHandle, bool monitor); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 400 | virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel); |
| 401 | |
| 402 | private: |
| 403 | template <typename T> |
| 404 | struct Link { |
| 405 | T* next; |
| 406 | T* prev; |
| 407 | }; |
| 408 | |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 409 | struct InjectionState { |
| 410 | mutable int32_t refCount; |
| 411 | |
| 412 | int32_t injectorPid; |
| 413 | int32_t injectorUid; |
| 414 | int32_t injectionResult; // initially INPUT_EVENT_INJECTION_PENDING |
| 415 | bool injectionIsAsync; // set to true if injection is not waiting for the result |
| 416 | int32_t pendingForegroundDispatches; // the number of foreground dispatches in progress |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 417 | |
| 418 | InjectionState(int32_t injectorPid, int32_t injectorUid); |
| 419 | void release(); |
| 420 | |
| 421 | private: |
| 422 | ~InjectionState(); |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 423 | }; |
| 424 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 425 | struct EventEntry : Link<EventEntry> { |
| 426 | enum { |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 427 | TYPE_CONFIGURATION_CHANGED, |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 428 | TYPE_DEVICE_RESET, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 429 | TYPE_KEY, |
| 430 | TYPE_MOTION |
| 431 | }; |
| 432 | |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 433 | mutable int32_t refCount; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 434 | int32_t type; |
| 435 | nsecs_t eventTime; |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 436 | uint32_t policyFlags; |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 437 | InjectionState* injectionState; |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 438 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 439 | bool dispatchInProgress; // initially false, set to true while dispatching |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 440 | |
Jeff Brown | 4e91a18 | 2011-04-07 11:38:09 -0700 | [diff] [blame] | 441 | inline bool isInjected() const { return injectionState != NULL; } |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 442 | |
| 443 | void release(); |
| 444 | |
| 445 | protected: |
| 446 | EventEntry(int32_t type, nsecs_t eventTime, uint32_t policyFlags); |
| 447 | virtual ~EventEntry(); |
| 448 | void releaseInjectionState(); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 449 | }; |
| 450 | |
| 451 | struct ConfigurationChangedEntry : EventEntry { |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 452 | ConfigurationChangedEntry(nsecs_t eventTime); |
| 453 | |
| 454 | protected: |
| 455 | virtual ~ConfigurationChangedEntry(); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 456 | }; |
| 457 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 458 | struct DeviceResetEntry : EventEntry { |
| 459 | int32_t deviceId; |
| 460 | |
| 461 | DeviceResetEntry(nsecs_t eventTime, int32_t deviceId); |
| 462 | |
| 463 | protected: |
| 464 | virtual ~DeviceResetEntry(); |
| 465 | }; |
| 466 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 467 | struct KeyEntry : EventEntry { |
| 468 | int32_t deviceId; |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 469 | uint32_t source; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 470 | int32_t action; |
| 471 | int32_t flags; |
| 472 | int32_t keyCode; |
| 473 | int32_t scanCode; |
| 474 | int32_t metaState; |
| 475 | int32_t repeatCount; |
| 476 | nsecs_t downTime; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 477 | |
| 478 | bool syntheticRepeat; // set to true for synthetic key repeats |
| 479 | |
| 480 | enum InterceptKeyResult { |
| 481 | INTERCEPT_KEY_RESULT_UNKNOWN, |
| 482 | INTERCEPT_KEY_RESULT_SKIP, |
| 483 | INTERCEPT_KEY_RESULT_CONTINUE, |
Jeff Brown | 905805a | 2011-10-12 13:57:59 -0700 | [diff] [blame] | 484 | INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER, |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 485 | }; |
| 486 | InterceptKeyResult interceptKeyResult; // set based on the interception result |
Jeff Brown | 905805a | 2011-10-12 13:57:59 -0700 | [diff] [blame] | 487 | nsecs_t interceptKeyWakeupTime; // used with INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 488 | |
| 489 | KeyEntry(nsecs_t eventTime, |
| 490 | int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, |
| 491 | int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState, |
| 492 | int32_t repeatCount, nsecs_t downTime); |
| 493 | void recycle(); |
| 494 | |
| 495 | protected: |
| 496 | virtual ~KeyEntry(); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 497 | }; |
| 498 | |
| 499 | struct MotionSample { |
| 500 | MotionSample* next; |
| 501 | |
Jeff Brown | 4e91a18 | 2011-04-07 11:38:09 -0700 | [diff] [blame] | 502 | nsecs_t eventTime; // may be updated during coalescing |
| 503 | nsecs_t eventTimeBeforeCoalescing; // not updated during coalescing |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 504 | PointerCoords pointerCoords[MAX_POINTERS]; |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 505 | |
| 506 | MotionSample(nsecs_t eventTime, const PointerCoords* pointerCoords, |
| 507 | uint32_t pointerCount); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 508 | }; |
| 509 | |
| 510 | struct MotionEntry : EventEntry { |
| 511 | int32_t deviceId; |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 512 | uint32_t source; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 513 | int32_t action; |
Jeff Brown | 85a3176 | 2010-09-01 17:01:00 -0700 | [diff] [blame] | 514 | int32_t flags; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 515 | int32_t metaState; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 516 | int32_t buttonState; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 517 | int32_t edgeFlags; |
| 518 | float xPrecision; |
| 519 | float yPrecision; |
| 520 | nsecs_t downTime; |
| 521 | uint32_t pointerCount; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 522 | PointerProperties pointerProperties[MAX_POINTERS]; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 523 | |
| 524 | // Linked list of motion samples associated with this motion event. |
| 525 | MotionSample firstSample; |
| 526 | MotionSample* lastSample; |
Jeff Brown | ae9fc03 | 2010-08-18 15:51:08 -0700 | [diff] [blame] | 527 | |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 528 | MotionEntry(nsecs_t eventTime, |
| 529 | int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, |
| 530 | int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, |
| 531 | float xPrecision, float yPrecision, |
| 532 | nsecs_t downTime, uint32_t pointerCount, |
| 533 | const PointerProperties* pointerProperties, const PointerCoords* pointerCoords); |
| 534 | |
Jeff Brown | ae9fc03 | 2010-08-18 15:51:08 -0700 | [diff] [blame] | 535 | uint32_t countSamples() const; |
Jeff Brown | 4e91a18 | 2011-04-07 11:38:09 -0700 | [diff] [blame] | 536 | |
| 537 | // Checks whether we can append samples, assuming the device id and source are the same. |
| 538 | bool canAppendSamples(int32_t action, uint32_t pointerCount, |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 539 | const PointerProperties* pointerProperties) const; |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 540 | |
| 541 | void appendSample(nsecs_t eventTime, const PointerCoords* pointerCoords); |
| 542 | |
| 543 | protected: |
| 544 | virtual ~MotionEntry(); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 545 | }; |
| 546 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 547 | // Tracks the progress of dispatching a particular event to a particular connection. |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 548 | struct DispatchEntry : Link<DispatchEntry> { |
| 549 | EventEntry* eventEntry; // the event to dispatch |
| 550 | int32_t targetFlags; |
| 551 | float xOffset; |
| 552 | float yOffset; |
Dianne Hackborn | e2515ee | 2011-04-27 18:52:56 -0400 | [diff] [blame] | 553 | float scaleFactor; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 554 | |
| 555 | // True if dispatch has started. |
| 556 | bool inProgress; |
| 557 | |
Jeff Brown | 8134681 | 2011-06-28 20:08:48 -0700 | [diff] [blame] | 558 | // Set to the resolved action and flags when the event is enqueued. |
| 559 | int32_t resolvedAction; |
| 560 | int32_t resolvedFlags; |
| 561 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 562 | // For motion events: |
| 563 | // Pointer to the first motion sample to dispatch in this cycle. |
| 564 | // Usually NULL to indicate that the list of motion samples begins at |
| 565 | // MotionEntry::firstSample. Otherwise, some samples were dispatched in a previous |
| 566 | // cycle and this pointer indicates the location of the first remainining sample |
| 567 | // to dispatch during the current cycle. |
| 568 | MotionSample* headMotionSample; |
| 569 | // Pointer to a motion sample to dispatch in the next cycle if the dispatcher was |
| 570 | // unable to send all motion samples during this cycle. On the next cycle, |
| 571 | // headMotionSample will be initialized to tailMotionSample and tailMotionSample |
| 572 | // will be set to NULL. |
| 573 | MotionSample* tailMotionSample; |
Jeff Brown | 6ec402b | 2010-07-28 15:48:59 -0700 | [diff] [blame] | 574 | |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 575 | DispatchEntry(EventEntry* eventEntry, |
| 576 | int32_t targetFlags, float xOffset, float yOffset, float scaleFactor); |
| 577 | ~DispatchEntry(); |
| 578 | |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 579 | inline bool hasForegroundTarget() const { |
| 580 | return targetFlags & InputTarget::FLAG_FOREGROUND; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 581 | } |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 582 | |
| 583 | inline bool isSplit() const { |
| 584 | return targetFlags & InputTarget::FLAG_SPLIT; |
| 585 | } |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 586 | }; |
| 587 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 588 | // A command entry captures state and behavior for an action to be performed in the |
| 589 | // dispatch loop after the initial processing has taken place. It is essentially |
| 590 | // a kind of continuation used to postpone sensitive policy interactions to a point |
| 591 | // in the dispatch loop where it is safe to release the lock (generally after finishing |
| 592 | // the critical parts of the dispatch cycle). |
| 593 | // |
| 594 | // The special thing about commands is that they can voluntarily release and reacquire |
| 595 | // the dispatcher lock at will. Initially when the command starts running, the |
| 596 | // dispatcher lock is held. However, if the command needs to call into the policy to |
| 597 | // do some work, it can release the lock, do the work, then reacquire the lock again |
| 598 | // before returning. |
| 599 | // |
| 600 | // This mechanism is a bit clunky but it helps to preserve the invariant that the dispatch |
| 601 | // never calls into the policy while holding its lock. |
| 602 | // |
| 603 | // Commands are implicitly 'LockedInterruptible'. |
| 604 | struct CommandEntry; |
| 605 | typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry); |
| 606 | |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 607 | class Connection; |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 608 | struct CommandEntry : Link<CommandEntry> { |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 609 | CommandEntry(Command command); |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 610 | ~CommandEntry(); |
| 611 | |
| 612 | Command command; |
| 613 | |
| 614 | // parameters for the command (usage varies by command) |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 615 | sp<Connection> connection; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 616 | nsecs_t eventTime; |
| 617 | KeyEntry* keyEntry; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 618 | sp<InputApplicationHandle> inputApplicationHandle; |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 619 | sp<InputWindowHandle> inputWindowHandle; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 620 | int32_t userActivityEventType; |
Jeff Brown | 3915bb8 | 2010-11-05 15:02:16 -0700 | [diff] [blame] | 621 | bool handled; |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 622 | }; |
| 623 | |
| 624 | // Generic queue implementation. |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 625 | template <typename T> |
| 626 | struct Queue { |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 627 | T* head; |
| 628 | T* tail; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 629 | |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 630 | inline Queue() : head(NULL), tail(NULL) { |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 631 | } |
| 632 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 633 | inline bool isEmpty() const { |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 634 | return !head; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | inline void enqueueAtTail(T* entry) { |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 638 | entry->prev = tail; |
| 639 | if (tail) { |
| 640 | tail->next = entry; |
| 641 | } else { |
| 642 | head = entry; |
| 643 | } |
| 644 | entry->next = NULL; |
| 645 | tail = entry; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | inline void enqueueAtHead(T* entry) { |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 649 | entry->next = head; |
| 650 | if (head) { |
| 651 | head->prev = entry; |
| 652 | } else { |
| 653 | tail = entry; |
| 654 | } |
| 655 | entry->prev = NULL; |
| 656 | head = entry; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | inline void dequeue(T* entry) { |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 660 | if (entry->prev) { |
| 661 | entry->prev->next = entry->next; |
| 662 | } else { |
| 663 | head = entry->next; |
| 664 | } |
| 665 | if (entry->next) { |
| 666 | entry->next->prev = entry->prev; |
| 667 | } else { |
| 668 | tail = entry->prev; |
| 669 | } |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 670 | } |
| 671 | |
| 672 | inline T* dequeueAtHead() { |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 673 | T* entry = head; |
| 674 | head = entry->next; |
| 675 | if (head) { |
| 676 | head->prev = NULL; |
| 677 | } else { |
| 678 | tail = NULL; |
| 679 | } |
| 680 | return entry; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 681 | } |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 682 | |
| 683 | uint32_t count() const; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 684 | }; |
| 685 | |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 686 | /* Specifies which events are to be canceled and why. */ |
| 687 | struct CancelationOptions { |
| 688 | enum Mode { |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 689 | CANCEL_ALL_EVENTS = 0, |
| 690 | CANCEL_POINTER_EVENTS = 1, |
| 691 | CANCEL_NON_POINTER_EVENTS = 2, |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 692 | CANCEL_FALLBACK_EVENTS = 3, |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 693 | }; |
| 694 | |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 695 | // The criterion to use to determine which events should be canceled. |
| 696 | Mode mode; |
| 697 | |
| 698 | // Descriptive reason for the cancelation. |
| 699 | const char* reason; |
| 700 | |
| 701 | // The specific keycode of the key event to cancel, or -1 to cancel any key event. |
| 702 | int32_t keyCode; |
| 703 | |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 704 | // The specific device id of events to cancel, or -1 to cancel events from any device. |
| 705 | int32_t deviceId; |
| 706 | |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 707 | CancelationOptions(Mode mode, const char* reason) : |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 708 | mode(mode), reason(reason), keyCode(-1), deviceId(-1) { } |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 709 | }; |
| 710 | |
| 711 | /* Tracks dispatched key and motion event state so that cancelation events can be |
| 712 | * synthesized when events are dropped. */ |
| 713 | class InputState { |
| 714 | public: |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 715 | InputState(); |
| 716 | ~InputState(); |
| 717 | |
| 718 | // Returns true if there is no state to be canceled. |
| 719 | bool isNeutral() const; |
| 720 | |
Jeff Brown | 8134681 | 2011-06-28 20:08:48 -0700 | [diff] [blame] | 721 | // Returns true if the specified source is known to have received a hover enter |
| 722 | // motion event. |
| 723 | bool isHovering(int32_t deviceId, uint32_t source) const; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 724 | |
| 725 | // Records tracking information for a key event that has just been published. |
Jeff Brown | 8134681 | 2011-06-28 20:08:48 -0700 | [diff] [blame] | 726 | // Returns true if the event should be delivered, false if it is inconsistent |
| 727 | // and should be skipped. |
| 728 | bool trackKey(const KeyEntry* entry, int32_t action, int32_t flags); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 729 | |
| 730 | // Records tracking information for a motion event that has just been published. |
Jeff Brown | 8134681 | 2011-06-28 20:08:48 -0700 | [diff] [blame] | 731 | // Returns true if the event should be delivered, false if it is inconsistent |
| 732 | // and should be skipped. |
| 733 | bool trackMotion(const MotionEntry* entry, int32_t action, int32_t flags); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 734 | |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 735 | // Synthesizes cancelation events for the current state and resets the tracked state. |
Jeff Brown | ac38607 | 2011-07-20 15:19:50 -0700 | [diff] [blame] | 736 | void synthesizeCancelationEvents(nsecs_t currentTime, |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 737 | Vector<EventEntry*>& outEvents, const CancelationOptions& options); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 738 | |
| 739 | // Clears the current state. |
| 740 | void clear(); |
| 741 | |
Jeff Brown | 9c9f1a3 | 2010-10-11 18:32:20 -0700 | [diff] [blame] | 742 | // Copies pointer-related parts of the input state to another instance. |
| 743 | void copyPointerStateTo(InputState& other) const; |
| 744 | |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 745 | // Gets the fallback key associated with a keycode. |
| 746 | // Returns -1 if none. |
| 747 | // Returns AKEYCODE_UNKNOWN if we are only dispatching the unhandled key to the policy. |
| 748 | int32_t getFallbackKey(int32_t originalKeyCode); |
| 749 | |
| 750 | // Sets the fallback key for a particular keycode. |
| 751 | void setFallbackKey(int32_t originalKeyCode, int32_t fallbackKeyCode); |
| 752 | |
| 753 | // Removes the fallback key for a particular keycode. |
| 754 | void removeFallbackKey(int32_t originalKeyCode); |
| 755 | |
| 756 | inline const KeyedVector<int32_t, int32_t>& getFallbackKeys() const { |
| 757 | return mFallbackKeys; |
| 758 | } |
| 759 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 760 | private: |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 761 | struct KeyMemento { |
| 762 | int32_t deviceId; |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 763 | uint32_t source; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 764 | int32_t keyCode; |
| 765 | int32_t scanCode; |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 766 | int32_t flags; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 767 | nsecs_t downTime; |
| 768 | }; |
| 769 | |
| 770 | struct MotionMemento { |
| 771 | int32_t deviceId; |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 772 | uint32_t source; |
Jeff Brown | 8134681 | 2011-06-28 20:08:48 -0700 | [diff] [blame] | 773 | int32_t flags; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 774 | float xPrecision; |
| 775 | float yPrecision; |
| 776 | nsecs_t downTime; |
| 777 | uint32_t pointerCount; |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 778 | PointerProperties pointerProperties[MAX_POINTERS]; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 779 | PointerCoords pointerCoords[MAX_POINTERS]; |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 780 | bool hovering; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 781 | |
| 782 | void setPointers(const MotionEntry* entry); |
| 783 | }; |
| 784 | |
| 785 | Vector<KeyMemento> mKeyMementos; |
| 786 | Vector<MotionMemento> mMotionMementos; |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 787 | KeyedVector<int32_t, int32_t> mFallbackKeys; |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 788 | |
Jeff Brown | 8134681 | 2011-06-28 20:08:48 -0700 | [diff] [blame] | 789 | ssize_t findKeyMemento(const KeyEntry* entry) const; |
| 790 | ssize_t findMotionMemento(const MotionEntry* entry, bool hovering) const; |
| 791 | |
| 792 | void addKeyMemento(const KeyEntry* entry, int32_t flags); |
| 793 | void addMotionMemento(const MotionEntry* entry, int32_t flags, bool hovering); |
| 794 | |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 795 | static bool shouldCancelKey(const KeyMemento& memento, |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 796 | const CancelationOptions& options); |
Jeff Brown | 49ed71d | 2010-12-06 17:13:33 -0800 | [diff] [blame] | 797 | static bool shouldCancelMotion(const MotionMemento& memento, |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 798 | const CancelationOptions& options); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 799 | }; |
| 800 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 801 | /* Manages the dispatch state associated with a single input channel. */ |
| 802 | class Connection : public RefBase { |
| 803 | protected: |
| 804 | virtual ~Connection(); |
| 805 | |
| 806 | public: |
| 807 | enum Status { |
| 808 | // Everything is peachy. |
| 809 | STATUS_NORMAL, |
| 810 | // An unrecoverable communication error has occurred. |
| 811 | STATUS_BROKEN, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 812 | // The input channel has been unregistered. |
| 813 | STATUS_ZOMBIE |
| 814 | }; |
| 815 | |
| 816 | Status status; |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 817 | sp<InputChannel> inputChannel; // never null |
| 818 | sp<InputWindowHandle> inputWindowHandle; // may be null |
Jeff Brown | cc4f7db | 2011-08-30 20:34:48 -0700 | [diff] [blame] | 819 | bool monitor; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 820 | InputPublisher inputPublisher; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 821 | InputState inputState; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 822 | Queue<DispatchEntry> outboundQueue; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 823 | |
| 824 | nsecs_t lastEventTime; // the time when the event was originally captured |
| 825 | nsecs_t lastDispatchTime; // the time when the last event was dispatched |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 826 | |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 827 | explicit Connection(const sp<InputChannel>& inputChannel, |
Jeff Brown | cc4f7db | 2011-08-30 20:34:48 -0700 | [diff] [blame] | 828 | const sp<InputWindowHandle>& inputWindowHandle, bool monitor); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 829 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 830 | inline const char* getInputChannelName() const { return inputChannel->getName().string(); } |
| 831 | |
| 832 | const char* getStatusLabel() const; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 833 | |
| 834 | // Finds a DispatchEntry in the outbound queue associated with the specified event. |
| 835 | // Returns NULL if not found. |
| 836 | DispatchEntry* findQueuedDispatchEntryForEvent(const EventEntry* eventEntry) const; |
| 837 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 838 | // Gets the time since the current event was originally obtained from the input driver. |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 839 | inline double getEventLatencyMillis(nsecs_t currentTime) const { |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 840 | return (currentTime - lastEventTime) / 1000000.0; |
| 841 | } |
| 842 | |
| 843 | // Gets the time since the current event entered the outbound dispatch queue. |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 844 | inline double getDispatchLatencyMillis(nsecs_t currentTime) const { |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 845 | return (currentTime - lastDispatchTime) / 1000000.0; |
| 846 | } |
| 847 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 848 | status_t initialize(); |
| 849 | }; |
| 850 | |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 851 | enum DropReason { |
| 852 | DROP_REASON_NOT_DROPPED = 0, |
| 853 | DROP_REASON_POLICY = 1, |
| 854 | DROP_REASON_APP_SWITCH = 2, |
| 855 | DROP_REASON_DISABLED = 3, |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 856 | DROP_REASON_BLOCKED = 4, |
| 857 | DROP_REASON_STALE = 5, |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 858 | }; |
| 859 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 860 | sp<InputDispatcherPolicyInterface> mPolicy; |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 861 | InputDispatcherConfiguration mConfig; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 862 | |
| 863 | Mutex mLock; |
| 864 | |
Jeff Brown | 4fe6c3e | 2010-09-13 23:17:30 -0700 | [diff] [blame] | 865 | sp<Looper> mLooper; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 866 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 867 | EventEntry* mPendingEvent; |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 868 | Queue<EventEntry> mInboundQueue; |
| 869 | Queue<CommandEntry> mCommandQueue; |
| 870 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 871 | Vector<EventEntry*> mTempCancelationEvents; |
| 872 | |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 873 | void dispatchOnceInnerLocked(nsecs_t* nextWakeupTime); |
Jeff Brown | cc4f7db | 2011-08-30 20:34:48 -0700 | [diff] [blame] | 874 | void dispatchIdleLocked(); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 875 | |
Jeff Brown | 4e91a18 | 2011-04-07 11:38:09 -0700 | [diff] [blame] | 876 | // Batches a new sample onto a motion entry. |
| 877 | // Assumes that the we have already checked that we can append samples. |
| 878 | void batchMotionLocked(MotionEntry* entry, nsecs_t eventTime, int32_t metaState, |
| 879 | const PointerCoords* pointerCoords, const char* eventDescription); |
| 880 | |
Jeff Brown | 4fe6c3e | 2010-09-13 23:17:30 -0700 | [diff] [blame] | 881 | // Enqueues an inbound event. Returns true if mLooper->wake() should be called. |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 882 | bool enqueueInboundEventLocked(EventEntry* entry); |
| 883 | |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 884 | // Cleans up input state when dropping an inbound event. |
| 885 | void dropInboundEventLocked(EventEntry* entry, DropReason dropReason); |
| 886 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 887 | // App switch latency optimization. |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 888 | bool mAppSwitchSawKeyDown; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 889 | nsecs_t mAppSwitchDueTime; |
| 890 | |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 891 | static bool isAppSwitchKeyCode(int32_t keyCode); |
| 892 | bool isAppSwitchKeyEventLocked(KeyEntry* keyEntry); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 893 | bool isAppSwitchPendingLocked(); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 894 | void resetPendingAppSwitchLocked(bool handled); |
| 895 | |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 896 | // Stale event latency optimization. |
| 897 | static bool isStaleEventLocked(nsecs_t currentTime, EventEntry* entry); |
| 898 | |
| 899 | // Blocked event latency optimization. Drops old events when the user intends |
| 900 | // to transfer focus to a new application. |
| 901 | EventEntry* mNextUnblockedEvent; |
| 902 | |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 903 | sp<InputWindowHandle> findTouchedWindowAtLocked(int32_t x, int32_t y); |
Jeff Brown | 928e054 | 2011-01-10 11:17:36 -0800 | [diff] [blame] | 904 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 905 | // All registered connections mapped by receive pipe file descriptor. |
| 906 | KeyedVector<int, sp<Connection> > mConnectionsByReceiveFd; |
| 907 | |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 908 | ssize_t getConnectionIndexLocked(const sp<InputChannel>& inputChannel); |
Jeff Brown | 2cbecea | 2010-08-17 15:59:26 -0700 | [diff] [blame] | 909 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 910 | // Active connections are connections that have a non-empty outbound queue. |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 911 | // We don't use a ref-counted pointer here because we explicitly abort connections |
| 912 | // during unregistration which causes the connection's outbound queue to be cleared |
| 913 | // and the connection itself to be deactivated. |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 914 | Vector<Connection*> mActiveConnections; |
| 915 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 916 | // Input channels that will receive a copy of all input events. |
| 917 | Vector<sp<InputChannel> > mMonitoringChannels; |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 918 | |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 919 | // Event injection and synchronization. |
| 920 | Condition mInjectionResultAvailableCondition; |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 921 | bool hasInjectionPermission(int32_t injectorPid, int32_t injectorUid); |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 922 | void setInjectionResultLocked(EventEntry* entry, int32_t injectionResult); |
| 923 | |
Jeff Brown | 6ec402b | 2010-07-28 15:48:59 -0700 | [diff] [blame] | 924 | Condition mInjectionSyncFinishedCondition; |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 925 | void incrementPendingForegroundDispatchesLocked(EventEntry* entry); |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 926 | void decrementPendingForegroundDispatchesLocked(EventEntry* entry); |
Jeff Brown | 6ec402b | 2010-07-28 15:48:59 -0700 | [diff] [blame] | 927 | |
Jeff Brown | ae9fc03 | 2010-08-18 15:51:08 -0700 | [diff] [blame] | 928 | // Throttling state. |
| 929 | struct ThrottleState { |
| 930 | nsecs_t minTimeBetweenEvents; |
| 931 | |
| 932 | nsecs_t lastEventTime; |
| 933 | int32_t lastDeviceId; |
| 934 | uint32_t lastSource; |
| 935 | |
| 936 | uint32_t originalSampleCount; // only collected during debugging |
| 937 | } mThrottleState; |
| 938 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 939 | // Key repeat tracking. |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 940 | struct KeyRepeatState { |
| 941 | KeyEntry* lastKeyEntry; // or null if no repeat |
| 942 | nsecs_t nextRepeatTime; |
| 943 | } mKeyRepeatState; |
| 944 | |
| 945 | void resetKeyRepeatLocked(); |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 946 | KeyEntry* synthesizeKeyRepeatLocked(nsecs_t currentTime); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 947 | |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 948 | // Deferred command processing. |
| 949 | bool runCommandsLockedInterruptible(); |
| 950 | CommandEntry* postCommandLocked(Command command); |
| 951 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 952 | // Inbound event processing. |
| 953 | void drainInboundQueueLocked(); |
Jeff Brown | 54a1825 | 2010-09-16 14:07:33 -0700 | [diff] [blame] | 954 | void releasePendingEventLocked(); |
| 955 | void releaseInboundEventLocked(EventEntry* entry); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 956 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 957 | // Dispatch state. |
| 958 | bool mDispatchEnabled; |
| 959 | bool mDispatchFrozen; |
Jeff Brown | 0029c66 | 2011-03-30 02:25:18 -0700 | [diff] [blame] | 960 | bool mInputFilterEnabled; |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 961 | |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 962 | Vector<sp<InputWindowHandle> > mWindowHandles; |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 963 | |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 964 | sp<InputWindowHandle> getWindowHandleLocked(const sp<InputChannel>& inputChannel) const; |
| 965 | bool hasWindowHandleLocked(const sp<InputWindowHandle>& windowHandle) const; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 966 | |
| 967 | // Focus tracking for keys, trackball, etc. |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 968 | sp<InputWindowHandle> mFocusedWindowHandle; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 969 | |
| 970 | // Focus tracking for touch. |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 971 | struct TouchedWindow { |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 972 | sp<InputWindowHandle> windowHandle; |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 973 | int32_t targetFlags; |
Jeff Brown | 46e7529 | 2010-11-10 16:53:45 -0800 | [diff] [blame] | 974 | BitSet32 pointerIds; // zero unless target flag FLAG_SPLIT is set |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 975 | }; |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 976 | struct TouchState { |
| 977 | bool down; |
| 978 | bool split; |
Jeff Brown | 9571285 | 2011-01-04 19:41:59 -0800 | [diff] [blame] | 979 | int32_t deviceId; // id of the device that is currently down, others are rejected |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 980 | uint32_t source; // source of the device that is current down, others are rejected |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 981 | Vector<TouchedWindow> windows; |
| 982 | |
| 983 | TouchState(); |
| 984 | ~TouchState(); |
| 985 | void reset(); |
| 986 | void copyFrom(const TouchState& other); |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 987 | void addOrUpdateWindow(const sp<InputWindowHandle>& windowHandle, |
| 988 | int32_t targetFlags, BitSet32 pointerIds); |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 989 | void filterNonAsIsTouchWindows(); |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 990 | sp<InputWindowHandle> getFirstForegroundWindowHandle() const; |
Jeff Brown | 98db5fa | 2011-06-08 15:37:10 -0700 | [diff] [blame] | 991 | bool isSlippery() const; |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 992 | }; |
| 993 | |
| 994 | TouchState mTouchState; |
| 995 | TouchState mTempTouchState; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 996 | |
| 997 | // Focused application. |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 998 | sp<InputApplicationHandle> mFocusedApplicationHandle; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 999 | |
| 1000 | // Dispatch inbound events. |
| 1001 | bool dispatchConfigurationChangedLocked( |
| 1002 | nsecs_t currentTime, ConfigurationChangedEntry* entry); |
Jeff Brown | 65fd251 | 2011-08-18 11:20:58 -0700 | [diff] [blame] | 1003 | bool dispatchDeviceResetLocked( |
| 1004 | nsecs_t currentTime, DeviceResetEntry* entry); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1005 | bool dispatchKeyLocked( |
Jeff Brown | 214eaf4 | 2011-05-26 19:17:02 -0700 | [diff] [blame] | 1006 | nsecs_t currentTime, KeyEntry* entry, |
Jeff Brown | e20c9e0 | 2010-10-11 14:20:19 -0700 | [diff] [blame] | 1007 | DropReason* dropReason, nsecs_t* nextWakeupTime); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1008 | bool dispatchMotionLocked( |
| 1009 | nsecs_t currentTime, MotionEntry* entry, |
Jeff Brown | e20c9e0 | 2010-10-11 14:20:19 -0700 | [diff] [blame] | 1010 | DropReason* dropReason, nsecs_t* nextWakeupTime); |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 1011 | void dispatchEventToCurrentInputTargetsLocked( |
| 1012 | nsecs_t currentTime, EventEntry* entry, bool resumeWithAppendedMotionSample); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1013 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1014 | void logOutboundKeyDetailsLocked(const char* prefix, const KeyEntry* entry); |
| 1015 | void logOutboundMotionDetailsLocked(const char* prefix, const MotionEntry* entry); |
| 1016 | |
| 1017 | // The input targets that were most recently identified for dispatch. |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1018 | bool mCurrentInputTargetsValid; // false while targets are being recomputed |
| 1019 | Vector<InputTarget> mCurrentInputTargets; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1020 | |
| 1021 | enum InputTargetWaitCause { |
| 1022 | INPUT_TARGET_WAIT_CAUSE_NONE, |
| 1023 | INPUT_TARGET_WAIT_CAUSE_SYSTEM_NOT_READY, |
| 1024 | INPUT_TARGET_WAIT_CAUSE_APPLICATION_NOT_READY, |
| 1025 | }; |
| 1026 | |
| 1027 | InputTargetWaitCause mInputTargetWaitCause; |
| 1028 | nsecs_t mInputTargetWaitStartTime; |
| 1029 | nsecs_t mInputTargetWaitTimeoutTime; |
| 1030 | bool mInputTargetWaitTimeoutExpired; |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 1031 | sp<InputApplicationHandle> mInputTargetWaitApplicationHandle; |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1032 | |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 1033 | // Contains the last window which received a hover event. |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 1034 | sp<InputWindowHandle> mLastHoverWindowHandle; |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 1035 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1036 | // Finding targets for input events. |
Jeff Brown | 54a1825 | 2010-09-16 14:07:33 -0700 | [diff] [blame] | 1037 | void resetTargetsLocked(); |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 1038 | void commitTargetsLocked(); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1039 | int32_t handleTargetsNotReadyLocked(nsecs_t currentTime, const EventEntry* entry, |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 1040 | const sp<InputApplicationHandle>& applicationHandle, |
| 1041 | const sp<InputWindowHandle>& windowHandle, |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1042 | nsecs_t* nextWakeupTime); |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 1043 | void resumeAfterTargetsNotReadyTimeoutLocked(nsecs_t newTimeout, |
| 1044 | const sp<InputChannel>& inputChannel); |
| 1045 | nsecs_t getTimeSpentWaitingForApplicationLocked(nsecs_t currentTime); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1046 | void resetANRTimeoutsLocked(); |
| 1047 | |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 1048 | int32_t findFocusedWindowTargetsLocked(nsecs_t currentTime, const EventEntry* entry, |
| 1049 | nsecs_t* nextWakeupTime); |
| 1050 | int32_t findTouchedWindowTargetsLocked(nsecs_t currentTime, const MotionEntry* entry, |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 1051 | nsecs_t* nextWakeupTime, bool* outConflictingPointerActions, |
| 1052 | const MotionSample** outSplitBatchAfterSample); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1053 | |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 1054 | void addWindowTargetLocked(const sp<InputWindowHandle>& windowHandle, |
| 1055 | int32_t targetFlags, BitSet32 pointerIds); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1056 | void addMonitoringTargetsLocked(); |
Jeff Brown | e2fe69e | 2010-10-18 13:21:23 -0700 | [diff] [blame] | 1057 | void pokeUserActivityLocked(const EventEntry* eventEntry); |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 1058 | bool checkInjectionPermission(const sp<InputWindowHandle>& windowHandle, |
| 1059 | const InjectionState* injectionState); |
| 1060 | bool isWindowObscuredAtPointLocked(const sp<InputWindowHandle>& windowHandle, |
| 1061 | int32_t x, int32_t y) const; |
| 1062 | bool isWindowFinishedWithPreviousInputLocked(const sp<InputWindowHandle>& windowHandle); |
| 1063 | String8 getApplicationWindowLabelLocked(const sp<InputApplicationHandle>& applicationHandle, |
| 1064 | const sp<InputWindowHandle>& windowHandle); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1065 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1066 | // Manage the dispatch cycle for a single connection. |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 1067 | // These methods are deliberately not Interruptible because doing all of the work |
| 1068 | // with the mutex held makes it easier to ensure that connection invariants are maintained. |
| 1069 | // If needed, the methods post commands to run later once the critical bits are done. |
| 1070 | void prepareDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection, |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1071 | EventEntry* eventEntry, const InputTarget* inputTarget, |
| 1072 | bool resumeWithAppendedMotionSample); |
Jeff Brown | c0cb3dc | 2012-01-12 18:30:12 -0800 | [diff] [blame^] | 1073 | void enqueueDispatchEntriesLocked(nsecs_t currentTime, const sp<Connection>& connection, |
| 1074 | EventEntry* eventEntry, const InputTarget* inputTarget, |
| 1075 | bool resumeWithAppendedMotionSample); |
Jeff Brown | a032cc0 | 2011-03-07 16:56:21 -0800 | [diff] [blame] | 1076 | void enqueueDispatchEntryLocked(const sp<Connection>& connection, |
| 1077 | EventEntry* eventEntry, const InputTarget* inputTarget, |
| 1078 | bool resumeWithAppendedMotionSample, int32_t dispatchMode); |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 1079 | void startDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection); |
Jeff Brown | 3915bb8 | 2010-11-05 15:02:16 -0700 | [diff] [blame] | 1080 | void finishDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection, |
| 1081 | bool handled); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1082 | void startNextDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection); |
Jeff Brown | cc4f7db | 2011-08-30 20:34:48 -0700 | [diff] [blame] | 1083 | void abortBrokenDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection, |
| 1084 | bool notify); |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 1085 | void drainOutboundQueueLocked(Connection* connection); |
Jeff Brown | 4fe6c3e | 2010-09-13 23:17:30 -0700 | [diff] [blame] | 1086 | static int handleReceiveCallback(int receiveFd, int events, void* data); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1087 | |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 1088 | void synthesizeCancelationEventsForAllConnectionsLocked( |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 1089 | const CancelationOptions& options); |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 1090 | void synthesizeCancelationEventsForInputChannelLocked(const sp<InputChannel>& channel, |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 1091 | const CancelationOptions& options); |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 1092 | void synthesizeCancelationEventsForConnectionLocked(const sp<Connection>& connection, |
Jeff Brown | da3d5a9 | 2011-03-29 15:11:34 -0700 | [diff] [blame] | 1093 | const CancelationOptions& options); |
Jeff Brown | b699726 | 2010-10-08 22:31:17 -0700 | [diff] [blame] | 1094 | |
Jeff Brown | 01ce2e9 | 2010-09-26 22:20:12 -0700 | [diff] [blame] | 1095 | // Splitting motion events across windows. |
| 1096 | MotionEntry* splitMotionEvent(const MotionEntry* originalMotionEntry, BitSet32 pointerIds); |
| 1097 | |
Jeff Brown | 120a459 | 2010-10-27 18:43:51 -0700 | [diff] [blame] | 1098 | // Reset and drop everything the dispatcher is doing. |
| 1099 | void resetAndDropEverythingLocked(const char* reason); |
| 1100 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1101 | // Dump state. |
| 1102 | void dumpDispatchStateLocked(String8& dump); |
| 1103 | void logDispatchStateLocked(); |
| 1104 | |
Jeff Brown | cc4f7db | 2011-08-30 20:34:48 -0700 | [diff] [blame] | 1105 | // Registration. |
| 1106 | void removeMonitorChannelLocked(const sp<InputChannel>& inputChannel); |
| 1107 | status_t unregisterInputChannelLocked(const sp<InputChannel>& inputChannel, bool notify); |
| 1108 | |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1109 | // Add or remove a connection to the mActiveConnections vector. |
| 1110 | void activateConnectionLocked(Connection* connection); |
| 1111 | void deactivateConnectionLocked(Connection* connection); |
| 1112 | |
| 1113 | // Interesting events that we might like to log or tell the framework about. |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 1114 | void onDispatchCycleStartedLocked( |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 1115 | nsecs_t currentTime, const sp<Connection>& connection); |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 1116 | void onDispatchCycleFinishedLocked( |
Jeff Brown | 3915bb8 | 2010-11-05 15:02:16 -0700 | [diff] [blame] | 1117 | nsecs_t currentTime, const sp<Connection>& connection, bool handled); |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 1118 | void onDispatchCycleBrokenLocked( |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 1119 | nsecs_t currentTime, const sp<Connection>& connection); |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 1120 | void onANRLocked( |
Jeff Brown | 9302c87 | 2011-07-13 22:51:29 -0700 | [diff] [blame] | 1121 | nsecs_t currentTime, const sp<InputApplicationHandle>& applicationHandle, |
| 1122 | const sp<InputWindowHandle>& windowHandle, |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 1123 | nsecs_t eventTime, nsecs_t waitStartTime); |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 1124 | |
Jeff Brown | 7fbdc84 | 2010-06-17 20:52:56 -0700 | [diff] [blame] | 1125 | // Outbound policy interactions. |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1126 | void doNotifyConfigurationChangedInterruptible(CommandEntry* commandEntry); |
Jeff Brown | 9c3cda0 | 2010-06-15 01:31:58 -0700 | [diff] [blame] | 1127 | void doNotifyInputChannelBrokenLockedInterruptible(CommandEntry* commandEntry); |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 1128 | void doNotifyANRLockedInterruptible(CommandEntry* commandEntry); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1129 | void doInterceptKeyBeforeDispatchingLockedInterruptible(CommandEntry* commandEntry); |
Jeff Brown | 3915bb8 | 2010-11-05 15:02:16 -0700 | [diff] [blame] | 1130 | void doDispatchCycleFinishedLockedInterruptible(CommandEntry* commandEntry); |
Jeff Brown | fe9f8ab | 2011-05-06 18:20:01 -0700 | [diff] [blame] | 1131 | bool afterKeyEventLockedInterruptible(const sp<Connection>& connection, |
| 1132 | DispatchEntry* dispatchEntry, KeyEntry* keyEntry, bool handled); |
| 1133 | bool afterMotionEventLockedInterruptible(const sp<Connection>& connection, |
| 1134 | DispatchEntry* dispatchEntry, MotionEntry* motionEntry, bool handled); |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1135 | void doPokeUserActivityLockedInterruptible(CommandEntry* commandEntry); |
Jeff Brown | 3915bb8 | 2010-11-05 15:02:16 -0700 | [diff] [blame] | 1136 | void initializeKeyEvent(KeyEvent* event, const KeyEntry* entry); |
Jeff Brown | 519e024 | 2010-09-15 15:18:56 -0700 | [diff] [blame] | 1137 | |
| 1138 | // Statistics gathering. |
| 1139 | void updateDispatchStatisticsLocked(nsecs_t currentTime, const EventEntry* entry, |
| 1140 | int32_t injectionResult, nsecs_t timeSpentWaitingForApplication); |
Jeff Brown | 46b9ac0a | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1141 | }; |
| 1142 | |
| 1143 | /* Enqueues and dispatches input events, endlessly. */ |
| 1144 | class InputDispatcherThread : public Thread { |
| 1145 | public: |
| 1146 | explicit InputDispatcherThread(const sp<InputDispatcherInterface>& dispatcher); |
| 1147 | ~InputDispatcherThread(); |
| 1148 | |
| 1149 | private: |
| 1150 | virtual bool threadLoop(); |
| 1151 | |
| 1152 | sp<InputDispatcherInterface> mDispatcher; |
| 1153 | }; |
| 1154 | |
| 1155 | } // namespace android |
| 1156 | |
Jeff Brown | b88102f | 2010-09-08 11:49:43 -0700 | [diff] [blame] | 1157 | #endif // _UI_INPUT_DISPATCHER_H |