Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 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 | #include <dirent.h> |
Dan Albert | c8686b4 | 2017-10-11 11:47:54 -0700 | [diff] [blame] | 18 | #include <errno.h> |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 19 | #include <fcntl.h> |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 20 | #include <linux/input.h> |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 21 | #include <stdio.h> |
| 22 | #include <stdlib.h> |
| 23 | #include <string.h> |
| 24 | #include <sys/epoll.h> |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 25 | #include <sys/ioctl.h> |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 26 | #include <sys/types.h> |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 27 | #include <unistd.h> |
| 28 | |
Tao Bao | 9468fc0 | 2017-03-17 00:57:37 -0700 | [diff] [blame] | 29 | #include <functional> |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 30 | #include <memory> |
| 31 | |
| 32 | #include <android-base/unique_fd.h> |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 33 | |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 34 | #include "minui/minui.h" |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 35 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 36 | constexpr size_t MAX_DEVICES = 16; |
| 37 | constexpr size_t MAX_MISC_FDS = 16; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 38 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 39 | constexpr size_t BITS_PER_LONG = sizeof(unsigned long) * 8; |
| 40 | constexpr size_t BITS_TO_LONGS(size_t bits) { |
| 41 | return ((bits + BITS_PER_LONG - 1) / BITS_PER_LONG); |
| 42 | } |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 43 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 44 | struct FdInfo { |
| 45 | android::base::unique_fd fd; |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 46 | ev_callback cb; |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 47 | #ifdef TW_USE_MINUI_WITH_DATA |
| 48 | void* data; |
| 49 | #endif |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 50 | }; |
| 51 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 52 | static android::base::unique_fd g_epoll_fd; |
| 53 | static epoll_event g_polled_events[MAX_DEVICES + MAX_MISC_FDS]; |
| 54 | static int g_polled_events_count; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 55 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 56 | static FdInfo ev_fdinfo[MAX_DEVICES + MAX_MISC_FDS]; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 57 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 58 | static size_t g_ev_count = 0; |
| 59 | static size_t g_ev_dev_count = 0; |
| 60 | static size_t g_ev_misc_count = 0; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 61 | |
Chih-Hung Hsieh | 54a2747 | 2016-04-18 11:30:55 -0700 | [diff] [blame] | 62 | static bool test_bit(size_t bit, unsigned long* array) { // NOLINT |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 63 | return (array[bit / BITS_PER_LONG] & (1UL << (bit % BITS_PER_LONG))) != 0; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 66 | #ifdef TW_USE_MINUI_WITH_OPTIONAL_TOUCH_EVENTS |
Tao Bao | af9f8b4 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 67 | int ev_init(ev_callback input_cb, bool allow_touch_inputs) { |
bigbiff | 20edca8 | 2020-07-03 09:55:28 -0400 | [diff] [blame] | 68 | #else |
| 69 | #ifdef TW_USE_MINUI_WITH_DATA |
| 70 | int ev_init(ev_callback input_cb, void* data) { |
| 71 | #else |
| 72 | int ev_init(ev_callback input_cb) { |
| 73 | #endif |
| 74 | bool allow_touch_inputs = false; |
| 75 | #endif |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 76 | g_epoll_fd.reset(); |
| 77 | |
| 78 | android::base::unique_fd epoll_fd(epoll_create1(EPOLL_CLOEXEC)); |
| 79 | if (epoll_fd == -1) { |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 80 | return -1; |
| 81 | } |
| 82 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 83 | std::unique_ptr<DIR, decltype(&closedir)> dir(opendir("/dev/input"), closedir); |
| 84 | if (!dir) { |
| 85 | return -1; |
| 86 | } |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 87 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 88 | bool epoll_ctl_failed = false; |
| 89 | dirent* de; |
| 90 | while ((de = readdir(dir.get())) != nullptr) { |
| 91 | if (strncmp(de->d_name, "event", 5)) continue; |
| 92 | android::base::unique_fd fd(openat(dirfd(dir.get()), de->d_name, O_RDONLY | O_CLOEXEC)); |
| 93 | if (fd == -1) continue; |
Tao Bao | af9f8b4 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 94 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 95 | // Use unsigned long to match ioctl's parameter type. |
| 96 | unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)]; // NOLINT |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 97 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 98 | // Read the evbits of the input device. |
| 99 | if (ioctl(fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) { |
| 100 | continue; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 103 | // We assume that only EV_KEY, EV_REL, and EV_SW event types are ever needed. EV_ABS is also |
| 104 | // allowed if allow_touch_inputs is set. |
| 105 | if (!test_bit(EV_KEY, ev_bits) && !test_bit(EV_REL, ev_bits) && !test_bit(EV_SW, ev_bits)) { |
| 106 | if (!allow_touch_inputs || !test_bit(EV_ABS, ev_bits)) { |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 107 | continue; |
| 108 | } |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 109 | } |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 110 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 111 | epoll_event ev; |
| 112 | ev.events = EPOLLIN | EPOLLWAKEUP; |
| 113 | ev.data.ptr = &ev_fdinfo[g_ev_count]; |
| 114 | if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fd, &ev) == -1) { |
| 115 | epoll_ctl_failed = true; |
| 116 | continue; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 119 | ev_fdinfo[g_ev_count].fd.reset(fd.release()); |
| 120 | ev_fdinfo[g_ev_count].cb = input_cb; |
| 121 | g_ev_count++; |
| 122 | g_ev_dev_count++; |
| 123 | if (g_ev_dev_count == MAX_DEVICES) break; |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 124 | } |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 125 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 126 | if (epoll_ctl_failed && !g_ev_count) { |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 127 | return -1; |
| 128 | } |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 129 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 130 | g_epoll_fd.reset(epoll_fd.release()); |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 131 | return 0; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | int ev_get_epollfd(void) { |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 135 | return g_epoll_fd.get(); |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 138 | int ev_add_fd(android::base::unique_fd&& fd, ev_callback cb) { |
| 139 | if (g_ev_misc_count == MAX_MISC_FDS || cb == nullptr) { |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 140 | return -1; |
| 141 | } |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 142 | |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 143 | epoll_event ev; |
| 144 | ev.events = EPOLLIN | EPOLLWAKEUP; |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 145 | ev.data.ptr = static_cast<void*>(&ev_fdinfo[g_ev_count]); |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 146 | int ret = epoll_ctl(g_epoll_fd, EPOLL_CTL_ADD, fd, &ev); |
| 147 | if (!ret) { |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 148 | ev_fdinfo[g_ev_count].fd.reset(fd.release()); |
| 149 | ev_fdinfo[g_ev_count].cb = std::move(cb); |
| 150 | g_ev_count++; |
| 151 | g_ev_misc_count++; |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 152 | } |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 153 | |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 154 | return ret; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | void ev_exit(void) { |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 158 | while (g_ev_count > 0) { |
| 159 | ev_fdinfo[--g_ev_count].fd.reset(); |
| 160 | } |
| 161 | g_ev_misc_count = 0; |
| 162 | g_ev_dev_count = 0; |
| 163 | g_epoll_fd.reset(); |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | int ev_wait(int timeout) { |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 167 | g_polled_events_count = epoll_wait(g_epoll_fd, g_polled_events, g_ev_count, timeout); |
| 168 | if (g_polled_events_count <= 0) { |
| 169 | return -1; |
| 170 | } |
| 171 | return 0; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | void ev_dispatch(void) { |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 175 | for (int n = 0; n < g_polled_events_count; n++) { |
| 176 | FdInfo* fdi = static_cast<FdInfo*>(g_polled_events[n].data.ptr); |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 177 | const ev_callback& cb = fdi->cb; |
| 178 | if (cb) { |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 179 | cb(fdi->fd, g_polled_events[n].events); |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 180 | } |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 181 | } |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 182 | } |
| 183 | |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 184 | int ev_get_input(int fd, uint32_t epevents, input_event* ev) { |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 185 | if (epevents & EPOLLIN) { |
Elliott Hughes | 2f5feed | 2015-04-28 17:24:24 -0700 | [diff] [blame] | 186 | ssize_t r = TEMP_FAILURE_RETRY(read(fd, ev, sizeof(*ev))); |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 187 | if (r == sizeof(*ev)) { |
| 188 | return 0; |
| 189 | } |
| 190 | } |
| 191 | return -1; |
| 192 | } |
| 193 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 194 | #ifdef TW_USE_MINUI_WITH_DATA |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 195 | int ev_sync_key_state(ev_set_key_callback set_key_cb, void* data) { |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 196 | #else |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 197 | int ev_sync_key_state(const ev_set_key_callback& set_key_cb) { |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 198 | #endif |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 199 | // Use unsigned long to match ioctl's parameter type. |
| 200 | unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)]; // NOLINT |
| 201 | unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)]; // NOLINT |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 202 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 203 | for (size_t i = 0; i < g_ev_dev_count; ++i) { |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 204 | memset(ev_bits, 0, sizeof(ev_bits)); |
| 205 | memset(key_bits, 0, sizeof(key_bits)); |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 206 | |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 207 | if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) { |
| 208 | continue; |
| 209 | } |
| 210 | if (!test_bit(EV_KEY, ev_bits)) { |
| 211 | continue; |
| 212 | } |
| 213 | if (ioctl(ev_fdinfo[i].fd, EVIOCGKEY(sizeof(key_bits)), key_bits) == -1) { |
| 214 | continue; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 217 | for (int code = 0; code <= KEY_MAX; code++) { |
| 218 | if (test_bit(code, key_bits)) { |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 219 | #ifdef TW_USE_MINUI_WITH_DATA |
| 220 | set_key_cb(code, 1, data); |
| 221 | #else |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 222 | set_key_cb(code, 1); |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 223 | #endif |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 224 | } |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | return 0; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Chih-Hung Hsieh | 23abfd3 | 2016-07-27 10:19:47 -0700 | [diff] [blame] | 231 | void ev_iterate_available_keys(const std::function<void(int)>& f) { |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 232 | // Use unsigned long to match ioctl's parameter type. |
| 233 | unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)]; // NOLINT |
| 234 | unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)]; // NOLINT |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 235 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 236 | for (size_t i = 0; i < g_ev_dev_count; ++i) { |
| 237 | memset(ev_bits, 0, sizeof(ev_bits)); |
| 238 | memset(key_bits, 0, sizeof(key_bits)); |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 239 | |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 240 | // Does this device even have keys? |
| 241 | if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) { |
| 242 | continue; |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 243 | } |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 244 | if (!test_bit(EV_KEY, ev_bits)) { |
| 245 | continue; |
| 246 | } |
| 247 | |
| 248 | if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(EV_KEY, KEY_MAX), key_bits) == -1) { |
| 249 | continue; |
| 250 | } |
| 251 | |
| 252 | for (int key_code = 0; key_code <= KEY_MAX; ++key_code) { |
| 253 | if (test_bit(key_code, key_bits)) { |
| 254 | f(key_code); |
| 255 | } |
| 256 | } |
| 257 | } |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 258 | } |
Tao Bao | af9f8b4 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 259 | |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 260 | #ifdef TW_USE_MINUI_WITH_OPTIONAL_TOUCH_EVENTS |
Tao Bao | af9f8b4 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 261 | void ev_iterate_touch_inputs(const std::function<void(int)>& action) { |
Tao Bao | 835bf09 | 2019-03-11 14:13:21 -0700 | [diff] [blame] | 262 | for (size_t i = 0; i < g_ev_dev_count; ++i) { |
Tao Bao | af9f8b4 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 263 | // Use unsigned long to match ioctl's parameter type. |
| 264 | unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)] = {}; // NOLINT |
| 265 | if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) { |
| 266 | continue; |
| 267 | } |
| 268 | if (!test_bit(EV_ABS, ev_bits)) { |
| 269 | continue; |
| 270 | } |
| 271 | |
| 272 | unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)] = {}; // NOLINT |
| 273 | if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(EV_ABS, KEY_MAX), key_bits) == -1) { |
| 274 | continue; |
| 275 | } |
| 276 | |
| 277 | for (int key_code = 0; key_code <= KEY_MAX; ++key_code) { |
| 278 | if (test_bit(key_code, key_bits)) { |
| 279 | action(key_code); |
| 280 | } |
| 281 | } |
| 282 | } |
| 283 | } |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 284 | #endif |