opendev.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /************************************************************
  2. Copyright 1989, 1998 The Open Group
  3. Permission to use, copy, modify, distribute, and sell this software and its
  4. documentation for any purpose is hereby granted without fee, provided that
  5. the above copyright notice appear in all copies and that both that
  6. copyright notice and this permission notice appear in supporting
  7. documentation.
  8. The above copyright notice and this permission notice shall be included in
  9. all copies or substantial portions of the Software.
  10. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  11. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  12. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  13. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  14. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  15. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  16. Except as contained in this notice, the name of The Open Group shall not be
  17. used in advertising or otherwise to promote the sale, use or other dealings
  18. in this Software without prior written authorization from The Open Group.
  19. Copyright 1989 by Hewlett-Packard Company, Palo Alto, California.
  20. All Rights Reserved
  21. Permission to use, copy, modify, and distribute this software and its
  22. documentation for any purpose and without fee is hereby granted,
  23. provided that the above copyright notice appear in all copies and that
  24. both that copyright notice and this permission notice appear in
  25. supporting documentation, and that the name of Hewlett-Packard not be
  26. used in advertising or publicity pertaining to distribution of the
  27. software without specific, written prior permission.
  28. HEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  29. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  30. HEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  31. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  32. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  33. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  34. SOFTWARE.
  35. ********************************************************/
  36. /***********************************************************************
  37. *
  38. * Request to open an extension input device.
  39. *
  40. */
  41. #ifdef HAVE_DIX_CONFIG_H
  42. #include <dix-config.h>
  43. #endif
  44. #include "inputstr.h" /* DeviceIntPtr */
  45. #include <X11/extensions/XI.h>
  46. #include <X11/extensions/XIproto.h>
  47. #include "XIstubs.h"
  48. #include "windowstr.h" /* window structure */
  49. #include "exglobals.h"
  50. #include "exevents.h"
  51. #include "opendev.h"
  52. extern CARD8 event_base[];
  53. /***********************************************************************
  54. *
  55. * This procedure swaps the request if the server and client have different
  56. * byte orderings.
  57. *
  58. */
  59. int
  60. SProcXOpenDevice(ClientPtr client)
  61. {
  62. REQUEST(xOpenDeviceReq);
  63. swaps(&stuff->length);
  64. return (ProcXOpenDevice(client));
  65. }
  66. /***********************************************************************
  67. *
  68. * This procedure causes the server to open an input device.
  69. *
  70. */
  71. int
  72. ProcXOpenDevice(ClientPtr client)
  73. {
  74. xInputClassInfo evbase[numInputClasses];
  75. int j = 0;
  76. int status = Success;
  77. xOpenDeviceReply rep;
  78. DeviceIntPtr dev;
  79. REQUEST(xOpenDeviceReq);
  80. REQUEST_SIZE_MATCH(xOpenDeviceReq);
  81. status = dixLookupDevice(&dev, stuff->deviceid, client, DixUseAccess);
  82. if (status == BadDevice) { /* not open */
  83. for (dev = inputInfo.off_devices; dev; dev = dev->next)
  84. if (dev->id == stuff->deviceid)
  85. break;
  86. if (dev == NULL)
  87. return BadDevice;
  88. }
  89. else if (status != Success)
  90. return status;
  91. if (IsMaster(dev))
  92. return BadDevice;
  93. if (status != Success)
  94. return status;
  95. if (dev->key != NULL) {
  96. evbase[j].class = KeyClass;
  97. evbase[j++].event_type_base = event_base[KeyClass];
  98. }
  99. if (dev->button != NULL) {
  100. evbase[j].class = ButtonClass;
  101. evbase[j++].event_type_base = event_base[ButtonClass];
  102. }
  103. if (dev->valuator != NULL) {
  104. evbase[j].class = ValuatorClass;
  105. evbase[j++].event_type_base = event_base[ValuatorClass];
  106. }
  107. if (dev->kbdfeed != NULL || dev->ptrfeed != NULL || dev->leds != NULL ||
  108. dev->intfeed != NULL || dev->bell != NULL || dev->stringfeed != NULL) {
  109. evbase[j].class = FeedbackClass;
  110. evbase[j++].event_type_base = event_base[FeedbackClass];
  111. }
  112. if (dev->focus != NULL) {
  113. evbase[j].class = FocusClass;
  114. evbase[j++].event_type_base = event_base[FocusClass];
  115. }
  116. if (dev->proximity != NULL) {
  117. evbase[j].class = ProximityClass;
  118. evbase[j++].event_type_base = event_base[ProximityClass];
  119. }
  120. evbase[j].class = OtherClass;
  121. evbase[j++].event_type_base = event_base[OtherClass];
  122. rep = (xOpenDeviceReply) {
  123. .repType = X_Reply,
  124. .RepType = X_OpenDevice,
  125. .sequenceNumber = client->sequence,
  126. .length = bytes_to_int32(j * sizeof(xInputClassInfo)),
  127. .num_classes = j
  128. };
  129. WriteReplyToClient(client, sizeof(xOpenDeviceReply), &rep);
  130. WriteToClient(client, j * sizeof(xInputClassInfo), evbase);
  131. return Success;
  132. }
  133. /***********************************************************************
  134. *
  135. * This procedure writes the reply for the XOpenDevice function,
  136. * if the client and server have a different byte ordering.
  137. *
  138. */
  139. void
  140. SRepXOpenDevice(ClientPtr client, int size, xOpenDeviceReply * rep)
  141. {
  142. swaps(&rep->sequenceNumber);
  143. swapl(&rep->length);
  144. WriteToClient(client, size, rep);
  145. }