qemu-patch-raspberry4/include/qapi
Eric Blake 1158bb2a05 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>
2016-07-06 10:52:04 +02:00
..
qmp qapi: Improve use of qmp/types.h 2016-07-06 10:52:03 +02:00
dealloc-visitor.h qapi: Document visitor interfaces, add assertions 2016-05-12 09:47:54 +02:00
error.h migration: add reporting of errors for outgoing migration 2016-05-26 11:31:30 +05:30
opts-visitor.h qapi: Simplify semantics of visit_next_list() 2016-05-12 09:47:55 +02:00
qmp-event.h include: Clean up includes 2016-02-23 12:43:05 +00:00
qmp-input-visitor.h qapi: Consolidate QMP input visitor creation 2016-05-12 09:47:54 +02:00
qmp-output-visitor.h qapi: move include files to include/qobject/ 2012-12-19 08:31:31 +01:00
string-input-visitor.h qapi: Simplify semantics of visit_next_list() 2016-05-12 09:47:55 +02:00
string-output-visitor.h qapi: Simplify semantics of visit_next_list() 2016-05-12 09:47:55 +02:00
util.h qom: Make enum string tables const-correct 2015-06-19 18:42:18 +02:00
visitor-impl.h qapi: Add parameter to visit_end_* 2016-07-06 10:52:04 +02:00
visitor.h qapi: Add parameter to visit_end_* 2016-07-06 10:52:04 +02:00