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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxthread.cpp,v 1.6.32.3 2004/07/09 01:44:03 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 "hxtypes.h"
  50. #if defined (_WIN32) || defined (_WINDOWS)
  51. #include <windows.h>
  52. #endif
  53. #include "hxresult.h"
  54. #include "hxassert.h"
  55. #include "hxthread.h"
  56. #include "genthrd.h"
  57. #if defined (_WIN32)
  58. #include "winthrd.h"
  59. #endif
  60. #if defined( _UNIX_THREADS_SUPPORTED )
  61. #  include "UnixThreads.h"
  62. #endif
  63. #if defined( _SYMBIAN )
  64. # include "hxslist.h"
  65. # include "hxmap.h"
  66. # include "symbianthreads.h"
  67. #endif
  68. #if defined (_MACINTOSH)
  69. #ifdef THREADS_SUPPORTED
  70. #include "platform/mac/carbthrd.h"
  71. #else
  72. #include "macthrd.h"
  73. #endif
  74. #endif
  75. #include "hxheap.h"
  76. #ifdef _DEBUG
  77. #undef HX_THIS_FILE
  78. static const char HX_THIS_FILE[] = __FILE__;
  79. #endif  
  80. HXThread::~HXThread()
  81. {
  82. }
  83. HX_RESULT
  84. HXThread::MakeThread(HXThread*& pThread)
  85. {
  86.     pThread = 0;
  87. #ifdef _WIN32
  88.     pThread = new HXWinThread;
  89. #elif defined (_MACINTOSH)
  90. # ifdef THREADS_SUPPORTED
  91.     pThread = new HXCarbonThread;
  92. # else
  93.     pThread = new HXMacThread;
  94. # endif
  95. #elif defined( _UNIX_THREADS_SUPPORTED )
  96.     HXUnixThread::MakeThread(pThread);
  97. #elif defined _SYMBIAN
  98.     pThread = new HXSymbianThread();
  99. #else
  100.     pThread = new HXGenThread;
  101. #endif
  102.     if (!pThread)
  103.     {
  104. return HXR_OUTOFMEMORY;
  105.     }
  106.     return HXR_OK;
  107. }
  108. HX_RESULT
  109. HXThread::MakeStubThread(HXThread*& pThread)
  110. {
  111.     pThread = 0;
  112.     pThread = new HXGenThread;
  113.     if (!pThread)
  114.     {
  115. return HXR_OUTOFMEMORY;
  116.     }
  117.     return HXR_OK;
  118. }
  119. HXMutex::~HXMutex()
  120. {
  121. }
  122. HX_RESULT
  123. HXMutex::MakeNamedMutex(HXMutex*& pMutex, char* name)
  124. {
  125.     pMutex = NULL;
  126. #ifdef _WIN32
  127.     pMutex = new HXWinNamedMutex(name);
  128. #else
  129.     pMutex = new HXGenMutex;
  130. #endif
  131.     if (!pMutex)
  132.     {
  133. return HXR_OUTOFMEMORY;
  134.     }
  135.     return HXR_OK;
  136. }
  137. HX_RESULT
  138. HXMutex::MakeMutex(HXMutex*& pMutex)
  139. {
  140.     pMutex = 0;
  141. #ifdef _WIN32
  142.     pMutex = new HXWinMutex;
  143. #elif defined( _UNIX_THREADS_SUPPORTED )
  144.     HXUnixMutex::MakeMutex(pMutex);
  145. #elif defined _MACINTOSH
  146. #ifdef THREADS_SUPPORTED
  147.     pMutex = new HXCarbonMutex;
  148. #else
  149.     pMutex = new HXMacMutex;
  150. #endif
  151. #elif defined _SYMBIAN
  152.     pMutex = new HXSymbianMutex;
  153. #else
  154.     pMutex = new HXGenMutex;
  155. #endif
  156.     if (!pMutex)
  157.     {
  158. return HXR_OUTOFMEMORY;
  159.     }
  160.     return HXR_OK;
  161. }
  162. HX_RESULT
  163. HXMutex::MakeStubMutex(HXMutex*& pMutex)
  164. {
  165.     pMutex = 0;
  166. #if defined(_CARBON) && !defined(THREADS_SUPPORTED)
  167. pMutex = new HXGenMacMutex;
  168. #else
  169.     pMutex = new HXGenMutex;
  170. #endif
  171.     if (!pMutex)
  172.     {
  173. return HXR_OUTOFMEMORY;
  174.     }
  175.     return HXR_OK;
  176. }
  177. HXEvent::~HXEvent()
  178. {
  179. }
  180. HX_RESULT
  181. HXEvent::MakeEvent(HXEvent*& pEvent, const char* pEventName, BOOL bManualReset)
  182. {
  183.     pEvent = 0;
  184. #ifdef _WIN32
  185.     pEvent = new HXWinEvent(pEventName, bManualReset);
  186. #elif defined( _UNIX_THREADS_SUPPORTED )
  187.     pEvent = new HXUnixEvent(pEventName, bManualReset );
  188. #elif defined _MACINTOSH
  189. #ifdef THREADS_SUPPORTED
  190.     if (bManualReset)
  191.     {
  192. pEvent = new HXCarbonManualEvent(pEventName);
  193.     }
  194.     else
  195.     {
  196. pEvent = new HXCarbonEvent(pEventName, bManualReset);
  197.     }
  198. #else
  199.     pEvent = new HXMacEvent(pEventName, bManualReset);
  200. #endif
  201. #elif defined _SYMBIAN
  202.     pEvent = new HXSymbianEvent(pEventName, bManualReset);
  203. #else
  204.     pEvent = new HXGenEvent(pEventName, bManualReset);
  205. #endif
  206.     if (!pEvent)
  207.     {
  208. return HXR_OUTOFMEMORY;
  209.     }
  210.     return HXR_OK;
  211. }
  212. HX_RESULT
  213. HXEvent::MakeStubEvent(HXEvent*& pEvent, const char* pEventName, BOOL bManualReset)
  214. {
  215.     pEvent = 0;
  216.     pEvent = new HXGenEvent(pEventName, bManualReset);
  217.     if (!pEvent)
  218.     {
  219. return HXR_OUTOFMEMORY;
  220.     }
  221.     return HXR_OK;
  222. }
  223. //
  224. // HXAsyncTimer mehtods.
  225. //
  226. UINT32 HXAsyncTimer::SetTimer(ULONG32 ulTimeOut, HXThread* pReceivingThread )
  227. {
  228. #ifdef _WIN32
  229.     return ::SetTimer( NULL, NULL, ulTimeOut, NULL );
  230. #elif defined( _UNIX_THREADS_SUPPORTED )
  231.     return HXUnixAsyncTimer::SetTimer(ulTimeOut, pReceivingThread );
  232. #elif defined _SYMBIAN
  233.     return HXSymbianAsyncTimer::SetTimer(ulTimeOut, pReceivingThread );
  234. #else
  235.     return 0;
  236. //#   error HXAsyncTimer::SetTimer not defined on this platform.
  237. #endif        
  238. }
  239.     
  240. UINT32 HXAsyncTimer::SetTimer(ULONG32 ulTimeOut, TIMERPROC pfExecFunc )
  241. {
  242. #ifdef _WIN32
  243.     return ::SetTimer( NULL, NULL, ulTimeOut, pfExecFunc );
  244. #elif defined( _UNIX_THREADS_SUPPORTED )
  245.     return HXUnixAsyncTimer::SetTimer(ulTimeOut, pfExecFunc );
  246. #elif defined _SYMBIAN
  247.     return HXSymbianAsyncTimer::SetTimer(ulTimeOut, pfExecFunc );
  248. #else
  249.     return 0;
  250. //#   error HXAsyncTimer::SetTimer not defined on this platform.
  251. #endif        
  252. }
  253.     
  254. BOOL HXAsyncTimer::KillTimer(UINT32 ulTimerID )
  255. {
  256. #ifdef _WIN32
  257.     return ::KillTimer( NULL, ulTimerID );
  258. #elif defined( _UNIX_THREADS_SUPPORTED )
  259.     return HXUnixAsyncTimer::KillTimer(ulTimerID );
  260. #elif defined _SYMBIAN
  261.     return HXSymbianAsyncTimer::KillTimer(ulTimerID);
  262. #else
  263.     return TRUE;
  264. //#   error HXAsyncTimer::KillTimer not defined on this platform.
  265. #endif        
  266. }