]> git.proxmox.com Git - qemu.git/commit - docs/qapi-code-gen.txt
qapi: untangle next_list
authorPaolo Bonzini <pbonzini@redhat.com>
Thu, 22 Mar 2012 21:38:40 +0000 (22:38 +0100)
committerLuiz Capitulino <lcapitulino@redhat.com>
Tue, 27 Mar 2012 12:14:19 +0000 (09:14 -0300)
commit3a86a0fa76b5103a122b6e817b3827b2837f4956
treeb834cd43b9bda2ea6efbdec7530e72387661edb1
parent69b50071d8dc1b4e06724bb73cda8e2f10fe30c7
qapi: untangle next_list

Right now, the semantics of next_list are complicated.  The caller must:

* call start_list

* call next_list for each element *including the first*

* on the first call to next_list, the second argument should point to
NULL and the result is the head of the list.  On subsequent calls,
the second argument should point to the last node (last result of
next_list) and next_list itself tacks the element at the tail of the
list.

This works for both input and output visitor, but having the visitor
write memory when it is only reading the list is ugly.  Plus, relying
on *list to detect the first call is tricky and undocumented.

We can initialize so->entry in next_list instead of start_list, leaving
it NULL in start_list.  This way next_list sees clearly whether it is
on the first call---as a bonus, it discriminates the cases based on
internal state of the visitor rather than external state.  We can
also pull the assignment of the list head from generated code up to
next_list.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
docs/qapi-code-gen.txt
qapi/qmp-input-visitor.c
scripts/qapi-visit.py