2 This file is part of PulseAudio.
4 Copyright 2004-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 published
8 by the Free Software Foundation; either version 2.1 of the License,
9 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 General Public License for more details.
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
34 #include <sys/ioctl.h>
37 #include <pulse/xmalloc.h>
39 #include <pulsecore/core-error.h>
40 #include <pulsecore/sink.h>
41 #include <pulsecore/module.h>
42 #include <pulsecore/core-util.h>
43 #include <pulsecore/modargs.h>
44 #include <pulsecore/log.h>
45 #include <pulsecore/thread.h>
46 #include <pulsecore/thread-mq.h>
47 #include <pulsecore/rtpoll.h>
49 #include "module-pipe-sink-symdef.h"
51 PA_MODULE_AUTHOR("Lennart Poettering");
52 PA_MODULE_DESCRIPTION("UNIX pipe sink");
53 PA_MODULE_VERSION(PACKAGE_VERSION);
54 PA_MODULE_LOAD_ONCE(FALSE);
56 "sink_name=<name for the sink> "
57 "file=<path of the FIFO> "
58 "format=<sample format> "
59 "channels=<number of channels> "
61 "channel_map=<channel map>");
63 #define DEFAULT_FILE_NAME "fifo_output"
64 #define DEFAULT_SINK_NAME "fifo_output"
72 pa_thread_mq thread_mq;
80 pa_rtpoll_item *rtpoll_item;
85 static const char* const valid_modargs[] = {
95 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) {
96 struct userdata *u = PA_SINK(o)->userdata;
100 case PA_SINK_MESSAGE_GET_LATENCY: {
105 if (ioctl(u->fd, FIONREAD, &l) >= 0 && l > 0)
109 n += u->memchunk.length;
111 *((pa_usec_t*) data) = pa_bytes_to_usec(n, &u->sink->sample_spec);
116 return pa_sink_process_msg(o, code, data, offset, chunk);
119 static int process_render(struct userdata *u) {
122 if (u->memchunk.length <= 0)
123 pa_sink_render(u->sink, PIPE_BUF, &u->memchunk);
125 pa_assert(u->memchunk.length > 0);
131 p = pa_memblock_acquire(u->memchunk.memblock);
132 l = pa_write(u->fd, (uint8_t*) p + u->memchunk.index, u->memchunk.length, &u->write_type);
133 pa_memblock_release(u->memchunk.memblock);
141 else if (errno == EAGAIN)
144 pa_log("Failed to write data to FIFO: %s", pa_cstrerror(errno));
150 u->memchunk.index += (size_t) l;
151 u->memchunk.length -= (size_t) l;
153 if (u->memchunk.length <= 0) {
154 pa_memblock_unref(u->memchunk.memblock);
155 pa_memchunk_reset(&u->memchunk);
163 static void thread_func(void *userdata) {
164 struct userdata *u = userdata;
168 pa_log_debug("Thread starting up");
170 pa_thread_mq_install(&u->thread_mq);
171 pa_rtpoll_install(u->rtpoll);
174 struct pollfd *pollfd;
177 pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
179 /* Render some data and write it to the fifo */
180 if (PA_SINK_IS_OPENED(u->sink->thread_info.state)) {
182 if (u->sink->thread_info.rewind_requested)
183 pa_sink_process_rewind(u->sink, 0);
185 if (pollfd->revents) {
186 if (process_render(u) < 0)
193 /* Hmm, nothing to do. Let's sleep */
194 pollfd->events = (short) (u->sink->thread_info.state == PA_SINK_RUNNING ? POLLOUT : 0);
196 if ((ret = pa_rtpoll_run(u->rtpoll, TRUE)) < 0)
202 pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
204 if (pollfd->revents & ~POLLOUT) {
205 pa_log("FIFO shutdown.");
211 /* If this was no regular exit from the loop we have to continue
212 * processing messages until we received PA_MESSAGE_SHUTDOWN */
213 pa_asyncmsgq_post(u->thread_mq.outq, PA_MSGOBJECT(u->core), PA_CORE_MESSAGE_UNLOAD_MODULE, u->module, 0, NULL, NULL);
214 pa_asyncmsgq_wait_for(u->thread_mq.inq, PA_MESSAGE_SHUTDOWN);
217 pa_log_debug("Thread shutting down");
220 int pa__init(pa_module*m) {
226 struct pollfd *pollfd;
227 pa_sink_new_data data;
231 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
232 pa_log("Failed to parse module arguments.");
236 ss = m->core->default_sample_spec;
237 map = m->core->default_channel_map;
238 if (pa_modargs_get_sample_spec_and_channel_map(ma, &ss, &map, PA_CHANNEL_MAP_DEFAULT) < 0) {
239 pa_log("Invalid sample format specification or channel map");
243 u = pa_xnew0(struct userdata, 1);
247 pa_memchunk_reset(&u->memchunk);
248 u->rtpoll = pa_rtpoll_new();
249 pa_thread_mq_init(&u->thread_mq, m->core->mainloop, u->rtpoll);
252 u->filename = pa_runtime_path(pa_modargs_get_value(ma, "file", DEFAULT_FILE_NAME));
254 mkfifo(u->filename, 0666);
255 if ((u->fd = open(u->filename, O_RDWR|O_NOCTTY)) < 0) {
256 pa_log("open('%s'): %s", u->filename, pa_cstrerror(errno));
260 pa_make_fd_cloexec(u->fd);
261 pa_make_fd_nonblock(u->fd);
263 if (fstat(u->fd, &st) < 0) {
264 pa_log("fstat('%s'): %s", u->filename, pa_cstrerror(errno));
268 if (!S_ISFIFO(st.st_mode)) {
269 pa_log("'%s' is not a FIFO.", u->filename);
273 pa_sink_new_data_init(&data);
274 data.driver = __FILE__;
276 pa_sink_new_data_set_name(&data, pa_modargs_get_value(ma, "sink_name", DEFAULT_SINK_NAME));
277 pa_proplist_sets(data.proplist, PA_PROP_DEVICE_STRING, u->filename);
278 pa_proplist_setf(data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Unix FIFO sink %s", u->filename);
279 pa_sink_new_data_set_sample_spec(&data, &ss);
280 pa_sink_new_data_set_channel_map(&data, &map);
282 u->sink = pa_sink_new(m->core, &data, PA_SINK_LATENCY);
283 pa_sink_new_data_done(&data);
286 pa_log("Failed to create sink.");
290 u->sink->parent.process_msg = sink_process_msg;
291 u->sink->userdata = u;
293 pa_sink_set_asyncmsgq(u->sink, u->thread_mq.inq);
294 pa_sink_set_rtpoll(u->sink, u->rtpoll);
296 u->rtpoll_item = pa_rtpoll_item_new(u->rtpoll, PA_RTPOLL_NEVER, 1);
297 pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
299 pollfd->events = pollfd->revents = 0;
301 if (!(u->thread = pa_thread_new(thread_func, u))) {
302 pa_log("Failed to create thread.");
306 pa_sink_put(u->sink);
321 int pa__get_n_used(pa_module *m) {
325 pa_assert_se(u = m->userdata);
327 return pa_sink_linked_by(u->sink);
330 void pa__done(pa_module*m) {
335 if (!(u = m->userdata))
339 pa_sink_unlink(u->sink);
342 pa_asyncmsgq_send(u->thread_mq.inq, NULL, PA_MESSAGE_SHUTDOWN, NULL, 0, NULL);
343 pa_thread_free(u->thread);
346 pa_thread_mq_done(&u->thread_mq);
349 pa_sink_unref(u->sink);
351 if (u->memchunk.memblock)
352 pa_memblock_unref(u->memchunk.memblock);
355 pa_rtpoll_item_free(u->rtpoll_item);
358 pa_rtpoll_free(u->rtpoll);
362 pa_xfree(u->filename);
366 pa_assert_se(pa_close(u->fd) == 0);