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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: ICEmsg.h,v 1.4 2001/02/09 02:03:26 xorgcvs Exp $ */
  2. /******************************************************************************
  3. Copyright 1993, 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 in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. Author: Ralph Mor, X Consortium
  21. ******************************************************************************/
  22. /* $XFree86: xc/lib/ICE/ICEmsg.h,v 1.4 2001/12/20 19:40:59 tsi Exp $ */
  23. #ifndef _ICEMSG_H_
  24. #define _ICEMSG_H_
  25. #include <X11/Xfuncproto.h>
  26. #include <X11/ICE/ICEconn.h>
  27. _XFUNCPROTOBEGIN
  28. /*
  29.  * Function prototypes for internal ICElib functions
  30.  */
  31. extern Status _IceRead (
  32.     IceConn /* iceConn */,
  33.     unsigned long /* nbytes */,
  34.     char * /* ptr */
  35. );
  36. extern void _IceReadSkip (
  37.     IceConn /* iceConn */,
  38.     unsigned long /* nbytes */
  39. );
  40. extern void _IceWrite (
  41.     IceConn /* iceConn */,
  42.     unsigned long /* nbytes */,
  43.     char * /* ptr */
  44. );
  45. extern void _IceErrorBadMinor (
  46.     IceConn /* iceConn */,
  47.     int /* majorOpcode */,
  48.     int /* offendingMinor */,
  49.     int /* severity */
  50. );
  51. extern void _IceErrorBadState (
  52.     IceConn /* iceConn */,
  53.     int /* majorOpcode */,
  54.     int /* offendingMinor */,
  55.     int /* severity */
  56. );
  57. extern void _IceErrorBadLength (
  58.     IceConn /* iceConn */,
  59.     int /* majorOpcode */,
  60.     int /* offendingMinor */,
  61.     int /* severity */
  62. );
  63. extern void _IceErrorBadValue (
  64.     IceConn /* iceConn */,
  65.     int /* majorOpcode */,
  66.     int /* offendingMinor */,
  67.     int /* offset */,
  68.     int /* length */,
  69.     IcePointer /* value */
  70. );
  71. /*
  72.  * Macro to check if IO operations are valid on an ICE connection.
  73.  */
  74. #define IceValidIO(_iceConn) _iceConn->io_ok
  75. /*
  76.  * Macros for writing messages.
  77.  */
  78. #define IceGetHeader(_iceConn, _major, _minor, _headerSize, _msgType, _pMsg) 
  79.     if ((_iceConn->outbufptr + _headerSize) > _iceConn->outbufmax) 
  80.         IceFlush (_iceConn); 
  81.     _pMsg = (_msgType *) _iceConn->outbufptr; 
  82.     _pMsg->majorOpcode = _major; 
  83.     _pMsg->minorOpcode = _minor; 
  84.     _pMsg->length = (_headerSize - SIZEOF (iceMsg)) >> 3; 
  85.     _iceConn->outbufptr += _headerSize; 
  86.     _iceConn->send_sequence++
  87. #define IceGetHeaderExtra(_iceConn, _major, _minor, _headerSize, _extra, _msgType, _pMsg, _pData) 
  88.     if ((_iceConn->outbufptr + 
  89. _headerSize + ((_extra) << 3)) > _iceConn->outbufmax) 
  90.         IceFlush (_iceConn); 
  91.     _pMsg = (_msgType *) _iceConn->outbufptr; 
  92.     if ((_iceConn->outbufptr + 
  93. _headerSize + ((_extra) << 3)) <= _iceConn->outbufmax) 
  94.         _pData = (char *) _pMsg + _headerSize; 
  95.     else 
  96.         _pData = NULL; 
  97.     _pMsg->majorOpcode = _major; 
  98.     _pMsg->minorOpcode = _minor; 
  99.     _pMsg->length = ((_headerSize - SIZEOF (iceMsg)) >> 3) + (_extra); 
  100.     _iceConn->outbufptr += (_headerSize + ((_extra) << 3)); 
  101.     _iceConn->send_sequence++
  102. #define IceSimpleMessage(_iceConn, _major, _minor) 
  103.     iceMsg *_pMsg; 
  104.     IceGetHeader (_iceConn, _major, _minor, SIZEOF (iceMsg), iceMsg, _pMsg); 
  105. }
  106. #define IceErrorHeader(_iceConn, _offendingMajorOpcode, _offendingMinorOpcode, _offendingSequenceNum, _severity, _errorClass, _dataLength) 
  107.     iceErrorMsg *_pMsg; 
  108.     IceGetHeader (_iceConn, _offendingMajorOpcode, ICE_Error, 
  109. SIZEOF (iceErrorMsg), iceErrorMsg, _pMsg); 
  110.     _pMsg->length += (_dataLength); 
  111.     _pMsg->offendingMinorOpcode = _offendingMinorOpcode; 
  112.     _pMsg->severity = _severity; 
  113.     _pMsg->offendingSequenceNum = _offendingSequenceNum; 
  114.     _pMsg->errorClass = _errorClass; 
  115. }
  116. /*
  117.  * Write data into the ICE output buffer.
  118.  */
  119. #define IceWriteData(_iceConn, _bytes, _data) 
  120.     if ((_iceConn->outbufptr + (_bytes)) > _iceConn->outbufmax) 
  121.     { 
  122. IceFlush (_iceConn); 
  123.         _IceWrite (_iceConn, (unsigned long) (_bytes), _data); 
  124.     } 
  125.     else 
  126.     { 
  127.         memcpy (_iceConn->outbufptr, _data, _bytes); 
  128.         _iceConn->outbufptr += (_bytes); 
  129.     } 
  130. }
  131. #ifndef WORD64
  132. #define IceWriteData16(_iceConn, _bytes, _data) 
  133.     IceWriteData (_iceConn, _bytes, (char *) _data)
  134. #define IceWriteData32(_iceConn, _bytes, _data) 
  135.     IceWriteData (_iceConn, _bytes, (char *) _data)
  136. #else /* WORD64 */
  137. /* IceWriteData16 and IceWriteData32 defined in misc.c for WORD64 */
  138. #endif /* WORD64 */
  139. /*
  140.  * The IceSendData macro bypasses copying the data to the
  141.  * ICE connection buffer and sends the data directly.  If necessary,
  142.  * the ICE connection buffer is first flushed.
  143.  */
  144. #define IceSendData(_iceConn, _bytes, _data) 
  145.     if (_iceConn->outbufptr > _iceConn->outbuf) 
  146. IceFlush (_iceConn); 
  147.     _IceWrite (_iceConn, (unsigned long) (_bytes), _data); 
  148. }
  149. /*
  150.  * Write pad bytes.  Used to force 32 or 64 bit alignment.
  151.  * A maxium of 7 pad bytes can be specified.
  152.  */
  153. #define IceWritePad(_iceConn, _bytes) 
  154.     if ((_iceConn->outbufptr + (_bytes)) > _iceConn->outbufmax) 
  155.     { 
  156.         char _dummy[7]; 
  157. IceFlush (_iceConn); 
  158.         _IceWrite (_iceConn, (unsigned long) (_bytes), _dummy); 
  159.     } 
  160.     else 
  161.     { 
  162.         _iceConn->outbufptr += (_bytes); 
  163.     } 
  164. }
  165. /*
  166.  * Macros for reading messages.
  167.  */
  168. #define IceReadCompleteMessage(_iceConn, _headerSize, _msgType, _pMsg, _pData)
  169.     unsigned long _bytes; 
  170.     IceReadMessageHeader (_iceConn, _headerSize, _msgType, _pMsg); 
  171.     _bytes = (_pMsg->length << 3) - (_headerSize - SIZEOF (iceMsg)); 
  172.     if ((_iceConn->inbufmax - _iceConn->inbufptr) >= _bytes) 
  173.     { 
  174. _IceRead (_iceConn, _bytes, _iceConn->inbufptr); 
  175. _pData = _iceConn->inbufptr; 
  176. _iceConn->inbufptr += _bytes; 
  177.     } 
  178.     else 
  179.     { 
  180. _pData = (char *) malloc ((unsigned) _bytes); 
  181.         if (_pData) 
  182.     _IceRead (_iceConn, _bytes, _pData); 
  183.         else 
  184.     _IceReadSkip (_iceConn, _bytes); 
  185.     } 
  186. }
  187. #define IceDisposeCompleteMessage(_iceConn, _pData) 
  188.     if ((char *) _pData < _iceConn->inbuf || 
  189. (char *) _pData >= _iceConn->inbufmax) 
  190.         free ((char *) _pData);
  191. #define IceReadSimpleMessage(_iceConn, _msgType, _pMsg) 
  192.     _pMsg = (_msgType *) (_iceConn->inbuf);
  193. #define IceReadMessageHeader(_iceConn, _headerSize, _msgType, _pMsg) 
  194.     _IceRead (_iceConn, 
  195. (unsigned long) (_headerSize - SIZEOF (iceMsg)), 
  196. _iceConn->inbufptr); 
  197.     _pMsg = (_msgType *) (_iceConn->inbuf); 
  198.     _iceConn->inbufptr += (_headerSize - SIZEOF (iceMsg)); 
  199. }
  200. #define IceReadData(_iceConn, _bytes, _pData) 
  201.     _IceRead (_iceConn, (unsigned long) (_bytes), (char *) _pData); 
  202. #ifndef WORD64
  203. #define IceReadData16(_iceConn, _swap, _bytes, _pData) 
  204.     _IceRead (_iceConn, (unsigned long) (_bytes), (char *) _pData); 
  205. }
  206. #define IceReadData32(_iceConn, _swap, _bytes, _pData) 
  207.     _IceRead (_iceConn, (unsigned long) (_bytes), (char *) _pData); 
  208. }
  209. #else /* WORD64 */
  210. /* IceReadData16 and IceReadData32 defined in misc.c for WORD64 */
  211. #endif /* WORD64 */
  212. /*
  213.  * Read pad bytes (for 32 or 64 bit alignment).
  214.  * A maxium of 7 pad bytes can be specified.
  215.  */
  216. #define IceReadPad(_iceConn, _bytes) 
  217.     char _dummy[7]; 
  218.     _IceRead (_iceConn, (unsigned long) (_bytes), _dummy); 
  219. }
  220. _XFUNCPROTOEND
  221. #endif /* _ICEMSG_H_ */