Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CarlaMutex.hpp 6.1KB

11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*
  2. * Carla Mutex
  3. * Copyright (C) 2013-2014 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #ifndef CARLA_MUTEX_HPP_INCLUDED
  18. #define CARLA_MUTEX_HPP_INCLUDED
  19. #include "CarlaUtils.hpp"
  20. #include <pthread.h>
  21. // -----------------------------------------------------------------------
  22. // CarlaMutex class
  23. class CarlaMutex
  24. {
  25. public:
  26. /*
  27. * Constructor.
  28. */
  29. CarlaMutex() noexcept
  30. : fMutex(),
  31. fTryLockWasCalled(false)
  32. {
  33. pthread_mutex_init(&fMutex, nullptr);
  34. }
  35. /*
  36. * Destructor.
  37. */
  38. ~CarlaMutex() noexcept
  39. {
  40. pthread_mutex_destroy(&fMutex);
  41. }
  42. /*
  43. * Check if "tryLock()" was called before.
  44. */
  45. bool wasTryLockCalled() const noexcept
  46. {
  47. const bool ret(fTryLockWasCalled);
  48. fTryLockWasCalled = false;
  49. return ret;
  50. }
  51. /*
  52. * Lock the mutex.
  53. */
  54. void lock() const noexcept
  55. {
  56. pthread_mutex_lock(&fMutex);
  57. }
  58. /*
  59. * Try to lock the mutex.
  60. * Returns true if successful.
  61. */
  62. bool tryLock() const noexcept
  63. {
  64. fTryLockWasCalled = true;
  65. return (pthread_mutex_trylock(&fMutex) == 0);
  66. }
  67. /*
  68. * Unlock the mutex, optionally resetting the tryLock check.
  69. */
  70. void unlock(const bool resetTryLock = false) const noexcept
  71. {
  72. if (resetTryLock)
  73. fTryLockWasCalled = false;
  74. pthread_mutex_unlock(&fMutex);
  75. }
  76. private:
  77. mutable pthread_mutex_t fMutex; // The mutex
  78. mutable volatile bool fTryLockWasCalled; // true if "tryLock()" was called at least once
  79. CARLA_PREVENT_HEAP_ALLOCATION
  80. CARLA_DECLARE_NON_COPY_CLASS(CarlaMutex)
  81. };
  82. // -----------------------------------------------------------------------
  83. // CarlaRecursiveMutex class
  84. class CarlaRecursiveMutex
  85. {
  86. public:
  87. /*
  88. * Constructor.
  89. */
  90. CarlaRecursiveMutex() noexcept
  91. #ifdef CARLA_OS_WIN
  92. : fSection()
  93. #else
  94. : fMutex()
  95. #endif
  96. {
  97. #ifdef CARLA_OS_WIN
  98. InitializeCriticalSection(&fSection);
  99. #else
  100. pthread_mutexattr_t atts;
  101. pthread_mutexattr_init(&atts);
  102. pthread_mutexattr_settype(&atts, PTHREAD_MUTEX_RECURSIVE);
  103. pthread_mutex_init(&fMutex, &atts);
  104. pthread_mutexattr_destroy(&atts);
  105. #endif
  106. }
  107. /*
  108. * Destructor.
  109. */
  110. ~CarlaRecursiveMutex() noexcept
  111. {
  112. #ifdef CARLA_OS_WIN
  113. DeleteCriticalSection(&fSection);
  114. #else
  115. pthread_mutex_destroy(&fMutex);
  116. #endif
  117. }
  118. /*
  119. * Lock the mutex.
  120. */
  121. void lock() const noexcept
  122. {
  123. #ifdef CARLA_OS_WIN
  124. EnterCriticalSection(&fSection);
  125. #else
  126. pthread_mutex_lock(&fMutex);
  127. #endif
  128. }
  129. /*
  130. * Try to lock the mutex.
  131. * Returns true if successful.
  132. */
  133. bool tryLock() const noexcept
  134. {
  135. #ifdef CARLA_OS_WIN
  136. return (TryEnterCriticalSection(&fSection) != FALSE);
  137. #else
  138. return (pthread_mutex_trylock(&fMutex) == 0);
  139. #endif
  140. }
  141. /*
  142. * Unlock the mutex.
  143. */
  144. void unlock() const noexcept
  145. {
  146. #ifdef CARLA_OS_WIN
  147. LeaveCriticalSection(&fSection);
  148. #else
  149. pthread_mutex_unlock(&fMutex);
  150. #endif
  151. }
  152. private:
  153. #ifdef CARLA_OS_WIN
  154. mutable CRITICAL_SECTION fSection;
  155. #else
  156. mutable pthread_mutex_t fMutex;
  157. #endif
  158. CARLA_PREVENT_HEAP_ALLOCATION
  159. CARLA_DECLARE_NON_COPY_CLASS(CarlaRecursiveMutex)
  160. };
  161. // -----------------------------------------------------------------------
  162. // Helper class to lock&unlock a mutex during a function scope.
  163. template <class Mutex>
  164. class CarlaScopeLocker
  165. {
  166. public:
  167. CarlaScopeLocker(const Mutex& mutex) noexcept
  168. : fMutex(mutex)
  169. {
  170. fMutex.lock();
  171. }
  172. ~CarlaScopeLocker() noexcept
  173. {
  174. fMutex.unlock();
  175. }
  176. private:
  177. const Mutex& fMutex;
  178. CARLA_PREVENT_HEAP_ALLOCATION
  179. CARLA_DECLARE_NON_COPY_CLASS(CarlaScopeLocker)
  180. };
  181. // -----------------------------------------------------------------------
  182. // Helper class to try-lock&unlock a mutex during a function scope.
  183. template <class Mutex>
  184. class CarlaScopeTryLocker
  185. {
  186. public:
  187. CarlaScopeTryLocker(const Mutex& mutex) noexcept
  188. : fMutex(mutex),
  189. fLocked(mutex.tryLock()) {}
  190. ~CarlaScopeTryLocker() noexcept
  191. {
  192. if (fLocked)
  193. fMutex.unlock();
  194. }
  195. bool wasLocked() const noexcept
  196. {
  197. return fLocked;
  198. }
  199. private:
  200. const Mutex& fMutex;
  201. const bool fLocked;
  202. CARLA_PREVENT_HEAP_ALLOCATION
  203. CARLA_DECLARE_NON_COPY_CLASS(CarlaScopeTryLocker)
  204. };
  205. // -----------------------------------------------------------------------
  206. // Helper class to unlock&lock a mutex during a function scope.
  207. template <class Mutex>
  208. class CarlaScopeUnlocker
  209. {
  210. public:
  211. CarlaScopeUnlocker(const Mutex& mutex) noexcept
  212. : fMutex(mutex)
  213. {
  214. fMutex.unlock();
  215. }
  216. ~CarlaScopeUnlocker() noexcept
  217. {
  218. fMutex.lock();
  219. }
  220. private:
  221. const Mutex& fMutex;
  222. CARLA_PREVENT_HEAP_ALLOCATION
  223. CARLA_DECLARE_NON_COPY_CLASS(CarlaScopeUnlocker)
  224. };
  225. // -----------------------------------------------------------------------
  226. // Define types
  227. typedef CarlaScopeLocker<CarlaMutex> CarlaMutexLocker;
  228. typedef CarlaScopeLocker<CarlaRecursiveMutex> CarlaRecursiveMutexLocker;
  229. typedef CarlaScopeTryLocker<CarlaMutex> CarlaMutexTryLocker;
  230. typedef CarlaScopeTryLocker<CarlaRecursiveMutex> CarlaRecursiveMutexTryLocker;
  231. typedef CarlaScopeUnlocker<CarlaMutex> CarlaMutexUnlocker;
  232. typedef CarlaScopeUnlocker<CarlaRecursiveMutex> CarlaRecursiveMutexUnlocker;
  233. // -----------------------------------------------------------------------
  234. #endif // CARLA_MUTEX_HPP_INCLUDED