yet anotrher fix for slow links
[profile/ivi/pulseaudio.git] / src / utils / pacat.c
1 /* $Id$ */
2
3 /***
4   This file is part of polypaudio.
5  
6   polypaudio 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 of the License,
9   or (at your option) any later version.
10  
11   polypaudio 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 polypaudio; 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 <signal.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <unistd.h>
30 #include <assert.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <getopt.h>
34 #include <fcntl.h>
35
36 #include <polyp/polypaudio.h>
37 #include <polyp/mainloop.h>
38 #include <polyp/mainloop-signal.h>
39 #include <polypcore/util.h>
40
41 #define TIME_EVENT_USEC 50000
42
43 #if PA_API_VERSION != 8
44 #error Invalid Polypaudio API version
45 #endif
46
47 static enum { RECORD, PLAYBACK } mode = PLAYBACK;
48
49 static pa_context *context = NULL;
50 static pa_stream *stream = NULL;
51 static pa_mainloop_api *mainloop_api = NULL;
52
53 static void *buffer = NULL;
54 static size_t buffer_length = 0, buffer_index = 0;
55
56 static pa_io_event* stdio_event = NULL;
57
58 static char *stream_name = NULL, *client_name = NULL, *device = NULL;
59
60 static int verbose = 0;
61 static pa_volume_t volume = PA_VOLUME_NORM;
62
63 static pa_sample_spec sample_spec = {
64     .format = PA_SAMPLE_S16LE,
65     .rate = 44100,
66     .channels = 2
67 };
68
69 /* A shortcut for terminating the application */
70 static void quit(int ret) {
71     assert(mainloop_api);
72     mainloop_api->quit(mainloop_api, ret);
73 }
74
75 /* Write some data to the stream */
76 static void do_stream_write(size_t length) {
77     size_t l;
78     assert(length);
79
80     if (!buffer || !buffer_length)
81         return;
82     
83     l = length;
84     if (l > buffer_length)
85         l = buffer_length;
86     
87     if (pa_stream_write(stream, (uint8_t*) buffer + buffer_index, l, NULL, 0, PA_SEEK_RELATIVE) < 0) {
88         fprintf(stderr, "pa_stream_write() failed: %s\n", pa_strerror(pa_context_errno(context)));
89         quit(1);
90         return;
91     }
92     
93     buffer_length -= l;
94     buffer_index += l;
95     
96     if (!buffer_length) {
97         free(buffer);
98         buffer = NULL;
99         buffer_index = buffer_length = 0;
100     }
101 }
102
103 /* This is called whenever new data may be written to the stream */
104 static void stream_write_callback(pa_stream *s, size_t length, void *userdata) {
105     assert(s && length);
106
107     if (stdio_event)
108         mainloop_api->io_enable(stdio_event, PA_IO_EVENT_INPUT);
109
110     if (!buffer)
111         return;
112
113     do_stream_write(length);
114 }
115
116 /* This is called whenever new data may is available */
117 static void stream_read_callback(pa_stream *s, size_t length, void *userdata) {
118     const void *data;
119     assert(s && length);
120
121     if (stdio_event)
122         mainloop_api->io_enable(stdio_event, PA_IO_EVENT_OUTPUT);
123
124     if (pa_stream_peek(s, &data, &length) < 0) {
125         fprintf(stderr, "pa_stream_peek() failed: %s\n", pa_strerror(pa_context_errno(context)));
126         quit(1);
127         return;
128     }
129     
130     assert(data && length);
131
132     if (buffer) {
133         fprintf(stderr, "Buffer overrun, dropping incoming data\n");
134         if (pa_stream_drop(s) < 0) {
135             fprintf(stderr, "pa_stream_drop() failed: %s\n", pa_strerror(pa_context_errno(context)));
136             quit(1);
137         }
138         return;
139     }
140
141     buffer = malloc(buffer_length = length);
142     assert(buffer);
143     memcpy(buffer, data, length);
144     buffer_index = 0;
145     pa_stream_drop(s);
146 }
147
148 /* This routine is called whenever the stream state changes */
149 static void stream_state_callback(pa_stream *s, void *userdata) {
150     assert(s);
151
152     switch (pa_stream_get_state(s)) {
153         case PA_STREAM_CREATING:
154         case PA_STREAM_TERMINATED:
155             break;
156
157         case PA_STREAM_READY:
158             if (verbose)
159                 fprintf(stderr, "Stream successfully created.\n");
160             break;
161             
162         case PA_STREAM_FAILED:
163         default:
164             fprintf(stderr, "Stream error: %s\n", pa_strerror(pa_context_errno(pa_stream_get_context(s))));
165             quit(1);
166     }
167 }
168
169 /* This is called whenever the context status changes */
170 static void context_state_callback(pa_context *c, void *userdata) {
171     assert(c);
172
173     switch (pa_context_get_state(c)) {
174         case PA_CONTEXT_CONNECTING:
175         case PA_CONTEXT_AUTHORIZING:
176         case PA_CONTEXT_SETTING_NAME:
177             break;
178         
179         case PA_CONTEXT_READY: {
180             int r;
181             
182             assert(c && !stream);
183
184             if (verbose)
185                 fprintf(stderr, "Connection established.\n");
186
187             if (!(stream = pa_stream_new(c, stream_name, &sample_spec, NULL))) {
188                 fprintf(stderr, "pa_stream_new() failed: %s\n", pa_strerror(pa_context_errno(c)));
189                 goto fail;
190             }
191
192             pa_stream_set_state_callback(stream, stream_state_callback, NULL);
193             pa_stream_set_write_callback(stream, stream_write_callback, NULL);
194             pa_stream_set_read_callback(stream, stream_read_callback, NULL);
195
196             if (mode == PLAYBACK) {
197                 pa_cvolume cv;
198                 if ((r = pa_stream_connect_playback(stream, device, NULL, 0, pa_cvolume_set(&cv, sample_spec.channels, volume), NULL)) < 0) {
199                     fprintf(stderr, "pa_stream_connect_playback() failed: %s\n", pa_strerror(pa_context_errno(c)));
200                     goto fail;
201                 }
202                     
203             } else {
204                 if ((r = pa_stream_connect_record(stream, device, NULL, 0)) < 0) {
205                     fprintf(stderr, "pa_stream_connect_record() failed: %s\n", pa_strerror(pa_context_errno(c)));
206                     goto fail;
207                 }
208             }
209                 
210             break;
211         }
212             
213         case PA_CONTEXT_TERMINATED:
214             quit(0);
215             break;
216
217         case PA_CONTEXT_FAILED:
218         default:
219             fprintf(stderr, "Connection failure: %s\n", pa_strerror(pa_context_errno(c)));
220             goto fail;
221     }
222
223     return;
224     
225 fail:
226     quit(1);
227     
228 }
229
230 /* Connection draining complete */
231 static void context_drain_complete(pa_context*c, void *userdata) {
232     pa_context_disconnect(c);
233 }
234
235 /* Stream draining complete */
236 static void stream_drain_complete(pa_stream*s, int success, void *userdata) {
237     pa_operation *o;
238
239     if (!success) {
240         fprintf(stderr, "Failed to drain stream: %s\n", pa_strerror(pa_context_errno(context)));
241         quit(1);
242     }
243     
244     if (verbose)    
245         fprintf(stderr, "Playback stream drained.\n");
246
247     pa_stream_disconnect(stream);
248     pa_stream_unref(stream);
249     stream = NULL;
250     
251     if (!(o = pa_context_drain(context, context_drain_complete, NULL)))
252         pa_context_disconnect(context);
253     else {
254         if (verbose)
255             fprintf(stderr, "Draining connection to server.\n");
256     }
257 }
258
259 /* New data on STDIN **/
260 static void stdin_callback(pa_mainloop_api*a, pa_io_event *e, int fd, pa_io_event_flags_t f, void *userdata) {
261     size_t l, w = 0;
262     ssize_t r;
263     assert(a == mainloop_api && e && stdio_event == e);
264
265     if (buffer) {
266         mainloop_api->io_enable(stdio_event, PA_IO_EVENT_NULL);
267         return;
268     }
269
270     if (!stream || pa_stream_get_state(stream) != PA_STREAM_READY || !(l = w = pa_stream_writable_size(stream)))
271         l = 4096;
272     
273     buffer = malloc(l);
274     assert(buffer);
275     if ((r = read(fd, buffer, l)) <= 0) {
276         if (r == 0) {
277             pa_operation *o;
278             
279             if (verbose)
280                 fprintf(stderr, "Got EOF.\n");
281             
282             if (!(o = pa_stream_drain(stream, stream_drain_complete, NULL))) {
283                 fprintf(stderr, "pa_stream_drain(): %s\n", pa_strerror(pa_context_errno(context)));
284                 quit(1);
285                 return;
286             }
287
288             pa_operation_unref(o);
289         } else {
290             fprintf(stderr, "read() failed: %s\n", strerror(errno));
291             quit(1);
292         }
293
294         mainloop_api->io_free(stdio_event);
295         stdio_event = NULL;
296         return;
297     }
298
299     buffer_length = r;
300     buffer_index = 0;
301
302     if (w)
303         do_stream_write(w);
304 }
305
306 /* Some data may be written to STDOUT */
307 static void stdout_callback(pa_mainloop_api*a, pa_io_event *e, int fd, pa_io_event_flags_t f, void *userdata) {
308     ssize_t r;
309     assert(a == mainloop_api && e && stdio_event == e);
310
311     if (!buffer) {
312         mainloop_api->io_enable(stdio_event, PA_IO_EVENT_NULL);
313         return;
314     }
315
316     assert(buffer_length);
317     
318     if ((r = write(fd, (uint8_t*) buffer+buffer_index, buffer_length)) <= 0) {
319         fprintf(stderr, "write() failed: %s\n", strerror(errno));
320         quit(1);
321
322         mainloop_api->io_free(stdio_event);
323         stdio_event = NULL;
324         return;
325     }
326
327     buffer_length -= r;
328     buffer_index += r;
329
330     if (!buffer_length) {
331         free(buffer);
332         buffer = NULL;
333         buffer_length = buffer_index = 0;
334     }
335 }
336
337 /* UNIX signal to quit recieved */
338 static void exit_signal_callback(pa_mainloop_api*m, pa_signal_event *e, int sig, void *userdata) {
339     if (verbose)
340         fprintf(stderr, "Got signal, exiting.\n");
341     quit(0);
342     
343 }
344
345 /* Show the current latency */
346 static void stream_update_timing_callback(pa_stream *s, int success, void *userdata) {
347     pa_usec_t latency, usec;
348     int negative = 0;
349     
350     assert(s);
351
352     if (!success ||
353         pa_stream_get_time(s, &usec) < 0 ||
354         pa_stream_get_latency(s, &latency, &negative) < 0) {
355         fprintf(stderr, "Failed to get latency: %s\n", pa_strerror(pa_context_errno(context)));
356         quit(1);
357         return;
358     }
359
360     fprintf(stderr, "Time: %0.3f sec; Latency: %0.0f usec.  \r",
361             (float) usec / 1000000,
362             (float) latency * (negative?-1:1));
363 }
364
365 /* Someone requested that the latency is shown */
366 static void sigusr1_signal_callback(pa_mainloop_api*m, pa_signal_event *e, int sig, void *userdata) {
367
368     if (!stream)
369         return;
370     
371     pa_operation_unref(pa_stream_update_timing_info(stream, stream_update_timing_callback, NULL));
372 }
373
374 static void time_event_callback(pa_mainloop_api*m, pa_time_event *e, const struct timeval *tv, void *userdata) {
375     struct timeval next;
376     
377     if (stream && pa_stream_get_state(stream) == PA_STREAM_READY) {
378         pa_operation *o;
379         if (!(o = pa_stream_update_timing_info(stream, stream_update_timing_callback, NULL)))
380             fprintf(stderr, "pa_stream_update_timing_info() failed: %s\n", pa_strerror(pa_context_errno(context)));
381         else
382             pa_operation_unref(o);
383     }
384
385     pa_gettimeofday(&next);
386     pa_timeval_add(&next, TIME_EVENT_USEC);
387
388     m->time_restart(e, &next);
389 }
390
391 static void help(const char *argv0) {
392
393     printf("%s [options]\n\n"
394            "  -h, --help                            Show this help\n"
395            "      --version                         Show version\n\n"
396            "  -r, --record                          Create a connection for recording\n"
397            "  -p, --playback                        Create a connection for playback\n\n"
398            "  -v, --verbose                         Enable verbose operations\n\n"
399            "  -s, --server=SERVER                   The name of the server to connect to\n"
400            "  -d, --device=DEVICE                   The name of the sink/source to connect to\n"
401            "  -n, --client-name=NAME                How to call this client on the server\n"
402            "      --stream-name=NAME                How to call this stream on the server\n"
403            "      --volume=VOLUME                   Specify the initial (linear) volume in range 0...256\n"
404            "      --rate=SAMPLERATE                 The sample rate in Hz (defaults to 44100)\n"
405            "      --format=SAMPLEFORMAT             The sample type, one of s16le, s16be, u8, float32le,\n"
406            "                                        float32be, ulaw, alaw (defaults to s16ne)\n"
407            "      --channels=CHANNELS               The number of channels, 1 for mono, 2 for stereo\n"
408            "                                        (defaults to 2)\n",
409            argv0);
410 }
411
412 enum {
413     ARG_VERSION = 256,
414     ARG_STREAM_NAME,
415     ARG_VOLUME,
416     ARG_SAMPLERATE,
417     ARG_SAMPLEFORMAT,
418     ARG_CHANNELS
419 };
420
421 int main(int argc, char *argv[]) {
422     pa_mainloop* m = NULL;
423     int ret = 1, r, c;
424     char *bn, *server = NULL;
425     pa_time_event *time_event = NULL;
426
427     static const struct option long_options[] = {
428         {"record",      0, NULL, 'r'},
429         {"playback",    0, NULL, 'p'},
430         {"device",      1, NULL, 'd'},
431         {"server",      1, NULL, 's'},
432         {"client-name", 1, NULL, 'n'},
433         {"stream-name", 1, NULL, ARG_STREAM_NAME},
434         {"version",     0, NULL, ARG_VERSION},
435         {"help",        0, NULL, 'h'},
436         {"verbose",     0, NULL, 'v'},
437         {"volume",      1, NULL, ARG_VOLUME},
438         {"rate",        1, NULL, ARG_SAMPLERATE},
439         {"format",      1, NULL, ARG_SAMPLEFORMAT},
440         {"channels",    1, NULL, ARG_CHANNELS},
441         {NULL,          0, NULL, 0}
442     };
443
444     if (!(bn = strrchr(argv[0], '/')))
445         bn = argv[0];
446     else
447         bn++;
448
449     if (strstr(bn, "rec") || strstr(bn, "mon"))
450         mode = RECORD;
451     else if (strstr(bn, "cat") || strstr(bn, "play"))
452         mode = PLAYBACK;
453
454     while ((c = getopt_long(argc, argv, "rpd:s:n:hv", long_options, NULL)) != -1) {
455
456         switch (c) {
457             case 'h' :
458                 help(bn);
459                 ret = 0;
460                 goto quit;
461                 
462             case ARG_VERSION:
463                 printf("pacat "PACKAGE_VERSION"\nCompiled with libpolyp %s\nLinked with libpolyp %s\n", pa_get_headers_version(), pa_get_library_version());
464                 ret = 0;
465                 goto quit;
466
467             case 'r':
468                 mode = RECORD;
469                 break;
470
471             case 'p':
472                 mode = PLAYBACK;
473                 break;
474
475             case 'd':
476                 free(device);
477                 device = strdup(optarg);
478                 break;
479
480             case 's':
481                 free(server);
482                 server = strdup(optarg);
483                 break;
484
485             case 'n':
486                 free(client_name);
487                 client_name = strdup(optarg);
488                 break;
489
490             case ARG_STREAM_NAME:
491                 free(stream_name);
492                 stream_name = strdup(optarg);
493                 break;
494
495             case 'v':
496                 verbose = 1;
497                 break;
498
499             case ARG_VOLUME: {
500                 int v = atoi(optarg);
501                 volume = v < 0 ? 0 : v;
502                 break;
503             }
504
505             case ARG_CHANNELS: 
506                 sample_spec.channels = atoi(optarg);
507                 break;
508
509             case ARG_SAMPLEFORMAT:
510                 sample_spec.format = pa_parse_sample_format(optarg);
511                 break;
512
513             case ARG_SAMPLERATE:
514                 sample_spec.rate = atoi(optarg);
515                 break;
516
517             default:
518                 goto quit;
519         }
520     }
521
522     if (!client_name)
523         client_name = strdup(bn);
524
525     if (!stream_name)
526         stream_name = strdup(client_name);
527
528     if (!pa_sample_spec_valid(&sample_spec)) {
529         fprintf(stderr, "Invalid sample specification\n");
530         goto quit;
531     }
532     
533     if (verbose) {
534         char t[PA_SAMPLE_SPEC_SNPRINT_MAX];
535         pa_sample_spec_snprint(t, sizeof(t), &sample_spec);
536         fprintf(stderr, "Opening a %s stream with sample specification '%s'.\n", mode == RECORD ? "recording" : "playback", t);
537     }
538
539     if (!(optind >= argc)) {
540         if (optind+1 == argc) {
541             int fd;
542             
543             if ((fd = open(argv[optind], mode == PLAYBACK ? O_RDONLY : O_WRONLY|O_TRUNC|O_CREAT)) < 0) {
544                 fprintf(stderr, "open(): %s\n", strerror(errno));
545                 goto quit;
546             }
547             
548             if (dup2(fd, mode == PLAYBACK ? 0 : 1) < 0) {
549                 fprintf(stderr, "dup2(): %s\n", strerror(errno));
550                 goto quit;
551             }
552             
553             close(fd);
554         } else {
555             fprintf(stderr, "Too many arguments.\n");
556             goto quit;
557         }
558     }
559     
560     /* Set up a new main loop */
561     if (!(m = pa_mainloop_new())) {
562         fprintf(stderr, "pa_mainloop_new() failed.\n");
563         goto quit;
564     }
565
566     mainloop_api = pa_mainloop_get_api(m);
567
568     r = pa_signal_init(mainloop_api);
569     assert(r == 0);
570     pa_signal_new(SIGINT, exit_signal_callback, NULL);
571     pa_signal_new(SIGTERM, exit_signal_callback, NULL);
572 #ifdef SIGUSR1
573     pa_signal_new(SIGUSR1, sigusr1_signal_callback, NULL);
574 #endif
575 #ifdef SIGPIPE
576     signal(SIGPIPE, SIG_IGN);
577 #endif
578     
579     if (!(stdio_event = mainloop_api->io_new(mainloop_api,
580                                              mode == PLAYBACK ? STDIN_FILENO : STDOUT_FILENO,
581                                              mode == PLAYBACK ? PA_IO_EVENT_INPUT : PA_IO_EVENT_OUTPUT,
582                                              mode == PLAYBACK ? stdin_callback : stdout_callback, NULL))) {
583         fprintf(stderr, "io_new() failed.\n");
584         goto quit;
585     }
586
587     /* Create a new connection context */
588     if (!(context = pa_context_new(mainloop_api, client_name))) {
589         fprintf(stderr, "pa_context_new() failed.\n");
590         goto quit;
591     }
592
593     pa_context_set_state_callback(context, context_state_callback, NULL);
594
595     /* Connect the context */
596     pa_context_connect(context, server, 0, NULL);
597
598     if (verbose) {
599         struct timeval tv;
600
601         pa_gettimeofday(&tv);
602         pa_timeval_add(&tv, TIME_EVENT_USEC);
603         
604         if (!(time_event = mainloop_api->time_new(mainloop_api, &tv, time_event_callback, NULL))) {
605             fprintf(stderr, "time_new() failed.\n");
606             goto quit;
607         }
608     }
609
610     /* Run the main loop */
611     if (pa_mainloop_run(m, &ret) < 0) {
612         fprintf(stderr, "pa_mainloop_run() failed.\n");
613         goto quit;
614     }
615     
616 quit:
617     if (stream)
618         pa_stream_unref(stream);
619
620     if (context)
621         pa_context_unref(context);
622
623     if (stdio_event) {
624         assert(mainloop_api);
625         mainloop_api->io_free(stdio_event);
626     }
627
628     if (time_event) {
629         assert(mainloop_api);
630         mainloop_api->time_free(time_event);
631     }
632     
633     if (m) {
634         pa_signal_done();
635         pa_mainloop_free(m);
636     }
637
638     free(buffer);
639
640     free(server);
641     free(device);
642     free(client_name);
643     free(stream_name);
644     
645     return ret;
646 }