]> code.delx.au - pulseaudio/blob - src/polypcore/cli-command.c
dd4cbe463a04a5095783321c3ee62cc50c3557a1
[pulseaudio] / src / polypcore / cli-command.c
1 /* $Id$ */
2
3 /***
4 This file is part of polypaudio.
5
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 or (at your option) any later version.
10
11 polypaudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with polypaudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <string.h>
28 #include <assert.h>
29 #include <stdlib.h>
30 #include <errno.h>
31
32 #include "cli-command.h"
33 #include "module.h"
34 #include "sink.h"
35 #include "source.h"
36 #include "client.h"
37 #include "sink-input.h"
38 #include "source-output.h"
39 #include "tokenizer.h"
40 #include "strbuf.h"
41 #include "namereg.h"
42 #include "cli-text.h"
43 #include "core-scache.h"
44 #include "sample-util.h"
45 #include "sound-file.h"
46 #include "play-memchunk.h"
47 #include "autoload.h"
48 #include "xmalloc.h"
49 #include "sound-file-stream.h"
50 #include "props.h"
51 #include "util.h"
52
53 struct command {
54 const char *name;
55 int (*proc) (pa_core *c, pa_tokenizer*t, pa_strbuf *buf, int *fail);
56 const char *help;
57 unsigned args;
58 };
59
60 #define INCLUDE_META ".include"
61 #define FAIL_META ".fail"
62 #define NOFAIL_META ".nofail"
63
64 /* Prototypes for all available commands */
65 static int pa_cli_command_exit(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
66 static int pa_cli_command_help(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
67 static int pa_cli_command_modules(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
68 static int pa_cli_command_clients(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
69 static int pa_cli_command_sinks(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
70 static int pa_cli_command_sources(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
71 static int pa_cli_command_sink_inputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
72 static int pa_cli_command_source_outputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
73 static int pa_cli_command_stat(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
74 static int pa_cli_command_info(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
75 static int pa_cli_command_load(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
76 static int pa_cli_command_unload(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
77 static int pa_cli_command_sink_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
78 static int pa_cli_command_sink_input_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
79 static int pa_cli_command_sink_default(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
80 static int pa_cli_command_source_default(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
81 static int pa_cli_command_kill_client(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
82 static int pa_cli_command_kill_sink_input(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
83 static int pa_cli_command_kill_source_output(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
84 static int pa_cli_command_scache_play(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
85 static int pa_cli_command_scache_remove(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
86 static int pa_cli_command_scache_list(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
87 static int pa_cli_command_scache_load(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
88 static int pa_cli_command_scache_load_dir(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
89 static int pa_cli_command_play_file(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
90 static int pa_cli_command_autoload_list(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
91 static int pa_cli_command_autoload_add(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
92 static int pa_cli_command_autoload_remove(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
93 static int pa_cli_command_dump(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
94 static int pa_cli_command_list_props(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail);
95
96
97 /* A method table for all available commands */
98
99 static const struct command commands[] = {
100 { "exit", pa_cli_command_exit, "Terminate the daemon", 1 },
101 { "help", pa_cli_command_help, "Show this help", 1 },
102 { "list-modules", pa_cli_command_modules, "List loaded modules", 1 },
103 { "list-sinks", pa_cli_command_sinks, "List loaded sinks", 1 },
104 { "list-sources", pa_cli_command_sources, "List loaded sources", 1 },
105 { "list-clients", pa_cli_command_clients, "List loaded clients", 1 },
106 { "list-sink-inputs", pa_cli_command_sink_inputs, "List sink inputs", 1 },
107 { "list-source-outputs", pa_cli_command_source_outputs, "List source outputs", 1 },
108 { "stat", pa_cli_command_stat, "Show memory block statistics", 1 },
109 { "info", pa_cli_command_info, "Show comprehensive status", 1 },
110 { "ls", pa_cli_command_info, NULL, 1 },
111 { "list", pa_cli_command_info, NULL, 1 },
112 { "load-module", pa_cli_command_load, "Load a module (args: name, arguments)", 3},
113 { "unload-module", pa_cli_command_unload, "Unload a module (args: index)", 2},
114 { "set-sink-volume", pa_cli_command_sink_volume, "Set the volume of a sink (args: index|name, volume)", 3},
115 { "set-sink-input-volume", pa_cli_command_sink_input_volume, "Set the volume of a sink input (args: index|name, volume)", 3},
116 { "set-default-sink", pa_cli_command_sink_default, "Set the default sink (args: index|name)", 2},
117 { "set-default-source", pa_cli_command_source_default, "Set the default source (args: index|name)", 2},
118 { "kill-client", pa_cli_command_kill_client, "Kill a client (args: index)", 2},
119 { "kill-sink-input", pa_cli_command_kill_sink_input, "Kill a sink input (args: index)", 2},
120 { "kill-source-output", pa_cli_command_kill_source_output, "Kill a source output (args: index)", 2},
121 { "list-samples", pa_cli_command_scache_list, "List all entries in the sample cache", 1},
122 { "play-sample", pa_cli_command_scache_play, "Play a sample from the sample cache (args: name, sink|index)", 3},
123 { "remove-sample", pa_cli_command_scache_remove, "Remove a sample from the sample cache (args: name)", 2},
124 { "load-sample", pa_cli_command_scache_load, "Load a sound file into the sample cache (args: name, filename)", 3},
125 { "load-sample-lazy", pa_cli_command_scache_load, "Lazily load a sound file into the sample cache (args: name, filename)", 3},
126 { "load-sample-dir-lazy", pa_cli_command_scache_load_dir, "Lazily load all files in a directory into the sample cache (args: pathname)", 2},
127 { "play-file", pa_cli_command_play_file, "Play a sound file (args: filename, sink|index)", 3},
128 { "list-autoload", pa_cli_command_autoload_list, "List autoload entries", 1},
129 { "add-autoload-sink", pa_cli_command_autoload_add, "Add autoload entry for a sink (args: sink, module name, arguments)", 4},
130 { "add-autoload-source", pa_cli_command_autoload_add, "Add autoload entry for a source (args: source, module name, arguments)", 4},
131 { "remove-autoload-sink", pa_cli_command_autoload_remove, "Remove autoload entry for a sink (args: name)", 2},
132 { "remove-autoload-source", pa_cli_command_autoload_remove, "Remove autoload entry for a source (args: name)", 2},
133 { "dump", pa_cli_command_dump, "Dump daemon configuration", 1},
134 { "list-props", pa_cli_command_list_props, NULL, 1},
135 { NULL, NULL, NULL, 0 }
136 };
137
138 static const char whitespace[] = " \t\n\r";
139 static const char linebreak[] = "\n\r";
140
141 static uint32_t parse_index(const char *n) {
142 uint32_t idx;
143
144 if (pa_atou(n, &idx) < 0)
145 return (uint32_t) PA_IDXSET_INVALID;
146
147 return idx;
148 }
149
150 static int pa_cli_command_exit(pa_core *c, pa_tokenizer *t, PA_GCC_UNUSED pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
151 assert(c && c->mainloop && t);
152 c->mainloop->quit(c->mainloop, 0);
153 return 0;
154 }
155
156 static int pa_cli_command_help(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
157 const struct command*command;
158 assert(c && t && buf);
159
160 pa_strbuf_puts(buf, "Available commands:\n");
161
162 for (command = commands; command->name; command++)
163 if (command->help)
164 pa_strbuf_printf(buf, " %-25s %s\n", command->name, command->help);
165 return 0;
166 }
167
168 static int pa_cli_command_modules(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
169 char *s;
170 assert(c && t);
171 s = pa_module_list_to_string(c);
172 assert(s);
173 pa_strbuf_puts(buf, s);
174 pa_xfree(s);
175 return 0;
176 }
177
178 static int pa_cli_command_clients(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
179 char *s;
180 assert(c && t);
181 s = pa_client_list_to_string(c);
182 assert(s);
183 pa_strbuf_puts(buf, s);
184 pa_xfree(s);
185 return 0;
186 }
187
188 static int pa_cli_command_sinks(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
189 char *s;
190 assert(c && t);
191 s = pa_sink_list_to_string(c);
192 assert(s);
193 pa_strbuf_puts(buf, s);
194 pa_xfree(s);
195 return 0;
196 }
197
198 static int pa_cli_command_sources(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
199 char *s;
200 assert(c && t);
201 s = pa_source_list_to_string(c);
202 assert(s);
203 pa_strbuf_puts(buf, s);
204 pa_xfree(s);
205 return 0;
206 }
207
208 static int pa_cli_command_sink_inputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
209 char *s;
210 assert(c && t);
211 s = pa_sink_input_list_to_string(c);
212 assert(s);
213 pa_strbuf_puts(buf, s);
214 pa_xfree(s);
215 return 0;
216 }
217
218 static int pa_cli_command_source_outputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
219 char *s;
220 assert(c && t);
221 s = pa_source_output_list_to_string(c);
222 assert(s);
223 pa_strbuf_puts(buf, s);
224 pa_xfree(s);
225 return 0;
226 }
227
228 static int pa_cli_command_stat(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
229 char s[256];
230 assert(c && t);
231
232 pa_bytes_snprint(s, sizeof(s), c->memblock_stat->total_size);
233 pa_strbuf_printf(buf, "Memory blocks currently allocated: %u, size: %s.\n",
234 c->memblock_stat->total,
235 s);
236
237 pa_bytes_snprint(s, sizeof(s), c->memblock_stat->allocated_size);
238 pa_strbuf_printf(buf, "Memory blocks allocated during the whole lifetime: %u, size: %s.\n",
239 c->memblock_stat->allocated,
240 s);
241
242 pa_bytes_snprint(s, sizeof(s), pa_scache_total_size(c));
243 pa_strbuf_printf(buf, "Total sample cache size: %s.\n", s);
244
245 pa_sample_spec_snprint(s, sizeof(s), &c->default_sample_spec);
246 pa_strbuf_printf(buf, "Default sample spec: %s\n", s);
247
248 pa_strbuf_printf(buf, "Default sink name: %s\n"
249 "Default source name: %s\n",
250 pa_namereg_get_default_sink_name(c),
251 pa_namereg_get_default_source_name(c));
252
253 return 0;
254 }
255
256 static int pa_cli_command_info(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail) {
257 assert(c && t);
258 pa_cli_command_stat(c, t, buf, fail);
259 pa_cli_command_modules(c, t, buf, fail);
260 pa_cli_command_sinks(c, t, buf, fail);
261 pa_cli_command_sources(c, t, buf, fail);
262 pa_cli_command_clients(c, t, buf, fail);
263 pa_cli_command_sink_inputs(c, t, buf, fail);
264 pa_cli_command_source_outputs(c, t, buf, fail);
265 pa_cli_command_scache_list(c, t, buf, fail);
266 pa_cli_command_autoload_list(c, t, buf, fail);
267 return 0;
268 }
269
270 static int pa_cli_command_load(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
271 pa_module *m;
272 const char *name;
273 assert(c && t);
274
275 if (!(name = pa_tokenizer_get(t, 1))) {
276 pa_strbuf_puts(buf, "You need to specify the module name and optionally arguments.\n");
277 return -1;
278 }
279
280 if (!(m = pa_module_load(c, name, pa_tokenizer_get(t, 2)))) {
281 pa_strbuf_puts(buf, "Module load failed.\n");
282 return -1;
283 }
284
285 return 0;
286 }
287
288 static int pa_cli_command_unload(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
289 pa_module *m;
290 uint32_t idx;
291 const char *i;
292 char *e;
293 assert(c && t);
294
295 if (!(i = pa_tokenizer_get(t, 1))) {
296 pa_strbuf_puts(buf, "You need to specify the module index.\n");
297 return -1;
298 }
299
300 idx = (uint32_t) strtoul(i, &e, 10);
301 if (*e || !(m = pa_idxset_get_by_index(c->modules, idx))) {
302 pa_strbuf_puts(buf, "Invalid module index.\n");
303 return -1;
304 }
305
306 pa_module_unload_request(m);
307 return 0;
308 }
309
310 static int pa_cli_command_sink_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
311 const char *n, *v;
312 pa_sink *sink;
313 uint32_t volume;
314 pa_cvolume cvolume;
315
316 if (!(n = pa_tokenizer_get(t, 1))) {
317 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
318 return -1;
319 }
320
321 if (!(v = pa_tokenizer_get(t, 2))) {
322 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
323 return -1;
324 }
325
326 if (pa_atou(v, &volume) < 0) {
327 pa_strbuf_puts(buf, "Failed to parse volume.\n");
328 return -1;
329 }
330
331 if (!(sink = pa_namereg_get(c, n, PA_NAMEREG_SINK, 1))) {
332 pa_strbuf_puts(buf, "No sink found by this name or index.\n");
333 return -1;
334 }
335
336 pa_cvolume_set(&cvolume, sink->sample_spec.channels, volume);
337 pa_sink_set_volume(sink, PA_MIXER_HARDWARE, &cvolume);
338 return 0;
339 }
340
341 static int pa_cli_command_sink_input_volume(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
342 const char *n, *v;
343 pa_sink_input *si;
344 pa_volume_t volume;
345 pa_cvolume cvolume;
346 uint32_t idx;
347
348 if (!(n = pa_tokenizer_get(t, 1))) {
349 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
350 return -1;
351 }
352
353 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
354 pa_strbuf_puts(buf, "Failed to parse index.\n");
355 return -1;
356 }
357
358 if (!(v = pa_tokenizer_get(t, 2))) {
359 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
360 return -1;
361 }
362
363 if (pa_atou(v, &volume) < 0) {
364 pa_strbuf_puts(buf, "Failed to parse volume.\n");
365 return -1;
366 }
367
368 if (!(si = pa_idxset_get_by_index(c->sink_inputs, (uint32_t) idx))) {
369 pa_strbuf_puts(buf, "No sink input found with this index.\n");
370 return -1;
371 }
372
373 pa_cvolume_set(&cvolume, si->sample_spec.channels, volume);
374 pa_sink_input_set_volume(si, &cvolume);
375 return 0;
376 }
377
378 static int pa_cli_command_sink_default(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
379 const char *n;
380 assert(c && t);
381
382 if (!(n = pa_tokenizer_get(t, 1))) {
383 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
384 return -1;
385 }
386
387 pa_namereg_set_default(c, n, PA_NAMEREG_SINK);
388 return 0;
389 }
390
391 static int pa_cli_command_source_default(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
392 const char *n;
393 assert(c && t);
394
395 if (!(n = pa_tokenizer_get(t, 1))) {
396 pa_strbuf_puts(buf, "You need to specify a source either by its name or its index.\n");
397 return -1;
398 }
399
400 pa_namereg_set_default(c, n, PA_NAMEREG_SOURCE);
401 return 0;
402 }
403
404 static int pa_cli_command_kill_client(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
405 const char *n;
406 pa_client *client;
407 uint32_t idx;
408 assert(c && t);
409
410 if (!(n = pa_tokenizer_get(t, 1))) {
411 pa_strbuf_puts(buf, "You need to specify a client by its index.\n");
412 return -1;
413 }
414
415 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
416 pa_strbuf_puts(buf, "Failed to parse index.\n");
417 return -1;
418 }
419
420 if (!(client = pa_idxset_get_by_index(c->clients, idx))) {
421 pa_strbuf_puts(buf, "No client found by this index.\n");
422 return -1;
423 }
424
425 pa_client_kill(client);
426 return 0;
427 }
428
429 static int pa_cli_command_kill_sink_input(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
430 const char *n;
431 pa_sink_input *sink_input;
432 uint32_t idx;
433 assert(c && t);
434
435 if (!(n = pa_tokenizer_get(t, 1))) {
436 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
437 return -1;
438 }
439
440 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
441 pa_strbuf_puts(buf, "Failed to parse index.\n");
442 return -1;
443 }
444
445 if (!(sink_input = pa_idxset_get_by_index(c->sink_inputs, idx))) {
446 pa_strbuf_puts(buf, "No sink input found by this index.\n");
447 return -1;
448 }
449
450 pa_sink_input_kill(sink_input);
451 return 0;
452 }
453
454 static int pa_cli_command_kill_source_output(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
455 const char *n;
456 pa_source_output *source_output;
457 uint32_t idx;
458 assert(c && t);
459
460 if (!(n = pa_tokenizer_get(t, 1))) {
461 pa_strbuf_puts(buf, "You need to specify a source output by its index.\n");
462 return -1;
463 }
464
465 if ((idx = parse_index(n)) == PA_IDXSET_INVALID) {
466 pa_strbuf_puts(buf, "Failed to parse index.\n");
467 return -1;
468 }
469
470 if (!(source_output = pa_idxset_get_by_index(c->source_outputs, idx))) {
471 pa_strbuf_puts(buf, "No source output found by this index.\n");
472 return -1;
473 }
474
475 pa_source_output_kill(source_output);
476 return 0;
477 }
478
479 static int pa_cli_command_scache_list(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
480 char *s;
481 assert(c && t);
482 s = pa_scache_list_to_string(c);
483 assert(s);
484 pa_strbuf_puts(buf, s);
485 pa_xfree(s);
486 return 0;
487 }
488
489 static int pa_cli_command_scache_play(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail) {
490 const char *n, *sink_name;
491 pa_sink *sink;
492 assert(c && t && buf && fail);
493
494 if (!(n = pa_tokenizer_get(t, 1)) || !(sink_name = pa_tokenizer_get(t, 2))) {
495 pa_strbuf_puts(buf, "You need to specify a sample name and a sink name.\n");
496 return -1;
497 }
498
499 if (!(sink = pa_namereg_get(c, sink_name, PA_NAMEREG_SINK, 1))) {
500 pa_strbuf_puts(buf, "No sink by that name.\n");
501 return -1;
502 }
503
504 if (pa_scache_play_item(c, n, sink, NULL) < 0) {
505 pa_strbuf_puts(buf, "Failed to play sample.\n");
506 return -1;
507 }
508
509 return 0;
510 }
511
512 static int pa_cli_command_scache_remove(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail) {
513 const char *n;
514 assert(c && t && buf && fail);
515
516 if (!(n = pa_tokenizer_get(t, 1))) {
517 pa_strbuf_puts(buf, "You need to specify a sample name.\n");
518 return -1;
519 }
520
521 if (pa_scache_remove_item(c, n) < 0) {
522 pa_strbuf_puts(buf, "Failed to remove sample.\n");
523 return -1;
524 }
525
526 return 0;
527 }
528
529 static int pa_cli_command_scache_load(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail) {
530 const char *fname, *n;
531 int r;
532 assert(c && t && buf && fail);
533
534 if (!(fname = pa_tokenizer_get(t, 2)) || !(n = pa_tokenizer_get(t, 1))) {
535 pa_strbuf_puts(buf, "You need to specify a file name and a sample name.\n");
536 return -1;
537 }
538
539 if (strstr(pa_tokenizer_get(t, 0), "lazy"))
540 r = pa_scache_add_file_lazy(c, n, fname, NULL);
541 else
542 r = pa_scache_add_file(c, n, fname, NULL);
543
544 if (r < 0)
545 pa_strbuf_puts(buf, "Failed to load sound file.\n");
546
547 return 0;
548 }
549
550 static int pa_cli_command_scache_load_dir(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail) {
551 const char *pname;
552 assert(c && t && buf && fail);
553
554 if (!(pname = pa_tokenizer_get(t, 1))) {
555 pa_strbuf_puts(buf, "You need to specify a path name.\n");
556 return -1;
557 }
558
559 if (pa_scache_add_directory_lazy(c, pname) < 0) {
560 pa_strbuf_puts(buf, "Failed to load directory.\n");
561 return -1;
562 }
563
564 return 0;
565 }
566
567 static int pa_cli_command_play_file(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail) {
568 const char *fname, *sink_name;
569 pa_sink *sink;
570 assert(c && t && buf && fail);
571
572 if (!(fname = pa_tokenizer_get(t, 1)) || !(sink_name = pa_tokenizer_get(t, 2))) {
573 pa_strbuf_puts(buf, "You need to specify a file name and a sink name.\n");
574 return -1;
575 }
576
577 if (!(sink = pa_namereg_get(c, sink_name, PA_NAMEREG_SINK, 1))) {
578 pa_strbuf_puts(buf, "No sink by that name.\n");
579 return -1;
580 }
581
582
583 return pa_play_file(sink, fname, NULL);
584 }
585
586 static int pa_cli_command_autoload_add(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail) {
587 const char *a, *b;
588 assert(c && t && buf && fail);
589
590 if (!(a = pa_tokenizer_get(t, 1)) || !(b = pa_tokenizer_get(t, 2))) {
591 pa_strbuf_puts(buf, "You need to specify a device name, a filename or a module name and optionally module arguments\n");
592 return -1;
593 }
594
595 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);
596
597 return 0;
598 }
599
600 static int pa_cli_command_autoload_remove(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, int *fail) {
601 const char *name;
602 assert(c && t && buf && fail);
603
604 if (!(name = pa_tokenizer_get(t, 1))) {
605 pa_strbuf_puts(buf, "You need to specify a device name\n");
606 return -1;
607 }
608
609 if (pa_autoload_remove_by_name(c, name, strstr(pa_tokenizer_get(t, 0), "sink") ? PA_NAMEREG_SINK : PA_NAMEREG_SOURCE) < 0) {
610 pa_strbuf_puts(buf, "Failed to remove autload entry\n");
611 return -1;
612 }
613
614 return 0;
615 }
616
617 static int pa_cli_command_autoload_list(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
618 char *s;
619 assert(c && t);
620 s = pa_autoload_list_to_string(c);
621 assert(s);
622 pa_strbuf_puts(buf, s);
623 pa_xfree(s);
624 return 0;
625 }
626
627 static int pa_cli_command_list_props(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
628 assert(c && t);
629 pa_property_dump(c, buf);
630 return 0;
631 }
632
633 static int pa_cli_command_dump(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, PA_GCC_UNUSED int *fail) {
634 pa_module *m;
635 pa_sink *s;
636 int nl;
637 const char *p;
638 uint32_t idx;
639 char txt[256];
640 time_t now;
641 void *i;
642 pa_autoload_entry *a;
643
644 assert(c && t);
645
646 time(&now);
647
648 #ifdef HAVE_CTIME_R
649 pa_strbuf_printf(buf, "### Configuration dump generated at %s\n", ctime_r(&now, txt));
650 #else
651 pa_strbuf_printf(buf, "### Configuration dump generated at %s\n", ctime(&now));
652 #endif
653
654
655 for (m = pa_idxset_first(c->modules, &idx); m; m = pa_idxset_next(c->modules, &idx)) {
656 if (m->auto_unload)
657 continue;
658
659 pa_strbuf_printf(buf, "load-module %s", m->name);
660
661 if (m->argument)
662 pa_strbuf_printf(buf, " %s", m->argument);
663
664 pa_strbuf_puts(buf, "\n");
665 }
666
667 nl = 0;
668
669 for (s = pa_idxset_first(c->sinks, &idx); s; s = pa_idxset_next(c->sinks, &idx)) {
670 if (s->owner && s->owner->auto_unload)
671 continue;
672
673 if (!nl) {
674 pa_strbuf_puts(buf, "\n");
675 nl = 1;
676 }
677
678 pa_strbuf_printf(buf, "set-sink-volume %s 0x%03x\n", s->name, pa_cvolume_avg(pa_sink_get_volume(s, PA_MIXER_HARDWARE)));
679 }
680
681
682 if (c->autoload_hashmap) {
683 nl = 0;
684
685 i = NULL;
686 while ((a = pa_hashmap_iterate(c->autoload_hashmap, &i, NULL))) {
687
688 if (!nl) {
689 pa_strbuf_puts(buf, "\n");
690 nl = 1;
691 }
692
693 pa_strbuf_printf(buf, "add-autoload-%s %s %s", a->type == PA_NAMEREG_SINK ? "sink" : "source", a->name, a->module);
694
695 if (a->argument)
696 pa_strbuf_printf(buf, " %s", a->argument);
697
698 pa_strbuf_puts(buf, "\n");
699 }
700 }
701
702 nl = 0;
703
704 if ((p = pa_namereg_get_default_sink_name(c))) {
705 if (!nl) {
706 pa_strbuf_puts(buf, "\n");
707 nl = 1;
708 }
709 pa_strbuf_printf(buf, "set-default-sink %s\n", p);
710 }
711
712 if ((p = pa_namereg_get_default_source_name(c))) {
713 if (!nl) {
714 pa_strbuf_puts(buf, "\n");
715 nl = 1;
716 }
717 pa_strbuf_printf(buf, "set-default-source %s\n", p);
718 }
719
720 pa_strbuf_puts(buf, "\n### EOF\n");
721
722 return 0;
723 }
724
725
726 int pa_cli_command_execute_line(pa_core *c, const char *s, pa_strbuf *buf, int *fail) {
727 const char *cs;
728
729 cs = s+strspn(s, whitespace);
730
731 if (*cs == '#' || !*cs)
732 return 0;
733 else if (*cs == '.') {
734 if (!strcmp(cs, FAIL_META))
735 *fail = 1;
736 else if (!strcmp(cs, NOFAIL_META))
737 *fail = 0;
738 else {
739 size_t l;
740 l = strcspn(cs, whitespace);
741
742 if (l == sizeof(INCLUDE_META)-1 && !strncmp(cs, INCLUDE_META, l)) {
743 const char *filename = cs+l+strspn(cs+l, whitespace);
744
745 if (pa_cli_command_execute_file(c, filename, buf, fail) < 0)
746 if (*fail) return -1;
747 } else {
748 pa_strbuf_printf(buf, "Invalid meta command: %s\n", cs);
749 if (*fail) return -1;
750 }
751 }
752 } else {
753 const struct command*command;
754 int unknown = 1;
755 size_t l;
756
757 l = strcspn(cs, whitespace);
758
759 for (command = commands; command->name; command++)
760 if (strlen(command->name) == l && !strncmp(cs, command->name, l)) {
761 int ret;
762 pa_tokenizer *t = pa_tokenizer_new(cs, command->args);
763 assert(t);
764 ret = command->proc(c, t, buf, fail);
765 pa_tokenizer_free(t);
766 unknown = 0;
767
768 if (ret < 0 && *fail)
769 return -1;
770
771 break;
772 }
773
774 if (unknown) {
775 pa_strbuf_printf(buf, "Unknown command: %s\n", cs);
776 if (*fail)
777 return -1;
778 }
779 }
780
781 return 0;
782 }
783
784 int pa_cli_command_execute_file(pa_core *c, const char *fn, pa_strbuf *buf, int *fail) {
785 char line[256];
786 FILE *f = NULL;
787 int ret = -1;
788 assert(c && fn && buf);
789
790 if (!(f = fopen(fn, "r"))) {
791 pa_strbuf_printf(buf, "open('%s') failed: %s\n", fn, strerror(errno));
792 if (!*fail)
793 ret = 0;
794 goto fail;
795 }
796
797 while (fgets(line, sizeof(line), f)) {
798 char *e = line + strcspn(line, linebreak);
799 *e = 0;
800
801 if (pa_cli_command_execute_line(c, line, buf, fail) < 0 && *fail)
802 goto fail;
803 }
804
805 ret = 0;
806
807 fail:
808 if (f)
809 fclose(f);
810
811 return ret;
812 }
813
814 int pa_cli_command_execute(pa_core *c, const char *s, pa_strbuf *buf, int *fail) {
815 const char *p;
816 assert(c && s && buf && fail);
817
818 p = s;
819 while (*p) {
820 size_t l = strcspn(p, linebreak);
821 char *line = pa_xstrndup(p, l);
822
823 if (pa_cli_command_execute_line(c, line, buf, fail) < 0&& *fail) {
824 pa_xfree(line);
825 return -1;
826 }
827 pa_xfree(line);
828
829 p += l;
830 p += strspn(p, linebreak);
831 }
832
833 return 0;
834 }