bluetooth: Support port availability flag
[profile/ivi/pulseaudio.git] / 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         /* Render some data and write it to the fifo */
184         if (PA_SINK_IS_OPENED(u->sink->thread_info.state)) {
185
186             if (u->sink->thread_info.rewind_requested)
187                 pa_sink_process_rewind(u->sink, 0);
188
189             if (pollfd->revents) {
190                 if (process_render(u) < 0)
191                     goto fail;
192
193                 pollfd->revents = 0;
194             }
195         }
196
197         /* Hmm, nothing to do. Let's sleep */
198         pollfd->events = (short) (u->sink->thread_info.state == PA_SINK_RUNNING ? POLLOUT : 0);
199
200         if ((ret = pa_rtpoll_run(u->rtpoll, TRUE)) < 0)
201             goto fail;
202
203         if (ret == 0)
204             goto finish;
205
206         pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
207
208         if (pollfd->revents & ~POLLOUT) {
209             pa_log("FIFO shutdown.");
210             goto fail;
211         }
212     }
213
214 fail:
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);
219
220 finish:
221     pa_log_debug("Thread shutting down");
222 }
223
224 int pa__init(pa_module*m) {
225     struct userdata *u;
226     struct stat st;
227     pa_sample_spec ss;
228     pa_channel_map map;
229     pa_modargs *ma;
230     struct pollfd *pollfd;
231     pa_sink_new_data data;
232
233     pa_assert(m);
234
235     if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
236         pa_log("Failed to parse module arguments.");
237         goto fail;
238     }
239
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");
244         goto fail;
245     }
246
247     u = pa_xnew0(struct userdata, 1);
248     u->core = m->core;
249     u->module = m;
250     m->userdata = u;
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);
254     u->write_type = 0;
255
256     u->filename = pa_runtime_path(pa_modargs_get_value(ma, "file", DEFAULT_FILE_NAME));
257
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));
261         goto fail;
262     }
263
264     pa_make_fd_nonblock(u->fd);
265
266     if (fstat(u->fd, &st) < 0) {
267         pa_log("fstat('%s'): %s", u->filename, pa_cstrerror(errno));
268         goto fail;
269     }
270
271     if (!S_ISFIFO(st.st_mode)) {
272         pa_log("'%s' is not a FIFO.", u->filename);
273         goto fail;
274     }
275
276     pa_sink_new_data_init(&data);
277     data.driver = __FILE__;
278     data.module = m;
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);
284
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);
288         goto fail;
289     }
290
291     u->sink = pa_sink_new(m->core, &data, PA_SINK_LATENCY);
292     pa_sink_new_data_done(&data);
293
294     if (!u->sink) {
295         pa_log("Failed to create sink.");
296         goto fail;
297     }
298
299     u->sink->parent.process_msg = sink_process_msg;
300     u->sink->userdata = u;
301
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));
306
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);
309     pollfd->fd = u->fd;
310     pollfd->events = pollfd->revents = 0;
311
312     if (!(u->thread = pa_thread_new("pipe-sink", thread_func, u))) {
313         pa_log("Failed to create thread.");
314         goto fail;
315     }
316
317     pa_sink_put(u->sink);
318
319     pa_modargs_free(ma);
320
321     return 0;
322
323 fail:
324     if (ma)
325         pa_modargs_free(ma);
326
327     pa__done(m);
328
329     return -1;
330 }
331
332 int pa__get_n_used(pa_module *m) {
333     struct userdata *u;
334
335     pa_assert(m);
336     pa_assert_se(u = m->userdata);
337
338     return pa_sink_linked_by(u->sink);
339 }
340
341 void pa__done(pa_module*m) {
342     struct userdata *u;
343
344     pa_assert(m);
345
346     if (!(u = m->userdata))
347         return;
348
349     if (u->sink)
350         pa_sink_unlink(u->sink);
351
352     if (u->thread) {
353         pa_asyncmsgq_send(u->thread_mq.inq, NULL, PA_MESSAGE_SHUTDOWN, NULL, 0, NULL);
354         pa_thread_free(u->thread);
355     }
356
357     pa_thread_mq_done(&u->thread_mq);
358
359     if (u->sink)
360         pa_sink_unref(u->sink);
361
362     if (u->memchunk.memblock)
363         pa_memblock_unref(u->memchunk.memblock);
364
365     if (u->rtpoll_item)
366         pa_rtpoll_item_free(u->rtpoll_item);
367
368     if (u->rtpoll)
369         pa_rtpoll_free(u->rtpoll);
370
371     if (u->filename) {
372         unlink(u->filename);
373         pa_xfree(u->filename);
374     }
375
376     if (u->fd >= 0)
377         pa_assert_se(pa_close(u->fd) == 0);
378
379     pa_xfree(u);
380 }