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
32 #include <sys/ioctl.h>
34 #ifdef HAVE_SYS_FILIO_H
35 #include <sys/filio.h>
38 #include <pulse/xmalloc.h>
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>
51 #include "module-pipe-sink-symdef.h"
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
);
58 "sink_name=<name for the sink> "
59 "sink_properties=<properties for the sink> "
60 "file=<path of the FIFO> "
61 "format=<sample format> "
63 "channels=<number of channels> "
64 "channel_map=<channel map>");
66 #define DEFAULT_FILE_NAME "fifo_output"
67 #define DEFAULT_SINK_NAME "fifo_output"
75 pa_thread_mq thread_mq
;
83 pa_rtpoll_item
*rtpoll_item
;
88 static const char* const valid_modargs
[] = {
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
;
104 case PA_SINK_MESSAGE_GET_LATENCY
: {
110 if (ioctl(u
->fd
, FIONREAD
, &l
) >= 0 && l
> 0)
114 n
+= u
->memchunk
.length
;
116 *((pa_usec_t
*) data
) = pa_bytes_to_usec(n
, &u
->sink
->sample_spec
);
121 return pa_sink_process_msg(o
, code
, data
, offset
, chunk
);
124 static int process_render(struct userdata
*u
) {
127 if (u
->memchunk
.length
<= 0)
128 pa_sink_render(u
->sink
, pa_pipe_buf(u
->fd
), &u
->memchunk
);
130 pa_assert(u
->memchunk
.length
> 0);
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
);
146 else if (errno
== EAGAIN
)
149 pa_log("Failed to write data to FIFO: %s", pa_cstrerror(errno
));
155 u
->memchunk
.index
+= (size_t) l
;
156 u
->memchunk
.length
-= (size_t) l
;
158 if (u
->memchunk
.length
<= 0) {
159 pa_memblock_unref(u
->memchunk
.memblock
);
160 pa_memchunk_reset(&u
->memchunk
);
168 static void thread_func(void *userdata
) {
169 struct userdata
*u
= userdata
;
173 pa_log_debug("Thread starting up");
175 pa_thread_mq_install(&u
->thread_mq
);
178 struct pollfd
*pollfd
;
181 pollfd
= pa_rtpoll_item_get_pollfd(u
->rtpoll_item
, NULL
);
183 /* Render some data and write it to the fifo */
184 if (PA_SINK_IS_OPENED(u
->sink
->thread_info
.state
)) {
186 if (u
->sink
->thread_info
.rewind_requested
)
187 pa_sink_process_rewind(u
->sink
, 0);
189 if (pollfd
->revents
) {
190 if (process_render(u
) < 0)
197 /* Hmm, nothing to do. Let's sleep */
198 pollfd
->events
= (short) (u
->sink
->thread_info
.state
== PA_SINK_RUNNING
? POLLOUT
: 0);
200 if ((ret
= pa_rtpoll_run(u
->rtpoll
, TRUE
)) < 0)
206 pollfd
= pa_rtpoll_item_get_pollfd(u
->rtpoll_item
, NULL
);
208 if (pollfd
->revents
& ~POLLOUT
) {
209 pa_log("FIFO shutdown.");
215 /* If this was no regular exit from the loop we have to continue
216 * processing messages until we received PA_MESSAGE_SHUTDOWN */
217 pa_asyncmsgq_post(u
->thread_mq
.outq
, PA_MSGOBJECT(u
->core
), PA_CORE_MESSAGE_UNLOAD_MODULE
, u
->module
, 0, NULL
, NULL
);
218 pa_asyncmsgq_wait_for(u
->thread_mq
.inq
, PA_MESSAGE_SHUTDOWN
);
221 pa_log_debug("Thread shutting down");
224 int pa__init(pa_module
*m
) {
230 struct pollfd
*pollfd
;
231 pa_sink_new_data data
;
235 if (!(ma
= pa_modargs_new(m
->argument
, valid_modargs
))) {
236 pa_log("Failed to parse module arguments.");
240 ss
= m
->core
->default_sample_spec
;
241 map
= m
->core
->default_channel_map
;
242 if (pa_modargs_get_sample_spec_and_channel_map(ma
, &ss
, &map
, PA_CHANNEL_MAP_DEFAULT
) < 0) {
243 pa_log("Invalid sample format specification or channel map");
247 u
= pa_xnew0(struct userdata
, 1);
251 pa_memchunk_reset(&u
->memchunk
);
252 u
->rtpoll
= pa_rtpoll_new();
253 pa_thread_mq_init(&u
->thread_mq
, m
->core
->mainloop
, u
->rtpoll
);
256 u
->filename
= pa_runtime_path(pa_modargs_get_value(ma
, "file", DEFAULT_FILE_NAME
));
258 mkfifo(u
->filename
, 0666);
259 if ((u
->fd
= pa_open_cloexec(u
->filename
, O_RDWR
, 0)) < 0) {
260 pa_log("open('%s'): %s", u
->filename
, pa_cstrerror(errno
));
264 pa_make_fd_nonblock(u
->fd
);
266 if (fstat(u
->fd
, &st
) < 0) {
267 pa_log("fstat('%s'): %s", u
->filename
, pa_cstrerror(errno
));
271 if (!S_ISFIFO(st
.st_mode
)) {
272 pa_log("'%s' is not a FIFO.", u
->filename
);
276 pa_sink_new_data_init(&data
);
277 data
.driver
= __FILE__
;
279 pa_sink_new_data_set_name(&data
, pa_modargs_get_value(ma
, "sink_name", DEFAULT_SINK_NAME
));
280 pa_proplist_sets(data
.proplist
, PA_PROP_DEVICE_STRING
, u
->filename
);
281 pa_proplist_setf(data
.proplist
, PA_PROP_DEVICE_DESCRIPTION
, "Unix FIFO sink %s", u
->filename
);
282 pa_sink_new_data_set_sample_spec(&data
, &ss
);
283 pa_sink_new_data_set_channel_map(&data
, &map
);
285 if (pa_modargs_get_proplist(ma
, "sink_properties", data
.proplist
, PA_UPDATE_REPLACE
) < 0) {
286 pa_log("Invalid properties");
287 pa_sink_new_data_done(&data
);
291 u
->sink
= pa_sink_new(m
->core
, &data
, PA_SINK_LATENCY
);
292 pa_sink_new_data_done(&data
);
295 pa_log("Failed to create sink.");
299 u
->sink
->parent
.process_msg
= sink_process_msg
;
300 u
->sink
->userdata
= u
;
302 pa_sink_set_asyncmsgq(u
->sink
, u
->thread_mq
.inq
);
303 pa_sink_set_rtpoll(u
->sink
, u
->rtpoll
);
304 pa_sink_set_max_request(u
->sink
, pa_pipe_buf(u
->fd
));
305 pa_sink_set_fixed_latency(u
->sink
, pa_bytes_to_usec(pa_pipe_buf(u
->fd
), &u
->sink
->sample_spec
));
307 u
->rtpoll_item
= pa_rtpoll_item_new(u
->rtpoll
, PA_RTPOLL_NEVER
, 1);
308 pollfd
= pa_rtpoll_item_get_pollfd(u
->rtpoll_item
, NULL
);
310 pollfd
->events
= pollfd
->revents
= 0;
312 if (!(u
->thread
= pa_thread_new("pipe-sink", thread_func
, u
))) {
313 pa_log("Failed to create thread.");
317 pa_sink_put(u
->sink
);
332 int pa__get_n_used(pa_module
*m
) {
336 pa_assert_se(u
= m
->userdata
);
338 return pa_sink_linked_by(u
->sink
);
341 void pa__done(pa_module
*m
) {
346 if (!(u
= m
->userdata
))
350 pa_sink_unlink(u
->sink
);
353 pa_asyncmsgq_send(u
->thread_mq
.inq
, NULL
, PA_MESSAGE_SHUTDOWN
, NULL
, 0, NULL
);
354 pa_thread_free(u
->thread
);
357 pa_thread_mq_done(&u
->thread_mq
);
360 pa_sink_unref(u
->sink
);
362 if (u
->memchunk
.memblock
)
363 pa_memblock_unref(u
->memchunk
.memblock
);
366 pa_rtpoll_item_free(u
->rtpoll_item
);
369 pa_rtpoll_free(u
->rtpoll
);
373 pa_xfree(u
->filename
);
377 pa_assert_se(pa_close(u
->fd
) == 0);