]> git.proxmox.com Git - mirror_qemu.git/commit - qapi/qobject-input-visitor.c
qmp: Support explicit null during visits
authorEric Blake <eblake@redhat.com>
Thu, 28 Apr 2016 21:45:23 +0000 (15:45 -0600)
committerMarkus Armbruster <armbru@redhat.com>
Thu, 12 May 2016 07:47:54 +0000 (09:47 +0200)
commit3df016f185521f8dfa5bd89168722887156405c7
treefe7cda79ac5c168a6da67d19fcf5095b2269ead1
parent3bc97fd5924561d92f32758c67eaffd2e4e25038
qmp: Support explicit null during visits

Implement the new type_null() callback for the qmp input and
output visitors. While we don't yet have a use for this in QAPI
input (the generator will need some tweaks first), some
potential usages have already been discussed on the list.
Meanwhile, the output visitor could already output explicit null
via type_any, but this gives us finer control.

At any rate, it's easy to test that we can round-trip an explicit
null through manual use of visit_type_null() wrapped by a virtual
visit_start_struct() walk, even if we can't do the visit in a
QAPI type.  Repurpose the test_visitor_out_empty test,
particularly since a future patch will tighten semantics to
forbid use of qmp_output_get_qobject() without at least one
intervening visit_type_*.

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1461879932-9020-16-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
qapi/qmp-input-visitor.c
qapi/qmp-output-visitor.c
tests/check-qnull.c
tests/test-qmp-input-visitor.c
tests/test-qmp-output-visitor.c