]> code.delx.au - pulseaudio/blob - polyp/cli-command.c
Merge Pierre's changes
[pulseaudio] / polyp / 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 "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) (struct pa_core *c, struct pa_tokenizer*t, struct 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
66 static int pa_cli_command_help(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
67 static int pa_cli_command_modules(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
68 static int pa_cli_command_clients(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
69 static int pa_cli_command_sinks(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
70 static int pa_cli_command_sources(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
71 static int pa_cli_command_sink_inputs(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
72 static int pa_cli_command_source_outputs(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
73 static int pa_cli_command_stat(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
74 static int pa_cli_command_info(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
75 static int pa_cli_command_load(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
76 static int pa_cli_command_unload(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
77 static int pa_cli_command_sink_volume(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
78 static int pa_cli_command_sink_input_volume(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
79 static int pa_cli_command_sink_default(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
80 static int pa_cli_command_source_default(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
81 static int pa_cli_command_kill_client(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
82 static int pa_cli_command_kill_sink_input(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
83 static int pa_cli_command_kill_source_output(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
84 static int pa_cli_command_scache_play(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
85 static int pa_cli_command_scache_remove(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
86 static int pa_cli_command_scache_list(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
87 static int pa_cli_command_scache_load(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
88 static int pa_cli_command_scache_load_dir(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
89 static int pa_cli_command_play_file(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
90 static int pa_cli_command_autoload_list(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
91 static int pa_cli_command_autoload_add(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
92 static int pa_cli_command_autoload_remove(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
93 static int pa_cli_command_dump(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail);
94 static int pa_cli_command_list_props(struct pa_core *c, struct pa_tokenizer *t, struct 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 index;
143
144 if (pa_atou(n, &index) < 0)
145 return (uint32_t) PA_IDXSET_INVALID;
146
147 return index;
148 }
149
150 static int pa_cli_command_exit(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, 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(struct pa_core *c, struct pa_tokenizer *t, struct 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
271 struct 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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
289 struct pa_module *m;
290 uint32_t index;
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 index = (uint32_t) strtoul(i, &e, 10);
301 if (*e || !(m = pa_idxset_get_by_index(c->modules, index))) {
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(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
311 const char *n, *v;
312 struct pa_sink *sink;
313 uint32_t volume;
314
315 if (!(n = pa_tokenizer_get(t, 1))) {
316 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
317 return -1;
318 }
319
320 if (!(v = pa_tokenizer_get(t, 2))) {
321 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
322 return -1;
323 }
324
325 if (pa_atou(v, &volume) < 0) {
326 pa_strbuf_puts(buf, "Failed to parse volume.\n");
327 return -1;
328 }
329
330 if (!(sink = pa_namereg_get(c, n, PA_NAMEREG_SINK, 1))) {
331 pa_strbuf_puts(buf, "No sink found by this name or index.\n");
332 return -1;
333 }
334
335 pa_sink_set_volume(sink, (uint32_t) volume);
336 return 0;
337 }
338
339 static int pa_cli_command_sink_input_volume(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
340 const char *n, *v;
341 struct pa_sink_input *si;
342 uint32_t volume;
343 uint32_t index;
344
345 if (!(n = pa_tokenizer_get(t, 1))) {
346 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
347 return -1;
348 }
349
350 if ((index = parse_index(n)) == PA_IDXSET_INVALID) {
351 pa_strbuf_puts(buf, "Failed to parse index.\n");
352 return -1;
353 }
354
355 if (!(v = pa_tokenizer_get(t, 2))) {
356 pa_strbuf_puts(buf, "You need to specify a volume >= 0. (0 is muted, 0x100 is normal volume)\n");
357 return -1;
358 }
359
360 if (pa_atou(v, &volume) < 0) {
361 pa_strbuf_puts(buf, "Failed to parse volume.\n");
362 return -1;
363 }
364
365 if (!(si = pa_idxset_get_by_index(c->sink_inputs, (uint32_t) index))) {
366 pa_strbuf_puts(buf, "No sink input found with this index.\n");
367 return -1;
368 }
369
370 pa_sink_input_set_volume(si, (uint32_t) volume);
371 return 0;
372 }
373
374 static int pa_cli_command_sink_default(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
375 const char *n;
376 assert(c && t);
377
378 if (!(n = pa_tokenizer_get(t, 1))) {
379 pa_strbuf_puts(buf, "You need to specify a sink either by its name or its index.\n");
380 return -1;
381 }
382
383 pa_namereg_set_default(c, n, PA_NAMEREG_SINK);
384 return 0;
385 }
386
387 static int pa_cli_command_source_default(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
388 const char *n;
389 assert(c && t);
390
391 if (!(n = pa_tokenizer_get(t, 1))) {
392 pa_strbuf_puts(buf, "You need to specify a source either by its name or its index.\n");
393 return -1;
394 }
395
396 pa_namereg_set_default(c, n, PA_NAMEREG_SOURCE);
397 return 0;
398 }
399
400 static int pa_cli_command_kill_client(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
401 const char *n;
402 struct pa_client *client;
403 uint32_t index;
404 assert(c && t);
405
406 if (!(n = pa_tokenizer_get(t, 1))) {
407 pa_strbuf_puts(buf, "You need to specify a client by its index.\n");
408 return -1;
409 }
410
411 if ((index = parse_index(n)) == PA_IDXSET_INVALID) {
412 pa_strbuf_puts(buf, "Failed to parse index.\n");
413 return -1;
414 }
415
416 if (!(client = pa_idxset_get_by_index(c->clients, index))) {
417 pa_strbuf_puts(buf, "No client found by this index.\n");
418 return -1;
419 }
420
421 pa_client_kill(client);
422 return 0;
423 }
424
425 static int pa_cli_command_kill_sink_input(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
426 const char *n;
427 struct pa_sink_input *sink_input;
428 uint32_t index;
429 assert(c && t);
430
431 if (!(n = pa_tokenizer_get(t, 1))) {
432 pa_strbuf_puts(buf, "You need to specify a sink input by its index.\n");
433 return -1;
434 }
435
436 if ((index = parse_index(n)) == PA_IDXSET_INVALID) {
437 pa_strbuf_puts(buf, "Failed to parse index.\n");
438 return -1;
439 }
440
441 if (!(sink_input = pa_idxset_get_by_index(c->sink_inputs, index))) {
442 pa_strbuf_puts(buf, "No sink input found by this index.\n");
443 return -1;
444 }
445
446 pa_sink_input_kill(sink_input);
447 return 0;
448 }
449
450 static int pa_cli_command_kill_source_output(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
451 const char *n;
452 struct pa_source_output *source_output;
453 uint32_t index;
454 assert(c && t);
455
456 if (!(n = pa_tokenizer_get(t, 1))) {
457 pa_strbuf_puts(buf, "You need to specify a source output by its index.\n");
458 return -1;
459 }
460
461 if ((index = parse_index(n)) == PA_IDXSET_INVALID) {
462 pa_strbuf_puts(buf, "Failed to parse index.\n");
463 return -1;
464 }
465
466 if (!(source_output = pa_idxset_get_by_index(c->source_outputs, index))) {
467 pa_strbuf_puts(buf, "No source output found by this index.\n");
468 return -1;
469 }
470
471 pa_source_output_kill(source_output);
472 return 0;
473 }
474
475 static int pa_cli_command_scache_list(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
476 char *s;
477 assert(c && t);
478 s = pa_scache_list_to_string(c);
479 assert(s);
480 pa_strbuf_puts(buf, s);
481 pa_xfree(s);
482 return 0;
483 }
484
485 static int pa_cli_command_scache_play(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
486 const char *n, *sink_name;
487 struct pa_sink *sink;
488 assert(c && t && buf && fail);
489
490 if (!(n = pa_tokenizer_get(t, 1)) || !(sink_name = pa_tokenizer_get(t, 2))) {
491 pa_strbuf_puts(buf, "You need to specify a sample name and a sink name.\n");
492 return -1;
493 }
494
495 if (!(sink = pa_namereg_get(c, sink_name, PA_NAMEREG_SINK, 1))) {
496 pa_strbuf_puts(buf, "No sink by that name.\n");
497 return -1;
498 }
499
500 if (pa_scache_play_item(c, n, sink, PA_VOLUME_NORM) < 0) {
501 pa_strbuf_puts(buf, "Failed to play sample.\n");
502 return -1;
503 }
504
505 return 0;
506 }
507
508 static int pa_cli_command_scache_remove(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
509 const char *n;
510 assert(c && t && buf && fail);
511
512 if (!(n = pa_tokenizer_get(t, 1))) {
513 pa_strbuf_puts(buf, "You need to specify a sample name.\n");
514 return -1;
515 }
516
517 if (pa_scache_remove_item(c, n) < 0) {
518 pa_strbuf_puts(buf, "Failed to remove sample.\n");
519 return -1;
520 }
521
522 return 0;
523 }
524
525 static int pa_cli_command_scache_load(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
526 const char *fname, *n;
527 int r;
528 assert(c && t && buf && fail);
529
530 if (!(fname = pa_tokenizer_get(t, 2)) || !(n = pa_tokenizer_get(t, 1))) {
531 pa_strbuf_puts(buf, "You need to specify a file name and a sample name.\n");
532 return -1;
533 }
534
535 if (strstr(pa_tokenizer_get(t, 0), "lazy"))
536 r = pa_scache_add_file_lazy(c, n, fname, NULL);
537 else
538 r = pa_scache_add_file(c, n, fname, NULL);
539
540 if (r < 0)
541 pa_strbuf_puts(buf, "Failed to load sound file.\n");
542
543 return 0;
544 }
545
546 static int pa_cli_command_scache_load_dir(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
547 const char *pname;
548 assert(c && t && buf && fail);
549
550 if (!(pname = pa_tokenizer_get(t, 1))) {
551 pa_strbuf_puts(buf, "You need to specify a path name.\n");
552 return -1;
553 }
554
555 if (pa_scache_add_directory_lazy(c, pname) < 0) {
556 pa_strbuf_puts(buf, "Failed to load directory.\n");
557 return -1;
558 }
559
560 return 0;
561 }
562
563 static int pa_cli_command_play_file(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
564 const char *fname, *sink_name;
565 struct pa_sink *sink;
566 assert(c && t && buf && fail);
567
568 if (!(fname = pa_tokenizer_get(t, 1)) || !(sink_name = pa_tokenizer_get(t, 2))) {
569 pa_strbuf_puts(buf, "You need to specify a file name and a sink name.\n");
570 return -1;
571 }
572
573 if (!(sink = pa_namereg_get(c, sink_name, PA_NAMEREG_SINK, 1))) {
574 pa_strbuf_puts(buf, "No sink by that name.\n");
575 return -1;
576 }
577
578
579 return pa_play_file(sink, fname, PA_VOLUME_NORM);
580 }
581
582 static int pa_cli_command_autoload_add(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
583 const char *a, *b;
584 assert(c && t && buf && fail);
585
586 if (!(a = pa_tokenizer_get(t, 1)) || !(b = pa_tokenizer_get(t, 2))) {
587 pa_strbuf_puts(buf, "You need to specify a device name, a filename or a module name and optionally module arguments\n");
588 return -1;
589 }
590
591 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);
592
593 return 0;
594 }
595
596 static int pa_cli_command_autoload_remove(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
597 const char *name;
598 assert(c && t && buf && fail);
599
600 if (!(name = pa_tokenizer_get(t, 1))) {
601 pa_strbuf_puts(buf, "You need to specify a device name\n");
602 return -1;
603 }
604
605 if (pa_autoload_remove_by_name(c, name, strstr(pa_tokenizer_get(t, 0), "sink") ? PA_NAMEREG_SINK : PA_NAMEREG_SOURCE) < 0) {
606 pa_strbuf_puts(buf, "Failed to remove autload entry\n");
607 return -1;
608 }
609
610 return 0;
611 }
612
613 static int pa_cli_command_autoload_list(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
614 char *s;
615 assert(c && t);
616 s = pa_autoload_list_to_string(c);
617 assert(s);
618 pa_strbuf_puts(buf, s);
619 pa_xfree(s);
620 return 0;
621 }
622
623 static int pa_cli_command_list_props(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
624 assert(c && t);
625 pa_property_dump(c, buf);
626 return 0;
627 }
628
629 static int pa_cli_command_dump(struct pa_core *c, struct pa_tokenizer *t, struct pa_strbuf *buf, int *fail) {
630 struct pa_module *m;
631 struct pa_sink *s;
632 int nl;
633 const char *p;
634 uint32_t index;
635 char txt[256];
636 time_t now;
637 void *i;
638 struct pa_autoload_entry *a;
639
640 assert(c && t);
641
642 time(&now);
643
644 #ifdef HAVE_CTIME_R
645 pa_strbuf_printf(buf, "### Configuration dump generated at %s\n", ctime_r(&now, txt));
646 #else
647 pa_strbuf_printf(buf, "### Configuration dump generated at %s\n", ctime(&now));
648 #endif
649
650
651 for (m = pa_idxset_first(c->modules, &index); m; m = pa_idxset_next(c->modules, &index)) {
652 if (m->auto_unload)
653 continue;
654
655 pa_strbuf_printf(buf, "load-module %s", m->name);
656
657 if (m->argument)
658 pa_strbuf_printf(buf, " %s", m->argument);
659
660 pa_strbuf_puts(buf, "\n");
661 }
662
663 nl = 0;
664
665 for (s = pa_idxset_first(c->sinks, &index); s; s = pa_idxset_next(c->sinks, &index)) {
666 if (s->volume == PA_VOLUME_NORM)
667 continue;
668
669 if (s->owner && s->owner->auto_unload)
670 continue;
671
672 if (!nl) {
673 pa_strbuf_puts(buf, "\n");
674 nl = 1;
675 }
676
677 pa_strbuf_printf(buf, "set-sink-volume %s 0x%03x\n", s->name, s->volume);
678 }
679
680
681 if (c->autoload_hashmap) {
682 nl = 0;
683
684 i = NULL;
685 while ((a = pa_hashmap_iterate(c->autoload_hashmap, &i, NULL))) {
686
687 if (!nl) {
688 pa_strbuf_puts(buf, "\n");
689 nl = 1;
690 }
691
692 pa_strbuf_printf(buf, "add-autoload-%s %s %s", a->type == PA_NAMEREG_SINK ? "sink" : "source", a->name, a->module);
693
694 if (a->argument)
695 pa_strbuf_printf(buf, " %s", a->argument);
696
697 pa_strbuf_puts(buf, "\n");
698 }
699 }
700
701 nl = 0;
702
703 if ((p = pa_namereg_get_default_sink_name(c))) {
704 if (!nl) {
705 pa_strbuf_puts(buf, "\n");
706 nl = 1;
707 }
708 pa_strbuf_printf(buf, "set-default-sink %s\n", p);
709 }
710
711 if ((p = pa_namereg_get_default_source_name(c))) {
712 if (!nl) {
713 pa_strbuf_puts(buf, "\n");
714 nl = 1;
715 }
716 pa_strbuf_printf(buf, "set-default-source %s\n", p);
717 }
718
719 pa_strbuf_puts(buf, "\n### EOF\n");
720
721 return 0;
722 }
723
724
725 int pa_cli_command_execute_line(struct pa_core *c, const char *s, struct pa_strbuf *buf, int *fail) {
726 const char *cs;
727
728 cs = s+strspn(s, whitespace);
729
730 if (*cs == '#' || !*cs)
731 return 0;
732 else if (*cs == '.') {
733 if (!strcmp(cs, FAIL_META))
734 *fail = 1;
735 else if (!strcmp(cs, NOFAIL_META))
736 *fail = 0;
737 else {
738 size_t l;
739 l = strcspn(cs, whitespace);
740
741 if (l == sizeof(INCLUDE_META)-1 && !strncmp(cs, INCLUDE_META, l)) {
742 const char *filename = cs+l+strspn(cs+l, whitespace);
743
744 if (pa_cli_command_execute_file(c, filename, buf, fail) < 0)
745 if (*fail) return -1;
746 } else {
747 pa_strbuf_printf(buf, "Invalid meta command: %s\n", cs);
748 if (*fail) return -1;
749 }
750 }
751 } else {
752 const struct command*command;
753 int unknown = 1;
754 size_t l;
755
756 l = strcspn(cs, whitespace);
757
758 for (command = commands; command->name; command++)
759 if (strlen(command->name) == l && !strncmp(cs, command->name, l)) {
760 int ret;
761 struct pa_tokenizer *t = pa_tokenizer_new(cs, command->args);
762 assert(t);
763 ret = command->proc(c, t, buf, fail);
764 pa_tokenizer_free(t);
765 unknown = 0;
766
767 if (ret < 0 && *fail)
768 return -1;
769
770 break;
771 }
772
773 if (unknown) {
774 pa_strbuf_printf(buf, "Unknown command: %s\n", cs);
775 if (*fail)
776 return -1;
777 }
778 }
779
780 return 0;
781 }
782
783 int pa_cli_command_execute_file(struct pa_core *c, const char *fn, struct pa_strbuf *buf, int *fail) {
784 char line[256];
785 FILE *f = NULL;
786 int ret = -1;
787 assert(c && fn && buf);
788
789 if (!(f = fopen(fn, "r"))) {
790 pa_strbuf_printf(buf, "open('%s') failed: %s\n", fn, strerror(errno));
791 if (!*fail)
792 ret = 0;
793 goto fail;
794 }
795
796 while (fgets(line, sizeof(line), f)) {
797 char *e = line + strcspn(line, linebreak);
798 *e = 0;
799
800 if (pa_cli_command_execute_line(c, line, buf, fail) < 0 && *fail)
801 goto fail;
802 }
803
804 ret = 0;
805
806 fail:
807 if (f)
808 fclose(f);
809
810 return ret;
811 }
812
813 int pa_cli_command_execute(struct pa_core *c, const char *s, struct pa_strbuf *buf, int *fail) {
814 const char *p;
815 assert(c && s && buf && fail);
816
817 p = s;
818 while (*p) {
819 size_t l = strcspn(p, linebreak);
820 char *line = pa_xstrndup(p, l);
821
822 if (pa_cli_command_execute_line(c, line, buf, fail) < 0&& *fail) {
823 pa_xfree(line);
824 return -1;
825 }
826 pa_xfree(line);
827
828 p += l;
829 p += strspn(p, linebreak);
830 }
831
832 return 0;
833 }