blob: 1399826cca8667c58c656f69a825db755677b378 [file] [log] [blame]
Michael Rothc17d9902011-07-19 14:50:42 -05001#
2# QAPI command marshaller generator
3#
4# Copyright IBM, Corp. 2011
5#
6# Authors:
7# Anthony Liguori <aliguori@us.ibm.com>
8# Michael Roth <mdroth@linux.vnet.ibm.com>
9#
Markus Armbruster678e48a2014-03-01 08:40:34 +010010# This work is licensed under the terms of the GNU GPL, version 2.
11# See the COPYING file in the top-level directory.
Michael Rothc17d9902011-07-19 14:50:42 -050012
13from ordereddict import OrderedDict
14from qapi import *
15import sys
16import os
17import getopt
18import errno
19
Anthony Liguori15e43e62011-09-14 14:30:00 -050020def type_visitor(name):
21 if type(name) == list:
22 return 'visit_type_%sList' % name[0]
23 else:
24 return 'visit_type_%s' % name
25
Michael Rothc17d9902011-07-19 14:50:42 -050026def generate_command_decl(name, args, ret_type):
27 arglist=""
28 for argname, argtype, optional, structured in parse_args(args):
29 argtype = c_type(argtype)
30 if argtype == "char *":
31 argtype = "const char *"
32 if optional:
33 arglist += "bool has_%s, " % c_var(argname)
34 arglist += "%s %s, " % (argtype, c_var(argname))
35 return mcgen('''
36%(ret_type)s qmp_%(name)s(%(args)sError **errp);
37''',
Federico Simoncellic9da2282012-03-20 13:54:35 +000038 ret_type=c_type(ret_type), name=c_fun(name), args=arglist).strip()
Michael Rothc17d9902011-07-19 14:50:42 -050039
40def gen_sync_call(name, args, ret_type, indent=0):
41 ret = ""
42 arglist=""
43 retval=""
44 if ret_type:
45 retval = "retval = "
46 for argname, argtype, optional, structured in parse_args(args):
47 if optional:
48 arglist += "has_%s, " % c_var(argname)
49 arglist += "%s, " % (c_var(argname))
50 push_indent(indent)
51 ret = mcgen('''
52%(retval)sqmp_%(name)s(%(args)serrp);
53
54''',
Federico Simoncellic9da2282012-03-20 13:54:35 +000055 name=c_fun(name), args=arglist, retval=retval).rstrip()
Michael Rothc17d9902011-07-19 14:50:42 -050056 if ret_type:
57 ret += "\n" + mcgen(''''
Luiz Capitulino694a0992011-10-19 14:51:14 -020058if (!error_is_set(errp)) {
59 %(marshal_output_call)s
60}
Michael Rothc17d9902011-07-19 14:50:42 -050061''',
62 marshal_output_call=gen_marshal_output_call(name, ret_type)).rstrip()
63 pop_indent(indent)
64 return ret.rstrip()
65
66
67def gen_marshal_output_call(name, ret_type):
68 if not ret_type:
69 return ""
Federico Simoncellic9da2282012-03-20 13:54:35 +000070 return "qmp_marshal_output_%s(retval, ret, errp);" % c_fun(name)
Michael Rothc17d9902011-07-19 14:50:42 -050071
Markus Armbrusterf9bee752014-05-07 09:53:44 +020072def gen_visitor_input_containers_decl(args, obj):
Michael Rothc17d9902011-07-19 14:50:42 -050073 ret = ""
74
75 push_indent()
76 if len(args) > 0:
77 ret += mcgen('''
Markus Armbrusterf9bee752014-05-07 09:53:44 +020078QmpInputVisitor *mi = qmp_input_visitor_new_strict(%(obj)s);
Michael Rothc17d9902011-07-19 14:50:42 -050079QapiDeallocVisitor *md;
80Visitor *v;
Markus Armbrusterf9bee752014-05-07 09:53:44 +020081''',
82 obj=obj)
Michael Rothc17d9902011-07-19 14:50:42 -050083 pop_indent()
84
85 return ret.rstrip()
86
87def gen_visitor_input_vars_decl(args):
88 ret = ""
89 push_indent()
90 for argname, argtype, optional, structured in parse_args(args):
91 if optional:
92 ret += mcgen('''
93bool has_%(argname)s = false;
94''',
95 argname=c_var(argname))
96 if c_type(argtype).endswith("*"):
97 ret += mcgen('''
98%(argtype)s %(argname)s = NULL;
99''',
100 argname=c_var(argname), argtype=c_type(argtype))
101 else:
102 ret += mcgen('''
103%(argtype)s %(argname)s;
104''',
105 argname=c_var(argname), argtype=c_type(argtype))
106
107 pop_indent()
108 return ret.rstrip()
109
Markus Armbrusterf9bee752014-05-07 09:53:44 +0200110def gen_visitor_input_block(args, dealloc=False):
Michael Rothc17d9902011-07-19 14:50:42 -0500111 ret = ""
Luiz Capitulino8f91ad82013-07-11 14:26:56 -0400112 errparg = 'errp'
113
Michael Rothc17d9902011-07-19 14:50:42 -0500114 if len(args) == 0:
115 return ret
116
117 push_indent()
118
119 if dealloc:
Luiz Capitulino8f91ad82013-07-11 14:26:56 -0400120 errparg = 'NULL'
Michael Rothc17d9902011-07-19 14:50:42 -0500121 ret += mcgen('''
Markus Armbrusterf9bee752014-05-07 09:53:44 +0200122qmp_input_visitor_cleanup(mi);
Michael Rothc17d9902011-07-19 14:50:42 -0500123md = qapi_dealloc_visitor_new();
124v = qapi_dealloc_get_visitor(md);
125''')
126 else:
127 ret += mcgen('''
Michael Rothc17d9902011-07-19 14:50:42 -0500128v = qmp_input_get_visitor(mi);
Markus Armbrusterf9bee752014-05-07 09:53:44 +0200129''')
Michael Rothc17d9902011-07-19 14:50:42 -0500130
131 for argname, argtype, optional, structured in parse_args(args):
132 if optional:
133 ret += mcgen('''
Luiz Capitulino8f91ad82013-07-11 14:26:56 -0400134visit_start_optional(v, &has_%(c_name)s, "%(name)s", %(errp)s);
Michael Rothc17d9902011-07-19 14:50:42 -0500135if (has_%(c_name)s) {
136''',
Luiz Capitulino8f91ad82013-07-11 14:26:56 -0400137 c_name=c_var(argname), name=argname, errp=errparg)
Michael Rothc17d9902011-07-19 14:50:42 -0500138 push_indent()
139 ret += mcgen('''
Luiz Capitulino8f91ad82013-07-11 14:26:56 -0400140%(visitor)s(v, &%(c_name)s, "%(name)s", %(errp)s);
Michael Rothc17d9902011-07-19 14:50:42 -0500141''',
Anthony Liguori15e43e62011-09-14 14:30:00 -0500142 c_name=c_var(argname), name=argname, argtype=argtype,
Luiz Capitulino8f91ad82013-07-11 14:26:56 -0400143 visitor=type_visitor(argtype), errp=errparg)
Michael Rothc17d9902011-07-19 14:50:42 -0500144 if optional:
145 pop_indent()
146 ret += mcgen('''
147}
Luiz Capitulino8f91ad82013-07-11 14:26:56 -0400148visit_end_optional(v, %(errp)s);
149''', errp=errparg)
Michael Rothc17d9902011-07-19 14:50:42 -0500150
151 if dealloc:
152 ret += mcgen('''
153qapi_dealloc_visitor_cleanup(md);
154''')
Michael Rothc17d9902011-07-19 14:50:42 -0500155 pop_indent()
156 return ret.rstrip()
157
Anthony Liguori776574d2011-09-02 12:34:46 -0500158def gen_marshal_output(name, args, ret_type, middle_mode):
Michael Rothc17d9902011-07-19 14:50:42 -0500159 if not ret_type:
160 return ""
Anthony Liguori776574d2011-09-02 12:34:46 -0500161
Michael Rothc17d9902011-07-19 14:50:42 -0500162 ret = mcgen('''
163static void qmp_marshal_output_%(c_name)s(%(c_ret_type)s ret_in, QObject **ret_out, Error **errp)
164{
Michael Rothc17d9902011-07-19 14:50:42 -0500165 QmpOutputVisitor *mo = qmp_output_visitor_new();
Markus Armbrusterf9bee752014-05-07 09:53:44 +0200166 QapiDeallocVisitor *md;
Michael Rothc17d9902011-07-19 14:50:42 -0500167 Visitor *v;
168
169 v = qmp_output_get_visitor(mo);
Anthony Liguori15e43e62011-09-14 14:30:00 -0500170 %(visitor)s(v, &ret_in, "unused", errp);
Michael Rothc17d9902011-07-19 14:50:42 -0500171 if (!error_is_set(errp)) {
172 *ret_out = qmp_output_get_qobject(mo);
173 }
174 qmp_output_visitor_cleanup(mo);
Markus Armbrusterf9bee752014-05-07 09:53:44 +0200175 md = qapi_dealloc_visitor_new();
Michael Rothc17d9902011-07-19 14:50:42 -0500176 v = qapi_dealloc_get_visitor(md);
Luiz Capitulino8f91ad82013-07-11 14:26:56 -0400177 %(visitor)s(v, &ret_in, "unused", NULL);
Michael Rothc17d9902011-07-19 14:50:42 -0500178 qapi_dealloc_visitor_cleanup(md);
179}
180''',
Federico Simoncellic9da2282012-03-20 13:54:35 +0000181 c_ret_type=c_type(ret_type), c_name=c_fun(name),
Anthony Liguori15e43e62011-09-14 14:30:00 -0500182 visitor=type_visitor(ret_type))
Michael Rothc17d9902011-07-19 14:50:42 -0500183
184 return ret
185
Anthony Liguori776574d2011-09-02 12:34:46 -0500186def gen_marshal_input_decl(name, args, ret_type, middle_mode):
187 if middle_mode:
Federico Simoncellic9da2282012-03-20 13:54:35 +0000188 return 'int qmp_marshal_input_%s(Monitor *mon, const QDict *qdict, QObject **ret)' % c_fun(name)
Anthony Liguori776574d2011-09-02 12:34:46 -0500189 else:
Federico Simoncellic9da2282012-03-20 13:54:35 +0000190 return 'static void qmp_marshal_input_%s(QDict *args, QObject **ret, Error **errp)' % c_fun(name)
Anthony Liguori776574d2011-09-02 12:34:46 -0500191
192
193
194def gen_marshal_input(name, args, ret_type, middle_mode):
195 hdr = gen_marshal_input_decl(name, args, ret_type, middle_mode)
196
Michael Rothc17d9902011-07-19 14:50:42 -0500197 ret = mcgen('''
Anthony Liguori776574d2011-09-02 12:34:46 -0500198%(header)s
Michael Rothc17d9902011-07-19 14:50:42 -0500199{
200''',
Anthony Liguori776574d2011-09-02 12:34:46 -0500201 header=hdr)
202
203 if middle_mode:
204 ret += mcgen('''
205 Error *local_err = NULL;
206 Error **errp = &local_err;
207 QDict *args = (QDict *)qdict;
208''')
Michael Rothc17d9902011-07-19 14:50:42 -0500209
210 if ret_type:
211 if c_type(ret_type).endswith("*"):
212 retval = " %s retval = NULL;" % c_type(ret_type)
213 else:
214 retval = " %s retval;" % c_type(ret_type)
215 ret += mcgen('''
216%(retval)s
217''',
218 retval=retval)
219
220 if len(args) > 0:
221 ret += mcgen('''
222%(visitor_input_containers_decl)s
223%(visitor_input_vars_decl)s
224
225%(visitor_input_block)s
226
227''',
Markus Armbrusterf9bee752014-05-07 09:53:44 +0200228 visitor_input_containers_decl=gen_visitor_input_containers_decl(args, "QOBJECT(args)"),
Michael Rothc17d9902011-07-19 14:50:42 -0500229 visitor_input_vars_decl=gen_visitor_input_vars_decl(args),
Markus Armbrusterf9bee752014-05-07 09:53:44 +0200230 visitor_input_block=gen_visitor_input_block(args))
Anthony Liguori776574d2011-09-02 12:34:46 -0500231 else:
232 ret += mcgen('''
233 (void)args;
234''')
Michael Rothc17d9902011-07-19 14:50:42 -0500235
236 ret += mcgen('''
237 if (error_is_set(errp)) {
238 goto out;
239 }
240%(sync_call)s
241''',
242 sync_call=gen_sync_call(name, args, ret_type, indent=4))
243 ret += mcgen('''
244
245out:
246''')
247 ret += mcgen('''
248%(visitor_input_block_cleanup)s
Michael Rothc17d9902011-07-19 14:50:42 -0500249''',
Markus Armbrusterf9bee752014-05-07 09:53:44 +0200250 visitor_input_block_cleanup=gen_visitor_input_block(args,
Anthony Liguori776574d2011-09-02 12:34:46 -0500251 dealloc=True))
252
253 if middle_mode:
254 ret += mcgen('''
255
256 if (local_err) {
257 qerror_report_err(local_err);
258 error_free(local_err);
259 return -1;
260 }
261 return 0;
262''')
263 else:
264 ret += mcgen('''
265 return;
266''')
267
268 ret += mcgen('''
269}
270''')
271
Michael Rothc17d9902011-07-19 14:50:42 -0500272 return ret
273
Luiz Capitulinod34b8672012-05-08 14:24:44 -0300274def option_value_matches(opt, val, cmd):
275 if opt in cmd and cmd[opt] == val:
276 return True
277 return False
278
Michael Rothc17d9902011-07-19 14:50:42 -0500279def gen_registry(commands):
280 registry=""
281 push_indent()
282 for cmd in commands:
Luiz Capitulinod34b8672012-05-08 14:24:44 -0300283 options = 'QCO_NO_OPTIONS'
284 if option_value_matches('success-response', 'no', cmd):
285 options = 'QCO_NO_SUCCESS_RESP'
286
Michael Rothc17d9902011-07-19 14:50:42 -0500287 registry += mcgen('''
Luiz Capitulinod34b8672012-05-08 14:24:44 -0300288qmp_register_command("%(name)s", qmp_marshal_input_%(c_name)s, %(opts)s);
Michael Rothc17d9902011-07-19 14:50:42 -0500289''',
Luiz Capitulinod34b8672012-05-08 14:24:44 -0300290 name=cmd['command'], c_name=c_fun(cmd['command']),
291 opts=options)
Michael Rothc17d9902011-07-19 14:50:42 -0500292 pop_indent()
293 ret = mcgen('''
294static void qmp_init_marshal(void)
295{
296%(registry)s
297}
298
299qapi_init(qmp_init_marshal);
300''',
301 registry=registry.rstrip())
302 return ret
303
304def gen_command_decl_prologue(header, guard, prefix=""):
305 ret = mcgen('''
306/* THIS FILE IS AUTOMATICALLY GENERATED, DO NOT MODIFY */
307
308/*
309 * schema-defined QAPI function prototypes
310 *
311 * Copyright IBM, Corp. 2011
312 *
313 * Authors:
314 * Anthony Liguori <aliguori@us.ibm.com>
315 *
316 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
317 * See the COPYING.LIB file in the top-level directory.
318 *
319 */
320
321#ifndef %(guard)s
322#define %(guard)s
323
324#include "%(prefix)sqapi-types.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +0100325#include "qapi/qmp/qdict.h"
326#include "qapi/error.h"
Michael Rothc17d9902011-07-19 14:50:42 -0500327
328''',
Anthony Liguori776574d2011-09-02 12:34:46 -0500329 header=basename(header), guard=guardname(header), prefix=prefix)
Michael Rothc17d9902011-07-19 14:50:42 -0500330 return ret
331
332def gen_command_def_prologue(prefix="", proxy=False):
333 ret = mcgen('''
334/* THIS FILE IS AUTOMATICALLY GENERATED, DO NOT MODIFY */
335
336/*
337 * schema-defined QMP->QAPI command dispatch
338 *
339 * Copyright IBM, Corp. 2011
340 *
341 * Authors:
342 * Anthony Liguori <aliguori@us.ibm.com>
343 *
344 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
345 * See the COPYING.LIB file in the top-level directory.
346 *
347 */
348
Paolo Bonzini79ee7df2012-12-06 11:22:34 +0100349#include "qemu-common.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100350#include "qemu/module.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +0100351#include "qapi/qmp/qerror.h"
352#include "qapi/qmp/types.h"
353#include "qapi/qmp/dispatch.h"
354#include "qapi/visitor.h"
Michael Rothc17d9902011-07-19 14:50:42 -0500355#include "qapi/qmp-output-visitor.h"
356#include "qapi/qmp-input-visitor.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +0100357#include "qapi/dealloc-visitor.h"
Michael Rothc17d9902011-07-19 14:50:42 -0500358#include "%(prefix)sqapi-types.h"
359#include "%(prefix)sqapi-visit.h"
360
361''',
362 prefix=prefix)
363 if not proxy:
364 ret += '#include "%sqmp-commands.h"' % prefix
Anthony Liguori776574d2011-09-02 12:34:46 -0500365 return ret + "\n\n"
Michael Rothc17d9902011-07-19 14:50:42 -0500366
367
368try:
Lluís Vilanova33aaad52014-05-02 15:52:35 +0200369 opts, args = getopt.gnu_getopt(sys.argv[1:], "chp:i:o:m",
Avi Kivity8d3bc512011-12-27 16:02:16 +0200370 ["source", "header", "prefix=",
Lluís Vilanova33aaad52014-05-02 15:52:35 +0200371 "input-file=", "output-dir=",
372 "type=", "middle"])
Michael Rothc17d9902011-07-19 14:50:42 -0500373except getopt.GetoptError, err:
374 print str(err)
375 sys.exit(1)
376
377output_dir = ""
378prefix = ""
379dispatch_type = "sync"
380c_file = 'qmp-marshal.c'
381h_file = 'qmp-commands.h'
Anthony Liguori776574d2011-09-02 12:34:46 -0500382middle_mode = False
Michael Rothc17d9902011-07-19 14:50:42 -0500383
Avi Kivity8d3bc512011-12-27 16:02:16 +0200384do_c = False
385do_h = False
386
Michael Rothc17d9902011-07-19 14:50:42 -0500387for o, a in opts:
388 if o in ("-p", "--prefix"):
389 prefix = a
Lluís Vilanova33aaad52014-05-02 15:52:35 +0200390 elif o in ("-i", "--input-file"):
391 input_file = a
Michael Rothc17d9902011-07-19 14:50:42 -0500392 elif o in ("-o", "--output-dir"):
393 output_dir = a + "/"
394 elif o in ("-t", "--type"):
395 dispatch_type = a
Anthony Liguori776574d2011-09-02 12:34:46 -0500396 elif o in ("-m", "--middle"):
397 middle_mode = True
Avi Kivity8d3bc512011-12-27 16:02:16 +0200398 elif o in ("-c", "--source"):
Avi Kivity8d3bc512011-12-27 16:02:16 +0200399 do_c = True
Avi Kivity19bf7c82011-12-28 12:26:58 +0200400 elif o in ("-h", "--header"):
401 do_h = True
Avi Kivity8d3bc512011-12-27 16:02:16 +0200402
403if not do_c and not do_h:
404 do_c = True
405 do_h = True
Michael Rothc17d9902011-07-19 14:50:42 -0500406
407c_file = output_dir + prefix + c_file
408h_file = output_dir + prefix + h_file
409
Avi Kivity8d3bc512011-12-27 16:02:16 +0200410def maybe_open(really, name, opt):
Avi Kivity8d3bc512011-12-27 16:02:16 +0200411 if really:
412 return open(name, opt)
413 else:
Avi Kivity19bf7c82011-12-28 12:26:58 +0200414 import StringIO
415 return StringIO.StringIO()
Avi Kivity8d3bc512011-12-27 16:02:16 +0200416
Michael Rothc17d9902011-07-19 14:50:42 -0500417try:
418 os.makedirs(output_dir)
419except os.error, e:
420 if e.errno != errno.EEXIST:
421 raise
422
Lluís Vilanova33aaad52014-05-02 15:52:35 +0200423exprs = parse_schema(input_file)
Michael Rothc17d9902011-07-19 14:50:42 -0500424commands = filter(lambda expr: expr.has_key('command'), exprs)
Anthony Liguori5dbee472011-12-12 14:29:33 -0600425commands = filter(lambda expr: not expr.has_key('gen'), commands)
Michael Rothc17d9902011-07-19 14:50:42 -0500426
427if dispatch_type == "sync":
Avi Kivity8d3bc512011-12-27 16:02:16 +0200428 fdecl = maybe_open(do_h, h_file, 'w')
429 fdef = maybe_open(do_c, c_file, 'w')
Michael Rothc17d9902011-07-19 14:50:42 -0500430 ret = gen_command_decl_prologue(header=basename(h_file), guard=guardname(h_file), prefix=prefix)
431 fdecl.write(ret)
432 ret = gen_command_def_prologue(prefix=prefix)
433 fdef.write(ret)
434
435 for cmd in commands:
436 arglist = []
437 ret_type = None
438 if cmd.has_key('data'):
439 arglist = cmd['data']
440 if cmd.has_key('returns'):
441 ret_type = cmd['returns']
442 ret = generate_command_decl(cmd['command'], arglist, ret_type) + "\n"
443 fdecl.write(ret)
444 if ret_type:
Anthony Liguori776574d2011-09-02 12:34:46 -0500445 ret = gen_marshal_output(cmd['command'], arglist, ret_type, middle_mode) + "\n"
Michael Rothc17d9902011-07-19 14:50:42 -0500446 fdef.write(ret)
Anthony Liguori776574d2011-09-02 12:34:46 -0500447
448 if middle_mode:
449 fdecl.write('%s;\n' % gen_marshal_input_decl(cmd['command'], arglist, ret_type, middle_mode))
450
451 ret = gen_marshal_input(cmd['command'], arglist, ret_type, middle_mode) + "\n"
Michael Rothc17d9902011-07-19 14:50:42 -0500452 fdef.write(ret)
453
Michael Roth7534ba02011-08-10 13:10:51 -0500454 fdecl.write("\n#endif\n");
Anthony Liguori776574d2011-09-02 12:34:46 -0500455
456 if not middle_mode:
457 ret = gen_registry(commands)
458 fdef.write(ret)
Michael Rothc17d9902011-07-19 14:50:42 -0500459
460 fdef.flush()
461 fdef.close()
462 fdecl.flush()
463 fdecl.close()