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

Symbian

开发平台:

Visual C++

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