old_hxpckts.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:11k
源码类别:

Symbian

开发平台:

Visual C++

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