vhacdMutex.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*!
  2. **
  3. ** Copyright (c) 2009 by John W. Ratcliff mailto:[email protected]
  4. **
  5. ** Portions of this source has been released with the PhysXViewer application, as well as
  6. ** Rocket, CreateDynamics, ODF, and as a number of sample code snippets.
  7. **
  8. ** If you find this code useful or you are feeling particularily generous I would
  9. ** ask that you please go to http://www.amillionpixels.us and make a donation
  10. ** to Troy DeMolay.
  11. **
  12. ** DeMolay is a youth group for young men between the ages of 12 and 21.
  13. ** It teaches strong moral principles, as well as leadership skills and
  14. ** public speaking. The donations page uses the 'pay for pixels' paradigm
  15. ** where, in this case, a pixel is only a single penny. Donations can be
  16. ** made for as small as $4 or as high as a $100 block. Each person who donates
  17. ** will get a link to their own site as well as acknowledgement on the
  18. ** donations blog located here http://www.amillionpixels.blogspot.com/
  19. **
  20. ** If you wish to contact me you can use the following methods:
  21. **
  22. ** Skype ID: jratcliff63367
  23. ** Yahoo: jratcliff63367
  24. ** AOL: jratcliff1961
  25. ** email: [email protected]
  26. **
  27. **
  28. ** The MIT license:
  29. **
  30. ** Permission is hereby granted, free of charge, to any person obtaining a copy
  31. ** of this software and associated documentation files (the "Software"), to deal
  32. ** in the Software without restriction, including without limitation the rights
  33. ** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  34. ** copies of the Software, and to permit persons to whom the Software is furnished
  35. ** to do so, subject to the following conditions:
  36. **
  37. ** The above copyright notice and this permission notice shall be included in all
  38. ** copies or substantial portions of the Software.
  39. ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  40. ** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  41. ** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  42. ** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  43. ** WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  44. ** CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  45. */
  46. #pragma once
  47. #ifndef VHACD_MUTEX_H
  48. #define VHACD_MUTEX_H
  49. #if defined(WIN32)
  50. //#define _WIN32_WINNT 0x400
  51. #include <windows.h>
  52. #pragma comment(lib, "winmm.lib")
  53. #endif
  54. #if defined(__linux__)
  55. //#include <sys/time.h>
  56. #include <errno.h>
  57. #include <time.h>
  58. #include <unistd.h>
  59. #define __stdcall
  60. #endif
  61. #if defined(__APPLE__) || defined(__linux__)
  62. #include <pthread.h>
  63. #endif
  64. #if defined(__APPLE__)
  65. #define PTHREAD_MUTEX_RECURSIVE_NP PTHREAD_MUTEX_RECURSIVE
  66. #endif
  67. #define VHACD_DEBUG
  68. //#define VHACD_NDEBUG
  69. #ifdef VHACD_NDEBUG
  70. #define VHACD_VERIFY(x) (x)
  71. #else
  72. #define VHACD_VERIFY(x) assert((x))
  73. #endif
  74. namespace VHACD {
  75. class Mutex {
  76. public:
  77. Mutex(void)
  78. {
  79. #if defined(WIN32) || defined(_XBOX)
  80. InitializeCriticalSection(&m_mutex);
  81. #elif defined(__APPLE__) || defined(__linux__)
  82. pthread_mutexattr_t mutexAttr; // Mutex Attribute
  83. VHACD_VERIFY(pthread_mutexattr_init(&mutexAttr) == 0);
  84. VHACD_VERIFY(pthread_mutexattr_settype(&mutexAttr, PTHREAD_MUTEX_RECURSIVE_NP) == 0);
  85. VHACD_VERIFY(pthread_mutex_init(&m_mutex, &mutexAttr) == 0);
  86. VHACD_VERIFY(pthread_mutexattr_destroy(&mutexAttr) == 0);
  87. #endif
  88. }
  89. ~Mutex(void)
  90. {
  91. #if defined(WIN32) || defined(_XBOX)
  92. DeleteCriticalSection(&m_mutex);
  93. #elif defined(__APPLE__) || defined(__linux__)
  94. VHACD_VERIFY(pthread_mutex_destroy(&m_mutex) == 0);
  95. #endif
  96. }
  97. void Lock(void)
  98. {
  99. #if defined(WIN32) || defined(_XBOX)
  100. EnterCriticalSection(&m_mutex);
  101. #elif defined(__APPLE__) || defined(__linux__)
  102. VHACD_VERIFY(pthread_mutex_lock(&m_mutex) == 0);
  103. #endif
  104. }
  105. bool TryLock(void)
  106. {
  107. #if defined(WIN32) || defined(_XBOX)
  108. bool bRet = false;
  109. //assert(("TryEnterCriticalSection seems to not work on XP???", 0));
  110. bRet = TryEnterCriticalSection(&m_mutex) ? true : false;
  111. return bRet;
  112. #elif defined(__APPLE__) || defined(__linux__)
  113. int result = pthread_mutex_trylock(&m_mutex);
  114. return (result == 0);
  115. #endif
  116. }
  117. void Unlock(void)
  118. {
  119. #if defined(WIN32) || defined(_XBOX)
  120. LeaveCriticalSection(&m_mutex);
  121. #elif defined(__APPLE__) || defined(__linux__)
  122. VHACD_VERIFY(pthread_mutex_unlock(&m_mutex) == 0);
  123. #endif
  124. }
  125. private:
  126. #if defined(WIN32) || defined(_XBOX)
  127. CRITICAL_SECTION m_mutex;
  128. #elif defined(__APPLE__) || defined(__linux__)
  129. pthread_mutex_t m_mutex;
  130. #endif
  131. };
  132. }
  133. #endif // VHACD_MUTEX_H