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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: ot_udp.cp,v 1.2.36.1 2004/07/09 02:06:38 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 "hxcom.h"
  50. #include "hxbuffer.h"
  51. #include "timebuff.h"
  52. #include "hxtick.h"
  53. #include "netbyte.h"
  54. #include "OT_UDP.h"
  55. #include "hxerrors.h"
  56. #include "MWDebug.h"
  57. #include <string.h>
  58. #include <stdio.h>
  59. #include <stdlib.h>
  60. #include <ctype.h>
  61. #include "hxmm.h"
  62. //#define USE_DEFERRED_IMPL 1
  63. OT_UDP::OT_UDP (void)
  64. { /* begin OT_UDP */
  65. m_pInBuffer = new char[TCP_BUF_SIZE];
  66. m_bIsBroadcastEnabled = FALSE;
  67. } /* end OT_UDP */
  68. OT_UDP::~OT_UDP (void)
  69. { /* begin ~OT_UDP */
  70. Cleanup();
  71. } /* end ~OT_UDP */
  72. HX_RESULT
  73. OT_UDP::init(UINT32 local_addr, UINT16 port, UINT16 blocking)
  74. {
  75. HX_RESULT theErr = Create();
  76. if(!theErr) theErr = ActiveOpen(port);
  77. if(theErr) Cleanup();
  78. return theErr;
  79. }
  80. void
  81. OT_UDP::done(void)
  82. {
  83. Cleanup();
  84. }
  85. /*----------------------------------------------------------------------------
  86. Create
  87. Create a UDP endpoint.
  88. Exit: function result = error code.
  89. ----------------------------------------------------------------------------*/
  90. OSErr OT_UDP::Create(void)
  91. {
  92. OSErr theErr = HXR_OK;
  93. // clear completion flag
  94. mComplete = false;
  95. // open UDP endpoint
  96. #ifdef USE_DEFERRED_IMPL
  97. theErr = OTAsyncOpenEndpoint(OTCreateConfiguration(kUDPName), 0, nil, UDPTCPNotifyProc, this);
  98. #else
  99. #ifdef _CARBON
  100. theErr = OTAsyncOpenEndpointInContext(OTCreateConfiguration(kUDPName), 0, nil,
  101. ::NewOTNotifyUPP(UDPNotifyProc), this, NULL);
  102. #else
  103. theErr = OTAsyncOpenEndpoint(OTCreateConfiguration(kUDPName), 0, nil,
  104. UDPNotifyProc, this);
  105. #endif
  106. #endif
  107. // wait for completion
  108. if(!theErr) theErr = OTWait();
  109. // check for errors
  110. if (theErr || mCode != T_OPENCOMPLETE)
  111. theErr = HXR_SOCKET_CREATE;
  112. if(!theErr)
  113. {
  114. mRef = (EndpointRef) mCookie; // save UDP provider reference
  115. mDataArrived = FALSE;
  116. mDataFlowOn = FALSE;
  117. }
  118. #if 0
  119. if (!theErr)
  120. {
  121.  UINT32 uBufDepth = 0;
  122.  // XTI_RCVBUF : size of internal buffer
  123.  // XTI_RCVLOWAT : minimum accumulated size for notification
  124. OT_net::GetFourByteOption(mRef, XTI_GENERIC, XTI_RCVBUF, &uBufDepth);
  125. OT_net::GetFourByteOption(mRef, XTI_GENERIC, XTI_RCVLOWAT, &uBufDepth);
  126. OT_net::SetFourByteOption(mRef, XTI_GENERIC, XTI_RCVBUF, 64000);
  127. OT_net::SetFourByteOption(mRef, XTI_GENERIC, XTI_RCVLOWAT, 32000);
  128. OT_net::GetFourByteOption(mRef, XTI_GENERIC, XTI_RCVBUF, &uBufDepth);
  129. OT_net::GetFourByteOption(mRef, XTI_GENERIC, XTI_RCVLOWAT, &uBufDepth);
  130. OT_net::GetFourByteOption(mRef, XTI_GENERIC, XTI_RCVLOWAT, &uBufDepth);
  131. }
  132. #endif
  133. if(theErr)  // error occured close provider
  134. {
  135. if(mRef != 0) OTCloseProvider(mRef);
  136. mRef = 0;
  137. }
  138. mLastError = theErr;
  139. return theErr;
  140. }
  141. /*----------------------------------------------------------------------------
  142. Release 
  143. Release a UDP stream.
  144. Exit: function result = error code.
  145. Any active connection is also aborted, if necessary, before releasing 
  146. the stream.
  147. ----------------------------------------------------------------------------*/
  148. OSErr OT_UDP::Cleanup (void)
  149. {
  150. OSErr theErr = HXR_OK;
  151. Boolean abort;
  152. abort = !mOtherSideHasClosed || !mWeHaveClosed;
  153. if(mRef)
  154. {
  155. OTRemoveNotifier(mRef);
  156. theErr = OTCloseProvider(mRef);
  157. mRef = 0;
  158. mConnectionOpen = FALSE;
  159. mOtherSideHasClosed = TRUE;
  160. mWeHaveClosed = TRUE;
  161. }
  162. HX_VECTOR_DELETE(m_pInBuffer);
  163. mLastError = theErr;
  164. return theErr;
  165. }
  166. /*----------------------------------------------------------------------------
  167. ActiveOpen 
  168. Open an active stream.
  169. addr = IP address of server.
  170. port = port number of service.
  171. Exit: function result = error code.
  172. ----------------------------------------------------------------------------*/
  173.  OSErr OT_UDP::ActiveOpen (
  174.  
  175. UINT16 port)
  176. {
  177. OSErr theErr = HXR_OK;
  178. InetAddress reqAd,retAd;
  179. TBind req,ret;
  180. // get Inet address of port
  181. OTInitInetAddress(&reqAd, port, (InetHost) 0);
  182. // bind udp to current address and requested port
  183. req.addr.maxlen = sizeof(struct InetAddress);
  184. req.addr.len = sizeof(struct InetAddress);
  185. req.addr.buf = (unsigned char *) &reqAd;
  186. req.qlen = 1; // don't care for udp
  187. ret.addr.maxlen = sizeof(struct InetAddress);
  188. ret.addr.len = sizeof(struct InetAddress);
  189. ret.addr.buf = (unsigned char *) &retAd;
  190. // clear completion flag
  191. mComplete = false;
  192. // bind provider to return structure
  193. theErr = OTBind(mRef, &req, &ret);
  194. if(theErr)
  195. {
  196. mLastError = theErr;
  197. theErr = HXR_BIND;
  198. }
  199. // wait for bind completion
  200. if(!theErr)
  201. {
  202. theErr = OTWait();
  203. if(theErr == kOTNoDataErr) theErr = HXR_OK;
  204. if(theErr || mCode != T_BINDCOMPLETE) 
  205. {
  206. theErr = theErr ? theErr : HXR_BIND;
  207. mLastError = theErr;
  208. theErr = HXR_BIND;
  209. }
  210. }
  211. // get local port
  212. if(!theErr)
  213. {
  214. mLocalPort = reqAd.fPort;
  215. mConnectionOpen = TRUE;
  216. mOtherSideHasClosed = FALSE;
  217. mWeHaveClosed = FALSE;
  218. }
  219. return theErr;
  220. }
  221. /*----------------------------------------------------------------------------
  222. write 
  223. write data on a UDP stream.
  224. Entry: data = pointer to data to send.
  225. len = length of data to send.
  226. Exit: function result = error code.
  227. ----------------------------------------------------------------------------*/
  228. HX_RESULT
  229. OT_UDP::writeto (
  230. void  *buf,
  231. UINT16  *size, 
  232. ULONG32 addr,
  233. UINT16  port)
  234. {
  235. OSStatus result;
  236. TUnitData unitdata;
  237. InetAddress sin;
  238. TOption option;
  239. HX_RESULT theErr;
  240. ::OTInitInetAddress(&sin, port, addr);
  241. unitdata.addr.len = sizeof(struct InetAddress);
  242. unitdata.addr.buf = (UInt8*) &sin;
  243. unitdata.udata.len = *size;
  244. unitdata.udata.buf = (UInt8*) buf;
  245.   if(m_bIsBroadcastEnabled)
  246.   {
  247.   unitdata.opt.len = sizeof(option);
  248.   option.len = kOTFourByteOptionSize;
  249.   option.level = INET_IP;
  250. #ifdef _MAC_MACHO
  251.   option.name = kIP_BROADCAST;
  252. #else
  253.   option.name = IP_BROADCAST;
  254. #endif
  255.   option.status = 0;
  256.   option.value[0] = 1;
  257.   unitdata.opt.buf = (UInt8*) &option;
  258.   }
  259.   else
  260.   {
  261.   unitdata.opt.len = 0;
  262.   unitdata.opt.maxlen = 0;
  263.   unitdata.opt.buf = 0;
  264.   }
  265. result = ::OTSndUData(mRef,&unitdata);
  266. if(result == 0)
  267. {
  268. return HXR_OK;
  269. }
  270. switch(result)
  271. {
  272. case kOTFlowErr:
  273. mDataFlowOn = TRUE;
  274. theErr = HXR_WOULD_BLOCK;
  275. break;
  276. case kENOMEMErr:
  277. case kEBUSYErr:
  278. case kOTOutStateErr:
  279. case kEWOULDBLOCKErr:
  280. case kOTStateChangeErr:
  281. theErr = HXR_WOULD_BLOCK;
  282. break;
  283. case kOTLookErr:
  284. {
  285.                         OSStatus lookErr = ::OTLook(mRef);
  286. TUDErr UDErr;
  287. if(lookErr == T_UDERR)
  288. {
  289. UInt8 buf1[256];
  290. UInt8 buf2[256];
  291. UDErr.addr.maxlen = 256;
  292. UDErr.addr.buf = buf1;
  293. UDErr.opt.maxlen = 256;
  294. UDErr.opt.buf = buf2;
  295. lookErr = ::OTRcvUDErr(mRef, &UDErr);
  296. theErr = HXR_NET_WRITE;
  297. }
  298. else
  299. {
  300. theErr =  HXR_NET_WRITE;
  301. break;
  302. }
  303. }
  304.                         break;
  305. default:
  306. theErr =  HXR_NET_WRITE;
  307. break;
  308. }
  309. *size = 0;
  310. mLastError = theErr;
  311. return theErr;
  312. }
  313. /*******************************************************************************
  314. ** read
  315. ********************************************************************************/
  316. HX_RESULT
  317. OT_UDP::read (void *data, UINT16 *len)
  318. {
  319. return HXR_NOTIMPL;
  320. }
  321. HX_RESULT
  322. OT_UDP::readfrom (REF(IHXBuffer*)   pBuffer,
  323.   REF(UINT32)     ulAddress,
  324.   REF(UINT16)     ulPort)
  325. {
  326. UINT16 size = 0;
  327. OSStatus theErr = HXR_OK;
  328. TUnitData unitdata;
  329. OTFlags flags;
  330. InetAddress sin;
  331. pBuffer = NULL;
  332. ulAddress = 0;
  333. ulPort = 0;
  334. mLastError = HXR_OK;
  335. if(!mDataArrived)
  336. {
  337. return HXR_WOULD_BLOCK;
  338. }
  339. unitdata.opt.len = 0;
  340. unitdata.addr.len = 0;
  341. unitdata.udata.len = 0;
  342. unitdata.addr.maxlen = sizeof(struct InetAddress);
  343. unitdata.opt.maxlen = 0;
  344. unitdata.opt.buf = 0;
  345. unitdata.udata.maxlen = TCP_BUF_SIZE; // used to be 256
  346. unitdata.udata.buf = (UInt8*)m_pInBuffer;
  347. unitdata.addr.buf = (UInt8*) &sin;
  348. theErr = OTRcvUData(mRef,&unitdata, &flags);
  349. if (theErr == HXR_OK)
  350. {
  351. size = unitdata.udata.len;
  352. /* I have seen the size to be a really large value some times.
  353.  * This was before I added initializaion of
  354.        *  unitdata.opt.len = 0;
  355.      *  unitdata.addr.len = 0;
  356.      *  unitdata.udata.len = 0;
  357.      *
  358.      * It looks like sometimes OTRecvData returns no error and DOES NOT
  359.      * set the udata.len value. We now make sure that we have indeed
  360.      * received some data before creating an IHXBuffer
  361.      *
  362.      * XXXRA
  363.      */
  364.  
  365. HX_ASSERT(size > 0);
  366. if (size > 0)
  367. {
  368.     CHXTimeStampedBuffer* pTimeBuffer = new CHXTimeStampedBuffer;
  369.     pTimeBuffer->AddRef();
  370.     pTimeBuffer->SetTimeStamp(HX_GET_TICKCOUNT());
  371.     pTimeBuffer->Set((UCHAR*)m_pInBuffer, size);
  372.     pBuffer = (IHXBuffer*) pTimeBuffer;
  373.     ulAddress = DwToHost(sin.fHost);
  374.     ulPort = WToHost(sin.fPort);
  375. }
  376. }
  377. else if(theErr == kOTNoDataErr)
  378. {
  379. theErr = HXR_NO_DATA;
  380. // xxxbobclark This used to return HXR_OK if there was no data.
  381. // But now there's threaded networking code that needs to rely
  382. // on this returning HXR_NO_DATA if there's really no data.
  383. }
  384. else if(theErr == kEWOULDBLOCKErr)
  385. theErr = HXR_WOULD_BLOCK;
  386. else
  387. theErr = HXR_SERVER_DISCONNECTED;
  388. mLastError = theErr;
  389. return theErr;
  390. }
  391. /*
  392. HX_RESULT
  393. OT_UDP::listen (UINT16  backlog)
  394. {
  395. return(HXR_INVALID_OPERATION);
  396. }
  397. */
  398. HX_RESULT
  399. OT_UDP::connect(
  400. const char *host, 
  401. UINT16  port,
  402. UINT16  blocking,
  403. ULONG32 ulPlatform)
  404. {
  405. return(HXR_INVALID_OPERATION);
  406. }
  407. /* join_multicast_group() has this socket join a multicast group */
  408. HX_RESULT
  409. OT_UDP::join_multicast_group (ULONG32 multicastHost, ULONG32 if_addr)
  410. {
  411. OSStatus theErr = kOTNoError;
  412. // mLocalPort is set by the init() function
  413. // ::OTInitInetAddress(&mMulticastAddr, mLocalPort, multicastHost);
  414. // since we are already bound to an IP addr on our system
  415. // (bind occurred in the init() function) we can now Let 
  416. // IP know to listen for this multicast IP address on all interfaces.
  417. TOptMgmt  optReq;
  418. UInt8   optBuffer[ kOTOptionHeaderSize + sizeof(TIPAddMulticast) ];
  419. ULONG32 optLength = kOTOptionHeaderSize + sizeof(TIPAddMulticast);
  420. TOption*   opt = (TOption*)optBuffer;
  421. TIPAddMulticast* addopt = (TIPAddMulticast*)opt->value; 
  422. optReq.flags = T_NEGOTIATE;
  423. optReq.opt.len = optLength;
  424. optReq.opt.maxlen = optLength;
  425. optReq.opt.buf = (UInt8*) optBuffer;
  426. opt->level = INET_IP;
  427. #ifdef _MAC_MACHO
  428. opt->name = kIP_ADD_MEMBERSHIP;
  429. #else
  430. opt->name = IP_ADD_MEMBERSHIP;
  431. #endif
  432. opt->len = optLength;
  433. opt->status = 0;
  434. addopt->multicastGroupAddress = multicastHost;
  435. addopt->interfaceAddress = if_addr;
  436. // clear completion flag
  437. mComplete = false;
  438. theErr = ::OTOptionManagement(mRef,&optReq, &optReq);
  439. // wait for completion
  440. if(!theErr) 
  441. theErr = OTWait();
  442. if(theErr)
  443. theErr = HX_MULTICAST_JOIN_ERROR;
  444. return theErr;
  445. }
  446. HX_RESULT
  447. OT_UDP::leave_multicast_group(ULONG32 multicastHost, ULONG32 if_addr)
  448. {
  449. HX_RESULT theErr = HXR_OK;
  450. TOptMgmt  optReq;
  451. UInt8   optBuffer[ kOTOptionHeaderSize + sizeof(TIPAddMulticast) ];
  452. ULONG32 optLength = kOTOptionHeaderSize + sizeof(TIPAddMulticast);
  453. TOption*   opt = (TOption*)optBuffer;
  454. TIPAddMulticast* addopt = (TIPAddMulticast*)opt->value; 
  455. optReq.flags = T_NEGOTIATE;
  456. optReq.opt.len = optLength;
  457. optReq.opt.maxlen = optLength;
  458. optReq.opt.buf = (UInt8*) optBuffer;
  459. opt->level = INET_IP;
  460. #ifdef _MAC_MACHO
  461. opt->name = kIP_DROP_MEMBERSHIP;
  462. #else
  463. opt->name = IP_DROP_MEMBERSHIP;
  464. #endif
  465. opt->len = optLength;
  466. opt->status = 0;
  467. addopt->multicastGroupAddress = multicastHost;
  468. addopt->interfaceAddress = if_addr;
  469. // clear completion flag
  470. mComplete = false;
  471. theErr = ::OTOptionManagement(mRef,&optReq, &optReq);
  472. // wait for completion
  473. if(!theErr) 
  474. theErr = OTWait();
  475. if(theErr)
  476. return HX_GENERAL_MULTICAST_ERROR;
  477. return HXR_OK;
  478. }
  479. HX_RESULT
  480. OT_UDP::set_broadcast(BOOL enable)
  481. {
  482. OSStatus theErr = kOTNoError;
  483.   mComplete = false;
  484.     m_bIsBroadcastEnabled = enable;
  485.   return HXR_OK;
  486. }
  487.  
  488. /*----------------------------------------------------------------------------
  489. UDPNotifyProc 
  490. Open Transport notifier proc for UDP streams.
  491. Entry: s = pointer to UDP stream.
  492. code = OT event code.
  493. result = OT result.
  494. cookie = OT cookie.
  495. ----------------------------------------------------------------------------*/
  496. pascal void OT_UDP::UDPNotifyProc (
  497.  void *stream, 
  498.  OTEventCode code,
  499.  OTResult result, 
  500.  void *cookie )
  501.  
  502. {
  503. OT_UDP* s =  (OT_UDP*) stream;
  504. HXMM_INTERRUPTON();
  505. s->ProcessCmd(code, result, cookie);
  506. HXMM_INTERRUPTOFF();
  507. return;
  508. }
  509. void
  510. OT_UDP::ProcessCmd(OTEventCode code, OTResult result, void* cookie)
  511. {
  512. switch (code) 
  513. {
  514. case T_DISCONNECT:
  515. /* Other side has aborted. */
  516. mOtherSideHasClosed = true;
  517. mComplete = true;
  518. mConnectionOpen = FALSE;
  519. MWDebugPStr("pT_DISCONNECT");
  520.         if(mCallBack) mCallBack->Func(CONNECT_NOTIFICATION, FALSE);
  521. break;
  522. case T_ORDREL:
  523. /* Other side has closed. Close our side if necessary. */
  524. mOtherSideHasClosed = true;
  525. mComplete = true;
  526. mConnectionOpen = FALSE;
  527. if (mClosing) mRelease = true;
  528. MWDebugPStr("pT_ORDREL");
  529. break;
  530. case T_DATA:
  531. mDataArrived = TRUE;
  532. //if(mCallBack) mCallBack->callback_task(HX_UDP_CALLBACK);
  533. if(mCallBack) mCallBack->Func(READ_NOTIFICATION);
  534. break;
  535. case T_BINDCOMPLETE:
  536. case T_CONNECT:
  537. case T_PASSCON:
  538. mComplete = true;
  539. mCode = code;
  540. mResult = result;
  541. mCookie = cookie;
  542. break;
  543. case T_OPENCOMPLETE:
  544. mConnectionOpen = TRUE;
  545. mComplete = true;
  546. mCode = code;
  547. mResult = result;
  548. mCookie = cookie;
  549. if(mCallBack) mCallBack->Func(CONNECT_NOTIFICATION);
  550. break;
  551. case T_GODATA:
  552. mDataFlowOn = FALSE;
  553. MWDebugPStr("pT_GODATA");
  554. break;
  555. case T_OPTMGMTCOMPLETE:
  556. mComplete = true;
  557. mCode = code;
  558. mResult = result;
  559. mCookie = cookie;
  560. break;
  561. }
  562. return;
  563. }