2011-07-19 21:50:42 +02:00
|
|
|
#
|
|
|
|
# QAPI command marshaller generator
|
|
|
|
#
|
|
|
|
# Copyright IBM, Corp. 2011
|
qapi: Unify type bypass and add tests
For a few QMP commands, we are forced to pass an arbitrary type
without tracking it properly in QAPI. Among the existing clients,
this unnamed type was spelled 'dict', 'visitor', and '**'; this
patch standardizes on '**', matching the documentation changes
earlier in the series.
Meanwhile, for the 'gen' key, we have been ignoring the value,
although the schema consistently used "'no'" ('success-response'
was hard-coded to checking for 'no'). But now that we can support
a literal "false" in the schema, we might as well use that rather
than ignoring the value or special-casing a random string. Note
that these are one-way switches (use of 'gen':true is not the same
as omitting 'gen'). Also, the use of '**' requires 'gen':false,
but the use of 'gen':false does not mandate the use of '**'.
There is no difference to the generated code. Add some tests on
what we'd like to guarantee, although it will take later patches
to clean up test results and actually enforce the use of a bool
parameter.
Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-05-04 17:05:19 +02:00
|
|
|
# Copyright (C) 2014-2015 Red Hat, Inc.
|
2011-07-19 21:50:42 +02:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
# Michael Roth <mdroth@linux.vnet.ibm.com>
|
qapi: Replace uncommon use of the error API by the common one
We commonly use the error API like this:
err = NULL;
foo(..., &err);
if (err) {
goto out;
}
bar(..., &err);
Every error source is checked separately. The second function is only
called when the first one succeeds. Both functions are free to pass
their argument to error_set(). Because error_set() asserts no error
has been set, this effectively means they must not be called with an
error set.
The qapi-generated code uses the error API differently:
// *errp was initialized to NULL somewhere up the call chain
frob(..., errp);
gnat(..., errp);
Errors accumulate in *errp: first error wins, subsequent errors get
dropped. To make this work, the second function does nothing when
called with an error set. Requires non-null errp, or else the second
function can't see the first one fail.
This usage has also bled into visitor tests, and two device model
object property getters rtc_get_date() and balloon_stats_get_all().
With the "accumulate" technique, you need fewer error checks in
callers, and buy that with an error check in every callee. Can be
nice.
However, mixing the two techniques is confusing. You can't use the
"accumulate" technique with functions designed for the "check
separately" technique. You can use the "check separately" technique
with functions designed for the "accumulate" technique, but then
error_set() can't catch you setting an error more than once.
Standardize on the "check separately" technique for now, because it's
overwhelmingly prevalent.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
2014-05-07 09:53:54 +02:00
|
|
|
# Markus Armbruster <armbru@redhat.com>
|
2011-07-19 21:50:42 +02:00
|
|
|
#
|
2014-03-01 08:40:34 +01:00
|
|
|
# This work is licensed under the terms of the GNU GPL, version 2.
|
|
|
|
# See the COPYING file in the top-level directory.
|
2011-07-19 21:50:42 +02:00
|
|
|
|
|
|
|
from qapi import *
|
qapi: Replace uncommon use of the error API by the common one
We commonly use the error API like this:
err = NULL;
foo(..., &err);
if (err) {
goto out;
}
bar(..., &err);
Every error source is checked separately. The second function is only
called when the first one succeeds. Both functions are free to pass
their argument to error_set(). Because error_set() asserts no error
has been set, this effectively means they must not be called with an
error set.
The qapi-generated code uses the error API differently:
// *errp was initialized to NULL somewhere up the call chain
frob(..., errp);
gnat(..., errp);
Errors accumulate in *errp: first error wins, subsequent errors get
dropped. To make this work, the second function does nothing when
called with an error set. Requires non-null errp, or else the second
function can't see the first one fail.
This usage has also bled into visitor tests, and two device model
object property getters rtc_get_date() and balloon_stats_get_all().
With the "accumulate" technique, you need fewer error checks in
callers, and buy that with an error check in every callee. Can be
nice.
However, mixing the two techniques is confusing. You can't use the
"accumulate" technique with functions designed for the "check
separately" technique. You can use the "check separately" technique
with functions designed for the "accumulate" technique, but then
error_set() can't catch you setting an error more than once.
Standardize on the "check separately" technique for now, because it's
overwhelmingly prevalent.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
2014-05-07 09:53:54 +02:00
|
|
|
import re
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
|
|
|
|
def gen_command_decl(name, arg_type, ret_type):
|
2011-07-19 21:50:42 +02:00
|
|
|
return mcgen('''
|
2015-09-16 13:06:20 +02:00
|
|
|
%(c_type)s qmp_%(c_name)s(%(params)s);
|
2011-07-19 21:50:42 +02:00
|
|
|
''',
|
2015-09-16 13:06:16 +02:00
|
|
|
c_type=(ret_type and ret_type.c_type()) or 'void',
|
|
|
|
c_name=c_name(name),
|
2015-09-16 13:06:20 +02:00
|
|
|
params=gen_params(arg_type, 'Error **errp'))
|
2015-09-16 13:06:16 +02:00
|
|
|
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
def gen_call(name, arg_type, ret_type):
|
|
|
|
ret = ''
|
|
|
|
|
|
|
|
argstr = ''
|
|
|
|
if arg_type:
|
|
|
|
for memb in arg_type.members:
|
2015-09-16 13:06:11 +02:00
|
|
|
if memb.optional:
|
2015-09-16 13:06:16 +02:00
|
|
|
argstr += 'has_%s, ' % c_name(memb.name)
|
|
|
|
argstr += '%s, ' % c_name(memb.name)
|
|
|
|
|
|
|
|
lhs = ''
|
|
|
|
if ret_type:
|
|
|
|
lhs = 'retval = '
|
|
|
|
|
2011-07-19 21:50:42 +02:00
|
|
|
ret = mcgen('''
|
2015-09-16 13:06:18 +02:00
|
|
|
|
2015-09-30 00:21:12 +02:00
|
|
|
%(lhs)sqmp_%(c_name)s(%(args)s&err);
|
2011-07-19 21:50:42 +02:00
|
|
|
''',
|
2015-09-16 13:06:16 +02:00
|
|
|
c_name=c_name(name), args=argstr, lhs=lhs)
|
2011-07-19 21:50:42 +02:00
|
|
|
if ret_type:
|
2015-09-30 00:21:13 +02:00
|
|
|
ret += gen_err_check()
|
2015-06-27 17:21:12 +02:00
|
|
|
ret += mcgen('''
|
|
|
|
|
2015-09-30 00:21:12 +02:00
|
|
|
qmp_marshal_output_%(c_name)s(retval, ret, &err);
|
2011-07-19 21:50:42 +02:00
|
|
|
''',
|
2015-09-16 13:06:21 +02:00
|
|
|
c_name=ret_type.c_name())
|
2015-06-27 17:49:34 +02:00
|
|
|
return ret
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
|
2015-09-16 13:06:18 +02:00
|
|
|
def gen_marshal_vars(arg_type, ret_type):
|
|
|
|
ret = mcgen('''
|
2015-09-30 00:21:08 +02:00
|
|
|
Error *err = NULL;
|
2015-09-16 13:06:18 +02:00
|
|
|
''')
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-16 13:06:18 +02:00
|
|
|
if ret_type:
|
|
|
|
ret += mcgen('''
|
2015-09-30 00:21:12 +02:00
|
|
|
%(c_type)s retval;
|
2015-09-16 13:06:18 +02:00
|
|
|
''',
|
|
|
|
c_type=ret_type.c_type())
|
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
if arg_type:
|
2011-07-19 21:50:42 +02:00
|
|
|
ret += mcgen('''
|
2015-09-30 00:21:12 +02:00
|
|
|
QmpInputVisitor *qiv = qmp_input_visitor_new_strict(QOBJECT(args));
|
|
|
|
QapiDeallocVisitor *qdv;
|
|
|
|
Visitor *v;
|
qapi: Drop unused and useless parameters and variables
gen_sync_call()'s parameter indent is useless: gen_sync_call() uses it
only as optional argument for push_indent() and pop_indent(), their
default is four, and gen_sync_call()'s only caller passes four. Drop
the parameter.
gen_visitor_input_containers_decl()'s parameter obj is always
"QOBJECT(args)". Use that, and drop the parameter.
Drop unused parameters of gen_marshal_output(),
gen_marshal_input_decl(), generate_visit_struct_body(),
generate_visit_list(), generate_visit_enum(), generate_declaration(),
generate_enum_declaration(), generate_decl_enum().
Drop unused variables in generate_event_enum_lookup(),
generate_enum_lookup(), generate_visit_struct_fields(), check_event().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
2015-06-28 21:36:26 +02:00
|
|
|
''')
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
for memb in arg_type.members:
|
2015-09-16 13:06:11 +02:00
|
|
|
if memb.optional:
|
|
|
|
ret += mcgen('''
|
2015-09-30 00:21:12 +02:00
|
|
|
bool has_%(c_name)s = false;
|
2011-07-19 21:50:42 +02:00
|
|
|
''',
|
2015-09-16 13:06:16 +02:00
|
|
|
c_name=c_name(memb.name))
|
2015-09-16 13:06:15 +02:00
|
|
|
ret += mcgen('''
|
2015-09-30 00:21:12 +02:00
|
|
|
%(c_type)s %(c_name)s = %(c_null)s;
|
2011-07-19 21:50:42 +02:00
|
|
|
''',
|
2015-09-16 13:06:15 +02:00
|
|
|
c_name=c_name(memb.name),
|
|
|
|
c_type=memb.type.c_type(),
|
|
|
|
c_null=memb.type.c_null())
|
2015-09-16 13:06:18 +02:00
|
|
|
ret += '\n'
|
|
|
|
else:
|
|
|
|
ret += mcgen('''
|
|
|
|
|
2015-09-30 00:21:12 +02:00
|
|
|
(void)args;
|
2015-09-16 13:06:18 +02:00
|
|
|
''')
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-06-27 17:49:34 +02:00
|
|
|
return ret
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
|
2015-09-16 13:06:18 +02:00
|
|
|
def gen_marshal_input_visit(arg_type, dealloc=False):
|
2015-09-16 13:06:16 +02:00
|
|
|
ret = ''
|
qapi: qapi-commands: fix possible leaks on visitor dealloc
In qmp-marshal.c the dealloc visitor calls use the same errp
pointer of the input visitor calls. This means that if any of
the input visitor calls fails, then the dealloc visitor will
return early, before freeing the object's memory.
Here's an example, consider this code:
int qmp_marshal_input_block_passwd(Monitor *mon, const QDict *qdict, QObject **ret)
{
[...]
char * device = NULL;
char * password = NULL;
mi = qmp_input_visitor_new_strict(QOBJECT(args));
v = qmp_input_get_visitor(mi);
visit_type_str(v, &device, "device", errp);
visit_type_str(v, &password, "password", errp);
qmp_input_visitor_cleanup(mi);
if (error_is_set(errp)) {
goto out;
}
qmp_block_passwd(device, password, errp);
out:
md = qapi_dealloc_visitor_new();
v = qapi_dealloc_get_visitor(md);
visit_type_str(v, &device, "device", errp);
visit_type_str(v, &password, "password", errp);
qapi_dealloc_visitor_cleanup(md);
[...]
return 0;
}
Consider errp != NULL when the out label is reached, we're going
to leak device and password.
This patch fixes this by always passing errp=NULL for dealloc
visitors, meaning that we always try to free them regardless of
any previous failure. The above example would then be:
out:
md = qapi_dealloc_visitor_new();
v = qapi_dealloc_get_visitor(md);
visit_type_str(v, &device, "device", NULL);
visit_type_str(v, &password, "password", NULL);
qapi_dealloc_visitor_cleanup(md);
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
2013-07-11 20:26:56 +02:00
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
if not arg_type:
|
2011-07-19 21:50:42 +02:00
|
|
|
return ret
|
|
|
|
|
|
|
|
if dealloc:
|
|
|
|
ret += mcgen('''
|
2015-09-30 00:21:12 +02:00
|
|
|
qmp_input_visitor_cleanup(qiv);
|
|
|
|
qdv = qapi_dealloc_visitor_new();
|
|
|
|
v = qapi_dealloc_get_visitor(qdv);
|
2011-07-19 21:50:42 +02:00
|
|
|
''')
|
|
|
|
else:
|
|
|
|
ret += mcgen('''
|
2015-09-30 00:21:12 +02:00
|
|
|
v = qmp_input_get_visitor(qiv);
|
2014-05-07 09:53:44 +02:00
|
|
|
''')
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-30 00:21:15 +02:00
|
|
|
ret += gen_visit_fields(arg_type.members, skiperr=dealloc)
|
2011-07-19 21:50:42 +02:00
|
|
|
|
|
|
|
if dealloc:
|
|
|
|
ret += mcgen('''
|
2015-09-30 00:21:12 +02:00
|
|
|
qapi_dealloc_visitor_cleanup(qdv);
|
2011-07-19 21:50:42 +02:00
|
|
|
''')
|
2015-06-27 17:49:34 +02:00
|
|
|
return ret
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
|
2015-09-16 13:06:21 +02:00
|
|
|
def gen_marshal_output(ret_type):
|
2015-09-16 13:06:18 +02:00
|
|
|
return mcgen('''
|
2015-09-16 13:06:11 +02:00
|
|
|
|
2015-09-16 13:06:21 +02:00
|
|
|
static void qmp_marshal_output_%(c_name)s(%(c_type)s ret_in, QObject **ret_out, Error **errp)
|
2011-07-19 21:50:42 +02:00
|
|
|
{
|
2015-09-30 00:21:08 +02:00
|
|
|
Error *err = NULL;
|
2015-09-30 00:21:09 +02:00
|
|
|
QmpOutputVisitor *qov = qmp_output_visitor_new();
|
|
|
|
QapiDeallocVisitor *qdv;
|
2011-07-19 21:50:42 +02:00
|
|
|
Visitor *v;
|
|
|
|
|
2015-09-30 00:21:09 +02:00
|
|
|
v = qmp_output_get_visitor(qov);
|
2015-09-30 00:21:08 +02:00
|
|
|
visit_type_%(c_name)s(v, &ret_in, "unused", &err);
|
|
|
|
if (err) {
|
qapi: Replace uncommon use of the error API by the common one
We commonly use the error API like this:
err = NULL;
foo(..., &err);
if (err) {
goto out;
}
bar(..., &err);
Every error source is checked separately. The second function is only
called when the first one succeeds. Both functions are free to pass
their argument to error_set(). Because error_set() asserts no error
has been set, this effectively means they must not be called with an
error set.
The qapi-generated code uses the error API differently:
// *errp was initialized to NULL somewhere up the call chain
frob(..., errp);
gnat(..., errp);
Errors accumulate in *errp: first error wins, subsequent errors get
dropped. To make this work, the second function does nothing when
called with an error set. Requires non-null errp, or else the second
function can't see the first one fail.
This usage has also bled into visitor tests, and two device model
object property getters rtc_get_date() and balloon_stats_get_all().
With the "accumulate" technique, you need fewer error checks in
callers, and buy that with an error check in every callee. Can be
nice.
However, mixing the two techniques is confusing. You can't use the
"accumulate" technique with functions designed for the "check
separately" technique. You can use the "check separately" technique
with functions designed for the "accumulate" technique, but then
error_set() can't catch you setting an error more than once.
Standardize on the "check separately" technique for now, because it's
overwhelmingly prevalent.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
2014-05-07 09:53:54 +02:00
|
|
|
goto out;
|
2011-07-19 21:50:42 +02:00
|
|
|
}
|
2015-09-30 00:21:09 +02:00
|
|
|
*ret_out = qmp_output_get_qobject(qov);
|
qapi: Replace uncommon use of the error API by the common one
We commonly use the error API like this:
err = NULL;
foo(..., &err);
if (err) {
goto out;
}
bar(..., &err);
Every error source is checked separately. The second function is only
called when the first one succeeds. Both functions are free to pass
their argument to error_set(). Because error_set() asserts no error
has been set, this effectively means they must not be called with an
error set.
The qapi-generated code uses the error API differently:
// *errp was initialized to NULL somewhere up the call chain
frob(..., errp);
gnat(..., errp);
Errors accumulate in *errp: first error wins, subsequent errors get
dropped. To make this work, the second function does nothing when
called with an error set. Requires non-null errp, or else the second
function can't see the first one fail.
This usage has also bled into visitor tests, and two device model
object property getters rtc_get_date() and balloon_stats_get_all().
With the "accumulate" technique, you need fewer error checks in
callers, and buy that with an error check in every callee. Can be
nice.
However, mixing the two techniques is confusing. You can't use the
"accumulate" technique with functions designed for the "check
separately" technique. You can use the "check separately" technique
with functions designed for the "accumulate" technique, but then
error_set() can't catch you setting an error more than once.
Standardize on the "check separately" technique for now, because it's
overwhelmingly prevalent.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
2014-05-07 09:53:54 +02:00
|
|
|
|
|
|
|
out:
|
2015-09-30 00:21:08 +02:00
|
|
|
error_propagate(errp, err);
|
2015-09-30 00:21:09 +02:00
|
|
|
qmp_output_visitor_cleanup(qov);
|
|
|
|
qdv = qapi_dealloc_visitor_new();
|
|
|
|
v = qapi_dealloc_get_visitor(qdv);
|
2015-09-16 13:06:16 +02:00
|
|
|
visit_type_%(c_name)s(v, &ret_in, "unused", NULL);
|
2015-09-30 00:21:09 +02:00
|
|
|
qapi_dealloc_visitor_cleanup(qdv);
|
2011-07-19 21:50:42 +02:00
|
|
|
}
|
|
|
|
''',
|
2015-09-16 13:06:21 +02:00
|
|
|
c_type=ret_type.c_type(), c_name=ret_type.c_name())
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
|
2015-09-16 13:06:18 +02:00
|
|
|
def gen_marshal_proto(name):
|
2015-09-16 13:06:19 +02:00
|
|
|
ret = 'void qmp_marshal_%s(QDict *args, QObject **ret, Error **errp)' % c_name(name)
|
qmp: Wean off qerror_report()
The traditional QMP command handler interface
int qmp_FOO(Monitor *mon, const QDict *params, QObject **ret_data);
doesn't provide for returning an Error object. Instead, the handler
is expected to stash it in the monitor with qerror_report().
When we rebased QMP on top of QAPI, we didn't change this interface.
Instead, commit 776574d introduced "middle mode" as a temporary aid
for converting existing QMP commands to QAPI one by one. More than
three years later, we're still using it.
Middle mode has two effects:
* Instead of the native input marshallers
static void qmp_marshal_input_FOO(QDict *, QObject **, Error **)
it generates input marshallers conforming to the traditional QMP
command handler interface.
* It suppresses generation of code to register them with
qmp_register_command()
This permits giving them internal linkage.
As long as we need qmp-commands.hx, we can't use the registry behind
qmp_register_command(), so the latter has to stay for now.
The former has to go to get rid of qerror_report(). Changing all QMP
commands to fit the QAPI mold in one go was impractical back when we
started, but by now there are just a few stragglers left:
do_qmp_capabilities(), qmp_qom_set(), qmp_qom_get(), qmp_object_add(),
qmp_netdev_add(), do_device_add().
Switch middle mode to generate native input marshallers, and adapt the
stragglers. Simplifies both the monitor code and the stragglers.
Rename do_qmp_capabilities() to qmp_capabilities(), and
do_device_add() to qmp_device_add, because that's how QMP command
handlers are named today.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
2015-03-13 17:25:50 +01:00
|
|
|
if not middle_mode:
|
2015-09-16 13:06:16 +02:00
|
|
|
ret = 'static ' + ret
|
qmp: Wean off qerror_report()
The traditional QMP command handler interface
int qmp_FOO(Monitor *mon, const QDict *params, QObject **ret_data);
doesn't provide for returning an Error object. Instead, the handler
is expected to stash it in the monitor with qerror_report().
When we rebased QMP on top of QAPI, we didn't change this interface.
Instead, commit 776574d introduced "middle mode" as a temporary aid
for converting existing QMP commands to QAPI one by one. More than
three years later, we're still using it.
Middle mode has two effects:
* Instead of the native input marshallers
static void qmp_marshal_input_FOO(QDict *, QObject **, Error **)
it generates input marshallers conforming to the traditional QMP
command handler interface.
* It suppresses generation of code to register them with
qmp_register_command()
This permits giving them internal linkage.
As long as we need qmp-commands.hx, we can't use the registry behind
qmp_register_command(), so the latter has to stay for now.
The former has to go to get rid of qerror_report(). Changing all QMP
commands to fit the QAPI mold in one go was impractical back when we
started, but by now there are just a few stragglers left:
do_qmp_capabilities(), qmp_qom_set(), qmp_qom_get(), qmp_object_add(),
qmp_netdev_add(), do_device_add().
Switch middle mode to generate native input marshallers, and adapt the
stragglers. Simplifies both the monitor code and the stragglers.
Rename do_qmp_capabilities() to qmp_capabilities(), and
do_device_add() to qmp_device_add, because that's how QMP command
handlers are named today.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
2015-03-13 17:25:50 +01:00
|
|
|
return ret
|
2011-09-02 19:34:46 +02:00
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
|
2015-09-16 13:06:18 +02:00
|
|
|
def gen_marshal_decl(name):
|
|
|
|
return mcgen('''
|
|
|
|
%(proto)s;
|
|
|
|
''',
|
|
|
|
proto=gen_marshal_proto(name))
|
|
|
|
|
2011-09-02 19:34:46 +02:00
|
|
|
|
2015-09-16 13:06:18 +02:00
|
|
|
def gen_marshal(name, arg_type, ret_type):
|
2011-07-19 21:50:42 +02:00
|
|
|
ret = mcgen('''
|
2015-09-16 13:06:11 +02:00
|
|
|
|
2015-09-16 13:06:18 +02:00
|
|
|
%(proto)s
|
2011-07-19 21:50:42 +02:00
|
|
|
{
|
|
|
|
''',
|
2015-09-16 13:06:18 +02:00
|
|
|
proto=gen_marshal_proto(name))
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-09-16 13:06:18 +02:00
|
|
|
ret += gen_marshal_vars(arg_type, ret_type)
|
|
|
|
ret += gen_marshal_input_visit(arg_type)
|
2015-09-16 13:06:16 +02:00
|
|
|
ret += gen_call(name, arg_type, ret_type)
|
2015-06-27 17:49:34 +02:00
|
|
|
|
2015-10-26 23:34:42 +01:00
|
|
|
# 'goto out' produced by gen_marshal_input_visit->gen_visit_fields()
|
|
|
|
# for each arg_type member, and by gen_call() for ret_type
|
|
|
|
if (arg_type and arg_type.members) or ret_type:
|
qapi: Replace uncommon use of the error API by the common one
We commonly use the error API like this:
err = NULL;
foo(..., &err);
if (err) {
goto out;
}
bar(..., &err);
Every error source is checked separately. The second function is only
called when the first one succeeds. Both functions are free to pass
their argument to error_set(). Because error_set() asserts no error
has been set, this effectively means they must not be called with an
error set.
The qapi-generated code uses the error API differently:
// *errp was initialized to NULL somewhere up the call chain
frob(..., errp);
gnat(..., errp);
Errors accumulate in *errp: first error wins, subsequent errors get
dropped. To make this work, the second function does nothing when
called with an error set. Requires non-null errp, or else the second
function can't see the first one fail.
This usage has also bled into visitor tests, and two device model
object property getters rtc_get_date() and balloon_stats_get_all().
With the "accumulate" technique, you need fewer error checks in
callers, and buy that with an error check in every callee. Can be
nice.
However, mixing the two techniques is confusing. You can't use the
"accumulate" technique with functions designed for the "check
separately" technique. You can use the "check separately" technique
with functions designed for the "accumulate" technique, but then
error_set() can't catch you setting an error more than once.
Standardize on the "check separately" technique for now, because it's
overwhelmingly prevalent.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
2014-05-07 09:53:54 +02:00
|
|
|
ret += mcgen('''
|
2011-07-19 21:50:42 +02:00
|
|
|
|
|
|
|
out:
|
|
|
|
''')
|
|
|
|
ret += mcgen('''
|
2015-09-30 00:21:08 +02:00
|
|
|
error_propagate(errp, err);
|
2015-06-27 17:49:34 +02:00
|
|
|
''')
|
2015-09-16 13:06:18 +02:00
|
|
|
ret += gen_marshal_input_visit(arg_type, dealloc=True)
|
2015-06-27 17:49:34 +02:00
|
|
|
ret += mcgen('''
|
qmp: Wean off qerror_report()
The traditional QMP command handler interface
int qmp_FOO(Monitor *mon, const QDict *params, QObject **ret_data);
doesn't provide for returning an Error object. Instead, the handler
is expected to stash it in the monitor with qerror_report().
When we rebased QMP on top of QAPI, we didn't change this interface.
Instead, commit 776574d introduced "middle mode" as a temporary aid
for converting existing QMP commands to QAPI one by one. More than
three years later, we're still using it.
Middle mode has two effects:
* Instead of the native input marshallers
static void qmp_marshal_input_FOO(QDict *, QObject **, Error **)
it generates input marshallers conforming to the traditional QMP
command handler interface.
* It suppresses generation of code to register them with
qmp_register_command()
This permits giving them internal linkage.
As long as we need qmp-commands.hx, we can't use the registry behind
qmp_register_command(), so the latter has to stay for now.
The former has to go to get rid of qerror_report(). Changing all QMP
commands to fit the QAPI mold in one go was impractical back when we
started, but by now there are just a few stragglers left:
do_qmp_capabilities(), qmp_qom_set(), qmp_qom_get(), qmp_object_add(),
qmp_netdev_add(), do_device_add().
Switch middle mode to generate native input marshallers, and adapt the
stragglers. Simplifies both the monitor code and the stragglers.
Rename do_qmp_capabilities() to qmp_capabilities(), and
do_device_add() to qmp_device_add, because that's how QMP command
handlers are named today.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
2015-03-13 17:25:50 +01:00
|
|
|
}
|
2015-06-27 17:49:34 +02:00
|
|
|
''')
|
2011-07-19 21:50:42 +02:00
|
|
|
return ret
|
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
|
2015-09-16 13:06:11 +02:00
|
|
|
def gen_register_command(name, success_response):
|
|
|
|
options = 'QCO_NO_OPTIONS'
|
|
|
|
if not success_response:
|
|
|
|
options = 'QCO_NO_SUCCESS_RESP'
|
2012-05-08 19:24:44 +02:00
|
|
|
|
2015-09-16 13:06:11 +02:00
|
|
|
ret = mcgen('''
|
2015-09-30 00:21:12 +02:00
|
|
|
qmp_register_command("%(name)s", qmp_marshal_%(c_name)s, %(opts)s);
|
2011-07-19 21:50:42 +02:00
|
|
|
''',
|
2015-09-16 13:06:16 +02:00
|
|
|
name=name, c_name=c_name(name),
|
|
|
|
opts=options)
|
2015-09-16 13:06:11 +02:00
|
|
|
return ret
|
|
|
|
|
2015-09-16 13:06:16 +02:00
|
|
|
|
2015-09-16 13:06:11 +02:00
|
|
|
def gen_registry(registry):
|
2011-07-19 21:50:42 +02:00
|
|
|
ret = mcgen('''
|
2015-09-16 13:06:11 +02:00
|
|
|
|
2011-07-19 21:50:42 +02:00
|
|
|
static void qmp_init_marshal(void)
|
|
|
|
{
|
2015-06-27 17:49:34 +02:00
|
|
|
''')
|
|
|
|
ret += registry
|
|
|
|
ret += mcgen('''
|
2011-07-19 21:50:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
qapi_init(qmp_init_marshal);
|
2015-06-27 17:49:34 +02:00
|
|
|
''')
|
2011-07-19 21:50:42 +02:00
|
|
|
return ret
|
|
|
|
|
2015-09-16 13:06:11 +02:00
|
|
|
|
|
|
|
class QAPISchemaGenCommandVisitor(QAPISchemaVisitor):
|
|
|
|
def __init__(self):
|
|
|
|
self.decl = None
|
|
|
|
self.defn = None
|
|
|
|
self._regy = None
|
2015-09-16 13:06:21 +02:00
|
|
|
self._visited_ret_types = None
|
2015-09-16 13:06:11 +02:00
|
|
|
|
|
|
|
def visit_begin(self, schema):
|
|
|
|
self.decl = ''
|
|
|
|
self.defn = ''
|
|
|
|
self._regy = ''
|
2015-09-16 13:06:21 +02:00
|
|
|
self._visited_ret_types = set()
|
2015-09-16 13:06:11 +02:00
|
|
|
|
|
|
|
def visit_end(self):
|
|
|
|
if not middle_mode:
|
|
|
|
self.defn += gen_registry(self._regy)
|
|
|
|
self._regy = None
|
2015-09-16 13:06:21 +02:00
|
|
|
self._visited_ret_types = None
|
2015-09-16 13:06:11 +02:00
|
|
|
|
|
|
|
def visit_command(self, name, info, arg_type, ret_type,
|
|
|
|
gen, success_response):
|
|
|
|
if not gen:
|
|
|
|
return
|
2015-09-16 13:06:16 +02:00
|
|
|
self.decl += gen_command_decl(name, arg_type, ret_type)
|
2015-09-16 13:06:21 +02:00
|
|
|
if ret_type and ret_type not in self._visited_ret_types:
|
|
|
|
self._visited_ret_types.add(ret_type)
|
|
|
|
self.defn += gen_marshal_output(ret_type)
|
2015-09-16 13:06:11 +02:00
|
|
|
if middle_mode:
|
2015-09-16 13:06:18 +02:00
|
|
|
self.decl += gen_marshal_decl(name)
|
|
|
|
self.defn += gen_marshal(name, arg_type, ret_type)
|
2015-09-16 13:06:11 +02:00
|
|
|
if not middle_mode:
|
|
|
|
self._regy += gen_register_command(name, success_response)
|
|
|
|
|
|
|
|
|
2011-09-02 19:34:46 +02:00
|
|
|
middle_mode = False
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-04-02 13:12:21 +02:00
|
|
|
(input_file, output_dir, do_c, do_h, prefix, opts) = \
|
|
|
|
parse_command_line("m", ["middle"])
|
2011-12-27 15:02:16 +01:00
|
|
|
|
2011-07-19 21:50:42 +02:00
|
|
|
for o, a in opts:
|
2015-04-02 13:12:21 +02:00
|
|
|
if o in ("-m", "--middle"):
|
2011-09-02 19:34:46 +02:00
|
|
|
middle_mode = True
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-04-02 14:46:39 +02:00
|
|
|
c_comment = '''
|
|
|
|
/*
|
|
|
|
* schema-defined QMP->QAPI command dispatch
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
'''
|
|
|
|
h_comment = '''
|
|
|
|
/*
|
|
|
|
* schema-defined QAPI function prototypes
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
'''
|
|
|
|
|
|
|
|
(fdef, fdecl) = open_output(output_dir, do_c, do_h, prefix,
|
|
|
|
'qmp-marshal.c', 'qmp-commands.h',
|
|
|
|
c_comment, h_comment)
|
|
|
|
|
2015-04-02 14:52:55 +02:00
|
|
|
fdef.write(mcgen('''
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "qemu/module.h"
|
|
|
|
#include "qapi/qmp/types.h"
|
|
|
|
#include "qapi/qmp/dispatch.h"
|
|
|
|
#include "qapi/visitor.h"
|
|
|
|
#include "qapi/qmp-output-visitor.h"
|
|
|
|
#include "qapi/qmp-input-visitor.h"
|
|
|
|
#include "qapi/dealloc-visitor.h"
|
|
|
|
#include "%(prefix)sqapi-types.h"
|
|
|
|
#include "%(prefix)sqapi-visit.h"
|
|
|
|
#include "%(prefix)sqmp-commands.h"
|
|
|
|
|
|
|
|
''',
|
2015-09-16 13:06:16 +02:00
|
|
|
prefix=prefix))
|
2015-04-02 14:52:55 +02:00
|
|
|
|
|
|
|
fdecl.write(mcgen('''
|
|
|
|
#include "%(prefix)sqapi-types.h"
|
|
|
|
#include "qapi/qmp/qdict.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
|
|
|
|
''',
|
2015-09-16 13:06:11 +02:00
|
|
|
prefix=prefix))
|
2015-04-02 11:41:22 +02:00
|
|
|
|
2015-09-16 13:06:11 +02:00
|
|
|
schema = QAPISchema(input_file)
|
|
|
|
gen = QAPISchemaGenCommandVisitor()
|
|
|
|
schema.visit(gen)
|
|
|
|
fdef.write(gen.defn)
|
|
|
|
fdecl.write(gen.decl)
|
2011-07-19 21:50:42 +02:00
|
|
|
|
2015-04-02 14:46:39 +02:00
|
|
|
close_output(fdef, fdecl)
|