blob: 0b4540bfb79960a2dde89d090026cb3511dc1a79 [file] [log] [blame]
Elliott Hughes07138192015-04-10 09:40:53 -07001/*
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 Albertc8686b42017-10-11 11:47:54 -070018#include <errno.h>
Elliott Hughes07138192015-04-10 09:40:53 -070019#include <fcntl.h>
Tao Bao0b1118d2017-01-14 07:46:10 -080020#include <linux/input.h>
Elliott Hughes07138192015-04-10 09:40:53 -070021#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <sys/epoll.h>
Tao Bao0b1118d2017-01-14 07:46:10 -080025#include <sys/ioctl.h>
Tao Bao835bf092019-03-11 14:13:21 -070026#include <sys/types.h>
Elliott Hughes07138192015-04-10 09:40:53 -070027#include <unistd.h>
28
Tao Bao9468fc02017-03-17 00:57:37 -070029#include <functional>
Tao Bao835bf092019-03-11 14:13:21 -070030#include <memory>
31
32#include <android-base/unique_fd.h>
Elliott Hughes07138192015-04-10 09:40:53 -070033
Tao Bao0ecbd762017-01-16 21:16:58 -080034#include "minui/minui.h"
Elliott Hughes07138192015-04-10 09:40:53 -070035
Tao Bao835bf092019-03-11 14:13:21 -070036constexpr size_t MAX_DEVICES = 16;
37constexpr size_t MAX_MISC_FDS = 16;
Elliott Hughes07138192015-04-10 09:40:53 -070038
Tao Bao835bf092019-03-11 14:13:21 -070039constexpr size_t BITS_PER_LONG = sizeof(unsigned long) * 8;
40constexpr size_t BITS_TO_LONGS(size_t bits) {
41 return ((bits + BITS_PER_LONG - 1) / BITS_PER_LONG);
42}
Elliott Hughes07138192015-04-10 09:40:53 -070043
Tao Bao835bf092019-03-11 14:13:21 -070044struct FdInfo {
45 android::base::unique_fd fd;
Tao Bao0b1118d2017-01-14 07:46:10 -080046 ev_callback cb;
Ethan Yonker8373cfe2017-09-08 06:50:54 -050047#ifdef TW_USE_MINUI_WITH_DATA
48 void* data;
49#endif
Elliott Hughes07138192015-04-10 09:40:53 -070050};
51
Tao Bao835bf092019-03-11 14:13:21 -070052static android::base::unique_fd g_epoll_fd;
53static epoll_event g_polled_events[MAX_DEVICES + MAX_MISC_FDS];
54static int g_polled_events_count;
Elliott Hughes07138192015-04-10 09:40:53 -070055
Tao Bao835bf092019-03-11 14:13:21 -070056static FdInfo ev_fdinfo[MAX_DEVICES + MAX_MISC_FDS];
Elliott Hughes07138192015-04-10 09:40:53 -070057
Tao Bao835bf092019-03-11 14:13:21 -070058static size_t g_ev_count = 0;
59static size_t g_ev_dev_count = 0;
60static size_t g_ev_misc_count = 0;
Elliott Hughes07138192015-04-10 09:40:53 -070061
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -070062static bool test_bit(size_t bit, unsigned long* array) { // NOLINT
Tao Bao835bf092019-03-11 14:13:21 -070063 return (array[bit / BITS_PER_LONG] & (1UL << (bit % BITS_PER_LONG))) != 0;
Elliott Hughes07138192015-04-10 09:40:53 -070064}
65
Ethan Yonkerecbd3e82017-12-14 14:43:59 -060066#ifdef TW_USE_MINUI_WITH_OPTIONAL_TOUCH_EVENTS
Tao Baoaf9f8b42017-07-28 00:05:40 -070067int ev_init(ev_callback input_cb, bool allow_touch_inputs) {
bigbiff26d5d5f2020-03-23 09:56:16 -040068<<<<<<< HEAD
Ethan Yonkerecbd3e82017-12-14 14:43:59 -060069#else
Ethan Yonker8373cfe2017-09-08 06:50:54 -050070#ifdef TW_USE_MINUI_WITH_DATA
Elliott Hughes07138192015-04-10 09:40:53 -070071int ev_init(ev_callback input_cb, void* data) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -050072#else
Tao Bao0b1118d2017-01-14 07:46:10 -080073int ev_init(ev_callback input_cb) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -050074#endif
Ethan Yonkerecbd3e82017-12-14 14:43:59 -060075 bool allow_touch_inputs = false;
76#endif
Elliott Hughes07138192015-04-10 09:40:53 -070077
Tao Bao0b1118d2017-01-14 07:46:10 -080078 g_epoll_fd = epoll_create(MAX_DEVICES + MAX_MISC_FDS);
79 if (g_epoll_fd == -1) {
bigbiff26d5d5f2020-03-23 09:56:16 -040080=======
Tao Bao835bf092019-03-11 14:13:21 -070081 g_epoll_fd.reset();
82
83 android::base::unique_fd epoll_fd(epoll_create1(EPOLL_CLOEXEC));
84 if (epoll_fd == -1) {
bigbiff26d5d5f2020-03-23 09:56:16 -040085>>>>>>> android-10.0.0_r25
Tao Bao0b1118d2017-01-14 07:46:10 -080086 return -1;
87 }
88
Tao Bao835bf092019-03-11 14:13:21 -070089 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir("/dev/input"), closedir);
90 if (!dir) {
91 return -1;
92 }
Tao Bao0b1118d2017-01-14 07:46:10 -080093
Tao Bao835bf092019-03-11 14:13:21 -070094 bool epoll_ctl_failed = false;
95 dirent* de;
96 while ((de = readdir(dir.get())) != nullptr) {
97 if (strncmp(de->d_name, "event", 5)) continue;
98 android::base::unique_fd fd(openat(dirfd(dir.get()), de->d_name, O_RDONLY | O_CLOEXEC));
99 if (fd == -1) continue;
Tao Baoaf9f8b42017-07-28 00:05:40 -0700100
Tao Bao835bf092019-03-11 14:13:21 -0700101 // Use unsigned long to match ioctl's parameter type.
102 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)]; // NOLINT
Tao Bao0b1118d2017-01-14 07:46:10 -0800103
Tao Bao835bf092019-03-11 14:13:21 -0700104 // Read the evbits of the input device.
105 if (ioctl(fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) {
106 continue;
Elliott Hughes07138192015-04-10 09:40:53 -0700107 }
108
Tao Bao835bf092019-03-11 14:13:21 -0700109 // We assume that only EV_KEY, EV_REL, and EV_SW event types are ever needed. EV_ABS is also
110 // allowed if allow_touch_inputs is set.
111 if (!test_bit(EV_KEY, ev_bits) && !test_bit(EV_REL, ev_bits) && !test_bit(EV_SW, ev_bits)) {
112 if (!allow_touch_inputs || !test_bit(EV_ABS, ev_bits)) {
Elliott Hughes07138192015-04-10 09:40:53 -0700113 continue;
114 }
Tao Bao835bf092019-03-11 14:13:21 -0700115 }
Elliott Hughes07138192015-04-10 09:40:53 -0700116
bigbiff26d5d5f2020-03-23 09:56:16 -0400117<<<<<<< HEAD
Elliott Hughes07138192015-04-10 09:40:53 -0700118 ev_fdinfo[ev_count].fd = fd;
119 ev_fdinfo[ev_count].cb = std::move(input_cb);
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500120#ifdef TW_USE_MINUI_WITH_DATA
121 ev_fdinfo[ev_count].data = data;
122#endif
Elliott Hughes07138192015-04-10 09:40:53 -0700123 ev_count++;
124 ev_dev_count++;
125 if (ev_dev_count == MAX_DEVICES) break;
bigbiff26d5d5f2020-03-23 09:56:16 -0400126=======
Tao Bao835bf092019-03-11 14:13:21 -0700127 epoll_event ev;
128 ev.events = EPOLLIN | EPOLLWAKEUP;
129 ev.data.ptr = &ev_fdinfo[g_ev_count];
130 if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fd, &ev) == -1) {
131 epoll_ctl_failed = true;
132 continue;
bigbiff26d5d5f2020-03-23 09:56:16 -0400133>>>>>>> android-10.0.0_r25
Elliott Hughes07138192015-04-10 09:40:53 -0700134 }
135
Tao Bao835bf092019-03-11 14:13:21 -0700136 ev_fdinfo[g_ev_count].fd.reset(fd.release());
137 ev_fdinfo[g_ev_count].cb = input_cb;
138 g_ev_count++;
139 g_ev_dev_count++;
140 if (g_ev_dev_count == MAX_DEVICES) break;
Tao Bao0b1118d2017-01-14 07:46:10 -0800141 }
Elliott Hughes07138192015-04-10 09:40:53 -0700142
Tao Bao835bf092019-03-11 14:13:21 -0700143 if (epoll_ctl_failed && !g_ev_count) {
Tao Bao0b1118d2017-01-14 07:46:10 -0800144 return -1;
145 }
Elliott Hughes07138192015-04-10 09:40:53 -0700146
Tao Bao835bf092019-03-11 14:13:21 -0700147 g_epoll_fd.reset(epoll_fd.release());
Tao Bao0b1118d2017-01-14 07:46:10 -0800148 return 0;
Elliott Hughes07138192015-04-10 09:40:53 -0700149}
150
151int ev_get_epollfd(void) {
Tao Bao835bf092019-03-11 14:13:21 -0700152 return g_epoll_fd.get();
Elliott Hughes07138192015-04-10 09:40:53 -0700153}
154
bigbiff26d5d5f2020-03-23 09:56:16 -0400155<<<<<<< HEAD
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500156#ifdef TW_USE_MINUI_WITH_DATA
Elliott Hughes07138192015-04-10 09:40:53 -0700157int ev_add_fd(int fd, ev_callback cb, void* data) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500158#else
Tao Bao0b1118d2017-01-14 07:46:10 -0800159int ev_add_fd(int fd, ev_callback cb) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500160#endif
Tao Bao0b1118d2017-01-14 07:46:10 -0800161 if (ev_misc_count == MAX_MISC_FDS || cb == NULL) {
bigbiff26d5d5f2020-03-23 09:56:16 -0400162=======
Tao Bao835bf092019-03-11 14:13:21 -0700163int ev_add_fd(android::base::unique_fd&& fd, ev_callback cb) {
164 if (g_ev_misc_count == MAX_MISC_FDS || cb == nullptr) {
bigbiff26d5d5f2020-03-23 09:56:16 -0400165>>>>>>> android-10.0.0_r25
Tao Bao0b1118d2017-01-14 07:46:10 -0800166 return -1;
167 }
Elliott Hughes07138192015-04-10 09:40:53 -0700168
Tao Bao0b1118d2017-01-14 07:46:10 -0800169 epoll_event ev;
170 ev.events = EPOLLIN | EPOLLWAKEUP;
Tao Bao835bf092019-03-11 14:13:21 -0700171 ev.data.ptr = static_cast<void*>(&ev_fdinfo[g_ev_count]);
Tao Bao0b1118d2017-01-14 07:46:10 -0800172 int ret = epoll_ctl(g_epoll_fd, EPOLL_CTL_ADD, fd, &ev);
173 if (!ret) {
bigbiff26d5d5f2020-03-23 09:56:16 -0400174<<<<<<< HEAD
Tao Bao0b1118d2017-01-14 07:46:10 -0800175 ev_fdinfo[ev_count].fd = fd;
176 ev_fdinfo[ev_count].cb = std::move(cb);
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500177#ifdef TW_USE_MINUI_WITH_DATA
178 ev_fdinfo[ev_count].data = data;
179#endif
Tao Bao0b1118d2017-01-14 07:46:10 -0800180 ev_count++;
181 ev_misc_count++;
bigbiff26d5d5f2020-03-23 09:56:16 -0400182=======
Tao Bao835bf092019-03-11 14:13:21 -0700183 ev_fdinfo[g_ev_count].fd.reset(fd.release());
184 ev_fdinfo[g_ev_count].cb = std::move(cb);
185 g_ev_count++;
186 g_ev_misc_count++;
bigbiff26d5d5f2020-03-23 09:56:16 -0400187>>>>>>> android-10.0.0_r25
Tao Bao0b1118d2017-01-14 07:46:10 -0800188 }
Elliott Hughes07138192015-04-10 09:40:53 -0700189
Tao Bao0b1118d2017-01-14 07:46:10 -0800190 return ret;
Elliott Hughes07138192015-04-10 09:40:53 -0700191}
192
193void ev_exit(void) {
Tao Bao835bf092019-03-11 14:13:21 -0700194 while (g_ev_count > 0) {
195 ev_fdinfo[--g_ev_count].fd.reset();
196 }
197 g_ev_misc_count = 0;
198 g_ev_dev_count = 0;
199 g_epoll_fd.reset();
Elliott Hughes07138192015-04-10 09:40:53 -0700200}
201
202int ev_wait(int timeout) {
Tao Bao835bf092019-03-11 14:13:21 -0700203 g_polled_events_count = epoll_wait(g_epoll_fd, g_polled_events, g_ev_count, timeout);
204 if (g_polled_events_count <= 0) {
205 return -1;
206 }
207 return 0;
Elliott Hughes07138192015-04-10 09:40:53 -0700208}
209
210void ev_dispatch(void) {
Tao Bao835bf092019-03-11 14:13:21 -0700211 for (int n = 0; n < g_polled_events_count; n++) {
212 FdInfo* fdi = static_cast<FdInfo*>(g_polled_events[n].data.ptr);
Tao Bao0b1118d2017-01-14 07:46:10 -0800213 const ev_callback& cb = fdi->cb;
214 if (cb) {
bigbiff26d5d5f2020-03-23 09:56:16 -0400215<<<<<<< HEAD
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500216#ifdef TW_USE_MINUI_WITH_DATA
217 cb(fdi->fd, polledevents[n].events, fdi->data);
218#else
Tao Bao0b1118d2017-01-14 07:46:10 -0800219 cb(fdi->fd, polledevents[n].events);
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500220#endif
bigbiff26d5d5f2020-03-23 09:56:16 -0400221=======
Tao Bao835bf092019-03-11 14:13:21 -0700222 cb(fdi->fd, g_polled_events[n].events);
bigbiff26d5d5f2020-03-23 09:56:16 -0400223>>>>>>> android-10.0.0_r25
Elliott Hughes07138192015-04-10 09:40:53 -0700224 }
Tao Bao0b1118d2017-01-14 07:46:10 -0800225 }
Elliott Hughes07138192015-04-10 09:40:53 -0700226}
227
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700228int ev_get_input(int fd, uint32_t epevents, input_event* ev) {
Elliott Hughes07138192015-04-10 09:40:53 -0700229 if (epevents & EPOLLIN) {
Elliott Hughes2f5feed2015-04-28 17:24:24 -0700230 ssize_t r = TEMP_FAILURE_RETRY(read(fd, ev, sizeof(*ev)));
Elliott Hughes07138192015-04-10 09:40:53 -0700231 if (r == sizeof(*ev)) {
232 return 0;
233 }
234 }
235 return -1;
236}
237
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500238#ifdef TW_USE_MINUI_WITH_DATA
Elliott Hughes07138192015-04-10 09:40:53 -0700239int ev_sync_key_state(ev_set_key_callback set_key_cb, void* data) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500240#else
Tao Bao0b1118d2017-01-14 07:46:10 -0800241int ev_sync_key_state(const ev_set_key_callback& set_key_cb) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500242#endif
Tao Bao0b1118d2017-01-14 07:46:10 -0800243 // Use unsigned long to match ioctl's parameter type.
244 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)]; // NOLINT
245 unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)]; // NOLINT
Elliott Hughes07138192015-04-10 09:40:53 -0700246
Tao Bao835bf092019-03-11 14:13:21 -0700247 for (size_t i = 0; i < g_ev_dev_count; ++i) {
Tao Bao0b1118d2017-01-14 07:46:10 -0800248 memset(ev_bits, 0, sizeof(ev_bits));
249 memset(key_bits, 0, sizeof(key_bits));
Elliott Hughes07138192015-04-10 09:40:53 -0700250
Tao Bao0b1118d2017-01-14 07:46:10 -0800251 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) {
252 continue;
253 }
254 if (!test_bit(EV_KEY, ev_bits)) {
255 continue;
256 }
257 if (ioctl(ev_fdinfo[i].fd, EVIOCGKEY(sizeof(key_bits)), key_bits) == -1) {
258 continue;
Elliott Hughes07138192015-04-10 09:40:53 -0700259 }
260
Tao Bao0b1118d2017-01-14 07:46:10 -0800261 for (int code = 0; code <= KEY_MAX; code++) {
262 if (test_bit(code, key_bits)) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500263#ifdef TW_USE_MINUI_WITH_DATA
264 set_key_cb(code, 1, data);
265#else
Tao Bao0b1118d2017-01-14 07:46:10 -0800266 set_key_cb(code, 1);
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500267#endif
Tao Bao0b1118d2017-01-14 07:46:10 -0800268 }
269 }
270 }
271
272 return 0;
Elliott Hughes07138192015-04-10 09:40:53 -0700273}
274
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -0700275void ev_iterate_available_keys(const std::function<void(int)>& f) {
Tao Bao835bf092019-03-11 14:13:21 -0700276 // Use unsigned long to match ioctl's parameter type.
277 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)]; // NOLINT
278 unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)]; // NOLINT
Elliott Hughes07138192015-04-10 09:40:53 -0700279
Tao Bao835bf092019-03-11 14:13:21 -0700280 for (size_t i = 0; i < g_ev_dev_count; ++i) {
281 memset(ev_bits, 0, sizeof(ev_bits));
282 memset(key_bits, 0, sizeof(key_bits));
Elliott Hughes07138192015-04-10 09:40:53 -0700283
Tao Bao835bf092019-03-11 14:13:21 -0700284 // Does this device even have keys?
285 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) {
286 continue;
Elliott Hughes07138192015-04-10 09:40:53 -0700287 }
Tao Bao835bf092019-03-11 14:13:21 -0700288 if (!test_bit(EV_KEY, ev_bits)) {
289 continue;
290 }
291
292 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(EV_KEY, KEY_MAX), key_bits) == -1) {
293 continue;
294 }
295
296 for (int key_code = 0; key_code <= KEY_MAX; ++key_code) {
297 if (test_bit(key_code, key_bits)) {
298 f(key_code);
299 }
300 }
301 }
Elliott Hughes07138192015-04-10 09:40:53 -0700302}
Tao Baoaf9f8b42017-07-28 00:05:40 -0700303
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600304#ifdef TW_USE_MINUI_WITH_OPTIONAL_TOUCH_EVENTS
Tao Baoaf9f8b42017-07-28 00:05:40 -0700305void ev_iterate_touch_inputs(const std::function<void(int)>& action) {
Tao Bao835bf092019-03-11 14:13:21 -0700306 for (size_t i = 0; i < g_ev_dev_count; ++i) {
Tao Baoaf9f8b42017-07-28 00:05:40 -0700307 // Use unsigned long to match ioctl's parameter type.
308 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)] = {}; // NOLINT
309 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) {
310 continue;
311 }
312 if (!test_bit(EV_ABS, ev_bits)) {
313 continue;
314 }
315
316 unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)] = {}; // NOLINT
317 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(EV_ABS, KEY_MAX), key_bits) == -1) {
318 continue;
319 }
320
321 for (int key_code = 0; key_code <= KEY_MAX; ++key_code) {
322 if (test_bit(key_code, key_bits)) {
323 action(key_code);
324 }
325 }
326 }
327}
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600328#endif