core: call pa_sink_get_latency_within_thread() instead of going directly via process_...
[pulseaudio-mirror.git] / src / pulsecore / fdsem.c
blob380f34f543b320cd7c8b17ff8bbd83315369f114
1 /***
2 This file is part of PulseAudio.
4 Copyright 2006 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
26 #ifdef HAVE_SYS_SYSCALL_H
27 #include <sys/syscall.h>
28 #endif
30 #include <unistd.h>
31 #include <errno.h>
33 #include <pulsecore/atomic.h>
34 #include <pulsecore/log.h>
35 #include <pulsecore/thread.h>
36 #include <pulsecore/macro.h>
37 #include <pulsecore/core-util.h>
38 #include <pulse/xmalloc.h>
40 #ifndef HAVE_PIPE
41 #include <pulsecore/pipe.h>
42 #endif
44 #ifdef HAVE_SYS_EVENTFD_H
45 #include <sys/eventfd.h>
46 #endif
48 #include "fdsem.h"
50 struct pa_fdsem {
51 int fds[2];
52 #ifdef HAVE_SYS_EVENTFD_H
53 int efd;
54 #endif
56 pa_fdsem_data *data;
59 pa_fdsem *pa_fdsem_new(void) {
60 pa_fdsem *f;
62 f = pa_xmalloc(PA_ALIGN(sizeof(pa_fdsem)) + PA_ALIGN(sizeof(pa_fdsem_data)));
64 #ifdef HAVE_SYS_EVENTFD_H
65 if ((f->efd = eventfd(0, 0)) >= 0) {
66 pa_make_fd_cloexec(f->efd);
67 f->fds[0] = f->fds[1] = -1;
68 } else
69 #endif
71 if (pipe(f->fds) < 0) {
72 pa_xfree(f);
73 return NULL;
76 pa_make_fd_cloexec(f->fds[0]);
77 pa_make_fd_cloexec(f->fds[1]);
80 f->data = (pa_fdsem_data*) ((uint8_t*) f + PA_ALIGN(sizeof(pa_fdsem)));
82 pa_atomic_store(&f->data->waiting, 0);
83 pa_atomic_store(&f->data->signalled, 0);
84 pa_atomic_store(&f->data->in_pipe, 0);
86 return f;
89 pa_fdsem *pa_fdsem_open_shm(pa_fdsem_data *data, int event_fd) {
90 pa_fdsem *f = NULL;
92 pa_assert(data);
93 pa_assert(event_fd >= 0);
95 #ifdef HAVE_SYS_EVENTFD_H
96 f = pa_xnew(pa_fdsem, 1);
98 f->efd = event_fd;
99 pa_make_fd_cloexec(f->efd);
100 f->fds[0] = f->fds[1] = -1;
101 f->data = data;
102 #endif
104 return f;
107 pa_fdsem *pa_fdsem_new_shm(pa_fdsem_data *data, int* event_fd) {
108 pa_fdsem *f = NULL;
110 pa_assert(data);
111 pa_assert(event_fd);
113 #ifdef HAVE_SYS_EVENTFD_H
115 f = pa_xnew(pa_fdsem, 1);
117 if ((f->efd = eventfd(0, 0)) < 0) {
118 pa_xfree(f);
119 return NULL;
122 pa_make_fd_cloexec(f->efd);
123 f->fds[0] = f->fds[1] = -1;
124 f->data = data;
126 pa_atomic_store(&f->data->waiting, 0);
127 pa_atomic_store(&f->data->signalled, 0);
128 pa_atomic_store(&f->data->in_pipe, 0);
130 #endif
132 return f;
135 void pa_fdsem_free(pa_fdsem *f) {
136 pa_assert(f);
138 #ifdef HAVE_SYS_EVENTFD_H
139 if (f->efd >= 0)
140 pa_close(f->efd);
141 #endif
142 pa_close_pipe(f->fds);
144 pa_xfree(f);
147 static void flush(pa_fdsem *f) {
148 ssize_t r;
149 pa_assert(f);
151 if (pa_atomic_load(&f->data->in_pipe) <= 0)
152 return;
154 do {
155 char x[10];
157 #ifdef HAVE_SYS_EVENTFD_H
158 if (f->efd >= 0) {
159 uint64_t u;
161 if ((r = read(f->efd, &u, sizeof(u))) != sizeof(u)) {
162 pa_assert(r < 0 && errno == EINTR);
163 continue;
165 r = (ssize_t) u;
166 } else
167 #endif
169 if ((r = read(f->fds[0], &x, sizeof(x))) <= 0) {
170 pa_assert(r < 0 && errno == EINTR);
171 continue;
174 } while (pa_atomic_sub(&f->data->in_pipe, (int) r) > (int) r);
177 void pa_fdsem_post(pa_fdsem *f) {
178 pa_assert(f);
180 if (pa_atomic_cmpxchg(&f->data->signalled, 0, 1)) {
182 if (pa_atomic_load(&f->data->waiting)) {
183 ssize_t r;
184 char x = 'x';
186 pa_atomic_inc(&f->data->in_pipe);
188 for (;;) {
190 #ifdef HAVE_SYS_EVENTFD_H
191 if (f->efd >= 0) {
192 uint64_t u = 1;
194 if ((r = write(f->efd, &u, sizeof(u))) != sizeof(u)) {
195 pa_assert(r < 0 && errno == EINTR);
196 continue;
198 } else
199 #endif
201 if ((r = write(f->fds[1], &x, 1)) != 1) {
202 pa_assert(r < 0 && errno == EINTR);
203 continue;
206 break;
212 void pa_fdsem_wait(pa_fdsem *f) {
213 pa_assert(f);
215 flush(f);
217 if (pa_atomic_cmpxchg(&f->data->signalled, 1, 0))
218 return;
220 pa_atomic_inc(&f->data->waiting);
222 while (!pa_atomic_cmpxchg(&f->data->signalled, 1, 0)) {
223 char x[10];
224 ssize_t r;
226 #ifdef HAVE_SYS_EVENTFD_H
227 if (f->efd >= 0) {
228 uint64_t u;
230 if ((r = read(f->efd, &u, sizeof(u))) != sizeof(u)) {
231 pa_assert(r < 0 && errno == EINTR);
232 continue;
235 r = (ssize_t) u;
236 } else
237 #endif
239 if ((r = read(f->fds[0], &x, sizeof(x))) <= 0) {
240 pa_assert(r < 0 && errno == EINTR);
241 continue;
244 pa_atomic_sub(&f->data->in_pipe, (int) r);
247 pa_assert_se(pa_atomic_dec(&f->data->waiting) >= 1);
250 int pa_fdsem_try(pa_fdsem *f) {
251 pa_assert(f);
253 flush(f);
255 if (pa_atomic_cmpxchg(&f->data->signalled, 1, 0))
256 return 1;
258 return 0;
261 int pa_fdsem_get(pa_fdsem *f) {
262 pa_assert(f);
264 #ifdef HAVE_SYS_EVENTFD_H
265 if (f->efd >= 0)
266 return f->efd;
267 #endif
269 return f->fds[0];
272 int pa_fdsem_before_poll(pa_fdsem *f) {
273 pa_assert(f);
275 flush(f);
277 if (pa_atomic_cmpxchg(&f->data->signalled, 1, 0))
278 return -1;
280 pa_atomic_inc(&f->data->waiting);
282 if (pa_atomic_cmpxchg(&f->data->signalled, 1, 0)) {
283 pa_assert_se(pa_atomic_dec(&f->data->waiting) >= 1);
284 return -1;
286 return 0;
289 int pa_fdsem_after_poll(pa_fdsem *f) {
290 pa_assert(f);
292 pa_assert_se(pa_atomic_dec(&f->data->waiting) >= 1);
294 flush(f);
296 if (pa_atomic_cmpxchg(&f->data->signalled, 1, 0))
297 return 1;
299 return 0;