From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34872) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTguF-0001cU-3m for qemu-devel@nongnu.org; Wed, 31 Oct 2012 18:37:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TTgu7-0005rA-Pn for qemu-devel@nongnu.org; Wed, 31 Oct 2012 18:37:03 -0400 Received: from mail-ia0-f173.google.com ([209.85.210.173]:37027) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTgu7-0005ku-EG for qemu-devel@nongnu.org; Wed, 31 Oct 2012 18:36:55 -0400 Received: by mail-ia0-f173.google.com with SMTP id m10so1511545iam.4 for ; Wed, 31 Oct 2012 15:36:55 -0700 (PDT) Sender: fluxion From: Michael Roth Date: Wed, 31 Oct 2012 17:36:01 -0500 Message-Id: <1351722972-17801-18-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1351722972-17801-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1351722972-17801-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 17/28] qapi: add open-coded visitors for struct tm/Int128 types List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, peter.maydell@linaro.org, aliguori@us.ibm.com, blauwirbel@gmail.com, pbonzini@redhat.com Reviewed-by: Anthony Liguori Reviewed-by: Paolo Bonzini Signed-off-by: Michael Roth --- qapi/Makefile.objs | 1 + qapi/misc-qapi-visit.c | 37 +++++++++++++++++++++++++++++++++++++ qapi/misc-qapi-visit.h | 16 ++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 qapi/misc-qapi-visit.c create mode 100644 qapi/misc-qapi-visit.h diff --git a/qapi/Makefile.objs b/qapi/Makefile.objs index 5f5846e..7604b52 100644 --- a/qapi/Makefile.objs +++ b/qapi/Makefile.objs @@ -1,3 +1,4 @@ qapi-obj-y = qapi-visit-core.o qapi-dealloc-visitor.o qmp-input-visitor.o qapi-obj-y += qmp-output-visitor.o qmp-registry.o qmp-dispatch.o qapi-obj-y += string-input-visitor.o string-output-visitor.o opts-visitor.o +qapi-obj-y += misc-qapi-visit.o diff --git a/qapi/misc-qapi-visit.c b/qapi/misc-qapi-visit.c new file mode 100644 index 0000000..c3e41e3 --- /dev/null +++ b/qapi/misc-qapi-visit.c @@ -0,0 +1,37 @@ +/* + * Useful visitor type implementations for QAPI users + * that we don't have any other logical place to stick + * + * Copyright IBM, Corp. 2012 + * + * Authors: + * Michael Roth + * + * This work is licensed under the terms of the GNU GPLv2 or later. + * See the COPYING file in the top-level directory. + * + */ +#include +#include "qapi/qapi-visit-core.h" +#include "qapi/misc-qapi-visit.h" +#include "int128.h" + +void visit_type_tm(Visitor *v, struct tm *obj, const char *name, Error **errp) +{ + visit_start_struct(v, NULL, "struct tm", name, 0, errp); + visit_type_int32(v, &obj->tm_year, "tm_year", errp); + visit_type_int32(v, &obj->tm_mon, "tm_mon", errp); + visit_type_int32(v, &obj->tm_mday, "tm_mday", errp); + visit_type_int32(v, &obj->tm_hour, "tm_hour", errp); + visit_type_int32(v, &obj->tm_min, "tm_min", errp); + visit_type_int32(v, &obj->tm_sec, "tm_sec", errp); + visit_end_struct(v, errp); +} + +void visit_type_Int128(Visitor *v, Int128 **obj, const char *name, Error **errp) +{ + visit_start_struct(v, NULL, "Int128", name, sizeof(Int128), errp); + visit_type_uint64(v, &(*obj)->lo, "lo", errp); + visit_type_int64(v, &(*obj)->hi, "hi", errp); + visit_end_struct(v, errp); +} diff --git a/qapi/misc-qapi-visit.h b/qapi/misc-qapi-visit.h new file mode 100644 index 0000000..fa4ff9e --- /dev/null +++ b/qapi/misc-qapi-visit.h @@ -0,0 +1,16 @@ +/* + * Useful visitor type declarations for QAPI users + * + * Copyright IBM, Corp. 2012 + * + * Authors: + * Michael Roth + * + * This work is licensed under the terms of the GNU GPLv2 or later. + * See the COPYING file in the top-level directory. + * + */ +#include "int128.h" + +void visit_type_tm(Visitor *m, struct tm *obj, const char *name, Error **errp); +void visit_type_Int128(Visitor *v, Int128 **obj, const char *name, Error **errp); -- 1.7.9.5