All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@linux.vnet.ibm.com>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: Anthony Liguori <aliguori@us.ibm.com>,
	qemu-devel@nongnu.org, armbru@redhat.com
Subject: [Qemu-devel] Re: [PATCH 10/19] QMP: Introduce query commands dispatch table
Date: Fri, 01 Oct 2010 08:31:11 -0500	[thread overview]
Message-ID: <4CA5E29F.4030606@linux.vnet.ibm.com> (raw)
In-Reply-To: <1285880180-29724-11-git-send-email-lcapitulino@redhat.com>

On 09/30/2010 03:56 PM, Luiz Capitulino wrote:
> The new table is a copy of HMP's table, containing only QObject
> handlers.
>
> In the near future HMP will be making QMP calls and then we will
> be able to drop QObject handlers from HMP's table.
>
> > From now on, QMP and HMP have different query command dispatch
> tables.
>    

I like this series a lot and I think it's ready to merge.

But I wonder, why have a separate qmp_query_cmds table?  Why not just 
fold the query commands into qmp_cmds?

Regards,

Anthony Liguori

> Signed-off-by: Luiz Capitulino<lcapitulino@redhat.com>
> ---
>   monitor.c |  130 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
>   1 files changed, 128 insertions(+), 2 deletions(-)
>
> diff --git a/monitor.c b/monitor.c
> index 8f58e18..7cb66df 100644
> --- a/monitor.c
> +++ b/monitor.c
> @@ -190,6 +190,7 @@ static const mon_cmd_t mon_cmds[];
>   static const mon_cmd_t info_cmds[];
>
>   static const mon_cmd_t qmp_cmds[];
> +static const mon_cmd_t qmp_query_cmds[];
>
>   Monitor *cur_mon;
>   Monitor *default_mon;
> @@ -751,7 +752,7 @@ static void do_info_commands(Monitor *mon, QObject **ret_data)
>           }
>       }
>
> -    for (cmd = info_cmds; cmd->name != NULL; cmd++) {
> +    for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
>           if (monitor_handler_ported(cmd)&&  !monitor_cmd_user_only(cmd)) {
>               char buf[128];
>               snprintf(buf, sizeof(buf), "query-%s", cmd->name);
> @@ -2639,6 +2640,131 @@ static const mon_cmd_t qmp_cmds[] = {
>       { /* NULL */ },
>   };
>
> +static const mon_cmd_t qmp_query_cmds[] = {
> +    {
> +        .name       = "version",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show the version of QEMU",
> +        .user_print = do_info_version_print,
> +        .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       = "chardev",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show the character devices",
> +        .user_print = qemu_chr_info_print,
> +        .mhandler.info_new = qemu_chr_info,
> +    },
> +    {
> +        .name       = "block",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show the block devices",
> +        .user_print = bdrv_info_print,
> +        .mhandler.info_new = bdrv_info,
> +    },
> +    {
> +        .name       = "blockstats",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show block device statistics",
> +        .user_print = bdrv_stats_print,
> +        .mhandler.info_new = bdrv_info_stats,
> +    },
> +    {
> +        .name       = "cpus",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show infos for each CPU",
> +        .user_print = monitor_print_cpus,
> +        .mhandler.info_new = do_info_cpus,
> +    },
> +    {
> +        .name       = "pci",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show PCI info",
> +        .user_print = do_pci_info_print,
> +        .mhandler.info_new = do_pci_info,
> +    },
> +    {
> +        .name       = "kvm",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show KVM information",
> +        .user_print = do_info_kvm_print,
> +        .mhandler.info_new = do_info_kvm,
> +    },
> +    {
> +        .name       = "status",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show the current VM status (running|paused)",
> +        .user_print = do_info_status_print,
> +        .mhandler.info_new = do_info_status,
> +    },
> +    {
> +        .name       = "mice",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show which guest mouse is receiving events",
> +        .user_print = do_info_mice_print,
> +        .mhandler.info_new = do_info_mice,
> +    },
> +    {
> +        .name       = "vnc",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show the vnc server status",
> +        .user_print = do_info_vnc_print,
> +        .mhandler.info_new = do_info_vnc,
> +    },
> +    {
> +        .name       = "name",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show the current VM name",
> +        .user_print = do_info_name_print,
> +        .mhandler.info_new = do_info_name,
> +    },
> +    {
> +        .name       = "uuid",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show the current VM UUID",
> +        .user_print = do_info_uuid_print,
> +        .mhandler.info_new = do_info_uuid,
> +    },
> +    {
> +        .name       = "migrate",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show migration status",
> +        .user_print = do_info_migrate_print,
> +        .mhandler.info_new = do_info_migrate,
> +    },
> +    {
> +        .name       = "balloon",
> +        .args_type  = "",
> +        .params     = "",
> +        .help       = "show balloon information",
> +        .user_print = monitor_print_balloon,
> +        .mhandler.info_async = do_info_balloon,
> +        .flags      = MONITOR_CMD_ASYNC,
> +    },
> +    { /* NULL */ },
> +};
> +
>   /*******************************************************************/
>
>   static const char *pch;
> @@ -3366,7 +3492,7 @@ static const mon_cmd_t *monitor_find_command(const char *cmdname)
>
>   static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
>   {
> -    return search_dispatch_table(info_cmds, info_item);
> +    return search_dispatch_table(qmp_query_cmds, info_item);
>   }
>
>   static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
>    

  reply	other threads:[~2010-10-01 13:34 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-30 20:56 [Qemu-devel] [PATCH v2 00/19] Monitor: split HMP and QMP dispatch tables Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 01/19] Monitor: Introduce search_dispatch_table() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 02/19] QMP: handle_qmp_command(): Move 'cmd' sanity check Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 03/19] QMP: Don't use do_info() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 04/19] Monitor: Drop QMP bits from do_info() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 05/19] Monitor: Drop is_async_return() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 06/19] Monitor: Convert do_info() back to HMP Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 07/19] Monitor: Introduce the qmp-commands.hx file Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 08/19] QMP: Introduce qmp_find_cmd() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 09/19] QMP: Introduce command dispatch table Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 10/19] QMP: Introduce query commands " Luiz Capitulino
2010-10-01 13:31   ` Anthony Liguori [this message]
2010-10-01 13:49     ` [Qemu-devel] " Luiz Capitulino
2010-10-01 14:25       ` Anthony Liguori
2010-09-30 20:56 ` [Qemu-devel] [PATCH 11/19] QMP: Simplify do_info_commands() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 12/19] QMP: Small cleanup in handle_qmp_command() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 13/19] Monitor: Drop QMP info from the qemu-monitor.hx file Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 14/19] Monitor: Drop monitor_cmd_user_only() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 15/19] Monitor: Rename monitor_handler_ported() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 16/19] Monitor: Rename monitor_handler_is_async() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 17/19] Monitor: Directly call QObject handlers Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 18/19] QMP: Introduce qmp_call_cmd() Luiz Capitulino
2010-09-30 20:56 ` [Qemu-devel] [PATCH 19/19] Monitor: Rename the qemu-monitor.hx file Luiz Capitulino
2010-10-01  7:15 ` [Qemu-devel] [PATCH v2 00/19] Monitor: split HMP and QMP dispatch tables Markus Armbruster

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=4CA5E29F.4030606@linux.vnet.ibm.com \
    --to=aliguori@linux.vnet.ibm.com \
    --cc=aliguori@us.ibm.com \
    --cc=armbru@redhat.com \
    --cc=lcapitulino@redhat.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.