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

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. #include <stdio.h>
  36. #include "hxresult.h"
  37. #include "hxassert.h"
  38. #include "hxmap.h"
  39. #include "hxcom.h"
  40. #include "hxengin.h"
  41. #include "hxthread.h"
  42. #include "conn.h"
  43. #include "thrdconn.h"
  44. #include "threngin.h"
  45. #include "hxtick.h"
  46. #if defined(_UNIX) && (defined( _UNIX_THREADED_NETWORK_IO ) || defined(THREADS_SUPPORTED))
  47. #include "platform/unix/UnixThreads.h"
  48. #include "platform/unix/unix_net.h"
  49. #endif
  50. #if defined(_MACINTOSH) && defined(_CARBON) && defined(THREADS_SUPPORTED)
  51. #include "carbthrd.h"
  52. #endif
  53. #include "hxheap.h"
  54. #ifdef _DEBUG
  55. #undef HX_THIS_FILE
  56. static const char HX_THIS_FILE[] = __FILE__;
  57. #endif  
  58. #define ALLFS     0xFFFFFFFF
  59. #define LOCAL_LOOPBACK_ADDR 0x7F000001 // 127.0.0.1
  60. #define LOCAL_LOOPBACK_NAME "127.0.0.1"
  61. #define LOCAL_LOOPBACK_PORT 0x1234
  62. void* NetworkThreadMainLoop(void* pArg);
  63. ThreadEngine*   ThreadEngine::m_pzThreadEngine = NULL;
  64. /* Global destructor will be called at DLL shutdown and thread engine
  65.  * will be destroyed
  66.  */ 
  67. DestructEngine selfDestructor;
  68. ThreadEngine*    
  69. ThreadEngine::GetThreadEngine(void)
  70. {
  71.     if (!m_pzThreadEngine)
  72.     {
  73. m_pzThreadEngine = new ThreadEngine; 
  74.     }
  75.     return m_pzThreadEngine;
  76. }
  77. ThreadEngine::ThreadEngine()
  78.     : m_pNetworkThread(0)
  79.     , m_pMainAppThread(0)
  80.     , m_pMutex(0)
  81.     , m_pSockMap(0)
  82.     , m_pQuitEvent(NULL)
  83.     , m_bInDestructor(FALSE)
  84. #if defined(_MACINTOSH) && defined(_CARBON) && defined(THREADS_SUPPORTED)
  85.     , m_ThreadedNetworkingCarbonTimerUPP(NULL)
  86.     , m_ThreadedNetworkingCarbonTimerRef(NULL)
  87. #endif
  88. #if defined(HELIX_FEATURE_NETWORK_USE_SELECT)
  89.     , m_pLocalListener(NULL)
  90.     , m_pLocalReader(NULL)
  91.     , m_pLocalWriter(NULL)
  92. #endif // HELIX_FEATURE_NETWORK_USE_SELECT
  93. {
  94.     m_pzThreadEngine = this;
  95. #if defined( THREADS_SUPPORTED ) || defined( _UNIX_THREADED_NETWORK_IO )
  96.     HXMutex::MakeMutex(m_pMutex);
  97.     HXThread::MakeThread(m_pNetworkThread);
  98.     HXEvent::MakeEvent(m_pQuitEvent, NULL);
  99. #else
  100.     HXMutex::MakeStubMutex(m_pMutex);
  101.     HXThread::MakeStubThread(m_pNetworkThread);
  102.     HXEvent::MakeStubEvent(m_pQuitEvent, NULL);
  103. #endif
  104.     m_pNetworkThread->CreateThread(NetworkThreadMainLoop, (void*) this);
  105.     m_pSockMap = new CHXMapPtrToPtr;
  106.     
  107.     /* This is just a wrapper thread for the main application 
  108.      * It is really a hack. Will do it the right way sometime soon*/
  109. #if defined( THREADS_SUPPORTED ) || defined( _UNIX_THREADED_NETWORK_IO )
  110.     HXThread::MakeThread(m_pMainAppThread);
  111. #else
  112.     HXThread::MakeStubThread(m_pMainAppThread);
  113. #endif
  114.     m_pMainAppThread->YieldTimeSlice();
  115. #if defined(_MACINTOSH) && defined(_CARBON) && defined(THREADS_SUPPORTED)
  116.     HX_ASSERT(!m_ThreadedNetworkingCarbonTimerUPP);
  117.     HX_ASSERT(!m_ThreadedNetworkingCarbonTimerRef);
  118.     m_ThreadedNetworkingCarbonTimerUPP = ::NewEventLoopTimerUPP(
  119. (EventLoopTimerProcPtr)FauxMainAppCarbonTimer);
  120.     InstallEventLoopTimer(GetCurrentEventLoop(), 0, 50 * kEventDurationMillisecond,
  121. m_ThreadedNetworkingCarbonTimerUPP, this, &m_ThreadedNetworkingCarbonTimerRef);
  122. #endif
  123. }
  124. ThreadEngine::~ThreadEngine()
  125. {
  126.     m_pMutex->Lock();
  127.     m_bInDestructor = TRUE;
  128.     if (m_pSockMap && m_pSockMap->GetCount() > 0)
  129.     {
  130. CHXMapPtrToPtr::Iterator ndxConn = m_pSockMap->Begin();
  131. for (; ndxConn != m_pSockMap->End(); ++ndxConn)
  132. {
  133.     ThreadedConn* pConn = (ThreadedConn*) (*ndxConn);
  134.     pConn->AddRef();
  135. }
  136.     }
  137.     m_pMutex->Unlock();
  138.     if (m_pSockMap)
  139.     {
  140. //HX_ASSERT(m_pSockMap->GetCount() == 0);
  141. if (m_pSockMap->GetCount() > 0)
  142. {
  143.     CHXMapPtrToPtr::Iterator ndxConn = m_pSockMap->Begin();
  144.     for (; ndxConn != m_pSockMap->End(); ++ndxConn)
  145.     {
  146. ThreadedConn* pConn = (ThreadedConn*) (*ndxConn);
  147. #if defined(HELIX_FEATURE_NETWORK_USE_SELECT)
  148. if (pConn == m_pLocalReader ||
  149.     pConn == m_pLocalWriter ||
  150.     pConn == m_pLocalListener)
  151.     continue;
  152. #endif // HELIX_FEATURE_NETWORK_USE_SELECT
  153. pConn->finaldone();
  154. pConn->Release();
  155.     }
  156. }   
  157.     }
  158.     if (m_pNetworkThread)
  159.     {
  160. HXThreadMessage msg(HXMSG_QUIT, NULL, NULL);
  161. if (m_pNetworkThread->PostMessage(&msg) == HXR_OK)
  162. {
  163.       m_pQuitEvent->Wait(ALLFS);
  164. }
  165.         
  166. m_pNetworkThread->Exit(0);
  167. delete m_pNetworkThread;
  168. m_pNetworkThread = 0;
  169.     }
  170. #if defined(HELIX_FEATURE_NETWORK_USE_SELECT)
  171.     m_pLocalReader->Release();
  172.     m_pLocalWriter->Release();
  173.     m_pLocalListener->Release();
  174. #endif // HELIX_FEATURE_NETWORK_USE_SELECT
  175. #if defined(_MACINTOSH) && defined(_CARBON) && defined(THREADS_SUPPORTED)
  176.     ::RemoveEventLoopTimer(m_ThreadedNetworkingCarbonTimerRef);
  177.     m_ThreadedNetworkingCarbonTimerRef;
  178.     
  179.     ::DisposeEventLoopTimerUPP(m_ThreadedNetworkingCarbonTimerUPP);
  180.     m_ThreadedNetworkingCarbonTimerUPP;
  181. #endif
  182.     if (m_pMainAppThread)
  183.     {
  184. delete m_pMainAppThread;
  185. m_pMainAppThread = 0;
  186.     }
  187.     if (m_pMutex)
  188.     {
  189. delete m_pMutex;
  190. m_pMutex = 0;
  191.     }
  192.     if (m_pQuitEvent)
  193.     {
  194. delete m_pQuitEvent;
  195. m_pQuitEvent = 0;
  196.     }
  197.     if (m_pSockMap)
  198.     {
  199. m_pSockMap->RemoveAll();
  200. delete m_pSockMap;
  201. m_pSockMap = 0;
  202.     }
  203. }
  204. void 
  205. ThreadEngine::DestroyThreadEngine(void)
  206. {
  207.     if (m_pzThreadEngine)
  208.     {
  209. ThreadEngine* pThreadEngine = m_pzThreadEngine;
  210. m_pzThreadEngine = NULL;
  211. delete pThreadEngine;
  212.     }
  213. }
  214. HX_RESULT
  215. ThreadEngine::AttachSocket(ThreadedConn* pConn)
  216. {
  217.     void* pVoid = 0;
  218.     HX_RESULT theErr = HXR_OK;
  219.     m_pMutex->Lock();
  220.     if (m_pSockMap->Lookup(pConn, pVoid))
  221.     {
  222. theErr = HXR_FAIL;
  223.     }
  224.     else
  225.     {
  226. pConn->AddRef();
  227. m_pSockMap->SetAt((void*) pConn, (void*) pConn);
  228.     }
  229.     if (m_pSockMap->GetCount() == 1)
  230.     {
  231. #ifdef WIN32_PLATFORM_PSPC
  232. HXThreadMessage msg(HXMSG_ASYNC_RESUME, (void*) 200, NULL);
  233. #else
  234. HXThreadMessage msg(HXMSG_ASYNC_RESUME, (void*) 20, NULL);
  235. #endif
  236. m_pNetworkThread->PostMessage(&msg);
  237.     }
  238.     m_pMutex->Unlock();
  239.     return theErr;
  240. }
  241. HX_RESULT
  242. ThreadEngine::DetachSocket(ThreadedConn* pConn)
  243. {
  244.     void* pVoid = 0;
  245.     HX_RESULT theErr = HXR_OK;
  246.     m_pMutex->Lock();
  247.     void* blah;
  248.     if (!m_pSockMap->Lookup((void*) pConn, (void*&) blah))
  249.     {
  250. theErr = HXR_FAIL;
  251.     }
  252.     else
  253.     {
  254. /* if we are in the destructor, no need to remove from the map */
  255. if (!m_bInDestructor)
  256. {
  257.     m_pSockMap->RemoveKey((void*) pConn);
  258. }
  259. pConn->Detached();
  260. pConn->Release();
  261.     }
  262.     if (m_pSockMap->GetCount() == 0)
  263.     {
  264. HXThreadMessage msg(HXMSG_ASYNC_STOP, NULL, NULL);
  265. m_pNetworkThread->PostMessage(&msg);
  266.     }
  267.     m_pMutex->Unlock();
  268.     return theErr;
  269. }
  270. //-----------------------------------------------------------
  271. void
  272. ThreadEngine::DoAsyncCallback(ThreadedConn* pConn, IHXCallback* pCallback)
  273. {
  274.     void* pVoid = 0;
  275.     m_pMutex->Lock();
  276.     /* Fire callback ONLY if the connected socket is still active*/
  277.     if (m_pSockMap->Lookup(pConn, pVoid))
  278.     {
  279. pCallback->Func();
  280.     }
  281.     pCallback->Release();
  282.     m_pMutex->Unlock();
  283. }
  284. //-----------------------------------------------------------
  285. void
  286. ThreadEngine::DoNetworkIO(ThreadedConn* pConn)
  287. {
  288.     CHXMapPtrToPtr::Iterator ndxConn;
  289.     m_pMutex->Lock();
  290.     if (m_bInDestructor)
  291.     {
  292. goto exit;
  293.     }
  294.     if (pConn)
  295.     {
  296. void* pVoid = 0;
  297. if (m_pSockMap->Lookup(pConn, pVoid))
  298. {
  299.     pConn->DoNetworkIO();
  300. }
  301. goto exit;
  302.     }
  303.     ndxConn = m_pSockMap->Begin();
  304.     for (; ndxConn != m_pSockMap->End(); ++ndxConn)
  305.     {
  306. ThreadedConn* pConn = (ThreadedConn*) (*ndxConn);
  307. pConn->DoNetworkIO();
  308.     }
  309. exit:
  310.     m_pMutex->Unlock();
  311. }
  312. //-----------------------------------------------------------
  313. #if defined(HELIX_FEATURE_NETWORK_USE_SELECT)
  314. HX_RESULT 
  315. ThreadEngine::WaitforSelect()
  316. {
  317.     HX_RESULT theErr = HXR_FAIL;
  318.     ThreadedConn *pConn = NULL;
  319.     if (m_bInDestructor)
  320. pConn = m_pLocalReader;
  321.     if (m_pLocalReader && m_pLocalReader->GetActualConn())
  322. theErr = m_pLocalReader->GetActualConn()->WaitforSelect(this,pConn);
  323.     return theErr;
  324. }
  325. #endif // HELIX_FEATURE_NETWORK_USE_SELECT
  326. //-----------------------------------------------------------
  327. void*
  328. NetworkThreadMainLoop(void* pArg)
  329. {
  330.     ThreadEngine*   pEngine = (ThreadEngine*) pArg;
  331.     HXMutex*     pMutex  = pEngine->m_pMutex; 
  332.     HXThread*     pThread = pEngine->m_pNetworkThread;
  333.     HXThreadMessage msg;
  334.     BOOL     bDone   = FALSE;
  335.     UINT32     ulSleepTime = 0;
  336.     ULONG32     ulLastTimerCallback = HX_GET_TICKCOUNT();
  337.     
  338. #if defined( _WIN32 ) || defined( _UNIX_THREADED_NETWORK_IO ) || defined(THREADS_SUPPORTED)
  339.     UINT32  ulTimerId = 0;
  340. #endif /*_WIN32 || _UNIX_THREADED_NETWORK_IO */
  341.     
  342. #if defined(HELIX_FEATURE_NETWORK_USE_SELECT)
  343.     unsigned short iSize;
  344.     HX_RESULT theErr = HXR_FAIL;
  345.     UINT32 ulPlatformData = 0;
  346.     BOOL bRWStartup = FALSE;
  347.     BOOL bMoreToRead = FALSE;
  348.     BOOL bDebug = FALSE;
  349.     pEngine->m_pLocalListener  = new ThreadedConn(HX_TCP_SOCKET);
  350.     pEngine->m_pLocalWriter  = new ThreadedConn(HX_TCP_SOCKET);
  351.     pEngine->m_pLocalReader  = NULL;
  352.     pThread->SetPriority(THREAD_PRIORITY_ABOVE_NORMAL);
  353. //    pThread->SetPriority(THREAD_PRIORITY_HIGHEST);
  354. #if defined (_WIN32)
  355.     ulPlatformData = (UINT32)GetModuleHandle(NULL);
  356. #elif defined (_WIN16)
  357.     ulPlatformData = (UINT32)(int)g_hInstance;
  358. #endif
  359.     if (pEngine->m_pLocalListener && pEngine->m_pLocalWriter)
  360. theErr = pEngine->m_pLocalListener->listen(
  361.     LOCAL_LOOPBACK_ADDR
  362.     , LOCAL_LOOPBACK_PORT
  363.     , 4 // backlog
  364.     , 0 // blocking
  365.     , ulPlatformData // ulPlatform
  366.     );
  367.     if (SUCCEEDED(theErr))
  368.     // writer connects and reader accepts
  369. theErr = pEngine->m_pLocalWriter->connect(
  370.     LOCAL_LOOPBACK_NAME
  371.     , LOCAL_LOOPBACK_PORT
  372.     , 0 // blocking
  373.     , ulPlatformData // ulPlatform
  374.     );
  375.     if (SUCCEEDED(theErr) && !bDebug)
  376.     // writer connects and reader accepts
  377. theErr = pEngine->m_pLocalListener->accept(LOCAL_LOOPBACK_ADDR);
  378.     if (FAILED(theErr))
  379.     {
  380. if (pEngine->m_pLocalListener)
  381. {
  382.     pEngine->DetachSocket(pEngine->m_pLocalListener);
  383.     pEngine->m_pLocalListener = NULL;
  384. }
  385. if (pEngine->m_pLocalWriter)
  386. {
  387.     pEngine->DetachSocket(pEngine->m_pLocalWriter);
  388.     pEngine->m_pLocalWriter = NULL;
  389. }
  390. if (pEngine->m_pLocalReader)
  391. {
  392.     pEngine->DetachSocket(pEngine->m_pLocalReader);
  393.     pEngine->m_pLocalReader = NULL;
  394. }
  395.     }
  396.     while (!bDone)
  397.     {
  398. if (bDebug || FAILED(theErr) 
  399.     || !pEngine->m_pLocalWriter 
  400.     || !pEngine->m_pLocalReader 
  401.     || !pEngine->m_pLocalWriter->connection_really_open()
  402.     || !pEngine->m_pLocalReader->connection_really_open()
  403.     )
  404. { // process connect and accept messages, then use select
  405.     pEngine->m_pNetworkThread->m_bUseReaderWriter = FALSE;
  406.            if (ulTimerId <= 0)
  407.            {
  408.                ulSleepTime = 20;
  409.                ulTimerId = HXAsyncTimer::SetTimer( ulSleepTime, pThread );
  410.            }
  411.     if (pThread->GetMessage(&msg, 0, 0) != HXR_OK)
  412. break;
  413. }
  414. else
  415. {
  416.     if (!pEngine->m_pNetworkThread->m_bUseReaderWriter || bRWStartup)
  417.     { // process messages in queue
  418. if (!bRWStartup)
  419. {
  420.     if (ulTimerId > 0)
  421.     {
  422.        HXAsyncTimer::KillTimer(ulTimerId);
  423.        ulTimerId = 0;
  424.     }
  425.     msg.m_ulMessage = HXMSG_ASYNC_START_READERWRITER;
  426.     theErr = pEngine->m_pNetworkThread->PostMessage(&msg);
  427. }
  428. pEngine->m_pNetworkThread->m_bUseReaderWriter = TRUE;
  429. pEngine->m_pLocalWriter->set_callback(pEngine->m_pLocalWriter->get_callback()); // for post network msg
  430. pThread->SetNetworkMessageConnection(pEngine->m_pLocalWriter);
  431. bRWStartup = TRUE;
  432. if (pThread->GetMessage(&msg, 0, 0) != HXR_OK)
  433.     break;
  434.     }
  435.     else
  436.     {
  437. if (!bMoreToRead)
  438. {
  439.     if (HXR_FAIL == pEngine->WaitforSelect())
  440. break;
  441. }
  442. msg.m_ulMessage = 0;
  443. iSize = sizeof(HXThreadMessage);
  444. pEngine->m_pLocalReader->m_bNetworkIOPending = TRUE;
  445. theErr = pEngine->m_pLocalReader->read(&msg,&iSize);
  446. if (HXR_OK != theErr)
  447. {
  448.     if (HXR_WOULD_BLOCK == theErr)
  449.     {
  450. bMoreToRead = FALSE;
  451. theErr = HXR_OK;
  452. continue;
  453.     }
  454.     // reader failed, must be disconnected, return to msg loop
  455.     break;
  456. }
  457. if (iSize != sizeof(HXThreadMessage)) // fixme
  458. {
  459.     bMoreToRead = FALSE;
  460.     continue;
  461. }
  462. else
  463.     bMoreToRead = TRUE;
  464.     }
  465. }
  466. #else
  467.     while (!bDone && pThread->GetMessage(&msg, 0, 0) == HXR_OK)
  468.     {
  469. #endif // HELIX_FEATURE_NETWORK_USE_SELECT
  470. switch (msg.m_ulMessage)
  471. {
  472. #if defined( _WIN32 ) || defined( _UNIX_THREADED_NETWORK_IO ) || defined(THREADS_SUPPORTED)
  473.            case HXMSG_ASYNC_TIMER: //Look in hxmsgs.h (WM_TIMER under win32)
  474.            {
  475. #if defined(_UNIX_THREADED_NETWORK_IO) || (defined(THREADS_SUPPORTED) && defined(_UNIX))
  476.                unix_TCP::process_idle();
  477. #endif                    
  478.                ULONG32 ulCurrentTime = HX_GET_TICKCOUNT();
  479.                
  480.                if (CALCULATE_ELAPSED_TICKS(ulLastTimerCallback, 
  481.                                            ulCurrentTime) >= ulSleepTime)
  482.                {
  483.                    ulLastTimerCallback = ulCurrentTime;
  484.                    pEngine->DoNetworkIO(); 
  485.                }
  486.            }
  487.            break;
  488. #endif /* _WIN32 || _UNIX_THREADED_NETWORK_IO */
  489.            case HXMSG_ASYNC_NETWORKIO:
  490.            {
  491.                ThreadedConn* pConn = (ThreadedConn*) msg.m_pParam1; 
  492.                pEngine->DoNetworkIO(pConn);
  493.            }
  494.            break;
  495.            case HXMSG_ASYNC_CALLBACK:
  496.            {
  497.                ThreadedConn* pConn = (ThreadedConn*) msg.m_pParam1; 
  498.                IHXCallback* pCallback = (IHXCallback*) msg.m_pParam2;
  499.                pEngine->DoAsyncCallback(pConn, pCallback);
  500.            }
  501.            break;
  502. #if defined(HELIX_FEATURE_NETWORK_USE_SELECT)
  503.            case HXMSG_ASYNC_SETREADER_CONNECTION:
  504.            {
  505.                pEngine->m_pLocalReader = (ThreadedConn*) msg.m_pParam2; 
  506.            }
  507.            break;
  508.            case HXMSG_ASYNC_START_READERWRITER:
  509.            {
  510. pEngine->m_pNetworkThread->m_bUseReaderWriter = TRUE;
  511. bRWStartup = FALSE;
  512.            }
  513.            break;
  514. #endif //HELIX_FEATURE_NETWORK_USE_SELECT
  515.            case HXMSG_ASYNC_DETACH:
  516.            {
  517.                ThreadedConn* pConn = (ThreadedConn*) msg.m_pParam1; 
  518.                pEngine->DetachSocket(pConn); 
  519.            }
  520.            break;
  521.            case HXMSG_QUIT:
  522.            {
  523.                bDone = TRUE;
  524.            }
  525.            
  526.            break;
  527.            case HXMSG_ASYNC_RESUME:
  528. #if defined( _WIN32 ) || defined( _UNIX_THREADED_NETWORK_IO ) || defined(THREADS_SUPPORTED)
  529.            {
  530.                if (ulTimerId > 0)
  531.                {
  532.                    HXAsyncTimer::KillTimer(ulTimerId);
  533.                    ulTimerId = 0;
  534.                }
  535.                
  536.                ulSleepTime = (UINT32)(PTR_INT)msg.m_pParam1;
  537.                ulTimerId = HXAsyncTimer::SetTimer( ulSleepTime, pThread );
  538.            }
  539. #endif /* _WIN32 || _UNIX_THREADED_NETWORK_IO */
  540.            break;
  541.            
  542.            case HXMSG_ASYNC_STOP:
  543. #if defined( _WIN32 ) || defined( _UNIX_THREADED_NETWORK_IO ) || defined(THREADS_SUPPORTED)
  544.            {
  545.                if (ulTimerId > 0)
  546.                {
  547.                    HXAsyncTimer::KillTimer( ulTimerId );
  548.                    ulTimerId   = 0;
  549.                    ulSleepTime = 0;
  550.                }
  551.            }
  552. #endif /* _WIN32 || _UNIX_THREADED_NETWORK_IO */
  553.            break;
  554.            default:
  555.                pThread->DispatchMessage(&msg);
  556.                break;
  557. }
  558.     }
  559.     
  560. #if defined( _WIN32 ) || defined( _UNIX_THREADED_NETWORK_IO ) || defined(THREADS_SUPPORTED)
  561.     if (ulTimerId > 0)
  562.     {
  563.         HXAsyncTimer::KillTimer( ulTimerId );
  564.     }
  565. #endif /* _WIN32 || _UNIX_THREADED_NETWORK_IO */
  566.     
  567.     pEngine->m_pQuitEvent->SignalEvent();
  568.     
  569.     return (void*) 0;
  570. }
  571. #if defined(_MACINTOSH) && defined(_CARBON) && defined(THREADS_SUPPORTED)
  572. void ThreadEngine::FauxMainAppCarbonTimer(EventLoopTimerRef, void* /* unused */)
  573. {
  574.     // xxxbobclark this is essentially just ripped off from Greg Wright's
  575.     // similar message handling loop for Unix.
  576.     //
  577.     // It's been moved to pnio because more places than just rmacore
  578.     // (i.e. rmacleng) use the threaded implementation of networking,
  579.     // viz. rnqueue for Auto-Update. Using a Carbon Timer to get time
  580.     // periodically can luckily be implemented in pnio; it's sure to
  581.     // get actual System Time.
  582.     
  583.     ThreadEngine* pEngine = ThreadEngine::GetThreadEngine();
  584.     HX_ASSERT(pEngine);
  585.     HXCarbonThread* pMainAppThread = (HXCarbonThread*)pEngine->GetMainAppThread();
  586.     HX_ASSERT(pMainAppThread);
  587.     HXThreadMessage msg;
  588.     
  589.     while (pMainAppThread->PeekMessage(&msg, 0, 0, TRUE) == HXR_OK)
  590.     {
  591. if (msg.m_ulMessage != 0)
  592. {
  593.     ThreadedConn* pThreadedConn = (ThreadedConn*)msg.m_pParam1;
  594.     if (pThreadedConn)
  595.     {
  596. switch (msg.m_ulMessage)
  597. {
  598.     case HXMSG_ASYNC_DNS:
  599. pThreadedConn->OnAsyncDNS((BOOL)msg.m_pParam2);
  600. break;
  601.     case HXMSG_ASYNC_CONNECT:
  602. pThreadedConn->OnConnect((BOOL)msg.m_pParam2);
  603. break;
  604.     case HXMSG_ASYNC_READ:
  605. pThreadedConn->OnReadNotification();
  606. break;
  607.     case HXMSG_ASYNC_WRITE:
  608. pThreadedConn->OnWriteNotification();
  609. break;
  610.     case HXMSG_ASYNC_ACCEPT:
  611. pThreadedConn->OnAcceptNotification();
  612. break;
  613.     default:
  614. HX_ASSERT(!"Unknown message in threaded networking Carbon Timer");
  615. break;
  616. }
  617.     }
  618. }
  619.     }
  620. }
  621. #endif