2009-03-04 03:28:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <sys/poll.h>
|
2010-11-25 00:49:52 +00:00
|
|
|
#include <limits.h>
|
2009-03-04 03:28:42 +00:00
|
|
|
|
|
|
|
#include <linux/input.h>
|
|
|
|
|
2010-11-25 00:49:52 +00:00
|
|
|
#include "../common.h"
|
|
|
|
|
2009-03-04 03:28:42 +00:00
|
|
|
#include "minui.h"
|
|
|
|
|
|
|
|
#define MAX_DEVICES 16
|
|
|
|
|
2010-11-27 19:36:23 +00:00
|
|
|
#define VIBRATOR_TIMEOUT_FILE "/sys/class/timed_output/vibrator/enable"
|
|
|
|
#define VIBRATOR_TIME_MS 50
|
|
|
|
|
2010-11-28 04:37:50 +00:00
|
|
|
#define PRESS_THRESHHOLD 10
|
|
|
|
|
2010-12-19 01:42:31 +00:00
|
|
|
#define ABS_MT_POSITION_X 0x35
|
|
|
|
#define ABS_MT_POSITION_Y 0x36
|
|
|
|
#define ABS_MT_TOUCH_MAJOR 0x30
|
|
|
|
#define SYN_MT_REPORT 2
|
|
|
|
|
2010-11-25 00:49:52 +00:00
|
|
|
struct virtualkey {
|
|
|
|
int scancode;
|
|
|
|
int centerx, centery;
|
|
|
|
int width, height;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct position {
|
|
|
|
int x, y;
|
2010-11-28 04:37:50 +00:00
|
|
|
int pressed;
|
2010-11-25 00:49:52 +00:00
|
|
|
struct input_absinfo xi, yi;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ev {
|
|
|
|
struct pollfd *fd;
|
|
|
|
|
|
|
|
struct virtualkey *vks;
|
|
|
|
int vk_count;
|
|
|
|
|
|
|
|
struct position p, mt_p;
|
2010-11-28 04:37:50 +00:00
|
|
|
int sent, mt_idx;
|
2010-11-25 00:49:52 +00:00
|
|
|
};
|
|
|
|
|
2009-03-04 03:28:42 +00:00
|
|
|
static struct pollfd ev_fds[MAX_DEVICES];
|
2010-11-25 00:49:52 +00:00
|
|
|
static struct ev evs[MAX_DEVICES];
|
2009-03-04 03:28:42 +00:00
|
|
|
static unsigned ev_count = 0;
|
|
|
|
|
2010-11-25 00:49:52 +00:00
|
|
|
static inline int ABS(int x) {
|
|
|
|
return x<0?-x:x;
|
|
|
|
}
|
|
|
|
|
2010-11-27 19:36:23 +00:00
|
|
|
int vibrate(int timeout_ms)
|
|
|
|
{
|
|
|
|
char str[20];
|
|
|
|
int fd;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
fd = open(VIBRATOR_TIMEOUT_FILE, O_WRONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ret = snprintf(str, sizeof(str), "%d", timeout_ms);
|
|
|
|
ret = write(fd, str, ret);
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-25 00:49:52 +00:00
|
|
|
/* Returns empty tokens */
|
|
|
|
static char *vk_strtok_r(char *str, const char *delim, char **save_str)
|
|
|
|
{
|
|
|
|
if(!str) {
|
|
|
|
if(!*save_str) return NULL;
|
|
|
|
str = (*save_str) + 1;
|
|
|
|
}
|
|
|
|
*save_str = strpbrk(str, delim);
|
|
|
|
if(*save_str) **save_str = '\0';
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vk_init(struct ev *e)
|
|
|
|
{
|
|
|
|
char vk_path[PATH_MAX] = "/sys/board_properties/virtualkeys.";
|
|
|
|
char vks[2048], *ts;
|
|
|
|
ssize_t len;
|
|
|
|
int vk_fd;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
e->vk_count = 0;
|
|
|
|
|
|
|
|
len = strlen(vk_path);
|
|
|
|
len = ioctl(e->fd->fd, EVIOCGNAME(sizeof(vk_path) - len), vk_path + len);
|
|
|
|
if (len <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
vk_fd = open(vk_path, O_RDONLY);
|
|
|
|
if (vk_fd < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
len = read(vk_fd, vks, sizeof(vks)-1);
|
|
|
|
close(vk_fd);
|
|
|
|
if (len <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
vks[len] = '\0';
|
|
|
|
|
|
|
|
/* Parse a line like:
|
|
|
|
keytype:keycode:centerx:centery:width:height:keytype2:keycode2:centerx2:...
|
|
|
|
*/
|
|
|
|
for (ts = vks, e->vk_count = 1; *ts; ++ts) {
|
|
|
|
if (*ts == ':')
|
|
|
|
++e->vk_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e->vk_count % 6) {
|
|
|
|
LOGW("minui: %s is %d %% 6\n", vk_path, e->vk_count % 6);
|
|
|
|
}
|
|
|
|
e->vk_count /= 6;
|
|
|
|
if (e->vk_count <= 0)
|
|
|
|
return -1;
|
|
|
|
|
2010-11-28 04:37:50 +00:00
|
|
|
e->sent = 0;
|
|
|
|
e->mt_idx = 0;
|
2010-11-25 00:49:52 +00:00
|
|
|
|
|
|
|
ioctl(e->fd->fd, EVIOCGABS(ABS_X), &e->p.xi);
|
|
|
|
ioctl(e->fd->fd, EVIOCGABS(ABS_Y), &e->p.yi);
|
2010-11-28 04:37:50 +00:00
|
|
|
e->p.pressed = 0;
|
2010-11-25 00:49:52 +00:00
|
|
|
|
|
|
|
ioctl(e->fd->fd, EVIOCGABS(ABS_MT_POSITION_X), &e->mt_p.xi);
|
|
|
|
ioctl(e->fd->fd, EVIOCGABS(ABS_MT_POSITION_Y), &e->mt_p.yi);
|
2010-11-28 04:37:50 +00:00
|
|
|
e->mt_p.pressed = 0;
|
2010-11-25 00:49:52 +00:00
|
|
|
|
|
|
|
e->vks = malloc(sizeof(*e->vks) * e->vk_count);
|
|
|
|
|
|
|
|
for (i = 0; i < e->vk_count; ++i) {
|
|
|
|
char *token[6];
|
|
|
|
int j;
|
|
|
|
|
|
|
|
for (j = 0; j < 6; ++j) {
|
|
|
|
token[j] = vk_strtok_r((i||j)?NULL:vks, ":", &ts);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(token[0], "0x01") != 0) {
|
|
|
|
/* Java does string compare, so we do too. */
|
|
|
|
LOGW("minui: %s: ignoring unknown virtual key type %s\n", vk_path, token[0]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
e->vks[i].scancode = strtol(token[1], NULL, 0);
|
|
|
|
e->vks[i].centerx = strtol(token[2], NULL, 0);
|
|
|
|
e->vks[i].centery = strtol(token[3], NULL, 0);
|
|
|
|
e->vks[i].width = strtol(token[4], NULL, 0);
|
|
|
|
e->vks[i].height = strtol(token[5], NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-04 03:28:42 +00:00
|
|
|
int ev_init(void)
|
|
|
|
{
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *de;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
dir = opendir("/dev/input");
|
|
|
|
if(dir != 0) {
|
|
|
|
while((de = readdir(dir))) {
|
|
|
|
// fprintf(stderr,"/dev/input/%s\n", de->d_name);
|
|
|
|
if(strncmp(de->d_name,"event",5)) continue;
|
|
|
|
fd = openat(dirfd(dir), de->d_name, O_RDONLY);
|
|
|
|
if(fd < 0) continue;
|
|
|
|
|
|
|
|
ev_fds[ev_count].fd = fd;
|
|
|
|
ev_fds[ev_count].events = POLLIN;
|
2010-11-25 00:49:52 +00:00
|
|
|
evs[ev_count].fd = &ev_fds[ev_count];
|
|
|
|
|
|
|
|
/* Load virtualkeys if there are any */
|
|
|
|
vk_init(&evs[ev_count]);
|
|
|
|
|
2009-03-04 03:28:42 +00:00
|
|
|
ev_count++;
|
|
|
|
if(ev_count == MAX_DEVICES) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ev_exit(void)
|
|
|
|
{
|
2010-11-25 00:49:52 +00:00
|
|
|
while (ev_count-- > 0) {
|
|
|
|
if (evs[ev_count].vk_count) {
|
|
|
|
free(evs[ev_count].vks);
|
|
|
|
evs[ev_count].vk_count = 0;
|
|
|
|
}
|
|
|
|
close(ev_fds[ev_count].fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vk_inside_display(__s32 value, struct input_absinfo *info, int screen_size)
|
|
|
|
{
|
|
|
|
int screen_pos;
|
|
|
|
|
|
|
|
if (info->minimum == info->maximum)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
screen_pos = (value - info->minimum) * (screen_size - 1) / (info->maximum - info->minimum);
|
|
|
|
return (screen_pos >= 0 && screen_pos < screen_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vk_tp_to_screen(struct position *p, int *x, int *y)
|
|
|
|
{
|
|
|
|
if (p->xi.minimum == p->xi.maximum || p->yi.minimum == p->yi.maximum)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*x = (p->x - p->xi.minimum) * (gr_fb_width() - 1) / (p->xi.maximum - p->xi.minimum);
|
|
|
|
*y = (p->y - p->yi.minimum) * (gr_fb_height() - 1) / (p->yi.maximum - p->yi.minimum);
|
|
|
|
|
|
|
|
if (*x >= 0 && *x < gr_fb_width() &&
|
|
|
|
*y >= 0 && *y < gr_fb_height()) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Translate a virtual key in to a real key event, if needed */
|
|
|
|
/* Returns non-zero when the event should be consumed */
|
|
|
|
static int vk_modify(struct ev *e, struct input_event *ev)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
if (ev->type == EV_KEY) {
|
2010-11-28 04:37:50 +00:00
|
|
|
if (ev->code == BTN_TOUCH)
|
|
|
|
e->p.pressed = ev->value;
|
2010-11-25 00:49:52 +00:00
|
|
|
return 0;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
2010-11-25 00:49:52 +00:00
|
|
|
|
|
|
|
if (ev->type == EV_ABS) {
|
|
|
|
switch (ev->code) {
|
|
|
|
case ABS_X:
|
|
|
|
e->p.x = ev->value;
|
|
|
|
return !vk_inside_display(e->p.x, &e->p.xi, gr_fb_width());
|
|
|
|
case ABS_Y:
|
|
|
|
e->p.y = ev->value;
|
|
|
|
return !vk_inside_display(e->p.y, &e->p.yi, gr_fb_height());
|
|
|
|
case ABS_MT_POSITION_X:
|
2010-11-28 04:37:50 +00:00
|
|
|
if (e->mt_idx) return 1;
|
2010-11-25 00:49:52 +00:00
|
|
|
e->mt_p.x = ev->value;
|
|
|
|
return !vk_inside_display(e->mt_p.x, &e->mt_p.xi, gr_fb_width());
|
|
|
|
case ABS_MT_POSITION_Y:
|
2010-11-28 04:37:50 +00:00
|
|
|
if (e->mt_idx) return 1;
|
2010-11-25 00:49:52 +00:00
|
|
|
e->mt_p.y = ev->value;
|
|
|
|
return !vk_inside_display(e->mt_p.y, &e->mt_p.yi, gr_fb_height());
|
|
|
|
case ABS_MT_TOUCH_MAJOR:
|
2010-11-28 04:37:50 +00:00
|
|
|
if (e->mt_idx) return 1;
|
|
|
|
if (e->sent)
|
|
|
|
e->mt_p.pressed = (ev->value > 0);
|
|
|
|
else
|
|
|
|
e->mt_p.pressed = (ev->value > PRESS_THRESHHOLD);
|
2010-11-25 00:49:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev->type != EV_SYN)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (ev->code == SYN_MT_REPORT) {
|
|
|
|
/* Ignore the rest of the points */
|
2010-11-28 04:37:50 +00:00
|
|
|
++e->mt_idx;
|
|
|
|
return 1;
|
2010-11-25 00:49:52 +00:00
|
|
|
}
|
|
|
|
if (ev->code != SYN_REPORT)
|
|
|
|
return 0;
|
|
|
|
|
2010-11-28 04:37:50 +00:00
|
|
|
/* Report complete */
|
|
|
|
|
|
|
|
e->mt_idx = 0;
|
2010-11-25 00:49:52 +00:00
|
|
|
|
2010-11-28 04:37:50 +00:00
|
|
|
if (!e->p.pressed && !e->mt_p.pressed) {
|
|
|
|
/* No touch */
|
|
|
|
e->sent = 0;
|
2010-11-25 00:49:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-28 04:37:50 +00:00
|
|
|
if (!(e->p.pressed && vk_tp_to_screen(&e->p, &x, &y)) &&
|
|
|
|
!(e->mt_p.pressed && vk_tp_to_screen(&e->mt_p, &x, &y))) {
|
|
|
|
/* No touch inside vk area */
|
|
|
|
return 0;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
2010-11-25 00:49:52 +00:00
|
|
|
|
2010-11-28 04:37:50 +00:00
|
|
|
if (e->sent) {
|
|
|
|
/* We've already sent a fake key for this touch */
|
2010-11-25 00:49:52 +00:00
|
|
|
return 1;
|
2010-11-28 04:37:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The screen is being touched on the vk area */
|
|
|
|
e->sent = 1;
|
2010-11-25 00:49:52 +00:00
|
|
|
|
|
|
|
for (i = 0; i < e->vk_count; ++i) {
|
|
|
|
int xd = ABS(e->vks[i].centerx - x);
|
|
|
|
int yd = ABS(e->vks[i].centery - y);
|
|
|
|
if (xd < e->vks[i].width/2 && yd < e->vks[i].height/2) {
|
|
|
|
/* Fake a key event */
|
|
|
|
ev->type = EV_KEY;
|
|
|
|
ev->code = e->vks[i].scancode;
|
|
|
|
ev->value = 1;
|
2010-11-27 19:36:23 +00:00
|
|
|
|
|
|
|
vibrate(VIBRATOR_TIME_MS);
|
2010-11-25 00:49:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ev_get(struct input_event *ev, unsigned dont_wait)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
unsigned n;
|
|
|
|
|
|
|
|
do {
|
|
|
|
r = poll(ev_fds, ev_count, dont_wait ? 0 : -1);
|
|
|
|
|
|
|
|
if(r > 0) {
|
|
|
|
for(n = 0; n < ev_count; n++) {
|
|
|
|
if(ev_fds[n].revents & POLLIN) {
|
|
|
|
r = read(ev_fds[n].fd, ev, sizeof(*ev));
|
2010-11-25 00:49:52 +00:00
|
|
|
if(r == sizeof(*ev)) {
|
|
|
|
if (!vk_modify(&evs[n], ev))
|
|
|
|
return 0;
|
|
|
|
}
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while(dont_wait == 0);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|