From: Greg Bellows <greg.bellows@linaro.org>
To: qemu-devel@nongnu.org, peter.maydell@linaro.org,
christoffer.dall@linaro.org, alex.bennee@linaro.org
Cc: Greg Bellows <greg.bellows@linaro.org>
Subject: [Qemu-devel] [PATCH v1 02/15] android-console: Unify available commands output
Date: Tue, 11 Nov 2014 18:25:50 -0600 [thread overview]
Message-ID: <1415751963-4081-3-git-send-email-greg.bellows@linaro.org> (raw)
In-Reply-To: <1415751963-4081-1-git-send-email-greg.bellows@linaro.org>
Moved the "available commands" print output to the top level help command
handler to avoid repitition across all commands with sub-commands. Adjusted
the redir command handler to no longer print out available commands.
Adjusted "OK" message to be shared by all cases to avoid duplicates.
Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
---
android-console.c | 20 +++++---------------
monitor.c | 16 ++++++++++++----
2 files changed, 17 insertions(+), 19 deletions(-)
diff --git a/android-console.c b/android-console.c
index c2e41da..be573b5 100644
--- a/android-console.c
+++ b/android-console.c
@@ -242,8 +242,7 @@ void android_console_redir_remove(Monitor *mon, const QDict *qdict)
static const char *redir_list_help =
"list current port redirections. "
- "use 'redir add' and 'redir del' to add and remove them\n"
- "OK\n";
+ "use 'redir add' and 'redir del' to add and remove them\n";
static const char *redir_add_help =
"add a new port redirection, arguments must be:\n"
@@ -258,15 +257,13 @@ static const char *redir_add_help =
"\n"
"as an example, 'redir tcp:5000:6000' will allow any packets sent to\n"
"the host's TCP port 5000 to be routed to TCP port 6000 of the "
- "emulated device\n"
- "OK\n";
+ "emulated device\n";
static const char *redir_del_help =
"remove a port redirecion that was created with 'redir add', "
- "arguments must be:\n\n"
+ "arguments must be:\n"
" redir del <protocol>:<host-port>\n\n"
- "see the 'help redir add' for the meaning of <protocol> and <host-port>\n"
- "OK\n";
+ "see the 'help redir add' for the meaning of <protocol> and <host-port>\n";
void android_console_redir(Monitor *mon, const QDict *qdict)
{
@@ -291,12 +288,5 @@ void android_console_redir(Monitor *mon, const QDict *qdict)
"PORT redirection from the host to the device\n"
"as an example, 'redir tcp:5000:6000' will route "
"any packet sent to the host's TCP port 5000\n"
- "to TCP port 6000 of the emulated device\n"
- "\n"
- "available sub-commands:\n"
- " list list current redirections\n"
- " add add new redirection\n"
- " del remove existing redirection\n"
- "\n%s\n",
- helptext ? "OK" : "KO: missing sub-command");
+ "to TCP port 6000 of the emulated device\n");
}
diff --git a/monitor.c b/monitor.c
index f071878..4222b7a 100644
--- a/monitor.c
+++ b/monitor.c
@@ -943,7 +943,7 @@ static void do_help_cmd(Monitor *mon, const QDict *qdict)
static void android_console_help(Monitor *mon, const QDict *qdict)
{
const char *name = qdict_get_try_str(qdict, "helptext");
- const mon_cmd_t *cmd;
+ const mon_cmd_t *cmd, *subcmd;
const mon_cmd_t *cmds = mon->cmd_table;
char *args[MAX_ARGS];
int nb_args = 0;
@@ -957,7 +957,7 @@ static void android_console_help(Monitor *mon, const QDict *qdict)
monitor_printf(mon, " %-15s %s\n", cmd->name, cmd->help);
}
monitor_printf(mon,
- "\ntry 'help <command>' for command-specific help\n");
+ "\ntry 'help <command>' for command-specific help\nOK\n");
return;
}
@@ -1000,15 +1000,23 @@ static void android_console_help(Monitor *mon, const QDict *qdict)
parent_cmd->mhandler.cmd(mon, qdict);
} else if (cmd->sub_table) {
cmd->mhandler.cmd(mon, qdict);
+ monitor_printf(mon, "\navailable sub-commands:\n");
+ for (subcmd = cmd->sub_table; subcmd->name; subcmd++) {
+ monitor_printf(mon, " %-15s %s\n",
+ subcmd->name, subcmd->help);
+ }
+ monitor_printf(mon, "\n");
} else {
- monitor_printf(mon, "%s\nOK\n", cmd->help);
+ monitor_printf(mon, "%s\n", cmd->help);
}
- return;
+ break;
}
parent_cmd = cmd;
cmds = cmd->sub_table;
}
+
+ monitor_printf(mon, "OK\n");
}
static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
--
1.8.3.2
next prev parent reply other threads:[~2014-11-12 0:26 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-12 0:25 [Qemu-devel] [PATCH v1 00/15] android-console: Add console power command Greg Bellows
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 01/15] android-console: Fix goldfish audio misnaming Greg Bellows
2014-11-13 10:01 ` Alex Bennée
2014-11-12 0:25 ` Greg Bellows [this message]
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 03/15] android-console: Remove extra redir help message Greg Bellows
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 04/15] android-console: Consolidate redir help text Greg Bellows
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 05/15] android-console: Add console base power command Greg Bellows
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 06/15] android-console: Add missing hw_has_battery prop Greg Bellows
2014-11-13 10:03 ` Alex Bennée
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 07/15] android-console: Init the battery ID state field Greg Bellows
2014-11-13 10:05 ` Alex Bennée
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 08/15] android-console: Add header for battery externs Greg Bellows
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 09/15] android-console: Add GF battery prop print func Greg Bellows
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 10/15] android-console: Add GF battery property getter Greg Bellows
2014-11-12 0:25 ` [Qemu-devel] [PATCH v1 11/15] android-console: Add power ac command Greg Bellows
2014-11-12 0:26 ` [Qemu-devel] [PATCH v1 12/15] android-console: Add power status command Greg Bellows
2014-11-12 0:26 ` [Qemu-devel] [PATCH v1 13/15] android-console: Add power present command Greg Bellows
2014-11-12 0:26 ` [Qemu-devel] [PATCH v1 14/15] android-console: Add power health command Greg Bellows
2014-11-12 0:26 ` [Qemu-devel] [PATCH v1 15/15] android-console: Add power capacity command Greg Bellows
2014-11-13 10:17 ` Alex Bennée
2014-11-12 13:39 ` [Qemu-devel] [PATCH v1 00/15] android-console: Add console power command Greg Bellows
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1415751963-4081-3-git-send-email-greg.bellows@linaro.org \
--to=greg.bellows@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=christoffer.dall@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).