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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxsm.h,v 1.6.2.1 2004/07/09 02:05:40 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 _HXSM_H_
  50. #define _HXSM_H_
  51. #include "hxtypes.h"
  52. #include "hxcom.h"
  53. #include "hxsmbw.h"
  54. #include "hxslist.h"
  55. class CHXSimpleList;
  56. class ASMRuleBook;
  57. struct IHXSourceBandwidthInfo;
  58. struct IHXErrorMessages;
  59. class ASMStreamInfo;
  60. class ASMSourceInfo;
  61. class HXSM;
  62. struct IHXValues;
  63. #define NUM_REPORTS_NEEDED_TO_UPSHIFT 4
  64. #define BW_DETECTION_DATA_POINTS 1024
  65. #define TCP_BANDWIDTH_WINDOW 20000
  66. class ASMSourceInfo : public IHXBandwidthManagerInput
  67. {
  68. public:
  69.     UINT32 m_ulLastReportTime;
  70.     UINT32 m_ulIncomingBandwidth;
  71.     UINT32 m_ulRateBeforeDeAccel;
  72.     INT32 m_lTimeDiffBase;  //this must be signed !!!
  73.     UINT32 m_ulBytesBehind;
  74.     INT32 m_lLastBehindTime;
  75.     UINT32 m_ulLastSetDelivery;
  76.     UINT32 m_ulSubscribedBw;
  77.     UINT32 m_ulMaxSubscribedBw;
  78.     UINT32 m_ulMasterOffer;
  79.     HX_BITFIELD m_bBehind : 1;
  80.     HX_BITFIELD m_bLossBehind : 1;
  81.     HX_BITFIELD m_bSlightlyBehind : 1;
  82.     HX_BITFIELD m_bTimeStampDelivery : 1;
  83.     HX_BITFIELD m_bPendingChill : 1;
  84.     HX_BITFIELD m_bInvalidUpReport : 1;
  85.     HX_BITFIELD m_bPerfectPlay : 1;
  86.     HX_BITFIELD m_bIsDone : 1;
  87.     HX_BITFIELD m_bMayBeAccelerated : 1;
  88.     HX_BITFIELD m_bTryToUpShift : 1;
  89.     HX_BITFIELD m_bAdjustBandwidth : 1;
  90.     UINT32 m_ulLowestBandwidthBeforeTimeStamp;
  91.     /*
  92.      * The following are switches used in load testing only to control
  93.      * whether or not any fall forward or fall back rate negotiation
  94.      * goes on. There is a master switch, m_bDisableBothAccelDecel,
  95.      * in the HXSM class that effects both of these swiches, globaly,
  96.      * for ALL sources regardless of URL option switches.
  97.      * 
  98.      * Option switches are: "DoAccel", "DoDecel"
  99.      *
  100.      * NOTE: DoAccel and DoDecel control both Accelleration/Deceleration
  101.      *       and upshifting and downshifting of SureStream sources.
  102.      */
  103.     HX_BITFIELD m_bSourceAccelAllowed : 1;
  104.     HX_BITFIELD m_bSourceDecelAllowed : 1;
  105. private:
  106.     HX_BITFIELD m_bSlidingBwWindowReady : 1;
  107. public:
  108.     ASMRuleBook*    m_pMasterRuleBook;
  109.     ASMStreamInfo** m_pStreams;
  110.     CHXSimpleList   m_SubscriptionChanges;
  111.     UINT32  GetBandwidthSince(UINT32 ulTime, UINT32 ulNow);
  112.     UINT32  GetBandwidth();
  113.     TRANSPORT_TYPE m_TransportType;
  114.     ASMSourceInfo(HXSource* pSource, HXSM* pHXASM);
  115.     ~ASMSourceInfo();
  116.     void Done();
  117.     STDMETHOD (QueryInterface ) (THIS_ REFIID ID, void** ppInterfaceObj);
  118.     STDMETHOD_(UINT32, AddRef ) (THIS);
  119.     STDMETHOD_(UINT32, Release) (THIS);
  120.     /*
  121.      * IHXBandwidthManagerInput methods
  122.      */
  123.     STDMETHOD(ReportDataPacket) (THIS_
  124. UINT32 ulTimeStamp,
  125. UINT32 ulArrivedTimeStamp,
  126. UINT32 ulSize);
  127.     STDMETHOD(ReportUpshiftInfo) (THIS_
  128. UINT32 ulTimeStamp,
  129. UINT32 ulSize);
  130.     STDMETHOD(ReportLatency) (THIS_
  131. UINT32 ulServerTime,
  132. UINT32 ulClientTime);
  133.     STDMETHOD(SetCongestionFactor) (THIS_
  134. UINT32 ulFactor);
  135.     STDMETHOD(SetTransportType) (THIS_
  136. TRANSPORT_TYPE type);
  137.     HXSource* m_pSource;
  138.     IHXSourceBandwidthInfo* m_pSBI;
  139.     /* If the source has enough data, it may tell the bandwidth
  140.      * manager to cut down on accelerated buffering.
  141.      */
  142.     void    ChangeAccelerationStatus (BOOL      bMayBeAccelerated,
  143.  BOOL    bUseAccelerationFactor,
  144.  UINT32    ulAccelerationFactor);
  145. private:
  146.     UINT32 THRESHOLD;
  147.     INT32 m_lOuterThreshold;
  148.     INT32 CalcBackup(UINT32, UINT32);
  149.     INT32 m_lRefCount;
  150.     typedef struct _BwDetectionData
  151.     {
  152. UINT32     m_ulSize;
  153. UINT32     m_ulTimeStamp;
  154. UINT32     m_ulATime;
  155.     } BwDetectionData;
  156.     
  157.     /* For Bandwidth Detection */
  158.     BwDetectionData* m_pBwDetectionData;
  159.     UINT32 m_ulBwDetectionDataLen;
  160.     UINT32 m_ulSlidingWindowLocation;
  161.     UINT32 m_ulBwDetectionDataCount;
  162.     HXSM* m_pHXASM;
  163. private:
  164.     BOOL AllocBWDetectionData(UINT32 ulReqSize);
  165. };
  166. class ASMStreamInfo
  167. {
  168. public:
  169.     BOOL m_bTimeStampDelivery;
  170.     void NotifyTimeStampDelivery();
  171.     void NotifyLimitBandwidth(UINT32 ulBandwidth);
  172.     void NotifyNewBandwidth();
  173.     void SetLastBandwidth(UINT32 ulOffer);
  174.     ASMStreamInfo();
  175.     ~ASMStreamInfo();
  176.     ASMSourceInfo* m_pASMSourceInfo;
  177.     IHXStreamBandwidthNegotiator* m_pNegotiator;
  178.     IHXStreamBandwidthBias* m_pBias;
  179.     IHXAtomicRuleGather* m_pRuleGather;
  180.     UINT32 m_ulFixedBandwidth;
  181.     UINT32 m_ulLastBandwidth;
  182.     float* m_pThreshold;
  183.     UINT32 m_ulNumThresholds;
  184.     UINT32 m_ulThresholdPosition;
  185.     UINT32 m_ulResistanceToLower;
  186.     UINT32 m_ulOffer;
  187.     UINT32 m_ulMasterRuleBookSetOffer;
  188.     UINT32 m_ulMaxEffectiveThreshold;
  189.     UINT32                              m_ulStreamNumber;
  190. };
  191. class HXSM : public IHXBandwidthManager
  192. {
  193. public:
  194.     HXSM();
  195.     ~HXSM();
  196.     STDMETHOD (QueryInterface ) (THIS_ REFIID ID, void** ppInterfaceObj);
  197.     STDMETHOD_(UINT32, AddRef ) (THIS);
  198.     STDMETHOD_(UINT32, Release) (THIS);
  199.     /*
  200.      * IHXBandwidthManager methods
  201.      */
  202.     STDMETHOD(RegisterSource) (THIS_
  203. HXSource* pSource,
  204. IUnknown* pUnknown);
  205.     STDMETHOD(RegisterSourcesDone) (THIS);
  206.     STDMETHOD_(BOOL, NotEnoughBandwidth)(THIS);
  207.     STDMETHOD(UnRegisterSource) (THIS_
  208. HXSource* pSource);
  209.     /* If the source has enough data, it may tell the bandwidth
  210.      * manager to cut down on accelerated buffering.
  211.      */
  212.     STDMETHOD(ChangeAccelerationStatus) (THIS_
  213. HXSource* pSource,
  214. BOOL    bMayBeAccelerated,
  215. BOOL    bUseAccelerationFactor,
  216. UINT32    ulAccelerationFactor);
  217.     void UpShiftInfo(UINT32 ulTimeStamp, UINT32 ulSize);
  218.     /* Called by HXPlayer at end of each presentation */
  219.     STDMETHOD(PresentationDone) (THIS);
  220.     STDMETHOD(ChangeBW) (THIS_ 
  221. UINT32 newBW, HXSource* pSource);
  222.     typedef enum { HX_NONE, CONGESTION, INIT, INIT_REDIST, REDIST, REDO_ACCEL, CHILL_BUFFERING } RState;
  223.     RState m_State;
  224. private:
  225.     INT32 m_lRefCount;
  226.     IHXValues* m_pSubscriptionVariables;
  227.     CHXSimpleList* m_pASMSourceInfo;
  228.     CHXSimpleList* m_pASMStreamInfo;
  229.     UINT32 m_ulOriginalHighestBandwidthAvail;
  230.     UINT32 m_ulHighestBandwidthAvail;
  231.     UINT32 m_ulPeakUsedBandwidth;
  232.     UINT32 m_ulUpShiftTimes[5];
  233.     UINT32 m_ulUpShiftSizes[5];
  234.     UINT32 m_ulUpShiftRingPos;
  235.     UINT32 m_ulUpShiftBandwidthAvail;
  236.     UINT32 m_ulNumSources;
  237.     UINT32 m_ulMaxAccelBitRate;
  238.     UINT32 m_ulResistanceBitRate;
  239.     UINT32 m_ulOriginalResistanceBitRate;
  240.     INT32 m_ulNumReportsSinceUpShift;
  241.     UINT32 m_ulLastStableBandwidth;
  242.     UINT32 m_ulUpShiftTestPointScaleFactor;
  243.     UINT32 m_ulOfferToRecalc;
  244.     UINT32 m_ulNextPacketWindow;
  245.     INT32 m_lPacketCounter;
  246.     UINT32 m_ulUpShiftPastResistanceCount;
  247.     INT16 m_lLoss : 16;
  248.     HX_BITFIELD m_bInitialHighBwAvail : 1;
  249.     HX_BITFIELD m_bPipeFull : 1;
  250.     HX_BITFIELD m_bUpShiftInfoReady : 1;
  251.     HX_BITFIELD m_bDidOfferUpShiftToRecalc : 1;
  252.     HX_BITFIELD         m_bEnableSDB : 1;
  253.     /****************************************************************
  254.      * The following are switches used in load testing only to control
  255.      *  whether or not any fall forward or fall back rate negotiation
  256.      *  goes on. The acceleration or deceleration can be controled with
  257.      *  the m_bDoAccel and m_bDoDecel switches.  All rate changes can
  258.      *  be turned off with the m_bDisableBothAccelDecel switch which
  259.      *  overrides any values in the m_bDoAccel and m_bDoDecel switches.
  260.      *  if the m_bDisableBothAccelDecel switch is FALSE(0) then it has
  261.      *  no effect.
  262.      * 
  263.      * Preference Keys are:
  264.      *                       DoAccel, DoDecel, LoadTest,
  265.      *                       DisableBothAccelDecel
  266.      *****************************************************************/
  267.     BOOL    m_bLoadTest;
  268.     BOOL    m_bDoAccel;
  269.     BOOL    m_bDoDecel;
  270.     BOOL    m_bDisableBothAccelDecel;
  271.     HXFLOAT m_fAccelerationFactor;
  272. #ifndef GOLD
  273.     IHXErrorMessages* m_pEM;
  274. #endif
  275.     void Recalc();
  276.     void RecalcAccel();
  277.  
  278.     friend class ASMSourceInfo;
  279. };
  280. #endif  /* ifndef _HXSM_H_ */