diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2010-08-06 21:11:17 +0200 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2010-08-06 21:11:17 +0200 |
| commit | 7db9d8d76ff61c4802ac15559dcea6fa54ff567a (patch) | |
| tree | b67e040c0abeb0ab1fca72754a767dc9ab851461 /test/grail-touch.c | |
initial bzr repo at rev 27
Diffstat (limited to 'test/grail-touch.c')
| -rw-r--r-- | test/grail-touch.c | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/test/grail-touch.c b/test/grail-touch.c new file mode 100644 index 0000000..bed31c3 --- /dev/null +++ b/test/grail-touch.c | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * | ||
| 3 | * grail - Gesture Recognition And Instantiation Library | ||
| 4 | * | ||
| 5 | * Copyright (C) 2010 Canonical Ltd. | ||
| 6 | * | ||
| 7 | * This program is free software: you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License as published by the | ||
| 9 | * Free Software Foundation, either version 3 of the License, or (at your | ||
| 10 | * option) any later version. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, but | ||
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License along | ||
| 18 | * with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 19 | * | ||
| 20 | * Authors: | ||
| 21 | * Henrik Rydberg <rydberg@bitmath.org> | ||
| 22 | * | ||
| 23 | ****************************************************************************/ | ||
| 24 | |||
| 25 | #include <grail-touch.h> | ||
| 26 | #include <string.h> | ||
| 27 | #include <stdio.h> | ||
| 28 | #include <unistd.h> | ||
| 29 | #include <fcntl.h> | ||
| 30 | |||
| 31 | static void tp_event(struct touch_engine *engine, | ||
| 32 | const struct input_event *ev) | ||
| 33 | { | ||
| 34 | fprintf(stderr, "event %d 0x%x %d\n", ev->type, ev->code, ev->value); | ||
| 35 | } | ||
| 36 | |||
| 37 | static void tp_sync(struct touch_engine *engine, | ||
| 38 | const struct input_event *syn) | ||
| 39 | { | ||
| 40 | struct touch_frame *frame = &engine->frame; | ||
| 41 | int i, j; | ||
| 42 | for (i = 0; i < frame->nactive; i++) { | ||
| 43 | struct touch *t = frame->active[i]; | ||
| 44 | fprintf(stderr, "touch %d %d\n", i, t->slot); | ||
| 45 | for (j = 0; j < DIM_TOUCH_PROP; j++) | ||
| 46 | fprintf(stderr, " %d\n", t->prop[j]); | ||
| 47 | } | ||
| 48 | fprintf(stderr, "sync %d %lld %d %d\n", | ||
| 49 | frame->nactive, frame->time, frame->ncreate, frame->ndestroy); | ||
| 50 | } | ||
| 51 | |||
| 52 | static void loop_device(struct touch_dev *dev, int fd) | ||
| 53 | { | ||
| 54 | struct touch_engine engine; | ||
| 55 | touch_engine_init(&engine, tp_event, tp_sync, 0); | ||
| 56 | touch_engine_attach(&engine, dev); | ||
| 57 | while (!touch_dev_idle(dev, fd, 5000)) | ||
| 58 | touch_dev_pull(dev, fd); | ||
| 59 | touch_engine_detach(&engine, dev); | ||
| 60 | } | ||
| 61 | |||
| 62 | int main(int argc, char *argv[]) | ||
| 63 | { | ||
| 64 | struct touch_dev dev; | ||
| 65 | int fd; | ||
| 66 | if (argc < 2) { | ||
| 67 | fprintf(stderr, "Usage: %s <device>\n", argv[0]); | ||
| 68 | return -1; | ||
| 69 | } | ||
| 70 | fd = open(argv[1], O_RDONLY | O_NONBLOCK); | ||
| 71 | if (fd < 0) { | ||
| 72 | fprintf(stderr, "error: could not open device\n"); | ||
| 73 | return -1; | ||
| 74 | } | ||
| 75 | if (ioctl(fd, EVIOCGRAB, 1)) { | ||
| 76 | fprintf(stderr, "error: could not grab the device\n"); | ||
| 77 | return -1; | ||
| 78 | } | ||
| 79 | if (touch_dev_open(&dev, fd)) { | ||
| 80 | fprintf(stderr, "error: could not open touch device\n"); | ||
| 81 | return -1; | ||
| 82 | } | ||
| 83 | loop_device(&dev, fd); | ||
| 84 | touch_dev_close(&dev, fd); | ||
| 85 | ioctl(fd, EVIOCGRAB, 0); | ||
| 86 | close(fd); | ||
| 87 | return 0; | ||
| 88 | } | ||
