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

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 _PREFTRAN_H_
  36. #define _PREFTRAN_H_
  37. #include "hxpreftr.h"
  38. class HXNetInterface;
  39. class HXPreferredTransportManager;
  40. class HXPreferredTransport;
  41. class HXSubnetManager;
  42. class HXEvent;
  43. class HXPreferredTransport : public IHXPreferredTransport
  44. {
  45. private:
  46.     LONG32     m_lRefCount;
  47.     
  48.     CHXString*     m_pHost;
  49.     BOOL     m_bHTTPNG;
  50.     UINT32     m_ulHost;
  51.     UINT32     m_ulParentPlaybacks;
  52.     UINT16     m_uPlaybacks;
  53.     UINT16     m_uCloakPort;
  54.     time_t     m_lastUsedTime;
  55.     PreferredTransportState     m_state;
  56.     PreferredTransportClass     m_prefTransportClass;
  57.     PreferredTransportProtocol     m_prefTransportProtocol;
  58.     TransportMode     m_prefTransportType;
  59.     HXPreferredTransportManager*   m_pOwner;
  60.     CHXSimpleList*     m_pPrefTransportSinkList;
  61.     friend class HXPreferredTransportManager;
  62.     ~HXPreferredTransport();
  63.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  64. protected:  
  65. public:
  66.     HXPreferredTransport(HXPreferredTransportManager* pOwner);
  67.     /*
  68.      * IUnknown methods
  69.      */
  70.     STDMETHOD(QueryInterface) (THIS_
  71. REFIID riid,
  72. void** ppvObj);
  73.     STDMETHOD_(ULONG32,AddRef) (THIS);
  74.     STDMETHOD_(ULONG32,Release) (THIS);
  75.     /*
  76.      * IHXPreferredTransport methods
  77.      */
  78.     STDMETHOD_(PreferredTransportState, GetState) (THIS);
  79.     STDMETHOD_(PreferredTransportClass, GetClass) (THIS);
  80.     STDMETHOD(GetTransport) (REF(TransportMode) /* OUT */   prefTransportType,
  81. REF(UINT16)     /* OUT */   uCloakPort);
  82.     
  83.     STDMETHOD(SetTransport) (TransportMode     /* IN  */   prefTransportType,
  84. UINT16     /* IN  */   uCloakPort);
  85.     STDMETHOD(SwitchTransport) (HX_RESULT     /* IN  */   error,
  86. REF(TransportMode)  /* INOUT */ prefTransportType);
  87.     STDMETHOD(RemoveTransport) (THIS);
  88.     STDMETHOD_(BOOL, ValidateTransport) (TransportMode     /* IN */ prefTransportType);
  89.     STDMETHOD(AddTransportSink) (IHXPreferredTransportSink* /* IN  */   pPrefTransportSink);
  90.     STDMETHOD(RemoveTransportSink) (IHXPreferredTransportSink* /* IN  */   pPrefTransportSink);
  91.     STDMETHOD_(BOOL, GetHTTPNG) (THIS);
  92.     STDMETHOD(SetHTTPNG) (BOOL bHTTPNG);
  93.     void     Initialize(void);
  94.     void     Close(void);
  95. };
  96. class HXPreferredTransportManager : public IHXPreferredTransportManager,
  97.      public IHXNetInterfacesAdviseSink
  98. {
  99. private:
  100.     LONG32     m_lRefCount;
  101.     IUnknown*     m_pContext;
  102.     HX_BITFIELD     m_bInitialized : 1;
  103.     HX_BITFIELD     m_bSave : 1;
  104.     char*     m_pszFile;
  105.     UINT32     m_ulRTSPTransportMask;
  106.     UINT32     m_ulPNMTransportMask;
  107.     UINT32     m_ulLocalHost;
  108.     UINT32     m_ulSubnetMask;
  109.     UINT32     m_ulSubnet;
  110.     UINT32     m_ulPlaybacks;
  111.     time_t     m_lastRTSPPreferencesModifiedTime;
  112.     time_t     m_lastPNMPreferencesModifiedTime;
  113.     TransportMode     m_internalTransportType;
  114.     TransportMode     m_externalTransportType;
  115.     TransportMode     m_rtspTransportTypeStartWith;
  116.     TransportMode     m_pnmTransportTypeStartWith;
  117.     HXSubnetManager*     m_pSubnetManager;
  118.     CHXSimpleList*     m_pPrefHostTransportList;
  119.     CHXSimpleList*     m_pPrevPrefHostTransportList;
  120. #if defined(HELIX_FEATURE_PROXYMGR)
  121.     IHXProxyManager*     m_pProxyManager;
  122. #else
  123.     void*     m_pProxyManager;
  124. #endif /* HELIX_FEATURE_PROXYMGR */
  125.     IHXPreferences*     m_pPreferences;
  126.     HXNetInterface*     m_pHXNetInterface;
  127. #ifdef _WINDOWS
  128.     HXEvent*     m_pLock;
  129. #elif _UNIX
  130.     int     m_fileID;
  131. #endif /* _WINDOWS */
  132.     ~HXPreferredTransportManager();
  133.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  134.     friend class HXPreferredTransport;
  135. protected:  
  136.     HX_RESULT     _Initialize(void);
  137.     HX_RESULT     ReadPreferences(BOOL  bRTSPProtocol, UINT32& ulTransportMask);
  138.     void     TransportSet(HXPreferredTransport* pPreferredTransport, BOOL bSave);
  139.     HX_RESULT     CollectNetworkInfo(void);
  140.     HX_RESULT     PrepPrefTransport(void);
  141.     HX_RESULT     OpenPrefTransport(void);
  142.     HX_RESULT     SavePrefTransport(void);
  143.     void     ResetPrefTransport(CHXSimpleList* pPrefHostTransportList);
  144.     HX_RESULT     FileReadLine(FILE* fp, char* pLine, UINT32 ulLineBuf, UINT32* pBytesRead);    
  145.     HX_RESULT     FileWriteLine(FILE* fp, HXPreferredTransport* pPrefTransport);
  146.     HX_RESULT     FileWriteClass(FILE* fp, 
  147.      PreferredTransportClass prefTransportClass, 
  148.    TransportMode transportType,
  149.    PreferredTransportProtocol protocol,
  150.    UINT32 ulTransportMask,
  151.    time_t lastModifiedTime);
  152.     
  153.     HX_RESULT     DownShiftTransport(HX_RESULT error, 
  154.        HXPreferredTransport* pPrefTransport,
  155.        REF(TransportMode) prefTransportType);
  156.     HX_RESULT     UpShiftTransport(HXPreferredTransport* pPrefTransport,
  157.      REF(TransportMode) prefTransportType);
  158.     BOOL     ValidateTransport(HXPreferredTransport* pPrefTransport,
  159.       TransportMode prefTransportType);
  160.     CHXString*     GetMasterDomain(const char* pszHostName);
  161.     TransportMode   GetTransportPreferred(HXPreferredTransport* pPrefTransport);
  162.     TransportMode   GetHigherTransport(TransportMode mode1, TransportMode mode2);
  163.     TransportMode   GetLowerTransport(TransportMode mode1, TransportMode mode2);
  164.     PreferredTransportClass GetTransportClass(const char* pszHostName, UINT32 ulHostAddress);
  165.     void     InitTransportTypeStartWith(UINT32 ulTransportMask, TransportMode& transportStartWith); 
  166. public:
  167.     HXPreferredTransportManager(IUnknown* pContext);
  168.     /*
  169.      * IUnknown methods
  170.      */
  171.     STDMETHOD(QueryInterface) (THIS_
  172. REFIID riid,
  173. void** ppvObj);
  174.     STDMETHOD_(ULONG32,AddRef) (THIS);
  175.     STDMETHOD_(ULONG32,Release) (THIS);
  176.     /*
  177.      * IHXPreferredTransportManager methods
  178.      */
  179.     /************************************************************************
  180.      * Method:
  181.      *     IHXPreferredTransportManager::Initialize
  182.      * Purpose:
  183.      *     Initialize the transport manager such as re-reading the preferences
  184.      */
  185.     STDMETHOD(Initialize) (THIS);
  186.     /************************************************************************
  187.      * Method:
  188.      *     IHXPreferredTransportManager::GetPrefTransport
  189.      * Purpose:
  190.      *     Get preferred host transport
  191.      */
  192.     STDMETHOD(GetPrefTransport) (const char* /* IN  */ pszHostName,
  193. PreferredTransportProtocol /* IN  */ prefTransportProtocol,
  194. REF(IHXPreferredTransport*) /* OUT */ pPrefTransport);
  195.     /************************************************************************
  196.      * Method:
  197.      *     IHXPreferredTransportManager::RemovePrefTransport
  198.      * Purpose:
  199.      *     Remove preferred host transport
  200.      */
  201.     STDMETHOD(RemovePrefTransport) (IHXPreferredTransport* /* IN  */ pPrefTransort);
  202.     /************************************************************************
  203.      * Method:
  204.      *     IHXPreferredTransportManager::GetTransportPreference
  205.      * Purpose:
  206.      *     Get transport preference set by the user
  207.      */
  208.     STDMETHOD(GetTransportPreference) (PreferredTransportProtocol /* IN  */ prefTransportProtocol,
  209.  REF(UINT32) /* OUT */ ulPreferenceMask);
  210.     /*
  211.      * IHXNetInterfacesAdviseSink methods
  212.      */
  213.     STDMETHOD(NetInterfacesUpdated) (THIS);
  214.     void Close(void);
  215. };
  216. #endif /* _PREFTRAN_H_ */