Xpoll.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:8k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

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