hxopwaveudpsock.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:15k
源码类别:

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. * Technology Compatibility Kit Test Suite(s) Location: 
  29. *    http://www.helixcommunity.org/content/tck 
  30. * Contributor(s): 
  31. *  
  32. * ***** END LICENSE BLOCK ***** */ 
  33. #include "hxopwaveudpsock.h"
  34. #include "debug.h"
  35. #include "hxassert.h"
  36. #include "ihxpckts.h"
  37. #include "smartptr.h"
  38. #define D_UDPSOCKET 0x10000000
  39. HXOpwaveUDPSocket::HXOpwaveUDPSocket(IHXCommonClassFactory* pCCF)
  40.                                     : OpSocket(kUDP)
  41.                                     , m_lRefCount(0)
  42.                                     , m_pResponse(0)
  43.                                     , m_pCCF(0)
  44.                                     , m_state(udpNotInitialized)
  45.                                     , m_ulRemoteAddr(0)
  46.                                     , m_nRemotePort(0)
  47.                                     , m_nLocalPort(0)
  48.                                     , m_ulLocalAddr(0)
  49.                                     , m_ulReadSize(0)
  50.                                     , m_pWriteBuffer(NULL)
  51.                                     , m_ulBytesLeftToWrite(0)
  52.                                     , m_pReadBuffer(NULL)
  53. {
  54.     
  55.     if (pCCF)
  56.     {
  57.         m_pCCF = pCCF;
  58.         m_pCCF->AddRef();
  59.     }
  60. }
  61. HXOpwaveUDPSocket::~HXOpwaveUDPSocket()
  62. {
  63.     
  64.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::~HXOpwaveUDPSocket()n"));
  65.     
  66.     CloseSocket(HXR_OK);
  67.     HX_RELEASE(m_pResponse);
  68.     HX_RELEASE(m_pCCF);
  69. }
  70. /*
  71. *  IUnknown methods
  72. */
  73. STDMETHODIMP
  74. HXOpwaveUDPSocket::QueryInterface(THIS_
  75.                                   REFIID riid,
  76.                                   void** ppvObj)
  77. {
  78.     
  79.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::QueryInterface()n"));
  80.     
  81.     if (IsEqualIID(riid, IID_IHXUDPSocket))
  82.     {
  83.         
  84.         AddRef();
  85.         *ppvObj = (IHXUDPSocket*)this;
  86.         return HXR_OK;
  87.     }
  88.     else if (IsEqualIID(riid, IID_IHXSetSocketOption))
  89.     {
  90.         AddRef();
  91.         *ppvObj = (IHXSetSocketOption*)this;
  92.         return HXR_OK;
  93.     }    
  94.     else if (IsEqualIID(riid, IID_IUnknown))
  95.     {
  96.         AddRef();
  97.         *ppvObj = (IUnknown*)(IHXUDPSocket*)this;
  98.         return HXR_OK;
  99.     }
  100.     
  101.     *ppvObj = NULL;
  102.     return HXR_NOINTERFACE;
  103. }
  104. STDMETHODIMP_(ULONG32)
  105. HXOpwaveUDPSocket::AddRef(THIS)
  106. {
  107.     return InterlockedIncrement(&m_lRefCount);
  108. }
  109. STDMETHODIMP_(ULONG32)
  110. HXOpwaveUDPSocket::Release(THIS)
  111. {
  112.     if (InterlockedDecrement(&m_lRefCount) > 0)
  113.     {
  114.         return m_lRefCount;
  115.     }
  116.     
  117.     delete this;
  118.     return 0;
  119. }
  120. /*
  121. * IHXUDPSocket methods
  122. *
  123. *  Network addresses and ports are in native byte order
  124. *  
  125. */
  126. STDMETHODIMP
  127. HXOpwaveUDPSocket::Init(THIS_
  128.                         ULONG32 ulAddr,
  129.                         UINT16 nPort,
  130.                         IHXUDPResponse* pUDPResponse)
  131. {
  132.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::Init(%08lx, %u)n",
  133.         ulAddr, nPort));
  134.     
  135.     HX_RESULT res = HXR_OK;
  136.     if (m_state != udpNotInitialized)
  137.     {
  138.         return res;
  139.     }
  140.     if (pUDPResponse)
  141.     {
  142.         HX_RELEASE(m_pResponse);
  143.         m_pResponse = pUDPResponse;
  144.         m_pResponse->AddRef();
  145.     }
  146.     m_ulRemoteAddr = ulAddr;
  147.     m_nRemotePort = nPort;
  148.     
  149.     if (m_ulRemoteAddr != 0 && m_nRemotePort != 0)
  150.     {
  151.         m_state = udpInitialized;
  152.         if (m_state != udpBound)
  153.         {
  154.  
  155.             /// Openwave sdk does bind inside connect
  156.             /// we do binding here due to when Bind is called, the Init is not called
  157.             /// with valid m_nRemotePort and m_ulRemoteAddr.
  158.             connect(m_nLocalPort, m_nRemotePort, m_ulRemoteAddr);
  159.         
  160.             //OpDPRINTF("UDP::Init: this=%p, ulLocalAddr=%d, localport=%d, remotePort=%d, remoteaddr=%dn", this, 
  161.             //            m_ulLocalAddr,m_nLocalPort, m_nRemotePort, m_ulRemoteAddr);
  162.             m_state = udpBound;        
  163.             m_bWritable = FALSE;
  164.             m_bReadable = FALSE;
  165.         }
  166.     }
  167.     return res;
  168. }
  169. STDMETHODIMP 
  170. HXOpwaveUDPSocket::Bind(THIS_
  171.                         UINT32 ulLocalAddr,
  172.                         UINT16 nPort)
  173. {
  174.     
  175.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::Bind(%08lx, %u)n", ulLocalAddr, nPort));
  176.     
  177.     /// Until OpSocket implement the DNS layer, this is nothting but cache address and
  178.     /// port values
  179.     /// OpSocket has bind function built into connect
  180.   
  181.     HX_RESULT res = HXR_OK;
  182.     
  183.     m_ulLocalAddr = ulLocalAddr;
  184.     m_nLocalPort = nPort;
  185.     if (m_state == udpInitialized && m_state != udpBound && m_nLocalPort != 0)
  186.     {
  187.         /// Only do binding if it is initialized 
  188.         /// Openwave sdk does bind inside connect
  189.         connect(m_nLocalPort, m_nRemotePort, m_ulRemoteAddr);
  190.         
  191.         //OpDPRINTF("UDP::Bind: this=%p, ulLocalAddr=%d, localport=%d, remotePort=%d, remoteaddr=%dn", this, 
  192.         //           m_ulLocalAddr,m_nLocalPort, m_nRemotePort, m_ulRemoteAddr);
  193.         m_state = udpBound;        
  194.         m_bWritable = FALSE;
  195.         m_bReadable = FALSE;
  196.     }
  197.     return res;
  198. }
  199. STDMETHODIMP 
  200. HXOpwaveUDPSocket::Read(THIS_
  201.                         UINT16 Size)
  202. {
  203.     
  204.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::Read(%u)n", Size));
  205.     
  206.     HX_RESULT res = HXR_OK;
  207.     m_ulReadSize = Size;
  208.     //OpDPRINTF("UDP:Read: this=%p, size=%d, bread=%d, state=%d, bwrite=%dn", this, Size, m_bReadable, m_state, m_bWritable);
  209.     if (m_state == udpBound)
  210.     {
  211.         if (m_bReadable && m_ulReadSize)
  212.         {
  213.             /// avoid recursion that might occur because 
  214.             /// OnReadDone call in DoRead invoke ::Read again
  215.             m_bReadable = FALSE;
  216.             res = DoRead();
  217.         }
  218.     }
  219.     return res;
  220.     
  221. }
  222. /// Work horse for reading. As long as we are initilized once 
  223. /// to read, we always try to read something of the socket.
  224. HX_RESULT
  225. HXOpwaveUDPSocket::DoRead()
  226. {
  227.     /// Create a new IHXBuffer for every read
  228.     HX_RESULT res = HXR_FAIL;
  229.     IHXBuffer* pReadBuffer = NULL;
  230.     res = m_pCCF->CreateInstance(IID_IHXBuffer, (void**)&pReadBuffer);
  231.     if (SUCCEEDED(res))
  232.     {
  233.         res = pReadBuffer->SetSize(m_ulReadSize);
  234.     
  235.         UCHAR* pData = pReadBuffer->GetBuffer();
  236.         int nRead = read(pData, m_ulReadSize);
  237.  
  238.         //OpDPRINTF("UDP::DoRead: this=%p, read=%d, askfor=%dn", this, nRead, m_ulReadSize);
  239.         if (nRead > 0)
  240.         {
  241.             pReadBuffer->SetSize(nRead);
  242.             m_pReadBuffer = pReadBuffer;
  243.             // Don't ADDREF, m_pReadBuffer will be released in the callback OnReadDone
  244.         
  245.             if (m_pResponse)
  246.             {
  247.                 /// still to be found that address and port arguments
  248.                 /// should be put here (remote or local)
  249.                 m_pResponse->ReadDone(res, m_pReadBuffer,
  250.                     m_ulRemoteAddr, m_nRemotePort);
  251.             }
  252.             
  253.         }
  254.     }
  255.     HX_RELEASE(m_pReadBuffer);
  256.     return res;
  257. }
  258. STDMETHODIMP 
  259. HXOpwaveUDPSocket::Write(THIS_
  260.                          IHXBuffer* pBuffer)
  261. {
  262.     
  263.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::Write()n"));
  264.     HX_RESULT res = HXR_OK;
  265.     if (!pBuffer)
  266.     {
  267.      res = HXR_INVALID_PARAMETER;
  268.     }
  269.   
  270.     //OpDPRINTF("UDP:Write: this=%p, lwsize=%d, bread=%d, newwritesize=%d, bwrite=%dn", this, m_ulBytesLeftToWrite, m_bReadable, pBuffer->GetSize(), m_bWritable);
  271.     if (SUCCEEDED(res) && (m_state == udpBound))
  272.     {
  273.         /// First add to our list
  274.         pBuffer->AddRef();
  275.         m_writeList.AddTail(pBuffer);
  276.         /// decide if we need to do a write 
  277.         /// because last time when it is ready to write, there is no data 
  278.         /// to be written.
  279.         if (m_bWritable)
  280.         {
  281.             if (!m_pWriteBuffer)
  282.             {
  283.                 m_pWriteBuffer = (IHXBuffer*)m_writeList.RemoveHead();
  284.                 m_ulBytesLeftToWrite = m_pWriteBuffer->GetSize();  
  285.             }
  286.             res =DoWrite();
  287.             if (SUCCEEDED(res))
  288.             {
  289.                 m_bWritable = FALSE;
  290.             }
  291.         }
  292.     }
  293.     return res;
  294. }
  295. /// This is working method to do actual write from
  296. /// the m_pWriteBuffer which is guranteed to have data to be written
  297. /// and the socket is ready to accept data
  298. HX_RESULT HXOpwaveUDPSocket::DoWrite()
  299. {
  300.     HX_RESULT res = HXR_OK;
  301.  
  302.     UCHAR* pBufData = m_pWriteBuffer->GetBuffer(); 
  303.     size_t ulActualWritten = write(pBufData, m_ulBytesLeftToWrite);
  304.    
  305.     HX_ASSERT(m_ulBytesLeftToWrite >= ulActualWritten);
  306.  
  307.     //OpDPRINTF("UDP::DoWrite, this=%p, written%d, write=%dnn",this, ulActualWritten, m_ulBytesLeftToWrite);
  308.     m_ulBytesLeftToWrite -= ulActualWritten;
  309.     if (m_ulBytesLeftToWrite > 0)
  310.     {
  311.         // more left in this m_pWriteBuffer to be written out
  312.         UCHAR* pLeftData = new UCHAR[m_ulBytesLeftToWrite];
  313.         if (!pLeftData)
  314.         {
  315.             res = HXR_OUTOFMEMORY;
  316.             OnWriteDone(res);
  317.             return res;
  318.         }
  319.             
  320.         memcpy(pLeftData, pBufData+ulActualWritten, m_ulBytesLeftToWrite);
  321.         m_pWriteBuffer->Set(pLeftData, m_ulBytesLeftToWrite); 
  322.         delete pLeftData;
  323.     }
  324.     return res;
  325. }
  326. STDMETHODIMP
  327. HXOpwaveUDPSocket::GetLocalPort(THIS_
  328.                                 REF(UINT16) port)
  329. {
  330.     
  331.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::GetLocalPort()n"));
  332.     
  333.     HX_RESULT res = HXR_OK;
  334.     port = m_nLocalPort;
  335.     return res;
  336. }
  337. STDMETHODIMP 
  338. HXOpwaveUDPSocket::SetOption(THIS_ 
  339.                              HX_SOCKET_OPTION option,
  340.                              UINT32 ulValue)
  341. {
  342.     
  343.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::SetOption(%d, %lu)n", option, ulValue));
  344.     HX_RESULT res = HXR_FAILED;
  345.     
  346.     if (m_state == udpNotInitialized)
  347.     {
  348.         switch(option)
  349.         {
  350.         case  HX_SOCKOPT_REUSE_ADDR:
  351.         case HX_SOCKOPT_REUSE_PORT:
  352.             //// OpSocket doesn't support set socket options
  353.             {
  354.                 res = HXR_NOTIMPL;
  355.             }
  356.             break;
  357.         case HX_SOCKOPT_BROADCAST:
  358.         case HX_SOCKOPT_SET_RECVBUF_SIZE:
  359.         case HX_SOCKOPT_SET_SENDBUF_SIZE:
  360.         case HX_SOCKOPT_MULTICAST_IF:
  361.             res = HXR_UNEXPECTED;
  362.             break;
  363.         default:
  364.             break;
  365.         }
  366.     }
  367.     
  368.     return res;
  369. }
  370. STDMETHODIMP
  371. HXOpwaveUDPSocket::WriteTo(THIS_ ULONG32 ulAddr, UINT16 nPort,
  372.                            IHXBuffer* pBuffer)
  373. {
  374.     HX_RESULT res = HXR_OK;
  375.     return res;
  376. }
  377. STDMETHODIMP
  378. HXOpwaveUDPSocket::JoinMulticastGroup(THIS_ ULONG32     ulMulticastAddr,
  379.                                       ULONG32     ulInterfaceAddr)
  380. {
  381.     HX_RESULT res = HXR_OK;
  382.     return res;
  383. }
  384. STDMETHODIMP
  385. HXOpwaveUDPSocket::LeaveMulticastGroup (THIS_ ULONG32     ulMulticastAddr,
  386.                                          ULONG32     ulInterfaceAddr)
  387. {
  388.     HX_RESULT res = HXR_OK;
  389.     return res;
  390. }
  391. void HXOpwaveUDPSocket::OnWriteDone(HX_RESULT status)
  392. {
  393.     
  394.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::OnWriteDone(%ld)n", status));
  395.     DECLARE_SMART_POINTER_UNKNOWN scopeRef((IHXUDPSocket*)this);
  396.     
  397.     if (status == HXR_OK)
  398.     {
  399.         HX_RELEASE(m_pWriteBuffer);
  400.         if (m_writeList.GetCount() > 0)
  401.         {
  402.             m_pWriteBuffer = (IHXBuffer*)m_writeList.RemoveHead();
  403.             m_ulBytesLeftToWrite = m_pWriteBuffer->GetSize();     
  404.         }
  405.       
  406.     }
  407.     else
  408.     {
  409.         CloseSocket(status);
  410.     }
  411. }
  412. void HXOpwaveUDPSocket::CloseSocket(HX_RESULT status)
  413. {
  414.     
  415.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::CloseConnection(%ld)n", status));
  416.     
  417.     if (m_state != udpNotInitialized)
  418.     {
  419.         close(true);
  420.     }
  421.     
  422.     // Clear the writer list
  423.     
  424.     while (m_writeList.GetCount() > 0)
  425.     {
  426.         // Release all the left unsent buffers in the list
  427.         IHXBuffer* pBuffer = (IHXBuffer*)m_writeList.RemoveHead();
  428.         HX_RELEASE(pBuffer);
  429.     }
  430.     m_state = udpNotInitialized;
  431.     
  432. }
  433. void HXOpwaveUDPSocket::onReadable(OpSocketEvent *pSocketEvent)
  434. {
  435.     
  436.     HX_RESULT res = HXR_OK;
  437.     //OpDPRINTF("UDP:onReadable: this=%p, mrsize=%d, bread=%d, state=%d, bwrite=%dn", this, m_ulReadSize, m_bReadable, m_state, m_bWritable);
  438.   
  439.     if (m_ulReadSize > 0)
  440.     {
  441.         /// avoid recursion that might occur because 
  442.         /// OnReadDone call in DoRead invoke ::Read again
  443.         m_bReadable = FALSE;
  444.         DoRead();
  445.     }
  446. }
  447. void HXOpwaveUDPSocket::onWritable(OpSocketEvent *pSocketEvent)
  448. {
  449.     HX_RESULT res = HXR_OK;
  450.     m_bWritable = TRUE;
  451.     //OpDPRINTF("UDP:onWritable: this=%p, mrsize=%d, bread=%d, lwsize=%d, bwrite=%dn", this, m_ulReadSize, m_bReadable, m_ulBytesLeftToWrite, m_bWritable);
  452.   
  453.   
  454.     /// Normal write process
  455.     /// Call OnWriteDone for handling the notification of last write
  456.     if (m_ulBytesLeftToWrite == 0)
  457.     {
  458.         /// Notify last writing is completely done
  459.         OnWriteDone(res);
  460.     }
  461.     
  462.     /// Do the next writing
  463.     if (m_pWriteBuffer && m_ulBytesLeftToWrite > 0)
  464.     {
  465.         if (DoWrite() == HXR_OK)
  466.         {
  467.             m_bWritable = FALSE;
  468.         }
  469.     }
  470. }
  471. void HXOpwaveUDPSocket::onException(OpSocketEvent *pSocketEvent)
  472. {
  473.     static int num = 0;
  474.     DPRINTF(D_UDPSOCKET, ("HXOpwaveUDPSocket::OnException(%ld)n", ++num));
  475. }