blob: f3eaa1e0ac255cffa18fe071bccff2dadc3300af [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) {
Tao Bao835bf092019-03-11 14:13:21 -070068 g_epoll_fd.reset();
69
70 android::base::unique_fd epoll_fd(epoll_create1(EPOLL_CLOEXEC));
71 if (epoll_fd == -1) {
Tao Bao0b1118d2017-01-14 07:46:10 -080072 return -1;
73 }
74
Tao Bao835bf092019-03-11 14:13:21 -070075 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir("/dev/input"), closedir);
76 if (!dir) {
77 return -1;
78 }
Tao Bao0b1118d2017-01-14 07:46:10 -080079
Tao Bao835bf092019-03-11 14:13:21 -070080 bool epoll_ctl_failed = false;
81 dirent* de;
82 while ((de = readdir(dir.get())) != nullptr) {
83 if (strncmp(de->d_name, "event", 5)) continue;
84 android::base::unique_fd fd(openat(dirfd(dir.get()), de->d_name, O_RDONLY | O_CLOEXEC));
85 if (fd == -1) continue;
Tao Baoaf9f8b42017-07-28 00:05:40 -070086
Tao Bao835bf092019-03-11 14:13:21 -070087 // Use unsigned long to match ioctl's parameter type.
88 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)]; // NOLINT
Tao Bao0b1118d2017-01-14 07:46:10 -080089
Tao Bao835bf092019-03-11 14:13:21 -070090 // Read the evbits of the input device.
91 if (ioctl(fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) {
92 continue;
Elliott Hughes07138192015-04-10 09:40:53 -070093 }
94
Tao Bao835bf092019-03-11 14:13:21 -070095 // We assume that only EV_KEY, EV_REL, and EV_SW event types are ever needed. EV_ABS is also
96 // allowed if allow_touch_inputs is set.
97 if (!test_bit(EV_KEY, ev_bits) && !test_bit(EV_REL, ev_bits) && !test_bit(EV_SW, ev_bits)) {
98 if (!allow_touch_inputs || !test_bit(EV_ABS, ev_bits)) {
Elliott Hughes07138192015-04-10 09:40:53 -070099 continue;
100 }
Tao Bao835bf092019-03-11 14:13:21 -0700101 }
Elliott Hughes07138192015-04-10 09:40:53 -0700102
Tao Bao835bf092019-03-11 14:13:21 -0700103 epoll_event ev;
104 ev.events = EPOLLIN | EPOLLWAKEUP;
105 ev.data.ptr = &ev_fdinfo[g_ev_count];
106 if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fd, &ev) == -1) {
107 epoll_ctl_failed = true;
108 continue;
Elliott Hughes07138192015-04-10 09:40:53 -0700109 }
110
Tao Bao835bf092019-03-11 14:13:21 -0700111 ev_fdinfo[g_ev_count].fd.reset(fd.release());
112 ev_fdinfo[g_ev_count].cb = input_cb;
113 g_ev_count++;
114 g_ev_dev_count++;
115 if (g_ev_dev_count == MAX_DEVICES) break;
Tao Bao0b1118d2017-01-14 07:46:10 -0800116 }
Elliott Hughes07138192015-04-10 09:40:53 -0700117
Tao Bao835bf092019-03-11 14:13:21 -0700118 if (epoll_ctl_failed && !g_ev_count) {
Tao Bao0b1118d2017-01-14 07:46:10 -0800119 return -1;
120 }
Elliott Hughes07138192015-04-10 09:40:53 -0700121
Tao Bao835bf092019-03-11 14:13:21 -0700122 g_epoll_fd.reset(epoll_fd.release());
Tao Bao0b1118d2017-01-14 07:46:10 -0800123 return 0;
Elliott Hughes07138192015-04-10 09:40:53 -0700124}
125
126int ev_get_epollfd(void) {
Tao Bao835bf092019-03-11 14:13:21 -0700127 return g_epoll_fd.get();
Elliott Hughes07138192015-04-10 09:40:53 -0700128}
129
Tao Bao835bf092019-03-11 14:13:21 -0700130int ev_add_fd(android::base::unique_fd&& fd, ev_callback cb) {
131 if (g_ev_misc_count == MAX_MISC_FDS || cb == nullptr) {
Tao Bao0b1118d2017-01-14 07:46:10 -0800132 return -1;
133 }
Elliott Hughes07138192015-04-10 09:40:53 -0700134
Tao Bao0b1118d2017-01-14 07:46:10 -0800135 epoll_event ev;
136 ev.events = EPOLLIN | EPOLLWAKEUP;
Tao Bao835bf092019-03-11 14:13:21 -0700137 ev.data.ptr = static_cast<void*>(&ev_fdinfo[g_ev_count]);
Tao Bao0b1118d2017-01-14 07:46:10 -0800138 int ret = epoll_ctl(g_epoll_fd, EPOLL_CTL_ADD, fd, &ev);
139 if (!ret) {
Tao Bao835bf092019-03-11 14:13:21 -0700140 ev_fdinfo[g_ev_count].fd.reset(fd.release());
141 ev_fdinfo[g_ev_count].cb = std::move(cb);
142 g_ev_count++;
143 g_ev_misc_count++;
Tao Bao0b1118d2017-01-14 07:46:10 -0800144 }
Elliott Hughes07138192015-04-10 09:40:53 -0700145
Tao Bao0b1118d2017-01-14 07:46:10 -0800146 return ret;
Elliott Hughes07138192015-04-10 09:40:53 -0700147}
148
149void ev_exit(void) {
Tao Bao835bf092019-03-11 14:13:21 -0700150 while (g_ev_count > 0) {
151 ev_fdinfo[--g_ev_count].fd.reset();
152 }
153 g_ev_misc_count = 0;
154 g_ev_dev_count = 0;
155 g_epoll_fd.reset();
Elliott Hughes07138192015-04-10 09:40:53 -0700156}
157
158int ev_wait(int timeout) {
Tao Bao835bf092019-03-11 14:13:21 -0700159 g_polled_events_count = epoll_wait(g_epoll_fd, g_polled_events, g_ev_count, timeout);
160 if (g_polled_events_count <= 0) {
161 return -1;
162 }
163 return 0;
Elliott Hughes07138192015-04-10 09:40:53 -0700164}
165
166void ev_dispatch(void) {
Tao Bao835bf092019-03-11 14:13:21 -0700167 for (int n = 0; n < g_polled_events_count; n++) {
168 FdInfo* fdi = static_cast<FdInfo*>(g_polled_events[n].data.ptr);
Tao Bao0b1118d2017-01-14 07:46:10 -0800169 const ev_callback& cb = fdi->cb;
170 if (cb) {
Tao Bao835bf092019-03-11 14:13:21 -0700171 cb(fdi->fd, g_polled_events[n].events);
Elliott Hughes07138192015-04-10 09:40:53 -0700172 }
Tao Bao0b1118d2017-01-14 07:46:10 -0800173 }
Elliott Hughes07138192015-04-10 09:40:53 -0700174}
175
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700176int ev_get_input(int fd, uint32_t epevents, input_event* ev) {
Elliott Hughes07138192015-04-10 09:40:53 -0700177 if (epevents & EPOLLIN) {
Elliott Hughes2f5feed2015-04-28 17:24:24 -0700178 ssize_t r = TEMP_FAILURE_RETRY(read(fd, ev, sizeof(*ev)));
Elliott Hughes07138192015-04-10 09:40:53 -0700179 if (r == sizeof(*ev)) {
180 return 0;
181 }
182 }
183 return -1;
184}
185
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500186#ifdef TW_USE_MINUI_WITH_DATA
Elliott Hughes07138192015-04-10 09:40:53 -0700187int ev_sync_key_state(ev_set_key_callback set_key_cb, void* data) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500188#else
Tao Bao0b1118d2017-01-14 07:46:10 -0800189int ev_sync_key_state(const ev_set_key_callback& set_key_cb) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500190#endif
Tao Bao0b1118d2017-01-14 07:46:10 -0800191 // Use unsigned long to match ioctl's parameter type.
192 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)]; // NOLINT
193 unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)]; // NOLINT
Elliott Hughes07138192015-04-10 09:40:53 -0700194
Tao Bao835bf092019-03-11 14:13:21 -0700195 for (size_t i = 0; i < g_ev_dev_count; ++i) {
Tao Bao0b1118d2017-01-14 07:46:10 -0800196 memset(ev_bits, 0, sizeof(ev_bits));
197 memset(key_bits, 0, sizeof(key_bits));
Elliott Hughes07138192015-04-10 09:40:53 -0700198
Tao Bao0b1118d2017-01-14 07:46:10 -0800199 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) {
200 continue;
201 }
202 if (!test_bit(EV_KEY, ev_bits)) {
203 continue;
204 }
205 if (ioctl(ev_fdinfo[i].fd, EVIOCGKEY(sizeof(key_bits)), key_bits) == -1) {
206 continue;
Elliott Hughes07138192015-04-10 09:40:53 -0700207 }
208
Tao Bao0b1118d2017-01-14 07:46:10 -0800209 for (int code = 0; code <= KEY_MAX; code++) {
210 if (test_bit(code, key_bits)) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500211#ifdef TW_USE_MINUI_WITH_DATA
212 set_key_cb(code, 1, data);
213#else
Tao Bao0b1118d2017-01-14 07:46:10 -0800214 set_key_cb(code, 1);
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500215#endif
Tao Bao0b1118d2017-01-14 07:46:10 -0800216 }
217 }
218 }
219
220 return 0;
Elliott Hughes07138192015-04-10 09:40:53 -0700221}
222
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -0700223void ev_iterate_available_keys(const std::function<void(int)>& f) {
Tao Bao835bf092019-03-11 14:13:21 -0700224 // Use unsigned long to match ioctl's parameter type.
225 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)]; // NOLINT
226 unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)]; // NOLINT
Elliott Hughes07138192015-04-10 09:40:53 -0700227
Tao Bao835bf092019-03-11 14:13:21 -0700228 for (size_t i = 0; i < g_ev_dev_count; ++i) {
229 memset(ev_bits, 0, sizeof(ev_bits));
230 memset(key_bits, 0, sizeof(key_bits));
Elliott Hughes07138192015-04-10 09:40:53 -0700231
Tao Bao835bf092019-03-11 14:13:21 -0700232 // Does this device even have keys?
233 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) {
234 continue;
Elliott Hughes07138192015-04-10 09:40:53 -0700235 }
Tao Bao835bf092019-03-11 14:13:21 -0700236 if (!test_bit(EV_KEY, ev_bits)) {
237 continue;
238 }
239
240 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(EV_KEY, KEY_MAX), key_bits) == -1) {
241 continue;
242 }
243
244 for (int key_code = 0; key_code <= KEY_MAX; ++key_code) {
245 if (test_bit(key_code, key_bits)) {
246 f(key_code);
247 }
248 }
249 }
Elliott Hughes07138192015-04-10 09:40:53 -0700250}
Tao Baoaf9f8b42017-07-28 00:05:40 -0700251
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600252#ifdef TW_USE_MINUI_WITH_OPTIONAL_TOUCH_EVENTS
Tao Baoaf9f8b42017-07-28 00:05:40 -0700253void ev_iterate_touch_inputs(const std::function<void(int)>& action) {
Tao Bao835bf092019-03-11 14:13:21 -0700254 for (size_t i = 0; i < g_ev_dev_count; ++i) {
Tao Baoaf9f8b42017-07-28 00:05:40 -0700255 // Use unsigned long to match ioctl's parameter type.
256 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)] = {}; // NOLINT
257 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) == -1) {
258 continue;
259 }
260 if (!test_bit(EV_ABS, ev_bits)) {
261 continue;
262 }
263
264 unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)] = {}; // NOLINT
265 if (ioctl(ev_fdinfo[i].fd, EVIOCGBIT(EV_ABS, KEY_MAX), key_bits) == -1) {
266 continue;
267 }
268
269 for (int key_code = 0; key_code <= KEY_MAX; ++key_code) {
270 if (test_bit(key_code, key_bits)) {
271 action(key_code);
272 }
273 }
274 }
275}
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600276#endif