]> diplodocus.org Git - xorg-xinput/blob - src/list.c
Require inputproto 1.9.99.12
[xorg-xinput] / src / list.c
1 /*
2 * Copyright 1996 by Frederic Lepied, France. <Frederic.Lepied@sugix.frmug.org>
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of the authors not be used in
9 * advertising or publicity pertaining to distribution of the software without
10 * specific, written prior permission. The authors make no
11 * representations about the suitability of this software for any purpose. It
12 * is provided "as is" without express or implied warranty.
13 *
14 * THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 * PERFORMANCE OF THIS SOFTWARE.
21 *
22 */
23
24 #include "xinput.h"
25 #include <string.h>
26 #include <X11/extensions/XIproto.h> /* for XI_Device***ChangedNotify */
27
28 static void
29 print_info(Display* dpy, XDeviceInfo *info, Bool shortformat)
30 {
31 int i,j;
32 XAnyClassPtr any;
33 XKeyInfoPtr k;
34 XButtonInfoPtr b;
35 XValuatorInfoPtr v;
36 XAxisInfoPtr a;
37
38 printf("\"%s\"\tid=%ld\t[", info->name, info->id);
39
40 switch (info->use) {
41 case IsXPointer:
42 printf("XPointer");
43 break;
44 case IsXKeyboard:
45 printf("XKeyboard");
46 break;
47 case IsXExtensionDevice:
48 printf("XExtensionDevice");
49 break;
50 case IsXExtensionKeyboard:
51 printf("XExtensionKeyboard");
52 break;
53 case IsXExtensionPointer:
54 printf("XExtensionPointer");
55 break;
56 default:
57 printf("Unknown class");
58 break;
59 }
60 printf("]\n");
61
62 if (shortformat)
63 return;
64
65 if(info->type != None)
66 printf("\tType is %s\n", XGetAtomName(dpy, info->type));
67
68 if (info->num_classes > 0) {
69 any = (XAnyClassPtr) (info->inputclassinfo);
70 for (i=0; i<info->num_classes; i++) {
71 switch (any->class) {
72 case KeyClass:
73 k = (XKeyInfoPtr) any;
74 printf("\tNum_keys is %d\n", k->num_keys);
75 printf("\tMin_keycode is %d\n", k->min_keycode);
76 printf("\tMax_keycode is %d\n", k->max_keycode);
77 break;
78
79 case ButtonClass:
80 b = (XButtonInfoPtr) any;
81 printf("\tNum_buttons is %d\n", b->num_buttons);
82 break;
83
84 case ValuatorClass:
85 v = (XValuatorInfoPtr) any;
86 a = (XAxisInfoPtr) ((char *) v +
87 sizeof (XValuatorInfo));
88 printf("\tNum_axes is %d\n", v->num_axes);
89 printf("\tMode is %s\n", (v->mode == Absolute) ? "Absolute" : "Relative");
90 printf("\tMotion_buffer is %ld\n", v->motion_buffer);
91 for (j=0; j<v->num_axes; j++, a++) {
92 printf("\tAxis %d :\n", j);
93 printf("\t\tMin_value is %d\n", a->min_value);
94 printf("\t\tMax_value is %d\n", a->max_value);
95 printf ("\t\tResolution is %d\n", a->resolution);
96 }
97 break;
98 default:
99 printf ("unknown class\n");
100 }
101 any = (XAnyClassPtr) ((char *) any + any->length);
102 }
103 }
104 }
105
106 static int list_xi1(Display *display,
107 int argc,
108 char *argv[],
109 char *name,
110 char *desc)
111 {
112 XDeviceInfo *info;
113 int loop;
114 int shortformat = False;
115 int daemon = False;
116
117 shortformat = (argc == 1 && strcmp(argv[0], "--short") == 0);
118 daemon = (argc == 1 && strcmp(argv[0], "--loop") == 0);
119
120 if (argc == 0 || shortformat || daemon) {
121 int num_devices;
122
123 do {
124 info = XListInputDevices(display, &num_devices);
125 for(loop=0; loop<num_devices; loop++) {
126 print_info(display, info+loop, shortformat);
127 }
128 } while(daemon);
129 } else {
130 int ret = EXIT_SUCCESS;
131
132 for(loop=0; loop<argc; loop++) {
133 info = find_device_info(display, argv[loop], False);
134
135 if (!info) {
136 fprintf(stderr, "unable to find device %s\n", argv[loop]);
137 ret = EXIT_FAILURE;
138 } else {
139 print_info(display, info, shortformat);
140 }
141 }
142 return ret;
143 }
144 return EXIT_SUCCESS;
145 }
146
147 #ifdef HAVE_XI2
148 /* also used from test_xi2.c */
149 void
150 print_classes_xi2(Display* display, XIAnyClassInfo **classes,
151 int num_classes)
152 {
153 int i, j;
154
155 printf("\tReporting %d classes:\n", num_classes);
156 for (i = 0; i < num_classes; i++)
157 {
158 printf("\t\tClass originated from: %d\n", classes[i]->sourceid);
159 switch(classes[i]->type)
160 {
161 case XIButtonClass:
162 {
163 XIButtonClassInfo *b = (XIButtonClassInfo*)classes[i];
164 printf("\t\tButtons supported: %d\n", b->num_buttons);
165 printf("\t\tButton labels:");
166 for (j = 0; j < b->num_buttons; j++)
167 printf(" %s", (b->labels[j]) ? XGetAtomName(display, b->labels[j]) : "None");
168 printf("\n");
169 printf("\t\tButton state:");
170 for (j = 0; j < b->state.mask_len * 8; j++)
171 if (XIMaskIsSet(b->state.mask, j))
172 printf(" %d", j);
173 printf("\n");
174
175 }
176 break;
177 case XIKeyClass:
178 {
179 XIKeyClassInfo *k = (XIKeyClassInfo*)classes[i];
180 printf("\t\tKeycodes supported: %d\n", k->num_keycodes);
181 }
182 break;
183 case XIValuatorClass:
184 {
185 XIValuatorClassInfo *v = (XIValuatorClassInfo*)classes[i];
186 printf("\t\tDetail for Valuator %d:\n", v->number);
187 printf("\t\t Label: %s\n", v->label ? XGetAtomName(display, v->label) : "None");
188 printf("\t\t Range: %f - %f\n", v->min, v->max);
189 printf("\t\t Resolution: %d units/m\n", v->resolution);
190 printf("\t\t Mode: %s\n", v->mode == Absolute ? "absolute" :
191 "relative");
192 if (v->mode == Absolute)
193 printf("\t\t Current value: %f\n", v->value);
194 }
195 break;
196 }
197 }
198
199 printf("\n");
200 }
201
202 static void
203 print_info_xi2(Display* display, XIDeviceInfo *dev, Bool shortformat)
204 {
205 printf("%-40s\tid=%d\t[", dev->name, dev->deviceid);
206 switch(dev->use)
207 {
208 case XIMasterPointer:
209 printf("master pointer (%d)]\n", dev->attachment);
210 break;
211 case XIMasterKeyboard:
212 printf("master keyboard (%d)]\n", dev->attachment);
213 break;
214 case XISlavePointer:
215 printf("slave pointer (%d)]\n", dev->attachment);
216 break;
217 case XISlaveKeyboard:
218 printf("slave keyboard (%d)]\n", dev->attachment);
219 break;
220 case XIFloatingSlave:
221 printf("floating slave]\n");
222 break;
223 }
224
225 if (shortformat)
226 return;
227
228 if (!dev->enabled)
229 printf("\tThis device is disabled\n");
230
231 print_classes_xi2(display, dev->classes, dev->num_classes);
232 }
233
234
235 int
236 list_xi2(Display *display,
237 int argc,
238 char *argv[],
239 char *name,
240 char *desc)
241 {
242 int major = XI_2_Major,
243 minor = XI_2_Minor;
244 int ndevices;
245 int i, j, shortformat;
246 XIDeviceInfo *info, *dev;
247
248 shortformat = (argc == 1 && strcmp(argv[0], "--short") == 0);
249
250 if (XIQueryVersion(display, &major, &minor) != Success ||
251 (major * 1000 + minor) < (XI_2_Major * 1000 + XI_2_Minor))
252 {
253 fprintf(stderr, "XI2 not supported.\n");
254 return EXIT_FAILURE;
255 }
256
257 info = XIQueryDevice(display, XIAllDevices, &ndevices);
258
259 for(i = 0; i < ndevices; i++)
260 {
261 dev = &info[i];
262 if (dev->use == XIMasterPointer || dev->use == XIMasterKeyboard)
263 {
264 if (dev->use == XIMasterPointer)
265 printf("⎡ ");
266 else
267 printf("⎣ ");
268
269 print_info_xi2(display, dev, shortformat);
270 for (j = 0; j < ndevices; j++)
271 {
272 XIDeviceInfo* sd = &info[j];
273
274 if ((sd->use == XISlavePointer || sd->use == XISlaveKeyboard) &&
275 (sd->attachment == dev->deviceid))
276 {
277 printf("%s ↳ ", dev->use == XIMasterPointer ? "⎜" : " ");
278 print_info_xi2(display, sd, shortformat);
279 }
280 }
281 }
282 }
283
284 for (i = 0; i < ndevices; i++)
285 {
286 dev = &info[i];
287 if (dev->use == XIFloatingSlave)
288 {
289 printf("∼ ");
290 print_info_xi2(display, dev, shortformat);
291 }
292 }
293
294
295 XIFreeDeviceInfo(info);
296 return EXIT_SUCCESS;
297 }
298 #endif
299
300 int
301 list(Display *display,
302 int argc,
303 char *argv[],
304 char *name,
305 char *desc)
306 {
307 #ifdef HAVE_XI2
308 if (xinput_version(display) == XI_2_Major)
309 return list_xi2(display, argc, argv, name, desc);
310 #endif
311 return list_xi1(display, argc, argv, name, desc);
312 }
313
314 /* end of list.c */