Merge pull request #23 from jackaudio/device_reservation_fixes
[jack2.git] / posix / JackPosixThread.cpp
blobe11358cb76eae6300d807de16e8010dc2e83c211
1 /*
2 Copyright (C) 2001 Paul Davis
3 Copyright (C) 2004-2008 Grame
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #include "JackPosixThread.h"
22 #include "JackError.h"
23 #include "JackTime.h"
24 #include "JackGlobals.h"
25 #include <string.h> // for memset
26 #include <unistd.h> // for _POSIX_PRIORITY_SCHEDULING check
28 //#define JACK_SCHED_POLICY SCHED_RR
29 #define JACK_SCHED_POLICY SCHED_FIFO
31 namespace Jack
34 void* JackPosixThread::ThreadHandler(void* arg)
36 JackPosixThread* obj = (JackPosixThread*)arg;
37 JackRunnableInterface* runnable = obj->fRunnable;
38 int err;
40 if ((err = pthread_setcanceltype(obj->fCancellation, NULL)) != 0) {
41 jack_error("pthread_setcanceltype err = %s", strerror(err));
44 // Signal creation thread when started with StartSync
45 jack_log("JackPosixThread::ThreadHandler : start");
46 obj->fStatus = kIniting;
48 // Call Init method
49 if (!runnable->Init()) {
50 jack_error("Thread init fails: thread quits");
51 return 0;
54 obj->fStatus = kRunning;
56 // If Init succeed, start the thread loop
57 bool res = true;
58 while (obj->fStatus == kRunning && res) {
59 res = runnable->Execute();
62 jack_log("JackPosixThread::ThreadHandler : exit");
63 pthread_exit(0);
64 return 0; // never reached
67 int JackPosixThread::Start()
69 fStatus = kStarting;
71 // Check if the thread was correctly started
72 if (StartImp(&fThread, fPriority, fRealTime, ThreadHandler, this) < 0) {
73 fStatus = kIdle;
74 return -1;
75 } else {
76 return 0;
80 int JackPosixThread::StartSync()
82 fStatus = kStarting;
84 if (StartImp(&fThread, fPriority, fRealTime, ThreadHandler, this) < 0) {
85 fStatus = kIdle;
86 return -1;
87 } else {
88 int count = 0;
89 while (fStatus == kStarting && ++count < 1000) {
90 JackSleep(1000);
92 return (count == 1000) ? -1 : 0;
96 int JackPosixThread::StartImp(jack_native_thread_t* thread, int priority, int realtime, void*(*start_routine)(void*), void* arg)
98 pthread_attr_t attributes;
99 struct sched_param rt_param;
100 pthread_attr_init(&attributes);
101 int res;
103 if ((res = pthread_attr_setdetachstate(&attributes, PTHREAD_CREATE_JOINABLE))) {
104 jack_error("Cannot request joinable thread creation for thread res = %d", res);
105 return -1;
108 if ((res = pthread_attr_setscope(&attributes, PTHREAD_SCOPE_SYSTEM))) {
109 jack_error("Cannot set scheduling scope for thread res = %d", res);
110 return -1;
113 if (realtime) {
115 jack_log("JackPosixThread::StartImp : create RT thread");
117 if ((res = pthread_attr_setinheritsched(&attributes, PTHREAD_EXPLICIT_SCHED))) {
118 jack_error("Cannot request explicit scheduling for RT thread res = %d", res);
119 return -1;
122 if ((res = pthread_attr_setschedpolicy(&attributes, JACK_SCHED_POLICY))) {
123 jack_error("Cannot set RR scheduling class for RT thread res = %d", res);
124 return -1;
127 memset(&rt_param, 0, sizeof(rt_param));
128 rt_param.sched_priority = priority;
130 if ((res = pthread_attr_setschedparam(&attributes, &rt_param))) {
131 jack_error("Cannot set scheduling priority for RT thread res = %d", res);
132 return -1;
135 } else {
136 jack_log("JackPosixThread::StartImp : create non RT thread");
139 if ((res = pthread_attr_setstacksize(&attributes, THREAD_STACK))) {
140 jack_error("Cannot set thread stack size res = %d", res);
141 return -1;
144 if ((res = JackGlobals::fJackThreadCreator(thread, &attributes, start_routine, arg))) {
145 jack_error("Cannot create thread res = %d", res);
146 return -1;
149 pthread_attr_destroy(&attributes);
150 return 0;
153 int JackPosixThread::Kill()
155 if (fThread != (jack_native_thread_t)NULL) { // If thread has been started
156 jack_log("JackPosixThread::Kill");
157 void* status;
158 pthread_cancel(fThread);
159 pthread_join(fThread, &status);
160 fStatus = kIdle;
161 fThread = (jack_native_thread_t)NULL;
162 return 0;
163 } else {
164 return -1;
168 int JackPosixThread::Stop()
170 if (fThread != (jack_native_thread_t)NULL) { // If thread has been started
171 jack_log("JackPosixThread::Stop");
172 void* status;
173 fStatus = kIdle; // Request for the thread to stop
174 pthread_join(fThread, &status);
175 fThread = (jack_native_thread_t)NULL;
176 return 0;
177 } else {
178 return -1;
182 int JackPosixThread::KillImp(jack_native_thread_t thread)
184 if (thread != (jack_native_thread_t)NULL) { // If thread has been started
185 jack_log("JackPosixThread::Kill");
186 void* status;
187 pthread_cancel(thread);
188 pthread_join(thread, &status);
189 return 0;
190 } else {
191 return -1;
195 int JackPosixThread::StopImp(jack_native_thread_t thread)
197 if (thread != (jack_native_thread_t)NULL) { // If thread has been started
198 jack_log("JackPosixThread::Stop");
199 void* status;
200 pthread_join(thread, &status);
201 return 0;
202 } else {
203 return -1;
207 int JackPosixThread::AcquireRealTime()
209 return (fThread != (jack_native_thread_t)NULL) ? AcquireRealTimeImp(fThread, fPriority) : -1;
212 int JackPosixThread::AcquireSelfRealTime()
214 return AcquireRealTimeImp(pthread_self(), fPriority);
217 int JackPosixThread::AcquireRealTime(int priority)
219 fPriority = priority;
220 return AcquireRealTime();
223 int JackPosixThread::AcquireSelfRealTime(int priority)
225 fPriority = priority;
226 return AcquireSelfRealTime();
228 int JackPosixThread::AcquireRealTimeImp(jack_native_thread_t thread, int priority)
230 struct sched_param rtparam;
231 int res;
232 memset(&rtparam, 0, sizeof(rtparam));
233 rtparam.sched_priority = priority;
235 jack_log("JackPosixThread::AcquireRealTimeImp priority = %d", priority);
237 if ((res = pthread_setschedparam(thread, JACK_SCHED_POLICY, &rtparam)) != 0) {
238 jack_error("Cannot use real-time scheduling (RR/%d)"
239 "(%d: %s)", rtparam.sched_priority, res,
240 strerror(res));
241 return -1;
243 return 0;
246 int JackPosixThread::DropRealTime()
248 return (fThread != (jack_native_thread_t)NULL) ? DropRealTimeImp(fThread) : -1;
251 int JackPosixThread::DropSelfRealTime()
253 return DropRealTimeImp(pthread_self());
256 int JackPosixThread::DropRealTimeImp(jack_native_thread_t thread)
258 struct sched_param rtparam;
259 int res;
260 memset(&rtparam, 0, sizeof(rtparam));
261 rtparam.sched_priority = 0;
263 if ((res = pthread_setschedparam(thread, SCHED_OTHER, &rtparam)) != 0) {
264 jack_error("Cannot switch to normal scheduling priority(%s)", strerror(errno));
265 return -1;
267 return 0;
270 jack_native_thread_t JackPosixThread::GetThreadID()
272 return fThread;
275 bool JackPosixThread::IsThread()
277 return pthread_self() == fThread;
280 void JackPosixThread::Terminate()
282 jack_log("JackPosixThread::Terminate");
283 pthread_exit(0);
286 SERVER_EXPORT void ThreadExit()
288 jack_log("ThreadExit");
289 pthread_exit(0);
292 } // end of namespace
294 bool jack_get_thread_realtime_priority_range(int * min_ptr, int * max_ptr)
296 #if defined(_POSIX_PRIORITY_SCHEDULING) && !defined(__APPLE__)
297 int min, max;
299 min = sched_get_priority_min(JACK_SCHED_POLICY);
300 if (min == -1)
302 jack_error("sched_get_priority_min() failed.");
303 return false;
306 max = sched_get_priority_max(JACK_SCHED_POLICY);
307 if (max == -1)
309 jack_error("sched_get_priority_max() failed.");
310 return false;
313 *min_ptr = min;
314 *max_ptr = max;
316 return true;
317 #else
318 return false;
319 #endif
322 bool jack_tls_allocate_key(jack_tls_key *key_ptr)
324 int ret;
326 ret = pthread_key_create(key_ptr, NULL);
327 if (ret != 0)
329 jack_error("pthread_key_create() failed with error %d", ret);
330 return false;
333 return true;
336 bool jack_tls_free_key(jack_tls_key key)
338 int ret;
340 ret = pthread_key_delete(key);
341 if (ret != 0)
343 jack_error("pthread_key_delete() failed with error %d", ret);
344 return false;
347 return true;
350 bool jack_tls_set(jack_tls_key key, void *data_ptr)
352 int ret;
354 ret = pthread_setspecific(key, (const void *)data_ptr);
355 if (ret != 0)
357 jack_error("pthread_setspecific() failed with error %d", ret);
358 return false;
361 return true;
364 void *jack_tls_get(jack_tls_key key)
366 return pthread_getspecific(key);