Xpoll.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /*
  2. Copyright 1994, 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
  9. in all copies or substantial portions of the Software.
  10. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  11. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  12. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  13. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  14. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  15. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  16. OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall
  18. not be used in advertising or otherwise to promote the sale, use or
  19. other dealings in this Software without prior written authorization
  20. from The Open Group.
  21. */
  22. /*
  23. * Copyright © 2005 Daniel Stone
  24. *
  25. * Permission to use, copy, modify, distribute, and sell this software and its
  26. * documentation for any purpose is hereby granted without fee, provided that
  27. * the above copyright notice appear in all copies and that both that
  28. * copyright notice and this permission notice appear in supporting
  29. * documentation, and that the name of Daniel Stone not be used in advertising
  30. * or publicity pertaining to distribution of the software without specific,
  31. * written prior permission. Daniel Stone makes no representations about the
  32. * suitability of this software for any purpose. It is provided "as is"
  33. * without express or implied warranty.
  34. *
  35. * DANIEL STONE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  36. * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  37. * DANIEL STONE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  38. * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  39. * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  40. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  41. */
  42. #ifndef _XPOLL_H_
  43. #define _XPOLL_H_
  44. #if !defined(WIN32) || defined(__CYGWIN__)
  45. #ifndef USE_POLL
  46. #include <X11/Xos.h>
  47. #include <sys/select.h> /* Get the FD_* macros. */
  48. #include <X11/Xmd.h>
  49. #ifdef CSRG_BASED
  50. #include <sys/param.h>
  51. # if BSD < 199103
  52. typedef long fd_mask;
  53. # endif
  54. #endif
  55. #if defined(FD_SETSIZE) && FD_SETSIZE < 512
  56. # define XFD_SETSIZE FD_SETSIZE
  57. #else
  58. # define XFD_SETSIZE 512
  59. # ifndef FD_SETSIZE
  60. # define FD_SETSIZE XFD_SETSIZE
  61. # endif
  62. #endif
  63. #ifndef NBBY
  64. #define NBBY 8 /* number of bits in a byte */
  65. #endif
  66. #ifndef NFDBITS
  67. #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
  68. #endif
  69. #ifndef howmany
  70. #define howmany(x,y) (((x)+((y)-1))/(y))
  71. #endif
  72. #if defined(BSD) && BSD < 198911
  73. typedef struct fd_set {
  74. fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
  75. } fd_set;
  76. #endif
  77. # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
  78. #define __X_FDS_BITS __fds_bits
  79. #ifndef __FDS_BITS
  80. # define __FDS_BITS(p) ((p)->__X_FDS_BITS)
  81. #endif
  82. #define __XFDS_BITS(p, n) (__FDS_BITS(p))[n]
  83. #ifndef FD_SET
  84. #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS)))
  85. #endif
  86. #ifndef FD_CLR
  87. #define FD_CLR(n, p) (__XFDS_BITS((p), ((n)/NFDBITS)) &= ~((fd_mask)1 << ((n) % NFDBITS)))
  88. #endif
  89. #ifndef FD_ISSET
  90. #define FD_ISSET(n, p) ((__XFDS_BITS((p), ((n)/NFDBITS))) & ((fd_mask)1 << ((n) % NFDBITS)))
  91. #endif
  92. #ifndef FD_ZERO
  93. #define FD_ZERO(p) bzero((char *)(p), sizeof(*(p)))
  94. #endif
  95. /*
  96. * The howmany(FD_SETSIZE, NFDBITS) computes the number of elements in the
  97. * array. before accessing an element in the array we check it exists.
  98. * If it does not exist then the compiler discards the code to access it.
  99. */
  100. #define XFD_ANYSET(p) \
  101. ((howmany(FD_SETSIZE, NFDBITS) > 0 && (__XFDS_BITS(p, 0))) || \
  102. (howmany(FD_SETSIZE, NFDBITS) > 1 && (__XFDS_BITS(p, 1))) || \
  103. (howmany(FD_SETSIZE, NFDBITS) > 2 && (__XFDS_BITS(p, 2))) || \
  104. (howmany(FD_SETSIZE, NFDBITS) > 3 && (__XFDS_BITS(p, 3))) || \
  105. (howmany(FD_SETSIZE, NFDBITS) > 4 && (__XFDS_BITS(p, 4))) || \
  106. (howmany(FD_SETSIZE, NFDBITS) > 5 && (__XFDS_BITS(p, 5))) || \
  107. (howmany(FD_SETSIZE, NFDBITS) > 6 && (__XFDS_BITS(p, 6))) || \
  108. (howmany(FD_SETSIZE, NFDBITS) > 7 && (__XFDS_BITS(p, 7))) || \
  109. (howmany(FD_SETSIZE, NFDBITS) > 8 && (__XFDS_BITS(p, 8))) || \
  110. (howmany(FD_SETSIZE, NFDBITS) > 9 && (__XFDS_BITS(p, 9))) || \
  111. (howmany(FD_SETSIZE, NFDBITS) > 10 && (__XFDS_BITS(p, 10))) || \
  112. (howmany(FD_SETSIZE, NFDBITS) > 11 && (__XFDS_BITS(p, 11))) || \
  113. (howmany(FD_SETSIZE, NFDBITS) > 12 && (__XFDS_BITS(p, 12))) || \
  114. (howmany(FD_SETSIZE, NFDBITS) > 13 && (__XFDS_BITS(p, 13))) || \
  115. (howmany(FD_SETSIZE, NFDBITS) > 14 && (__XFDS_BITS(p, 14))) || \
  116. (howmany(FD_SETSIZE, NFDBITS) > 15 && (__XFDS_BITS(p, 15))))
  117. #define XFD_COPYSET(src,dst) { \
  118. int __i__; \
  119. for (__i__ = 0; __i__ < howmany(FD_SETSIZE, NFDBITS); __i__++) \
  120. __XFDS_BITS((dst), __i__) = __XFDS_BITS((src), __i__); \
  121. }
  122. #define XFD_ANDSET(dst,b1,b2) { \
  123. int __i__; \
  124. for (__i__ = 0; __i__ < howmany(FD_SETSIZE, NFDBITS); __i__++) \
  125. __XFDS_BITS((dst), __i__) = ((__XFDS_BITS((b1), __i__)) & (__XFDS_BITS((b2), __i__))); \
  126. }
  127. #define XFD_ORSET(dst,b1,b2) { \
  128. int __i__; \
  129. for (__i__ = 0; __i__ < howmany(FD_SETSIZE, NFDBITS); __i__++) \
  130. __XFDS_BITS((dst), __i__) = ((__XFDS_BITS((b1), __i__)) | (__XFDS_BITS((b2), __i__))); \
  131. }
  132. #define XFD_UNSET(dst,b1) { \
  133. int __i__; \
  134. for (__i__ = 0; __i__ < howmany(FD_SETSIZE, NFDBITS); __i__++) \
  135. __XFDS_BITS((dst), __i__) &= ~(__XFDS_BITS((b1), __i__)); \
  136. }
  137. #else /* USE_POLL */
  138. #include <sys/poll.h>
  139. #endif /* USE_POLL */
  140. #else /* WIN32 */
  141. #define XFD_SETSIZE 512
  142. #ifndef FD_SETSIZE
  143. #define FD_SETSIZE XFD_SETSIZE
  144. #endif
  145. #include <X11/Xwinsock.h>
  146. #define Select(n,r,w,e,t) select(0,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
  147. #define XFD_SETCOUNT(p) (((fd_set FAR *)(p))->fd_count)
  148. #define XFD_FD(p,i) (((fd_set FAR *)(p))->fd_array[i])
  149. #define XFD_ANYSET(p) XFD_SETCOUNT(p)
  150. #define XFD_COPYSET(src,dst) { \
  151. u_int __i; \
  152. FD_ZERO(dst); \
  153. for (__i = 0; __i < XFD_SETCOUNT(src) ; __i++) { \
  154. XFD_FD(dst,__i) = XFD_FD(src,__i); \
  155. } \
  156. XFD_SETCOUNT(dst) = XFD_SETCOUNT(src); \
  157. }
  158. #define XFD_ANDSET(dst,b1,b2) { \
  159. u_int __i; \
  160. FD_ZERO(dst); \
  161. for (__i = 0; __i < XFD_SETCOUNT(b1) ; __i++) { \
  162. if (FD_ISSET(XFD_FD(b1,__i), b2)) \
  163. FD_SET(XFD_FD(b1,__i), dst); \
  164. } \
  165. }
  166. #define XFD_ORSET(dst,b1,b2) { \
  167. u_int __i; \
  168. if (dst != b1) XFD_COPYSET(b1,dst); \
  169. for (__i = 0; __i < XFD_SETCOUNT(b2) ; __i++) { \
  170. if (!FD_ISSET(XFD_FD(b2,__i), dst)) \
  171. FD_SET(XFD_FD(b2,__i), dst); \
  172. } \
  173. }
  174. /* this one is really sub-optimal */
  175. #define XFD_UNSET(dst,b1) { \
  176. u_int __i; \
  177. for (__i = 0; __i < XFD_SETCOUNT(b1) ; __i++) { \
  178. FD_CLR(XFD_FD(b1,__i), dst); \
  179. } \
  180. }
  181. /* we have to pay the price of having an array here, unlike with bitmasks
  182. calling twice FD_SET with the same fd is not transparent, so be careful */
  183. #undef FD_SET
  184. #define FD_SET(fd,set) do { \
  185. if (XFD_SETCOUNT(set) < FD_SETSIZE && !FD_ISSET(fd,set)) \
  186. XFD_FD(set,XFD_SETCOUNT(set)++)=(fd); \
  187. } while(0)
  188. #define getdtablesize() FD_SETSIZE
  189. #endif /* WIN32 */
  190. #endif /* _XPOLL_H_ */