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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxsymbianudpsock.cpp,v 1.5.2.5 2004/07/09 02:08:48 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. #include "platform/symbian/hxsymbianudpsock.h"
  50. #include "hxsymbiansockhlp.h"
  51. #include "debug.h"
  52. #include "hxassert.h"
  53. #include "ihxpckts.h"
  54. #include "smartptr.h"
  55. #include <in_sock.h>
  56. #define D_UDPSOCKET 0x10000000
  57. class HXSymbianUDPWriter : public CActive
  58. {
  59. public:
  60.     HXSymbianUDPWriter(HXSymbianUDPSocket* pParent);
  61.     ~HXSymbianUDPWriter();
  62.     void Write(RSocket& socket, ULONG32 ulAddr, UINT16 nPort,
  63.                IHXBuffer* pBuffer);
  64.     
  65. private:
  66.     void RunL();
  67.     void DoCancel();
  68.     HXSymbianUDPSocket* m_pParent;
  69.     IHXBuffer* m_pBuffer;
  70.     TInetAddr m_sendAddr;
  71.     TPtrC8 m_bufDes;
  72. };
  73. HXSymbianUDPWriter::HXSymbianUDPWriter(HXSymbianUDPSocket* pParent) :
  74.     CActive(EPriorityStandard),
  75.     m_pParent(pParent),
  76.     m_pBuffer(0)
  77. {
  78.     CActiveScheduler::Add(this);
  79. }
  80. HXSymbianUDPWriter::~HXSymbianUDPWriter()
  81. {    
  82.     if (IsActive())
  83.         Cancel();
  84.     HX_RELEASE(m_pBuffer);
  85.     m_pParent = 0;
  86. }
  87.     
  88. void HXSymbianUDPWriter::Write(RSocket& socket, 
  89.                                ULONG32 ulAddr,
  90.                                UINT16 nPort,
  91.                                IHXBuffer* pBuffer)
  92. {
  93.     HX_RELEASE(m_pBuffer);
  94.     m_pBuffer = pBuffer;
  95.     if (m_pBuffer)
  96.     {
  97.         m_pBuffer->AddRef();
  98.     
  99.         m_bufDes.Set(m_pBuffer->GetBuffer(), m_pBuffer->GetSize());
  100.         m_sendAddr.SetAddress(ulAddr);
  101.         m_sendAddr.SetPort(nPort);
  102.         socket.SendTo(m_bufDes, m_sendAddr, 0, iStatus);
  103.         SetActive();
  104.     }
  105. }
  106. void HXSymbianUDPWriter::RunL()
  107. {
  108.     HX_RESULT res = HXR_FAILED;
  109.     if (iStatus == KErrNone)
  110.     {
  111.         res = HXR_OK;
  112.     }
  113.     else if(iStatus == KErrEof)
  114.     {
  115.         res = HXR_STREAM_DONE;
  116.     }
  117.     else if(iStatus == KErrNoMemory)
  118.     {
  119.         res = HXR_OUTOFMEMORY;
  120.     }
  121.     HX_RELEASE(m_pBuffer);
  122.     m_pParent->OnWriteDone(res);
  123. }
  124. void HXSymbianUDPWriter::DoCancel()
  125. {}
  126. class HXSymbianUDPWriteInfo
  127. {
  128. public:
  129.     HXSymbianUDPWriteInfo(ULONG32    ulAddr, UINT16     nPort,
  130.                           IHXBuffer* pBuffer);
  131.     ~HXSymbianUDPWriteInfo();
  132.     ULONG32 Address() const;
  133.     UINT16 Port() const;
  134.     IHXBuffer* GetBuffer();
  135. private:
  136.     ULONG32 m_ulAddr;
  137.     UINT16 m_nPort;
  138.     IHXBuffer* m_pBuffer;
  139. };
  140. HXSymbianUDPWriteInfo::HXSymbianUDPWriteInfo(ULONG32    ulAddr, 
  141.                                              UINT16     nPort,
  142.                                              IHXBuffer* pBuffer) :
  143.     m_ulAddr(ulAddr),
  144.     m_nPort(nPort),
  145.     m_pBuffer(pBuffer)
  146. {
  147.     if (m_pBuffer)
  148.     {
  149.         m_pBuffer->AddRef();
  150.     }
  151. }
  152. HXSymbianUDPWriteInfo::~HXSymbianUDPWriteInfo()
  153. {
  154.     HX_RELEASE(m_pBuffer);
  155. }
  156. ULONG32 HXSymbianUDPWriteInfo::Address() const
  157. {
  158.     return m_ulAddr;
  159. }
  160. UINT16 HXSymbianUDPWriteInfo::Port() const
  161. {
  162.     return m_nPort;
  163. }
  164. IHXBuffer* HXSymbianUDPWriteInfo::GetBuffer()
  165. {
  166.     IHXBuffer* pRet = m_pBuffer;
  167.     if (pRet)
  168.         pRet->AddRef();
  169.     return pRet;
  170. }
  171. class HXSymbianUDPReader : public CActive
  172. {
  173. public:
  174.     HXSymbianUDPReader(HXSymbianUDPSocket* pParent,
  175.                        IHXCommonClassFactory* pCCF);
  176.     ~HXSymbianUDPReader();
  177.     
  178.     HX_RESULT Read(RSocket& socket, UINT16);
  179. private:
  180.     void RunL();
  181.     void DoCancel();
  182.     HXSymbianUDPSocket* m_pParent;
  183.     IHXBuffer* m_pBuffer;
  184.     TPtr8 m_bufDes;
  185.     TInetAddr m_recvAddr;
  186.     IHXCommonClassFactory* m_pCCF;
  187. };
  188. HXSymbianUDPReader::HXSymbianUDPReader(HXSymbianUDPSocket* pParent,
  189.                                        IHXCommonClassFactory* pCCF) :
  190.     CActive(EPriorityStandard),
  191.     m_pParent(pParent),
  192.     m_pBuffer(0),
  193.     m_bufDes(0, 0),
  194.     m_pCCF(pCCF)
  195. {
  196.     CActiveScheduler::Add(this);
  197.     if (m_pCCF)
  198.     {
  199.         m_pCCF->AddRef();
  200.     }
  201. }
  202. HXSymbianUDPReader::~HXSymbianUDPReader()
  203. {
  204.     if (IsActive())
  205.         Cancel();
  206.     
  207.     HX_RELEASE(m_pBuffer);
  208.     HX_RELEASE(m_pCCF);
  209.     m_pParent = 0;
  210. }
  211. HX_RESULT HXSymbianUDPReader::Read(RSocket& socket, UINT16 uSize)
  212. {
  213.     HX_RESULT res = HXR_FAILED;
  214.     if (m_pParent)
  215.     {
  216.         res = HXSymbianSocketHelper::ResizeOrCreate(m_pCCF, uSize, m_pBuffer);
  217.         if (HXR_OK == res)
  218.         {
  219.             m_bufDes.Set(m_pBuffer->GetBuffer(), 0, m_pBuffer->GetSize());
  220.             
  221.             socket.RecvFrom(m_bufDes, m_recvAddr, 0, iStatus);
  222.             SetActive();
  223.         }
  224.     }
  225.     return res;
  226. }
  227. void HXSymbianUDPReader::RunL()
  228. {
  229.     HX_RESULT res = HXR_FAILED;
  230.     
  231.     if (iStatus == KErrNone )
  232.     {
  233.         res = HXR_OK;
  234.     }
  235.     else if(iStatus == KErrEof)
  236.     {
  237.         res = HXR_STREAM_DONE;
  238.     }
  239.     else if(iStatus == KErrNoMemory)
  240.     {
  241.         res = HXR_OUTOFMEMORY;
  242.     }
  243.     
  244.     IHXBuffer* pBuffer = 0;
  245.     if( res != HXR_OUTOFMEMORY )
  246.     {
  247.         HXSymbianSocketHelper::CopyOrTransfer(m_pCCF, m_bufDes.Length(), 
  248.                                               m_pBuffer, pBuffer);
  249.     }
  250.     // All error handling is done through the response object.
  251.     m_pParent->OnReadDone(res,
  252.                           (ULONG32)m_recvAddr.Address(),
  253.                           m_recvAddr.Port(),
  254.                           pBuffer);
  255.     HX_RELEASE(pBuffer);
  256. }
  257. void HXSymbianUDPReader::DoCancel()
  258. {}
  259. HXSymbianUDPSocket::HXSymbianUDPSocket(IHXCommonClassFactory* pCCF) :
  260.     m_lRefCount(0),
  261.     m_pResponse(0),
  262.     m_state(udpNotOpen),
  263.     m_ulRemoteAddr(0),
  264.     m_nRemotePort(0),
  265.     m_pWriter(0),
  266.     m_pReader(0)
  267. {
  268.     m_pWriter = new HXSymbianUDPWriter(this);
  269.     m_pReader = new HXSymbianUDPReader(this, pCCF);
  270.     if (pCCF && m_pWriter && m_pReader &&
  271.         (m_socketServ.Connect() == KErrNone) &&
  272.         (m_socket.Open(m_socketServ, KAfInet, 
  273.                        KSockDatagram, KProtocolInetUdp) == KErrNone))
  274.     {
  275.         m_state = udpOpen;
  276.     }
  277. }
  278. HXSymbianUDPSocket::~HXSymbianUDPSocket()
  279. {
  280.     if (m_state != udpNotOpen)
  281.     {
  282.         CloseSocket(HXR_OK);
  283.         m_socket.Close();
  284.         m_socketServ.Close();
  285.     }
  286.     HX_DELETE(m_pWriter);
  287.     HX_DELETE(m_pReader);
  288.     HX_RELEASE(m_pResponse);
  289. }
  290.     /*
  291.      *  IUnknown methods
  292.      */
  293. STDMETHODIMP HXSymbianUDPSocket::QueryInterface(THIS_
  294.                                                 REFIID riid,
  295.                                                 void** ppvObj)
  296. {
  297.         QInterfaceList qiList[] =
  298.         {
  299.                 { GET_IIDHANDLE(IID_IUnknown), (IUnknown*)(IHXNetworkServices*)this },
  300.                 { GET_IIDHANDLE(IID_IHXUDPSocket), (IHXUDPSocket*) this },
  301.                 { GET_IIDHANDLE(IID_IHXSetSocketOption), (IHXSetSocketOption*) this },
  302.         };      
  303.     return QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  304. }
  305. STDMETHODIMP_(ULONG32) HXSymbianUDPSocket::AddRef(THIS)
  306. {
  307.     return InterlockedIncrement(&m_lRefCount);
  308. }
  309. STDMETHODIMP_(ULONG32) HXSymbianUDPSocket::Release(THIS)
  310. {
  311.     if (InterlockedDecrement(&m_lRefCount) > 0)
  312.     {
  313.         return m_lRefCount;
  314.     }
  315.     
  316.     delete this;
  317.     return 0;
  318. }
  319.     /*
  320.      *  IHXUDPSocket methods
  321.      *
  322.      *  Network addresses and ports are in native byte order
  323.      */
  324. STDMETHODIMP HXSymbianUDPSocket::Init(THIS_
  325.                                       ULONG32                   ulAddr,
  326.                                       UINT16                    nPort,
  327.                                       IHXUDPResponse*   pUDPResponse)
  328. {
  329.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::Init(%08lx, %u)n",
  330.                           ulAddr, nPort));
  331.     HX_RESULT res = HXR_FAILED;
  332.     if (m_state != udpNotOpen)
  333.     {
  334.         if (!m_pResponse && !pUDPResponse)
  335.         {
  336.             res = HXR_UNEXPECTED;
  337.         }
  338.         else if (pUDPResponse)
  339.         {
  340.             HX_RELEASE(m_pResponse);
  341.             m_pResponse = pUDPResponse;
  342.             m_pResponse->AddRef();
  343.         }
  344.         if (m_pResponse)
  345.         {
  346.             m_ulRemoteAddr = ulAddr;
  347.             m_nRemotePort = nPort;
  348.         
  349.             if (m_state == udpOpen)
  350.             {
  351.                 m_state = udpInitialized;
  352.             }
  353.             
  354.             res = HXR_OK;
  355.         }
  356.     }
  357.     return res;
  358. }
  359. STDMETHODIMP HXSymbianUDPSocket::Bind(THIS_
  360.                                       UINT32  ulLocalAddr,
  361.                                       UINT16  nPort)
  362. {
  363.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::Bind(%08lx, %u)n",
  364.                           ulLocalAddr, nPort));
  365.     HX_RESULT res = HXR_FAILED;
  366.     TInetAddr addr(ulLocalAddr, nPort);
  367.     if ((m_state != udpNotOpen) &&
  368.         (m_socket.Bind(addr) == KErrNone))
  369.     {
  370.         m_state = udpBound;
  371.         res = HXR_OK;
  372.     }
  373.     return res;
  374. }
  375. STDMETHODIMP HXSymbianUDPSocket::Read(THIS_ UINT16 Size)
  376. {
  377.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::Read(%d)n", Size));
  378.     HX_RESULT res = HXR_FAILED;
  379.     if (m_state == udpBound)
  380.     {
  381.         // Note: We intentionally ignore the read
  382.         //       size and use the maximum possible
  383.         //       UDP packet size. This allows us to
  384.         //       properly receive any UDP packet.
  385.         res = DoRead(0xf000);
  386.     }
  387.     return res;
  388. }
  389. STDMETHODIMP HXSymbianUDPSocket::Write(THIS_ IHXBuffer* pBuffer)
  390. {
  391.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::Write()n"));
  392.     return WriteTo(m_ulRemoteAddr, m_nRemotePort, pBuffer);
  393. }
  394. STDMETHODIMP HXSymbianUDPSocket::WriteTo(THIS_ 
  395.                                          ULONG32    ulAddr,
  396.                                          UINT16     nPort,
  397.                                          IHXBuffer* pBuffer)
  398. {
  399.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::WriteTo(%08lx, %d)n",
  400.                           ulAddr, nPort));
  401.     HX_RESULT res = HXR_FAILED;
  402.     if ((m_state == udpBound) && pBuffer)
  403.     {
  404.         if (m_pWriter->IsActive())
  405.         {
  406.             // A write is in process. Cache the information
  407.             // about this write for later use.
  408.             HXSymbianUDPWriteInfo* pWriteInfo = 
  409.                 new HXSymbianUDPWriteInfo(ulAddr, nPort, pBuffer);
  410.             if (pWriteInfo)
  411.             {
  412.                 LISTPOSITION listRet = m_writeList.AddTail(pWriteInfo);
  413.                 if( listRet == NULL )
  414.                 {
  415.                     res = HXR_OUTOFMEMORY;
  416.                     HX_DELETE(pWriteInfo);
  417.                 }
  418.                 else
  419.                 {
  420.                     res = HXR_OK;
  421.                 }
  422.             }
  423.         }
  424.         else
  425.         {
  426.             // Do the write now
  427.             m_pWriter->Write(m_socket, ulAddr, nPort, pBuffer);
  428.             res = HXR_OK;
  429.         }
  430.     }
  431.     return res;
  432. }
  433. STDMETHODIMP HXSymbianUDPSocket::GetLocalPort(THIS_
  434.                                               REF(UINT16) port)
  435. {
  436.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::GetLocalPort()n"));
  437.     HX_RESULT res = HXR_FAILED;
  438.     if (m_state == udpBound )
  439.     {
  440.         port = m_socket.LocalPort();
  441.         res = HXR_OK;
  442.     }
  443.     return res;
  444. }
  445. STDMETHODIMP HXSymbianUDPSocket::JoinMulticastGroup(THIS_
  446.                                                     ULONG32 ulMulticastAddr,
  447.                                                     ULONG32 ulInterfaceAddr)
  448. {
  449.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::JoinMulticastGroup(%08lx %08lx)n",
  450.                           ulMulticastAddr, ulInterfaceAddr));
  451.     return HXR_NOTIMPL;
  452. }
  453.     
  454. STDMETHODIMP HXSymbianUDPSocket::LeaveMulticastGroup(THIS_
  455.                                                      ULONG32 ulMulticastAddr,
  456.                                                      ULONG32 ulInterfaceAddr)
  457. {
  458.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::LeaveMulticastGroup(%08lx %08lx)n",
  459.                           ulMulticastAddr, ulInterfaceAddr));
  460.     return HXR_NOTIMPL;
  461. }
  462. STDMETHODIMP HXSymbianUDPSocket::SetOption(THIS_ 
  463.                                            HX_SOCKET_OPTION option,
  464.                                            UINT32 ulValue)
  465. {
  466.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::SetOption(%d, %ld)n",
  467.                           option, ulValue));
  468.     HX_RESULT res = HXR_FAILED;
  469.     if (m_state == udpNotOpen)
  470.     {
  471.         switch(option)
  472.         {
  473.         case  HX_SOCKOPT_REUSE_ADDR:
  474.         case HX_SOCKOPT_REUSE_PORT:
  475.             if (m_socket.SetOpt(KSoReuseAddr, KSOLSocket, ulValue) == KErrNone)
  476.             {
  477.                 res = HXR_OK;
  478.             }
  479.             break;
  480.         case HX_SOCKOPT_BROADCAST:
  481.         case HX_SOCKOPT_SET_RECVBUF_SIZE:
  482.         case HX_SOCKOPT_SET_SENDBUF_SIZE:
  483.         case HX_SOCKOPT_MULTICAST_IF:
  484.             res = HXR_UNEXPECTED;
  485.             break;
  486.         default:
  487.             res = HXR_FAILED;
  488.             break;
  489.         };
  490.     }
  491.     return res;
  492. }
  493. void HXSymbianUDPSocket::OnWriteDone(HX_RESULT status)
  494. {
  495.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::WriteDone(%ld)n", status));
  496.     if (status == HXR_OK)
  497.     {
  498.         if (m_writeList.GetCount() > 0)
  499.         {
  500.             // Write the next buffer in the list
  501.             HXSymbianUDPWriteInfo* pWriteInfo = 
  502.                 (HXSymbianUDPWriteInfo*)m_writeList.RemoveHead();
  503.             IHXBuffer* pBuffer = pWriteInfo->GetBuffer();
  504.             m_pWriter->Write(m_socket, 
  505.                              pWriteInfo->Address(), pWriteInfo->Port(),
  506.                              pBuffer);
  507.             HX_RELEASE(pBuffer);
  508.             delete pWriteInfo;
  509.         }
  510.     }
  511.     else
  512.     {
  513.         CloseSocket(status);
  514.     }
  515. }
  516. void HXSymbianUDPSocket::OnReadDone(HX_RESULT status, 
  517.                                     ULONG32 ulAddr, UINT16 nPort, 
  518.                                     IHXBuffer* pBuffer)
  519. {
  520.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::OnReadDone(%ld, %08lx, %d)n",
  521.                           status, ulAddr, nPort));
  522.     DECLARE_SMART_POINTER_UNKNOWN scopeRef((IHXUDPSocket*)this);
  523.     
  524.     // We assume that the reponse object is going to be responsible for error 
  525.     // handling, so the symbian network services does not try to notify
  526.     // anyone of errors returned here.
  527.     if (m_pResponse)
  528.     {
  529.         m_pResponse->ReadDone(status, pBuffer, ulAddr, nPort);
  530.     }
  531.     if (status != HXR_OK)
  532.     {
  533.         CloseSocket(status);
  534.     }
  535. }
  536. HX_RESULT HXSymbianUDPSocket::DoRead(UINT16 size)
  537. {
  538.     DPRINTF(D_UDPSOCKET, ("HXSymbianUDPSocket::DoRead(%d)n", size));
  539.     HX_RESULT res = HXR_FAILED;
  540.     
  541.     if (m_pReader)
  542.     {
  543.         res = m_pReader->Read(m_socket, size);
  544.     }
  545.     return res;
  546. }
  547. void HXSymbianUDPSocket::CloseSocket(HX_RESULT status)
  548. {
  549.     if (m_state != udpNotOpen)
  550.     {
  551.         // Cancel writer
  552.         if (m_pWriter->IsActive())
  553.         {
  554.             m_socket.CancelWrite();
  555.             m_pWriter->Cancel();
  556.         }
  557.         if (m_pReader->IsActive())
  558.         {
  559.             m_socket.CancelRecv();
  560.             m_pReader->Cancel();
  561.         }
  562.         
  563.         // Clear the writer list
  564.         while (m_writeList.GetCount() > 0)
  565.         {
  566.             // Write the next buffer in the list
  567.             HXSymbianUDPWriteInfo* pWriteInfo = 
  568.                 (HXSymbianUDPWriteInfo*)m_writeList.RemoveHead();
  569.             
  570.             HX_DELETE(pWriteInfo);
  571.         }
  572.         m_state = udpNotOpen;
  573.     }
  574. }