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