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/source.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-source-symdef.h"
51 PA_MODULE_AUTHOR("Lennart Poettering");
52 PA_MODULE_DESCRIPTION("UNIX pipe source");
53 PA_MODULE_VERSION(PACKAGE_VERSION);
54 PA_MODULE_LOAD_ONCE(FALSE);
56 "source_name=<name for the source> "
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 "/tmp/music.input"
64 #define DEFAULT_SOURCE_NAME "fifo_input"
72 pa_thread_mq thread_mq;
80 pa_rtpoll_item *rtpoll_item;
83 static const char* const valid_modargs[] = {
93 static int source_process_msg(
100 struct userdata *u = PA_SOURCE(o)->userdata;
104 case PA_SOURCE_MESSAGE_GET_LATENCY: {
109 if (ioctl(u->fd, FIONREAD, &l) >= 0 && l > 0)
113 *((pa_usec_t*) data) = pa_bytes_to_usec(n, &u->source->sample_spec);
118 return pa_source_process_msg(o, code, data, offset, chunk);
121 static void thread_func(void *userdata) {
122 struct userdata *u = userdata;
127 pa_log_debug("Thread starting up");
129 pa_thread_mq_install(&u->thread_mq);
130 pa_rtpoll_install(u->rtpoll);
134 struct pollfd *pollfd;
136 pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
138 /* Try to read some data and pass it on to the source driver */
139 if (u->source->thread_info.state == PA_SOURCE_RUNNING && pollfd->revents) {
143 if (!u->memchunk.memblock) {
144 u->memchunk.memblock = pa_memblock_new(u->core->mempool, PIPE_BUF);
145 u->memchunk.index = u->memchunk.length = 0;
148 pa_assert(pa_memblock_get_length(u->memchunk.memblock) > u->memchunk.index);
150 p = pa_memblock_acquire(u->memchunk.memblock);
151 l = pa_read(u->fd, (uint8_t*) p + u->memchunk.index, pa_memblock_get_length(u->memchunk.memblock) - u->memchunk.index, &read_type);
152 pa_memblock_release(u->memchunk.memblock);
154 pa_assert(l != 0); /* EOF cannot happen, since we opened the fifo for both reading and writing */
160 else if (errno != EAGAIN) {
161 pa_log("Faile to read data from FIFO: %s", pa_cstrerror(errno));
167 u->memchunk.length = (size_t) l;
168 pa_source_post(u->source, &u->memchunk);
169 u->memchunk.index += (size_t) l;
171 if (u->memchunk.index >= pa_memblock_get_length(u->memchunk.memblock)) {
172 pa_memblock_unref(u->memchunk.memblock);
173 pa_memchunk_reset(&u->memchunk);
180 /* Hmm, nothing to do. Let's sleep */
181 pollfd->events = (short) (u->source->thread_info.state == PA_SOURCE_RUNNING ? POLLIN : 0);
183 if ((ret = pa_rtpoll_run(u->rtpoll, TRUE)) < 0)
189 pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
191 if (pollfd->revents & ~POLLIN) {
192 pa_log("FIFO shutdown.");
198 /* If this was no regular exit from the loop we have to continue
199 * processing messages until we received PA_MESSAGE_SHUTDOWN */
200 pa_asyncmsgq_post(u->thread_mq.outq, PA_MSGOBJECT(u->core), PA_CORE_MESSAGE_UNLOAD_MODULE, u->module, 0, NULL, NULL);
201 pa_asyncmsgq_wait_for(u->thread_mq.inq, PA_MESSAGE_SHUTDOWN);
204 pa_log_debug("Thread shutting down");
207 int pa__init(pa_module*m) {
213 struct pollfd *pollfd;
214 pa_source_new_data data;
218 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
219 pa_log("failed to parse module arguments.");
223 ss = m->core->default_sample_spec;
224 map = m->core->default_channel_map;
225 if (pa_modargs_get_sample_spec_and_channel_map(ma, &ss, &map, PA_CHANNEL_MAP_DEFAULT) < 0) {
226 pa_log("invalid sample format specification or channel map");
230 m->userdata = u = pa_xnew0(struct userdata, 1);
233 pa_memchunk_reset(&u->memchunk);
234 u->rtpoll = pa_rtpoll_new();
235 pa_thread_mq_init(&u->thread_mq, m->core->mainloop, u->rtpoll);
237 u->filename = pa_runtime_path(pa_modargs_get_value(ma, "file", DEFAULT_FILE_NAME));
239 mkfifo(u->filename, 0666);
240 if ((u->fd = open(u->filename, O_RDWR|O_NOCTTY)) < 0) {
241 pa_log("open('%s'): %s", u->filename, pa_cstrerror(errno));
245 pa_make_fd_cloexec(u->fd);
246 pa_make_fd_nonblock(u->fd);
248 if (fstat(u->fd, &st) < 0) {
249 pa_log("fstat('%s'): %s",u->filename, pa_cstrerror(errno));
253 if (!S_ISFIFO(st.st_mode)) {
254 pa_log("'%s' is not a FIFO.", u->filename);
258 pa_source_new_data_init(&data);
259 data.driver = __FILE__;
261 pa_source_new_data_set_name(&data, pa_modargs_get_value(ma, "source_name", DEFAULT_SOURCE_NAME));
262 pa_proplist_sets(data.proplist, PA_PROP_DEVICE_STRING, u->filename);
263 pa_proplist_setf(data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Unix FIFO source %s", u->filename);
264 pa_source_new_data_set_sample_spec(&data, &ss);
265 pa_source_new_data_set_channel_map(&data, &map);
267 u->source = pa_source_new(m->core, &data, PA_SOURCE_LATENCY);
268 pa_source_new_data_done(&data);
271 pa_log("Failed to create source.");
275 u->source->parent.process_msg = source_process_msg;
276 u->source->userdata = u;
278 pa_source_set_asyncmsgq(u->source, u->thread_mq.inq);
279 pa_source_set_rtpoll(u->source, u->rtpoll);
281 u->rtpoll_item = pa_rtpoll_item_new(u->rtpoll, PA_RTPOLL_NEVER, 1);
282 pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
284 pollfd->events = pollfd->revents = 0;
286 if (!(u->thread = pa_thread_new(thread_func, u))) {
287 pa_log("Failed to create thread.");
291 pa_source_put(u->source);
306 int pa__get_n_used(pa_module *m) {
310 pa_assert_se(u = m->userdata);
312 return pa_source_linked_by(u->source);
315 void pa__done(pa_module*m) {
320 if (!(u = m->userdata))
324 pa_source_unlink(u->source);
327 pa_asyncmsgq_send(u->thread_mq.inq, NULL, PA_MESSAGE_SHUTDOWN, NULL, 0, NULL);
328 pa_thread_free(u->thread);
331 pa_thread_mq_done(&u->thread_mq);
334 pa_source_unref(u->source);
336 if (u->memchunk.memblock)
337 pa_memblock_unref(u->memchunk.memblock);
340 pa_rtpoll_item_free(u->rtpoll_item);
343 pa_rtpoll_free(u->rtpoll);
347 pa_xfree(u->filename);
351 pa_assert_se(pa_close(u->fd) == 0);