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