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

Symbian

开发平台:

Visual C++

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