⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hxprotocol.h

📁 著名的 helix realplayer 基于手机 symbian 系统的 播放器全套源代码
💻 H
字号:
/* ***** BEGIN LICENSE BLOCK ***** 
 * Version: RCSL 1.0/RPSL 1.0 
 *  
 * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
 *      
 * The contents of this file, and the files included with this file, are 
 * subject to the current version of the RealNetworks Public Source License 
 * Version 1.0 (the "RPSL") available at 
 * http://www.helixcommunity.org/content/rpsl unless you have licensed 
 * the file under the RealNetworks Community Source License Version 1.0 
 * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
 * in which case the RCSL will apply. You may also obtain the license terms 
 * directly from RealNetworks.  You may not use this file except in 
 * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
 * applicable to this file, the RCSL.  Please see the applicable RPSL or 
 * RCSL for the rights, obligations and limitations governing use of the 
 * contents of the file.  
 *  
 * This file is part of the Helix DNA Technology. RealNetworks is the 
 * developer of the Original Code and owns the copyrights in the portions 
 * it created. 
 *  
 * This file, and the files included with this file, is distributed and made 
 * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
 * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
 * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
 * 
 * Technology Compatibility Kit Test Suite(s) Location: 
 *    http://www.helixcommunity.org/content/tck 
 * 
 * Contributor(s): 
 *  
 * ***** END LICENSE BLOCK ***** */ 

#ifndef _HXPROTOCOL_H_
#define _HXPROTOCOL_H_

#include "hxcom.h"
#include "hxresult.h"
#include "hxmon.h"
#include "statinfo.h"
//#include "rmresend.h"
#include "hxpreftr.h"
#include "hxcredc.h"

// forward decl.
class HXNetSource;
class CHXSimpleList;

struct IHXPendingStatus;
struct IHXStatistics;

class  CHXEvent;

typedef struct _HX_BANDWIDTH_REPORT
{
    UINT16 	serverTimeInterval;
    UINT16 	playerTimeInterval;
    ULONG32 	numServerBytes;
    ULONG32 	numPlayerBytes;
    ULONG32 	totalServerBytes;
    ULONG32 	totalPlayerBytes;
    ULONG32 	totalServerTime;
    ULONG32 	totalPlayerTime;
} HX_BANDWIDTH_REPORT;

// these are the values passed in SetOption
enum
{
    HX_PERFECTPLAY_SUPPORTED = 0
   ,HX_RESEND_SUPPORTED
   ,HX_STATS_MASK
   ,HX_TRANSPORTSWITCHING_SUPPORTED
   ,HX_FORCE_PERFECT_PLAY
   ,HX_SELECTIVE_RECORD_SUPPORTED
   ,HX_GENERIC_MESSAGE_SUPPORT
   ,HX_INTERFRAME_CONTROL_SUPPORT
   ,HX_BANDWIDTH_REPORT_SUPPORT
   ,HX_FRAME_CONTROL_SUPPORT
   ,HX_STATS_INTERVAL
   ,HX_MAX_BANDWIDTH
   ,HX_TURBO_PLAY
};

#define MIN_UDP_PORT	6970
#define MAX_UDP_PORT	7170

#define TEXT_BUF_SIZE	1024

class HXProtocol : public IHXPendingStatus
#if defined(HELIX_FEATURE_STATS)
		   , public IHXStatistics
