getkmap.c revision 706f2543
1706f2543Smrg/************************************************************
2706f2543Smrg
3706f2543SmrgCopyright 1989, 1998  The Open Group
4706f2543Smrg
5706f2543SmrgPermission to use, copy, modify, distribute, and sell this software and its
6706f2543Smrgdocumentation for any purpose is hereby granted without fee, provided that
7706f2543Smrgthe above copyright notice appear in all copies and that both that
8706f2543Smrgcopyright notice and this permission notice appear in supporting
9706f2543Smrgdocumentation.
10706f2543Smrg
11706f2543SmrgThe above copyright notice and this permission notice shall be included in
12706f2543Smrgall copies or substantial portions of the Software.
13706f2543Smrg
14706f2543SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15706f2543SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16706f2543SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17706f2543SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18706f2543SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19706f2543SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20706f2543Smrg
21706f2543SmrgExcept as contained in this notice, the name of The Open Group shall not be
22706f2543Smrgused in advertising or otherwise to promote the sale, use or other dealings
23706f2543Smrgin this Software without prior written authorization from The Open Group.
24706f2543Smrg
25706f2543SmrgCopyright 1989 by Hewlett-Packard Company, Palo Alto, California.
26706f2543Smrg
27706f2543Smrg			All Rights Reserved
28706f2543Smrg
29706f2543SmrgPermission to use, copy, modify, and distribute this software and its
30706f2543Smrgdocumentation for any purpose and without fee is hereby granted,
31706f2543Smrgprovided that the above copyright notice appear in all copies and that
32706f2543Smrgboth that copyright notice and this permission notice appear in
33706f2543Smrgsupporting documentation, and that the name of Hewlett-Packard not be
34706f2543Smrgused in advertising or publicity pertaining to distribution of the
35706f2543Smrgsoftware without specific, written prior permission.
36706f2543Smrg
37706f2543SmrgHEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
38706f2543SmrgALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
39706f2543SmrgHEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
40706f2543SmrgANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
41706f2543SmrgWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
42706f2543SmrgARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
43706f2543SmrgSOFTWARE.
44706f2543Smrg
45706f2543Smrg********************************************************/
46706f2543Smrg
47706f2543Smrg/********************************************************************
48706f2543Smrg *
49706f2543Smrg *  Get the key mapping for an extension device.
50706f2543Smrg *
51706f2543Smrg */
52706f2543Smrg
53706f2543Smrg#ifdef HAVE_DIX_CONFIG_H
54706f2543Smrg#include <dix-config.h>
55706f2543Smrg#endif
56706f2543Smrg
57706f2543Smrg#include "inputstr.h"	/* DeviceIntPtr      */
58706f2543Smrg#include <X11/extensions/XI.h>
59706f2543Smrg#include <X11/extensions/XIproto.h>
60706f2543Smrg#include "exglobals.h"
61706f2543Smrg#include "swaprep.h"
62706f2543Smrg#include "xkbsrv.h"
63706f2543Smrg#include "xkbstr.h"
64706f2543Smrg
65706f2543Smrg#include "getkmap.h"
66706f2543Smrg
67706f2543Smrg/***********************************************************************
68706f2543Smrg *
69706f2543Smrg * This procedure gets the key mapping for an extension device,
70706f2543Smrg * for clients on machines with a different byte ordering than the server.
71706f2543Smrg *
72706f2543Smrg */
73706f2543Smrg
74706f2543Smrgint
75706f2543SmrgSProcXGetDeviceKeyMapping(ClientPtr client)
76706f2543Smrg{
77706f2543Smrg    char n;
78706f2543Smrg
79706f2543Smrg    REQUEST(xGetDeviceKeyMappingReq);
80706f2543Smrg    swaps(&stuff->length, n);
81706f2543Smrg    return (ProcXGetDeviceKeyMapping(client));
82706f2543Smrg}
83706f2543Smrg
84706f2543Smrg/***********************************************************************
85706f2543Smrg *
86706f2543Smrg * Get the device key mapping.
87706f2543Smrg *
88706f2543Smrg */
89706f2543Smrg
90706f2543Smrgint
91706f2543SmrgProcXGetDeviceKeyMapping(ClientPtr client)
92706f2543Smrg{
93706f2543Smrg    xGetDeviceKeyMappingReply rep;
94706f2543Smrg    DeviceIntPtr dev;
95706f2543Smrg    XkbDescPtr xkb;
96706f2543Smrg    KeySymsPtr syms;
97706f2543Smrg    int rc;
98706f2543Smrg
99706f2543Smrg    REQUEST(xGetDeviceKeyMappingReq);
100706f2543Smrg    REQUEST_SIZE_MATCH(xGetDeviceKeyMappingReq);
101706f2543Smrg
102706f2543Smrg    rc = dixLookupDevice(&dev, stuff->deviceid, client, DixGetAttrAccess);
103706f2543Smrg    if (rc != Success)
104706f2543Smrg	return rc;
105706f2543Smrg    if (dev->key == NULL)
106706f2543Smrg	return BadMatch;
107706f2543Smrg    xkb = dev->key->xkbInfo->desc;
108706f2543Smrg
109706f2543Smrg    if (stuff->firstKeyCode < xkb->min_key_code ||
110706f2543Smrg	stuff->firstKeyCode > xkb->max_key_code) {
111706f2543Smrg	client->errorValue = stuff->firstKeyCode;
112706f2543Smrg	return BadValue;
113706f2543Smrg    }
114706f2543Smrg
115706f2543Smrg    if (stuff->firstKeyCode + stuff->count > xkb->max_key_code + 1) {
116706f2543Smrg	client->errorValue = stuff->count;
117706f2543Smrg	return BadValue;
118706f2543Smrg    }
119706f2543Smrg
120706f2543Smrg    syms = XkbGetCoreMap(dev);
121706f2543Smrg    if (!syms)
122706f2543Smrg        return BadAlloc;
123706f2543Smrg
124706f2543Smrg    rep.repType = X_Reply;
125706f2543Smrg    rep.RepType = X_GetDeviceKeyMapping;
126706f2543Smrg    rep.sequenceNumber = client->sequence;
127706f2543Smrg    rep.keySymsPerKeyCode = syms->mapWidth;
128706f2543Smrg    rep.length = (syms->mapWidth * stuff->count);	/* KeySyms are 4 bytes */
129706f2543Smrg    WriteReplyToClient(client, sizeof(xGetDeviceKeyMappingReply), &rep);
130706f2543Smrg
131706f2543Smrg    client->pSwapReplyFunc = (ReplySwapPtr) CopySwap32Write;
132706f2543Smrg    WriteSwappedDataToClient(client,
133706f2543Smrg                             syms->mapWidth * stuff->count * sizeof(KeySym),
134706f2543Smrg                             &syms->map[syms->mapWidth * (stuff->firstKeyCode -
135706f2543Smrg                                                          syms->minKeyCode)]);
136706f2543Smrg    free(syms->map);
137706f2543Smrg    free(syms);
138706f2543Smrg
139706f2543Smrg    return Success;
140706f2543Smrg}
141706f2543Smrg
142706f2543Smrg/***********************************************************************
143706f2543Smrg *
144706f2543Smrg * This procedure writes the reply for the XGetDeviceKeyMapping function,
145706f2543Smrg * if the client and server have a different byte ordering.
146706f2543Smrg *
147706f2543Smrg */
148706f2543Smrg
149706f2543Smrgvoid
150706f2543SmrgSRepXGetDeviceKeyMapping(ClientPtr client, int size,
151706f2543Smrg			 xGetDeviceKeyMappingReply * rep)
152706f2543Smrg{
153706f2543Smrg    char n;
154706f2543Smrg
155706f2543Smrg    swaps(&rep->sequenceNumber, n);
156706f2543Smrg    swapl(&rep->length, n);
157706f2543Smrg    WriteToClient(client, size, (char *)rep);
158706f2543Smrg}
159