hxsymbiantcpsock.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-2003 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 HXSYMBIANTCPSOCK_H
  36. #define HXSYMBIANTCPSOCK_H
  37. #include "hxtypes.h"
  38. #include "hxcom.h"
  39. #include "hxengin.h"
  40. #include "hxccf.h"
  41. #include "hxslist.h"
  42. #include <es_sock.h>
  43. class HXSymbianTCPConnector;
  44. class HXSymbianTCPWriter;
  45. class HXSymbianTCPReader;
  46. class HXSymbianTCPSocket : public IHXTCPSocket,
  47.    public IHXSetSocketOption
  48. {
  49. public:
  50.     HXSymbianTCPSocket(IHXCommonClassFactory* pCCF,
  51.        IHXResolver* pResolver);
  52.     ~HXSymbianTCPSocket();
  53.     /*
  54.      *  IUnknown methods
  55.      */
  56.     STDMETHOD(QueryInterface) (THIS_
  57. REFIID riid,
  58. void** ppvObj);
  59.     STDMETHOD_(ULONG32,AddRef) (THIS);
  60.     STDMETHOD_(ULONG32,Release) (THIS);
  61.     /*
  62.      * IHXTCPSocket methods
  63.      *
  64.      *  Network addresses and ports are in native byte order
  65.      *  
  66.      */
  67.     STDMETHOD(Init) (THIS_
  68. IHXTCPResponse*    /*IN*/  pTCPResponse);
  69.     STDMETHOD(SetResponse) (THIS_
  70.      IHXTCPResponse*     pTCPResponse);
  71.     STDMETHOD(Bind) (THIS_
  72. UINT32     ulLocalAddr,
  73. UINT16      nPort);
  74.     /*
  75.      * pDestination is a string containing host name or dotted-ip notation
  76.      */
  77.     STDMETHOD(Connect) (THIS_
  78. const char*     pDestination,
  79. UINT16      nPort);
  80.     STDMETHOD(Read) (THIS_
  81. UINT16     Size);
  82.     STDMETHOD(Write) (THIS_
  83. IHXBuffer*     pBuffer);
  84.     /************************************************************************
  85.      * Method:
  86.      *     IHXTCPSocket::WantWrite
  87.      * Purpose:
  88.      *     This method is called when you wish to write a large amount of
  89.      *     data.  If you are only writing small amounts of data, you can
  90.      *     just call Write (all data not ready to be transmitted will be
  91.      *     buffered on your behalf).  When the TCP channel is ready to be
  92.      *     written to, the response interfaces WriteReady method will be 
  93.      *     called.
  94.      */
  95.     STDMETHOD(WantWrite) (THIS);
  96.     /************************************************************************
  97.      * Method:
  98.      *     IHXTCPSocket::GetForeignAddress
  99.      * Purpose:
  100.      *     Returns the address of the other end of the TCP socket as a
  101.      *     ULONG32 in local host order
  102.      */
  103.     STDMETHOD(GetForeignAddress) (THIS_
  104.      REF(ULONG32) lAddress);
  105.     STDMETHOD(GetLocalAddress) (THIS_
  106.      REF(ULONG32) lAddress);
  107.     /************************************************************************
  108.      * Method:
  109.      *     IHXTCPSocket::GetForeignPort
  110.      * Purpose:
  111.      *     Returns the port of the other end of the TCP socket in local
  112.      *      host order.
  113.      */
  114.     STDMETHOD(GetForeignPort) (THIS_
  115.      REF(UINT16) port);
  116.     STDMETHOD(GetLocalPort) (THIS_
  117.      REF(UINT16) port);
  118.     /*
  119.      * IHXSetSocketOption methods
  120.      */
  121.     STDMETHOD(SetOption) (THIS_ 
  122.  HX_SOCKET_OPTION option,
  123.  UINT32 ulValue);
  124. protected:
  125.     friend class HXSymbianTCPResolvResp;
  126.     friend class HXSymbianTCPConnector;
  127.     friend class HXSymbianTCPWriter;
  128.     friend class HXSymbianTCPReader;
  129.     HX_RESULT GetHostByNameDone(HX_RESULT status, ULONG32 ulAddr);
  130.     void OnConnect(HX_RESULT status);
  131.     void OnWriteDone(HX_RESULT status);
  132.     void OnReadDone(HX_RESULT status, IHXBuffer* pBuffer);
  133. private:    
  134.     enum TCPState {tcpNotInitialized,
  135.    tcpInitialized,
  136.    tcpBound,
  137.    tcpResolving,
  138.    tcpConnecting,
  139.    tcpConnected};
  140.     HX_RESULT DoRead(UINT16 size);
  141.     void CloseConnection(HX_RESULT status);
  142.     ULONG32 m_lRefCount;
  143.     IHXTCPResponse* m_pResponse;
  144.     IHXResolver* m_pResolver;
  145.     TCPState m_state;
  146.     RSocketServ m_socketServ;
  147.     RSocket m_socket;
  148.     HXSymbianTCPConnector* m_pConnector;
  149.     UINT16 m_nConnectPort;
  150.     CHXSimpleList m_writeList;
  151.     HXSymbianTCPWriter* m_pWriter;
  152.     BOOL m_bWantWrite;
  153.     HXSymbianTCPReader* m_pReader;
  154. };
  155. #endif /* HXSYMBIANTCPSOCK_H */