Jeff Brown | b4ff35d | 2011-01-02 16:37:43 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005 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 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 17 | #define LOG_TAG "EventHub" |
| 18 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 19 | // #define LOG_NDEBUG 0 |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 | |
Jeff Brown | b4ff35d | 2011-01-02 16:37:43 -0800 | [diff] [blame] | 21 | #include "EventHub.h" |
| 22 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | #include <hardware_legacy/power.h> |
| 24 | |
| 25 | #include <cutils/properties.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | #include <utils/Log.h> |
| 27 | #include <utils/Timers.h> |
Mathias Agopian | 3b4062e | 2009-05-31 19:13:00 -0700 | [diff] [blame] | 28 | #include <utils/threads.h> |
Mathias Agopian | 3b4062e | 2009-05-31 19:13:00 -0700 | [diff] [blame] | 29 | #include <utils/Errors.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 30 | |
| 31 | #include <stdlib.h> |
| 32 | #include <stdio.h> |
| 33 | #include <unistd.h> |
| 34 | #include <fcntl.h> |
| 35 | #include <memory.h> |
| 36 | #include <errno.h> |
| 37 | #include <assert.h> |
| 38 | |
Jeff Brown | 6b53e8d | 2010-11-10 16:03:06 -0800 | [diff] [blame] | 39 | #include <ui/KeyLayoutMap.h> |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 40 | #include <ui/KeyCharacterMap.h> |
| 41 | #include <ui/VirtualKeyMap.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 42 | |
| 43 | #include <string.h> |
| 44 | #include <stdint.h> |
| 45 | #include <dirent.h> |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 46 | |
| 47 | #include <sys/inotify.h> |
| 48 | #include <sys/epoll.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 49 | #include <sys/ioctl.h> |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 50 | #include <sys/limits.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 51 | |
| 52 | /* this macro is used to tell if "bit" is set in "array" |
| 53 | * it selects a byte from the array, and does a boolean AND |
| 54 | * operation with a byte that only has the relevant bit set. |
| 55 | * eg. to check for the 12th bit, we do (array[1] & 1<<4) |
| 56 | */ |
| 57 | #define test_bit(bit, array) (array[bit/8] & (1<<(bit%8))) |
| 58 | |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 59 | /* this macro computes the number of bytes needed to represent a bit array of the specified size */ |
| 60 | #define sizeof_bit_array(bits) ((bits + 7) / 8) |
| 61 | |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 62 | #define INDENT " " |
| 63 | #define INDENT2 " " |
| 64 | #define INDENT3 " " |
| 65 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 66 | namespace android { |
| 67 | |
| 68 | static const char *WAKE_LOCK_ID = "KeyEvents"; |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 69 | static const char *DEVICE_PATH = "/dev/input"; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 70 | |
| 71 | /* return the larger integer */ |
| 72 | static inline int max(int v1, int v2) |
| 73 | { |
| 74 | return (v1 > v2) ? v1 : v2; |
| 75 | } |
| 76 | |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 77 | static inline const char* toString(bool value) { |
| 78 | return value ? "true" : "false"; |
| 79 | } |
| 80 | |
Jeff Brown | 9ee285a | 2011-08-31 12:56:34 -0700 | [diff] [blame] | 81 | // --- Global Functions --- |
| 82 | |
| 83 | uint32_t getAbsAxisUsage(int32_t axis, uint32_t deviceClasses) { |
| 84 | // Touch devices get dibs on touch-related axes. |
| 85 | if (deviceClasses & INPUT_DEVICE_CLASS_TOUCH) { |
| 86 | switch (axis) { |
| 87 | case ABS_X: |
| 88 | case ABS_Y: |
| 89 | case ABS_PRESSURE: |
| 90 | case ABS_TOOL_WIDTH: |
| 91 | case ABS_DISTANCE: |
| 92 | case ABS_TILT_X: |
| 93 | case ABS_TILT_Y: |
| 94 | case ABS_MT_SLOT: |
| 95 | case ABS_MT_TOUCH_MAJOR: |
| 96 | case ABS_MT_TOUCH_MINOR: |
| 97 | case ABS_MT_WIDTH_MAJOR: |
| 98 | case ABS_MT_WIDTH_MINOR: |
| 99 | case ABS_MT_ORIENTATION: |
| 100 | case ABS_MT_POSITION_X: |
| 101 | case ABS_MT_POSITION_Y: |
| 102 | case ABS_MT_TOOL_TYPE: |
| 103 | case ABS_MT_BLOB_ID: |
| 104 | case ABS_MT_TRACKING_ID: |
| 105 | case ABS_MT_PRESSURE: |
| 106 | case ABS_MT_DISTANCE: |
| 107 | return INPUT_DEVICE_CLASS_TOUCH; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | // Joystick devices get the rest. |
| 112 | return deviceClasses & INPUT_DEVICE_CLASS_JOYSTICK; |
| 113 | } |
| 114 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 115 | // --- EventHub::Device --- |
| 116 | |
| 117 | EventHub::Device::Device(int fd, int32_t id, const String8& path, |
| 118 | const InputDeviceIdentifier& identifier) : |
| 119 | next(NULL), |
| 120 | fd(fd), id(id), path(path), identifier(identifier), |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 121 | classes(0), configuration(NULL), virtualKeyMap(NULL) { |
| 122 | memset(keyBitmask, 0, sizeof(keyBitmask)); |
| 123 | memset(absBitmask, 0, sizeof(absBitmask)); |
| 124 | memset(relBitmask, 0, sizeof(relBitmask)); |
| 125 | memset(swBitmask, 0, sizeof(swBitmask)); |
| 126 | memset(ledBitmask, 0, sizeof(ledBitmask)); |
| 127 | memset(propBitmask, 0, sizeof(propBitmask)); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 128 | } |
| 129 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 130 | EventHub::Device::~Device() { |
| 131 | close(); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 132 | delete configuration; |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 133 | delete virtualKeyMap; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 134 | } |
| 135 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 136 | void EventHub::Device::close() { |
| 137 | if (fd >= 0) { |
| 138 | ::close(fd); |
| 139 | fd = -1; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | |
| 144 | // --- EventHub --- |
| 145 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 146 | const uint32_t EventHub::EPOLL_ID_INOTIFY; |
| 147 | const uint32_t EventHub::EPOLL_ID_WAKE; |
| 148 | const int EventHub::EPOLL_SIZE_HINT; |
| 149 | const int EventHub::EPOLL_MAX_EVENTS; |
| 150 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 151 | EventHub::EventHub(void) : |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 152 | mBuiltInKeyboardId(-1), mNextDeviceId(1), |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 153 | mOpeningDevices(0), mClosingDevices(0), |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 154 | mNeedToSendFinishedDeviceScan(false), |
| 155 | mNeedToReopenDevices(false), mNeedToScanDevices(true), |
| 156 | mPendingEventCount(0), mPendingEventIndex(0), mPendingINotify(false) { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 157 | acquire_wake_lock(PARTIAL_WAKE_LOCK, WAKE_LOCK_ID); |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 158 | |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 159 | mNumCpus = sysconf(_SC_NPROCESSORS_ONLN); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 160 | |
| 161 | mEpollFd = epoll_create(EPOLL_SIZE_HINT); |
| 162 | LOG_ALWAYS_FATAL_IF(mEpollFd < 0, "Could not create epoll instance. errno=%d", errno); |
| 163 | |
| 164 | mINotifyFd = inotify_init(); |
| 165 | int result = inotify_add_watch(mINotifyFd, DEVICE_PATH, IN_DELETE | IN_CREATE); |
| 166 | LOG_ALWAYS_FATAL_IF(result < 0, "Could not register INotify for %s. errno=%d", |
| 167 | DEVICE_PATH, errno); |
| 168 | |
| 169 | struct epoll_event eventItem; |
| 170 | memset(&eventItem, 0, sizeof(eventItem)); |
| 171 | eventItem.events = EPOLLIN; |
| 172 | eventItem.data.u32 = EPOLL_ID_INOTIFY; |
| 173 | result = epoll_ctl(mEpollFd, EPOLL_CTL_ADD, mINotifyFd, &eventItem); |
| 174 | LOG_ALWAYS_FATAL_IF(result != 0, "Could not add INotify to epoll instance. errno=%d", errno); |
| 175 | |
| 176 | int wakeFds[2]; |
| 177 | result = pipe(wakeFds); |
| 178 | LOG_ALWAYS_FATAL_IF(result != 0, "Could not create wake pipe. errno=%d", errno); |
| 179 | |
| 180 | mWakeReadPipeFd = wakeFds[0]; |
| 181 | mWakeWritePipeFd = wakeFds[1]; |
| 182 | |
| 183 | result = fcntl(mWakeReadPipeFd, F_SETFL, O_NONBLOCK); |
| 184 | LOG_ALWAYS_FATAL_IF(result != 0, "Could not make wake read pipe non-blocking. errno=%d", |
| 185 | errno); |
| 186 | |
| 187 | result = fcntl(mWakeWritePipeFd, F_SETFL, O_NONBLOCK); |
| 188 | LOG_ALWAYS_FATAL_IF(result != 0, "Could not make wake write pipe non-blocking. errno=%d", |
| 189 | errno); |
| 190 | |
| 191 | eventItem.data.u32 = EPOLL_ID_WAKE; |
| 192 | result = epoll_ctl(mEpollFd, EPOLL_CTL_ADD, mWakeReadPipeFd, &eventItem); |
| 193 | LOG_ALWAYS_FATAL_IF(result != 0, "Could not add wake read pipe to epoll instance. errno=%d", |
| 194 | errno); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 195 | } |
| 196 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 197 | EventHub::~EventHub(void) { |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 198 | closeAllDevicesLocked(); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 199 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 200 | while (mClosingDevices) { |
| 201 | Device* device = mClosingDevices; |
| 202 | mClosingDevices = device->next; |
| 203 | delete device; |
| 204 | } |
| 205 | |
| 206 | ::close(mEpollFd); |
| 207 | ::close(mINotifyFd); |
| 208 | ::close(mWakeReadPipeFd); |
| 209 | ::close(mWakeWritePipeFd); |
| 210 | |
| 211 | release_wake_lock(WAKE_LOCK_ID); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 212 | } |
| 213 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 214 | String8 EventHub::getDeviceName(int32_t deviceId) const { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 215 | AutoMutex _l(mLock); |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 216 | Device* device = getDeviceLocked(deviceId); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 217 | if (device == NULL) return String8(); |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 218 | return device->identifier.name; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 219 | } |
| 220 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 221 | uint32_t EventHub::getDeviceClasses(int32_t deviceId) const { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 222 | AutoMutex _l(mLock); |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 223 | Device* device = getDeviceLocked(deviceId); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 224 | if (device == NULL) return 0; |
| 225 | return device->classes; |
| 226 | } |
| 227 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 228 | void EventHub::getConfiguration(int32_t deviceId, PropertyMap* outConfiguration) const { |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 229 | AutoMutex _l(mLock); |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 230 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 231 | if (device && device->configuration) { |
| 232 | *outConfiguration = *device->configuration; |
Jeff Brown | 1f24510 | 2010-11-18 20:53:46 -0800 | [diff] [blame] | 233 | } else { |
| 234 | outConfiguration->clear(); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 238 | status_t EventHub::getAbsoluteAxisInfo(int32_t deviceId, int axis, |
| 239 | RawAbsoluteAxisInfo* outAxisInfo) const { |
Jeff Brown | 8d60866 | 2010-08-30 03:02:23 -0700 | [diff] [blame] | 240 | outAxisInfo->clear(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 241 | |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 242 | if (axis >= 0 && axis <= ABS_MAX) { |
| 243 | AutoMutex _l(mLock); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 244 | |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 245 | Device* device = getDeviceLocked(deviceId); |
| 246 | if (device && test_bit(axis, device->absBitmask)) { |
| 247 | struct input_absinfo info; |
| 248 | if(ioctl(device->fd, EVIOCGABS(axis), &info)) { |
| 249 | LOGW("Error reading absolute controller %d for device %s fd %d, errno=%d", |
| 250 | axis, device->identifier.name.string(), device->fd, errno); |
| 251 | return -errno; |
| 252 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 253 | |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 254 | if (info.minimum != info.maximum) { |
| 255 | outAxisInfo->valid = true; |
| 256 | outAxisInfo->minValue = info.minimum; |
| 257 | outAxisInfo->maxValue = info.maximum; |
| 258 | outAxisInfo->flat = info.flat; |
| 259 | outAxisInfo->fuzz = info.fuzz; |
| 260 | outAxisInfo->resolution = info.resolution; |
| 261 | } |
| 262 | return OK; |
| 263 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 264 | } |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 265 | return -1; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 266 | } |
| 267 | |
Jeff Brown | cc0c159 | 2011-02-19 05:07:28 -0800 | [diff] [blame] | 268 | bool EventHub::hasRelativeAxis(int32_t deviceId, int axis) const { |
| 269 | if (axis >= 0 && axis <= REL_MAX) { |
| 270 | AutoMutex _l(mLock); |
| 271 | |
| 272 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 273 | if (device) { |
Jeff Brown | cc0c159 | 2011-02-19 05:07:28 -0800 | [diff] [blame] | 274 | return test_bit(axis, device->relBitmask); |
| 275 | } |
| 276 | } |
| 277 | return false; |
| 278 | } |
| 279 | |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 280 | bool EventHub::hasInputProperty(int32_t deviceId, int property) const { |
| 281 | if (property >= 0 && property <= INPUT_PROP_MAX) { |
| 282 | AutoMutex _l(mLock); |
| 283 | |
| 284 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 285 | if (device) { |
Jeff Brown | 80fd47c | 2011-05-24 01:07:44 -0700 | [diff] [blame] | 286 | return test_bit(property, device->propBitmask); |
| 287 | } |
| 288 | } |
| 289 | return false; |
| 290 | } |
| 291 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 292 | int32_t EventHub::getScanCodeState(int32_t deviceId, int32_t scanCode) const { |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 293 | if (scanCode >= 0 && scanCode <= KEY_MAX) { |
| 294 | AutoMutex _l(mLock); |
| 295 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 296 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 297 | if (device && test_bit(scanCode, device->keyBitmask)) { |
| 298 | uint8_t keyState[sizeof_bit_array(KEY_MAX + 1)]; |
| 299 | memset(keyState, 0, sizeof(keyState)); |
| 300 | if (ioctl(device->fd, EVIOCGKEY(sizeof(keyState)), keyState) >= 0) { |
| 301 | return test_bit(scanCode, keyState) ? AKEY_STATE_DOWN : AKEY_STATE_UP; |
| 302 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 303 | } |
| 304 | } |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 305 | return AKEY_STATE_UNKNOWN; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 306 | } |
| 307 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 308 | int32_t EventHub::getKeyCodeState(int32_t deviceId, int32_t keyCode) const { |
| 309 | AutoMutex _l(mLock); |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 310 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 311 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 312 | if (device && device->keyMap.haveKeyLayout()) { |
| 313 | Vector<int32_t> scanCodes; |
| 314 | device->keyMap.keyLayoutMap->findScanCodesForKey(keyCode, &scanCodes); |
| 315 | if (scanCodes.size() != 0) { |
| 316 | uint8_t keyState[sizeof_bit_array(KEY_MAX + 1)]; |
| 317 | memset(keyState, 0, sizeof(keyState)); |
| 318 | if (ioctl(device->fd, EVIOCGKEY(sizeof(keyState)), keyState) >= 0) { |
| 319 | for (size_t i = 0; i < scanCodes.size(); i++) { |
| 320 | int32_t sc = scanCodes.itemAt(i); |
| 321 | if (sc >= 0 && sc <= KEY_MAX && test_bit(sc, keyState)) { |
| 322 | return AKEY_STATE_DOWN; |
| 323 | } |
| 324 | } |
| 325 | return AKEY_STATE_UP; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 326 | } |
| 327 | } |
| 328 | } |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 329 | return AKEY_STATE_UNKNOWN; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 330 | } |
| 331 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 332 | int32_t EventHub::getSwitchState(int32_t deviceId, int32_t sw) const { |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 333 | if (sw >= 0 && sw <= SW_MAX) { |
| 334 | AutoMutex _l(mLock); |
| 335 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 336 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 337 | if (device && test_bit(sw, device->swBitmask)) { |
| 338 | uint8_t swState[sizeof_bit_array(SW_MAX + 1)]; |
| 339 | memset(swState, 0, sizeof(swState)); |
| 340 | if (ioctl(device->fd, EVIOCGSW(sizeof(swState)), swState) >= 0) { |
| 341 | return test_bit(sw, swState) ? AKEY_STATE_DOWN : AKEY_STATE_UP; |
| 342 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 343 | } |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 344 | } |
Jeff Brown | c5ed591 | 2010-07-14 18:48:53 -0700 | [diff] [blame] | 345 | return AKEY_STATE_UNKNOWN; |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 346 | } |
| 347 | |
Jeff Brown | 2717eff | 2011-06-30 23:53:07 -0700 | [diff] [blame] | 348 | status_t EventHub::getAbsoluteAxisValue(int32_t deviceId, int32_t axis, int32_t* outValue) const { |
Jeff Brown | 0630975 | 2011-08-11 17:10:06 -0700 | [diff] [blame] | 349 | *outValue = 0; |
| 350 | |
Jeff Brown | 2717eff | 2011-06-30 23:53:07 -0700 | [diff] [blame] | 351 | if (axis >= 0 && axis <= ABS_MAX) { |
| 352 | AutoMutex _l(mLock); |
| 353 | |
| 354 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 355 | if (device && test_bit(axis, device->absBitmask)) { |
| 356 | struct input_absinfo info; |
| 357 | if(ioctl(device->fd, EVIOCGABS(axis), &info)) { |
| 358 | LOGW("Error reading absolute controller %d for device %s fd %d, errno=%d", |
| 359 | axis, device->identifier.name.string(), device->fd, errno); |
| 360 | return -errno; |
| 361 | } |
| 362 | |
| 363 | *outValue = info.value; |
| 364 | return OK; |
Jeff Brown | 2717eff | 2011-06-30 23:53:07 -0700 | [diff] [blame] | 365 | } |
| 366 | } |
Jeff Brown | 2717eff | 2011-06-30 23:53:07 -0700 | [diff] [blame] | 367 | return -1; |
| 368 | } |
| 369 | |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 370 | bool EventHub::markSupportedKeyCodes(int32_t deviceId, size_t numCodes, |
| 371 | const int32_t* keyCodes, uint8_t* outFlags) const { |
| 372 | AutoMutex _l(mLock); |
| 373 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 374 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 375 | if (device && device->keyMap.haveKeyLayout()) { |
| 376 | Vector<int32_t> scanCodes; |
| 377 | for (size_t codeIndex = 0; codeIndex < numCodes; codeIndex++) { |
| 378 | scanCodes.clear(); |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 379 | |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 380 | status_t err = device->keyMap.keyLayoutMap->findScanCodesForKey( |
| 381 | keyCodes[codeIndex], &scanCodes); |
| 382 | if (! err) { |
| 383 | // check the possible scan codes identified by the layout map against the |
| 384 | // map of codes actually emitted by the driver |
| 385 | for (size_t sc = 0; sc < scanCodes.size(); sc++) { |
| 386 | if (test_bit(scanCodes[sc], device->keyBitmask)) { |
| 387 | outFlags[codeIndex] = 1; |
| 388 | break; |
| 389 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 390 | } |
| 391 | } |
| 392 | } |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 393 | return true; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 394 | } |
Jeff Brown | ba421dd | 2011-08-10 15:07:05 -0700 | [diff] [blame] | 395 | return false; |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 398 | status_t EventHub::mapKey(int32_t deviceId, int scancode, |
Dianne Hackborn | e3dd884 | 2009-07-14 12:06:54 -0700 | [diff] [blame] | 399 | int32_t* outKeycode, uint32_t* outFlags) const |
| 400 | { |
| 401 | AutoMutex _l(mLock); |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 402 | Device* device = getDeviceLocked(deviceId); |
Dianne Hackborn | e3dd884 | 2009-07-14 12:06:54 -0700 | [diff] [blame] | 403 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 404 | if (device && device->keyMap.haveKeyLayout()) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 405 | status_t err = device->keyMap.keyLayoutMap->mapKey(scancode, outKeycode, outFlags); |
Dianne Hackborn | e3dd884 | 2009-07-14 12:06:54 -0700 | [diff] [blame] | 406 | if (err == NO_ERROR) { |
| 407 | return NO_ERROR; |
| 408 | } |
| 409 | } |
| 410 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 411 | if (mBuiltInKeyboardId != -1) { |
| 412 | device = getDeviceLocked(mBuiltInKeyboardId); |
Dianne Hackborn | e3dd884 | 2009-07-14 12:06:54 -0700 | [diff] [blame] | 413 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 414 | if (device && device->keyMap.haveKeyLayout()) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 415 | status_t err = device->keyMap.keyLayoutMap->mapKey(scancode, outKeycode, outFlags); |
Dianne Hackborn | e3dd884 | 2009-07-14 12:06:54 -0700 | [diff] [blame] | 416 | if (err == NO_ERROR) { |
| 417 | return NO_ERROR; |
| 418 | } |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | *outKeycode = 0; |
| 423 | *outFlags = 0; |
| 424 | return NAME_NOT_FOUND; |
| 425 | } |
| 426 | |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 427 | status_t EventHub::mapAxis(int32_t deviceId, int scancode, AxisInfo* outAxisInfo) const |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 428 | { |
| 429 | AutoMutex _l(mLock); |
| 430 | Device* device = getDeviceLocked(deviceId); |
| 431 | |
| 432 | if (device && device->keyMap.haveKeyLayout()) { |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 433 | status_t err = device->keyMap.keyLayoutMap->mapAxis(scancode, outAxisInfo); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 434 | if (err == NO_ERROR) { |
| 435 | return NO_ERROR; |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | if (mBuiltInKeyboardId != -1) { |
| 440 | device = getDeviceLocked(mBuiltInKeyboardId); |
| 441 | |
| 442 | if (device && device->keyMap.haveKeyLayout()) { |
Jeff Brown | 8529745 | 2011-03-04 13:07:49 -0800 | [diff] [blame] | 443 | status_t err = device->keyMap.keyLayoutMap->mapAxis(scancode, outAxisInfo); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 444 | if (err == NO_ERROR) { |
| 445 | return NO_ERROR; |
| 446 | } |
| 447 | } |
| 448 | } |
| 449 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 450 | return NAME_NOT_FOUND; |
| 451 | } |
| 452 | |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 453 | void EventHub::setExcludedDevices(const Vector<String8>& devices) { |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 454 | AutoMutex _l(mLock); |
| 455 | |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 456 | mExcludedDevices = devices; |
Mike Lockwood | 1d9dfc5 | 2009-07-16 11:11:18 -0400 | [diff] [blame] | 457 | } |
| 458 | |
Jeff Brown | 49754db | 2011-07-01 17:37:58 -0700 | [diff] [blame] | 459 | bool EventHub::hasScanCode(int32_t deviceId, int32_t scanCode) const { |
| 460 | AutoMutex _l(mLock); |
| 461 | Device* device = getDeviceLocked(deviceId); |
| 462 | if (device && scanCode >= 0 && scanCode <= KEY_MAX) { |
| 463 | if (test_bit(scanCode, device->keyBitmask)) { |
| 464 | return true; |
| 465 | } |
| 466 | } |
| 467 | return false; |
| 468 | } |
| 469 | |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 470 | bool EventHub::hasLed(int32_t deviceId, int32_t led) const { |
| 471 | AutoMutex _l(mLock); |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 472 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 473 | if (device && led >= 0 && led <= LED_MAX) { |
| 474 | if (test_bit(led, device->ledBitmask)) { |
| 475 | return true; |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 476 | } |
| 477 | } |
| 478 | return false; |
| 479 | } |
| 480 | |
| 481 | void EventHub::setLedState(int32_t deviceId, int32_t led, bool on) { |
| 482 | AutoMutex _l(mLock); |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 483 | Device* device = getDeviceLocked(deviceId); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 484 | if (device && led >= 0 && led <= LED_MAX) { |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 485 | struct input_event ev; |
| 486 | ev.time.tv_sec = 0; |
| 487 | ev.time.tv_usec = 0; |
| 488 | ev.type = EV_LED; |
| 489 | ev.code = led; |
| 490 | ev.value = on ? 1 : 0; |
| 491 | |
| 492 | ssize_t nWrite; |
| 493 | do { |
| 494 | nWrite = write(device->fd, &ev, sizeof(struct input_event)); |
| 495 | } while (nWrite == -1 && errno == EINTR); |
| 496 | } |
| 497 | } |
| 498 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 499 | void EventHub::getVirtualKeyDefinitions(int32_t deviceId, |
| 500 | Vector<VirtualKeyDefinition>& outVirtualKeys) const { |
| 501 | outVirtualKeys.clear(); |
| 502 | |
| 503 | AutoMutex _l(mLock); |
| 504 | Device* device = getDeviceLocked(deviceId); |
| 505 | if (device && device->virtualKeyMap) { |
| 506 | outVirtualKeys.appendVector(device->virtualKeyMap->getVirtualKeys()); |
| 507 | } |
| 508 | } |
| 509 | |
| 510 | EventHub::Device* EventHub::getDeviceLocked(int32_t deviceId) const { |
| 511 | if (deviceId == 0) { |
| 512 | deviceId = mBuiltInKeyboardId; |
| 513 | } |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 514 | ssize_t index = mDevices.indexOfKey(deviceId); |
| 515 | return index >= 0 ? mDevices.valueAt(index) : NULL; |
| 516 | } |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 517 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 518 | EventHub::Device* EventHub::getDeviceByPathLocked(const char* devicePath) const { |
| 519 | for (size_t i = 0; i < mDevices.size(); i++) { |
| 520 | Device* device = mDevices.valueAt(i); |
| 521 | if (device->path == devicePath) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 522 | return device; |
| 523 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 524 | } |
| 525 | return NULL; |
| 526 | } |
| 527 | |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 528 | size_t EventHub::getEvents(int timeoutMillis, RawEvent* buffer, size_t bufferSize) { |
Jeff Brown | b6110c2 | 2011-04-01 16:15:13 -0700 | [diff] [blame] | 529 | LOG_ASSERT(bufferSize >= 1); |
Mike Lockwood | 1d9dfc5 | 2009-07-16 11:11:18 -0400 | [diff] [blame] | 530 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 531 | AutoMutex _l(mLock); |
Mike Lockwood | 1d9dfc5 | 2009-07-16 11:11:18 -0400 | [diff] [blame] | 532 | |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 533 | struct input_event readBuffer[bufferSize]; |
| 534 | |
| 535 | RawEvent* event = buffer; |
| 536 | size_t capacity = bufferSize; |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 537 | bool awoken = false; |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 538 | for (;;) { |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 539 | nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC); |
| 540 | |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 541 | // Reopen input devices if needed. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 542 | if (mNeedToReopenDevices) { |
| 543 | mNeedToReopenDevices = false; |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 544 | |
| 545 | LOGI("Reopening all input devices due to a configuration change."); |
| 546 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 547 | closeAllDevicesLocked(); |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 548 | mNeedToScanDevices = true; |
| 549 | break; // return to the caller before we actually rescan |
| 550 | } |
| 551 | |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 552 | // Report any devices that had last been added/removed. |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 553 | while (mClosingDevices) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 554 | Device* device = mClosingDevices; |
| 555 | LOGV("Reporting device closed: id=%d, name=%s\n", |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 556 | device->id, device->path.string()); |
| 557 | mClosingDevices = device->next; |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 558 | event->when = now; |
| 559 | event->deviceId = device->id == mBuiltInKeyboardId ? 0 : device->id; |
| 560 | event->type = DEVICE_REMOVED; |
| 561 | event += 1; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 562 | delete device; |
Jeff Brown | 7342bb9 | 2010-10-01 18:55:43 -0700 | [diff] [blame] | 563 | mNeedToSendFinishedDeviceScan = true; |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 564 | if (--capacity == 0) { |
| 565 | break; |
| 566 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 567 | } |
Jeff Brown | 6d0fec2 | 2010-07-23 21:28:06 -0700 | [diff] [blame] | 568 | |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 569 | if (mNeedToScanDevices) { |
| 570 | mNeedToScanDevices = false; |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 571 | scanDevicesLocked(); |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 572 | mNeedToSendFinishedDeviceScan = true; |
| 573 | } |
| 574 | |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 575 | while (mOpeningDevices != NULL) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 576 | Device* device = mOpeningDevices; |
| 577 | LOGV("Reporting device opened: id=%d, name=%s\n", |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 578 | device->id, device->path.string()); |
| 579 | mOpeningDevices = device->next; |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 580 | event->when = now; |
| 581 | event->deviceId = device->id == mBuiltInKeyboardId ? 0 : device->id; |
| 582 | event->type = DEVICE_ADDED; |
| 583 | event += 1; |
Jeff Brown | 7342bb9 | 2010-10-01 18:55:43 -0700 | [diff] [blame] | 584 | mNeedToSendFinishedDeviceScan = true; |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 585 | if (--capacity == 0) { |
| 586 | break; |
| 587 | } |
Jeff Brown | 7342bb9 | 2010-10-01 18:55:43 -0700 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | if (mNeedToSendFinishedDeviceScan) { |
| 591 | mNeedToSendFinishedDeviceScan = false; |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 592 | event->when = now; |
| 593 | event->type = FINISHED_DEVICE_SCAN; |
| 594 | event += 1; |
| 595 | if (--capacity == 0) { |
| 596 | break; |
| 597 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 598 | } |
| 599 | |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 600 | // Grab the next input event. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 601 | bool deviceChanged = false; |
| 602 | while (mPendingEventIndex < mPendingEventCount) { |
| 603 | const struct epoll_event& eventItem = mPendingEventItems[mPendingEventIndex++]; |
| 604 | if (eventItem.data.u32 == EPOLL_ID_INOTIFY) { |
| 605 | if (eventItem.events & EPOLLIN) { |
| 606 | mPendingINotify = true; |
| 607 | } else { |
| 608 | LOGW("Received unexpected epoll event 0x%08x for INotify.", eventItem.events); |
| 609 | } |
| 610 | continue; |
| 611 | } |
| 612 | |
| 613 | if (eventItem.data.u32 == EPOLL_ID_WAKE) { |
| 614 | if (eventItem.events & EPOLLIN) { |
| 615 | LOGV("awoken after wake()"); |
| 616 | awoken = true; |
| 617 | char buffer[16]; |
| 618 | ssize_t nRead; |
| 619 | do { |
| 620 | nRead = read(mWakeReadPipeFd, buffer, sizeof(buffer)); |
| 621 | } while ((nRead == -1 && errno == EINTR) || nRead == sizeof(buffer)); |
| 622 | } else { |
| 623 | LOGW("Received unexpected epoll event 0x%08x for wake read pipe.", |
| 624 | eventItem.events); |
| 625 | } |
| 626 | continue; |
| 627 | } |
| 628 | |
| 629 | ssize_t deviceIndex = mDevices.indexOfKey(eventItem.data.u32); |
| 630 | if (deviceIndex < 0) { |
| 631 | LOGW("Received unexpected epoll event 0x%08x for unknown device id %d.", |
| 632 | eventItem.events, eventItem.data.u32); |
| 633 | continue; |
| 634 | } |
| 635 | |
| 636 | Device* device = mDevices.valueAt(deviceIndex); |
| 637 | if (eventItem.events & EPOLLIN) { |
| 638 | int32_t readSize = read(device->fd, readBuffer, |
| 639 | sizeof(struct input_event) * capacity); |
| 640 | if (readSize == 0 || (readSize < 0 && errno == ENODEV)) { |
| 641 | // Device was removed before INotify noticed. |
Dima Zavin | e8b7f4a | 2011-09-26 23:31:27 -0700 | [diff] [blame^] | 642 | LOGW("could not get event, removed? (fd: %d size: %d bufferSize: %d capacity: %d errno: %d)\n", |
| 643 | device->fd, readSize, bufferSize, capacity, errno); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 644 | deviceChanged = true; |
| 645 | closeDeviceLocked(device); |
| 646 | } else if (readSize < 0) { |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 647 | if (errno != EAGAIN && errno != EINTR) { |
| 648 | LOGW("could not get event (errno=%d)", errno); |
| 649 | } |
| 650 | } else if ((readSize % sizeof(struct input_event)) != 0) { |
| 651 | LOGE("could not get event (wrong size: %d)", readSize); |
| 652 | } else { |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 653 | int32_t deviceId = device->id == mBuiltInKeyboardId ? 0 : device->id; |
| 654 | |
| 655 | size_t count = size_t(readSize) / sizeof(struct input_event); |
| 656 | for (size_t i = 0; i < count; i++) { |
| 657 | const struct input_event& iev = readBuffer[i]; |
| 658 | LOGV("%s got: t0=%d, t1=%d, type=%d, code=%d, value=%d", |
| 659 | device->path.string(), |
| 660 | (int) iev.time.tv_sec, (int) iev.time.tv_usec, |
| 661 | iev.type, iev.code, iev.value); |
| 662 | |
Jeff Brown | 4e91a18 | 2011-04-07 11:38:09 -0700 | [diff] [blame] | 663 | #ifdef HAVE_POSIX_CLOCKS |
| 664 | // Use the time specified in the event instead of the current time |
| 665 | // so that downstream code can get more accurate estimates of |
| 666 | // event dispatch latency from the time the event is enqueued onto |
| 667 | // the evdev client buffer. |
| 668 | // |
| 669 | // The event's timestamp fortuitously uses the same monotonic clock |
| 670 | // time base as the rest of Android. The kernel event device driver |
| 671 | // (drivers/input/evdev.c) obtains timestamps using ktime_get_ts(). |
| 672 | // The systemTime(SYSTEM_TIME_MONOTONIC) function we use everywhere |
| 673 | // calls clock_gettime(CLOCK_MONOTONIC) which is implemented as a |
| 674 | // system call that also queries ktime_get_ts(). |
| 675 | event->when = nsecs_t(iev.time.tv_sec) * 1000000000LL |
| 676 | + nsecs_t(iev.time.tv_usec) * 1000LL; |
| 677 | LOGV("event time %lld, now %lld", event->when, now); |
| 678 | #else |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 679 | event->when = now; |
Jeff Brown | 4e91a18 | 2011-04-07 11:38:09 -0700 | [diff] [blame] | 680 | #endif |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 681 | event->deviceId = deviceId; |
| 682 | event->type = iev.type; |
| 683 | event->scanCode = iev.code; |
| 684 | event->value = iev.value; |
| 685 | event->keyCode = AKEYCODE_UNKNOWN; |
| 686 | event->flags = 0; |
| 687 | if (iev.type == EV_KEY && device->keyMap.haveKeyLayout()) { |
| 688 | status_t err = device->keyMap.keyLayoutMap->mapKey(iev.code, |
| 689 | &event->keyCode, &event->flags); |
| 690 | LOGV("iev.code=%d keyCode=%d flags=0x%08x err=%d\n", |
| 691 | iev.code, event->keyCode, event->flags, err); |
| 692 | } |
| 693 | event += 1; |
| 694 | } |
| 695 | capacity -= count; |
| 696 | if (capacity == 0) { |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 697 | // The result buffer is full. Reset the pending event index |
| 698 | // so we will try to read the device again on the next iteration. |
| 699 | mPendingEventIndex -= 1; |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 700 | break; |
| 701 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 702 | } |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 703 | } else { |
| 704 | LOGW("Received unexpected epoll event 0x%08x for device %s.", |
| 705 | eventItem.events, device->identifier.name.string()); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 706 | } |
| 707 | } |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 708 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 709 | // readNotify() will modify the list of devices so this must be done after |
| 710 | // processing all other events to ensure that we read all remaining events |
| 711 | // before closing the devices. |
| 712 | if (mPendingINotify && mPendingEventIndex >= mPendingEventCount) { |
| 713 | mPendingINotify = false; |
| 714 | readNotifyLocked(); |
| 715 | deviceChanged = true; |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 716 | } |
| 717 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 718 | // Report added or removed devices immediately. |
| 719 | if (deviceChanged) { |
| 720 | continue; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 721 | } |
Jeff Brown | a9b8422 | 2010-10-14 02:23:43 -0700 | [diff] [blame] | 722 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 723 | // Return now if we have collected any events or if we were explicitly awoken. |
| 724 | if (event != buffer || awoken) { |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 725 | break; |
| 726 | } |
| 727 | |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 728 | // Poll for events. Mind the wake lock dance! |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 729 | // We hold a wake lock at all times except during epoll_wait(). This works due to some |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 730 | // subtle choreography. When a device driver has pending (unread) events, it acquires |
| 731 | // a kernel wake lock. However, once the last pending event has been read, the device |
| 732 | // driver will release the kernel wake lock. To prevent the system from going to sleep |
| 733 | // when this happens, the EventHub holds onto its own user wake lock while the client |
| 734 | // is processing events. Thus the system can only sleep if there are no events |
| 735 | // pending or currently being processed. |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 736 | // |
| 737 | // The timeout is advisory only. If the device is asleep, it will not wake just to |
| 738 | // service the timeout. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 739 | mPendingEventIndex = 0; |
| 740 | |
| 741 | mLock.unlock(); // release lock before poll, must be before release_wake_lock |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 742 | release_wake_lock(WAKE_LOCK_ID); |
| 743 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 744 | int pollResult = epoll_wait(mEpollFd, mPendingEventItems, EPOLL_MAX_EVENTS, timeoutMillis); |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 745 | |
| 746 | acquire_wake_lock(PARTIAL_WAKE_LOCK, WAKE_LOCK_ID); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 747 | mLock.lock(); // reacquire lock after poll, must be after acquire_wake_lock |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 748 | |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 749 | if (pollResult == 0) { |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 750 | // Timed out. |
| 751 | mPendingEventCount = 0; |
| 752 | break; |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 753 | } |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 754 | |
Jeff Brown | aa3855d | 2011-03-17 01:34:19 -0700 | [diff] [blame] | 755 | if (pollResult < 0) { |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 756 | // An error occurred. |
| 757 | mPendingEventCount = 0; |
| 758 | |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 759 | // Sleep after errors to avoid locking up the system. |
| 760 | // Hopefully the error is transient. |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 761 | if (errno != EINTR) { |
Jeff Brown | a9b8422 | 2010-10-14 02:23:43 -0700 | [diff] [blame] | 762 | LOGW("poll failed (errno=%d)\n", errno); |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 763 | usleep(100000); |
| 764 | } |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 765 | } else { |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 766 | // Some events occurred. |
| 767 | mPendingEventCount = size_t(pollResult); |
| 768 | |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 769 | // On an SMP system, it is possible for the framework to read input events |
| 770 | // faster than the kernel input device driver can produce a complete packet. |
| 771 | // Because poll() wakes up as soon as the first input event becomes available, |
| 772 | // the framework will often end up reading one event at a time until the |
| 773 | // packet is complete. Instead of one call to read() returning 71 events, |
| 774 | // it could take 71 calls to read() each returning 1 event. |
| 775 | // |
| 776 | // Sleep for a short period of time after waking up from the poll() to give |
| 777 | // the kernel time to finish writing the entire packet of input events. |
| 778 | if (mNumCpus > 1) { |
| 779 | usleep(250); |
| 780 | } |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 781 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 782 | } |
Jeff Brown | b719874 | 2011-03-18 18:14:26 -0700 | [diff] [blame] | 783 | |
| 784 | // All done, return the number of events we read. |
| 785 | return event - buffer; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 786 | } |
| 787 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 788 | void EventHub::wake() { |
| 789 | LOGV("wake() called"); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 790 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 791 | ssize_t nWrite; |
| 792 | do { |
| 793 | nWrite = write(mWakeWritePipeFd, "W", 1); |
| 794 | } while (nWrite == -1 && errno == EINTR); |
| 795 | |
| 796 | if (nWrite != 1 && errno != EAGAIN) { |
| 797 | LOGW("Could not write wake signal, errno=%d", errno); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 798 | } |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 799 | } |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 800 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 801 | void EventHub::scanDevicesLocked() { |
| 802 | status_t res = scanDirLocked(DEVICE_PATH); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 803 | if(res < 0) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 804 | LOGE("scan dir failed for %s\n", DEVICE_PATH); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 805 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 806 | } |
| 807 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 808 | // ---------------------------------------------------------------------------- |
| 809 | |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 810 | static bool containsNonZeroByte(const uint8_t* array, uint32_t startIndex, uint32_t endIndex) { |
| 811 | const uint8_t* end = array + endIndex; |
| 812 | array += startIndex; |
| 813 | while (array != end) { |
| 814 | if (*(array++) != 0) { |
| 815 | return true; |
| 816 | } |
| 817 | } |
| 818 | return false; |
| 819 | } |
| 820 | |
| 821 | static const int32_t GAMEPAD_KEYCODES[] = { |
| 822 | AKEYCODE_BUTTON_A, AKEYCODE_BUTTON_B, AKEYCODE_BUTTON_C, |
| 823 | AKEYCODE_BUTTON_X, AKEYCODE_BUTTON_Y, AKEYCODE_BUTTON_Z, |
| 824 | AKEYCODE_BUTTON_L1, AKEYCODE_BUTTON_R1, |
| 825 | AKEYCODE_BUTTON_L2, AKEYCODE_BUTTON_R2, |
| 826 | AKEYCODE_BUTTON_THUMBL, AKEYCODE_BUTTON_THUMBR, |
Jeff Brown | cb1404e | 2011-01-15 18:14:15 -0800 | [diff] [blame] | 827 | AKEYCODE_BUTTON_START, AKEYCODE_BUTTON_SELECT, AKEYCODE_BUTTON_MODE, |
| 828 | AKEYCODE_BUTTON_1, AKEYCODE_BUTTON_2, AKEYCODE_BUTTON_3, AKEYCODE_BUTTON_4, |
| 829 | AKEYCODE_BUTTON_5, AKEYCODE_BUTTON_6, AKEYCODE_BUTTON_7, AKEYCODE_BUTTON_8, |
| 830 | AKEYCODE_BUTTON_9, AKEYCODE_BUTTON_10, AKEYCODE_BUTTON_11, AKEYCODE_BUTTON_12, |
| 831 | AKEYCODE_BUTTON_13, AKEYCODE_BUTTON_14, AKEYCODE_BUTTON_15, AKEYCODE_BUTTON_16, |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 832 | }; |
| 833 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 834 | status_t EventHub::openDeviceLocked(const char *devicePath) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 835 | char buffer[80]; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 836 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 837 | LOGV("Opening device: %s", devicePath); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 838 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 839 | int fd = open(devicePath, O_RDWR); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 840 | if(fd < 0) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 841 | LOGE("could not open %s, %s\n", devicePath, strerror(errno)); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 842 | return -1; |
| 843 | } |
| 844 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 845 | InputDeviceIdentifier identifier; |
| 846 | |
| 847 | // Get device name. |
| 848 | if(ioctl(fd, EVIOCGNAME(sizeof(buffer) - 1), &buffer) < 1) { |
| 849 | //fprintf(stderr, "could not get device name for %s, %s\n", devicePath, strerror(errno)); |
| 850 | } else { |
| 851 | buffer[sizeof(buffer) - 1] = '\0'; |
| 852 | identifier.name.setTo(buffer); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 853 | } |
Mike Lockwood | 15431a9 | 2009-07-17 00:10:10 -0400 | [diff] [blame] | 854 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 855 | // Check to see if the device is on our excluded list |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 856 | for (size_t i = 0; i < mExcludedDevices.size(); i++) { |
| 857 | const String8& item = mExcludedDevices.itemAt(i); |
| 858 | if (identifier.name == item) { |
| 859 | LOGI("ignoring event id %s driver %s\n", devicePath, item.string()); |
Mike Lockwood | 15431a9 | 2009-07-17 00:10:10 -0400 | [diff] [blame] | 860 | close(fd); |
Mike Lockwood | 15431a9 | 2009-07-17 00:10:10 -0400 | [diff] [blame] | 861 | return -1; |
| 862 | } |
| 863 | } |
| 864 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 865 | // Get device driver version. |
| 866 | int driverVersion; |
| 867 | if(ioctl(fd, EVIOCGVERSION, &driverVersion)) { |
| 868 | LOGE("could not get driver version for %s, %s\n", devicePath, strerror(errno)); |
| 869 | close(fd); |
| 870 | return -1; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 871 | } |
| 872 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 873 | // Get device identifier. |
| 874 | struct input_id inputId; |
| 875 | if(ioctl(fd, EVIOCGID, &inputId)) { |
| 876 | LOGE("could not get device input id for %s, %s\n", devicePath, strerror(errno)); |
| 877 | close(fd); |
| 878 | return -1; |
| 879 | } |
| 880 | identifier.bus = inputId.bustype; |
| 881 | identifier.product = inputId.product; |
| 882 | identifier.vendor = inputId.vendor; |
| 883 | identifier.version = inputId.version; |
| 884 | |
| 885 | // Get device physical location. |
| 886 | if(ioctl(fd, EVIOCGPHYS(sizeof(buffer) - 1), &buffer) < 1) { |
| 887 | //fprintf(stderr, "could not get location for %s, %s\n", devicePath, strerror(errno)); |
| 888 | } else { |
| 889 | buffer[sizeof(buffer) - 1] = '\0'; |
| 890 | identifier.location.setTo(buffer); |
| 891 | } |
| 892 | |
| 893 | // Get device unique id. |
| 894 | if(ioctl(fd, EVIOCGUNIQ(sizeof(buffer) - 1), &buffer) < 1) { |
| 895 | //fprintf(stderr, "could not get idstring for %s, %s\n", devicePath, strerror(errno)); |
| 896 | } else { |
| 897 | buffer[sizeof(buffer) - 1] = '\0'; |
| 898 | identifier.uniqueId.setTo(buffer); |
| 899 | } |
| 900 | |
| 901 | // Make file descriptor non-blocking for use with poll(). |
Jeff Brown | cc2e717 | 2010-08-17 16:48:25 -0700 | [diff] [blame] | 902 | if (fcntl(fd, F_SETFL, O_NONBLOCK)) { |
| 903 | LOGE("Error %d making device file descriptor non-blocking.", errno); |
| 904 | close(fd); |
| 905 | return -1; |
| 906 | } |
| 907 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 908 | // Allocate device. (The device object takes ownership of the fd at this point.) |
| 909 | int32_t deviceId = mNextDeviceId++; |
| 910 | Device* device = new Device(fd, deviceId, String8(devicePath), identifier); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 911 | |
| 912 | #if 0 |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 913 | LOGI("add device %d: %s\n", deviceId, devicePath); |
| 914 | LOGI(" bus: %04x\n" |
| 915 | " vendor %04x\n" |
| 916 | " product %04x\n" |
| 917 | " version %04x\n", |
| 918 | identifier.bus, identifier.vendor, identifier.product, identifier.version); |
| 919 | LOGI(" name: \"%s\"\n", identifier.name.string()); |
| 920 | LOGI(" location: \"%s\"\n", identifier.location.string()); |
| 921 | LOGI(" unique id: \"%s\"\n", identifier.uniqueId.string()); |
| 922 | LOGI(" driver: v%d.%d.%d\n", |
| 923 | driverVersion >> 16, (driverVersion >> 8) & 0xff, driverVersion & 0xff); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 924 | #endif |
| 925 | |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 926 | // Load the configuration file for the device. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 927 | loadConfigurationLocked(device); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 928 | |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 929 | // Figure out the kinds of events the device reports. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 930 | ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(device->keyBitmask)), device->keyBitmask); |
| 931 | ioctl(fd, EVIOCGBIT(EV_ABS, sizeof(device->absBitmask)), device->absBitmask); |
| 932 | ioctl(fd, EVIOCGBIT(EV_REL, sizeof(device->relBitmask)), device->relBitmask); |
| 933 | ioctl(fd, EVIOCGBIT(EV_SW, sizeof(device->swBitmask)), device->swBitmask); |
| 934 | ioctl(fd, EVIOCGBIT(EV_LED, sizeof(device->ledBitmask)), device->ledBitmask); |
| 935 | ioctl(fd, EVIOCGPROP(sizeof(device->propBitmask)), device->propBitmask); |
Jeff Brown | cc0c159 | 2011-02-19 05:07:28 -0800 | [diff] [blame] | 936 | |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 937 | // See if this is a keyboard. Ignore everything in the button range except for |
| 938 | // joystick and gamepad buttons which are handled like keyboards for the most part. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 939 | bool haveKeyboardKeys = containsNonZeroByte(device->keyBitmask, 0, sizeof_bit_array(BTN_MISC)) |
| 940 | || containsNonZeroByte(device->keyBitmask, sizeof_bit_array(KEY_OK), |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 941 | sizeof_bit_array(KEY_MAX + 1)); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 942 | bool haveGamepadButtons = containsNonZeroByte(device->keyBitmask, sizeof_bit_array(BTN_MISC), |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 943 | sizeof_bit_array(BTN_MOUSE)) |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 944 | || containsNonZeroByte(device->keyBitmask, sizeof_bit_array(BTN_JOYSTICK), |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 945 | sizeof_bit_array(BTN_DIGI)); |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 946 | if (haveKeyboardKeys || haveGamepadButtons) { |
| 947 | device->classes |= INPUT_DEVICE_CLASS_KEYBOARD; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 948 | } |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 949 | |
Jeff Brown | 83c0968 | 2010-12-23 17:50:18 -0800 | [diff] [blame] | 950 | // See if this is a cursor device such as a trackball or mouse. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 951 | if (test_bit(BTN_MOUSE, device->keyBitmask) |
| 952 | && test_bit(REL_X, device->relBitmask) |
| 953 | && test_bit(REL_Y, device->relBitmask)) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 954 | device->classes |= INPUT_DEVICE_CLASS_CURSOR; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 955 | } |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 956 | |
| 957 | // See if this is a touch pad. |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 958 | // Is this a new modern multi-touch driver? |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 959 | if (test_bit(ABS_MT_POSITION_X, device->absBitmask) |
| 960 | && test_bit(ABS_MT_POSITION_Y, device->absBitmask)) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 961 | // Some joysticks such as the PS3 controller report axes that conflict |
| 962 | // with the ABS_MT range. Try to confirm that the device really is |
| 963 | // a touch screen. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 964 | if (test_bit(BTN_TOUCH, device->keyBitmask) || !haveGamepadButtons) { |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 965 | device->classes |= INPUT_DEVICE_CLASS_TOUCH | INPUT_DEVICE_CLASS_TOUCH_MT; |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 966 | } |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 967 | // Is this an old style single-touch driver? |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 968 | } else if (test_bit(BTN_TOUCH, device->keyBitmask) |
| 969 | && test_bit(ABS_X, device->absBitmask) |
| 970 | && test_bit(ABS_Y, device->absBitmask)) { |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 971 | device->classes |= INPUT_DEVICE_CLASS_TOUCH; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 972 | } |
| 973 | |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 974 | // See if this device is a joystick. |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 975 | // Assumes that joysticks always have gamepad buttons in order to distinguish them |
| 976 | // from other devices such as accelerometers that also have absolute axes. |
Jeff Brown | 9ee285a | 2011-08-31 12:56:34 -0700 | [diff] [blame] | 977 | if (haveGamepadButtons) { |
| 978 | uint32_t assumedClasses = device->classes | INPUT_DEVICE_CLASS_JOYSTICK; |
| 979 | for (int i = 0; i <= ABS_MAX; i++) { |
| 980 | if (test_bit(i, device->absBitmask) |
| 981 | && (getAbsAxisUsage(i, assumedClasses) & INPUT_DEVICE_CLASS_JOYSTICK)) { |
| 982 | device->classes = assumedClasses; |
| 983 | break; |
| 984 | } |
| 985 | } |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 986 | } |
| 987 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 988 | // Check whether this device has switches. |
| 989 | for (int i = 0; i <= SW_MAX; i++) { |
| 990 | if (test_bit(i, device->swBitmask)) { |
| 991 | device->classes |= INPUT_DEVICE_CLASS_SWITCH; |
| 992 | break; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 993 | } |
| 994 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 995 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 996 | // Configure virtual keys. |
Jeff Brown | 58a2da8 | 2011-01-25 16:02:22 -0800 | [diff] [blame] | 997 | if ((device->classes & INPUT_DEVICE_CLASS_TOUCH)) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 998 | // Load the virtual keys for the touch screen, if any. |
| 999 | // We do this now so that we can make sure to load the keymap if necessary. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1000 | status_t status = loadVirtualKeyMapLocked(device); |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1001 | if (!status) { |
| 1002 | device->classes |= INPUT_DEVICE_CLASS_KEYBOARD; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1003 | } |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1004 | } |
| 1005 | |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 1006 | // Load the key map. |
| 1007 | // We need to do this for joysticks too because the key layout may specify axes. |
| 1008 | status_t keyMapStatus = NAME_NOT_FOUND; |
| 1009 | if (device->classes & (INPUT_DEVICE_CLASS_KEYBOARD | INPUT_DEVICE_CLASS_JOYSTICK)) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1010 | // Load the keymap for the device. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1011 | keyMapStatus = loadKeyMapLocked(device); |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 1012 | } |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1013 | |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 1014 | // Configure the keyboard, gamepad or virtual keyboard. |
| 1015 | if (device->classes & INPUT_DEVICE_CLASS_KEYBOARD) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1016 | // Set system properties for the keyboard. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1017 | setKeyboardPropertiesLocked(device, false); |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 1018 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1019 | // Register the keyboard as a built-in keyboard if it is eligible. |
Jeff Brown | 9e8e40c | 2011-03-03 03:39:29 -0800 | [diff] [blame] | 1020 | if (!keyMapStatus |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1021 | && mBuiltInKeyboardId == -1 |
| 1022 | && isEligibleBuiltInKeyboard(device->identifier, |
| 1023 | device->configuration, &device->keyMap)) { |
| 1024 | mBuiltInKeyboardId = device->id; |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1025 | setKeyboardPropertiesLocked(device, true); |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 1026 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1027 | |
Dianne Hackborn | 0dd7cb4 | 2009-08-04 05:49:43 -0700 | [diff] [blame] | 1028 | // 'Q' key support = cheap test of whether this is an alpha-capable kbd |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 1029 | if (hasKeycodeLocked(device, AKEYCODE_Q)) { |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1030 | device->classes |= INPUT_DEVICE_CLASS_ALPHAKEY; |
Dianne Hackborn | 0dd7cb4 | 2009-08-04 05:49:43 -0700 | [diff] [blame] | 1031 | } |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 1032 | |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 1033 | // See if this device has a DPAD. |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 1034 | if (hasKeycodeLocked(device, AKEYCODE_DPAD_UP) && |
| 1035 | hasKeycodeLocked(device, AKEYCODE_DPAD_DOWN) && |
| 1036 | hasKeycodeLocked(device, AKEYCODE_DPAD_LEFT) && |
| 1037 | hasKeycodeLocked(device, AKEYCODE_DPAD_RIGHT) && |
| 1038 | hasKeycodeLocked(device, AKEYCODE_DPAD_CENTER)) { |
Jeff Brown | 46b9ac0 | 2010-04-22 18:58:52 -0700 | [diff] [blame] | 1039 | device->classes |= INPUT_DEVICE_CLASS_DPAD; |
Dianne Hackborn | 0dd7cb4 | 2009-08-04 05:49:43 -0700 | [diff] [blame] | 1040 | } |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 1041 | |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 1042 | // See if this device has a gamepad. |
Kenny Root | 1d79a9d | 2010-10-21 15:46:03 -0700 | [diff] [blame] | 1043 | for (size_t i = 0; i < sizeof(GAMEPAD_KEYCODES)/sizeof(GAMEPAD_KEYCODES[0]); i++) { |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 1044 | if (hasKeycodeLocked(device, GAMEPAD_KEYCODES[i])) { |
Jeff Brown | fd03582 | 2010-06-30 16:10:35 -0700 | [diff] [blame] | 1045 | device->classes |= INPUT_DEVICE_CLASS_GAMEPAD; |
| 1046 | break; |
| 1047 | } |
| 1048 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1049 | } |
| 1050 | |
Sean McNeil | aeb00c4 | 2010-06-23 16:00:37 +0700 | [diff] [blame] | 1051 | // If the device isn't recognized as something we handle, don't monitor it. |
| 1052 | if (device->classes == 0) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1053 | LOGV("Dropping device: id=%d, path='%s', name='%s'", |
| 1054 | deviceId, devicePath, device->identifier.name.string()); |
Sean McNeil | aeb00c4 | 2010-06-23 16:00:37 +0700 | [diff] [blame] | 1055 | delete device; |
| 1056 | return -1; |
| 1057 | } |
| 1058 | |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 1059 | // Determine whether the device is external or internal. |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1060 | if (isExternalDeviceLocked(device)) { |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 1061 | device->classes |= INPUT_DEVICE_CLASS_EXTERNAL; |
| 1062 | } |
| 1063 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1064 | // Register with epoll. |
| 1065 | struct epoll_event eventItem; |
| 1066 | memset(&eventItem, 0, sizeof(eventItem)); |
| 1067 | eventItem.events = EPOLLIN; |
| 1068 | eventItem.data.u32 = deviceId; |
| 1069 | if (epoll_ctl(mEpollFd, EPOLL_CTL_ADD, fd, &eventItem)) { |
| 1070 | LOGE("Could not add device fd to epoll instance. errno=%d", errno); |
| 1071 | delete device; |
| 1072 | return -1; |
| 1073 | } |
| 1074 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1075 | LOGI("New device: id=%d, fd=%d, path='%s', name='%s', classes=0x%x, " |
| 1076 | "configuration='%s', keyLayout='%s', keyCharacterMap='%s', builtinKeyboard=%s", |
| 1077 | deviceId, fd, devicePath, device->identifier.name.string(), |
| 1078 | device->classes, |
| 1079 | device->configurationFile.string(), |
| 1080 | device->keyMap.keyLayoutFile.string(), |
| 1081 | device->keyMap.keyCharacterMapFile.string(), |
| 1082 | toString(mBuiltInKeyboardId == deviceId)); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 1083 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1084 | mDevices.add(deviceId, device); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1085 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1086 | device->next = mOpeningDevices; |
| 1087 | mOpeningDevices = device; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1088 | return 0; |
| 1089 | } |
| 1090 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1091 | void EventHub::loadConfigurationLocked(Device* device) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1092 | device->configurationFile = getInputDeviceConfigurationFilePathByDeviceIdentifier( |
| 1093 | device->identifier, INPUT_DEVICE_CONFIGURATION_FILE_TYPE_CONFIGURATION); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 1094 | if (device->configurationFile.isEmpty()) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1095 | LOGD("No input device configuration file found for device '%s'.", |
| 1096 | device->identifier.name.string()); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 1097 | } else { |
| 1098 | status_t status = PropertyMap::load(device->configurationFile, |
| 1099 | &device->configuration); |
| 1100 | if (status) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1101 | LOGE("Error loading input device configuration file for device '%s'. " |
| 1102 | "Using default configuration.", |
| 1103 | device->identifier.name.string()); |
Jeff Brown | 47e6b1b | 2010-11-29 17:37:49 -0800 | [diff] [blame] | 1104 | } |
| 1105 | } |
| 1106 | } |
| 1107 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1108 | status_t EventHub::loadVirtualKeyMapLocked(Device* device) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1109 | // The virtual key map is supplied by the kernel as a system board property file. |
| 1110 | String8 path; |
| 1111 | path.append("/sys/board_properties/virtualkeys."); |
| 1112 | path.append(device->identifier.name); |
| 1113 | if (access(path.string(), R_OK)) { |
| 1114 | return NAME_NOT_FOUND; |
| 1115 | } |
| 1116 | return VirtualKeyMap::load(path, &device->virtualKeyMap); |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 1117 | } |
| 1118 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1119 | status_t EventHub::loadKeyMapLocked(Device* device) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1120 | return device->keyMap.load(device->identifier, device->configuration); |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 1121 | } |
| 1122 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1123 | void EventHub::setKeyboardPropertiesLocked(Device* device, bool builtInKeyboard) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1124 | int32_t id = builtInKeyboard ? 0 : device->id; |
| 1125 | android::setKeyboardProperties(id, device->identifier, |
| 1126 | device->keyMap.keyLayoutFile, device->keyMap.keyCharacterMapFile); |
| 1127 | } |
| 1128 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1129 | void EventHub::clearKeyboardPropertiesLocked(Device* device, bool builtInKeyboard) { |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1130 | int32_t id = builtInKeyboard ? 0 : device->id; |
Jeff Brown | 6b53e8d | 2010-11-10 16:03:06 -0800 | [diff] [blame] | 1131 | android::clearKeyboardProperties(id); |
Jeff Brown | 497a92c | 2010-09-12 17:55:08 -0700 | [diff] [blame] | 1132 | } |
| 1133 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1134 | bool EventHub::isExternalDeviceLocked(Device* device) { |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 1135 | if (device->configuration) { |
| 1136 | bool value; |
Max Braun | e81056f | 2011-08-30 14:35:45 -0700 | [diff] [blame] | 1137 | if (device->configuration->tryGetProperty(String8("device.internal"), value)) { |
| 1138 | return !value; |
Jeff Brown | 56194eb | 2011-03-02 19:23:13 -0800 | [diff] [blame] | 1139 | } |
| 1140 | } |
| 1141 | return device->identifier.bus == BUS_USB || device->identifier.bus == BUS_BLUETOOTH; |
| 1142 | } |
| 1143 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1144 | bool EventHub::hasKeycodeLocked(Device* device, int keycode) const { |
| 1145 | if (!device->keyMap.haveKeyLayout() || !device->keyBitmask) { |
Dianne Hackborn | 0dd7cb4 | 2009-08-04 05:49:43 -0700 | [diff] [blame] | 1146 | return false; |
| 1147 | } |
| 1148 | |
| 1149 | Vector<int32_t> scanCodes; |
Jeff Brown | 6f2fba4 | 2011-02-19 01:08:02 -0800 | [diff] [blame] | 1150 | device->keyMap.keyLayoutMap->findScanCodesForKey(keycode, &scanCodes); |
Dianne Hackborn | 0dd7cb4 | 2009-08-04 05:49:43 -0700 | [diff] [blame] | 1151 | const size_t N = scanCodes.size(); |
| 1152 | for (size_t i=0; i<N && i<=KEY_MAX; i++) { |
| 1153 | int32_t sc = scanCodes.itemAt(i); |
| 1154 | if (sc >= 0 && sc <= KEY_MAX && test_bit(sc, device->keyBitmask)) { |
| 1155 | return true; |
| 1156 | } |
| 1157 | } |
| 1158 | |
| 1159 | return false; |
| 1160 | } |
| 1161 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1162 | status_t EventHub::closeDeviceByPathLocked(const char *devicePath) { |
| 1163 | Device* device = getDeviceByPathLocked(devicePath); |
| 1164 | if (device) { |
| 1165 | closeDeviceLocked(device); |
| 1166 | return 0; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1167 | } |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 1168 | LOGV("Remove device: %s not found, device may already have been removed.", devicePath); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1169 | return -1; |
| 1170 | } |
| 1171 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1172 | void EventHub::closeAllDevicesLocked() { |
| 1173 | while (mDevices.size() > 0) { |
| 1174 | closeDeviceLocked(mDevices.valueAt(mDevices.size() - 1)); |
| 1175 | } |
| 1176 | } |
| 1177 | |
| 1178 | void EventHub::closeDeviceLocked(Device* device) { |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 1179 | LOGI("Removed device: path=%s name=%s id=%d fd=%d classes=0x%x\n", |
| 1180 | device->path.string(), device->identifier.name.string(), device->id, |
| 1181 | device->fd, device->classes); |
| 1182 | |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 1183 | if (device->id == mBuiltInKeyboardId) { |
| 1184 | LOGW("built-in keyboard device %s (id=%d) is closing! the apps will not like this", |
| 1185 | device->path.string(), mBuiltInKeyboardId); |
| 1186 | mBuiltInKeyboardId = -1; |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1187 | clearKeyboardPropertiesLocked(device, true); |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 1188 | } |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1189 | clearKeyboardPropertiesLocked(device, false); |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 1190 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1191 | if (epoll_ctl(mEpollFd, EPOLL_CTL_DEL, device->fd, NULL)) { |
| 1192 | LOGW("Could not remove device fd from epoll instance. errno=%d", errno); |
| 1193 | } |
| 1194 | |
| 1195 | mDevices.removeItem(device->id); |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 1196 | device->close(); |
| 1197 | |
Jeff Brown | 8e9d443 | 2011-03-12 19:46:59 -0800 | [diff] [blame] | 1198 | // Unlink for opening devices list if it is present. |
| 1199 | Device* pred = NULL; |
| 1200 | bool found = false; |
| 1201 | for (Device* entry = mOpeningDevices; entry != NULL; ) { |
| 1202 | if (entry == device) { |
| 1203 | found = true; |
| 1204 | break; |
| 1205 | } |
| 1206 | pred = entry; |
| 1207 | entry = entry->next; |
| 1208 | } |
| 1209 | if (found) { |
| 1210 | // Unlink the device from the opening devices list then delete it. |
| 1211 | // We don't need to tell the client that the device was closed because |
| 1212 | // it does not even know it was opened in the first place. |
| 1213 | LOGI("Device %s was immediately closed after opening.", device->path.string()); |
| 1214 | if (pred) { |
| 1215 | pred->next = device->next; |
| 1216 | } else { |
| 1217 | mOpeningDevices = device->next; |
| 1218 | } |
| 1219 | delete device; |
| 1220 | } else { |
| 1221 | // Link into closing devices list. |
| 1222 | // The device will be deleted later after we have informed the client. |
| 1223 | device->next = mClosingDevices; |
| 1224 | mClosingDevices = device; |
| 1225 | } |
Jeff Brown | 33bbfd2 | 2011-02-24 20:55:35 -0800 | [diff] [blame] | 1226 | } |
| 1227 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1228 | status_t EventHub::readNotifyLocked() { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1229 | int res; |
| 1230 | char devname[PATH_MAX]; |
| 1231 | char *filename; |
| 1232 | char event_buf[512]; |
| 1233 | int event_size; |
| 1234 | int event_pos = 0; |
| 1235 | struct inotify_event *event; |
| 1236 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1237 | LOGV("EventHub::readNotify nfd: %d\n", mINotifyFd); |
| 1238 | res = read(mINotifyFd, event_buf, sizeof(event_buf)); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1239 | if(res < (int)sizeof(*event)) { |
| 1240 | if(errno == EINTR) |
| 1241 | return 0; |
| 1242 | LOGW("could not get event, %s\n", strerror(errno)); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1243 | return -1; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1244 | } |
| 1245 | //printf("got %d bytes of event information\n", res); |
| 1246 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1247 | strcpy(devname, DEVICE_PATH); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1248 | filename = devname + strlen(devname); |
| 1249 | *filename++ = '/'; |
| 1250 | |
| 1251 | while(res >= (int)sizeof(*event)) { |
| 1252 | event = (struct inotify_event *)(event_buf + event_pos); |
| 1253 | //printf("%d: %08x \"%s\"\n", event->wd, event->mask, event->len ? event->name : ""); |
| 1254 | if(event->len) { |
| 1255 | strcpy(filename, event->name); |
| 1256 | if(event->mask & IN_CREATE) { |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1257 | openDeviceLocked(devname); |
| 1258 | } else { |
Dima Zavin | e8b7f4a | 2011-09-26 23:31:27 -0700 | [diff] [blame^] | 1259 | LOGI("Removing device '%s' due to inotify event\n", devname); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1260 | closeDeviceByPathLocked(devname); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1261 | } |
| 1262 | } |
| 1263 | event_size = sizeof(*event) + event->len; |
| 1264 | res -= event_size; |
| 1265 | event_pos += event_size; |
| 1266 | } |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1267 | return 0; |
| 1268 | } |
| 1269 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1270 | status_t EventHub::scanDirLocked(const char *dirname) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1271 | { |
| 1272 | char devname[PATH_MAX]; |
| 1273 | char *filename; |
| 1274 | DIR *dir; |
| 1275 | struct dirent *de; |
| 1276 | dir = opendir(dirname); |
| 1277 | if(dir == NULL) |
| 1278 | return -1; |
| 1279 | strcpy(devname, dirname); |
| 1280 | filename = devname + strlen(devname); |
| 1281 | *filename++ = '/'; |
| 1282 | while((de = readdir(dir))) { |
| 1283 | if(de->d_name[0] == '.' && |
| 1284 | (de->d_name[1] == '\0' || |
| 1285 | (de->d_name[1] == '.' && de->d_name[2] == '\0'))) |
| 1286 | continue; |
| 1287 | strcpy(filename, de->d_name); |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1288 | openDeviceLocked(devname); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1289 | } |
| 1290 | closedir(dir); |
| 1291 | return 0; |
| 1292 | } |
| 1293 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1294 | void EventHub::requestReopenDevices() { |
| 1295 | LOGV("requestReopenDevices() called"); |
| 1296 | |
| 1297 | AutoMutex _l(mLock); |
| 1298 | mNeedToReopenDevices = true; |
Jeff Brown | 1a84fd1 | 2011-06-02 01:26:32 -0700 | [diff] [blame] | 1299 | } |
| 1300 | |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 1301 | void EventHub::dump(String8& dump) { |
| 1302 | dump.append("Event Hub State:\n"); |
| 1303 | |
| 1304 | { // acquire lock |
| 1305 | AutoMutex _l(mLock); |
| 1306 | |
Jeff Brown | 9065504 | 2010-12-02 13:50:46 -0800 | [diff] [blame] | 1307 | dump.appendFormat(INDENT "BuiltInKeyboardId: %d\n", mBuiltInKeyboardId); |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 1308 | |
| 1309 | dump.append(INDENT "Devices:\n"); |
| 1310 | |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1311 | for (size_t i = 0; i < mDevices.size(); i++) { |
| 1312 | const Device* device = mDevices.valueAt(i); |
| 1313 | if (mBuiltInKeyboardId == device->id) { |
| 1314 | dump.appendFormat(INDENT2 "%d: %s (aka device 0 - built-in keyboard)\n", |
| 1315 | device->id, device->identifier.name.string()); |
| 1316 | } else { |
| 1317 | dump.appendFormat(INDENT2 "%d: %s\n", device->id, |
| 1318 | device->identifier.name.string()); |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 1319 | } |
Jeff Brown | 93fa9b3 | 2011-06-14 17:09:25 -0700 | [diff] [blame] | 1320 | dump.appendFormat(INDENT3 "Classes: 0x%08x\n", device->classes); |
| 1321 | dump.appendFormat(INDENT3 "Path: %s\n", device->path.string()); |
| 1322 | dump.appendFormat(INDENT3 "Location: %s\n", device->identifier.location.string()); |
| 1323 | dump.appendFormat(INDENT3 "UniqueId: %s\n", device->identifier.uniqueId.string()); |
| 1324 | dump.appendFormat(INDENT3 "Identifier: bus=0x%04x, vendor=0x%04x, " |
| 1325 | "product=0x%04x, version=0x%04x\n", |
| 1326 | device->identifier.bus, device->identifier.vendor, |
| 1327 | device->identifier.product, device->identifier.version); |
| 1328 | dump.appendFormat(INDENT3 "KeyLayoutFile: %s\n", |
| 1329 | device->keyMap.keyLayoutFile.string()); |
| 1330 | dump.appendFormat(INDENT3 "KeyCharacterMapFile: %s\n", |
| 1331 | device->keyMap.keyCharacterMapFile.string()); |
| 1332 | dump.appendFormat(INDENT3 "ConfigurationFile: %s\n", |
| 1333 | device->configurationFile.string()); |
Jeff Brown | f2f4871 | 2010-10-01 17:46:21 -0700 | [diff] [blame] | 1334 | } |
| 1335 | } // release lock |
| 1336 | } |
| 1337 | |
Jeff Brown | 89ef072 | 2011-08-10 16:25:21 -0700 | [diff] [blame] | 1338 | void EventHub::monitor() { |
| 1339 | // Acquire and release the lock to ensure that the event hub has not deadlocked. |
| 1340 | mLock.lock(); |
| 1341 | mLock.unlock(); |
| 1342 | } |
| 1343 | |
| 1344 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1345 | }; // namespace android |