4 This file is part of polypaudio.
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU 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.
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.
16 You should have received a copy of the GNU 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
32 #include "cli-command.h"
37 #include "sink-input.h"
38 #include "source-output.h"
39 #include "tokenizer.h"
44 #include "sample-util.h"
45 #include "sound-file.h"
46 #include "play-memchunk.h"
49 #include "sound-file-stream.h"
53 int (*proc) (struct pa_core *c, struct pa_tokenizer*t, struct pa_strbuf *buf, int *fail, int *verbose);
58 static int pa_cli_command_exit(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
59 static int pa_cli_command_help(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
60 static int pa_cli_command_modules(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
61 static int pa_cli_command_clients(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
62 static int pa_cli_command_sinks(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
63 static int pa_cli_command_sources(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
64 static int pa_cli_command_sink_inputs(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
65 static int pa_cli_command_source_outputs(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
66 static int pa_cli_command_stat(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
67 static int pa_cli_command_info(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
68 static int pa_cli_command_load(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
69 static int pa_cli_command_unload(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
70 static int pa_cli_command_sink_volume(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
71 static int pa_cli_command_sink_input_volume(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
72 static int pa_cli_command_sink_default(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
73 static int pa_cli_command_source_default(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
74 static int pa_cli_command_kill_client(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
75 static int pa_cli_command_kill_sink_input(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
76 static int pa_cli_command_kill_source_output(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
77 static int pa_cli_command_scache_play(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
78 static int pa_cli_command_scache_remove(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
79 static int pa_cli_command_scache_list(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
80 static int pa_cli_command_scache_load(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
81 static int pa_cli_command_play_file(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
82 static int pa_cli_command_autoload_list(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
83 static int pa_cli_command_autoload_add(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
84 static int pa_cli_command_autoload_remove(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
85 static int pa_cli_command_dump(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose);
87 static const struct command commands[] = {
88 { "exit", pa_cli_command_exit, "Terminate the daemon", 1 },
89 { "help", pa_cli_command_help, "Show this help", 1 },
90 { "list-modules", pa_cli_command_modules, "List loaded modules", 1 },
91 { "list-sinks", pa_cli_command_sinks, "List loaded sinks", 1 },
92 { "list-sources", pa_cli_command_sources, "List loaded sources", 1 },
93 { "list-clients", pa_cli_command_clients, "List loaded clients", 1 },
94 { "list-sink-inputs", pa_cli_command_sink_inputs, "List sink inputs", 1 },
95 { "list-source-outputs", pa_cli_command_source_outputs, "List source outputs", 1 },
96 { "stat", pa_cli_command_stat, "Show memory block statistics", 1 },
97 { "info", pa_cli_command_info, "Show comprehensive status", 1 },
98 { "ls", pa_cli_command_info, NULL, 1 },
99 { "list", pa_cli_command_info, NULL, 1 },
100 { "load-module", pa_cli_command_load, "Load a module (args: name, arguments)", 3},
101 { "unload-module", pa_cli_command_unload, "Unload a module (args: index)", 2},
102 { "set-sink-volume", pa_cli_command_sink_volume, "Set the volume of a sink (args: index|name, volume)", 3},
103 { "set-sink-input-volume", pa_cli_command_sink_input_volume, "Set the volume of a sink input (args: index|name, volume)", 3},
104 { "set-default-sink", pa_cli_command_sink_default, "Set the default sink (args: index|name)", 2},
105 { "set-default-source", pa_cli_command_source_default, "Set the default source (args: index|name)", 2},
106 { "kill-client", pa_cli_command_kill_client, "Kill a client (args: index)", 2},
107 { "kill-sink-input", pa_cli_command_kill_sink_input, "Kill a sink input (args: index)", 2},
108 { "kill-source-output", pa_cli_command_kill_source_output, "Kill a source output (args: index)", 2},
109 { "list-samples", pa_cli_command_scache_list, "List all entries in the sample cache", 1},
110 { "play-sample", pa_cli_command_scache_play, "Play a sample from the sample cache (args: name, sink|index)", 3},
111 { "remove-sample", pa_cli_command_scache_remove, "Remove a sample from the sample cache (args: name)", 2},
112 { "load-sample", pa_cli_command_scache_load, "Load a sound file into the sample cache (args: name, filename)", 3},
113 { "load-sample-lazy", pa_cli_command_scache_load, "Lazy load a sound file into the sample cache (args: name, filename)", 3},
114 { "play-file", pa_cli_command_play_file, "Play a sound file (args: filename, sink|index)", 3},
115 { "list-autoload", pa_cli_command_autoload_list, "List autoload entries", 1},
116 { "add-autoload-sink", pa_cli_command_autoload_add, "Add autoload entry for a sink (args: sink, module name, arguments)", 4},
117 { "add-autoload-source", pa_cli_command_autoload_add, "Add autoload entry for a source (args: source, module name, arguments)", 4},
118 { "remove-autoload-sink", pa_cli_command_autoload_remove, "Remove autoload entry for a sink (args: name)", 2},
119 { "remove-autoload-source", pa_cli_command_autoload_remove, "Remove autoload entry for a source (args: name)", 2},
120 { "dump", pa_cli_command_dump, "Dump daemon configuration", 1},
121 { NULL, NULL, NULL, 0 }
124 static const char whitespace[] = " \t\n\r";
125 static const char linebreak[] = "\n\r";
127 static uint32_t parse_index(const char *n) {
130 index = strtol(n, &x, 0);
131 if (!x || *x != 0 || index < 0)
132 return (uint32_t) PA_IDXSET_INVALID;
134 return (uint32_t) index;
137 static int pa_cli_command_exit(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
138 assert(c && c->mainloop && t);
139 c->mainloop->quit(c->mainloop, 0);
143 static int pa_cli_command_help(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
144 const struct command*command;
145 assert(c && t && buf);
147 pa_strbuf_puts(buf, "Available commands:\n");
149 for (command = commands; command->name; command++)
151 pa_strbuf_printf(buf, " %-25s %s\n", command->name, command->help);
155 static int pa_cli_command_modules(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
158 s = pa_module_list_to_string(c);
160 pa_strbuf_puts(buf, s);
165 static int pa_cli_command_clients(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
168 s = pa_client_list_to_string(c);
170 pa_strbuf_puts(buf, s);
175 static int pa_cli_command_sinks(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
178 s = pa_sink_list_to_string(c);
180 pa_strbuf_puts(buf, s);
185 static int pa_cli_command_sources(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
188 s = pa_source_list_to_string(c);
190 pa_strbuf_puts(buf, s);
195 static int pa_cli_command_sink_inputs(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
198 s = pa_sink_input_list_to_string(c);
200 pa_strbuf_puts(buf, s);
205 static int pa_cli_command_source_outputs(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
208 s = pa_source_output_list_to_string(c);
210 pa_strbuf_puts(buf, s);
215 static int pa_cli_command_stat(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
219 pa_bytes_snprint(s, sizeof(s), c->memblock_stat->total_size);
220 pa_strbuf_printf(buf, "Memory blocks currently allocated: %u, size: %s.\n",
221 c->memblock_stat->total,
224 pa_bytes_snprint(s, sizeof(s), c->memblock_stat->allocated_size);
225 pa_strbuf_printf(buf, "Memory blocks allocated during the whole lifetime: %u, size: %s.\n",
226 c->memblock_stat->allocated,
229 pa_bytes_snprint(s, sizeof(s), pa_scache_total_size(c));
230 pa_strbuf_printf(buf, "Total sample cache size: %s.\n", s);
232 pa_sample_spec_snprint(s, sizeof(s), &c->default_sample_spec);
233 pa_strbuf_printf(buf, "Default sample spec: %s\n", s);
235 pa_strbuf_printf(buf, "Default sink name: %s\n"
236 "Default source name: %s\n",
237 pa_namereg_get_default_sink_name(c),
238 pa_namereg_get_default_source_name(c));
243 static int pa_cli_command_info(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
245 pa_cli_command_stat(c, t, buf, fail, verbose);
246 pa_cli_command_modules(c, t, buf, fail, verbose);
247 pa_cli_command_sinks(c, t, buf, fail, verbose);
248 pa_cli_command_sources(c, t, buf, fail, verbose);
249 pa_cli_command_clients(c, t, buf, fail, verbose);
250 pa_cli_command_sink_inputs(c, t, buf, fail, verbose);
251 pa_cli_command_source_outputs(c, t, buf, fail, verbose);
252 pa_cli_command_scache_list(c, t, buf, fail, verbose);
253 pa_cli_command_autoload_list(c, t, buf, fail, verbose);
257 static int pa_cli_command_load(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
263 if (!(name = pa_tokenizer_get(t, 1))) {
264 pa_strbuf_puts(buf, "You need to specify the module name and optionally arguments.\n");
268 if (!(m = pa_module_load(c, name, pa_tokenizer_get(t, 2)))) {
269 pa_strbuf_puts(buf, "Module load failed.\n");
274 snprintf(txt, sizeof(txt), "Module successfully loaded, index: %u.\n", m->index);
275 pa_strbuf_puts(buf, txt);
280 static int pa_cli_command_unload(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
287 if (!(i = pa_tokenizer_get(t, 1))) {
288 pa_strbuf_puts(buf, "You need to specify the module index.\n");
292 index = (uint32_t) strtoul(i, &e, 10);
293 if (*e || !(m = pa_idxset_get_by_index(c->modules, index))) {
294 pa_strbuf_puts(buf, "Invalid module index.\n");
298 pa_module_unload_request(m);
302 static int pa_cli_command_sink_volume(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
305 struct pa_sink *sink;
308 if (!(n = pa_tokenizer_get(t, 1))) {
309 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
313 if (!(v = pa_tokenizer_get(t, 2))) {
314 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
318 volume = strtol(v, &x, 0);
319 if (!x || *x != 0 || volume < 0) {
320 pa_strbuf_puts(buf, "Failed to parse volume.\n");
324 if (!(sink = pa_namereg_get(c, n, PA_NAMEREG_SINK, 1))) {
325 pa_strbuf_puts(buf, "No sink found by this name or index.\n");
329 pa_sink_set_volume(sink, (uint32_t) volume);
333 static int pa_cli_command_sink_input_volume(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
335 struct pa_sink_input *si;
340 if (!(n = pa_tokenizer_get(t, 1))) {
341 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
345 if ((index = parse_index(n)) == PA_IDXSET_INVALID) {
346 pa_strbuf_puts(buf, "Failed to parse index.\n");
350 if (!(v = pa_tokenizer_get(t, 2))) {
351 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
356 volume = strtol(v, &x, 0);
357 if (!x || *x != 0 || volume < 0) {
358 pa_strbuf_puts(buf, "Failed to parse volume.\n");
362 if (!(si = pa_idxset_get_by_index(c->sink_inputs, (uint32_t) index))) {
363 pa_strbuf_puts(buf, "No sink input found with this index.\n");
367 pa_sink_input_set_volume(si, (uint32_t) volume);
371 static int pa_cli_command_sink_default(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
375 if (!(n = pa_tokenizer_get(t, 1))) {
376 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
380 pa_namereg_set_default(c, n, PA_NAMEREG_SINK);
384 static int pa_cli_command_source_default(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
388 if (!(n = pa_tokenizer_get(t, 1))) {
389 pa_strbuf_puts(buf, "You need to specify a source either by its name or its index.\n");
393 pa_namereg_set_default(c, n, PA_NAMEREG_SOURCE);
397 static int pa_cli_command_kill_client(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
399 struct pa_client *client;
403 if (!(n = pa_tokenizer_get(t, 1))) {
404 pa_strbuf_puts(buf, "You need to specify a client by its index.\n");
408 if ((index = parse_index(n)) == PA_IDXSET_INVALID) {
409 pa_strbuf_puts(buf, "Failed to parse index.\n");
413 if (!(client = pa_idxset_get_by_index(c->clients, index))) {
414 pa_strbuf_puts(buf, "No client found by this index.\n");
418 pa_client_kill(client);
422 static int pa_cli_command_kill_sink_input(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
424 struct pa_sink_input *sink_input;
428 if (!(n = pa_tokenizer_get(t, 1))) {
429 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
433 if ((index = parse_index(n)) == PA_IDXSET_INVALID) {
434 pa_strbuf_puts(buf, "Failed to parse index.\n");
438 if (!(sink_input = pa_idxset_get_by_index(c->sink_inputs, index))) {
439 pa_strbuf_puts(buf, "No sink input found by this index.\n");
443 pa_sink_input_kill(sink_input);
447 static int pa_cli_command_kill_source_output(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
449 struct pa_source_output *source_output;
453 if (!(n = pa_tokenizer_get(t, 1))) {
454 pa_strbuf_puts(buf, "You need to specify a source output by its index.\n");
458 if ((index = parse_index(n)) == PA_IDXSET_INVALID) {
459 pa_strbuf_puts(buf, "Failed to parse index.\n");
463 if (!(source_output = pa_idxset_get_by_index(c->source_outputs, index))) {
464 pa_strbuf_puts(buf, "No source output found by this index.\n");
468 pa_source_output_kill(source_output);
472 static int pa_cli_command_scache_list(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
475 s = pa_scache_list_to_string(c);
477 pa_strbuf_puts(buf, s);
482 static int pa_cli_command_scache_play(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
483 const char *n, *sink_name;
484 struct pa_sink *sink;
485 assert(c && t && buf && fail && verbose);
487 if (!(n = pa_tokenizer_get(t, 1)) || !(sink_name = pa_tokenizer_get(t, 2))) {
488 pa_strbuf_puts(buf, "You need to specify a sample name and a sink name.\n");
492 if (!(sink = pa_namereg_get(c, sink_name, PA_NAMEREG_SINK, 1))) {
493 pa_strbuf_puts(buf, "No sink by that name.\n");
497 if (pa_scache_play_item(c, n, sink, PA_VOLUME_NORM) < 0) {
498 pa_strbuf_puts(buf, "Failed to play sample.\n");
505 static int pa_cli_command_scache_remove(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
507 assert(c && t && buf && fail && verbose);
509 if (!(n = pa_tokenizer_get(t, 1))) {
510 pa_strbuf_puts(buf, "You need to specify a sample name.\n");
514 if (pa_scache_remove_item(c, n) < 0) {
515 pa_strbuf_puts(buf, "Failed to remove sample.\n");
522 static int pa_cli_command_scache_load(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
523 const char *fname, *n;
525 assert(c && t && buf && fail && verbose);
527 if (!(fname = pa_tokenizer_get(t, 2)) || !(n = pa_tokenizer_get(t, 1))) {
528 pa_strbuf_puts(buf, "You need to specify a file name and a sample name.\n");
532 if (strstr(pa_tokenizer_get(t, 0), "lazy"))
533 r = pa_scache_add_file_lazy(c, n, fname, NULL);
535 r = pa_scache_add_file(c, n, fname, NULL);
538 pa_strbuf_puts(buf, "Failed to load sound file.\n");
543 static int pa_cli_command_play_file(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
544 const char *fname, *sink_name;
545 struct pa_sink *sink;
546 assert(c && t && buf && fail && verbose);
548 if (!(fname = pa_tokenizer_get(t, 1)) || !(sink_name = pa_tokenizer_get(t, 2))) {
549 pa_strbuf_puts(buf, "You need to specify a file name and a sink name.\n");
553 if (!(sink = pa_namereg_get(c, sink_name, PA_NAMEREG_SINK, 1))) {
554 pa_strbuf_puts(buf, "No sink by that name.\n");
559 return pa_play_file(sink, fname, PA_VOLUME_NORM);
562 static int pa_cli_command_autoload_add(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
564 assert(c && t && buf && fail && verbose);
566 if (!(a = pa_tokenizer_get(t, 1)) || !(b = pa_tokenizer_get(t, 2))) {
567 pa_strbuf_puts(buf, "You need to specify a device name, a filename or a module name and optionally module arguments\n");
571 pa_autoload_add(c, a, strstr(pa_tokenizer_get(t, 0), "sink") ? PA_NAMEREG_SINK : PA_NAMEREG_SOURCE, b, pa_tokenizer_get(t, 3));
576 static int pa_cli_command_autoload_remove(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
578 assert(c && t && buf && fail && verbose);
580 if (!(name = pa_tokenizer_get(t, 1))) {
581 pa_strbuf_puts(buf, "You need to specify a device name\n");
585 if (pa_autoload_remove(c, name, strstr(pa_tokenizer_get(t, 0), "sink") ? PA_NAMEREG_SINK : PA_NAMEREG_SOURCE) < 0) {
586 pa_strbuf_puts(buf, "Failed to remove autload entry\n");
593 static int pa_cli_command_autoload_list(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
596 s = pa_autoload_list_to_string(c);
598 pa_strbuf_puts(buf, s);
603 static int pa_cli_command_dump(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail, int *verbose) {
612 struct pa_autoload_entry *a;
618 pa_strbuf_printf(buf, "### Configuration dump generated at %s\n", ctime_r(&now, txt));
621 for (m = pa_idxset_first(c->modules, &index); m; m = pa_idxset_next(c->modules, &index)) {
625 pa_strbuf_printf(buf, "load-module %s", m->name);
628 pa_strbuf_printf(buf, " %s", m->argument);
630 pa_strbuf_puts(buf, "\n");
635 for (s = pa_idxset_first(c->sinks, &index); s; s = pa_idxset_next(c->sinks, &index)) {
636 if (s->volume == PA_VOLUME_NORM)
639 if (s->owner && s->owner->auto_unload)
643 pa_strbuf_puts(buf, "\n");
647 pa_strbuf_printf(buf, "set-sink-volume %s 0x%03x\n", s->name, s->volume);
651 if (c->autoload_hashmap) {
655 while ((a = pa_hashmap_iterate(c->autoload_hashmap, &i))) {
658 pa_strbuf_puts(buf, "\n");
662 pa_strbuf_printf(buf, "add-autoload-%s %s %s", a->type == PA_NAMEREG_SINK ? "sink" : "source", a->name, a->module);
665 pa_strbuf_printf(buf, " %s", a->argument);
667 pa_strbuf_puts(buf, "\n");
673 if ((p = pa_namereg_get_default_sink_name(c))) {
675 pa_strbuf_puts(buf, "\n");
678 pa_strbuf_printf(buf, "set-default-sink %s\n", p);
681 if ((p = pa_namereg_get_default_source_name(c))) {
683 pa_strbuf_puts(buf, "\n");
686 pa_strbuf_printf(buf, "set-default-source %s\n", p);
689 pa_strbuf_puts(buf, "\n### EOF\n");
695 int pa_cli_command_execute_line(struct pa_core *c, const char *s, struct pa_strbuf *buf, int *fail, int *verbose) {
698 cs = s+strspn(s, whitespace);
700 if (*cs == '#' || !*cs)
702 else if (*cs == '.') {
703 static const char fail_meta[] = ".fail";
704 static const char nofail_meta[] = ".nofail";
705 static const char verbose_meta[] = ".verbose";
706 static const char noverbose_meta[] = ".noverbose";
708 if (!strcmp(cs, verbose_meta))
710 else if (!strcmp(cs, noverbose_meta))
712 else if (!strcmp(cs, fail_meta))
714 else if (!strcmp(cs, nofail_meta))
718 static const char include_meta[] = ".include";
719 l = strcspn(cs, whitespace);
721 if (l == sizeof(include_meta)-1 && !strncmp(cs, include_meta, l)) {
722 const char *filename = cs+l+strspn(cs+l, whitespace);
724 if (pa_cli_command_execute_file(c, filename, buf, fail, verbose) < 0)
725 if (*fail) return -1;
727 pa_strbuf_printf(buf, "Invalid meta command: %s\n", cs);
728 if (*fail) return -1;
732 const struct command*command;
736 l = strcspn(cs, whitespace);
738 for (command = commands; command->name; command++)
739 if (strlen(command->name) == l && !strncmp(cs, command->name, l)) {
741 struct pa_tokenizer *t = pa_tokenizer_new(cs, command->args);
743 ret = command->proc(c, t, buf, fail, verbose);
744 pa_tokenizer_free(t);
747 if (ret < 0 && *fail)
754 pa_strbuf_printf(buf, "Unknown command: %s\n", cs);
763 int pa_cli_command_execute_file(struct pa_core *c, const char *fn, struct pa_strbuf *buf, int *fail, int *verbose) {
767 assert(c && fn && buf);
769 if (!(f = fopen(fn, "r"))) {
770 pa_strbuf_printf(buf, "open('%s') failed: %s\n", fn, strerror(errno));
777 pa_strbuf_printf(buf, "Executing file: '%s'\n", fn);
779 while (fgets(line, sizeof(line), f)) {
780 char *e = line + strcspn(line, linebreak);
783 if (pa_cli_command_execute_line(c, line, buf, fail, verbose) < 0 && *fail)
788 pa_strbuf_printf(buf, "Executed file: '%s'\n", fn);
799 int pa_cli_command_execute(struct pa_core *c, const char *s, struct pa_strbuf *buf, int *fail, int *verbose) {
801 assert(c && s && buf && fail && verbose);
805 size_t l = strcspn(p, linebreak);
806 char *line = pa_xstrndup(p, l);
808 if (pa_cli_command_execute_line(c, line, buf, fail, verbose) < 0&& *fail) {
815 p += strspn(p, linebreak);