2 QAPI command marshaller generator
4 Copyright IBM, Corp. 2011
5 Copyright (C) 2014-2018 Red Hat, Inc.
8 Anthony Liguori <aliguori@us.ibm.com>
9 Michael Roth <mdroth@linux.vnet.ibm.com>
10 Markus Armbruster <armbru@redhat.com>
12 This work is licensed under the terms of the GNU GPL, version 2.
13 See the COPYING file in the top-level directory.
16 from qapi
.common
import *
17 from qapi
.gen
import QAPIGenCCode
, QAPISchemaModularCVisitor
, ifcontext
20 def gen_command_decl(name
, arg_type
, boxed
, ret_type
):
22 %(c_type)s qmp_%(c_name)s(%(params)s);
24 c_type
=(ret_type
and ret_type
.c_type()) or 'void',
26 params
=build_params(arg_type
, boxed
, 'Error **errp'))
29 def gen_call(name
, arg_type
, boxed
, ret_type
):
37 assert not arg_type
.variants
38 for memb
in arg_type
.members
:
40 argstr
+= 'arg.has_%s, ' % c_name(memb
.name
)
41 argstr
+= 'arg.%s, ' % c_name(memb
.name
)
49 %(lhs)sqmp_%(c_name)s(%(args)s&err);
51 c_name
=c_name(name
), args
=argstr
, lhs
=lhs
)
58 qmp_marshal_output_%(c_name)s(retval, ret, &err);
60 c_name
=ret_type
.c_name())
64 def gen_marshal_output(ret_type
):
67 static void qmp_marshal_output_%(c_name)s(%(c_type)s ret_in, QObject **ret_out, Error **errp)
72 v = qobject_output_visitor_new(ret_out);
73 visit_type_%(c_name)s(v, "unused", &ret_in, &err);
75 visit_complete(v, ret_out);
77 error_propagate(errp, err);
79 v = qapi_dealloc_visitor_new();
80 visit_type_%(c_name)s(v, "unused", &ret_in, NULL);
84 c_type
=ret_type
.c_type(), c_name
=ret_type
.c_name())
87 def build_marshal_proto(name
):
88 return ('void qmp_marshal_%s(QDict *args, QObject **ret, Error **errp)'
92 def gen_marshal_decl(name
):
96 proto
=build_marshal_proto(name
))
99 def gen_marshal(name
, arg_type
, boxed
, ret_type
):
100 have_args
= boxed
or (arg_type
and not arg_type
.is_empty())
108 proto
=build_marshal_proto(name
))
114 c_type
=ret_type
.c_type())
117 visit_members
= ('visit_type_%s_members(v, &arg, &err);'
121 %(c_name)s arg = {0};
124 c_name
=arg_type
.c_name())
135 v = qobject_input_visitor_new(QOBJECT(args));
136 visit_start_struct(v, NULL, NULL, 0, &err);
142 visit_check_struct(v, &err);
144 visit_end_struct(v, NULL);
149 visit_members
=visit_members
)
157 ret
+= gen_call(name
, arg_type
, boxed
, ret_type
)
162 error_propagate(errp, err);
167 visit_members
= ('visit_type_%s_members(v, &arg, NULL);'
177 v = qapi_dealloc_visitor_new();
178 visit_start_struct(v, NULL, NULL, 0, NULL);
180 visit_end_struct(v, NULL);
183 visit_members
=visit_members
)
197 def gen_register_command(name
, success_response
, allow_oob
, allow_preconfig
):
200 if not success_response
:
201 options
+= ['QCO_NO_SUCCESS_RESP']
203 options
+= ['QCO_ALLOW_OOB']
205 options
+= ['QCO_ALLOW_PRECONFIG']
208 options
= ['QCO_NO_OPTIONS']
210 options
= " | ".join(options
)
213 qmp_register_command(cmds, "%(name)s",
214 qmp_marshal_%(c_name)s, %(opts)s);
216 name
=name
, c_name
=c_name(name
),
221 def gen_registry(registry
, prefix
):
224 void %(c_prefix)sqmp_init_marshal(QmpCommandList *cmds)
229 c_prefix
=c_name(prefix
, protect
=False))
237 class QAPISchemaGenCommandVisitor(QAPISchemaModularCVisitor
):
239 def __init__(self
, prefix
):
240 QAPISchemaModularCVisitor
.__init
__(
241 self
, prefix
, 'qapi-commands',
242 ' * Schema-defined QAPI/QMP commands', None, __doc__
)
243 self
._regy
= QAPIGenCCode(None)
244 self
._visited
_ret
_types
= {}
246 def _begin_user_module(self
, name
):
247 self
._visited
_ret
_types
[self
._genc
] = set()
248 commands
= self
._module
_basename
('qapi-commands', name
)
249 types
= self
._module
_basename
('qapi-types', name
)
250 visit
= self
._module
_basename
('qapi-visit', name
)
251 self
._genc
.add(mcgen('''
252 #include "qemu/osdep.h"
253 #include "qapi/visitor.h"
254 #include "qapi/qmp/qdict.h"
255 #include "qapi/qobject-output-visitor.h"
256 #include "qapi/qobject-input-visitor.h"
257 #include "qapi/dealloc-visitor.h"
258 #include "qapi/error.h"
259 #include "%(visit)s.h"
260 #include "%(commands)s.h"
263 commands
=commands
, visit
=visit
))
264 self
._genh
.add(mcgen('''
265 #include "%(types)s.h"
271 self
._add
_system
_module
('init', ' * QAPI Commands initialization')
272 self
._genh
.add(mcgen('''
273 #include "qapi/qmp/dispatch.h"
275 void %(c_prefix)sqmp_init_marshal(QmpCommandList *cmds);
277 c_prefix
=c_name(self
._prefix
, protect
=False)))
278 self
._genc
.preamble_add(mcgen('''
279 #include "qemu/osdep.h"
280 #include "%(prefix)sqapi-commands.h"
281 #include "%(prefix)sqapi-init-commands.h"
283 prefix
=self
._prefix
))
284 self
._genc
.add(gen_registry(self
._regy
.get_content(), self
._prefix
))
286 def visit_command(self
, name
, info
, ifcond
, arg_type
, ret_type
, gen
,
287 success_response
, boxed
, allow_oob
, allow_preconfig
,
291 # FIXME: If T is a user-defined type, the user is responsible
292 # for making this work, i.e. to make T's condition the
293 # conjunction of the T-returning commands' conditions. If T
294 # is a built-in type, this isn't possible: the
295 # qmp_marshal_output_T() will be generated unconditionally.
296 if ret_type
and ret_type
not in self
._visited
_ret
_types
[self
._genc
]:
297 self
._visited
_ret
_types
[self
._genc
].add(ret_type
)
298 with
ifcontext(ret_type
.ifcond
,
299 self
._genh
, self
._genc
, self
._regy
):
300 self
._genc
.add(gen_marshal_output(ret_type
))
301 with
ifcontext(ifcond
, self
._genh
, self
._genc
, self
._regy
):
302 self
._genh
.add(gen_command_decl(name
, arg_type
, boxed
, ret_type
))
303 self
._genh
.add(gen_marshal_decl(name
))
304 self
._genc
.add(gen_marshal(name
, arg_type
, boxed
, ret_type
))
305 self
._regy
.add(gen_register_command(name
, success_response
,
306 allow_oob
, allow_preconfig
))
309 def gen_commands(schema
, output_dir
, prefix
):
310 vis
= QAPISchemaGenCommandVisitor(prefix
)
312 vis
.write(output_dir
)