]> git.proxmox.com Git - mirror_qemu.git/commit - qapi/qmp-input-visitor.c
qapi: Add parameter to visit_end_*
authorEric Blake <eblake@redhat.com>
Thu, 9 Jun 2016 16:48:34 +0000 (10:48 -0600)
committerMarkus Armbruster <armbru@redhat.com>
Wed, 6 Jul 2016 08:52:04 +0000 (10:52 +0200)
commit1158bb2a058fcdd0c8fc3e60dc77f7a57ddbb271
tree664c9629ebc73d9677d0aaba207ecab5cc87582f
parent911ee36d411ee9b3540855642b53219b6a974992
qapi: Add parameter to visit_end_*

Rather than making the dealloc visitor track of stack of pointers
remembered during visit_start_* in order to free them during
visit_end_*, it's a lot easier to just make all callers pass the
same pointer to visit_end_*.  The generated code has access to the
same pointer, while all other users are doing virtual walks and
can pass NULL.  The dealloc visitor is then greatly simplified.

All three visit_end_*() functions intentionally take a void**,
even though the visit_start_*() functions differ between void**,
GenericList**, and GenericAlternate**.  This is done for several
reasons: when doing a virtual walk, passing NULL doesn't care
what the type is, but when doing a generated walk, we already
have to cast the caller's specific FOO* to call visit_start,
while using void** lets us use visit_end without a cast. Also,
an upcoming patch will add a clone visitor that wants to use
the same implementation for all three visit_end callbacks,
which is made easier if all three share the same signature.

For visitors with already track per-object state (the QMP visitors
via a stack, and the string visitors which do not allow nesting),
add an assertion that the caller is indeed passing the same
pointer to paired calls.

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1465490926-28625-4-git-send-email-eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
20 files changed:
block/crypto.c
docs/qapi-code-gen.txt
hw/ppc/spapr_drc.c
hw/virtio/virtio-balloon.c
include/qapi/visitor-impl.h
include/qapi/visitor.h
qapi/opts-visitor.c
qapi/qapi-dealloc-visitor.c
qapi/qapi-visit-core.c
qapi/qmp-input-visitor.c
qapi/qmp-output-visitor.c
qapi/string-input-visitor.c
qapi/string-output-visitor.c
qom/object.c
qom/object_interfaces.c
scripts/qapi-commands.py
scripts/qapi-event.py
scripts/qapi-visit.py
tests/test-qmp-input-visitor.c
tests/test-qmp-output-visitor.c