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

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 _HXSMSTR_H_
  36. #define _HXSMSTR_H_
  37. #include "hxtypes.h"
  38. #include "hxcom.h"
  39. #include "hxbdwdth.h" /* IHXBandwidthNegotiator */
  40. #include "hxasm.h"    /* IHXASMStream2 */
  41. #include "hxengin.h"  /* IXHCallback */
  42. #include "hxmap.h"    /* CHXMapPtrToPtr */
  43. class ASMRuleBook;
  44. class HXStream;
  45. class HXSource;
  46. class CASMRuleState;
  47. struct IHXRegistry;
  48. struct IHXErrorMessages;
  49. class HXASMStream : public IHXASMStream2,
  50.     public IHXStreamBandwidthNegotiator,
  51.     public IHXStreamBandwidthBias,
  52.     public IHXASMProps,
  53.     public IHXAtomicRuleGather
  54. {
  55. public:
  56.     HXASMStream(HXStream* pStream, HXSource* pSource);
  57.     ~HXASMStream();
  58.     STDMETHOD (QueryInterface ) (THIS_ REFIID ID, void** ppInterfaceObj);
  59.     STDMETHOD_(UINT32, AddRef ) (THIS);
  60.     STDMETHOD_(UINT32, Release) (THIS);
  61.     STDMETHOD(AddStreamSink) (THIS_
  62. IHXASMStreamSink* pASMStreamSink);
  63.     
  64.     STDMETHOD(RemoveStreamSink) (THIS_
  65. IHXASMStreamSink* pASMStreamSink);
  66.     STDMETHOD(Subscribe) (THIS_
  67. UINT16 uRuleNumber);
  68.     STDMETHOD(Unsubscribe) (THIS_
  69. UINT16 uRuleNumber);
  70.     STDMETHOD(Disable)         (THIS_
  71. UINT16 uRuleNumber);
  72.     STDMETHOD(Enable)         (THIS_
  73. UINT16 uRuleNumber);
  74.     STDMETHOD(ReCompute) (THIS);
  75.     /*
  76.      * IHXStreamBandwidthNegotiator methods
  77.      */
  78.     STDMETHOD(SetBandwidthUsage) (THIS_
  79. REF(UINT32) ulRecvBitRate,
  80. REF(BOOL) bTimeStampDelivery);
  81.     STDMETHOD(HandleSlowSource)         (THIS_
  82. UINT32 ulRecvBitRate);
  83.     STDMETHOD(GetFixedBandwidth) (THIS_
  84. REF(UINT32) ulBitRate);
  85.     STDMETHOD(GetThresholdInfo) (THIS_
  86. float*     pThreshold,
  87. REF(UINT32) ulNumThreshold);
  88.     STDMETHOD(UnRegister) (THIS);
  89.     STDMETHOD_(ULONG32,GetNumThresholds)(THIS);
  90.     /*
  91.      * IHXStreamBandwidthBias methods
  92.      */
  93.     STDMETHOD(GetBiasFactor) (THIS_
  94. REF(INT32) ulBiasFactor);
  95.     STDMETHOD(SetBiasFactor) (THIS_
  96. INT32 ulBiasFactor);
  97.     /* IHXASMProps methods */
  98.     STDMETHOD(GetPreData) (THIS_
  99. REF(UINT32) ulPreData);
  100.     STDMETHOD(GetBandwidth) (THIS_
  101. REF(UINT32) ulBandwidth);
  102.     STDMETHOD(RuleGather) (THIS_
  103.      CHXSimpleList* pList);
  104.     STDMETHOD(RuleFlush) (THIS_
  105.      CHXSimpleList* pList);
  106.     HX_RESULT ResetASMSource (IHXASMSource* pASMSource);
  107.     BOOL IsTimeStampDelivery() {return m_bTimeStampDeliveryMode;}
  108.     void PostEndTimePacket(IHXPacket* pPacket, BOOL& bSentMe, BOOL& bEndMe);
  109.     void ResetASMRuleState(void);
  110.     class LossCheckCallback: public IHXCallback
  111.     {
  112.     public:
  113.         LossCheckCallback(HXASMStream* pASMStream);
  114.         STDMETHOD (QueryInterface ) (THIS_ REFIID ID, void** ppInterfaceObj);
  115.         STDMETHOD_(UINT32, AddRef ) (THIS);
  116.         STDMETHOD_(UINT32, Release) (THIS);
  117.         STDMETHOD(Func)             (THIS);
  118.     private:
  119.         HXASMStream*    m_pASMStream;
  120.         LONG32          m_lRefCount;
  121.         
  122.         ~LossCheckCallback() {};
  123.         PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  124.     };
  125.     HX_BITFIELD m_bTimeStampDeliveryMode : 1;
  126.     HX_BITFIELD m_bInitialSubscribe : 1;
  127. private:
  128.     HX_BITFIELD m_bHasExpression : 1;
  129.     HX_BITFIELD m_bEndOneRuleEndAll : 1;
  130.     UINT32 m_ulLastLimitBandwidth;
  131.     INT32 m_lRefCount;
  132.     CHXMapPtrToPtr*     m_pStreamSinkMap;
  133.     IHXValues*          m_pHeader;
  134.     UINT16         m_uStreamNumber;
  135.     UINT16 m_nNumRules;
  136.     HXSource* m_pSource;
  137.     IHXASMSource*      m_pASMSource;
  138.     IHXRegistry*     m_pRegistry;
  139.     IHXScheduler*      m_pScheduler;
  140.     IHXAtomicRuleChange* m_pAtomicRuleChange;
  141.     ASMRuleBook*        m_pRuleBook;
  142.     LossCheckCallback*  m_pLossCB;
  143.     CallbackHandle      m_ulLossCBHandle;
  144.     UINT32 m_ulBandwidthAllocation;
  145.     UINT32 m_ulFixedBandwidth;
  146.     BOOL*               m_pSubInfo;
  147.     UINT32* m_ulRuleBw;
  148.     UINT32* m_ulRulePreData;
  149.     UINT32 m_ulCurrentPreData;
  150.     UINT32 m_ulCurrentBandwidth;
  151.     UINT32 m_ulLastBandwidth;
  152.     BOOL* m_bRuleTimeStampDelivery;
  153.     UINT32 m_ulSubscribedBw;
  154.     INT32 m_lBias;
  155.     UINT32 m_bStartRecalc;
  156.     UINT32              m_ulIDRecv;
  157.     UINT32              m_ulIDLost;
  158.     UINT32 m_ulIDClipBandwidth;
  159.     char m_szRecv[MAX_DISPLAY_NAME]; /* Flawfinder: ignore */
  160.     char m_szLost[MAX_DISPLAY_NAME]; /* Flawfinder: ignore */
  161.     char m_szClipBandwidth[MAX_DISPLAY_NAME]; /* Flawfinder: ignore */
  162.     CHXSimpleList* m_pSubList;
  163.     IHXValues* m_pSubscriptionVariables;
  164.     BOOL* m_pRuleSubscribeStatus;
  165.     CASMRuleState* m_pASMRuleState;
  166.     void Recalc();
  167.     void RecalcCurrentProps();
  168.     float ComputeLost();
  169. #ifndef GOLD
  170.     IHXErrorMessages*  m_pEM;
  171. #endif
  172.     friend class LossCheckCallback;
  173. };
  174. #endif  /* ifndef _HXSMSTR_H_ */