#endif /* HELIX_FEATURE_STATS */
{
public:
    UINT32		m_ulRegistryID;
    IHXRegistry*	m_pRegistry;
    
    HXProtocol(HXNetSource *owner, ULONG32 ulPlatformSpecific = 0);
    virtual ~HXProtocol();

    LONG32	m_lRefCount;

    // *** IUnknown methods ***
    /* This is made PURE since PNA and RTSP may expose different interfaces...*/
    STDMETHOD(QueryInterface)	(THIS_
				REFIID riid,
				void** ppvObj) PURE;

    STDMETHOD_(ULONG32,AddRef)	(THIS) PURE;

    STDMETHOD_(ULONG32,Release)	(THIS) PURE;
   
    // functions that *MUST* be implemented by every protocol
    
    // IHXPendingStatus methods

    /************************************************************************
     *	Method:
     *	    IHXPendingStatus::GetStatus
     *	Purpose:
     *	    Called by the user to get the current pending status from an object
     */
    STDMETHOD(GetStatus)	(THIS_
				REF(UINT16) uStatusCode, 
				REF(IHXBuffer*) pStatusDesc, 
				REF(UINT16) ulPercentDone) PURE;

#if defined(HELIX_FEATURE_STATS)
    /*
     *	IHXStatistics methods
     */

    /************************************************************************
     *  Method:
     *      IHXStatistics::InitializeStatistics
     *  Purpose:
     *      Pass registry ID to the caller
     */
    STDMETHOD (InitializeStatistics)	(THIS_
					UINT32	/*IN*/ ulRegistryID) PURE;

    /************************************************************************
     *  Method:
     *      IHXStatistics::UpdateStatistics
     *  Purpose:
     *      Notify the client to update its statistics stored in the registry
     */
    STDMETHOD (UpdateStatistics)		(THIS) PURE;
#endif /* HELIX_FEATURE_STATS */

    virtual HX_RESULT	GetStreamStatistics	(ULONG32 ulStreamNumber,
						 STREAM_STATS** ppStreamStats) = 0;
    virtual HX_RESULT	UpdateRegistry		(UINT32 ulStreamNumber,
						 UINT32 ulRegistryID) = 0;

    virtual HX_RESULT	server_hello		(void) = 0;

    virtual HX_RESULT	proxy_hello		(void) = 0;

    virtual HX_RESULT	process 		(void) = 0;

    virtual HX_RESULT	abort	 		(void) = 0;

    virtual HX_RESULT   GetEvent		(UINT16 usStreamNumber,
						 CHXEvent*& pEvent) = 0;

    virtual HX_RESULT	GetCurrentBuffering(UINT16  uStreamNumber,
					    INT64&  llLowestTimestamp, 
					    INT64&  llHighestTimestamp,
					    UINT32& ulNumBytes,
					    BOOL&   bDone) = 0;
    // functions that should be overridden
    // should be made abstract later on if we decide that these are must
    // for every protocol to implement.

    virtual HX_RESULT	setup			(const char* host,
						 const char* path,
						 UINT16 port,
						 BOOL	LossCorrection,
						 BOOL	bHTTPCloak,
                                                 BOOL   bSDPInitiated,
						 UINT16	cloakPort);

    virtual void	initialize_members	(void);

    virtual HX_RESULT	process_idle		(BOOL atInterrupt);

    virtual HX_RESULT	seek			(ULONG32 posArg,
						 ULONG32 posArg2 = 0,
						 UINT16 seekFrom = 0)
						{return HXR_OK;}

    virtual HX_RESULT	pause 			(void)
						{return HXR_OK;}

    virtual HX_RESULT	resume			(UINT32 ulEndTime = 0)
						{return HXR_OK;}

    virtual HX_RESULT	stop 			(void);

    virtual HX_RESULT	set_proxy		(const char* proxy,
						 UINT16 port);

    virtual void	send_statistics		(UINT32	ulStatsMask) {};

    virtual BOOL	end_of_clip		(void)
						{return mSourceEnd;}

    virtual UINT16	get_protocol_version	(void)
						{return mProtocolVersion;}

    virtual const char* get_protocol_name	(void)
						{return "";}

    virtual HX_RESULT	set_client_id 		(char * clientID);

    virtual void	set_locale		(UINT16 locale)
						{mLocale = locale;}

    virtual void	set_perfect_play	(BOOL isPerfectPlay)
						{m_bPerfectPlay = isPerfectPlay;}

// NOTE: set_UDP_port() now means, if in UDP mode,
// use the specified port for UDP. It doesn't necessarily
// mean to use UDP mode...
    virtual void 	set_UDP_port		(void) 
						{mUseUDPPort = TRUE;}

    virtual void	set_server_timeout	(ULONG32 secs)
						{mServerTimeout = secs;}

    virtual BOOL	IsPerfectPlayAllowed	(void)
						{return m_bPerfectPlayAllowed;}

    virtual BOOL	IsSaveAllowed		(void)
						{return mSaveAsAllowed;}

    virtual BOOL	IsLive			(void)
						{return mLiveStream;}

    virtual const char* GetLastAlertInfo	(REF(UINT32) ulAlertNumber)
						{ulAlertNumber = m_ulLastAlert; return m_pTextBuf;}

    virtual BOOL	IsSourceDone(void) = 0;

    virtual void	EnterPrefetch		(void) {m_bPrefetch = TRUE;};
    virtual void	LeavePrefetch		(void);

    virtual void	EnterFastStart		(void) {m_bFastStart = TRUE;};
    virtual void	LeaveFastStart		(void) {m_bFastStart = FALSE;};

    virtual void	SetCloakPortAttempted	(UINT16* pCloakPorts, UINT8 nCloakPorts);

    virtual UINT16	GetRDTFeatureLevel	(void) { return 0; };

protected:
    
    UINT8		mProxyVersion : 8;		// protocol version for proxy
    // flags
    HX_BITFIELD		mLiveStream : 1;
    HX_BITFIELD		mSaveAsAllowed : 1;
    HX_BITFIELD		m_bPerfectPlayAllowed : 1;
    HX_BITFIELD		m_bPrefetch : 1;
    HX_BITFIELD		m_bFastStart : 1;

    HX_BITFIELD		m_bIsFirstResume : 1;
    HX_BITFIELD		mProtocolValid : 1;		// does server support protocol
    HX_BITFIELD		m_bConnectDone : 1;
    HX_BITFIELD		mSourceEnd : 1;		// == 1 no more data
    HX_BITFIELD		mUseUDPPort : 1;		// user specified udp port
    HX_BITFIELD		mFlowControl : 1;		// stop server sending data
    HX_BITFIELD		m_bPerfectPlay : 1;		// == 1 perfect play mode
    HX_BITFIELD		mUseProxy : 1;		// == 1 use proxy
    HX_BITFIELD		mUsingMulticast : 1;
    HX_BITFIELD		m_bHTTPOnly : 1;
    HX_BITFIELD		m_bPaused : 1;		// == 1 pause state
    HX_BITFIELD		mLossCorrection : 1;	// == 1 loss correction is on
    HX_BITFIELD		m_bAreResuming : 1;
    HX_BITFIELD         m_bSDPInitiated : 1;
    BOOL		m_bHTTPvProxy;
    UINT16		mProtocolVersion;	// server/client protocol number
    UINT16		mAtInterrupt;		// == 1 at interrupt level
    UINT16		mLocked;		// semaphore for reentracy
    UINT16		mLocale;		// stores player id ??
    UINT16		mPort;			// server control port
    ULONG32		mServerAddr;		// server address from async dns
    HXNetSource*	mOwner;			// ptr to HXNetSource object
    char*		mHost;			// server host name
    char*		mPath;			// remote file path to play
    CHXSimpleList*	m_pUDPPortList;
    UINT16		m_uUDPPort;
    ULONG32		mSendStatsMask;		// stats level sent to server
    char*		mProxy;			// proxy host name
    UINT16		mProxyPort;		// proxy port number
    UINT16		mMulticastPort;
    ULONG32		mMulticastAddr;
    UINT16		mCloakPort;
    INT16		mNumFlowControl;	// flow control msgs from owner
    ULONG32		mServerTimeout;		// timeout value for server
    HX_RESULT		m_LastError;
    IHXPreferences*	m_pPreferences;
    IHXCredentialsCache*    m_pCredentialsCache;

    UINT32		m_ulLastAlert;
    char*		m_pTextBuf;

    UINT16*		m_pCloakPorts;
    UINT8		m_nCloakPorts;

    // ID info
    char*		m_pszClientID;		// string to hold clientID
    char*		m_pszGUID;		// string to hold GUID

   
//////////////////////////////////////////////
// Automatic Transport Switching Support...
protected:
    TransportMode	mCurrentTransport;
    UINT32		m_ulTransportPrefMask;
public:
    virtual void	set_transport(TransportMode mode, UINT32 ulTransportPrefMask)
    {
	if (HTTPCloakMode == mode)
	{
	    mCurrentTransport = TCPMode;
	}
	else
	{
	    mCurrentTransport = mode;
	}

	m_ulTransportPrefMask = ulTransportPrefMask;
    };

    BOOL		can_switch_transport()
    {
	return FALSE;
    };

    HX_RESULT		switch_transport(TransportMode mode)
    {
	return HXR_INVALID_OPERATION;
    };

#if defined(HELIX_FEATURE_STATS) && defined(HELIX_FEATURE_REGISTRY)
    void		statistics_cat(char* pszStats, UINT32 ulBufLen, LONG32 lData);
    void		statistics_cat_ext(char* pszStats, UINT32 ulBufLen, LONG32 lData, char* pszSep, UINT32& ulCount);
    HX_RESULT		prepare_statistics(UINT32 ulStatsMask, char*& pszStats);
#endif /* HELIX_FEATURE_STATS && HELIX_FEATURE_REGISTRY */
};

#endif //_HXPROTOCOL_H_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -