qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v4 0/7] add fixed-width visitors and serialization t


From: Michael Roth
Subject: [Qemu-devel] [PATCH v4 0/7] add fixed-width visitors and serialization tests
Date: Wed, 28 Mar 2012 18:02:04 -0500

These patches apply on top of qemu.git master, and can also be obtained from:
git://github.com/mdroth/qemu.git visitor-fixed-width-v4

CHANGES SINCE V3:
 - Rebased on master and re-tested

CHANGES SINCE V2:
 - Fix qemu-test errors due to now-strict bounds-checking we doing assignment
   between signed/unsigned types.
 - uint* property getters/setters no longer use int* getters/setters.
 - valid devfn range is now explicitly enforced.

CHANGES SINCE V1:
 - unit tests: covert QmpOutputVisitor qobject to json before passing it to
   QmpInputVisitor*. I.e., actually do the serialization :)
 - QmpInputVisitor, add handling for when a serialized QFloat gets read back
   as a QInt
 - unit tests: add coverage for String visitor
 - StringOutputVisitor: use %f for float representation

These patches add fixed-width visitor interfaces and switches all qdev users
over to using them.

We also add a test suite which covers these interfaces, and also does some
sanity checking on Visitors (Qmp/String currently, with a pluggable interface
for future implementations) to ensure Visitor input/output handling remain
self-consistent, which is not covered by the current visitor tests which mostly
test input/output seperately. Maintaining this invariant is necessary to ensure
that visitors can be used for serialization/deserialization in the future.

 hw/mc146818rtc.c             |    7 -
 hw/pci.c                     |    2 +-
 hw/pci.h                     |    2 +-
 hw/qdev-addr.c               |    4 +-
 hw/qdev-properties.c         |  151 +++++----
 hw/qdev.h                    |    2 +-
 qapi/qapi-visit-core.c       |  139 ++++++++
 qapi/qapi-visit-core.h       |   16 +
 qapi/qmp-input-visitor.c     |    9 +-
 qapi/string-output-visitor.c |    2 +-
 test-string-output-visitor.c |    2 +-
 test-visitor-serialization.c |  784 ++++++++++++++++++++++++++++++++++++++++++
 tests/Makefile               |    6 +-
 13 files changed, 1047 insertions(+), 79 deletions(-)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]