mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
monitor: Introduce 'info commands'
List QMP available commands. Only valid in control mode, where has to be used as 'query-commands. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
f3c157c4a4
commit
e3bba9d0dc
1 changed files with 37 additions and 0 deletions
37
monitor.c
37
monitor.c
|
@ -368,6 +368,35 @@ static void do_info_name(Monitor *mon)
|
||||||
monitor_printf(mon, "%s\n", qemu_name);
|
monitor_printf(mon, "%s\n", qemu_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* do_info_commands(): List QMP available commands
|
||||||
|
*
|
||||||
|
* Return a QList of QStrings.
|
||||||
|
*/
|
||||||
|
static void do_info_commands(Monitor *mon, QObject **ret_data)
|
||||||
|
{
|
||||||
|
QList *cmd_list;
|
||||||
|
const mon_cmd_t *cmd;
|
||||||
|
|
||||||
|
cmd_list = qlist_new();
|
||||||
|
|
||||||
|
for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
|
||||||
|
if (monitor_handler_ported(cmd) && !compare_cmd(cmd->name, "info")) {
|
||||||
|
qlist_append(cmd_list, qstring_from_str(cmd->name));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (cmd = info_cmds; cmd->name != NULL; cmd++) {
|
||||||
|
if (monitor_handler_ported(cmd)) {
|
||||||
|
char buf[128];
|
||||||
|
snprintf(buf, sizeof(buf), "query-%s", cmd->name);
|
||||||
|
qlist_append(cmd_list, qstring_from_str(buf));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
*ret_data = QOBJECT(cmd_list);
|
||||||
|
}
|
||||||
|
|
||||||
#if defined(TARGET_I386)
|
#if defined(TARGET_I386)
|
||||||
static void do_info_hpet(Monitor *mon)
|
static void do_info_hpet(Monitor *mon)
|
||||||
{
|
{
|
||||||
|
@ -1972,6 +2001,14 @@ static const mon_cmd_t info_cmds[] = {
|
||||||
.user_print = monitor_print_qobject,
|
.user_print = monitor_print_qobject,
|
||||||
.mhandler.info_new = do_info_version,
|
.mhandler.info_new = do_info_version,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "commands",
|
||||||
|
.args_type = "",
|
||||||
|
.params = "",
|
||||||
|
.help = "list QMP available commands",
|
||||||
|
.user_print = monitor_user_noop,
|
||||||
|
.mhandler.info_new = do_info_commands,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.name = "network",
|
.name = "network",
|
||||||
.args_type = "",
|
.args_type = "",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue