2 This file is part of PulseAudio.
4 Copyright 2006 Lennart Poettering
5 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
7 PulseAudio is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published
9 by the Free Software Foundation; either version 2.1 of the License,
10 or (at your option) any later version.
12 PulseAudio is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public License
18 along with PulseAudio; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
34 #include <pulse/xmalloc.h>
35 #include <pulse/mainloop.h>
36 #include <pulse/i18n.h>
38 #include <pulsecore/log.h>
39 #include <pulsecore/thread.h>
40 #include <pulsecore/mutex.h>
41 #include <pulsecore/macro.h>
42 #include <pulsecore/poll.h>
44 #include "thread-mainloop.h"
46 struct pa_threaded_mainloop
{
47 pa_mainloop
*real_mainloop
;
48 volatile int n_waiting
, n_waiting_for_accept
;
52 pa_cond
* cond
, *accept_cond
;
55 static inline int in_worker(pa_threaded_mainloop
*m
) {
56 return pa_thread_self() == m
->thread
;
59 static int poll_func(struct pollfd
*ufds
, unsigned long nfds
, int timeout
, void *userdata
) {
60 pa_mutex
*mutex
= userdata
;
65 /* Before entering poll() we unlock the mutex, so that
66 * avahi_simple_poll_quit() can succeed from another thread. */
68 pa_mutex_unlock(mutex
);
69 r
= pa_poll(ufds
, nfds
, timeout
);
75 static void thread(void *userdata
) {
76 pa_threaded_mainloop
*m
= userdata
;
81 /* Make sure that signals are delivered to the main thread */
83 pthread_sigmask(SIG_BLOCK
, &mask
, NULL
);
86 pa_mutex_lock(m
->mutex
);
88 pa_mainloop_run(m
->real_mainloop
, NULL
);
90 pa_mutex_unlock(m
->mutex
);
93 pa_threaded_mainloop
*pa_threaded_mainloop_new(void) {
94 pa_threaded_mainloop
*m
;
98 m
= pa_xnew(pa_threaded_mainloop
, 1);
100 if (!(m
->real_mainloop
= pa_mainloop_new())) {
105 m
->mutex
= pa_mutex_new(TRUE
, TRUE
);
106 m
->cond
= pa_cond_new();
107 m
->accept_cond
= pa_cond_new();
110 pa_mainloop_set_poll_func(m
->real_mainloop
, poll_func
, m
->mutex
);
113 m
->n_waiting_for_accept
= 0;
118 void pa_threaded_mainloop_free(pa_threaded_mainloop
* m
) {
121 /* Make sure that this function is not called from the helper thread */
122 pa_assert((m
->thread
&& !pa_thread_is_running(m
->thread
)) || !in_worker(m
));
124 pa_threaded_mainloop_stop(m
);
127 pa_thread_free(m
->thread
);
129 pa_mainloop_free(m
->real_mainloop
);
131 pa_mutex_free(m
->mutex
);
132 pa_cond_free(m
->cond
);
133 pa_cond_free(m
->accept_cond
);
138 int pa_threaded_mainloop_start(pa_threaded_mainloop
*m
) {
141 pa_assert(!m
->thread
|| !pa_thread_is_running(m
->thread
));
143 if (!(m
->thread
= pa_thread_new("threaded-ml", thread
, m
)))
149 void pa_threaded_mainloop_stop(pa_threaded_mainloop
*m
) {
152 if (!m
->thread
|| !pa_thread_is_running(m
->thread
))
155 /* Make sure that this function is not called from the helper thread */
156 pa_assert(!in_worker(m
));
158 pa_mutex_lock(m
->mutex
);
159 pa_mainloop_quit(m
->real_mainloop
, 0);
160 pa_mutex_unlock(m
->mutex
);
162 pa_thread_join(m
->thread
);
165 void pa_threaded_mainloop_lock(pa_threaded_mainloop
*m
) {
168 /* Make sure that this function is not called from the helper thread */
169 pa_assert(!m
->thread
|| !pa_thread_is_running(m
->thread
) || !in_worker(m
));
171 pa_mutex_lock(m
->mutex
);
174 void pa_threaded_mainloop_unlock(pa_threaded_mainloop
*m
) {
177 /* Make sure that this function is not called from the helper thread */
178 pa_assert(!m
->thread
|| !pa_thread_is_running(m
->thread
) || !in_worker(m
));
180 pa_mutex_unlock(m
->mutex
);
183 /* Called with the lock taken */
184 void pa_threaded_mainloop_signal(pa_threaded_mainloop
*m
, int wait_for_accept
) {
187 pa_cond_signal(m
->cond
, 1);
189 if (wait_for_accept
) {
190 m
->n_waiting_for_accept
++;
192 while (m
->n_waiting_for_accept
> 0)
193 pa_cond_wait(m
->accept_cond
, m
->mutex
);
197 /* Called with the lock taken */
198 void pa_threaded_mainloop_wait(pa_threaded_mainloop
*m
) {
201 /* Make sure that this function is not called from the helper thread */
202 pa_assert(!m
->thread
|| !pa_thread_is_running(m
->thread
) || !in_worker(m
));
206 pa_cond_wait(m
->cond
, m
->mutex
);
208 pa_assert(m
->n_waiting
> 0);
212 /* Called with the lock taken */
213 void pa_threaded_mainloop_accept(pa_threaded_mainloop
*m
) {
216 /* Make sure that this function is not called from the helper thread */
217 pa_assert(!m
->thread
|| !pa_thread_is_running(m
->thread
) || !in_worker(m
));
219 pa_assert(m
->n_waiting_for_accept
> 0);
220 m
->n_waiting_for_accept
--;
222 pa_cond_signal(m
->accept_cond
, 0);
225 int pa_threaded_mainloop_get_retval(pa_threaded_mainloop
*m
) {
228 return pa_mainloop_get_retval(m
->real_mainloop
);
231 pa_mainloop_api
* pa_threaded_mainloop_get_api(pa_threaded_mainloop
*m
) {
234 return pa_mainloop_get_api(m
->real_mainloop
);
237 int pa_threaded_mainloop_in_thread(pa_threaded_mainloop
*m
) {
240 return m
->thread
&& pa_thread_self() == m
->thread
;