pthreadthreads.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

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. #ifndef _PTHREADTHREADS
  36. #define _PTHREADTHREADS
  37. #include "UnixThreads.h"
  38. class HXPthreadCondition;
  39. //=======================================================================
  40. //
  41. //                      HXPthreadMutex
  42. //                   ------------------
  43. //
  44. // NOTE: Mutexs must be recursive.
  45. //=======================================================================
  46. class HXPthreadMutex : public HXUnixMutex
  47. {
  48. public:
  49.     //Ctors and dtors.
  50.     HXPthreadMutex();
  51.     virtual ~HXPthreadMutex();
  52.     friend class HXPthreadCondition;
  53.     
  54. protected:
  55.     //Must be recursive
  56.     virtual HX_RESULT _Lock();
  57.     virtual HX_RESULT _Unlock();
  58.     virtual HX_RESULT _TryLock();
  59.     //Used by freind class HXCondition for locking.
  60.     pthread_mutex_t* _GetPthreadMutex();
  61.         
  62. private:
  63.     pthread_mutex_t m_mutex;
  64.     //These are used to simulate recursive mutexes on systems that don't
  65.     //have them.
  66. #ifndef _MAC_UNIX
  67.     ULONG32         m_ulOwnerThread;
  68. #else
  69.     pthread_t       m_ulOwnerThread;
  70. #endif
  71.     ULONG32         m_ulLockCount;
  72.     pthread_mutex_t m_mtxLockLock; //A mutex to protect the mutex!
  73.     //Prevent unintentional ctors
  74.     HXPthreadMutex( const HXPthreadMutex& ); //copy ctor
  75.     HXPthreadMutex& operator=(const HXPthreadMutex& ); //assignment operator.
  76. };
  77. #ifndef _MAC_UNIX
  78. struct HXsem_t : public sem_t
  79. {
  80.     char padding[64]; /* Flawfinder: ignore */ // different linux versions have different binary reps blechhhh!
  81. };
  82. //=======================================================================
  83. //
  84. //                   HXPthreadSemaphore
  85. //                   ------------------
  86. //
  87. //=======================================================================
  88. class HXPthreadSemaphore : public HXUnixSemaphore
  89. {
  90.   public:
  91.     //Ctors and dtors.
  92.     HXPthreadSemaphore(UINT32 unInitialCount=0);
  93.     virtual ~HXPthreadSemaphore();
  94.         
  95. protected:
  96.     virtual HX_RESULT _Post();
  97.     virtual HX_RESULT _Wait();
  98.     virtual HX_RESULT _TryWait();
  99.     virtual HX_RESULT _GetValue(int* pnCount );
  100. private:
  101.     HXsem_t m_semaphore;
  102.     
  103.     //Prevent unintentional ctors
  104.     HXPthreadSemaphore( const HXPthreadSemaphore& ); //copy ctor
  105.     HXPthreadSemaphore& operator=(const HXPthreadSemaphore& ); //assignment operator.
  106. };
  107. #else
  108. //=======================================================================
  109. //
  110. //                   HXPthreadmacSemaphore
  111. //                   ---------------------
  112. //
  113. //=======================================================================
  114. class HXPthreadMacSemaphore : public HXUnixSemaphore
  115. {
  116.   public:
  117.     //Ctors and dtors.
  118.     HXPthreadMacSemaphore(UINT32 unInitialCount=0);
  119.     virtual ~HXPthreadMacSemaphore();
  120.         
  121. protected:
  122.     virtual HX_RESULT _Post();
  123.     virtual HX_RESULT _Wait();
  124.     virtual HX_RESULT _TryWait();
  125.     virtual HX_RESULT _GetValue(int* pnCount );
  126. private:
  127.     sem_t* m_semaphore;
  128.     
  129.     //Prevent unintentional ctors
  130.     HXPthreadMacSemaphore( const HXPthreadMacSemaphore& ); //copy ctor
  131.     HXPthreadMacSemaphore& operator=(const HXPthreadMacSemaphore& ); //assignment operator.
  132. };
  133. #endif
  134. //=======================================================================
  135. //
  136. //                   HXPthreadCondition
  137. //                   ----------------------
  138. //
  139. //=======================================================================
  140. class HXPthreadCondition : public HXUnixCondition
  141. {
  142. public:
  143.     
  144.     HXPthreadCondition(HXUnixMutex*& pMutex);
  145.     virtual ~HXPthreadCondition();
  146. protected:
  147.     
  148.     virtual HX_RESULT _Wait();
  149.     virtual HX_RESULT _TimedWait( UINT32 uTimeoutPeriod = ALLFS);
  150.     virtual HX_RESULT _Broadcast();
  151.     virtual HX_RESULT _Signal();
  152. private:
  153.     HXPthreadMutex* m_pMutex;
  154.     pthread_cond_t   m_cond;
  155.     //Protect unintentional ctors
  156.     HXPthreadCondition( const HXPthreadCondition& ); //copy ctor.
  157.     HXPthreadCondition& operator=(const HXPthreadCondition& ); //assignment oper.
  158. };
  159. //=======================================================================
  160. //
  161. //                    HXPthreadThread    
  162. //                   ------------------
  163. //
  164. //=======================================================================
  165. class HXPthreadThread : public HXUnixThread
  166. {
  167.   public:
  168.     HXPthreadThread();
  169.     virtual ~HXPthreadThread();
  170. protected:
  171.     //
  172.     // Pure virtuals that implement the OS specific chores.
  173.     //
  174.     virtual HX_RESULT _thread_create( ULONG32& ulThreadID, void*(pfExecFunc(void*)), void* pArg );
  175.     virtual ULONG32   _thread_self();
  176.     virtual void      _thread_exit(UINT32 unExitCode);
  177.     virtual void      _thread_cancel(ULONG32 ulThreadID);
  178.     virtual ULONG32   _thread_join(ULONG32 ulThreadID);
  179.     
  180. private:
  181.     //Prevent unintentional ctors
  182.     HXPthreadThread( const HXPthreadThread& ); //copy ctor
  183.     HXPthreadThread& operator=(const HXPthreadThread&); //assignment operator.
  184. };
  185. #endif /*_PTHREADTHREADS */