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