qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Laszlo Ersek <lersek@redhat.com>
To: qemu-devel@nongnu.org, lersek@redhat.com
Subject: [Qemu-devel] [PATCH v3 04/18] qapi: introduce "size" type
Date: Tue, 17 Jul 2012 16:17:07 +0200	[thread overview]
Message-ID: <1342534641-22450-5-git-send-email-lersek@redhat.com> (raw)
In-Reply-To: <1342534641-22450-1-git-send-email-lersek@redhat.com>

v1->v2:
- fall back to uint64 rather than int

Signed-off-by: Laszlo Ersek <lersek@redhat.com>
---
 qapi/qapi-visit-core.h |    3 +++
 qapi/qapi-visit-core.c |    7 +++++++
 scripts/qapi.py        |    2 ++
 3 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/qapi/qapi-visit-core.h b/qapi/qapi-visit-core.h
index a19d70c..60aceda 100644
--- a/qapi/qapi-visit-core.h
+++ b/qapi/qapi-visit-core.h
@@ -60,6 +60,8 @@ struct Visitor
     void (*type_int16)(Visitor *v, int16_t *obj, const char *name, Error **errp);
     void (*type_int32)(Visitor *v, int32_t *obj, const char *name, Error **errp);
     void (*type_int64)(Visitor *v, int64_t *obj, const char *name, Error **errp);
+    /* visit_type_size() falls back to (*type_uint64)() if type_size is unset */
+    void (*type_size)(Visitor *v, uint64_t *obj, const char *name, Error **errp);
 };
 
 void visit_start_handle(Visitor *v, void **obj, const char *kind,
@@ -85,6 +87,7 @@ void visit_type_int8(Visitor *v, int8_t *obj, const char *name, Error **errp);
 void visit_type_int16(Visitor *v, int16_t *obj, const char *name, Error **errp);
 void visit_type_int32(Visitor *v, int32_t *obj, const char *name, Error **errp);
 void visit_type_int64(Visitor *v, int64_t *obj, const char *name, Error **errp);
+void visit_type_size(Visitor *v, uint64_t *obj, const char *name, Error **errp);
 void visit_type_bool(Visitor *v, bool *obj, const char *name, Error **errp);
 void visit_type_str(Visitor *v, char **obj, const char *name, Error **errp);
 void visit_type_number(Visitor *v, double *obj, const char *name, Error **errp);
diff --git a/qapi/qapi-visit-core.c b/qapi/qapi-visit-core.c
index 0a513d2..811cb2c 100644
--- a/qapi/qapi-visit-core.c
+++ b/qapi/qapi-visit-core.c
@@ -234,6 +234,13 @@ void visit_type_int64(Visitor *v, int64_t *obj, const char *name, Error **errp)
     }
 }
 
+void visit_type_size(Visitor *v, uint64_t *obj, const char *name, Error **errp)
+{
+    if (!error_is_set(errp)) {
+        (v->type_size ? v->type_size : v->type_uint64)(v, obj, name, errp);
+    }
+}
+
 void visit_type_bool(Visitor *v, bool *obj, const char *name, Error **errp)
 {
     if (!error_is_set(errp)) {
diff --git a/scripts/qapi.py b/scripts/qapi.py
index 1292476..8082af3 100644
--- a/scripts/qapi.py
+++ b/scripts/qapi.py
@@ -163,6 +163,8 @@ def c_type(name):
           name == 'int64' or name == 'uint8' or name == 'uint16' or
           name == 'uint32' or name == 'uint64'):
         return name + '_t'
+    elif name == 'size':
+        return 'uint64_t'
     elif name == 'bool':
         return 'bool'
     elif name == 'number':
-- 
1.7.1

  parent reply	other threads:[~2012-07-17 14:16 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-17 14:17 [Qemu-devel] [PATCH v3 00/18] introduce OptsVisitor, rebase -net/-netdev parsing Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 01/18] qapi: fix error propagation Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 02/18] qapi: add test case for deallocating traversal of incomplete structure Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 03/18] qapi: generate C types for fixed-width integers Laszlo Ersek
2012-07-17 14:17 ` Laszlo Ersek [this message]
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 05/18] expose QemuOpt and QemuOpts struct definitions to interested parties Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 06/18] qapi: introduce OptsVisitor Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 07/18] qapi schema: remove trailing whitespace Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 08/18] qapi schema: add Netdev types Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 09/18] hw, net: "net_client_type" -> "NetClientOptionsKind" (qapi-generated) Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 10/18] convert net_client_init() to OptsVisitor Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 11/18] convert net_init_nic() to NetClientOptions Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 12/18] convert net_init_dump() " Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 13/18] convert net_init_slirp() " Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 14/18] convert net_init_socket() " Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 15/18] convert net_init_vde() " Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 16/18] convert net_init_tap() " Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 17/18] convert net_init_bridge() " Laszlo Ersek
2012-07-17 14:17 ` [Qemu-devel] [PATCH v3 18/18] remove unused QemuOpts parameter from net init functions Laszlo Ersek
2012-07-20  9:12 ` [Qemu-devel] [PATCH v3 00/18] introduce OptsVisitor, rebase -net/-netdev parsing Stefan Hajnoczi

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=1342534641-22450-5-git-send-email-lersek@redhat.com \
    --to=lersek@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).