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.

288 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(),
  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. const CarlaMutexLocker cml(fLock);
  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. return false;
  98. }
  99. /*
  100. * Stop the thread.
  101. * In the 'timeOutMilliseconds':
  102. * = 0 -> no wait
  103. * > 0 -> wait timeout value
  104. * < 0 -> wait forever
  105. */
  106. bool stopThread(const int timeOutMilliseconds) noexcept
  107. {
  108. const CarlaMutexLocker cml(fLock);
  109. if (isThreadRunning())
  110. {
  111. signalThreadShouldExit();
  112. if (timeOutMilliseconds != 0)
  113. {
  114. // Wait for the thread to stop
  115. int timeOutCheck = (timeOutMilliseconds == 1 || timeOutMilliseconds == -1) ? timeOutMilliseconds : timeOutMilliseconds/2;
  116. for (; isThreadRunning();)
  117. {
  118. carla_msleep(2);
  119. if (timeOutCheck < 0)
  120. continue;
  121. if (timeOutCheck > 0)
  122. timeOutCheck -= 1;
  123. else
  124. break;
  125. }
  126. }
  127. if (isThreadRunning())
  128. {
  129. // should never happen!
  130. carla_stderr2("Carla assertion failure: \"! isThreadRunning()\" in file %s, line %i", __FILE__, __LINE__);
  131. // copy thread id so we can clear our one
  132. pthread_t threadId;
  133. _copyTo(threadId);
  134. _init();
  135. try {
  136. pthread_cancel(threadId);
  137. } CARLA_SAFE_EXCEPTION("pthread_cancel");
  138. return false;
  139. }
  140. }
  141. return true;
  142. }
  143. /*
  144. * Tell the thread to stop as soon as possible.
  145. */
  146. void signalThreadShouldExit() noexcept
  147. {
  148. fShouldExit = true;
  149. }
  150. // -------------------------------------------------------------------
  151. /*
  152. * Returns the name of the thread.
  153. * This is the name that gets set in the constructor.
  154. */
  155. const CarlaString& getThreadName() const noexcept
  156. {
  157. return fName;
  158. }
  159. /*
  160. * Changes the name of the caller thread.
  161. */
  162. static void setCurrentThreadName(const char* const name) noexcept
  163. {
  164. CARLA_SAFE_ASSERT_RETURN(name != nullptr && name[0] != '\0',);
  165. #ifdef CARLA_OS_LINUX
  166. prctl(PR_SET_NAME, name, 0, 0, 0);
  167. #endif
  168. #if defined(__GLIBC__) && (__GLIBC__ * 1000 + __GLIBC_MINOR__) >= 2012
  169. pthread_setname_np(pthread_self(), name);
  170. #endif
  171. }
  172. // -------------------------------------------------------------------
  173. private:
  174. CarlaMutex fLock; // Thread lock
  175. CarlaSignal fSignal; // Thread start wait signal
  176. const CarlaString fName; // Thread name
  177. volatile pthread_t fHandle; // Handle for this thread
  178. volatile bool fShouldExit; // true if thread should exit
  179. /*
  180. * Init pthread type.
  181. */
  182. void _init() noexcept
  183. {
  184. #ifdef PTW32_DLLPORT
  185. fHandle.p = nullptr;
  186. fHandle.x = 0;
  187. #else
  188. fHandle = 0;
  189. #endif
  190. }
  191. /*
  192. * Copy our pthread type from another var.
  193. */
  194. void _copyFrom(const pthread_t& handle) noexcept
  195. {
  196. #ifdef PTW32_DLLPORT
  197. fHandle.p = handle.p;
  198. fHandle.x = handle.x;
  199. #else
  200. fHandle = handle;
  201. #endif
  202. }
  203. /*
  204. * Copy our pthread type to another var.
  205. */
  206. void _copyTo(volatile pthread_t& handle) const noexcept
  207. {
  208. #ifdef PTW32_DLLPORT
  209. handle.p = fHandle.p;
  210. handle.x = fHandle.x;
  211. #else
  212. handle = fHandle;
  213. #endif
  214. }
  215. /*
  216. * Thread entry point.
  217. */
  218. void _runEntryPoint() noexcept
  219. {
  220. setCurrentThreadName(fName);
  221. // report ready
  222. fSignal.signal();
  223. try {
  224. run();
  225. } catch(...) {}
  226. // done
  227. _init();
  228. }
  229. /*
  230. * Thread entry point.
  231. */
  232. static void* _entryPoint(void* userData) noexcept
  233. {
  234. static_cast<CarlaThread*>(userData)->_runEntryPoint();
  235. return nullptr;
  236. }
  237. CARLA_DECLARE_NON_COPY_CLASS(CarlaThread)
  238. };
  239. // -----------------------------------------------------------------------
  240. #endif // CARLA_THREAD_HPP_INCLUDED