xref: /netbsd-src/usr.sbin/tpctl/tp.c (revision 23c8222edbfb0f0932d88a8351d3a0cf817dfb9e)
1 /*	$NetBSD: tp.c,v 1.3 2004/09/07 13:20:40 jrf Exp $	*/
2 
3 /*-
4  * Copyright (c) 2002, 2003 TAKEMRUA Shin
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of The NetBSD Foundation nor the names of its
16  *    contributors may be used to endorse or promote products derived
17  *    from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #include <stdio.h>
33 #include <string.h>
34 #include <sys/ioctl.h>
35 #include <sys/fcntl.h>
36 #include <sys/mman.h>
37 #include <errno.h>
38 #include <unistd.h>
39 
40 #include "tpctl.h"
41 
42 #define MIN(a, b)	((a) < (b) ? (a) : (b))
43 
44 #ifndef lint
45 #include <sys/cdefs.h>
46 __RCSID("$NetBSD: tp.c,v 1.3 2004/09/07 13:20:40 jrf Exp $");
47 #endif /* not lint */
48 
49 int
50 tp_init(struct tp *tp, int fd)
51 {
52 	u_int flags;
53 	struct wsmouse_calibcoords calibcoords;
54 	struct wsmouse_id id;
55 
56 	tp->fd = fd;
57 
58 #if 0
59 	if (ioctl(tp->fd, WSMOUSEIO_GTYPE, &type) < 0)
60 		return (-1);
61 	if (type != WSMOUSE_TYPE_TPANEL) {
62 		errno = EINVAL;
63 		return (-1);
64 	}
65 #else
66 	if (ioctl(tp->fd, WSMOUSEIO_GCALIBCOORDS, &calibcoords) < 0)
67 		return (-1);
68 #endif
69 	flags = fcntl(tp->fd, F_GETFL);
70 	if (flags == -1)
71 		return (-1);
72 	flags |= O_NONBLOCK;
73 	if (fcntl(tp->fd, F_SETFL, flags) < 0)
74 		return (-1);
75 
76 	id.type = WSMOUSE_ID_TYPE_UIDSTR;
77 	if (ioctl(tp->fd, WSMOUSEIO_GETID, &id) == 0) {
78 		(void)strlcpy(tp->id, id.data, MIN(sizeof(tp->id), id.length));
79 	} else {
80 		tp->id[0] = '*';
81 		tp->id[1] = '\0';
82 	}
83 
84 	return (0);
85 }
86 
87 int
88 tp_setrawmode(struct tp *tp)
89 {
90 	struct wsmouse_calibcoords raw;
91 
92 	memset(&raw, 0, sizeof(raw));
93 	raw.samplelen = WSMOUSE_CALIBCOORDS_RESET;
94 
95 	return ioctl(tp->fd, WSMOUSEIO_SCALIBCOORDS, &raw);
96 }
97 
98 int
99 tp_setcalibcoords(struct tp *tp, struct wsmouse_calibcoords *calibcoords)
100 {
101 	return ioctl(tp->fd, WSMOUSEIO_SCALIBCOORDS, calibcoords);
102 }
103 
104 int
105 tp_flush(struct tp *tp)
106 {
107 	struct wscons_event ev;
108 	int count;
109 
110 	count = 0;
111 	while (read(tp->fd, &ev, sizeof(ev)) == sizeof(ev)) {
112 		switch (ev.type) {
113 		case WSCONS_EVENT_MOUSE_UP:
114 		case WSCONS_EVENT_MOUSE_DOWN:
115 		case WSCONS_EVENT_MOUSE_DELTA_X:
116 		case WSCONS_EVENT_MOUSE_DELTA_Y:
117 		case WSCONS_EVENT_MOUSE_ABSOLUTE_X:
118 		case WSCONS_EVENT_MOUSE_ABSOLUTE_Y:
119 		case WSCONS_EVENT_MOUSE_DELTA_Z:
120 		case WSCONS_EVENT_MOUSE_ABSOLUTE_Z:
121 			count++;
122 			break;
123 
124 		default:
125 			break;
126 		}
127 	}
128 
129 	return (count);
130 }
131 
132 int
133 tp_get(struct tp *tp, int *x, int *y, int (*cancel)(void *), void *data)
134 {
135 	struct wscons_event ev;
136 	int x_done, y_done, res;
137 
138 	x_done = y_done = 0;
139 	while (1) {
140 		if (cancel != NULL && (res = (*cancel)(data)) != 0)
141 			return (res);
142 		if ((res = read(tp->fd, &ev, sizeof(ev))) < 0) {
143 			if (errno != EWOULDBLOCK)
144 				return (-1);
145 			continue;
146 		}
147 		if (res != sizeof(ev)) {
148 			errno = EINVAL;
149 			return (-1);
150 		}
151 		switch (ev.type) {
152 		case WSCONS_EVENT_MOUSE_ABSOLUTE_X:
153 			*x = ev.value;
154 			if (y_done)
155 				return (0);
156 			x_done = 1;
157 			break;
158 
159 		case WSCONS_EVENT_MOUSE_ABSOLUTE_Y:
160 			*y = ev.value;
161 			if (x_done)
162 				return (0);
163 			y_done = 1;
164 			break;
165 
166 		default:
167 			break;
168 		}
169 	}
170 }
171 
172 int
173 tp_waitup(struct tp *tp, int msec, int (*cancel)(void*), void *data)
174 {
175 	int res;
176 
177 	while (1) {
178 		if (cancel != NULL && (res = (*cancel)(data)) != 0)
179 			return (res);
180 		usleep(msec * 1000);
181 		if (tp_flush(tp) == 0)
182 			break;
183 	}
184 
185 	return (0);
186 }
187