]> code.delx.au - pulseaudio/blob - src/utils/pactl.c
020085dd762c8091c2e82c3a0f181b4069829171
[pulseaudio] / src / utils / pactl.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 <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 <locale.h>
35 #include <ctype.h>
36
37 #include <sndfile.h>
38
39 #include <pulse/pulseaudio.h>
40 #include <pulse/ext-device-restore.h>
41
42 #include <pulsecore/i18n.h>
43 #include <pulsecore/macro.h>
44 #include <pulsecore/core-util.h>
45 #include <pulsecore/log.h>
46 #include <pulsecore/sndfile-util.h>
47
48 static pa_context *context = NULL;
49 static pa_mainloop_api *mainloop_api = NULL;
50
51 static char
52 *list_type = NULL,
53 *sample_name = NULL,
54 *sink_name = NULL,
55 *source_name = NULL,
56 *module_name = NULL,
57 *module_args = NULL,
58 *card_name = NULL,
59 *profile_name = NULL,
60 *port_name = NULL,
61 *formats = NULL;
62
63 static uint32_t
64 sink_input_idx = PA_INVALID_INDEX,
65 source_output_idx = PA_INVALID_INDEX,
66 sink_idx = PA_INVALID_INDEX;
67
68 static pa_bool_t short_list_format = FALSE;
69 static uint32_t module_index;
70 static int32_t latency_offset;
71 static pa_bool_t suspend;
72 static pa_volume_t volume;
73 static enum volume_flags {
74 VOL_UINT = 0,
75 VOL_PERCENT = 1,
76 VOL_LINEAR = 2,
77 VOL_DECIBEL = 3,
78 VOL_ABSOLUTE = 0 << 4,
79 VOL_RELATIVE = 1 << 4,
80 } volume_flags;
81
82 static enum mute_flags {
83 INVALID_MUTE = -1,
84 UNMUTE = 0,
85 MUTE = 1,
86 TOGGLE_MUTE = 2
87 } mute = INVALID_MUTE;
88
89 static pa_proplist *proplist = NULL;
90
91 static SNDFILE *sndfile = NULL;
92 static pa_stream *sample_stream = NULL;
93 static pa_sample_spec sample_spec;
94 static pa_channel_map channel_map;
95 static size_t sample_length = 0;
96 static int actions = 1;
97
98 static pa_bool_t nl = FALSE;
99
100 static enum {
101 NONE,
102 EXIT,
103 STAT,
104 INFO,
105 UPLOAD_SAMPLE,
106 PLAY_SAMPLE,
107 REMOVE_SAMPLE,
108 LIST,
109 MOVE_SINK_INPUT,
110 MOVE_SOURCE_OUTPUT,
111 LOAD_MODULE,
112 UNLOAD_MODULE,
113 SUSPEND_SINK,
114 SUSPEND_SOURCE,
115 SET_CARD_PROFILE,
116 SET_SINK_PORT,
117 SET_DEFAULT_SINK,
118 SET_SOURCE_PORT,
119 SET_DEFAULT_SOURCE,
120 SET_SINK_VOLUME,
121 SET_SOURCE_VOLUME,
122 SET_SINK_INPUT_VOLUME,
123 SET_SOURCE_OUTPUT_VOLUME,
124 SET_SINK_MUTE,
125 SET_SOURCE_MUTE,
126 SET_SINK_INPUT_MUTE,
127 SET_SOURCE_OUTPUT_MUTE,
128 SET_SINK_FORMATS,
129 SET_PORT_LATENCY_OFFSET,
130 SUBSCRIBE
131 } action = NONE;
132
133 static void quit(int ret) {
134 pa_assert(mainloop_api);
135 mainloop_api->quit(mainloop_api, ret);
136 }
137
138 static void context_drain_complete(pa_context *c, void *userdata) {
139 pa_context_disconnect(c);
140 }
141
142 static void drain(void) {
143 pa_operation *o;
144
145 if (!(o = pa_context_drain(context, context_drain_complete, NULL)))
146 pa_context_disconnect(context);
147 else
148 pa_operation_unref(o);
149 }
150
151 static void complete_action(void) {
152 pa_assert(actions > 0);
153
154 if (!(--actions))
155 drain();
156 }
157
158 static void stat_callback(pa_context *c, const pa_stat_info *i, void *userdata) {
159 char s[PA_BYTES_SNPRINT_MAX];
160 if (!i) {
161 pa_log(_("Failed to get statistics: %s"), pa_strerror(pa_context_errno(c)));
162 quit(1);
163 return;
164 }
165
166 pa_bytes_snprint(s, sizeof(s), i->memblock_total_size);
167 printf(_("Currently in use: %u blocks containing %s bytes total.\n"), i->memblock_total, s);
168
169 pa_bytes_snprint(s, sizeof(s), i->memblock_allocated_size);
170 printf(_("Allocated during whole lifetime: %u blocks containing %s bytes total.\n"), i->memblock_allocated, s);
171
172 pa_bytes_snprint(s, sizeof(s), i->scache_size);
173 printf(_("Sample cache size: %s\n"), s);
174
175 complete_action();
176 }
177
178 static void get_server_info_callback(pa_context *c, const pa_server_info *i, void *useerdata) {
179 char ss[PA_SAMPLE_SPEC_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
180
181 if (!i) {
182 pa_log(_("Failed to get server information: %s"), pa_strerror(pa_context_errno(c)));
183 quit(1);
184 return;
185 }
186
187 printf(_("Server String: %s\n"
188 "Library Protocol Version: %u\n"
189 "Server Protocol Version: %u\n"
190 "Is Local: %s\n"
191 "Client Index: %u\n"
192 "Tile Size: %zu\n"),
193 pa_context_get_server(c),
194 pa_context_get_protocol_version(c),
195 pa_context_get_server_protocol_version(c),
196 pa_yes_no(pa_context_is_local(c)),
197 pa_context_get_index(c),
198 pa_context_get_tile_size(c, NULL));
199
200 pa_sample_spec_snprint(ss, sizeof(ss), &i->sample_spec);
201 pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map);
202
203 printf(_("User Name: %s\n"
204 "Host Name: %s\n"
205 "Server Name: %s\n"
206 "Server Version: %s\n"
207 "Default Sample Specification: %s\n"
208 "Default Channel Map: %s\n"
209 "Default Sink: %s\n"
210 "Default Source: %s\n"
211 "Cookie: %04x:%04x\n"),
212 i->user_name,
213 i->host_name,
214 i->server_name,
215 i->server_version,
216 ss,
217 cm,
218 i->default_sink_name,
219 i->default_source_name,
220 i->cookie >> 16,
221 i->cookie & 0xFFFFU);
222
223 complete_action();
224 }
225
226 static const char* get_available_str_ynonly(int available)
227 {
228 switch (available) {
229 case PA_PORT_AVAILABLE_YES: return ", available";
230 case PA_PORT_AVAILABLE_NO: return ", not available";
231 }
232 return "";
233 }
234
235 static void get_sink_info_callback(pa_context *c, const pa_sink_info *i, int is_last, void *userdata) {
236
237 static const char *state_table[] = {
238 [1+PA_SINK_INVALID_STATE] = "n/a",
239 [1+PA_SINK_RUNNING] = "RUNNING",
240 [1+PA_SINK_IDLE] = "IDLE",
241 [1+PA_SINK_SUSPENDED] = "SUSPENDED"
242 };
243
244 char
245 s[PA_SAMPLE_SPEC_SNPRINT_MAX],
246 cv[PA_CVOLUME_SNPRINT_MAX],
247 cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX],
248 v[PA_VOLUME_SNPRINT_MAX],
249 vdb[PA_SW_VOLUME_SNPRINT_DB_MAX],
250 cm[PA_CHANNEL_MAP_SNPRINT_MAX],
251 f[PA_FORMAT_INFO_SNPRINT_MAX];
252 char *pl;
253
254 if (is_last < 0) {
255 pa_log(_("Failed to get sink information: %s"), pa_strerror(pa_context_errno(c)));
256 quit(1);
257 return;
258 }
259
260 if (is_last) {
261 complete_action();
262 return;
263 }
264
265 pa_assert(i);
266
267 if (nl && !short_list_format)
268 printf("\n");
269 nl = TRUE;
270
271 if (short_list_format) {
272 printf("%u\t%s\t%s\t%s\t%s\n",
273 i->index,
274 i->name,
275 pa_strnull(i->driver),
276 pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
277 state_table[1+i->state]);
278 return;
279 }
280
281 printf(_("Sink #%u\n"
282 "\tState: %s\n"
283 "\tName: %s\n"
284 "\tDescription: %s\n"
285 "\tDriver: %s\n"
286 "\tSample Specification: %s\n"
287 "\tChannel Map: %s\n"
288 "\tOwner Module: %u\n"
289 "\tMute: %s\n"
290 "\tVolume: %s%s%s\n"
291 "\t balance %0.2f\n"
292 "\tBase Volume: %s%s%s\n"
293 "\tMonitor Source: %s\n"
294 "\tLatency: %0.0f usec, configured %0.0f usec\n"
295 "\tFlags: %s%s%s%s%s%s%s\n"
296 "\tProperties:\n\t\t%s\n"),
297 i->index,
298 state_table[1+i->state],
299 i->name,
300 pa_strnull(i->description),
301 pa_strnull(i->driver),
302 pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
303 pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map),
304 i->owner_module,
305 pa_yes_no(i->mute),
306 pa_cvolume_snprint(cv, sizeof(cv), &i->volume),
307 i->flags & PA_SINK_DECIBEL_VOLUME ? "\n\t " : "",
308 i->flags & PA_SINK_DECIBEL_VOLUME ? pa_sw_cvolume_snprint_dB(cvdb, sizeof(cvdb), &i->volume) : "",
309 pa_cvolume_get_balance(&i->volume, &i->channel_map),
310 pa_volume_snprint(v, sizeof(v), i->base_volume),
311 i->flags & PA_SINK_DECIBEL_VOLUME ? "\n\t " : "",
312 i->flags & PA_SINK_DECIBEL_VOLUME ? pa_sw_volume_snprint_dB(vdb, sizeof(vdb), i->base_volume) : "",
313 pa_strnull(i->monitor_source_name),
314 (double) i->latency, (double) i->configured_latency,
315 i->flags & PA_SINK_HARDWARE ? "HARDWARE " : "",
316 i->flags & PA_SINK_NETWORK ? "NETWORK " : "",
317 i->flags & PA_SINK_HW_MUTE_CTRL ? "HW_MUTE_CTRL " : "",
318 i->flags & PA_SINK_HW_VOLUME_CTRL ? "HW_VOLUME_CTRL " : "",
319 i->flags & PA_SINK_DECIBEL_VOLUME ? "DECIBEL_VOLUME " : "",
320 i->flags & PA_SINK_LATENCY ? "LATENCY " : "",
321 i->flags & PA_SINK_SET_FORMATS ? "SET_FORMATS " : "",
322 pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
323
324 pa_xfree(pl);
325
326 if (i->ports) {
327 pa_sink_port_info **p;
328
329 printf(_("\tPorts:\n"));
330 for (p = i->ports; *p; p++)
331 printf("\t\t%s: %s (priority: %u%s)\n", (*p)->name, (*p)->description,
332 (*p)->priority, get_available_str_ynonly((*p)->available));
333 }
334
335 if (i->active_port)
336 printf(_("\tActive Port: %s\n"),
337 i->active_port->name);
338
339 if (i->formats) {
340 uint8_t j;
341
342 printf(_("\tFormats:\n"));
343 for (j = 0; j < i->n_formats; j++)
344 printf("\t\t%s\n", pa_format_info_snprint(f, sizeof(f), i->formats[j]));
345 }
346 }
347
348 static void get_source_info_callback(pa_context *c, const pa_source_info *i, int is_last, void *userdata) {
349
350 static const char *state_table[] = {
351 [1+PA_SOURCE_INVALID_STATE] = "n/a",
352 [1+PA_SOURCE_RUNNING] = "RUNNING",
353 [1+PA_SOURCE_IDLE] = "IDLE",
354 [1+PA_SOURCE_SUSPENDED] = "SUSPENDED"
355 };
356
357 char
358 s[PA_SAMPLE_SPEC_SNPRINT_MAX],
359 cv[PA_CVOLUME_SNPRINT_MAX],
360 cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX],
361 v[PA_VOLUME_SNPRINT_MAX],
362 vdb[PA_SW_VOLUME_SNPRINT_DB_MAX],
363 cm[PA_CHANNEL_MAP_SNPRINT_MAX],
364 f[PA_FORMAT_INFO_SNPRINT_MAX];
365 char *pl;
366
367 if (is_last < 0) {
368 pa_log(_("Failed to get source information: %s"), pa_strerror(pa_context_errno(c)));
369 quit(1);
370 return;
371 }
372
373 if (is_last) {
374 complete_action();
375 return;
376 }
377
378 pa_assert(i);
379
380 if (nl && !short_list_format)
381 printf("\n");
382 nl = TRUE;
383
384 if (short_list_format) {
385 printf("%u\t%s\t%s\t%s\t%s\n",
386 i->index,
387 i->name,
388 pa_strnull(i->driver),
389 pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
390 state_table[1+i->state]);
391 return;
392 }
393
394 printf(_("Source #%u\n"
395 "\tState: %s\n"
396 "\tName: %s\n"
397 "\tDescription: %s\n"
398 "\tDriver: %s\n"
399 "\tSample Specification: %s\n"
400 "\tChannel Map: %s\n"
401 "\tOwner Module: %u\n"
402 "\tMute: %s\n"
403 "\tVolume: %s%s%s\n"
404 "\t balance %0.2f\n"
405 "\tBase Volume: %s%s%s\n"
406 "\tMonitor of Sink: %s\n"
407 "\tLatency: %0.0f usec, configured %0.0f usec\n"
408 "\tFlags: %s%s%s%s%s%s\n"
409 "\tProperties:\n\t\t%s\n"),
410 i->index,
411 state_table[1+i->state],
412 i->name,
413 pa_strnull(i->description),
414 pa_strnull(i->driver),
415 pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
416 pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map),
417 i->owner_module,
418 pa_yes_no(i->mute),
419 pa_cvolume_snprint(cv, sizeof(cv), &i->volume),
420 i->flags & PA_SOURCE_DECIBEL_VOLUME ? "\n\t " : "",
421 i->flags & PA_SOURCE_DECIBEL_VOLUME ? pa_sw_cvolume_snprint_dB(cvdb, sizeof(cvdb), &i->volume) : "",
422 pa_cvolume_get_balance(&i->volume, &i->channel_map),
423 pa_volume_snprint(v, sizeof(v), i->base_volume),
424 i->flags & PA_SOURCE_DECIBEL_VOLUME ? "\n\t " : "",
425 i->flags & PA_SOURCE_DECIBEL_VOLUME ? pa_sw_volume_snprint_dB(vdb, sizeof(vdb), i->base_volume) : "",
426 i->monitor_of_sink_name ? i->monitor_of_sink_name : _("n/a"),
427 (double) i->latency, (double) i->configured_latency,
428 i->flags & PA_SOURCE_HARDWARE ? "HARDWARE " : "",
429 i->flags & PA_SOURCE_NETWORK ? "NETWORK " : "",
430 i->flags & PA_SOURCE_HW_MUTE_CTRL ? "HW_MUTE_CTRL " : "",
431 i->flags & PA_SOURCE_HW_VOLUME_CTRL ? "HW_VOLUME_CTRL " : "",
432 i->flags & PA_SOURCE_DECIBEL_VOLUME ? "DECIBEL_VOLUME " : "",
433 i->flags & PA_SOURCE_LATENCY ? "LATENCY " : "",
434 pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
435
436 pa_xfree(pl);
437
438 if (i->ports) {
439 pa_source_port_info **p;
440
441 printf(_("\tPorts:\n"));
442 for (p = i->ports; *p; p++)
443 printf("\t\t%s: %s (priority: %u%s)\n", (*p)->name, (*p)->description,
444 (*p)->priority, get_available_str_ynonly((*p)->available));
445 }
446
447 if (i->active_port)
448 printf(_("\tActive Port: %s\n"),
449 i->active_port->name);
450
451 if (i->formats) {
452 uint8_t j;
453
454 printf(_("\tFormats:\n"));
455 for (j = 0; j < i->n_formats; j++)
456 printf("\t\t%s\n", pa_format_info_snprint(f, sizeof(f), i->formats[j]));
457 }
458 }
459
460 static void get_module_info_callback(pa_context *c, const pa_module_info *i, int is_last, void *userdata) {
461 char t[32];
462 char *pl;
463
464 if (is_last < 0) {
465 pa_log(_("Failed to get module information: %s"), pa_strerror(pa_context_errno(c)));
466 quit(1);
467 return;
468 }
469
470 if (is_last) {
471 complete_action();
472 return;
473 }
474
475 pa_assert(i);
476
477 if (nl && !short_list_format)
478 printf("\n");
479 nl = TRUE;
480
481 pa_snprintf(t, sizeof(t), "%u", i->n_used);
482
483 if (short_list_format) {
484 printf("%u\t%s\t%s\t\n", i->index, i->name, i->argument ? i->argument : "");
485 return;
486 }
487
488 printf(_("Module #%u\n"
489 "\tName: %s\n"
490 "\tArgument: %s\n"
491 "\tUsage counter: %s\n"
492 "\tProperties:\n\t\t%s\n"),
493 i->index,
494 i->name,
495 i->argument ? i->argument : "",
496 i->n_used != PA_INVALID_INDEX ? t : _("n/a"),
497 pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
498
499 pa_xfree(pl);
500 }
501
502 static void get_client_info_callback(pa_context *c, const pa_client_info *i, int is_last, void *userdata) {
503 char t[32];
504 char *pl;
505
506 if (is_last < 0) {
507 pa_log(_("Failed to get client information: %s"), pa_strerror(pa_context_errno(c)));
508 quit(1);
509 return;
510 }
511
512 if (is_last) {
513 complete_action();
514 return;
515 }
516
517 pa_assert(i);
518
519 if (nl && !short_list_format)
520 printf("\n");
521 nl = TRUE;
522
523 pa_snprintf(t, sizeof(t), "%u", i->owner_module);
524
525 if (short_list_format) {
526 printf("%u\t%s\t%s\n",
527 i->index,
528 pa_strnull(i->driver),
529 pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_PROCESS_BINARY)));
530 return;
531 }
532
533 printf(_("Client #%u\n"
534 "\tDriver: %s\n"
535 "\tOwner Module: %s\n"
536 "\tProperties:\n\t\t%s\n"),
537 i->index,
538 pa_strnull(i->driver),
539 i->owner_module != PA_INVALID_INDEX ? t : _("n/a"),
540 pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
541
542 pa_xfree(pl);
543 }
544
545 static void get_card_info_callback(pa_context *c, const pa_card_info *i, int is_last, void *userdata) {
546 char t[32];
547 char *pl;
548
549 if (is_last < 0) {
550 pa_log(_("Failed to get card information: %s"), pa_strerror(pa_context_errno(c)));
551 complete_action();
552 return;
553 }
554
555 if (is_last) {
556 complete_action();
557 return;
558 }
559
560 pa_assert(i);
561
562 if (nl && !short_list_format)
563 printf("\n");
564 nl = TRUE;
565
566 pa_snprintf(t, sizeof(t), "%u", i->owner_module);
567
568 if (short_list_format) {
569 printf("%u\t%s\t%s\n", i->index, i->name, pa_strnull(i->driver));
570 return;
571 }
572
573 printf(_("Card #%u\n"
574 "\tName: %s\n"
575 "\tDriver: %s\n"
576 "\tOwner Module: %s\n"
577 "\tProperties:\n\t\t%s\n"),
578 i->index,
579 i->name,
580 pa_strnull(i->driver),
581 i->owner_module != PA_INVALID_INDEX ? t : _("n/a"),
582 pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
583
584 pa_xfree(pl);
585
586 if (i->profiles) {
587 pa_card_profile_info *p;
588
589 printf(_("\tProfiles:\n"));
590 for (p = i->profiles; p->name; p++)
591 printf("\t\t%s: %s (sinks: %u, sources: %u, priority. %u)\n", p->name, p->description, p->n_sinks, p->n_sources, p->priority);
592 }
593
594 if (i->active_profile)
595 printf(_("\tActive Profile: %s\n"),
596 i->active_profile->name);
597
598 if (i->ports) {
599 pa_card_port_info **p;
600
601 printf(_("\tPorts:\n"));
602 for (p = i->ports; *p; p++) {
603 pa_card_profile_info **pr = (*p)->profiles;
604 printf("\t\t%s: %s (priority: %u, latency offset: %" PRId64 " usec%s)\n", (*p)->name,
605 (*p)->description, (*p)->priority, (*p)->latency_offset,
606 get_available_str_ynonly((*p)->available));
607
608 if (!pa_proplist_isempty((*p)->proplist)) {
609 printf(_("\t\t\tProperties:\n\t\t\t\t%s\n"), pl = pa_proplist_to_string_sep((*p)->proplist, "\n\t\t\t\t"));
610 pa_xfree(pl);
611 }
612
613 if (pr) {
614 printf(_("\t\t\tPart of profile(s): %s"), pa_strnull((*pr)->name));
615 pr++;
616 while (*pr) {
617 printf(", %s", pa_strnull((*pr)->name));
618 pr++;
619 }
620 printf("\n");
621 }
622 }
623 }
624 }
625
626 static void get_sink_input_info_callback(pa_context *c, const pa_sink_input_info *i, int is_last, void *userdata) {
627 char t[32], k[32], s[PA_SAMPLE_SPEC_SNPRINT_MAX], cv[PA_CVOLUME_SNPRINT_MAX], cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX], f[PA_FORMAT_INFO_SNPRINT_MAX];
628 char *pl;
629
630 if (is_last < 0) {
631 pa_log(_("Failed to get sink input information: %s"), pa_strerror(pa_context_errno(c)));
632 quit(1);
633 return;
634 }
635
636 if (is_last) {
637 complete_action();
638 return;
639 }
640
641 pa_assert(i);
642
643 if (nl && !short_list_format)
644 printf("\n");
645 nl = TRUE;
646
647 pa_snprintf(t, sizeof(t), "%u", i->owner_module);
648 pa_snprintf(k, sizeof(k), "%u", i->client);
649
650 if (short_list_format) {
651 printf("%u\t%u\t%s\t%s\t%s\n",
652 i->index,
653 i->sink,
654 i->client != PA_INVALID_INDEX ? k : "-",
655 pa_strnull(i->driver),
656 pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec));
657 return;
658 }
659
660 printf(_("Sink Input #%u\n"
661 "\tDriver: %s\n"
662 "\tOwner Module: %s\n"
663 "\tClient: %s\n"
664 "\tSink: %u\n"
665 "\tSample Specification: %s\n"
666 "\tChannel Map: %s\n"
667 "\tFormat: %s\n"
668 "\tCorked: %s\n"
669 "\tMute: %s\n"
670 "\tVolume: %s\n"
671 "\t %s\n"
672 "\t balance %0.2f\n"
673 "\tBuffer Latency: %0.0f usec\n"
674 "\tSink Latency: %0.0f usec\n"
675 "\tResample method: %s\n"
676 "\tProperties:\n\t\t%s\n"),
677 i->index,
678 pa_strnull(i->driver),
679 i->owner_module != PA_INVALID_INDEX ? t : _("n/a"),
680 i->client != PA_INVALID_INDEX ? k : _("n/a"),
681 i->sink,
682 pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
683 pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map),
684 pa_format_info_snprint(f, sizeof(f), i->format),
685 pa_yes_no(i->corked),
686 pa_yes_no(i->mute),
687 pa_cvolume_snprint(cv, sizeof(cv), &i->volume),
688 pa_sw_cvolume_snprint_dB(cvdb, sizeof(cvdb), &i->volume),
689 pa_cvolume_get_balance(&i->volume, &i->channel_map),
690 (double) i->buffer_usec,
691 (double) i->sink_usec,
692 i->resample_method ? i->resample_method : _("n/a"),
693 pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
694
695 pa_xfree(pl);
696 }
697
698 static void get_source_output_info_callback(pa_context *c, const pa_source_output_info *i, int is_last, void *userdata) {
699 char t[32], k[32], s[PA_SAMPLE_SPEC_SNPRINT_MAX], cv[PA_CVOLUME_SNPRINT_MAX], cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX], f[PA_FORMAT_INFO_SNPRINT_MAX];
700 char *pl;
701
702 if (is_last < 0) {
703 pa_log(_("Failed to get source output information: %s"), pa_strerror(pa_context_errno(c)));
704 quit(1);
705 return;
706 }
707
708 if (is_last) {
709 complete_action();
710 return;
711 }
712
713 pa_assert(i);
714
715 if (nl && !short_list_format)
716 printf("\n");
717 nl = TRUE;
718
719
720 pa_snprintf(t, sizeof(t), "%u", i->owner_module);
721 pa_snprintf(k, sizeof(k), "%u", i->client);
722
723 if (short_list_format) {
724 printf("%u\t%u\t%s\t%s\t%s\n",
725 i->index,
726 i->source,
727 i->client != PA_INVALID_INDEX ? k : "-",
728 pa_strnull(i->driver),
729 pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec));
730 return;
731 }
732
733 printf(_("Source Output #%u\n"
734 "\tDriver: %s\n"
735 "\tOwner Module: %s\n"
736 "\tClient: %s\n"
737 "\tSource: %u\n"
738 "\tSample Specification: %s\n"
739 "\tChannel Map: %s\n"
740 "\tFormat: %s\n"
741 "\tCorked: %s\n"
742 "\tMute: %s\n"
743 "\tVolume: %s\n"
744 "\t %s\n"
745 "\t balance %0.2f\n"
746 "\tBuffer Latency: %0.0f usec\n"
747 "\tSource Latency: %0.0f usec\n"
748 "\tResample method: %s\n"
749 "\tProperties:\n\t\t%s\n"),
750 i->index,
751 pa_strnull(i->driver),
752 i->owner_module != PA_INVALID_INDEX ? t : _("n/a"),
753 i->client != PA_INVALID_INDEX ? k : _("n/a"),
754 i->source,
755 pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec),
756 pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map),
757 pa_format_info_snprint(f, sizeof(f), i->format),
758 pa_yes_no(i->corked),
759 pa_yes_no(i->mute),
760 pa_cvolume_snprint(cv, sizeof(cv), &i->volume),
761 pa_sw_cvolume_snprint_dB(cvdb, sizeof(cvdb), &i->volume),
762 pa_cvolume_get_balance(&i->volume, &i->channel_map),
763 (double) i->buffer_usec,
764 (double) i->source_usec,
765 i->resample_method ? i->resample_method : _("n/a"),
766 pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
767
768 pa_xfree(pl);
769 }
770
771 static void get_sample_info_callback(pa_context *c, const pa_sample_info *i, int is_last, void *userdata) {
772 char t[PA_BYTES_SNPRINT_MAX], s[PA_SAMPLE_SPEC_SNPRINT_MAX], cv[PA_CVOLUME_SNPRINT_MAX], cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
773 char *pl;
774
775 if (is_last < 0) {
776 pa_log(_("Failed to get sample information: %s"), pa_strerror(pa_context_errno(c)));
777 quit(1);
778 return;
779 }
780
781 if (is_last) {
782 complete_action();
783 return;
784 }
785
786 pa_assert(i);
787
788 if (nl && !short_list_format)
789 printf("\n");
790 nl = TRUE;
791
792 pa_bytes_snprint(t, sizeof(t), i->bytes);
793
794 if (short_list_format) {
795 printf("%u\t%s\t%s\t%0.3f\n",
796 i->index,
797 i->name,
798 pa_sample_spec_valid(&i->sample_spec) ? pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec) : "-",
799 (double) i->duration/1000000.0);
800 return;
801 }
802
803 printf(_("Sample #%u\n"
804 "\tName: %s\n"
805 "\tSample Specification: %s\n"
806 "\tChannel Map: %s\n"
807 "\tVolume: %s\n"
808 "\t %s\n"
809 "\t balance %0.2f\n"
810 "\tDuration: %0.1fs\n"
811 "\tSize: %s\n"
812 "\tLazy: %s\n"
813 "\tFilename: %s\n"
814 "\tProperties:\n\t\t%s\n"),
815 i->index,
816 i->name,
817 pa_sample_spec_valid(&i->sample_spec) ? pa_sample_spec_snprint(s, sizeof(s), &i->sample_spec) : _("n/a"),
818 pa_sample_spec_valid(&i->sample_spec) ? pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map) : _("n/a"),
819 pa_cvolume_snprint(cv, sizeof(cv), &i->volume),
820 pa_sw_cvolume_snprint_dB(cvdb, sizeof(cvdb), &i->volume),
821 pa_cvolume_get_balance(&i->volume, &i->channel_map),
822 (double) i->duration/1000000.0,
823 t,
824 pa_yes_no(i->lazy),
825 i->filename ? i->filename : _("n/a"),
826 pl = pa_proplist_to_string_sep(i->proplist, "\n\t\t"));
827
828 pa_xfree(pl);
829 }
830
831 static void simple_callback(pa_context *c, int success, void *userdata) {
832 if (!success) {
833 pa_log(_("Failure: %s"), pa_strerror(pa_context_errno(c)));
834 quit(1);
835 return;
836 }
837
838 complete_action();
839 }
840
841 static void index_callback(pa_context *c, uint32_t idx, void *userdata) {
842 if (idx == PA_INVALID_INDEX) {
843 pa_log(_("Failure: %s"), pa_strerror(pa_context_errno(c)));
844 quit(1);
845 return;
846 }
847
848 printf("%u\n", idx);
849
850 complete_action();
851 }
852
853 static void volume_relative_adjust(pa_cvolume *cv) {
854 pa_assert((volume_flags & VOL_RELATIVE) == VOL_RELATIVE);
855
856 /* Relative volume change is additive in case of UINT or PERCENT
857 * and multiplicative for LINEAR or DECIBEL */
858 if ((volume_flags & 0x0F) == VOL_UINT || (volume_flags & 0x0F) == VOL_PERCENT) {
859 pa_volume_t v = pa_cvolume_avg(cv);
860 v = v + volume < PA_VOLUME_NORM ? PA_VOLUME_MUTED : v + volume - PA_VOLUME_NORM;
861 pa_cvolume_set(cv, 1, v);
862 }
863 if ((volume_flags & 0x0F) == VOL_LINEAR || (volume_flags & 0x0F) == VOL_DECIBEL) {
864 pa_sw_cvolume_multiply_scalar(cv, cv, volume);
865 }
866 }
867
868 static void unload_module_by_name_callback(pa_context *c, const pa_module_info *i, int is_last, void *userdata) {
869 static pa_bool_t unloaded = FALSE;
870
871 if (is_last < 0) {
872 pa_log(_("Failed to get module information: %s"), pa_strerror(pa_context_errno(c)));
873 quit(1);
874 return;
875 }
876
877 if (is_last) {
878 if (unloaded == FALSE)
879 pa_log(_("Failed to unload module: Module %s not loaded"), module_name);
880 complete_action();
881 return;
882 }
883
884 pa_assert(i);
885
886 if (pa_streq(module_name, i->name)) {
887 unloaded = TRUE;
888 actions++;
889 pa_operation_unref(pa_context_unload_module(c, i->index, simple_callback, NULL));
890 }
891 }
892
893 static void get_sink_volume_callback(pa_context *c, const pa_sink_info *i, int is_last, void *userdata) {
894 pa_cvolume cv;
895
896 if (is_last < 0) {
897 pa_log(_("Failed to get sink information: %s"), pa_strerror(pa_context_errno(c)));
898 quit(1);
899 return;
900 }
901
902 if (is_last)
903 return;
904
905 pa_assert(i);
906
907 cv = i->volume;
908 volume_relative_adjust(&cv);
909 pa_operation_unref(pa_context_set_sink_volume_by_name(c, sink_name, &cv, simple_callback, NULL));
910 }
911
912 static void get_source_volume_callback(pa_context *c, const pa_source_info *i, int is_last, void *userdata) {
913 pa_cvolume cv;
914
915 if (is_last < 0) {
916 pa_log(_("Failed to get source information: %s"), pa_strerror(pa_context_errno(c)));
917 quit(1);
918 return;
919 }
920
921 if (is_last)
922 return;
923
924 pa_assert(i);
925
926 cv = i->volume;
927 volume_relative_adjust(&cv);
928 pa_operation_unref(pa_context_set_source_volume_by_name(c, source_name, &cv, simple_callback, NULL));
929 }
930
931 static void get_sink_input_volume_callback(pa_context *c, const pa_sink_input_info *i, int is_last, void *userdata) {
932 pa_cvolume cv;
933
934 if (is_last < 0) {
935 pa_log(_("Failed to get sink input information: %s"), pa_strerror(pa_context_errno(c)));
936 quit(1);
937 return;
938 }
939
940 if (is_last)
941 return;
942
943 pa_assert(i);
944
945 cv = i->volume;
946 volume_relative_adjust(&cv);
947 pa_operation_unref(pa_context_set_sink_input_volume(c, sink_input_idx, &cv, simple_callback, NULL));
948 }
949
950 static void get_source_output_volume_callback(pa_context *c, const pa_source_output_info *o, int is_last, void *userdata) {
951 pa_cvolume cv;
952
953 if (is_last < 0) {
954 pa_log(_("Failed to get source output information: %s"), pa_strerror(pa_context_errno(c)));
955 quit(1);
956 return;
957 }
958
959 if (is_last)
960 return;
961
962 pa_assert(o);
963
964 cv = o->volume;
965 volume_relative_adjust(&cv);
966 pa_operation_unref(pa_context_set_source_output_volume(c, source_output_idx, &cv, simple_callback, NULL));
967 }
968
969 static void sink_toggle_mute_callback(pa_context *c, const pa_sink_info *i, int is_last, void *userdata) {
970 if (is_last < 0) {
971 pa_log(_("Failed to get sink information: %s"), pa_strerror(pa_context_errno(c)));
972 quit(1);
973 return;
974 }
975
976 if (is_last)
977 return;
978
979 pa_assert(i);
980
981 pa_operation_unref(pa_context_set_sink_mute_by_name(c, i->name, !i->mute, simple_callback, NULL));
982 }
983
984 static void source_toggle_mute_callback(pa_context *c, const pa_source_info *o, int is_last, void *userdata) {
985 if (is_last < 0) {
986 pa_log(_("Failed to get source information: %s"), pa_strerror(pa_context_errno(c)));
987 quit(1);
988 return;
989 }
990
991 if (is_last)
992 return;
993
994 pa_assert(o);
995
996 pa_operation_unref(pa_context_set_source_mute_by_name(c, o->name, !o->mute, simple_callback, NULL));
997 }
998
999 static void sink_input_toggle_mute_callback(pa_context *c, const pa_sink_input_info *i, int is_last, void *userdata) {
1000 if (is_last < 0) {
1001 pa_log(_("Failed to get sink input information: %s"), pa_strerror(pa_context_errno(c)));
1002 quit(1);
1003 return;
1004 }
1005
1006 if (is_last)
1007 return;
1008
1009 pa_assert(i);
1010
1011 pa_operation_unref(pa_context_set_sink_input_mute(c, i->index, !i->mute, simple_callback, NULL));
1012 }
1013
1014 static void source_output_toggle_mute_callback(pa_context *c, const pa_source_output_info *o, int is_last, void *userdata) {
1015 if (is_last < 0) {
1016 pa_log(_("Failed to get source output information: %s"), pa_strerror(pa_context_errno(c)));
1017 quit(1);
1018 return;
1019 }
1020
1021 if (is_last)
1022 return;
1023
1024 pa_assert(o);
1025
1026 pa_operation_unref(pa_context_set_source_output_mute(c, o->index, !o->mute, simple_callback, NULL));
1027 }
1028
1029 /* PA_MAX_FORMATS is defined in internal.h so we just define a sane value here */
1030 #define MAX_FORMATS 256
1031
1032 static void set_sink_formats(pa_context *c, uint32_t sink, const char *str) {
1033 pa_format_info *f_arr[MAX_FORMATS];
1034 char *format = NULL;
1035 const char *state = NULL;
1036 int i = 0;
1037
1038 while ((format = pa_split(str, ";", &state))) {
1039 pa_format_info *f = pa_format_info_from_string(pa_strip(format));
1040
1041 if (!f) {
1042 pa_log(_("Failed to set format: invalid format string %s"), format);
1043 goto error;
1044 }
1045
1046 f_arr[i++] = f;
1047 pa_xfree(format);
1048 }
1049
1050 pa_operation_unref(pa_ext_device_restore_save_formats(c, PA_DEVICE_TYPE_SINK, sink, i, f_arr, simple_callback, NULL));
1051
1052 done:
1053 if (format)
1054 pa_xfree(format);
1055 while(i--)
1056 pa_format_info_free(f_arr[i]);
1057
1058 return;
1059
1060 error:
1061 while(i--)
1062 pa_format_info_free(f_arr[i]);
1063 quit(1);
1064 goto done;
1065 }
1066
1067 static void stream_state_callback(pa_stream *s, void *userdata) {
1068 pa_assert(s);
1069
1070 switch (pa_stream_get_state(s)) {
1071 case PA_STREAM_CREATING:
1072 case PA_STREAM_READY:
1073 break;
1074
1075 case PA_STREAM_TERMINATED:
1076 drain();
1077 break;
1078
1079 case PA_STREAM_FAILED:
1080 default:
1081 pa_log(_("Failed to upload sample: %s"), pa_strerror(pa_context_errno(pa_stream_get_context(s))));
1082 quit(1);
1083 }
1084 }
1085
1086 static void stream_write_callback(pa_stream *s, size_t length, void *userdata) {
1087 sf_count_t l;
1088 float *d;
1089 pa_assert(s && length && sndfile);
1090
1091 d = pa_xmalloc(length);
1092
1093 pa_assert(sample_length >= length);
1094 l = (sf_count_t) (length/pa_frame_size(&sample_spec));
1095
1096 if ((sf_readf_float(sndfile, d, l)) != l) {
1097 pa_xfree(d);
1098 pa_log(_("Premature end of file"));
1099 quit(1);
1100 return;
1101 }
1102
1103 pa_stream_write(s, d, length, pa_xfree, 0, PA_SEEK_RELATIVE);
1104
1105 sample_length -= length;
1106
1107 if (sample_length <= 0) {
1108 pa_stream_set_write_callback(sample_stream, NULL, NULL);
1109 pa_stream_finish_upload(sample_stream);
1110 }
1111 }
1112
1113 static const char *subscription_event_type_to_string(pa_subscription_event_type_t t) {
1114
1115 switch (t & PA_SUBSCRIPTION_EVENT_TYPE_MASK) {
1116
1117 case PA_SUBSCRIPTION_EVENT_NEW:
1118 return _("new");
1119
1120 case PA_SUBSCRIPTION_EVENT_CHANGE:
1121 return _("change");
1122
1123 case PA_SUBSCRIPTION_EVENT_REMOVE:
1124 return _("remove");
1125 }
1126
1127 return _("unknown");
1128 }
1129
1130 static const char *subscription_event_facility_to_string(pa_subscription_event_type_t t) {
1131
1132 switch (t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) {
1133
1134 case PA_SUBSCRIPTION_EVENT_SINK:
1135 return _("sink");
1136
1137 case PA_SUBSCRIPTION_EVENT_SOURCE:
1138 return _("source");
1139
1140 case PA_SUBSCRIPTION_EVENT_SINK_INPUT:
1141 return _("sink-input");
1142
1143 case PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT:
1144 return _("source-output");
1145
1146 case PA_SUBSCRIPTION_EVENT_MODULE:
1147 return _("module");
1148
1149 case PA_SUBSCRIPTION_EVENT_CLIENT:
1150 return _("client");
1151
1152 case PA_SUBSCRIPTION_EVENT_SAMPLE_CACHE:
1153 return _("sample-cache");
1154
1155 case PA_SUBSCRIPTION_EVENT_SERVER:
1156 return _("server");
1157
1158 case PA_SUBSCRIPTION_EVENT_CARD:
1159 return _("server");
1160 }
1161
1162 return _("unknown");
1163 }
1164
1165 static void context_subscribe_callback(pa_context *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata) {
1166 pa_assert(c);
1167
1168 printf(_("Event '%s' on %s #%u\n"),
1169 subscription_event_type_to_string(t),
1170 subscription_event_facility_to_string(t),
1171 idx);
1172 }
1173
1174 static void context_state_callback(pa_context *c, void *userdata) {
1175 pa_assert(c);
1176 switch (pa_context_get_state(c)) {
1177 case PA_CONTEXT_CONNECTING:
1178 case PA_CONTEXT_AUTHORIZING:
1179 case PA_CONTEXT_SETTING_NAME:
1180 break;
1181
1182 case PA_CONTEXT_READY:
1183 switch (action) {
1184 case STAT:
1185 pa_operation_unref(pa_context_stat(c, stat_callback, NULL));
1186 if (short_list_format)
1187 break;
1188 actions++;
1189
1190 case INFO:
1191 pa_operation_unref(pa_context_get_server_info(c, get_server_info_callback, NULL));
1192 break;
1193
1194 case PLAY_SAMPLE:
1195 pa_operation_unref(pa_context_play_sample(c, sample_name, sink_name, PA_VOLUME_NORM, simple_callback, NULL));
1196 break;
1197
1198 case REMOVE_SAMPLE:
1199 pa_operation_unref(pa_context_remove_sample(c, sample_name, simple_callback, NULL));
1200 break;
1201
1202 case UPLOAD_SAMPLE:
1203 sample_stream = pa_stream_new(c, sample_name, &sample_spec, NULL);
1204 pa_assert(sample_stream);
1205
1206 pa_stream_set_state_callback(sample_stream, stream_state_callback, NULL);
1207 pa_stream_set_write_callback(sample_stream, stream_write_callback, NULL);
1208 pa_stream_connect_upload(sample_stream, sample_length);
1209 break;
1210
1211 case EXIT:
1212 pa_operation_unref(pa_context_exit_daemon(c, simple_callback, NULL));
1213 break;
1214
1215 case LIST:
1216 if (list_type) {
1217 if (pa_streq(list_type, "modules"))
1218 pa_operation_unref(pa_context_get_module_info_list(c, get_module_info_callback, NULL));
1219 else if (pa_streq(list_type, "sinks"))
1220 pa_operation_unref(pa_context_get_sink_info_list(c, get_sink_info_callback, NULL));
1221 else if (pa_streq(list_type, "sources"))
1222 pa_operation_unref(pa_context_get_source_info_list(c, get_source_info_callback, NULL));
1223 else if (pa_streq(list_type, "sink-inputs"))
1224 pa_operation_unref(pa_context_get_sink_input_info_list(c, get_sink_input_info_callback, NULL));
1225 else if (pa_streq(list_type, "source-outputs"))
1226 pa_operation_unref(pa_context_get_source_output_info_list(c, get_source_output_info_callback, NULL));
1227 else if (pa_streq(list_type, "clients"))
1228 pa_operation_unref(pa_context_get_client_info_list(c, get_client_info_callback, NULL));
1229 else if (pa_streq(list_type, "samples"))
1230 pa_operation_unref(pa_context_get_sample_info_list(c, get_sample_info_callback, NULL));
1231 else if (pa_streq(list_type, "cards"))
1232 pa_operation_unref(pa_context_get_card_info_list(c, get_card_info_callback, NULL));
1233 else
1234 pa_assert_not_reached();
1235 } else {
1236 actions = 8;
1237 pa_operation_unref(pa_context_get_module_info_list(c, get_module_info_callback, NULL));
1238 pa_operation_unref(pa_context_get_sink_info_list(c, get_sink_info_callback, NULL));
1239 pa_operation_unref(pa_context_get_source_info_list(c, get_source_info_callback, NULL));
1240 pa_operation_unref(pa_context_get_sink_input_info_list(c, get_sink_input_info_callback, NULL));
1241 pa_operation_unref(pa_context_get_source_output_info_list(c, get_source_output_info_callback, NULL));
1242 pa_operation_unref(pa_context_get_client_info_list(c, get_client_info_callback, NULL));
1243 pa_operation_unref(pa_context_get_sample_info_list(c, get_sample_info_callback, NULL));
1244 pa_operation_unref(pa_context_get_card_info_list(c, get_card_info_callback, NULL));
1245 }
1246 break;
1247
1248 case MOVE_SINK_INPUT:
1249 pa_operation_unref(pa_context_move_sink_input_by_name(c, sink_input_idx, sink_name, simple_callback, NULL));
1250 break;
1251
1252 case MOVE_SOURCE_OUTPUT:
1253 pa_operation_unref(pa_context_move_source_output_by_name(c, source_output_idx, source_name, simple_callback, NULL));
1254 break;
1255
1256 case LOAD_MODULE:
1257 pa_operation_unref(pa_context_load_module(c, module_name, module_args, index_callback, NULL));
1258 break;
1259
1260 case UNLOAD_MODULE:
1261 if (module_name)
1262 pa_operation_unref(pa_context_get_module_info_list(c, unload_module_by_name_callback, NULL));
1263 else
1264 pa_operation_unref(pa_context_unload_module(c, module_index, simple_callback, NULL));
1265 break;
1266
1267 case SUSPEND_SINK:
1268 if (sink_name)
1269 pa_operation_unref(pa_context_suspend_sink_by_name(c, sink_name, suspend, simple_callback, NULL));
1270 else
1271 pa_operation_unref(pa_context_suspend_sink_by_index(c, PA_INVALID_INDEX, suspend, simple_callback, NULL));
1272 break;
1273
1274 case SUSPEND_SOURCE:
1275 if (source_name)
1276 pa_operation_unref(pa_context_suspend_source_by_name(c, source_name, suspend, simple_callback, NULL));
1277 else
1278 pa_operation_unref(pa_context_suspend_source_by_index(c, PA_INVALID_INDEX, suspend, simple_callback, NULL));
1279 break;
1280
1281 case SET_CARD_PROFILE:
1282 pa_operation_unref(pa_context_set_card_profile_by_name(c, card_name, profile_name, simple_callback, NULL));
1283 break;
1284
1285 case SET_SINK_PORT:
1286 pa_operation_unref(pa_context_set_sink_port_by_name(c, sink_name, port_name, simple_callback, NULL));
1287 break;
1288
1289 case SET_DEFAULT_SINK:
1290 pa_operation_unref(pa_context_set_default_sink(c, sink_name, simple_callback, NULL));
1291 break;
1292
1293 case SET_SOURCE_PORT:
1294 pa_operation_unref(pa_context_set_source_port_by_name(c, source_name, port_name, simple_callback, NULL));
1295 break;
1296
1297 case SET_DEFAULT_SOURCE:
1298 pa_operation_unref(pa_context_set_default_source(c, source_name, simple_callback, NULL));
1299 break;
1300
1301 case SET_SINK_MUTE:
1302 if (mute == TOGGLE_MUTE)
1303 pa_operation_unref(pa_context_get_sink_info_by_name(c, sink_name, sink_toggle_mute_callback, NULL));
1304 else
1305 pa_operation_unref(pa_context_set_sink_mute_by_name(c, sink_name, mute, simple_callback, NULL));
1306 break;
1307
1308 case SET_SOURCE_MUTE:
1309 if (mute == TOGGLE_MUTE)
1310 pa_operation_unref(pa_context_get_source_info_by_name(c, source_name, source_toggle_mute_callback, NULL));
1311 else
1312 pa_operation_unref(pa_context_set_source_mute_by_name(c, source_name, mute, simple_callback, NULL));
1313 break;
1314
1315 case SET_SINK_INPUT_MUTE:
1316 if (mute == TOGGLE_MUTE)
1317 pa_operation_unref(pa_context_get_sink_input_info(c, sink_input_idx, sink_input_toggle_mute_callback, NULL));
1318 else
1319 pa_operation_unref(pa_context_set_sink_input_mute(c, sink_input_idx, mute, simple_callback, NULL));
1320 break;
1321
1322 case SET_SOURCE_OUTPUT_MUTE:
1323 if (mute == TOGGLE_MUTE)
1324 pa_operation_unref(pa_context_get_source_output_info(c, source_output_idx, source_output_toggle_mute_callback, NULL));
1325 else
1326 pa_operation_unref(pa_context_set_source_output_mute(c, source_output_idx, mute, simple_callback, NULL));
1327 break;
1328
1329 case SET_SINK_VOLUME:
1330 if ((volume_flags & VOL_RELATIVE) == VOL_RELATIVE) {
1331 pa_operation_unref(pa_context_get_sink_info_by_name(c, sink_name, get_sink_volume_callback, NULL));
1332 } else {
1333 pa_cvolume v;
1334 pa_cvolume_set(&v, 1, volume);
1335 pa_operation_unref(pa_context_set_sink_volume_by_name(c, sink_name, &v, simple_callback, NULL));
1336 }
1337 break;
1338
1339 case SET_SOURCE_VOLUME:
1340 if ((volume_flags & VOL_RELATIVE) == VOL_RELATIVE) {
1341 pa_operation_unref(pa_context_get_source_info_by_name(c, source_name, get_source_volume_callback, NULL));
1342 } else {
1343 pa_cvolume v;
1344 pa_cvolume_set(&v, 1, volume);
1345 pa_operation_unref(pa_context_set_source_volume_by_name(c, source_name, &v, simple_callback, NULL));
1346 }
1347 break;
1348
1349 case SET_SINK_INPUT_VOLUME:
1350 if ((volume_flags & VOL_RELATIVE) == VOL_RELATIVE) {
1351 pa_operation_unref(pa_context_get_sink_input_info(c, sink_input_idx, get_sink_input_volume_callback, NULL));
1352 } else {
1353 pa_cvolume v;
1354 pa_cvolume_set(&v, 1, volume);
1355 pa_operation_unref(pa_context_set_sink_input_volume(c, sink_input_idx, &v, simple_callback, NULL));
1356 }
1357 break;
1358
1359 case SET_SOURCE_OUTPUT_VOLUME:
1360 if ((volume_flags & VOL_RELATIVE) == VOL_RELATIVE) {
1361 pa_operation_unref(pa_context_get_source_output_info(c, source_output_idx, get_source_output_volume_callback, NULL));
1362 } else {
1363 pa_cvolume v;
1364 pa_cvolume_set(&v, 1, volume);
1365 pa_operation_unref(pa_context_set_source_output_volume(c, source_output_idx, &v, simple_callback, NULL));
1366 }
1367 break;
1368
1369 case SET_SINK_FORMATS:
1370 set_sink_formats(c, sink_idx, formats);
1371 break;
1372
1373 case SET_PORT_LATENCY_OFFSET:
1374 pa_operation_unref(pa_context_set_port_latency_offset(c, card_name, port_name, latency_offset, simple_callback, NULL));
1375 break;
1376
1377 case SUBSCRIBE:
1378 pa_context_set_subscribe_callback(c, context_subscribe_callback, NULL);
1379
1380 pa_operation_unref(pa_context_subscribe(
1381 c,
1382 PA_SUBSCRIPTION_MASK_SINK|
1383 PA_SUBSCRIPTION_MASK_SOURCE|
1384 PA_SUBSCRIPTION_MASK_SINK_INPUT|
1385 PA_SUBSCRIPTION_MASK_SOURCE_OUTPUT|
1386 PA_SUBSCRIPTION_MASK_MODULE|
1387 PA_SUBSCRIPTION_MASK_CLIENT|
1388 PA_SUBSCRIPTION_MASK_SAMPLE_CACHE|
1389 PA_SUBSCRIPTION_MASK_SERVER|
1390 PA_SUBSCRIPTION_MASK_CARD,
1391 NULL,
1392 NULL));
1393 break;
1394
1395 default:
1396 pa_assert_not_reached();
1397 }
1398 break;
1399
1400 case PA_CONTEXT_TERMINATED:
1401 quit(0);
1402 break;
1403
1404 case PA_CONTEXT_FAILED:
1405 default:
1406 pa_log(_("Connection failure: %s"), pa_strerror(pa_context_errno(c)));
1407 quit(1);
1408 }
1409 }
1410
1411 static void exit_signal_callback(pa_mainloop_api *m, pa_signal_event *e, int sig, void *userdata) {
1412 pa_log(_("Got SIGINT, exiting."));
1413 quit(0);
1414 }
1415
1416 static int parse_volume(const char *vol_spec, pa_volume_t *vol, enum volume_flags *vol_flags) {
1417 double v;
1418 char *vs;
1419
1420 pa_assert(vol_spec);
1421 pa_assert(vol);
1422 pa_assert(vol_flags);
1423
1424 vs = pa_xstrdup(vol_spec);
1425
1426 *vol_flags = (pa_startswith(vs, "+") || pa_startswith(vs, "-")) ? VOL_RELATIVE : VOL_ABSOLUTE;
1427 if (strchr(vs, '.'))
1428 *vol_flags |= VOL_LINEAR;
1429 if (pa_endswith(vs, "%")) {
1430 *vol_flags |= VOL_PERCENT;
1431 vs[strlen(vs)-1] = 0;
1432 }
1433 if (pa_endswith(vs, "db") || pa_endswith(vs, "dB")) {
1434 *vol_flags |= VOL_DECIBEL;
1435 vs[strlen(vs)-2] = 0;
1436 }
1437
1438 if (pa_atod(vs, &v) < 0) {
1439 pa_log(_("Invalid volume specification"));
1440 pa_xfree(vs);
1441 return -1;
1442 }
1443
1444 pa_xfree(vs);
1445
1446 if ((*vol_flags & VOL_RELATIVE) == VOL_RELATIVE) {
1447 if ((*vol_flags & 0x0F) == VOL_UINT)
1448 v += (double) PA_VOLUME_NORM;
1449 if ((*vol_flags & 0x0F) == VOL_PERCENT)
1450 v += 100.0;
1451 if ((*vol_flags & 0x0F) == VOL_LINEAR)
1452 v += 1.0;
1453 }
1454 if ((*vol_flags & 0x0F) == VOL_PERCENT)
1455 v = v * (double) PA_VOLUME_NORM / 100;
1456 if ((*vol_flags & 0x0F) == VOL_LINEAR)
1457 v = pa_sw_volume_from_linear(v);
1458 if ((*vol_flags & 0x0F) == VOL_DECIBEL)
1459 v = pa_sw_volume_from_dB(v);
1460
1461 if (!PA_VOLUME_IS_VALID((pa_volume_t) v)) {
1462 pa_log(_("Volume outside permissible range.\n"));
1463 return -1;
1464 }
1465
1466 *vol = (pa_volume_t) v;
1467
1468 return 0;
1469 }
1470
1471 static enum mute_flags parse_mute(const char *mute_text) {
1472 int b;
1473
1474 pa_assert(mute_text);
1475
1476 if (pa_streq("toggle", mute_text))
1477 return TOGGLE_MUTE;
1478
1479 b = pa_parse_boolean(mute_text);
1480 switch (b) {
1481 case 0:
1482 return UNMUTE;
1483 case 1:
1484 return MUTE;
1485 default:
1486 return INVALID_MUTE;
1487 }
1488 }
1489
1490 static void help(const char *argv0) {
1491
1492 printf("%s %s %s\n", argv0, _("[options]"), "stat [short]");
1493 printf("%s %s %s\n", argv0, _("[options]"), "info");
1494 printf("%s %s %s %s\n", argv0, _("[options]"), "list [short]", _("[TYPE]"));
1495 printf("%s %s %s\n", argv0, _("[options]"), "exit");
1496 printf("%s %s %s %s\n", argv0, _("[options]"), "upload-sample", _("FILENAME [NAME]"));
1497 printf("%s %s %s %s\n", argv0, _("[options]"), "play-sample ", _("NAME [SINK]"));
1498 printf("%s %s %s %s\n", argv0, _("[options]"), "remove-sample ", _("NAME"));
1499 printf("%s %s %s %s\n", argv0, _("[options]"), "load-module ", _("NAME [ARGS ...]"));
1500 printf("%s %s %s %s\n", argv0, _("[options]"), "unload-module ", _("NAME|#N"));
1501 printf("%s %s %s %s\n", argv0, _("[options]"), "move-(sink-input|source-output)", _("#N SINK|SOURCE"));
1502 printf("%s %s %s %s\n", argv0, _("[options]"), "suspend-(sink|source)", _("NAME|#N 1|0"));
1503 printf("%s %s %s %s\n", argv0, _("[options]"), "set-card-profile ", _("CARD PROFILE"));
1504 printf("%s %s %s %s\n", argv0, _("[options]"), "set-default-(sink|source)", _("NAME"));
1505 printf("%s %s %s %s\n", argv0, _("[options]"), "set-(sink|source)-port", _("NAME|#N PORT"));
1506 printf("%s %s %s %s\n", argv0, _("[options]"), "set-(sink|source)-volume", _("NAME|#N VOLUME"));
1507 printf("%s %s %s %s\n", argv0, _("[options]"), "set-(sink-input|source-output)-volume", _("#N VOLUME"));
1508 printf("%s %s %s %s\n", argv0, _("[options]"), "set-(sink|source)-mute", _("NAME|#N 1|0|toggle"));
1509 printf("%s %s %s %s\n", argv0, _("[options]"), "set-(sink-input|source-output)-mute", _("#N 1|0|toggle"));
1510 printf("%s %s %s %s\n", argv0, _("[options]"), "set-sink-formats", _("#N FORMATS"));
1511 printf("%s %s %s %s\n", argv0, _("[options]"), "set-port-latency-offset", _("CARD-NAME|CARD-#N PORT OFFSET"));
1512 printf("%s %s %s\n", argv0, _("[options]"), "subscribe");
1513
1514 printf(_("\n"
1515 " -h, --help Show this help\n"
1516 " --version Show version\n\n"
1517 " -s, --server=SERVER The name of the server to connect to\n"
1518 " -n, --client-name=NAME How to call this client on the server\n"));
1519 }
1520
1521 enum {
1522 ARG_VERSION = 256
1523 };
1524
1525 int main(int argc, char *argv[]) {
1526 pa_mainloop *m = NULL;
1527 int ret = 1, c;
1528 char *server = NULL, *bn;
1529
1530 static const struct option long_options[] = {
1531 {"server", 1, NULL, 's'},
1532 {"client-name", 1, NULL, 'n'},
1533 {"version", 0, NULL, ARG_VERSION},
1534 {"help", 0, NULL, 'h'},
1535 {NULL, 0, NULL, 0}
1536 };
1537
1538 setlocale(LC_ALL, "");
1539 #ifdef ENABLE_NLS
1540 bindtextdomain(GETTEXT_PACKAGE, PULSE_LOCALEDIR);
1541 #endif
1542
1543 bn = pa_path_get_filename(argv[0]);
1544
1545 proplist = pa_proplist_new();
1546
1547 while ((c = getopt_long(argc, argv, "s:n:h", long_options, NULL)) != -1) {
1548 switch (c) {
1549 case 'h' :
1550 help(bn);
1551 ret = 0;
1552 goto quit;
1553
1554 case ARG_VERSION:
1555 printf(_("pactl %s\n"
1556 "Compiled with libpulse %s\n"
1557 "Linked with libpulse %s\n"),
1558 PACKAGE_VERSION,
1559 pa_get_headers_version(),
1560 pa_get_library_version());
1561 ret = 0;
1562 goto quit;
1563
1564 case 's':
1565 pa_xfree(server);
1566 server = pa_xstrdup(optarg);
1567 break;
1568
1569 case 'n': {
1570 char *t;
1571
1572 if (!(t = pa_locale_to_utf8(optarg)) ||
1573 pa_proplist_sets(proplist, PA_PROP_APPLICATION_NAME, t) < 0) {
1574
1575 pa_log(_("Invalid client name '%s'"), t ? t : optarg);
1576 pa_xfree(t);
1577 goto quit;
1578 }
1579
1580 pa_xfree(t);
1581 break;
1582 }
1583
1584 default:
1585 goto quit;
1586 }
1587 }
1588
1589 if (optind < argc) {
1590 if (pa_streq(argv[optind], "stat")) {
1591 action = STAT;
1592 short_list_format = FALSE;
1593 if (optind+1 < argc && pa_streq(argv[optind+1], "short"))
1594 short_list_format = TRUE;
1595
1596 } else if (pa_streq(argv[optind], "info"))
1597 action = INFO;
1598
1599 else if (pa_streq(argv[optind], "exit"))
1600 action = EXIT;
1601
1602 else if (pa_streq(argv[optind], "list")) {
1603 action = LIST;
1604
1605 for (int i = optind+1; i < argc; i++){
1606 if (pa_streq(argv[i], "modules") || pa_streq(argv[i], "clients") ||
1607 pa_streq(argv[i], "sinks") || pa_streq(argv[i], "sink-inputs") ||
1608 pa_streq(argv[i], "sources") || pa_streq(argv[i], "source-outputs") ||
1609 pa_streq(argv[i], "samples") || pa_streq(argv[i], "cards")) {
1610 list_type = pa_xstrdup(argv[i]);
1611 } else if (pa_streq(argv[i], "short")) {
1612 short_list_format = TRUE;
1613 } else {
1614 pa_log(_("Specify nothing, or one of: %s"), "modules, sinks, sources, sink-inputs, source-outputs, clients, samples, cards");
1615 goto quit;
1616 }
1617 }
1618
1619 } else if (pa_streq(argv[optind], "upload-sample")) {
1620 struct SF_INFO sfi;
1621 action = UPLOAD_SAMPLE;
1622
1623 if (optind+1 >= argc) {
1624 pa_log(_("Please specify a sample file to load"));
1625 goto quit;
1626 }
1627
1628 if (optind+2 < argc)
1629 sample_name = pa_xstrdup(argv[optind+2]);
1630 else {
1631 char *f = pa_path_get_filename(argv[optind+1]);
1632 sample_name = pa_xstrndup(f, strcspn(f, "."));
1633 }
1634
1635 pa_zero(sfi);
1636 if (!(sndfile = sf_open(argv[optind+1], SFM_READ, &sfi))) {
1637 pa_log(_("Failed to open sound file."));
1638 goto quit;
1639 }
1640
1641 if (pa_sndfile_read_sample_spec(sndfile, &sample_spec) < 0) {
1642 pa_log(_("Failed to determine sample specification from file."));
1643 goto quit;
1644 }
1645 sample_spec.format = PA_SAMPLE_FLOAT32;
1646
1647 if (pa_sndfile_read_channel_map(sndfile, &channel_map) < 0) {
1648 if (sample_spec.channels > 2)
1649 pa_log(_("Warning: Failed to determine sample specification from file."));
1650 pa_channel_map_init_extend(&channel_map, sample_spec.channels, PA_CHANNEL_MAP_DEFAULT);
1651 }
1652
1653 pa_assert(pa_channel_map_compatible(&channel_map, &sample_spec));
1654 sample_length = (size_t) sfi.frames*pa_frame_size(&sample_spec);
1655
1656 } else if (pa_streq(argv[optind], "play-sample")) {
1657 action = PLAY_SAMPLE;
1658 if (argc != optind+2 && argc != optind+3) {
1659 pa_log(_("You have to specify a sample name to play"));
1660 goto quit;
1661 }
1662
1663 sample_name = pa_xstrdup(argv[optind+1]);
1664
1665 if (optind+2 < argc)
1666 sink_name = pa_xstrdup(argv[optind+2]);
1667
1668 } else if (pa_streq(argv[optind], "remove-sample")) {
1669 action = REMOVE_SAMPLE;
1670 if (argc != optind+2) {
1671 pa_log(_("You have to specify a sample name to remove"));
1672 goto quit;
1673 }
1674
1675 sample_name = pa_xstrdup(argv[optind+1]);
1676
1677 } else if (pa_streq(argv[optind], "move-sink-input")) {
1678 action = MOVE_SINK_INPUT;
1679 if (argc != optind+3) {
1680 pa_log(_("You have to specify a sink input index and a sink"));
1681 goto quit;
1682 }
1683
1684 sink_input_idx = (uint32_t) atoi(argv[optind+1]);
1685 sink_name = pa_xstrdup(argv[optind+2]);
1686
1687 } else if (pa_streq(argv[optind], "move-source-output")) {
1688 action = MOVE_SOURCE_OUTPUT;
1689 if (argc != optind+3) {
1690 pa_log(_("You have to specify a source output index and a source"));
1691 goto quit;
1692 }
1693
1694 source_output_idx = (uint32_t) atoi(argv[optind+1]);
1695 source_name = pa_xstrdup(argv[optind+2]);
1696
1697 } else if (pa_streq(argv[optind], "load-module")) {
1698 int i;
1699 size_t n = 0;
1700 char *p;
1701
1702 action = LOAD_MODULE;
1703
1704 if (argc <= optind+1) {
1705 pa_log(_("You have to specify a module name and arguments."));
1706 goto quit;
1707 }
1708
1709 module_name = argv[optind+1];
1710
1711 for (i = optind+2; i < argc; i++)
1712 n += strlen(argv[i])+1;
1713
1714 if (n > 0) {
1715 p = module_args = pa_xmalloc(n);
1716
1717 for (i = optind+2; i < argc; i++)
1718 p += sprintf(p, "%s%s", p == module_args ? "" : " ", argv[i]);
1719 }
1720
1721 } else if (pa_streq(argv[optind], "unload-module")) {
1722 action = UNLOAD_MODULE;
1723
1724 if (argc != optind+2) {
1725 pa_log(_("You have to specify a module index or name"));
1726 goto quit;
1727 }
1728
1729 if (pa_atou(argv[optind + 1], &module_index) < 0)
1730 module_name = argv[optind + 1];
1731
1732 } else if (pa_streq(argv[optind], "suspend-sink")) {
1733 int b;
1734
1735 action = SUSPEND_SINK;
1736
1737 if (argc > optind+3 || optind+1 >= argc) {
1738 pa_log(_("You may not specify more than one sink. You have to specify a boolean value."));
1739 goto quit;
1740 }
1741
1742 if ((b = pa_parse_boolean(argv[argc-1])) < 0) {
1743 pa_log(_("Invalid suspend specification."));
1744 goto quit;
1745 }
1746
1747 suspend = !!b;
1748
1749 if (argc > optind+2)
1750 sink_name = pa_xstrdup(argv[optind+1]);
1751
1752 } else if (pa_streq(argv[optind], "suspend-source")) {
1753 int b;
1754
1755 action = SUSPEND_SOURCE;
1756
1757 if (argc > optind+3 || optind+1 >= argc) {
1758 pa_log(_("You may not specify more than one source. You have to specify a boolean value."));
1759 goto quit;
1760 }
1761
1762 if ((b = pa_parse_boolean(argv[argc-1])) < 0) {
1763 pa_log(_("Invalid suspend specification."));
1764 goto quit;
1765 }
1766
1767 suspend = !!b;
1768
1769 if (argc > optind+2)
1770 source_name = pa_xstrdup(argv[optind+1]);
1771 } else if (pa_streq(argv[optind], "set-card-profile")) {
1772 action = SET_CARD_PROFILE;
1773
1774 if (argc != optind+3) {
1775 pa_log(_("You have to specify a card name/index and a profile name"));
1776 goto quit;
1777 }
1778
1779 card_name = pa_xstrdup(argv[optind+1]);
1780 profile_name = pa_xstrdup(argv[optind+2]);
1781
1782 } else if (pa_streq(argv[optind], "set-sink-port")) {
1783 action = SET_SINK_PORT;
1784
1785 if (argc != optind+3) {
1786 pa_log(_("You have to specify a sink name/index and a port name"));
1787 goto quit;
1788 }
1789
1790 sink_name = pa_xstrdup(argv[optind+1]);
1791 port_name = pa_xstrdup(argv[optind+2]);
1792
1793 } else if (pa_streq(argv[optind], "set-default-sink")) {
1794 action = SET_DEFAULT_SINK;
1795
1796 if (argc != optind+2) {
1797 pa_log(_("You have to specify a sink name"));
1798 goto quit;
1799 }
1800
1801 sink_name = pa_xstrdup(argv[optind+1]);
1802
1803 } else if (pa_streq(argv[optind], "set-source-port")) {
1804 action = SET_SOURCE_PORT;
1805
1806 if (argc != optind+3) {
1807 pa_log(_("You have to specify a source name/index and a port name"));
1808 goto quit;
1809 }
1810
1811 source_name = pa_xstrdup(argv[optind+1]);
1812 port_name = pa_xstrdup(argv[optind+2]);
1813
1814 } else if (pa_streq(argv[optind], "set-default-source")) {
1815 action = SET_DEFAULT_SOURCE;
1816
1817 if (argc != optind+2) {
1818 pa_log(_("You have to specify a source name"));
1819 goto quit;
1820 }
1821
1822 source_name = pa_xstrdup(argv[optind+1]);
1823
1824 } else if (pa_streq(argv[optind], "set-sink-volume")) {
1825 action = SET_SINK_VOLUME;
1826
1827 if (argc != optind+3) {
1828 pa_log(_("You have to specify a sink name/index and a volume"));
1829 goto quit;
1830 }
1831
1832 sink_name = pa_xstrdup(argv[optind+1]);
1833
1834 if (parse_volume(argv[optind+2], &volume, &volume_flags) < 0)
1835 goto quit;
1836
1837 } else if (pa_streq(argv[optind], "set-source-volume")) {
1838 action = SET_SOURCE_VOLUME;
1839
1840 if (argc != optind+3) {
1841 pa_log(_("You have to specify a source name/index and a volume"));
1842 goto quit;
1843 }
1844
1845 source_name = pa_xstrdup(argv[optind+1]);
1846
1847 if (parse_volume(argv[optind+2], &volume, &volume_flags) < 0)
1848 goto quit;
1849
1850 } else if (pa_streq(argv[optind], "set-sink-input-volume")) {
1851 action = SET_SINK_INPUT_VOLUME;
1852
1853 if (argc != optind+3) {
1854 pa_log(_("You have to specify a sink input index and a volume"));
1855 goto quit;
1856 }
1857
1858 if (pa_atou(argv[optind+1], &sink_input_idx) < 0) {
1859 pa_log(_("Invalid sink input index"));
1860 goto quit;
1861 }
1862
1863 if (parse_volume(argv[optind+2], &volume, &volume_flags) < 0)
1864 goto quit;
1865
1866 } else if (pa_streq(argv[optind], "set-source-output-volume")) {
1867 action = SET_SOURCE_OUTPUT_VOLUME;
1868
1869 if (argc != optind+3) {
1870 pa_log(_("You have to specify a source output index and a volume"));
1871 goto quit;
1872 }
1873
1874 if (pa_atou(argv[optind+1], &source_output_idx) < 0) {
1875 pa_log(_("Invalid source output index"));
1876 goto quit;
1877 }
1878
1879 if (parse_volume(argv[optind+2], &volume, &volume_flags) < 0)
1880 goto quit;
1881
1882 } else if (pa_streq(argv[optind], "set-sink-mute")) {
1883 action = SET_SINK_MUTE;
1884
1885 if (argc != optind+3) {
1886 pa_log(_("You have to specify a sink name/index and a mute boolean"));
1887 goto quit;
1888 }
1889
1890 if ((mute = parse_mute(argv[optind+2])) == INVALID_MUTE) {
1891 pa_log(_("Invalid mute specification"));
1892 goto quit;
1893 }
1894
1895 sink_name = pa_xstrdup(argv[optind+1]);
1896
1897 } else if (pa_streq(argv[optind], "set-source-mute")) {
1898 action = SET_SOURCE_MUTE;
1899
1900 if (argc != optind+3) {
1901 pa_log(_("You have to specify a source name/index and a mute boolean"));
1902 goto quit;
1903 }
1904
1905 if ((mute = parse_mute(argv[optind+2])) == INVALID_MUTE) {
1906 pa_log(_("Invalid mute specification"));
1907 goto quit;
1908 }
1909
1910 source_name = pa_xstrdup(argv[optind+1]);
1911
1912 } else if (pa_streq(argv[optind], "set-sink-input-mute")) {
1913 action = SET_SINK_INPUT_MUTE;
1914
1915 if (argc != optind+3) {
1916 pa_log(_("You have to specify a sink input index and a mute boolean"));
1917 goto quit;
1918 }
1919
1920 if (pa_atou(argv[optind+1], &sink_input_idx) < 0) {
1921 pa_log(_("Invalid sink input index specification"));
1922 goto quit;
1923 }
1924
1925 if ((mute = parse_mute(argv[optind+2])) == INVALID_MUTE) {
1926 pa_log(_("Invalid mute specification"));
1927 goto quit;
1928 }
1929
1930 } else if (pa_streq(argv[optind], "set-source-output-mute")) {
1931 action = SET_SOURCE_OUTPUT_MUTE;
1932
1933 if (argc != optind+3) {
1934 pa_log(_("You have to specify a source output index and a mute boolean"));
1935 goto quit;
1936 }
1937
1938 if (pa_atou(argv[optind+1], &source_output_idx) < 0) {
1939 pa_log(_("Invalid source output index specification"));
1940 goto quit;
1941 }
1942
1943 if ((mute = parse_mute(argv[optind+2])) == INVALID_MUTE) {
1944 pa_log(_("Invalid mute specification"));
1945 goto quit;
1946 }
1947
1948 } else if (pa_streq(argv[optind], "subscribe"))
1949
1950 action = SUBSCRIBE;
1951
1952 else if (pa_streq(argv[optind], "set-sink-formats")) {
1953 int32_t tmp;
1954
1955 if (argc != optind+3 || pa_atoi(argv[optind+1], &tmp) < 0) {
1956 pa_log(_("You have to specify a sink index and a semicolon-separated list of supported formats"));
1957 goto quit;
1958 }
1959
1960 sink_idx = tmp;
1961 action = SET_SINK_FORMATS;
1962 formats = pa_xstrdup(argv[optind+2]);
1963
1964 } else if (pa_streq(argv[optind], "set-port-latency-offset")) {
1965 action = SET_PORT_LATENCY_OFFSET;
1966
1967 if (argc != optind+4) {
1968 pa_log(_("You have to specify a card name/index, a port name and a latency offset"));
1969 goto quit;
1970 }
1971
1972 card_name = pa_xstrdup(argv[optind+1]);
1973 port_name = pa_xstrdup(argv[optind+2]);
1974 if (pa_atoi(argv[optind + 3], &latency_offset) < 0) {
1975 pa_log(_("Could not parse latency offset"));
1976 goto quit;
1977 }
1978
1979 } else if (pa_streq(argv[optind], "help")) {
1980 help(bn);
1981 ret = 0;
1982 goto quit;
1983 }
1984 }
1985
1986 if (action == NONE) {
1987 pa_log(_("No valid command specified."));
1988 goto quit;
1989 }
1990
1991 if (!(m = pa_mainloop_new())) {
1992 pa_log(_("pa_mainloop_new() failed."));
1993 goto quit;
1994 }
1995
1996 mainloop_api = pa_mainloop_get_api(m);
1997
1998 pa_assert_se(pa_signal_init(mainloop_api) == 0);
1999 pa_signal_new(SIGINT, exit_signal_callback, NULL);
2000 pa_signal_new(SIGTERM, exit_signal_callback, NULL);
2001 pa_disable_sigpipe();
2002
2003 if (!(context = pa_context_new_with_proplist(mainloop_api, NULL, proplist))) {
2004 pa_log(_("pa_context_new() failed."));
2005 goto quit;
2006 }
2007
2008 pa_context_set_state_callback(context, context_state_callback, NULL);
2009 if (pa_context_connect(context, server, 0, NULL) < 0) {
2010 pa_log(_("pa_context_connect() failed: %s"), pa_strerror(pa_context_errno(context)));
2011 goto quit;
2012 }
2013
2014 if (pa_mainloop_run(m, &ret) < 0) {
2015 pa_log(_("pa_mainloop_run() failed."));
2016 goto quit;
2017 }
2018
2019 quit:
2020 if (sample_stream)
2021 pa_stream_unref(sample_stream);
2022
2023 if (context)
2024 pa_context_unref(context);
2025
2026 if (m) {
2027 pa_signal_done();
2028 pa_mainloop_free(m);
2029 }
2030
2031 pa_xfree(server);
2032 pa_xfree(list_type);
2033 pa_xfree(sample_name);
2034 pa_xfree(sink_name);
2035 pa_xfree(source_name);
2036 pa_xfree(module_args);
2037 pa_xfree(card_name);
2038 pa_xfree(profile_name);
2039 pa_xfree(port_name);
2040 pa_xfree(formats);
2041
2042 if (sndfile)
2043 sf_close(sndfile);
2044
2045 if (proplist)
2046 pa_proplist_free(proplist);
2047
2048 return ret;
2049 }