blob: b8cf15ab452a50a51949776c8e0a708a6a5a5820 [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
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 <stdio.h>
18#include <stdlib.h>
19#include <fcntl.h>
20#include <dirent.h>
Ethan Yonker304f32f2014-11-07 10:14:05 -060021#include <sys/epoll.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080022
23#include <linux/input.h>
24
25#include "minui.h"
26
27#define MAX_DEVICES 16
Dima Zavin36583672011-09-02 11:51:31 -070028#define MAX_MISC_FDS 16
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080029
Dima Zavin441031d2011-10-12 15:53:29 -070030#define BITS_PER_LONG (sizeof(unsigned long) * 8)
31#define BITS_TO_LONGS(x) (((x) + BITS_PER_LONG - 1) / BITS_PER_LONG)
32
33#define test_bit(bit, array) \
34 ((array)[(bit)/BITS_PER_LONG] & (1 << ((bit) % BITS_PER_LONG)))
Dima Zavin88e08992011-09-02 14:24:43 -070035
Dima Zavinbc290632011-08-30 11:59:45 -070036struct fd_info {
Ethan Yonker304f32f2014-11-07 10:14:05 -060037 int fd;
Dima Zavinbc290632011-08-30 11:59:45 -070038 ev_callback cb;
39 void *data;
40};
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080041
Ethan Yonker304f32f2014-11-07 10:14:05 -060042static int epollfd;
43static struct epoll_event polledevents[MAX_DEVICES + MAX_MISC_FDS];
44static int npolledevents;
45
Dima Zavin36583672011-09-02 11:51:31 -070046static struct fd_info ev_fdinfo[MAX_DEVICES + MAX_MISC_FDS];
Dima Zavinbc290632011-08-30 11:59:45 -070047
48static unsigned ev_count = 0;
49static unsigned ev_dev_count = 0;
Dima Zavin36583672011-09-02 11:51:31 -070050static unsigned ev_misc_count = 0;
Dima Zavinbc290632011-08-30 11:59:45 -070051
52int ev_init(ev_callback input_cb, void *data)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080053{
54 DIR *dir;
55 struct dirent *de;
56 int fd;
Ethan Yonker304f32f2014-11-07 10:14:05 -060057 struct epoll_event ev;
58 bool epollctlfail = false;
59
60 epollfd = epoll_create(MAX_DEVICES + MAX_MISC_FDS);
61 if (epollfd == -1)
62 return -1;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080063
64 dir = opendir("/dev/input");
65 if(dir != 0) {
66 while((de = readdir(dir))) {
Dima Zavin441031d2011-10-12 15:53:29 -070067 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)];
Dima Zavin88e08992011-09-02 14:24:43 -070068
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069// fprintf(stderr,"/dev/input/%s\n", de->d_name);
70 if(strncmp(de->d_name,"event",5)) continue;
71 fd = openat(dirfd(dir), de->d_name, O_RDONLY);
72 if(fd < 0) continue;
73
Dima Zavin88e08992011-09-02 14:24:43 -070074 /* read the evbits of the input device */
75 if (ioctl(fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits) < 0) {
76 close(fd);
77 continue;
78 }
79
80 /* TODO: add ability to specify event masks. For now, just assume
81 * that only EV_KEY and EV_REL event types are ever needed. */
82 if (!test_bit(EV_KEY, ev_bits) && !test_bit(EV_REL, ev_bits)) {
83 close(fd);
84 continue;
85 }
86
Ethan Yonker452e4202014-12-11 10:35:52 -060087#ifdef EPOLLWAKEUP
Ethan Yonker304f32f2014-11-07 10:14:05 -060088 ev.events = EPOLLIN | EPOLLWAKEUP;
Ethan Yonker452e4202014-12-11 10:35:52 -060089#else
90 ev.events = EPOLLIN;
91#endif
Ethan Yonker304f32f2014-11-07 10:14:05 -060092 ev.data.ptr = (void *)&ev_fdinfo[ev_count];
93 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, fd, &ev)) {
94 close(fd);
95 epollctlfail = true;
96 continue;
97 }
98
99 ev_fdinfo[ev_count].fd = fd;
Dima Zavinbc290632011-08-30 11:59:45 -0700100 ev_fdinfo[ev_count].cb = input_cb;
101 ev_fdinfo[ev_count].data = data;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800102 ev_count++;
Dima Zavin36583672011-09-02 11:51:31 -0700103 ev_dev_count++;
104 if(ev_dev_count == MAX_DEVICES) break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800105 }
106 }
107
Ethan Yonker304f32f2014-11-07 10:14:05 -0600108 if (epollctlfail && !ev_count) {
109 close(epollfd);
110 epollfd = -1;
111 return -1;
112 }
113
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800114 return 0;
115}
116
Dima Zavin36583672011-09-02 11:51:31 -0700117int ev_add_fd(int fd, ev_callback cb, void *data)
118{
Ethan Yonker304f32f2014-11-07 10:14:05 -0600119 struct epoll_event ev;
120 int ret;
121
Dima Zavin36583672011-09-02 11:51:31 -0700122 if (ev_misc_count == MAX_MISC_FDS || cb == NULL)
123 return -1;
124
Ethan Yonker452e4202014-12-11 10:35:52 -0600125#ifdef EPOLLWAKEUP
Ethan Yonker304f32f2014-11-07 10:14:05 -0600126 ev.events = EPOLLIN | EPOLLWAKEUP;
Ethan Yonker452e4202014-12-11 10:35:52 -0600127#else
128 ev.events = EPOLLIN;
129#endif
Ethan Yonker304f32f2014-11-07 10:14:05 -0600130 ev.data.ptr = (void *)&ev_fdinfo[ev_count];
131 ret = epoll_ctl(epollfd, EPOLL_CTL_ADD, fd, &ev);
132 if (!ret) {
133 ev_fdinfo[ev_count].fd = fd;
134 ev_fdinfo[ev_count].cb = cb;
135 ev_fdinfo[ev_count].data = data;
136 ev_count++;
137 ev_misc_count++;
138 }
139
140 return ret;
141}
142
143int ev_get_epollfd(void)
144{
145 return epollfd;
Todd Poynor4665ede2013-09-10 17:03:45 -0700146}
147
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800148void ev_exit(void)
149{
150 while (ev_count > 0) {
Ethan Yonker304f32f2014-11-07 10:14:05 -0600151 close(ev_fdinfo[--ev_count].fd);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800152 }
Dima Zavin36583672011-09-02 11:51:31 -0700153 ev_misc_count = 0;
154 ev_dev_count = 0;
Ethan Yonker304f32f2014-11-07 10:14:05 -0600155 close(epollfd);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800156}
157
Dima Zavinbc290632011-08-30 11:59:45 -0700158int ev_wait(int timeout)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800159{
Ethan Yonker304f32f2014-11-07 10:14:05 -0600160 npolledevents = epoll_wait(epollfd, polledevents, ev_count, timeout);
161 if (npolledevents <= 0)
Dima Zavinbc290632011-08-30 11:59:45 -0700162 return -1;
163 return 0;
164}
165
166void ev_dispatch(void)
167{
Ethan Yonker304f32f2014-11-07 10:14:05 -0600168 int n;
Dima Zavinbc290632011-08-30 11:59:45 -0700169 int ret;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800170
Ethan Yonker304f32f2014-11-07 10:14:05 -0600171 for (n = 0; n < npolledevents; n++) {
172 struct fd_info *fdi = polledevents[n].data.ptr;
173 ev_callback cb = fdi->cb;
174 if (cb)
175 cb(fdi->fd, polledevents[n].events, fdi->data);
Dima Zavinbc290632011-08-30 11:59:45 -0700176 }
177}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800178
Ethan Yonker304f32f2014-11-07 10:14:05 -0600179int ev_get_input(int fd, uint32_t epevents, struct input_event *ev)
Dima Zavinbc290632011-08-30 11:59:45 -0700180{
181 int r;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800182
Ethan Yonker304f32f2014-11-07 10:14:05 -0600183 if (epevents & EPOLLIN) {
Dima Zavinbc290632011-08-30 11:59:45 -0700184 r = read(fd, ev, sizeof(*ev));
185 if (r == sizeof(*ev))
186 return 0;
187 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800188 return -1;
189}
Dima Zavin441031d2011-10-12 15:53:29 -0700190
191int ev_sync_key_state(ev_set_key_callback set_key_cb, void *data)
192{
193 unsigned long key_bits[BITS_TO_LONGS(KEY_MAX)];
194 unsigned long ev_bits[BITS_TO_LONGS(EV_MAX)];
195 unsigned i;
196 int ret;
197
198 for (i = 0; i < ev_dev_count; i++) {
199 int code;
200
201 memset(key_bits, 0, sizeof(key_bits));
202 memset(ev_bits, 0, sizeof(ev_bits));
203
Ethan Yonker304f32f2014-11-07 10:14:05 -0600204 ret = ioctl(ev_fdinfo[i].fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits);
Dima Zavin441031d2011-10-12 15:53:29 -0700205 if (ret < 0 || !test_bit(EV_KEY, ev_bits))
206 continue;
207
Ethan Yonker304f32f2014-11-07 10:14:05 -0600208 ret = ioctl(ev_fdinfo[i].fd, EVIOCGKEY(sizeof(key_bits)), key_bits);
Dima Zavin441031d2011-10-12 15:53:29 -0700209 if (ret < 0)
210 continue;
211
212 for (code = 0; code <= KEY_MAX; code++) {
213 if (test_bit(code, key_bits))
214 set_key_cb(code, 1, data);
215 }
216 }
217
218 return 0;
219}