qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com>,
	qemu-devel@nongnu.org, armbru@redhat.com
Cc: berrange@redhat.com, clg@kaod.org, afaerber@suse.de
Subject: Re: [PATCH 1/2] hmp: Implement qom-get HMP command
Date: Wed, 20 May 2020 18:44:35 +0200	[thread overview]
Message-ID: <1dafb128-1db4-2be0-9fcc-7c5315413396@redhat.com> (raw)
In-Reply-To: <20200520151108.160598-2-dgilbert@redhat.com>

On 5/20/20 5:11 PM, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> 
> This started off as Andreas Färber's implementation from
> March 2015, but after feedback from Paolo and Markus it morphed into
> using the json output which handles structs reasonably.
> 
> Use with qom-list to find the members of an object.
> 
> (qemu) qom-get /backend/console[0]/device/vga.rom[0] size
> 65536
> (qemu) qom-get /machine smm
> "auto"
> (qemu) qom-get /machine rtc-time
> {
>      "tm_year": 120,
>      "tm_sec": 51,
>      "tm_hour": 9,
>      "tm_min": 50,
>      "tm_mon": 4,
>      "tm_mday": 20
> }
> (qemu) qom-get /machine frob
> Error: Property '.frob' not found
> 
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>   hmp-commands.hx        | 14 ++++++++++++++
>   include/monitor/hmp.h  |  1 +
>   qom/qom-hmp-cmds.c     | 18 ++++++++++++++++++
>   tests/qtest/test-hmp.c |  1 +
>   4 files changed, 34 insertions(+)
> 
> diff --git a/hmp-commands.hx b/hmp-commands.hx
> index 7f0f3974ad..250ddae54d 100644
> --- a/hmp-commands.hx
> +++ b/hmp-commands.hx
> @@ -1790,6 +1790,20 @@ SRST
>     Print QOM properties of object at location *path*
>   ERST
>   
> +    {
> +        .name       = "qom-get",
> +        .args_type  = "path:s,property:s",
> +        .params     = "path property",
> +        .help       = "print QOM property",
> +        .cmd        = hmp_qom_get,
> +        .flags      = "p",
> +    },
> +
> +SRST
> +``qom-get`` *path* *property*
> +  Print QOM property *property* of object at location *path*
> +ERST
> +
>       {
>           .name       = "qom-set",
>           .args_type  = "path:s,property:s,value:s",
> diff --git a/include/monitor/hmp.h b/include/monitor/hmp.h
> index e33ca5a911..c986cfd28b 100644
> --- a/include/monitor/hmp.h
> +++ b/include/monitor/hmp.h
> @@ -96,6 +96,7 @@ void hmp_info_memdev(Monitor *mon, const QDict *qdict);
>   void hmp_info_numa(Monitor *mon, const QDict *qdict);
>   void hmp_info_memory_devices(Monitor *mon, const QDict *qdict);
>   void hmp_qom_list(Monitor *mon, const QDict *qdict);
> +void hmp_qom_get(Monitor *mon, const QDict *qdict);
>   void hmp_qom_set(Monitor *mon, const QDict *qdict);
>   void hmp_info_qom_tree(Monitor *mon, const QDict *dict);
>   void object_add_completion(ReadLineState *rs, int nb_args, const char *str);
> diff --git a/qom/qom-hmp-cmds.c b/qom/qom-hmp-cmds.c
> index cd08233a4c..a8b0a080c7 100644
> --- a/qom/qom-hmp-cmds.c
> +++ b/qom/qom-hmp-cmds.c
> @@ -12,6 +12,8 @@
>   #include "qapi/error.h"
>   #include "qapi/qapi-commands-qom.h"
>   #include "qapi/qmp/qdict.h"
> +#include "qapi/qmp/qjson.h"
> +#include "qapi/qmp/qstring.h"
>   #include "qom/object.h"
>   
>   void hmp_qom_list(Monitor *mon, const QDict *qdict)
> @@ -62,6 +64,22 @@ void hmp_qom_set(Monitor *mon, const QDict *qdict)
>       hmp_handle_error(mon, err);
>   }
>   
> +void hmp_qom_get(Monitor *mon, const QDict *qdict)
> +{
> +    const char *path = qdict_get_str(qdict, "path");
> +    const char *property = qdict_get_str(qdict, "property");
> +    Error *err = NULL;
> +    QObject *obj = qmp_qom_get(path, property, &err);
> +
> +    if (err == NULL) {
> +        QString *str = qobject_to_json_pretty(obj);
> +        monitor_printf(mon, "%s\n", qstring_get_str(str));
> +        qobject_unref(str);

Simple, does the job, lovely!

> +    }
> +
> +    hmp_handle_error(mon, err);
> +}
> +
>   typedef struct QOMCompositionState {
>       Monitor *mon;
>       int indent;
> diff --git a/tests/qtest/test-hmp.c b/tests/qtest/test-hmp.c
> index f8aa5f92c5..b8b1271b9e 100644
> --- a/tests/qtest/test-hmp.c
> +++ b/tests/qtest/test-hmp.c
> @@ -61,6 +61,7 @@ static const char *hmp_cmds[] = {
>       "p $pc + 8",
>       "qom-list /",
>       "qom-set /machine initrd test",
> +    "qom-get /machine initrd",
>       "screendump /dev/null",
>       "sendkey x",
>       "singlestep on",
> 

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>



  reply	other threads:[~2020-05-20 16:47 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-20 15:11 [PATCH 0/2] HMP: qom-get and set Dr. David Alan Gilbert (git)
2020-05-20 15:11 ` [PATCH 1/2] hmp: Implement qom-get HMP command Dr. David Alan Gilbert (git)
2020-05-20 16:44   ` Philippe Mathieu-Daudé [this message]
2020-05-25  9:02   ` Markus Armbruster
2020-05-29  6:59     ` Markus Armbruster
2020-05-20 15:11 ` [PATCH 2/2] hmp: Simplify qom_set Dr. David Alan Gilbert (git)
2020-05-20 16:47   ` Philippe Mathieu-Daudé
2020-05-20 19:03     ` Dr. David Alan Gilbert
2020-05-25  8:54       ` Markus Armbruster
2020-05-28 14:06         ` Dr. David Alan Gilbert
2020-05-28 15:12           ` Philippe Mathieu-Daudé
2020-05-29  6:20           ` Markus Armbruster
2020-05-29  9:07             ` Dr. David Alan Gilbert
2020-05-29 18:48 ` [PATCH 0/2] HMP: qom-get and set Dr. David Alan Gilbert

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=1dafb128-1db4-2be0-9fcc-7c5315413396@redhat.com \
    --to=philmd@redhat.com \
    --cc=afaerber@suse.de \
    --cc=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=clg@kaod.org \
    --cc=dgilbert@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 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).