qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Luiz Capitulino <lcapitulino@redhat.com>
To: "Daniel P. Berrange" <berrange@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 01/19] Add support for JSON pretty printing
Date: Wed, 9 Jun 2010 16:51:59 -0300	[thread overview]
Message-ID: <20100609165159.3b6ca7fc@redhat.com> (raw)
In-Reply-To: <1275921752-29420-2-git-send-email-berrange@redhat.com>

On Mon,  7 Jun 2010 15:42:14 +0100
"Daniel P. Berrange" <berrange@redhat.com> wrote:

> The monitor does not pretty-print JSON output, so that everything
> will be on a single line reply. When JSON docs get large this is
> quite unpleasant to read. For the future command line capabilities
> query ability, huge JSON docs will be available. This needs the
> ability to pretty-print.
> 
> This introduces a new API qobject_to_json_pretty() that does
> a minimal indentation of list and dict members. As an example,
> this makes
> 
>   {"QMP": {"version": {"micro": 50, "minor": 12, "package": "", "major": 0}, "capabilities": []}}
> 
> Output as
> 
>   {
>       "QMP": {
>           "version": {
>               "micro": 50,
>               "minor": 12,
>               "package": "",
>               "major": 0
>           },
>           "capabilities": [
>           ]
>       }
>   }
> 
> NB: this is not turned on for the QMP monitor.
> 
> Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
> ---
>  qjson.c |   55 +++++++++++++++++++++++++++++++++++++++++++++++--------
>  qjson.h |    1 +
>  2 files changed, 48 insertions(+), 8 deletions(-)
> 
> diff --git a/qjson.c b/qjson.c
> index 483c667..f402103 100644
> --- a/qjson.c
> +++ b/qjson.c
> @@ -72,43 +72,57 @@ QObject *qobject_from_jsonf(const char *string, ...)
>  
>  typedef struct ToJsonIterState
>  {
> +    int indent;
> +    int pretty;
>      int count;
>      QString *str;
>  } ToJsonIterState;
>  
> -static void to_json(const QObject *obj, QString *str);
> +static void to_json(const QObject *obj, QString *str, int pretty, int indent);
>  
>  static void to_json_dict_iter(const char *key, QObject *obj, void *opaque)
>  {
>      ToJsonIterState *s = opaque;
>      QString *qkey;
> +    int j;
>  
> -    if (s->count) {
> +    if (s->count)
>          qstring_append(s->str, ", ");
> +
> +    if (s->pretty) {
> +        qstring_append(s->str, "\n");
> +        for (j = 0 ; j < s->indent ; j++)
> +            qstring_append(s->str, "    ");
>      }
>  
>      qkey = qstring_from_str(key);
> -    to_json(QOBJECT(qkey), s->str);
> +    to_json(QOBJECT(qkey), s->str, s->pretty, s->indent);
>      QDECREF(qkey);
>  
>      qstring_append(s->str, ": ");
> -    to_json(obj, s->str);
> +    to_json(obj, s->str, s->pretty, s->indent);
>      s->count++;
>  }
>  
>  static void to_json_list_iter(QObject *obj, void *opaque)
>  {
>      ToJsonIterState *s = opaque;
> +    int j;
>  
> -    if (s->count) {
> +    if (s->count)
>          qstring_append(s->str, ", ");
> +
> +    if (s->pretty) {
> +        qstring_append(s->str, "\n");

 Nitpick: we also have qstring_append_chr()

> +        for (j = 0 ; j < s->indent ; j++)
> +            qstring_append(s->str, "    ");
>      }
>  
> -    to_json(obj, s->str);
> +    to_json(obj, s->str, s->pretty, s->indent);
>      s->count++;
>  }
>  
> -static void to_json(const QObject *obj, QString *str)
> +static void to_json(const QObject *obj, QString *str, int pretty, int indent)
>  {
>      switch (qobject_type(obj)) {
>      case QTYPE_QINT: {
> @@ -190,8 +204,16 @@ static void to_json(const QObject *obj, QString *str)
>  
>          s.count = 0;
>          s.str = str;
> +        s.indent = indent + 1;
> +        s.pretty = pretty;
>          qstring_append(str, "{");
>          qdict_iter(val, to_json_dict_iter, &s);
> +        if (pretty) {
> +            int j;
> +            qstring_append(str, "\n");
> +            for (j = 0 ; j < indent ; j++)
> +                qstring_append(str, "    ");
> +        }
>          qstring_append(str, "}");
>          break;
>      }
> @@ -201,8 +223,16 @@ static void to_json(const QObject *obj, QString *str)
>  
>          s.count = 0;
>          s.str = str;
> +        s.indent = indent + 1;
> +        s.pretty = pretty;
>          qstring_append(str, "[");
>          qlist_iter(val, (void *)to_json_list_iter, &s);
> +        if (pretty) {
> +            int j;
> +            qstring_append(str, "\n");
> +            for (j = 0 ; j < indent ; j++)
> +                qstring_append(str, "    ");
> +        }
>          qstring_append(str, "]");
>          break;
>      }
> @@ -246,7 +276,16 @@ QString *qobject_to_json(const QObject *obj)
>  {
>      QString *str = qstring_new();
>  
> -    to_json(obj, str);
> +    to_json(obj, str, 0, 0);
> +
> +    return str;
> +}
> +
> +QString *qobject_to_json_pretty(const QObject *obj)
> +{
> +    QString *str = qstring_new();
> +
> +    to_json(obj, str, 1, 0);
>  
>      return str;
>  }
> diff --git a/qjson.h b/qjson.h
> index 7afec2e..cd60e0b 100644
> --- a/qjson.h
> +++ b/qjson.h
> @@ -24,5 +24,6 @@ QObject *qobject_from_jsonf(const char *string, ...)
>  QObject *qobject_from_jsonv(const char *string, va_list *ap);
>  
>  QString *qobject_to_json(const QObject *obj);
> +QString *qobject_to_json_pretty(const QObject *obj);
>  
>  #endif /* QJSON_H */

  reply	other threads:[~2010-06-09 19:52 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-06-07 14:42 [Qemu-devel] [PATCH 00/19] RFC: Reporting QEMU binary capabilities Daniel P. Berrange
2010-06-07 14:42 ` [Qemu-devel] [PATCH 01/19] Add support for JSON pretty printing Daniel P. Berrange
2010-06-09 19:51   ` Luiz Capitulino [this message]
2010-06-07 14:42 ` [Qemu-devel] [PATCH 02/19] Add support for compile time assertions Daniel P. Berrange
2010-06-07 15:35   ` [Qemu-devel] " Paolo Bonzini
2010-06-07 14:42 ` [Qemu-devel] [PATCH 03/19] Add enum handlers for easy & efficient string <-> int conversion Daniel P. Berrange
2010-06-09 19:52   ` Luiz Capitulino
2010-06-26  6:52   ` Markus Armbruster
2010-06-07 14:42 ` [Qemu-devel] [PATCH 04/19] Add support for a option parameter as an enum Daniel P. Berrange
2010-06-26  6:59   ` Markus Armbruster
2010-06-07 14:42 ` [Qemu-devel] [PATCH 05/19] Ensure that QEMU exits if drive_add parsing fails Daniel P. Berrange
2010-06-26  7:04   ` Markus Armbruster
2010-06-07 14:42 ` [Qemu-devel] [PATCH 06/19] Convert drive options to use enumeration data type Daniel P. Berrange
2010-06-09 19:52   ` Luiz Capitulino
2010-06-26  7:07   ` Markus Armbruster
2010-06-07 14:42 ` [Qemu-devel] [PATCH 07/19] Convert netdev client types to use an enumeration Daniel P. Berrange
2010-06-07 15:09   ` Anthony Liguori
2010-06-07 15:13     ` Daniel P. Berrange
2010-06-07 14:42 ` [Qemu-devel] [PATCH 08/19] Convert RTC to use enumerations for configuration parameters Daniel P. Berrange
2010-06-09 19:54   ` Luiz Capitulino
2010-06-07 14:42 ` [Qemu-devel] [PATCH 09/19] Change 'query-version' to output broken down version string Daniel P. Berrange
2010-06-07 15:11   ` Anthony Liguori
2010-06-09 20:04     ` Luiz Capitulino
2010-06-07 14:42 ` [Qemu-devel] [PATCH 10/19] Add a query-machines command to QMP Daniel P. Berrange
2010-06-07 15:13   ` Anthony Liguori
2010-06-07 16:44     ` Daniel P. Berrange
2010-06-07 17:07       ` Anthony Liguori
2010-06-07 17:14         ` Daniel P. Berrange
2010-06-09 20:06         ` Luiz Capitulino
2010-06-07 14:42 ` [Qemu-devel] [PATCH 11/19] Add a query-devices " Daniel P. Berrange
2010-06-07 15:14   ` Anthony Liguori
2010-06-07 16:03     ` Daniel P. Berrange
2010-06-26  7:12       ` Markus Armbruster
2010-06-07 14:42 ` [Qemu-devel] [PATCH 12/19] Add a query-cputypes " Daniel P. Berrange
2010-06-26  7:18   ` Markus Armbruster
2010-06-07 14:42 ` [Qemu-devel] [PATCH 13/19] Add a query-target " Daniel P. Berrange
2010-06-07 15:43   ` [Qemu-devel] " Paolo Bonzini
2010-06-07 14:42 ` [Qemu-devel] [PATCH 14/19] Add a query-argv " Daniel P. Berrange
2010-06-07 15:01   ` Anthony Liguori
2010-06-10 15:34     ` [Qemu-devel] " Paolo Bonzini
2010-06-26  7:30     ` [Qemu-devel] " Markus Armbruster
2010-06-07 14:42 ` [Qemu-devel] [PATCH 15/19] Expand query-argv to include help string Daniel P. Berrange
2010-06-07 14:42 ` [Qemu-devel] [PATCH 16/19] Add a query-netdev command to QMP Daniel P. Berrange
2010-06-07 15:15   ` Anthony Liguori
2010-06-26  7:32     ` Markus Armbruster
2010-06-07 19:13   ` Miguel Di Ciurcio Filho
2010-06-08  8:38     ` Daniel P. Berrange
2010-06-07 14:42 ` [Qemu-devel] [PATCH 17/19] Add a query-config " Daniel P. Berrange
2010-06-26  7:34   ` Markus Armbruster
2010-06-07 14:42 ` [Qemu-devel] [PATCH 18/19] Add option to turn on JSON pretty printing in monitor Daniel P. Berrange
2010-06-07 14:42 ` [Qemu-devel] [PATCH 19/19] Add a -capabilities argument to allow easy query for static QEMU info Daniel P. Berrange
2010-06-07 16:04   ` [Qemu-devel] " Paolo Bonzini
2010-06-07 16:09     ` Daniel P. Berrange
2010-06-07 16:04   ` [Qemu-devel] " Anthony Liguori
2010-06-07 14:58 ` [Qemu-devel] [PATCH 00/19] RFC: Reporting QEMU binary capabilities Anthony Liguori
2010-06-07 15:10   ` Daniel P. Berrange
2010-06-07 15:18     ` Anthony Liguori
2010-06-07 16:02   ` [Qemu-devel] " Paolo Bonzini
2010-06-07 16:03     ` Anthony Liguori
2010-06-07 16:07 ` [Qemu-devel] " Anthony Liguori
2010-06-09 20:25   ` Luiz Capitulino
2010-06-26  6:45 ` 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=20100609165159.3b6ca7fc@redhat.com \
    --to=lcapitulino@redhat.com \
    --cc=berrange@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).