XQueryDv.c revision c27c18e8
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 * XQueryDeviceState - Query the state of an extension input device. 50c43cc173Smrg * 51c43cc173Smrg */ 52c43cc173Smrg 53c43cc173Smrg#include <X11/extensions/XI.h> 54c43cc173Smrg#include <X11/extensions/XIproto.h> 55c43cc173Smrg#include <X11/Xlibint.h> 56c43cc173Smrg#include <X11/extensions/XInput.h> 57c43cc173Smrg#include <X11/extensions/extutil.h> 58c43cc173Smrg#include "XIint.h" 59c43cc173Smrg 60c43cc173SmrgXDeviceState * 61c27c18e8SmrgXQueryDeviceState( 62c27c18e8Smrg register Display *dpy, 63c27c18e8Smrg XDevice *dev) 64c43cc173Smrg{ 65c43cc173Smrg int i, j; 66c43cc173Smrg int rlen; 67c43cc173Smrg int size = 0; 68c43cc173Smrg xQueryDeviceStateReq *req; 69c43cc173Smrg xQueryDeviceStateReply rep; 70c43cc173Smrg XDeviceState *state = NULL; 71c43cc173Smrg XInputClass *any, *Any; 72c43cc173Smrg char *data; 73c43cc173Smrg XExtDisplayInfo *info = XInput_find_display(dpy); 74c43cc173Smrg 75c43cc173Smrg LockDisplay(dpy); 76c43cc173Smrg if (_XiCheckExtInit(dpy, XInput_Initial_Release, info) == -1) 77c43cc173Smrg return ((XDeviceState *) NoSuchExtension); 78c43cc173Smrg 79c43cc173Smrg GetReq(QueryDeviceState, req); 80c43cc173Smrg req->reqType = info->codes->major_opcode; 81c43cc173Smrg req->ReqType = X_QueryDeviceState; 82c43cc173Smrg req->deviceid = dev->device_id; 83c43cc173Smrg 84c43cc173Smrg if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) { 85c43cc173Smrg UnlockDisplay(dpy); 86c43cc173Smrg SyncHandle(); 87c43cc173Smrg return (XDeviceState *) NULL; 88c43cc173Smrg } 89c43cc173Smrg 90c43cc173Smrg rlen = rep.length << 2; 91c43cc173Smrg if (rlen > 0) { 92c43cc173Smrg data = Xmalloc(rlen); 93c43cc173Smrg if (!data) { 94c43cc173Smrg _XEatData(dpy, (unsigned long)rlen); 95c43cc173Smrg UnlockDisplay(dpy); 96c43cc173Smrg SyncHandle(); 97c43cc173Smrg return ((XDeviceState *) NULL); 98c43cc173Smrg } 99c43cc173Smrg _XRead(dpy, data, rlen); 100c43cc173Smrg 101c43cc173Smrg for (i = 0, any = (XInputClass *) data; i < (int)rep.num_classes; i++) { 102c43cc173Smrg switch (any->class) { 103c43cc173Smrg case KeyClass: 104c43cc173Smrg size += sizeof(XKeyState); 105c43cc173Smrg break; 106c43cc173Smrg case ButtonClass: 107c43cc173Smrg size += sizeof(XButtonState); 108c43cc173Smrg break; 109c43cc173Smrg case ValuatorClass: 110c43cc173Smrg { 111c43cc173Smrg xValuatorState *v = (xValuatorState *) any; 112c43cc173Smrg size += (sizeof(XValuatorState) + 113c43cc173Smrg (v->num_valuators * sizeof(int))); 114c43cc173Smrg } 115c43cc173Smrg break; 116c43cc173Smrg } 117c43cc173Smrg any = (XInputClass *) ((char *)any + any->length); 118c43cc173Smrg } 119c43cc173Smrg state = (XDeviceState *) Xmalloc(size + sizeof(XDeviceState)); 120c43cc173Smrg if (!state) { 121c43cc173Smrg UnlockDisplay(dpy); 122c43cc173Smrg SyncHandle(); 123c43cc173Smrg return ((XDeviceState *) NULL); 124c43cc173Smrg } 125c43cc173Smrg state->device_id = dev->device_id; 126c43cc173Smrg state->num_classes = rep.num_classes; 127c43cc173Smrg state->data = (XInputClass *) (state + 1); 128c43cc173Smrg 129c43cc173Smrg Any = state->data; 130c43cc173Smrg for (i = 0, any = (XInputClass *) data; i < (int)rep.num_classes; i++) { 131c43cc173Smrg switch (any->class) { 132c43cc173Smrg case KeyClass: 133c43cc173Smrg { 134c43cc173Smrg xKeyState *k = (xKeyState *) any; 135c43cc173Smrg XKeyState *K = (XKeyState *) Any; 136c43cc173Smrg 137c43cc173Smrg K->class = k->class; 138c43cc173Smrg K->length = sizeof(XKeyState); 139c43cc173Smrg K->num_keys = k->num_keys; 140c43cc173Smrg memcpy((char *)&K->keys[0], (char *)&k->keys[0], 32); 141c43cc173Smrg Any = (XInputClass *) (K + 1); 142c43cc173Smrg } 143c43cc173Smrg break; 144c43cc173Smrg case ButtonClass: 145c43cc173Smrg { 146c43cc173Smrg xButtonState *b = (xButtonState *) any; 147c43cc173Smrg XButtonState *B = (XButtonState *) Any; 148c43cc173Smrg 149c43cc173Smrg B->class = b->class; 150c43cc173Smrg B->length = sizeof(XButtonState); 151c43cc173Smrg B->num_buttons = b->num_buttons; 152c43cc173Smrg memcpy((char *)&B->buttons[0], (char *)&b->buttons[0], 32); 153c43cc173Smrg Any = (XInputClass *) (B + 1); 154c43cc173Smrg } 155c43cc173Smrg break; 156c43cc173Smrg case ValuatorClass: 157c43cc173Smrg { 158c43cc173Smrg xValuatorState *v = (xValuatorState *) any; 159c43cc173Smrg XValuatorState *V = (XValuatorState *) Any; 160c43cc173Smrg CARD32 *valuators = (CARD32 *) (v + 1); 161c43cc173Smrg 162c43cc173Smrg V->class = v->class; 163c27c18e8Smrg V->length = sizeof(XValuatorState) + 164c27c18e8Smrg v->num_valuators * sizeof(int); 165c43cc173Smrg V->num_valuators = v->num_valuators; 166c43cc173Smrg V->mode = v->mode; 167c43cc173Smrg Any = (XInputClass *) (V + 1); 168c43cc173Smrg V->valuators = (int *)Any; 169c43cc173Smrg for (j = 0; j < (int)V->num_valuators; j++) 170c43cc173Smrg *(V->valuators + j) = *valuators++; 171c43cc173Smrg Any = (XInputClass *) ((char *)Any + 172c43cc173Smrg V->num_valuators * sizeof(int)); 173c43cc173Smrg } 174c43cc173Smrg break; 175c43cc173Smrg } 176c43cc173Smrg any = (XInputClass *) ((char *)any + any->length); 177c43cc173Smrg } 178c43cc173Smrg Xfree(data); 179c43cc173Smrg } 180c43cc173Smrg 181c43cc173Smrg UnlockDisplay(dpy); 182c43cc173Smrg SyncHandle(); 183c43cc173Smrg return (state); 184c43cc173Smrg} 185c43cc173Smrg 186c43cc173Smrgvoid 187c27c18e8SmrgXFreeDeviceState(XDeviceState *list) 188c43cc173Smrg{ 189c43cc173Smrg XFree((char *)list); 190c43cc173Smrg} 191