XIQueryDevice.c revision b789ec8a
1c27c18e8Smrg/*
2c27c18e8Smrg * Copyright © 2009 Red Hat, Inc.
3c27c18e8Smrg *
4c27c18e8Smrg * Permission is hereby granted, free of charge, to any person obtaining a
5c27c18e8Smrg * copy of this software and associated documentation files (the "Software"),
6c27c18e8Smrg * to deal in the Software without restriction, including without limitation
7c27c18e8Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8c27c18e8Smrg * and/or sell copies of the Software, and to permit persons to whom the
9c27c18e8Smrg * Software is furnished to do so, subject to the following conditions:
10c27c18e8Smrg *
11c27c18e8Smrg * The above copyright notice and this permission notice (including the next
12c27c18e8Smrg * paragraph) shall be included in all copies or substantial portions of the
13c27c18e8Smrg * Software.
14c27c18e8Smrg *
15c27c18e8Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16c27c18e8Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17c27c18e8Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18c27c18e8Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19c27c18e8Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20c27c18e8Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21c27c18e8Smrg * DEALINGS IN THE SOFTWARE.
22c27c18e8Smrg *
23c27c18e8Smrg */
24c27c18e8Smrg
25c27c18e8Smrg#include <stdint.h>
26c27c18e8Smrg#include <X11/Xlibint.h>
27c27c18e8Smrg#include <X11/extensions/XI2proto.h>
28c27c18e8Smrg#include <X11/extensions/XInput2.h>
29c27c18e8Smrg#include <X11/extensions/extutil.h>
30c27c18e8Smrg#include "XIint.h"
31c27c18e8Smrg
32c27c18e8Smrgextern int copy_classes(XIDeviceInfo* to, xXIAnyInfo* from, int nclasses);
33c27c18e8Smrgextern int size_classes(xXIAnyInfo* from, int nclasses);
34c27c18e8Smrg
35c27c18e8SmrgXIDeviceInfo*
36c27c18e8SmrgXIQueryDevice(Display *dpy, int deviceid, int *ndevices_return)
37c27c18e8Smrg{
38c27c18e8Smrg    XIDeviceInfo        *info = NULL;
39c27c18e8Smrg    xXIQueryDeviceReq   *req;
40c27c18e8Smrg    xXIQueryDeviceReply reply;
41c27c18e8Smrg    char                *ptr;
42c27c18e8Smrg    int                 i;
43c27c18e8Smrg    char                *buf;
44c27c18e8Smrg
45c27c18e8Smrg    XExtDisplayInfo *extinfo = XInput_find_display(dpy);
46c27c18e8Smrg
47c27c18e8Smrg    LockDisplay(dpy);
48b789ec8aSmrg    if (_XiCheckExtInit(dpy, XInput_2_0, extinfo) == -1)
49c27c18e8Smrg	goto error;
50c27c18e8Smrg
51c27c18e8Smrg    GetReq(XIQueryDevice, req);
52c27c18e8Smrg    req->reqType  = extinfo->codes->major_opcode;
53c27c18e8Smrg    req->ReqType  = X_XIQueryDevice;
54c27c18e8Smrg    req->deviceid = deviceid;
55c27c18e8Smrg
56c27c18e8Smrg    if (!_XReply(dpy, (xReply*) &reply, 0, xFalse))
57c27c18e8Smrg        goto error;
58c27c18e8Smrg
59c27c18e8Smrg    *ndevices_return = reply.num_devices;
60c27c18e8Smrg    info = Xmalloc((reply.num_devices + 1) * sizeof(XIDeviceInfo));
61c27c18e8Smrg    if (!info)
62c27c18e8Smrg        goto error;
63c27c18e8Smrg
64c27c18e8Smrg    buf = Xmalloc(reply.length * 4);
65c27c18e8Smrg    _XRead(dpy, buf, reply.length * 4);
66c27c18e8Smrg    ptr = buf;
67c27c18e8Smrg
68c27c18e8Smrg    /* info is a null-terminated array */
69c27c18e8Smrg    info[reply.num_devices].name = NULL;
70c27c18e8Smrg
71c27c18e8Smrg    for (i = 0; i < reply.num_devices; i++)
72c27c18e8Smrg    {
73c27c18e8Smrg        XIDeviceInfo    *lib = &info[i];
74c27c18e8Smrg        xXIDeviceInfo   *wire = (xXIDeviceInfo*)ptr;
75c27c18e8Smrg
76c27c18e8Smrg        lib->deviceid    = wire->deviceid;
77c27c18e8Smrg        lib->use         = wire->use;
78c27c18e8Smrg        lib->attachment  = wire->attachment;
79c27c18e8Smrg        lib->enabled     = wire->enabled;
80c27c18e8Smrg        lib->num_classes = wire->num_classes;
81c27c18e8Smrg        lib->classes     = (XIAnyClassInfo**)&lib[1];
82c27c18e8Smrg
83c27c18e8Smrg        ptr += sizeof(xXIDeviceInfo);
84c27c18e8Smrg
85c27c18e8Smrg        lib->name = Xcalloc(wire->name_len + 1, 1);
86c27c18e8Smrg        strncpy(lib->name, ptr, wire->name_len);
87c27c18e8Smrg        ptr += ((wire->name_len + 3)/4) * 4;
88c27c18e8Smrg
89c27c18e8Smrg        lib->classes = Xmalloc(size_classes((xXIAnyInfo*)ptr, lib->num_classes));
90c27c18e8Smrg        ptr += copy_classes(lib, (xXIAnyInfo*)ptr, lib->num_classes);
91c27c18e8Smrg    }
92c27c18e8Smrg
93c27c18e8Smrg    Xfree(buf);
94c27c18e8Smrg    UnlockDisplay(dpy);
95c27c18e8Smrg    SyncHandle();
96c27c18e8Smrg    return info;
97c27c18e8Smrg
98c27c18e8Smrgerror:
99c27c18e8Smrg    UnlockDisplay(dpy);
100c27c18e8Smrg    SyncHandle();
101c27c18e8Smrg    *ndevices_return = -1;
102c27c18e8Smrg    return NULL;
103c27c18e8Smrg}
104c27c18e8Smrg
105c27c18e8Smrgvoid
106c27c18e8SmrgXIFreeDeviceInfo(XIDeviceInfo* info)
107c27c18e8Smrg{
108c27c18e8Smrg    XIDeviceInfo *ptr = info;
109c27c18e8Smrg    while(ptr->name)
110c27c18e8Smrg    {
111c27c18e8Smrg        Xfree(ptr->classes);
112c27c18e8Smrg        Xfree(ptr->name);
113c27c18e8Smrg        ptr++;
114c27c18e8Smrg    }
115c27c18e8Smrg    Xfree(info);
116c27c18e8Smrg}
117