summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Meerwald <pmeerw@pmeerw.net>2013-07-29 22:13:40 +0200
committerDavid Henningsson <david.henningsson@canonical.com>2013-08-02 16:24:41 +0200
commite729783331f31a793e21ccf2da21cd9d4388a344 (patch)
treea84aa756aa76c2ebc3fcd55bfa84f9cbfc84947e
parente6051cdf8db554c0bbd4257959c37a7ecc9c10c5 (diff)
downloadpulseaudio-e729783331f31a793e21ccf2da21cd9d4388a344.tar.gz
cli: Output prompt and welcome message only when requested by 'hello'
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
-rw-r--r--src/pulsecore/cli.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/pulsecore/cli.c b/src/pulsecore/cli.c
index af2f87185..4f668128f 100644
--- a/src/pulsecore/cli.c
+++ b/src/pulsecore/cli.c
@@ -55,6 +55,7 @@ struct pa_cli {
bool fail, kill_requested;
int defer_kill;
+ bool interactive;
char *last_line;
};
@@ -93,11 +94,11 @@ pa_cli* pa_cli_new(pa_core *core, pa_iochannel *io, pa_module *m) {
c->client->userdata = c;
pa_ioline_set_callback(c->line, line_callback, c);
- pa_ioline_puts(c->line, "Welcome to PulseAudio! Use \"help\" for usage information.\n"PROMPT);
c->fail = c->kill_requested = false;
c->defer_kill = 0;
+ c->interactive = false;
c->last_line = NULL;
return c;
@@ -154,7 +155,13 @@ static void line_callback(pa_ioline *line, const char *s, void *userdata) {
pa_assert_se(buf = pa_strbuf_new());
c->defer_kill++;
- pa_cli_command_execute_line(c->core, s, buf, &c->fail);
+ if (pa_streq(s, "hello")) {
+ pa_strbuf_printf(buf, "Welcome to PulseAudio %s! "
+ "Use \"help\" for usage information.\n", PACKAGE_VERSION);
+ c->interactive = true;
+ }
+ else
+ pa_cli_command_execute_line(c->core, s, buf, &c->fail);
c->defer_kill--;
pa_ioline_puts(line, p = pa_strbuf_tostring_free(buf));
pa_xfree(p);
@@ -162,7 +169,7 @@ static void line_callback(pa_ioline *line, const char *s, void *userdata) {
if (c->kill_requested) {
if (c->eof_callback)
c->eof_callback(c, c->userdata);
- } else
+ } else if (c->interactive)
pa_ioline_puts(line, PROMPT);
}