]> code.delx.au - pulseaudio/blob - src/modules/module-pipe-sink.c
sink, source: Add hooks for mute changes
[pulseaudio] / src / modules / module-pipe-sink.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2004-2006 Lennart Poettering
5
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 published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
10
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 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 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 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdlib.h>
27 #include <sys/stat.h>
28 #include <stdio.h>
29 #include <errno.h>
30 #include <fcntl.h>
31 #include <unistd.h>
32 #include <sys/ioctl.h>
33
34 #ifdef HAVE_SYS_FILIO_H
35 #include <sys/filio.h>
36 #endif
37
38 #include <pulse/xmalloc.h>
39
40 #include <pulsecore/core-error.h>
41 #include <pulsecore/sink.h>
42 #include <pulsecore/module.h>
43 #include <pulsecore/core-util.h>
44 #include <pulsecore/modargs.h>
45 #include <pulsecore/log.h>
46 #include <pulsecore/thread.h>
47 #include <pulsecore/thread-mq.h>
48 #include <pulsecore/rtpoll.h>
49 #include <pulsecore/poll.h>
50
51 #include "module-pipe-sink-symdef.h"
52
53 PA_MODULE_AUTHOR("Lennart Poettering");
54 PA_MODULE_DESCRIPTION("UNIX pipe sink");
55 PA_MODULE_VERSION(PACKAGE_VERSION);
56 PA_MODULE_LOAD_ONCE(false);
57 PA_MODULE_USAGE(
58 "sink_name=<name for the sink> "
59 "sink_properties=<properties for the sink> "
60 "file=<path of the FIFO> "
61 "format=<sample format> "
62 "rate=<sample rate> "
63 "channels=<number of channels> "
64 "channel_map=<channel map>");
65
66 #define DEFAULT_FILE_NAME "fifo_output"
67 #define DEFAULT_SINK_NAME "fifo_output"
68
69 struct userdata {
70 pa_core *core;
71 pa_module *module;
72 pa_sink *sink;
73
74 pa_thread *thread;
75 pa_thread_mq thread_mq;
76 pa_rtpoll *rtpoll;
77
78 char *filename;
79 int fd;
80
81 pa_memchunk memchunk;
82
83 pa_rtpoll_item *rtpoll_item;
84
85 int write_type;
86 };
87
88 static const char* const valid_modargs[] = {
89 "sink_name",
90 "sink_properties",
91 "file",
92 "format",
93 "rate",
94 "channels",
95 "channel_map",
96 NULL
97 };
98
99 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) {
100 struct userdata *u = PA_SINK(o)->userdata;
101
102 switch (code) {
103
104 case PA_SINK_MESSAGE_GET_LATENCY: {
105 size_t n = 0;
106
107 #ifdef FIONREAD
108 int l;
109
110 if (ioctl(u->fd, FIONREAD, &l) >= 0 && l > 0)
111 n = (size_t) l;
112 #endif
113
114 n += u->memchunk.length;
115
116 *((pa_usec_t*) data) = pa_bytes_to_usec(n, &u->sink->sample_spec);
117 return 0;
118 }
119 }
120
121 return pa_sink_process_msg(o, code, data, offset, chunk);
122 }
123
124 static int process_render(struct userdata *u) {
125 pa_assert(u);
126
127 if (u->memchunk.length <= 0)
128 pa_sink_render(u->sink, pa_pipe_buf(u->fd), &u->memchunk);
129
130 pa_assert(u->memchunk.length > 0);
131
132 for (;;) {
133 ssize_t l;
134 void *p;
135
136 p = pa_memblock_acquire(u->memchunk.memblock);
137 l = pa_write(u->fd, (uint8_t*) p + u->memchunk.index, u->memchunk.length, &u->write_type);
138 pa_memblock_release(u->memchunk.memblock);
139
140 pa_assert(l != 0);
141
142 if (l < 0) {
143
144 if (errno == EINTR)
145 continue;
146 else if (errno == EAGAIN)
147 return 0;
148 else {
149 pa_log("Failed to write data to FIFO: %s", pa_cstrerror(errno));
150 return -1;
151 }
152
153 } else {
154
155 u->memchunk.index += (size_t) l;
156 u->memchunk.length -= (size_t) l;
157
158 if (u->memchunk.length <= 0) {
159 pa_memblock_unref(u->memchunk.memblock);
160 pa_memchunk_reset(&u->memchunk);
161 }
162 }
163
164 return 0;
165 }
166 }
167
168 static void thread_func(void *userdata) {
169 struct userdata *u = userdata;
170
171 pa_assert(u);
172
173 pa_log_debug("Thread starting up");
174
175 pa_thread_mq_install(&u->thread_mq);
176
177 for (;;) {
178 struct pollfd *pollfd;
179 int ret;
180
181 pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
182
183 if (PA_UNLIKELY(u->sink->thread_info.rewind_requested))
184 pa_sink_process_rewind(u->sink, 0);
185
186 /* Render some data and write it to the fifo */
187 if (PA_SINK_IS_OPENED(u->sink->thread_info.state)) {
188 if (pollfd->revents) {
189 if (process_render(u) < 0)
190 goto fail;
191
192 pollfd->revents = 0;
193 }
194 }
195
196 /* Hmm, nothing to do. Let's sleep */
197 pollfd->events = (short) (u->sink->thread_info.state == PA_SINK_RUNNING ? POLLOUT : 0);
198
199 if ((ret = pa_rtpoll_run(u->rtpoll, true)) < 0)
200 goto fail;
201
202 if (ret == 0)
203 goto finish;
204
205 pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
206
207 if (pollfd->revents & ~POLLOUT) {
208 pa_log("FIFO shutdown.");
209 goto fail;
210 }
211 }
212
213 fail:
214 /* If this was no regular exit from the loop we have to continue
215 * processing messages until we received PA_MESSAGE_SHUTDOWN */
216 pa_asyncmsgq_post(u->thread_mq.outq, PA_MSGOBJECT(u->core), PA_CORE_MESSAGE_UNLOAD_MODULE, u->module, 0, NULL, NULL);
217 pa_asyncmsgq_wait_for(u->thread_mq.inq, PA_MESSAGE_SHUTDOWN);
218
219 finish:
220 pa_log_debug("Thread shutting down");
221 }
222
223 int pa__init(pa_module *m) {
224 struct userdata *u;
225 struct stat st;
226 pa_sample_spec ss;
227 pa_channel_map map;
228 pa_modargs *ma;
229 struct pollfd *pollfd;
230 pa_sink_new_data data;
231
232 pa_assert(m);
233
234 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
235 pa_log("Failed to parse module arguments.");
236 goto fail;
237 }
238
239 ss = m->core->default_sample_spec;
240 map = m->core->default_channel_map;
241 if (pa_modargs_get_sample_spec_and_channel_map(ma, &ss, &map, PA_CHANNEL_MAP_DEFAULT) < 0) {
242 pa_log("Invalid sample format specification or channel map");
243 goto fail;
244 }
245
246 u = pa_xnew0(struct userdata, 1);
247 u->core = m->core;
248 u->module = m;
249 m->userdata = u;
250 pa_memchunk_reset(&u->memchunk);
251 u->rtpoll = pa_rtpoll_new();
252 pa_thread_mq_init(&u->thread_mq, m->core->mainloop, u->rtpoll);
253 u->write_type = 0;
254
255 u->filename = pa_runtime_path(pa_modargs_get_value(ma, "file", DEFAULT_FILE_NAME));
256
257 if (mkfifo(u->filename, 0666) < 0) {
258 pa_log("mkfifo('%s'): %s", u->filename, pa_cstrerror(errno));
259 goto fail;
260 }
261 if ((u->fd = pa_open_cloexec(u->filename, O_RDWR, 0)) < 0) {
262 pa_log("open('%s'): %s", u->filename, pa_cstrerror(errno));
263 goto fail;
264 }
265
266 pa_make_fd_nonblock(u->fd);
267
268 if (fstat(u->fd, &st) < 0) {
269 pa_log("fstat('%s'): %s", u->filename, pa_cstrerror(errno));
270 goto fail;
271 }
272
273 if (!S_ISFIFO(st.st_mode)) {
274 pa_log("'%s' is not a FIFO.", u->filename);
275 goto fail;
276 }
277
278 pa_sink_new_data_init(&data);
279 data.driver = __FILE__;
280 data.module = m;
281 pa_sink_new_data_set_name(&data, pa_modargs_get_value(ma, "sink_name", DEFAULT_SINK_NAME));
282 pa_proplist_sets(data.proplist, PA_PROP_DEVICE_STRING, u->filename);
283 pa_proplist_setf(data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Unix FIFO sink %s", u->filename);
284 pa_sink_new_data_set_sample_spec(&data, &ss);
285 pa_sink_new_data_set_channel_map(&data, &map);
286
287 if (pa_modargs_get_proplist(ma, "sink_properties", data.proplist, PA_UPDATE_REPLACE) < 0) {
288 pa_log("Invalid properties");
289 pa_sink_new_data_done(&data);
290 goto fail;
291 }
292
293 u->sink = pa_sink_new(m->core, &data, PA_SINK_LATENCY);
294 pa_sink_new_data_done(&data);
295
296 if (!u->sink) {
297 pa_log("Failed to create sink.");
298 goto fail;
299 }
300
301 u->sink->parent.process_msg = sink_process_msg;
302 u->sink->userdata = u;
303
304 pa_sink_set_asyncmsgq(u->sink, u->thread_mq.inq);
305 pa_sink_set_rtpoll(u->sink, u->rtpoll);
306 pa_sink_set_max_request(u->sink, pa_pipe_buf(u->fd));
307 pa_sink_set_fixed_latency(u->sink, pa_bytes_to_usec(pa_pipe_buf(u->fd), &u->sink->sample_spec));
308
309 u->rtpoll_item = pa_rtpoll_item_new(u->rtpoll, PA_RTPOLL_NEVER, 1);
310 pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
311 pollfd->fd = u->fd;
312 pollfd->events = pollfd->revents = 0;
313
314 if (!(u->thread = pa_thread_new("pipe-sink", thread_func, u))) {
315 pa_log("Failed to create thread.");
316 goto fail;
317 }
318
319 pa_sink_put(u->sink);
320
321 pa_modargs_free(ma);
322
323 return 0;
324
325 fail:
326 if (ma)
327 pa_modargs_free(ma);
328
329 pa__done(m);
330
331 return -1;
332 }
333
334 int pa__get_n_used(pa_module *m) {
335 struct userdata *u;
336
337 pa_assert(m);
338 pa_assert_se(u = m->userdata);
339
340 return pa_sink_linked_by(u->sink);
341 }
342
343 void pa__done(pa_module *m) {
344 struct userdata *u;
345
346 pa_assert(m);
347
348 if (!(u = m->userdata))
349 return;
350
351 if (u->sink)
352 pa_sink_unlink(u->sink);
353
354 if (u->thread) {
355 pa_asyncmsgq_send(u->thread_mq.inq, NULL, PA_MESSAGE_SHUTDOWN, NULL, 0, NULL);
356 pa_thread_free(u->thread);
357 }
358
359 pa_thread_mq_done(&u->thread_mq);
360
361 if (u->sink)
362 pa_sink_unref(u->sink);
363
364 if (u->memchunk.memblock)
365 pa_memblock_unref(u->memchunk.memblock);
366
367 if (u->rtpoll_item)
368 pa_rtpoll_item_free(u->rtpoll_item);
369
370 if (u->rtpoll)
371 pa_rtpoll_free(u->rtpoll);
372
373 if (u->filename) {
374 unlink(u->filename);
375 pa_xfree(u->filename);
376 }
377
378 if (u->fd >= 0)
379 pa_assert_se(pa_close(u->fd) == 0);
380
381 pa_xfree(u);
382 }