1c43cc173Smrg/************************************************************
2c43cc173Smrg
3c43cc173SmrgCopyright 1989, 1998  The Open Group
4c43cc173Smrg
5c43cc173SmrgPermission to use, copy, modify, distribute, and sell this software and its
6c43cc173Smrgdocumentation for any purpose is hereby granted without fee, provided that
7c43cc173Smrgthe above copyright notice appear in all copies and that both that
8c43cc173Smrgcopyright notice and this permission notice appear in supporting
9c43cc173Smrgdocumentation.
10c43cc173Smrg
11c43cc173SmrgThe above copyright notice and this permission notice shall be included in
12c43cc173Smrgall copies or substantial portions of the Software.
13c43cc173Smrg
14c43cc173SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15c43cc173SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16c43cc173SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17c43cc173SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18c43cc173SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19c43cc173SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20c43cc173Smrg
21c43cc173SmrgExcept as contained in this notice, the name of The Open Group shall not be
22c43cc173Smrgused in advertising or otherwise to promote the sale, use or other dealings
23c43cc173Smrgin this Software without prior written authorization from The Open Group.
24c43cc173Smrg
25c43cc173SmrgCopyright 1989 by Hewlett-Packard Company, Palo Alto, California.
26c43cc173Smrg
27c43cc173Smrg			All Rights Reserved
28c43cc173Smrg
29c43cc173SmrgPermission to use, copy, modify, and distribute this software and its
30c43cc173Smrgdocumentation for any purpose and without fee is hereby granted,
31c43cc173Smrgprovided that the above copyright notice appear in all copies and that
32c43cc173Smrgboth that copyright notice and this permission notice appear in
33c43cc173Smrgsupporting documentation, and that the name of Hewlett-Packard not be
34c43cc173Smrgused in advertising or publicity pertaining to distribution of the
35c43cc173Smrgsoftware without specific, written prior permission.
36c43cc173Smrg
37c43cc173SmrgHEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
38c43cc173SmrgALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
39c43cc173SmrgHEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
40c43cc173SmrgANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
41c43cc173SmrgWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
42c43cc173SmrgARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
43c43cc173SmrgSOFTWARE.
44c43cc173Smrg
45c43cc173Smrg********************************************************/
46c43cc173Smrg
47c43cc173Smrg/***********************************************************************
48c43cc173Smrg *
49c43cc173Smrg * XGetDeviceKeyMapping - get the keymap of an extension device.
50c43cc173Smrg *
51c43cc173Smrg */
52c43cc173Smrg
53f1ee322dSmrg#ifdef HAVE_CONFIG_H
54f1ee322dSmrg#include <config.h>
55f1ee322dSmrg#endif
56f1ee322dSmrg
570eb1301bSmrg#include <limits.h>
58c43cc173Smrg#include <X11/extensions/XI.h>
59c43cc173Smrg#include <X11/extensions/XIproto.h>
60c43cc173Smrg#include <X11/Xlibint.h>
61c43cc173Smrg#include <X11/extensions/XInput.h>
62c43cc173Smrg#include <X11/extensions/extutil.h>
63c43cc173Smrg#include "XIint.h"
64c43cc173Smrg
65c43cc173SmrgKeySym *
66c43cc173SmrgXGetDeviceKeyMapping(register Display * dpy, XDevice * dev,
67c43cc173Smrg#if NeedWidePrototypes
68c43cc173Smrg		     unsigned int first,
69c43cc173Smrg#else
70c43cc173Smrg		     KeyCode first,
71c43cc173Smrg#endif
72c43cc173Smrg		     int keycount, int *syms_per_code)
73c43cc173Smrg{
74c43cc173Smrg    long nbytes;
75c43cc173Smrg    register KeySym *mapping = NULL;
76c43cc173Smrg    xGetDeviceKeyMappingReq *req;
77c43cc173Smrg    xGetDeviceKeyMappingReply rep;
78c43cc173Smrg    XExtDisplayInfo *info = XInput_find_display(dpy);
79c43cc173Smrg
80c43cc173Smrg    LockDisplay(dpy);
81c43cc173Smrg    if (_XiCheckExtInit(dpy, XInput_Initial_Release, info) == -1)
8244584a44Smrg        return NULL;
83c43cc173Smrg
84c43cc173Smrg    GetReq(GetDeviceKeyMapping, req);
85c43cc173Smrg    req->reqType = info->codes->major_opcode;
86c43cc173Smrg    req->ReqType = X_GetDeviceKeyMapping;
87c43cc173Smrg    req->deviceid = dev->device_id;
88c43cc173Smrg    req->firstKeyCode = first;
89c43cc173Smrg    req->count = keycount;
90c43cc173Smrg
91c43cc173Smrg    if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) {
92c43cc173Smrg	UnlockDisplay(dpy);
93c43cc173Smrg	SyncHandle();
94c43cc173Smrg	return (KeySym *) NULL;
95c43cc173Smrg    }
96c43cc173Smrg    if (rep.length > 0) {
970eb1301bSmrg	if (rep.length < INT_MAX >> 2 &&
980eb1301bSmrg	    rep.length == rep.keySymsPerKeyCode * keycount) {
990eb1301bSmrg	    *syms_per_code = rep.keySymsPerKeyCode;
1000eb1301bSmrg	    nbytes = (long)rep.length << 2;
1010eb1301bSmrg	    mapping = (KeySym *) Xmalloc((unsigned)nbytes);
1020eb1301bSmrg	} else {
1030eb1301bSmrg	    *syms_per_code = 0;
1040eb1301bSmrg	    nbytes = 0;
1050eb1301bSmrg	    mapping = NULL;
1060eb1301bSmrg	}
107c43cc173Smrg	if (mapping)
108c43cc173Smrg	    _XRead(dpy, (char *)mapping, nbytes);
109c43cc173Smrg	else
11006c34b88Smrg	    _XEatDataWords(dpy, rep.length);
111c43cc173Smrg    }
112c43cc173Smrg
113c43cc173Smrg    UnlockDisplay(dpy);
114c43cc173Smrg    SyncHandle();
115c43cc173Smrg    return (mapping);
116c43cc173Smrg}
117