old_hxpckts.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:10k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _HXPCKTS_H_
  36. #define _HXPCKTS_H_
  37. #include "hxmap.h"
  38. #include "ihxpckts.h"
  39. #include "hxbuffer.h" /* For all the places that just include this */
  40. struct HXPacketInfo
  41. {
  42.     UINT8   lost;
  43.     UINT8   ASMFlags;
  44.     UINT16  ASMRuleNumber;
  45.     UINT16  streamNum;
  46.     UINT32  time;
  47. };
  48. /****************************************************************************
  49.  * 
  50.  * Class:
  51.  *
  52.  * CHXPacket
  53.  *
  54.  * Purpose:
  55.  *
  56.  * PN implementation of a basic packet.
  57.  *
  58.  */
  59. class CHXPacket : public IHXRTPPacket
  60. {
  61. protected:
  62.     LONG32 m_lRefCount;
  63.     IHXBuffer* m_pBuffer;
  64.     ULONG32 m_ulTime;
  65.     UINT16 m_uStreamNumber;
  66.     UINT8 m_unASMFlags;
  67.     UINT16 m_unASMRuleNumber;
  68.     BOOL m_bIsLost;
  69.     
  70.     ~CHXPacket()
  71.     {
  72. if (m_pBuffer)
  73. {
  74.     m_pBuffer->Release();
  75. }
  76.     };
  77.     
  78.     inline HX_RESULT _Get(
  79.                    IHXBuffer* &pBuffer, 
  80.    ULONG32 &ulTime,
  81.    UINT16 &uStreamNumber,
  82.    UINT8 &unASMFlags,
  83.    UINT16 &unASMRuleNumber);
  84.     inline HX_RESULT _Set(
  85.                    IHXBuffer* pBuffer, 
  86.    ULONG32 ulTime,
  87.    UINT16 uStreamNumber,
  88.    UINT8 unASMFlags,
  89.    UINT16 unASMRuleNumber);
  90. public:
  91.     CHXPacket()
  92. : m_lRefCount(0)
  93. , m_pBuffer(NULL)
  94. , m_ulTime(0)
  95. , m_uStreamNumber(0)
  96. , m_unASMFlags(0)
  97. , m_unASMRuleNumber(0)
  98. , m_bIsLost(FALSE)
  99.     {
  100. ;
  101.     }
  102.     /*
  103.      * IUnknown methods
  104.      */
  105.     STDMETHOD(QueryInterface) (THIS_
  106. REFIID riid,
  107. void** ppvObj);
  108.     STDMETHOD_(ULONG32,AddRef) (THIS);
  109.     STDMETHOD_(ULONG32,Release) (THIS);
  110.     /*
  111.      * IHXPacket methods
  112.      */
  113.     STDMETHOD(Get) (THIS_
  114. REF(IHXBuffer*) pBuffer, 
  115. REF(ULONG32) ulTime,
  116. REF(UINT16) uStreamNumber,
  117. REF(UINT8) unASMFlags,
  118. REF(UINT16) unASMRuleNumber);
  119.     STDMETHOD_(IHXBuffer*,GetBuffer) (THIS);
  120.     STDMETHOD_(ULONG32,GetTime) (THIS);
  121.     STDMETHOD_(UINT16,GetStreamNumber) (THIS);
  122.     STDMETHOD_(UINT8,GetASMFlags) (THIS);
  123.     STDMETHOD_(UINT16,GetASMRuleNumber) (THIS);
  124.     STDMETHOD_(BOOL,IsLost) (THIS);
  125.     STDMETHOD(SetAsLost) (THIS);
  126.     STDMETHOD(Set) (THIS_
  127. IHXBuffer* pBuffer, 
  128. ULONG32 ulTime,
  129. UINT16 uStreamNumber,
  130. UINT8 unASMFlags,
  131. UINT16 unASMRuleNumber);
  132.     /*
  133.      * IHXPacket methods
  134.      */
  135.    STDMETHOD(GetRTP) (THIS_
  136. REF(IHXBuffer*) pBuffer, 
  137. REF(ULONG32) ulTime,
  138. REF(ULONG32) ulRTPTime,
  139. REF(UINT16) uStreamNumber,
  140. REF(UINT8) unASMFlags,
  141. REF(UINT16) unASMRuleNumber);
  142.    STDMETHOD_(ULONG32,GetRTPTime) (THIS);
  143.    STDMETHOD(SetRTP) (THIS_
  144. IHXBuffer* pBuffer, 
  145. ULONG32 ulTime,
  146. ULONG32 ulRTPTime,
  147. UINT16 uStreamNumber,
  148. UINT8 unASMFlags,
  149. UINT16 unASMRuleNumber);
  150.    // serialization method
  151.    static void Pack (IHXPacket* pPacket, char* pData, UINT32& ulSize);
  152.    static void UnPack (IHXPacket*& pPacket, char* pData, UINT32 ulSize);
  153. };
  154. /****************************************************************************
  155.  * 
  156.  * Class:
  157.  *
  158.  * CHXRTPPacket
  159.  *
  160.  * Purpose:
  161.  *
  162.  * PN implementation of a RTP packet.
  163.  *
  164.  */
  165. class CHXRTPPacket : public CHXPacket
  166. {
  167. protected:
  168.     ULONG32 m_ulRTPTime;
  169.     ~CHXRTPPacket()
  170.     {
  171. ;
  172.     }
  173. public:
  174.     CHXRTPPacket()
  175. : m_ulRTPTime(0)
  176.     {
  177. ;
  178.     }
  179.     /*
  180.      * IUnknown methods - override
  181.      */
  182.     STDMETHOD(QueryInterface) (THIS_
  183. REFIID riid,
  184. void** ppvObj);
  185.     STDMETHOD_(ULONG32,Release) (THIS);
  186.     /*
  187.      * IHXPacket methods - override
  188.      */
  189.     STDMETHOD(Set) (THIS_
  190. IHXBuffer* pBuffer, 
  191. ULONG32 ulTime,
  192. UINT16 uStreamNumber,
  193. UINT8 unASMFlags,
  194. UINT16 unASMRuleNumber);
  195.     /*
  196.      * IHXRTPPacket methods - override
  197.      */
  198.     STDMETHOD(GetRTP) (THIS_
  199. REF(IHXBuffer*) pBuffer, 
  200. REF(ULONG32) ulTime,
  201. REF(ULONG32) ulRTPTime,
  202. REF(UINT16) uStreamNumber,
  203. REF(UINT8) unASMFlags,
  204. REF(UINT16) unASMRuleNumber);
  205.     STDMETHOD_(ULONG32,GetRTPTime) (THIS);
  206.     STDMETHOD(SetRTP) (THIS_
  207. IHXBuffer* pBuffer, 
  208. ULONG32 ulTime,
  209. ULONG32 ulRTPTime,
  210. UINT16 uStreamNumber,
  211. UINT8 unASMFlags,
  212. UINT16 unASMRuleNumber);
  213. };
  214. class _CStoreName
  215. {
  216. public:
  217.     _CStoreName();
  218.     virtual ~_CStoreName();
  219.     const CHXString& GetName() const;
  220.     void SetName(const char* szName);
  221. private:
  222.     CHXString m_strName;
  223. };
  224. class _CStoreNameUINT32Pair : public _CStoreName
  225. {
  226. public:
  227.     _CStoreNameUINT32Pair();
  228.     ~_CStoreNameUINT32Pair();
  229.     UINT32 GetValue();
  230.     void SetValue(UINT32 ulValue);
  231. private:
  232.     UINT32 m_ulValue;
  233. };
  234. class _CStoreNameBufferPair : public _CStoreName
  235. {
  236. public:
  237.     _CStoreNameBufferPair();
  238.     ~_CStoreNameBufferPair();
  239.     IHXBuffer* GetValue();
  240.     void SetValue(IHXBuffer* pbufValue);
  241. private:
  242.     IHXBuffer* m_pbufValue;
  243. };
  244. /****************************************************************************
  245.  * 
  246.  * Class:
  247.  *
  248.  * CHXHeader
  249.  *
  250.  * Purpose:
  251.  *
  252.  * PN implementation of a basic header.
  253.  *
  254.  */
  255. class CHXHeader : public IHXValues
  256. {
  257. private:
  258. LONG32 m_lRefCount;
  259. CHXMapStringToOb m_ULONG32Map;
  260. CHXMapStringToOb m_BufferMap;
  261. CHXMapStringToOb m_CStringMap;
  262. // set to TRUE if Get/SetPropertyCString is to preserve the case
  263. // of the property name
  264. BOOL m_bPreserveCase;
  265. POSITION m_ULONG32Position;
  266. POSITION m_BufferPosition;
  267. POSITION m_CStringPosition;
  268. ~CHXHeader();
  269. PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  270. protected:
  271. #if 0
  272. // function to encode CString property escape sequences
  273. IHXBuffer* encodeCString(IHXBuffer* pBuffer);
  274. // function to encode buffer property int MIME Base64
  275. IHXBuffer* encodeBuffer(IHXBuffer* pBuffer);
  276. #endif
  277. public:
  278. CHXHeader()
  279. : m_lRefCount(0)
  280. , m_bPreserveCase(FALSE)
  281. , m_ULONG32Position (0)
  282. , m_BufferPosition (0)
  283. , m_CStringPosition (0)
  284. {
  285.         };
  286.     /*
  287.      * IUnknown methods
  288.      */
  289.     STDMETHOD(QueryInterface) (THIS_
  290. REFIID riid,
  291. void** ppvObj);
  292.     STDMETHOD_(ULONG32,AddRef) (THIS);
  293.     STDMETHOD_(ULONG32,Release) (THIS);
  294.     /*
  295.      * IHXValues methods
  296.      */
  297.     STDMETHOD(SetPropertyULONG32) (THIS_
  298. const char*  pPropertyName,
  299. ULONG32  uPropertyValue);
  300.     STDMETHOD(GetPropertyULONG32) (THIS_
  301. const char*  pPropertyName,
  302. REF(ULONG32)  uPropertyValue);
  303.     STDMETHOD(GetFirstPropertyULONG32) (THIS_
  304. REF(const char*) pPropertyName,
  305. REF(ULONG32)  uPropertyValue);
  306.     STDMETHOD(GetNextPropertyULONG32) (THIS_
  307. REF(const char*) pPropertyName,
  308. REF(ULONG32)  uPropertyValue);
  309.     STDMETHOD(SetPropertyBuffer) (THIS_
  310. const char*  pPropertyName,
  311. IHXBuffer*  pPropertyValue);
  312.     STDMETHOD(GetPropertyBuffer) (THIS_
  313. const char*  pPropertyName,
  314. REF(IHXBuffer*) pPropertyValue);
  315. #if 0
  316.     STDMETHOD(GetEncodedPropertyBuffer) (THIS_
  317. const char*  pPropertyName,
  318. REF(IHXBuffer*) pPropertyValue);
  319. #endif
  320.     STDMETHOD(GetFirstPropertyBuffer) (THIS_
  321. REF(const char*) pPropertyName,
  322. REF(IHXBuffer*) pPropertyValue);
  323.     STDMETHOD(GetNextPropertyBuffer) (THIS_
  324. REF(const char*) pPropertyName,
  325. REF(IHXBuffer*) pPropertyValue);
  326.     STDMETHOD(SetPropertyCString) (THIS_
  327. const char*  pPropertyName,
  328. IHXBuffer*  pPropertyValue);
  329.     STDMETHOD(GetPropertyCString) (THIS_
  330. const char*  pPropertyName,
  331. REF(IHXBuffer*) pPropertyValue);
  332. #if 0
  333.     STDMETHOD(GetEncodedPropertyCString)(THIS_
  334. const char*  pPropertyName,
  335. REF(IHXBuffer*) pPropertyValue);
  336. #endif
  337.     STDMETHOD(GetFirstPropertyCString) (THIS_
  338. REF(const char*) pPropertyName,
  339. REF(IHXBuffer*) pPropertyValue);
  340.     STDMETHOD(GetNextPropertyCString) (THIS_
  341. REF(const char*) pPropertyName,
  342. REF(IHXBuffer*) pPropertyValue);
  343.     void PreserveCase (BOOL bPreserve) { m_bPreserveCase = bPreserve; }
  344. public:
  345.     static void mergeHeaders
  346.     (
  347. IHXValues* pIHXValuesDestHeaders, 
  348. IHXValues* pIHXValuesSourceHeaders
  349.     );
  350. };
  351. #endif /* _HXPCKTS_H_ */