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.

289 lines
6.6KB

  1. /*
  2. * Carla Thread
  3. * Copyright (C) 2013-2016 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_THREAD_HPP_INCLUDED
  18. #define CARLA_THREAD_HPP_INCLUDED
  19. #include "CarlaMutex.hpp"
  20. #include "CarlaString.hpp"
  21. #ifdef CARLA_OS_LINUX
  22. # include <sys/prctl.h>
  23. #endif
  24. // -----------------------------------------------------------------------
  25. // CarlaThread class
  26. class CarlaThread
  27. {
  28. protected:
  29. /*
  30. * Constructor.
  31. */
  32. CarlaThread(const char* const threadName = nullptr) noexcept
  33. : fLock(),
  34. fSignal(fLock),
  35. fName(threadName),
  36. #ifdef PTW32_DLLPORT
  37. fHandle({nullptr, 0}),
  38. #else
  39. fHandle(0),
  40. #endif
  41. fShouldExit(false) {}
  42. /*
  43. * Destructor.
  44. */
  45. virtual ~CarlaThread() /*noexcept*/
  46. {
  47. CARLA_SAFE_ASSERT(! isThreadRunning());
  48. stopThread(-1);
  49. }
  50. /*
  51. * Virtual function to be implemented by the subclass.
  52. */
  53. virtual void run() = 0;
  54. // -------------------------------------------------------------------
  55. public:
  56. /*
  57. * Check if the thread is running.
  58. */
  59. bool isThreadRunning() const noexcept
  60. {
  61. #ifdef PTW32_DLLPORT
  62. return (fHandle.p != nullptr);
  63. #else
  64. return (fHandle != 0);
  65. #endif
  66. }
  67. /*
  68. * Check if the thread should exit.
  69. */
  70. bool shouldThreadExit() const noexcept
  71. {
  72. return fShouldExit;
  73. }
  74. /*
  75. * Start the thread.
  76. */
  77. bool startThread() noexcept
  78. {
  79. // check if already running
  80. CARLA_SAFE_ASSERT_RETURN(! isThreadRunning(), true);
  81. fLock.lock();
  82. fShouldExit = false;
  83. pthread_t handle;
  84. if (pthread_create(&handle, nullptr, _entryPoint, this) == 0)
  85. {
  86. #ifdef PTW32_DLLPORT
  87. CARLA_SAFE_ASSERT_RETURN(handle.p != nullptr, false);
  88. #else
  89. CARLA_SAFE_ASSERT_RETURN(handle != 0, false);
  90. #endif
  91. pthread_detach(handle);
  92. _copyFrom(handle);
  93. // wait for thread to start
  94. fSignal.wait();
  95. return true;
  96. }
  97. fLock.unlock();
  98. return false;
  99. }
  100. /*
  101. * Stop the thread.
  102. * In the 'timeOutMilliseconds':
  103. * = 0 -> no wait
  104. * > 0 -> wait timeout value
  105. * < 0 -> wait forever
  106. */
  107. bool stopThread(const int timeOutMilliseconds) noexcept
  108. {
  109. const CarlaMutexLocker cml(fLock);
  110. if (isThreadRunning())
  111. {
  112. signalThreadShouldExit();
  113. if (timeOutMilliseconds != 0)
  114. {
  115. // Wait for the thread to stop
  116. int timeOutCheck = (timeOutMilliseconds == 1 || timeOutMilliseconds == -1) ? timeOutMilliseconds : timeOutMilliseconds/2;
  117. for (; isThreadRunning();)
  118. {
  119. carla_msleep(2);
  120. if (timeOutCheck < 0)
  121. continue;
  122. if (timeOutCheck > 0)
  123. timeOutCheck -= 1;
  124. else
  125. break;
  126. }
  127. }
  128. if (isThreadRunning())
  129. {
  130. // should never happen!
  131. carla_stderr2("Carla assertion failure: \"! isThreadRunning()\" in file %s, line %i", __FILE__, __LINE__);
  132. // copy thread id so we can clear our one
  133. pthread_t threadId;
  134. _copyTo(threadId);
  135. _init();
  136. try {
  137. pthread_cancel(threadId);
  138. } CARLA_SAFE_EXCEPTION("pthread_cancel");
  139. return false;
  140. }
  141. }
  142. return true;
  143. }
  144. /*
  145. * Tell the thread to stop as soon as possible.
  146. */
  147. void signalThreadShouldExit() noexcept
  148. {
  149. fShouldExit = true;
  150. }
  151. // -------------------------------------------------------------------
  152. /*
  153. * Returns the name of the thread.
  154. * This is the name that gets set in the constructor.
  155. */
  156. const CarlaString& getThreadName() const noexcept
  157. {
  158. return fName;
  159. }
  160. /*
  161. * Changes the name of the caller thread.
  162. */
  163. static void setCurrentThreadName(const char* const name) noexcept
  164. {
  165. CARLA_SAFE_ASSERT_RETURN(name != nullptr && name[0] != '\0',);
  166. #ifdef CARLA_OS_LINUX
  167. prctl(PR_SET_NAME, name, 0, 0, 0);
  168. #endif
  169. #if defined(__GLIBC__) && (__GLIBC__ * 1000 + __GLIBC_MINOR__) >= 2012
  170. pthread_setname_np(pthread_self(), name);
  171. #endif
  172. }
  173. // -------------------------------------------------------------------
  174. private:
  175. CarlaMutex fLock; // Thread lock
  176. CarlaSignal fSignal; // Thread start wait signal
  177. const CarlaString fName; // Thread name
  178. volatile pthread_t fHandle; // Handle for this thread
  179. volatile bool fShouldExit; // true if thread should exit
  180. /*
  181. * Init pthread type.
  182. */
  183. void _init() noexcept
  184. {
  185. #ifdef PTW32_DLLPORT
  186. fHandle.p = nullptr;
  187. fHandle.x = 0;
  188. #else
  189. fHandle = 0;
  190. #endif
  191. }
  192. /*
  193. * Copy our pthread type from another var.
  194. */
  195. void _copyFrom(const pthread_t& handle) noexcept
  196. {
  197. #ifdef PTW32_DLLPORT
  198. fHandle.p = handle.p;
  199. fHandle.x = handle.x;
  200. #else
  201. fHandle = handle;
  202. #endif
  203. }
  204. /*
  205. * Copy our pthread type to another var.
  206. */
  207. void _copyTo(volatile pthread_t& handle) const noexcept
  208. {
  209. #ifdef PTW32_DLLPORT
  210. handle.p = fHandle.p;
  211. handle.x = fHandle.x;
  212. #else
  213. handle = fHandle;
  214. #endif
  215. }
  216. /*
  217. * Thread entry point.
  218. */
  219. void _runEntryPoint() noexcept
  220. {
  221. setCurrentThreadName(fName);
  222. // report ready
  223. fSignal.broadcast();
  224. try {
  225. run();
  226. } catch(...) {}
  227. // done
  228. _init();
  229. }
  230. /*
  231. * Thread entry point.
  232. */
  233. static void* _entryPoint(void* userData) noexcept
  234. {
  235. static_cast<CarlaThread*>(userData)->_runEntryPoint();
  236. return nullptr;
  237. }
  238. CARLA_DECLARE_NON_COPY_CLASS(CarlaThread)
  239. };
  240. // -----------------------------------------------------------------------
  241. #endif // CARLA_THREAD_HPP_INCLUDED