]> code.delx.au - pulseaudio/blob - src/pulsecore/cli-command.c
- deprecate autoload stuff
[pulseaudio] / src / pulsecore / cli-command.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 Copyright 2004-2006 Lennart Poettering
7 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
8
9 PulseAudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
13
14 PulseAudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with PulseAudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #endif
28
29 #include <stdio.h>
30 #include <string.h>
31 #include <stdlib.h>
32 #include <errno.h>
33 #include <unistd.h>
34 #include <ltdl.h>
35
36 #include <pulse/xmalloc.h>
37
38 #include <pulsecore/module.h>
39 #include <pulsecore/sink.h>
40 #include <pulsecore/source.h>
41 #include <pulsecore/client.h>
42 #include <pulsecore/sink-input.h>
43 #include <pulsecore/source-output.h>
44 #include <pulsecore/tokenizer.h>
45 #include <pulsecore/strbuf.h>
46 #include <pulsecore/namereg.h>
47 #include <pulsecore/cli-text.h>
48 #include <pulsecore/core-scache.h>
49 #include <pulsecore/sample-util.h>
50 #include <pulsecore/sound-file.h>
51 #include <pulsecore/play-memchunk.h>
52 #include <pulsecore/autoload.h>
53 #include <pulsecore/sound-file-stream.h>
54 #include <pulsecore/props.h>
55 #include <pulsecore/core-util.h>
56 #include <pulsecore/core-error.h>
57
58 #include "cli-command.h"
59
60 struct command {
61 const char *name;
62 int (*proc) (pa_core *c, pa_tokenizer*t, pa_strbuf *buf, pa_bool_t *fail);
63 const char *help;
64 unsigned args;
65 };
66
67 #define META_INCLUDE ".include"
68 #define META_FAIL ".fail"
69 #define META_NOFAIL ".nofail"
70 #define META_IFEXISTS ".ifexists"
71 #define META_ELSE ".else"
72 #define META_ENDIF ".endif"
73
74 enum {
75 IFSTATE_NONE = -1,
76 IFSTATE_FALSE = 0,
77 IFSTATE_TRUE = 1,
78 };
79
80 /* Prototypes for all available commands */
81 static int pa_cli_command_exit(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
82 static int pa_cli_command_help(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
83 static int pa_cli_command_modules(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
84 static int pa_cli_command_clients(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
85 static int pa_cli_command_sinks(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
86 static int pa_cli_command_sources(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
87 static int pa_cli_command_sink_inputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
88 static int pa_cli_command_source_outputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
89 static int pa_cli_command_stat(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
90 static int pa_cli_command_info(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
91 static int pa_cli_command_load(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
92 static int pa_cli_command_unload(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
93 static int pa_cli_command_sink_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
94 static int pa_cli_command_sink_input_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
95 static int pa_cli_command_source_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
96 static int pa_cli_command_sink_mute(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
97 static int pa_cli_command_source_mute(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
98 static int pa_cli_command_sink_input_mute(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
99 static int pa_cli_command_sink_default(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
100 static int pa_cli_command_source_default(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
101 static int pa_cli_command_kill_client(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
102 static int pa_cli_command_kill_sink_input(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
103 static int pa_cli_command_kill_source_output(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
104 static int pa_cli_command_scache_play(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
105 static int pa_cli_command_scache_remove(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
106 static int pa_cli_command_scache_list(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
107 static int pa_cli_command_scache_load(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
108 static int pa_cli_command_scache_load_dir(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
109 static int pa_cli_command_play_file(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
110 static int pa_cli_command_autoload_list(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
111 static int pa_cli_command_autoload_add(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
112 static int pa_cli_command_autoload_remove(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
113 static int pa_cli_command_dump(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
114 static int pa_cli_command_list_props(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
115 static int pa_cli_command_move_sink_input(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
116 static int pa_cli_command_move_source_output(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
117 static int pa_cli_command_vacuum(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
118 static int pa_cli_command_suspend_sink(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
119 static int pa_cli_command_suspend_source(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
120 static int pa_cli_command_suspend(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail);
121
122 /* A method table for all available commands */
123
124 static const struct command commands[] = {
125 { "exit", pa_cli_command_exit, "Terminate the daemon", 1 },
126 { "help", pa_cli_command_help, "Show this help", 1 },
127 { "list-modules", pa_cli_command_modules, "List loaded modules", 1 },
128 { "list-sinks", pa_cli_command_sinks, "List loaded sinks", 1 },
129 { "list-sources", pa_cli_command_sources, "List loaded sources", 1 },
130 { "list-clients", pa_cli_command_clients, "List loaded clients", 1 },
131 { "list-sink-inputs", pa_cli_command_sink_inputs, "List sink inputs", 1 },
132 { "list-source-outputs", pa_cli_command_source_outputs, "List source outputs", 1 },
133 { "stat", pa_cli_command_stat, "Show memory block statistics", 1 },
134 { "info", pa_cli_command_info, "Show comprehensive status", 1 },
135 { "ls", pa_cli_command_info, NULL, 1 },
136 { "list", pa_cli_command_info, NULL, 1 },
137 { "load-module", pa_cli_command_load, "Load a module (args: name, arguments)", 3},
138 { "unload-module", pa_cli_command_unload, "Unload a module (args: index)", 2},
139 { "set-sink-volume", pa_cli_command_sink_volume, "Set the volume of a sink (args: index|name, volume)", 3},
140 { "set-sink-input-volume", pa_cli_command_sink_input_volume, "Set the volume of a sink input (args: index, volume)", 3},
141 { "set-source-volume", pa_cli_command_source_volume, "Set the volume of a source (args: index|name, volume)", 3},
142 { "set-sink-mute", pa_cli_command_sink_mute, "Set the mute switch of a sink (args: index|name, bool)", 3},
143 { "set-sink-input-mute", pa_cli_command_sink_input_mute, "Set the mute switch of a sink input (args: index, bool)", 3},
144 { "set-source-mute", pa_cli_command_source_mute, "Set the mute switch of a source (args: index|name, bool)", 3},
145 { "set-default-sink", pa_cli_command_sink_default, "Set the default sink (args: index|name)", 2},
146 { "set-default-source", pa_cli_command_source_default, "Set the default source (args: index|name)", 2},
147 { "kill-client", pa_cli_command_kill_client, "Kill a client (args: index)", 2},
148 { "kill-sink-input", pa_cli_command_kill_sink_input, "Kill a sink input (args: index)", 2},
149 { "kill-source-output", pa_cli_command_kill_source_output, "Kill a source output (args: index)", 2},
150 { "list-samples", pa_cli_command_scache_list, "List all entries in the sample cache", 1},
151 { "play-sample", pa_cli_command_scache_play, "Play a sample from the sample cache (args: name, sink|index)", 3},
152 { "remove-sample", pa_cli_command_scache_remove, "Remove a sample from the sample cache (args: name)", 2},
153 { "load-sample", pa_cli_command_scache_load, "Load a sound file into the sample cache (args: name, filename)", 3},
154 { "load-sample-lazy", pa_cli_command_scache_load, "Lazily load a sound file into the sample cache (args: name, filename)", 3},
155 { "load-sample-dir-lazy", pa_cli_command_scache_load_dir, "Lazily load all files in a directory into the sample cache (args: pathname)", 2},
156 { "play-file", pa_cli_command_play_file, "Play a sound file (args: filename, sink|index)", 3},
157 { "list-autoload", pa_cli_command_autoload_list, "List autoload entries", 1},
158 { "add-autoload-sink", pa_cli_command_autoload_add, NULL /*"Add autoload entry for a sink (args: sink, module name, arguments)"*/, 4},
159 { "add-autoload-source", pa_cli_command_autoload_add, NULL /*"Add autoload entry for a source (args: source, module name, arguments)"*/, 4},
160 { "remove-autoload-sink", pa_cli_command_autoload_remove, NULL /*"Remove autoload entry for a sink (args: name)"*/, 2},
161 { "remove-autoload-source", pa_cli_command_autoload_remove, NULL /*"Remove autoload entry for a source (args: name)"*/, 2},
162 { "dump", pa_cli_command_dump, "Dump daemon configuration", 1},
163 { "list-props", pa_cli_command_list_props, NULL, 1},
164 { "move-sink-input", pa_cli_command_move_sink_input, "Move sink input to another sink (args: index, sink)", 3},
165 { "move-source-output", pa_cli_command_move_source_output, "Move source output to another source (args: index, source)", 3},
166 { "vacuum", pa_cli_command_vacuum, NULL, 1},
167 { "suspend-sink", pa_cli_command_suspend_sink, "Suspend sink (args: index|name, bool)", 3},
168 { "suspend-source", pa_cli_command_suspend_source, "Suspend source (args: index|name, bool)", 3},
169 { "suspend", pa_cli_command_suspend, "Suspend all sinks and all sources (args: bool)", 2},
170 { NULL, NULL, NULL, 0 }
171 };
172
173 static const char whitespace[] = " \t\n\r";
174 static const char linebreak[] = "\n\r";
175
176 static uint32_t parse_index(const char *n) {
177 uint32_t idx;
178
179 if (pa_atou(n, &idx) < 0)
180 return (uint32_t) PA_IDXSET_INVALID;
181
182 return idx;
183 }
184
185 static int pa_cli_command_exit(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
186 pa_core_assert_ref(c);
187 pa_assert(t);
188 pa_assert(buf);
189 pa_assert(fail);
190
191 c->mainloop->quit(c->mainloop, 0);
192 return 0;
193 }
194
195 static int pa_cli_command_help(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
196 const struct command*command;
197
198 pa_core_assert_ref(c);
199 pa_assert(t);
200 pa_assert(buf);
201 pa_assert(fail);
202
203 pa_strbuf_puts(buf, "Available commands:\n");
204
205 for (command = commands; command->name; command++)
206 if (command->help)
207 pa_strbuf_printf(buf, " %-25s %s\n", command->name, command->help);
208 return 0;
209 }
210
211 static int pa_cli_command_modules(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
212 char *s;
213
214 pa_core_assert_ref(c);
215 pa_assert(t);
216 pa_assert(buf);
217 pa_assert(fail);
218
219 pa_assert_se(s = pa_module_list_to_string(c));
220 pa_strbuf_puts(buf, s);
221 pa_xfree(s);
222 return 0;
223 }
224
225 static int pa_cli_command_clients(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
226 char *s;
227
228 pa_core_assert_ref(c);
229 pa_assert(t);
230 pa_assert(buf);
231 pa_assert(fail);
232
233 pa_assert_se(s = pa_client_list_to_string(c));
234 pa_strbuf_puts(buf, s);
235 pa_xfree(s);
236 return 0;
237 }
238
239 static int pa_cli_command_sinks(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
240 char *s;
241
242 pa_core_assert_ref(c);
243 pa_assert(t);
244 pa_assert(buf);
245 pa_assert(fail);
246
247 pa_assert_se(s = pa_sink_list_to_string(c));
248 pa_strbuf_puts(buf, s);
249 pa_xfree(s);
250 return 0;
251 }
252
253 static int pa_cli_command_sources(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
254 char *s;
255
256 pa_core_assert_ref(c);
257 pa_assert(t);
258 pa_assert(buf);
259 pa_assert(fail);
260
261 pa_assert_se(s = pa_source_list_to_string(c));
262 pa_strbuf_puts(buf, s);
263 pa_xfree(s);
264 return 0;
265 }
266
267 static int pa_cli_command_sink_inputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
268 char *s;
269
270 pa_core_assert_ref(c);
271 pa_assert(t);
272 pa_assert(buf);
273 pa_assert(fail);
274
275 pa_assert_se(s = pa_sink_input_list_to_string(c));
276 pa_strbuf_puts(buf, s);
277 pa_xfree(s);
278 return 0;
279 }
280
281 static int pa_cli_command_source_outputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
282 char *s;
283
284 pa_core_assert_ref(c);
285 pa_assert(t);
286 pa_assert(buf);
287 pa_assert(fail);
288
289 pa_assert_se(s = pa_source_output_list_to_string(c));
290 pa_strbuf_puts(buf, s);
291 pa_xfree(s);
292 return 0;
293 }
294
295 static int pa_cli_command_stat(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
296 char s[256];
297 const pa_mempool_stat *stat;
298 unsigned k;
299 const char *def_sink, *def_source;
300
301 static const char* const type_table[PA_MEMBLOCK_TYPE_MAX] = {
302 [PA_MEMBLOCK_POOL] = "POOL",
303 [PA_MEMBLOCK_POOL_EXTERNAL] = "POOL_EXTERNAL",
304 [PA_MEMBLOCK_APPENDED] = "APPENDED",
305 [PA_MEMBLOCK_USER] = "USER",
306 [PA_MEMBLOCK_FIXED] = "FIXED",
307 [PA_MEMBLOCK_IMPORTED] = "IMPORTED",
308 };
309
310 pa_core_assert_ref(c);
311 pa_assert(t);
312 pa_assert(buf);
313 pa_assert(fail);
314
315 stat = pa_mempool_get_stat(c->mempool);
316
317 pa_strbuf_printf(buf, "Memory blocks currently allocated: %u, size: %s.\n",
318 (unsigned) pa_atomic_load(&stat->n_allocated),
319 pa_bytes_snprint(s, sizeof(s), (size_t) pa_atomic_load(&stat->allocated_size)));
320
321 pa_strbuf_printf(buf, "Memory blocks allocated during the whole lifetime: %u, size: %s.\n",
322 (unsigned) pa_atomic_load(&stat->n_accumulated),
323 pa_bytes_snprint(s, sizeof(s), (size_t) pa_atomic_load(&stat->accumulated_size)));
324
325 pa_strbuf_printf(buf, "Memory blocks imported from other processes: %u, size: %s.\n",
326 (unsigned) pa_atomic_load(&stat->n_imported),
327 pa_bytes_snprint(s, sizeof(s), (size_t) pa_atomic_load(&stat->imported_size)));
328
329 pa_strbuf_printf(buf, "Memory blocks exported to other processes: %u, size: %s.\n",
330 (unsigned) pa_atomic_load(&stat->n_exported),
331 pa_bytes_snprint(s, sizeof(s), (size_t) pa_atomic_load(&stat->exported_size)));
332
333 pa_strbuf_printf(buf, "Total sample cache size: %s.\n",
334 pa_bytes_snprint(s, sizeof(s), pa_scache_total_size(c)));
335
336 pa_strbuf_printf(buf, "Default sample spec: %s\n",
337 pa_sample_spec_snprint(s, sizeof(s), &c->default_sample_spec));
338
339 def_sink = pa_namereg_get_default_sink_name(c);
340 def_source = pa_namereg_get_default_source_name(c);
341 pa_strbuf_printf(buf, "Default sink name: %s\n"
342 "Default source name: %s\n",
343 def_sink ? def_sink : "none",
344 def_source ? def_source : "none");
345
346 for (k = 0; k < PA_MEMBLOCK_TYPE_MAX; k++)
347 pa_strbuf_printf(buf,
348 "Memory blocks of type %s: %u allocated/%u accumulated.\n",
349 type_table[k],
350 (unsigned) pa_atomic_load(&stat->n_allocated_by_type[k]),
351 (unsigned) pa_atomic_load(&stat->n_accumulated_by_type[k]));
352
353 return 0;
354 }
355
356 static int pa_cli_command_info(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
357 pa_core_assert_ref(c);
358 pa_assert(t);
359 pa_assert(buf);
360 pa_assert(fail);
361
362 pa_cli_command_stat(c, t, buf, fail);
363 pa_cli_command_modules(c, t, buf, fail);
364 pa_cli_command_sinks(c, t, buf, fail);
365 pa_cli_command_sources(c, t, buf, fail);
366 pa_cli_command_clients(c, t, buf, fail);
367 pa_cli_command_sink_inputs(c, t, buf, fail);
368 pa_cli_command_source_outputs(c, t, buf, fail);
369 pa_cli_command_scache_list(c, t, buf, fail);
370 /* pa_cli_command_autoload_list(c, t, buf, fail); */
371 return 0;
372 }
373
374 static int pa_cli_command_load(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
375 pa_module *m;
376 const char *name;
377
378 pa_core_assert_ref(c);
379 pa_assert(t);
380 pa_assert(buf);
381 pa_assert(fail);
382
383 if (!(name = pa_tokenizer_get(t, 1))) {
384 pa_strbuf_puts(buf, "You need to specify the module name and optionally arguments.\n");
385 return -1;
386 }
387
388 if (!(m = pa_module_load(c, name, pa_tokenizer_get(t, 2)))) {
389 pa_strbuf_puts(buf, "Module load failed.\n");
390 return -1;
391 }
392
393 return 0;
394 }
395
396 static int pa_cli_command_unload(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
397 pa_module *m;
398 uint32_t idx;
399 const char *i;
400 char *e;
401
402 pa_core_assert_ref(c);
403 pa_assert(t);
404 pa_assert(buf);
405 pa_assert(fail);
406
407 if (!(i = pa_tokenizer_get(t, 1))) {
408 pa_strbuf_puts(buf, "You need to specify the module index.\n");
409 return -1;
410 }
411
412 idx = (uint32_t) strtoul(i, &e, 10);
413 if (*e || !(m = pa_idxset_get_by_index(c->modules, idx))) {
414 pa_strbuf_puts(buf, "Invalid module index.\n");
415 return -1;
416 }
417
418 pa_module_unload_request(m);
419 return 0;
420 }
421
422 static int pa_cli_command_sink_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
423 const char *n, *v;
424 pa_sink *sink;
425 uint32_t volume;
426 pa_cvolume cvolume;
427
428 pa_core_assert_ref(c);
429 pa_assert(t);
430 pa_assert(buf);
431 pa_assert(fail);
432
433 if (!(n = pa_tokenizer_get(t, 1))) {
434 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
435 return -1;
436 }
437
438 if (!(v = pa_tokenizer_get(t, 2))) {
439 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
440 return -1;
441 }
442
443 if (pa_atou(v, &volume) < 0) {
444 pa_strbuf_puts(buf, "Failed to parse volume.\n");
445 return -1;
446 }
447
448 if (!(sink = pa_namereg_get(c, n, PA_NAMEREG_SINK, 1))) {
449 pa_strbuf_puts(buf, "No sink found by this name or index.\n");
450 return -1;
451 }
452
453 pa_cvolume_set(&cvolume, sink->sample_spec.channels, volume);
454 pa_sink_set_volume(sink, &cvolume);
455 return 0;
456 }
457
458 static int pa_cli_command_sink_input_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
459 const char *n, *v;
460 pa_sink_input *si;
461 pa_volume_t volume;
462 pa_cvolume cvolume;
463 uint32_t idx;
464
465 pa_core_assert_ref(c);
466 pa_assert(t);
467 pa_assert(buf);
468 pa_assert(fail);
469
470 if (!(n = pa_tokenizer_get(t, 1))) {
471 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
472 return -1;
473 }
474
475 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
476 pa_strbuf_puts(buf, "Failed to parse index.\n");
477 return -1;
478 }
479
480 if (!(v = pa_tokenizer_get(t, 2))) {
481 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
482 return -1;
483 }
484
485 if (pa_atou(v, &volume) < 0) {
486 pa_strbuf_puts(buf, "Failed to parse volume.\n");
487 return -1;
488 }
489
490 if (!(si = pa_idxset_get_by_index(c->sink_inputs, (uint32_t) idx))) {
491 pa_strbuf_puts(buf, "No sink input found with this index.\n");
492 return -1;
493 }
494
495 pa_cvolume_set(&cvolume, si->sample_spec.channels, volume);
496 pa_sink_input_set_volume(si, &cvolume);
497 return 0;
498 }
499
500 static int pa_cli_command_source_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
501 const char *n, *v;
502 pa_source *source;
503 uint32_t volume;
504 pa_cvolume cvolume;
505
506 pa_core_assert_ref(c);
507 pa_assert(t);
508 pa_assert(buf);
509 pa_assert(fail);
510
511 if (!(n = pa_tokenizer_get(t, 1))) {
512 pa_strbuf_puts(buf, "You need to specify a source either by its name or its index.\n");
513 return -1;
514 }
515
516 if (!(v = pa_tokenizer_get(t, 2))) {
517 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
518 return -1;
519 }
520
521 if (pa_atou(v, &volume) < 0) {
522 pa_strbuf_puts(buf, "Failed to parse volume.\n");
523 return -1;
524 }
525
526 if (!(source = pa_namereg_get(c, n, PA_NAMEREG_SOURCE, 1))) {
527 pa_strbuf_puts(buf, "No source found by this name or index.\n");
528 return -1;
529 }
530
531 pa_cvolume_set(&cvolume, source->sample_spec.channels, volume);
532 pa_source_set_volume(source, &cvolume);
533 return 0;
534 }
535
536 static int pa_cli_command_sink_mute(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
537 const char *n, *m;
538 pa_sink *sink;
539 int mute;
540
541 pa_core_assert_ref(c);
542 pa_assert(t);
543 pa_assert(buf);
544 pa_assert(fail);
545
546 if (!(n = pa_tokenizer_get(t, 1))) {
547 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
548 return -1;
549 }
550
551 if (!(m = pa_tokenizer_get(t, 2))) {
552 pa_strbuf_puts(buf, "You need to specify a mute switch setting (0/1).\n");
553 return -1;
554 }
555
556 if (pa_atoi(m, &mute) < 0) {
557 pa_strbuf_puts(buf, "Failed to parse mute switch.\n");
558 return -1;
559 }
560
561 if (!(sink = pa_namereg_get(c, n, PA_NAMEREG_SINK, 1))) {
562 pa_strbuf_puts(buf, "No sink found by this name or index.\n");
563 return -1;
564 }
565
566 pa_sink_set_mute(sink, mute);
567 return 0;
568 }
569
570 static int pa_cli_command_source_mute(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
571 const char *n, *m;
572 pa_source *source;
573 int mute;
574
575 pa_core_assert_ref(c);
576 pa_assert(t);
577 pa_assert(buf);
578 pa_assert(fail);
579
580 if (!(n = pa_tokenizer_get(t, 1))) {
581 pa_strbuf_puts(buf, "You need to specify a source either by its name or its index.\n");
582 return -1;
583 }
584
585 if (!(m = pa_tokenizer_get(t, 2))) {
586 pa_strbuf_puts(buf, "You need to specify a mute switch setting (0/1).\n");
587 return -1;
588 }
589
590 if (pa_atoi(m, &mute) < 0) {
591 pa_strbuf_puts(buf, "Failed to parse mute switch.\n");
592 return -1;
593 }
594
595 if (!(source = pa_namereg_get(c, n, PA_NAMEREG_SOURCE, 1))) {
596 pa_strbuf_puts(buf, "No sink found by this name or index.\n");
597 return -1;
598 }
599
600 pa_source_set_mute(source, mute);
601 return 0;
602 }
603
604 static int pa_cli_command_sink_input_mute(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
605 const char *n, *v;
606 pa_sink_input *si;
607 uint32_t idx;
608 int mute;
609
610 pa_core_assert_ref(c);
611 pa_assert(t);
612 pa_assert(buf);
613 pa_assert(fail);
614
615 if (!(n = pa_tokenizer_get(t, 1))) {
616 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
617 return -1;
618 }
619
620 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
621 pa_strbuf_puts(buf, "Failed to parse index.\n");
622 return -1;
623 }
624
625 if (!(v = pa_tokenizer_get(t, 2))) {
626 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
627 return -1;
628 }
629
630 if (pa_atoi(v, &mute) < 0) {
631 pa_strbuf_puts(buf, "Failed to parse mute switch.\n");
632 return -1;
633 }
634
635 if (!(si = pa_idxset_get_by_index(c->sink_inputs, (uint32_t) idx))) {
636 pa_strbuf_puts(buf, "No sink input found with this index.\n");
637 return -1;
638 }
639
640 pa_sink_input_set_mute(si, mute);
641 return 0;
642 }
643
644 static int pa_cli_command_sink_default(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
645 const char *n;
646
647 pa_core_assert_ref(c);
648 pa_assert(t);
649 pa_assert(buf);
650 pa_assert(fail);
651
652 if (!(n = pa_tokenizer_get(t, 1))) {
653 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
654 return -1;
655 }
656
657 pa_namereg_set_default(c, n, PA_NAMEREG_SINK);
658 return 0;
659 }
660
661 static int pa_cli_command_source_default(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
662 const char *n;
663
664 pa_core_assert_ref(c);
665 pa_assert(t);
666 pa_assert(buf);
667 pa_assert(fail);
668
669 if (!(n = pa_tokenizer_get(t, 1))) {
670 pa_strbuf_puts(buf, "You need to specify a source either by its name or its index.\n");
671 return -1;
672 }
673
674 pa_namereg_set_default(c, n, PA_NAMEREG_SOURCE);
675 return 0;
676 }
677
678 static int pa_cli_command_kill_client(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
679 const char *n;
680 pa_client *client;
681 uint32_t idx;
682
683 pa_core_assert_ref(c);
684 pa_assert(t);
685 pa_assert(buf);
686 pa_assert(fail);
687
688 if (!(n = pa_tokenizer_get(t, 1))) {
689 pa_strbuf_puts(buf, "You need to specify a client by its index.\n");
690 return -1;
691 }
692
693 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
694 pa_strbuf_puts(buf, "Failed to parse index.\n");
695 return -1;
696 }
697
698 if (!(client = pa_idxset_get_by_index(c->clients, idx))) {
699 pa_strbuf_puts(buf, "No client found by this index.\n");
700 return -1;
701 }
702
703 pa_client_kill(client);
704 return 0;
705 }
706
707 static int pa_cli_command_kill_sink_input(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
708 const char *n;
709 pa_sink_input *sink_input;
710 uint32_t idx;
711
712 pa_core_assert_ref(c);
713 pa_assert(t);
714 pa_assert(buf);
715 pa_assert(fail);
716
717 if (!(n = pa_tokenizer_get(t, 1))) {
718 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
719 return -1;
720 }
721
722 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
723 pa_strbuf_puts(buf, "Failed to parse index.\n");
724 return -1;
725 }
726
727 if (!(sink_input = pa_idxset_get_by_index(c->sink_inputs, idx))) {
728 pa_strbuf_puts(buf, "No sink input found by this index.\n");
729 return -1;
730 }
731
732 pa_sink_input_kill(sink_input);
733 return 0;
734 }
735
736 static int pa_cli_command_kill_source_output(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
737 const char *n;
738 pa_source_output *source_output;
739 uint32_t idx;
740
741 pa_core_assert_ref(c);
742 pa_assert(t);
743 pa_assert(buf);
744 pa_assert(fail);
745
746 if (!(n = pa_tokenizer_get(t, 1))) {
747 pa_strbuf_puts(buf, "You need to specify a source output by its index.\n");
748 return -1;
749 }
750
751 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
752 pa_strbuf_puts(buf, "Failed to parse index.\n");
753 return -1;
754 }
755
756 if (!(source_output = pa_idxset_get_by_index(c->source_outputs, idx))) {
757 pa_strbuf_puts(buf, "No source output found by this index.\n");
758 return -1;
759 }
760
761 pa_source_output_kill(source_output);
762 return 0;
763 }
764
765 static int pa_cli_command_scache_list(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
766 char *s;
767
768 pa_core_assert_ref(c);
769 pa_assert(t);
770 pa_assert(buf);
771 pa_assert(fail);
772
773 pa_assert_se(s = pa_scache_list_to_string(c));
774 pa_strbuf_puts(buf, s);
775 pa_xfree(s);
776
777 return 0;
778 }
779
780 static int pa_cli_command_scache_play(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
781 const char *n, *sink_name;
782 pa_sink *sink;
783 uint32_t idx;
784
785 pa_core_assert_ref(c);
786 pa_assert(t);
787 pa_assert(buf);
788 pa_assert(fail);
789
790 if (!(n = pa_tokenizer_get(t, 1)) || !(sink_name = pa_tokenizer_get(t, 2))) {
791 pa_strbuf_puts(buf, "You need to specify a sample name and a sink name.\n");
792 return -1;
793 }
794
795 if (!(sink = pa_namereg_get(c, sink_name, PA_NAMEREG_SINK, 1))) {
796 pa_strbuf_puts(buf, "No sink by that name.\n");
797 return -1;
798 }
799
800 if (pa_scache_play_item(c, n, sink, PA_VOLUME_NORM, NULL, &idx) < 0) {
801 pa_strbuf_puts(buf, "Failed to play sample.\n");
802 return -1;
803 }
804
805 pa_strbuf_printf(buf, "Playing on sink input #%i\n", idx);
806
807 return 0;
808 }
809
810 static int pa_cli_command_scache_remove(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
811 const char *n;
812
813 pa_core_assert_ref(c);
814 pa_assert(t);
815 pa_assert(buf);
816 pa_assert(fail);
817
818 if (!(n = pa_tokenizer_get(t, 1))) {
819 pa_strbuf_puts(buf, "You need to specify a sample name.\n");
820 return -1;
821 }
822
823 if (pa_scache_remove_item(c, n) < 0) {
824 pa_strbuf_puts(buf, "Failed to remove sample.\n");
825 return -1;
826 }
827
828 return 0;
829 }
830
831 static int pa_cli_command_scache_load(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
832 const char *fname, *n;
833 int r;
834
835 pa_core_assert_ref(c);
836 pa_assert(t);
837 pa_assert(buf);
838 pa_assert(fail);
839
840 if (!(fname = pa_tokenizer_get(t, 2)) || !(n = pa_tokenizer_get(t, 1))) {
841 pa_strbuf_puts(buf, "You need to specify a file name and a sample name.\n");
842 return -1;
843 }
844
845 if (strstr(pa_tokenizer_get(t, 0), "lazy"))
846 r = pa_scache_add_file_lazy(c, n, fname, NULL);
847 else
848 r = pa_scache_add_file(c, n, fname, NULL);
849
850 if (r < 0)
851 pa_strbuf_puts(buf, "Failed to load sound file.\n");
852
853 return 0;
854 }
855
856 static int pa_cli_command_scache_load_dir(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
857 const char *pname;
858
859 pa_core_assert_ref(c);
860 pa_assert(t);
861 pa_assert(buf);
862 pa_assert(fail);
863
864 if (!(pname = pa_tokenizer_get(t, 1))) {
865 pa_strbuf_puts(buf, "You need to specify a path name.\n");
866 return -1;
867 }
868
869 if (pa_scache_add_directory_lazy(c, pname) < 0) {
870 pa_strbuf_puts(buf, "Failed to load directory.\n");
871 return -1;
872 }
873
874 return 0;
875 }
876
877 static int pa_cli_command_play_file(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
878 const char *fname, *sink_name;
879 pa_sink *sink;
880
881 pa_core_assert_ref(c);
882 pa_assert(t);
883 pa_assert(buf);
884 pa_assert(fail);
885
886 if (!(fname = pa_tokenizer_get(t, 1)) || !(sink_name = pa_tokenizer_get(t, 2))) {
887 pa_strbuf_puts(buf, "You need to specify a file name and a sink name.\n");
888 return -1;
889 }
890
891 if (!(sink = pa_namereg_get(c, sink_name, PA_NAMEREG_SINK, 1))) {
892 pa_strbuf_puts(buf, "No sink by that name.\n");
893 return -1;
894 }
895
896
897 return pa_play_file(sink, fname, NULL);
898 }
899
900 static int pa_cli_command_autoload_add(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
901 const char *a, *b;
902
903 pa_core_assert_ref(c);
904 pa_assert(t);
905 pa_assert(buf);
906 pa_assert(fail);
907
908 pa_log_warn("Autoload will no longer be implemented by future versions of the PulseAudio server.");
909
910 if (!(a = pa_tokenizer_get(t, 1)) || !(b = pa_tokenizer_get(t, 2))) {
911 pa_strbuf_puts(buf, "You need to specify a device name, a filename or a module name and optionally module arguments\n");
912 return -1;
913 }
914
915 pa_autoload_add(c, a, strstr(pa_tokenizer_get(t, 0), "sink") ? PA_NAMEREG_SINK : PA_NAMEREG_SOURCE, b, pa_tokenizer_get(t, 3), NULL);
916
917 return 0;
918 }
919
920 static int pa_cli_command_autoload_remove(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
921 const char *name;
922
923 pa_core_assert_ref(c);
924 pa_assert(t);
925 pa_assert(buf);
926 pa_assert(fail);
927
928 pa_log_warn("Autoload will no longer be implemented by future versions of the PulseAudio server.");
929
930 if (!(name = pa_tokenizer_get(t, 1))) {
931 pa_strbuf_puts(buf, "You need to specify a device name\n");
932 return -1;
933 }
934
935 if (pa_autoload_remove_by_name(c, name, strstr(pa_tokenizer_get(t, 0), "sink") ? PA_NAMEREG_SINK : PA_NAMEREG_SOURCE) < 0) {
936 pa_strbuf_puts(buf, "Failed to remove autload entry\n");
937 return -1;
938 }
939
940 return 0;
941 }
942
943 static int pa_cli_command_autoload_list(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
944 char *s;
945
946 pa_core_assert_ref(c);
947 pa_assert(t);
948 pa_assert(buf);
949 pa_assert(fail);
950
951 pa_log_warn("Autoload will no longer be implemented by future versions of the PulseAudio server.");
952
953 pa_assert_se(s = pa_autoload_list_to_string(c));
954 pa_strbuf_puts(buf, s);
955 pa_xfree(s);
956
957 return 0;
958 }
959
960 static int pa_cli_command_list_props(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
961 pa_core_assert_ref(c);
962 pa_assert(t);
963 pa_assert(buf);
964 pa_assert(fail);
965
966 pa_property_dump(c, buf);
967 return 0;
968 }
969
970 static int pa_cli_command_vacuum(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
971 pa_core_assert_ref(c);
972 pa_assert(t);
973 pa_assert(buf);
974 pa_assert(fail);
975
976 pa_mempool_vacuum(c->mempool);
977
978 return 0;
979 }
980
981 static int pa_cli_command_move_sink_input(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
982 const char *n, *k;
983 pa_sink_input *si;
984 pa_sink *sink;
985 uint32_t idx;
986
987 pa_core_assert_ref(c);
988 pa_assert(t);
989 pa_assert(buf);
990 pa_assert(fail);
991
992 if (!(n = pa_tokenizer_get(t, 1))) {
993 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
994 return -1;
995 }
996
997 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
998 pa_strbuf_puts(buf, "Failed to parse index.\n");
999 return -1;
1000 }
1001
1002 if (!(k = pa_tokenizer_get(t, 2))) {
1003 pa_strbuf_puts(buf, "You need to specify a sink.\n");
1004 return -1;
1005 }
1006
1007 if (!(si = pa_idxset_get_by_index(c->sink_inputs, (uint32_t) idx))) {
1008 pa_strbuf_puts(buf, "No sink input found with this index.\n");
1009 return -1;
1010 }
1011
1012 if (!(sink = pa_namereg_get(c, k, PA_NAMEREG_SINK, 1))) {
1013 pa_strbuf_puts(buf, "No sink found by this name or index.\n");
1014 return -1;
1015 }
1016
1017 if (pa_sink_input_move_to(si, sink, 0) < 0) {
1018 pa_strbuf_puts(buf, "Moved failed.\n");
1019 return -1;
1020 }
1021 return 0;
1022 }
1023
1024 static int pa_cli_command_move_source_output(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
1025 const char *n, *k;
1026 pa_source_output *so;
1027 pa_source *source;
1028 uint32_t idx;
1029
1030 pa_core_assert_ref(c);
1031 pa_assert(t);
1032 pa_assert(buf);
1033 pa_assert(fail);
1034
1035 if (!(n = pa_tokenizer_get(t, 1))) {
1036 pa_strbuf_puts(buf, "You need to specify a source output by its index.\n");
1037 return -1;
1038 }
1039
1040 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
1041 pa_strbuf_puts(buf, "Failed to parse index.\n");
1042 return -1;
1043 }
1044
1045 if (!(k = pa_tokenizer_get(t, 2))) {
1046 pa_strbuf_puts(buf, "You need to specify a source.\n");
1047 return -1;
1048 }
1049
1050 if (!(so = pa_idxset_get_by_index(c->source_outputs, (uint32_t) idx))) {
1051 pa_strbuf_puts(buf, "No source output found with this index.\n");
1052 return -1;
1053 }
1054
1055 if (!(source = pa_namereg_get(c, k, PA_NAMEREG_SOURCE, 1))) {
1056 pa_strbuf_puts(buf, "No source found by this name or index.\n");
1057 return -1;
1058 }
1059
1060 if (pa_source_output_move_to(so, source) < 0) {
1061 pa_strbuf_puts(buf, "Moved failed.\n");
1062 return -1;
1063 }
1064 return 0;
1065 }
1066
1067 static int pa_cli_command_suspend_sink(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
1068 const char *n, *m;
1069 pa_sink *sink;
1070 int suspend;
1071
1072 pa_core_assert_ref(c);
1073 pa_assert(t);
1074 pa_assert(buf);
1075 pa_assert(fail);
1076
1077 if (!(n = pa_tokenizer_get(t, 1))) {
1078 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
1079 return -1;
1080 }
1081
1082 if (!(m = pa_tokenizer_get(t, 2))) {
1083 pa_strbuf_puts(buf, "You need to specify a suspend switch setting (0/1).\n");
1084 return -1;
1085 }
1086
1087 if (pa_atoi(m, &suspend) < 0) {
1088 pa_strbuf_puts(buf, "Failed to parse suspend switch.\n");
1089 return -1;
1090 }
1091
1092 if (!(sink = pa_namereg_get(c, n, PA_NAMEREG_SINK, 1))) {
1093 pa_strbuf_puts(buf, "No sink found by this name or index.\n");
1094 return -1;
1095 }
1096
1097 pa_sink_suspend(sink, suspend);
1098 return 0;
1099 }
1100
1101 static int pa_cli_command_suspend_source(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
1102 const char *n, *m;
1103 pa_source *source;
1104 int suspend;
1105
1106 pa_core_assert_ref(c);
1107 pa_assert(t);
1108 pa_assert(buf);
1109 pa_assert(fail);
1110
1111 if (!(n = pa_tokenizer_get(t, 1))) {
1112 pa_strbuf_puts(buf, "You need to specify a source either by its name or its index.\n");
1113 return -1;
1114 }
1115
1116 if (!(m = pa_tokenizer_get(t, 2))) {
1117 pa_strbuf_puts(buf, "You need to specify a suspend switch setting (0/1).\n");
1118 return -1;
1119 }
1120
1121 if (pa_atoi(m, &suspend) < 0) {
1122 pa_strbuf_puts(buf, "Failed to parse suspend switch.\n");
1123 return -1;
1124 }
1125
1126 if (!(source = pa_namereg_get(c, n, PA_NAMEREG_SOURCE, 1))) {
1127 pa_strbuf_puts(buf, "No source found by this name or index.\n");
1128 return -1;
1129 }
1130
1131 pa_source_suspend(source, suspend);
1132 return 0;
1133 }
1134
1135 static int pa_cli_command_suspend(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
1136 const char *m;
1137 int suspend;
1138 int ret;
1139
1140 pa_core_assert_ref(c);
1141 pa_assert(t);
1142 pa_assert(buf);
1143 pa_assert(fail);
1144
1145 if (!(m = pa_tokenizer_get(t, 1))) {
1146 pa_strbuf_puts(buf, "You need to specify a suspend switch setting (0/1).\n");
1147 return -1;
1148 }
1149
1150 if (pa_atoi(m, &suspend) < 0) {
1151 pa_strbuf_puts(buf, "Failed to parse suspend switch.\n");
1152 return -1;
1153 }
1154
1155 ret = - (pa_sink_suspend_all(c, suspend) < 0);
1156 if (pa_source_suspend_all(c, suspend) < 0)
1157 ret = -1;
1158
1159 if (ret < 0)
1160 pa_strbuf_puts(buf, "Failed to resume/suspend all sinks/sources.\n");
1161
1162 return 0;
1163 }
1164
1165 static int pa_cli_command_dump(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, pa_bool_t *fail) {
1166 pa_module *m;
1167 pa_sink *sink;
1168 pa_source *source;
1169 int nl;
1170 const char *p;
1171 uint32_t idx;
1172 char txt[256];
1173 time_t now;
1174 void *i;
1175 pa_autoload_entry *a;
1176
1177 pa_core_assert_ref(c);
1178 pa_assert(t);
1179 pa_assert(buf);
1180 pa_assert(fail);
1181
1182 time(&now);
1183
1184 #ifdef HAVE_CTIME_R
1185 pa_strbuf_printf(buf, "### Configuration dump generated at %s\n", ctime_r(&now, txt));
1186 #else
1187 pa_strbuf_printf(buf, "### Configuration dump generated at %s\n", ctime(&now));
1188 #endif
1189
1190 for (m = pa_idxset_first(c->modules, &idx); m; m = pa_idxset_next(c->modules, &idx)) {
1191 if (m->auto_unload)
1192 continue;
1193
1194 pa_strbuf_printf(buf, "load-module %s", m->name);
1195
1196 if (m->argument)
1197 pa_strbuf_printf(buf, " %s", m->argument);
1198
1199 pa_strbuf_puts(buf, "\n");
1200 }
1201
1202 nl = 0;
1203
1204 for (sink = pa_idxset_first(c->sinks, &idx); sink; sink = pa_idxset_next(c->sinks, &idx)) {
1205 if (sink->module && sink->module->auto_unload)
1206 continue;
1207
1208 if (!nl) {
1209 pa_strbuf_puts(buf, "\n");
1210 nl = 1;
1211 }
1212
1213 pa_strbuf_printf(buf, "set-sink-volume %s 0x%03x\n", sink->name, pa_cvolume_avg(pa_sink_get_volume(sink)));
1214 pa_strbuf_printf(buf, "set-sink-mute %s %d\n", sink->name, pa_sink_get_mute(sink));
1215 }
1216
1217 for (source = pa_idxset_first(c->sources, &idx); source; source = pa_idxset_next(c->sources, &idx)) {
1218 if (source->module && source->module->auto_unload)
1219 continue;
1220
1221 if (!nl) {
1222 pa_strbuf_puts(buf, "\n");
1223 nl = 1;
1224 }
1225
1226 pa_strbuf_printf(buf, "set-source-volume %s 0x%03x\n", source->name, pa_cvolume_avg(pa_source_get_volume(source)));
1227 pa_strbuf_printf(buf, "set-source-mute %s %d\n", source->name, pa_source_get_mute(source));
1228 }
1229
1230
1231 if (c->autoload_hashmap) {
1232 nl = 0;
1233
1234 i = NULL;
1235 while ((a = pa_hashmap_iterate(c->autoload_hashmap, &i, NULL))) {
1236
1237 if (!nl) {
1238 pa_strbuf_puts(buf, "\n");
1239 nl = 1;
1240 }
1241
1242 pa_strbuf_printf(buf, "add-autoload-%s %s %s", a->type == PA_NAMEREG_SINK ? "sink" : "source", a->name, a->module);
1243
1244 if (a->argument)
1245 pa_strbuf_printf(buf, " %s", a->argument);
1246
1247 pa_strbuf_puts(buf, "\n");
1248 }
1249 }
1250
1251 nl = 0;
1252
1253 if ((p = pa_namereg_get_default_sink_name(c))) {
1254 if (!nl) {
1255 pa_strbuf_puts(buf, "\n");
1256 nl = 1;
1257 }
1258 pa_strbuf_printf(buf, "set-default-sink %s\n", p);
1259 }
1260
1261 if ((p = pa_namereg_get_default_source_name(c))) {
1262 if (!nl) {
1263 pa_strbuf_puts(buf, "\n");
1264 nl = 1;
1265 }
1266 pa_strbuf_printf(buf, "set-default-source %s\n", p);
1267 }
1268
1269 pa_strbuf_puts(buf, "\n### EOF\n");
1270
1271 return 0;
1272 }
1273
1274 int pa_cli_command_execute_line_stateful(pa_core *c, const char *s, pa_strbuf *buf, pa_bool_t *fail, int *ifstate) {
1275 const char *cs;
1276
1277 pa_assert(c);
1278 pa_assert(s);
1279 pa_assert(buf);
1280
1281 cs = s+strspn(s, whitespace);
1282
1283 if (*cs == '#' || !*cs)
1284 return 0;
1285 else if (*cs == '.') {
1286 if (!strcmp(cs, META_ELSE)) {
1287 if (!ifstate || *ifstate == IFSTATE_NONE) {
1288 pa_strbuf_printf(buf, "Meta command %s is not valid in this context\n", cs);
1289 return -1;
1290 } else if (*ifstate == IFSTATE_TRUE)
1291 *ifstate = IFSTATE_FALSE;
1292 else
1293 *ifstate = IFSTATE_TRUE;
1294 return 0;
1295 } else if (!strcmp(cs, META_ENDIF)) {
1296 if (!ifstate || *ifstate == IFSTATE_NONE) {
1297 pa_strbuf_printf(buf, "Meta command %s is not valid in this context\n", cs);
1298 return -1;
1299 } else
1300 *ifstate = IFSTATE_NONE;
1301 return 0;
1302 }
1303 if (ifstate && *ifstate == IFSTATE_FALSE)
1304 return 0;
1305 if (!strcmp(cs, META_FAIL))
1306 *fail = TRUE;
1307 else if (!strcmp(cs, META_NOFAIL))
1308 *fail = FALSE;
1309 else {
1310 size_t l;
1311 l = strcspn(cs, whitespace);
1312
1313 if (l == sizeof(META_INCLUDE)-1 && !strncmp(cs, META_INCLUDE, l)) {
1314 const char *filename = cs+l+strspn(cs+l, whitespace);
1315 if (pa_cli_command_execute_file(c, filename, buf, fail) < 0)
1316 if (*fail)
1317 return -1;
1318 } else if (l == sizeof(META_IFEXISTS)-1 && !strncmp(cs, META_IFEXISTS, l)) {
1319 if (!ifstate) {
1320 pa_strbuf_printf(buf, "Meta command %s is not valid in this context\n", cs);
1321 return -1;
1322 } else if (*ifstate != IFSTATE_NONE) {
1323 pa_strbuf_printf(buf, "Nested %s commands not supported\n", cs);
1324 return -1;
1325 } else {
1326 const char *filename = cs+l+strspn(cs+l, whitespace);
1327
1328 /* Search DL_SEARCH_PATH unless the filename is absolute */
1329 if (filename[0] == PA_PATH_SEP_CHAR) {
1330
1331 *ifstate = access(filename, F_OK) == 0 ? IFSTATE_TRUE : IFSTATE_FALSE;
1332 pa_log_debug("Checking for existance of '%s': %s", filename, *ifstate == IFSTATE_TRUE ? "success" : "failure");
1333
1334 } else {
1335 const char *paths, *state = NULL;
1336 char *p;
1337
1338 if (!(paths = lt_dlgetsearchpath()))
1339 return -1;
1340
1341 while ((p = pa_split(paths, ":", &state))) {
1342 char *pathname;
1343
1344 pathname = pa_sprintf_malloc("%s" PA_PATH_SEP "%s", p, filename);
1345 pa_xfree(p);
1346
1347 *ifstate = access(pathname, F_OK) == 0 ? IFSTATE_TRUE : IFSTATE_FALSE;
1348 pa_log_debug("Checking for existance of '%s': %s", pathname, *ifstate == IFSTATE_TRUE ? "success" : "failure");
1349
1350 pa_xfree(pathname);
1351
1352 if (*ifstate == IFSTATE_TRUE)
1353 break;
1354 }
1355 }
1356
1357 }
1358 } else {
1359 pa_strbuf_printf(buf, "Invalid meta command: %s\n", cs);
1360 if (*fail) return -1;
1361 }
1362 }
1363 } else {
1364 const struct command*command;
1365 int unknown = 1;
1366 size_t l;
1367
1368 if (ifstate && *ifstate == IFSTATE_FALSE)
1369 return 0;
1370
1371 l = strcspn(cs, whitespace);
1372
1373 for (command = commands; command->name; command++)
1374 if (strlen(command->name) == l && !strncmp(cs, command->name, l)) {
1375 int ret;
1376 pa_tokenizer *t = pa_tokenizer_new(cs, command->args);
1377 pa_assert(t);
1378 ret = command->proc(c, t, buf, fail);
1379 pa_tokenizer_free(t);
1380 unknown = 0;
1381
1382 if (ret < 0 && *fail)
1383 return -1;
1384
1385 break;
1386 }
1387
1388 if (unknown) {
1389 pa_strbuf_printf(buf, "Unknown command: %s\n", cs);
1390 if (*fail)
1391 return -1;
1392 }
1393 }
1394
1395 return 0;
1396 }
1397
1398 int pa_cli_command_execute_line(pa_core *c, const char *s, pa_strbuf *buf, pa_bool_t *fail) {
1399 return pa_cli_command_execute_line_stateful(c, s, buf, fail, NULL);
1400 }
1401
1402 int pa_cli_command_execute_file(pa_core *c, const char *fn, pa_strbuf *buf, pa_bool_t *fail) {
1403 char line[1024];
1404 FILE *f = NULL;
1405 int ifstate = IFSTATE_NONE;
1406 int ret = -1;
1407
1408 pa_assert(c);
1409 pa_assert(fn);
1410 pa_assert(buf);
1411
1412 if (!(f = fopen(fn, "r"))) {
1413 pa_strbuf_printf(buf, "open('%s') failed: %s\n", fn, pa_cstrerror(errno));
1414 if (!*fail)
1415 ret = 0;
1416 goto fail;
1417 }
1418
1419 while (fgets(line, sizeof(line), f)) {
1420 char *e = line + strcspn(line, linebreak);
1421 *e = 0;
1422
1423 if (pa_cli_command_execute_line_stateful(c, line, buf, fail, &ifstate) < 0 && *fail)
1424 goto fail;
1425 }
1426
1427 ret = 0;
1428
1429 fail:
1430 if (f)
1431 fclose(f);
1432
1433 return ret;
1434 }
1435
1436 int pa_cli_command_execute(pa_core *c, const char *s, pa_strbuf *buf, pa_bool_t *fail) {
1437 const char *p;
1438 int ifstate = IFSTATE_NONE;
1439
1440 pa_assert(c);
1441 pa_assert(s);
1442 pa_assert(buf);
1443
1444 p = s;
1445 while (*p) {
1446 size_t l = strcspn(p, linebreak);
1447 char *line = pa_xstrndup(p, l);
1448
1449 if (pa_cli_command_execute_line_stateful(c, line, buf, fail, &ifstate) < 0 && *fail) {
1450 pa_xfree(line);
1451 return -1;
1452 }
1453 pa_xfree(line);
1454
1455 p += l;
1456 p += strspn(p, linebreak);
1457 }
1458
1459 return 0;
1460 }