DISTRHO Plugin Framework
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.

293 lines
6.8KB

  1. /*
  2. * DISTRHO Plugin Framework (DPF)
  3. * Copyright (C) 2012-2016 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any purpose with
  6. * or without fee is hereby granted, provided that the above copyright notice and this
  7. * permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
  10. * TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
  11. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  12. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  13. * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  14. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #ifndef DISTRHO_THREAD_HPP_INCLUDED
  17. #define DISTRHO_THREAD_HPP_INCLUDED
  18. #include "Mutex.hpp"
  19. #include "Sleep.hpp"
  20. #include "String.hpp"
  21. #ifdef DISTRHO_OS_LINUX
  22. # include <sys/prctl.h>
  23. #endif
  24. START_NAMESPACE_DISTRHO
  25. // -----------------------------------------------------------------------
  26. // Thread class
  27. class Thread
  28. {
  29. protected:
  30. /*
  31. * Constructor.
  32. */
  33. Thread(const char* const threadName = nullptr) noexcept
  34. : fLock(),
  35. fSignal(fLock),
  36. fName(threadName),
  37. #ifdef PTW32_DLLPORT
  38. fHandle({nullptr, 0}),
  39. #else
  40. fHandle(0),
  41. #endif
  42. fShouldExit(false) {}
  43. /*
  44. * Destructor.
  45. */
  46. virtual ~Thread() /*noexcept*/
  47. {
  48. DISTRHO_SAFE_ASSERT(! isThreadRunning());
  49. stopThread(-1);
  50. }
  51. /*
  52. * Virtual function to be implemented by the subclass.
  53. */
  54. virtual void run() = 0;
  55. // -------------------------------------------------------------------
  56. public:
  57. /*
  58. * Check if the thread is running.
  59. */
  60. bool isThreadRunning() const noexcept
  61. {
  62. #ifdef PTW32_DLLPORT
  63. return (fHandle.p != nullptr);
  64. #else
  65. return (fHandle != 0);
  66. #endif
  67. }
  68. /*
  69. * Check if the thread should exit.
  70. */
  71. bool shouldThreadExit() const noexcept
  72. {
  73. return fShouldExit;
  74. }
  75. /*
  76. * Start the thread.
  77. */
  78. bool startThread() noexcept
  79. {
  80. // check if already running
  81. DISTRHO_SAFE_ASSERT_RETURN(! isThreadRunning(), true);
  82. fLock.lock();
  83. fShouldExit = false;
  84. pthread_t handle;
  85. if (pthread_create(&handle, nullptr, _entryPoint, this) == 0)
  86. {
  87. #ifdef PTW32_DLLPORT
  88. DISTRHO_SAFE_ASSERT_RETURN(handle.p != nullptr, false);
  89. #else
  90. DISTRHO_SAFE_ASSERT_RETURN(handle != 0, false);
  91. #endif
  92. pthread_detach(handle);
  93. _copyFrom(handle);
  94. // wait for thread to start
  95. fSignal.wait();
  96. return true;
  97. }
  98. fLock.unlock();
  99. return false;
  100. }
  101. /*
  102. * Stop the thread.
  103. * In the 'timeOutMilliseconds':
  104. * = 0 -> no wait
  105. * > 0 -> wait timeout value
  106. * < 0 -> wait forever
  107. */
  108. bool stopThread(const int timeOutMilliseconds) noexcept
  109. {
  110. const MutexLocker cml(fLock);
  111. if (isThreadRunning())
  112. {
  113. signalThreadShouldExit();
  114. if (timeOutMilliseconds != 0)
  115. {
  116. // Wait for the thread to stop
  117. int timeOutCheck = (timeOutMilliseconds == 1 || timeOutMilliseconds == -1) ? timeOutMilliseconds : timeOutMilliseconds/2;
  118. for (; isThreadRunning();)
  119. {
  120. d_msleep(2);
  121. if (timeOutCheck < 0)
  122. continue;
  123. if (timeOutCheck > 0)
  124. timeOutCheck -= 1;
  125. else
  126. break;
  127. }
  128. }
  129. if (isThreadRunning())
  130. {
  131. // should never happen!
  132. d_stderr2("assertion failure: \"! isThreadRunning()\" in file %s, line %i", __FILE__, __LINE__);
  133. // copy thread id so we can clear our one
  134. pthread_t threadId;
  135. _copyTo(threadId);
  136. _init();
  137. try {
  138. pthread_cancel(threadId);
  139. } DISTRHO_SAFE_EXCEPTION("pthread_cancel");
  140. return false;
  141. }
  142. }
  143. return true;
  144. }
  145. /*
  146. * Tell the thread to stop as soon as possible.
  147. */
  148. void signalThreadShouldExit() noexcept
  149. {
  150. fShouldExit = true;
  151. }
  152. // -------------------------------------------------------------------
  153. /*
  154. * Returns the name of the thread.
  155. * This is the name that gets set in the constructor.
  156. */
  157. const String& getThreadName() const noexcept
  158. {
  159. return fName;
  160. }
  161. /*
  162. * Changes the name of the caller thread.
  163. */
  164. static void setCurrentThreadName(const char* const name) noexcept
  165. {
  166. DISTRHO_SAFE_ASSERT_RETURN(name != nullptr && name[0] != '\0',);
  167. #ifdef DISTRHO_OS_LINUX
  168. prctl(PR_SET_NAME, name, 0, 0, 0);
  169. #endif
  170. #if defined(__GLIBC__) && (__GLIBC__ * 1000 + __GLIBC_MINOR__) >= 2012
  171. pthread_setname_np(pthread_self(), name);
  172. #endif
  173. }
  174. // -------------------------------------------------------------------
  175. private:
  176. Mutex fLock; // Thread lock
  177. Signal fSignal; // Thread start wait signal
  178. const String fName; // Thread name
  179. volatile pthread_t fHandle; // Handle for this thread
  180. volatile bool fShouldExit; // true if thread should exit
  181. /*
  182. * Init pthread type.
  183. */
  184. void _init() noexcept
  185. {
  186. #ifdef PTW32_DLLPORT
  187. fHandle.p = nullptr;
  188. fHandle.x = 0;
  189. #else
  190. fHandle = 0;
  191. #endif
  192. }
  193. /*
  194. * Copy our pthread type from another var.
  195. */
  196. void _copyFrom(const pthread_t& handle) noexcept
  197. {
  198. #ifdef PTW32_DLLPORT
  199. fHandle.p = handle.p;
  200. fHandle.x = handle.x;
  201. #else
  202. fHandle = handle;
  203. #endif
  204. }
  205. /*
  206. * Copy our pthread type to another var.
  207. */
  208. void _copyTo(volatile pthread_t& handle) const noexcept
  209. {
  210. #ifdef PTW32_DLLPORT
  211. handle.p = fHandle.p;
  212. handle.x = fHandle.x;
  213. #else
  214. handle = fHandle;
  215. #endif
  216. }
  217. /*
  218. * Thread entry point.
  219. */
  220. void _runEntryPoint() noexcept
  221. {
  222. setCurrentThreadName(fName);
  223. // report ready
  224. fSignal.broadcast();
  225. try {
  226. run();
  227. } catch(...) {}
  228. // done
  229. _init();
  230. }
  231. /*
  232. * Thread entry point.
  233. */
  234. static void* _entryPoint(void* userData) noexcept
  235. {
  236. static_cast<Thread*>(userData)->_runEntryPoint();
  237. return nullptr;
  238. }
  239. DISTRHO_DECLARE_NON_COPY_CLASS(Thread)
  240. };
  241. // -----------------------------------------------------------------------
  242. END_NAMESPACE_DISTRHO
  243. #endif // DISTRHO_THREAD_HPP_INCLUDED