net: cadence_gem: Make phy respond to broadcast
[qemu.git] / scripts / qapi-commands.py
blob9734ab0a53a39ec868d629ab1ca79567d32f4601
2 # QAPI command marshaller generator
4 # Copyright IBM, Corp. 2011
6 # Authors:
7 # Anthony Liguori <aliguori@us.ibm.com>
8 # Michael Roth <mdroth@linux.vnet.ibm.com>
10 # This work is licensed under the terms of the GNU GPL, version 2.
11 # See the COPYING file in the top-level directory.
13 from ordereddict import OrderedDict
14 from qapi import *
15 import sys
16 import os
17 import getopt
18 import errno
20 def type_visitor(name):
21 if type(name) == list:
22 return 'visit_type_%sList' % name[0]
23 else:
24 return 'visit_type_%s' % name
26 def 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 ''',
38 ret_type=c_type(ret_type), name=c_fun(name), args=arglist).strip()
40 def 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);
54 ''',
55 name=c_fun(name), args=arglist, retval=retval).rstrip()
56 if ret_type:
57 ret += "\n" + mcgen(''''
58 if (!error_is_set(errp)) {
59 %(marshal_output_call)s
61 ''',
62 marshal_output_call=gen_marshal_output_call(name, ret_type)).rstrip()
63 pop_indent(indent)
64 return ret.rstrip()
67 def gen_marshal_output_call(name, ret_type):
68 if not ret_type:
69 return ""
70 return "qmp_marshal_output_%s(retval, ret, errp);" % c_fun(name)
72 def gen_visitor_input_containers_decl(args):
73 ret = ""
75 push_indent()
76 if len(args) > 0:
77 ret += mcgen('''
78 QmpInputVisitor *mi;
79 QapiDeallocVisitor *md;
80 Visitor *v;
81 ''')
82 pop_indent()
84 return ret.rstrip()
86 def gen_visitor_input_vars_decl(args):
87 ret = ""
88 push_indent()
89 for argname, argtype, optional, structured in parse_args(args):
90 if optional:
91 ret += mcgen('''
92 bool has_%(argname)s = false;
93 ''',
94 argname=c_var(argname))
95 if c_type(argtype).endswith("*"):
96 ret += mcgen('''
97 %(argtype)s %(argname)s = NULL;
98 ''',
99 argname=c_var(argname), argtype=c_type(argtype))
100 else:
101 ret += mcgen('''
102 %(argtype)s %(argname)s;
103 ''',
104 argname=c_var(argname), argtype=c_type(argtype))
106 pop_indent()
107 return ret.rstrip()
109 def gen_visitor_input_block(args, obj, dealloc=False):
110 ret = ""
111 errparg = 'errp'
113 if len(args) == 0:
114 return ret
116 push_indent()
118 if dealloc:
119 errparg = 'NULL'
120 ret += mcgen('''
121 md = qapi_dealloc_visitor_new();
122 v = qapi_dealloc_get_visitor(md);
123 ''')
124 else:
125 ret += mcgen('''
126 mi = qmp_input_visitor_new_strict(%(obj)s);
127 v = qmp_input_get_visitor(mi);
128 ''',
129 obj=obj)
131 for argname, argtype, optional, structured in parse_args(args):
132 if optional:
133 ret += mcgen('''
134 visit_start_optional(v, &has_%(c_name)s, "%(name)s", %(errp)s);
135 if (has_%(c_name)s) {
136 ''',
137 c_name=c_var(argname), name=argname, errp=errparg)
138 push_indent()
139 ret += mcgen('''
140 %(visitor)s(v, &%(c_name)s, "%(name)s", %(errp)s);
141 ''',
142 c_name=c_var(argname), name=argname, argtype=argtype,
143 visitor=type_visitor(argtype), errp=errparg)
144 if optional:
145 pop_indent()
146 ret += mcgen('''
148 visit_end_optional(v, %(errp)s);
149 ''', errp=errparg)
151 if dealloc:
152 ret += mcgen('''
153 qapi_dealloc_visitor_cleanup(md);
154 ''')
155 else:
156 ret += mcgen('''
157 qmp_input_visitor_cleanup(mi);
158 ''')
159 pop_indent()
160 return ret.rstrip()
162 def gen_marshal_output(name, args, ret_type, middle_mode):
163 if not ret_type:
164 return ""
166 ret = mcgen('''
167 static void qmp_marshal_output_%(c_name)s(%(c_ret_type)s ret_in, QObject **ret_out, Error **errp)
169 QapiDeallocVisitor *md = qapi_dealloc_visitor_new();
170 QmpOutputVisitor *mo = qmp_output_visitor_new();
171 Visitor *v;
173 v = qmp_output_get_visitor(mo);
174 %(visitor)s(v, &ret_in, "unused", errp);
175 if (!error_is_set(errp)) {
176 *ret_out = qmp_output_get_qobject(mo);
178 qmp_output_visitor_cleanup(mo);
179 v = qapi_dealloc_get_visitor(md);
180 %(visitor)s(v, &ret_in, "unused", NULL);
181 qapi_dealloc_visitor_cleanup(md);
183 ''',
184 c_ret_type=c_type(ret_type), c_name=c_fun(name),
185 visitor=type_visitor(ret_type))
187 return ret
189 def gen_marshal_input_decl(name, args, ret_type, middle_mode):
190 if middle_mode:
191 return 'int qmp_marshal_input_%s(Monitor *mon, const QDict *qdict, QObject **ret)' % c_fun(name)
192 else:
193 return 'static void qmp_marshal_input_%s(QDict *args, QObject **ret, Error **errp)' % c_fun(name)
197 def gen_marshal_input(name, args, ret_type, middle_mode):
198 hdr = gen_marshal_input_decl(name, args, ret_type, middle_mode)
200 ret = mcgen('''
201 %(header)s
203 ''',
204 header=hdr)
206 if middle_mode:
207 ret += mcgen('''
208 Error *local_err = NULL;
209 Error **errp = &local_err;
210 QDict *args = (QDict *)qdict;
211 ''')
213 if ret_type:
214 if c_type(ret_type).endswith("*"):
215 retval = " %s retval = NULL;" % c_type(ret_type)
216 else:
217 retval = " %s retval;" % c_type(ret_type)
218 ret += mcgen('''
219 %(retval)s
220 ''',
221 retval=retval)
223 if len(args) > 0:
224 ret += mcgen('''
225 %(visitor_input_containers_decl)s
226 %(visitor_input_vars_decl)s
228 %(visitor_input_block)s
230 ''',
231 visitor_input_containers_decl=gen_visitor_input_containers_decl(args),
232 visitor_input_vars_decl=gen_visitor_input_vars_decl(args),
233 visitor_input_block=gen_visitor_input_block(args, "QOBJECT(args)"))
234 else:
235 ret += mcgen('''
236 (void)args;
237 ''')
239 ret += mcgen('''
240 if (error_is_set(errp)) {
241 goto out;
243 %(sync_call)s
244 ''',
245 sync_call=gen_sync_call(name, args, ret_type, indent=4))
246 ret += mcgen('''
248 out:
249 ''')
250 ret += mcgen('''
251 %(visitor_input_block_cleanup)s
252 ''',
253 visitor_input_block_cleanup=gen_visitor_input_block(args, None,
254 dealloc=True))
256 if middle_mode:
257 ret += mcgen('''
259 if (local_err) {
260 qerror_report_err(local_err);
261 error_free(local_err);
262 return -1;
264 return 0;
265 ''')
266 else:
267 ret += mcgen('''
268 return;
269 ''')
271 ret += mcgen('''
273 ''')
275 return ret
277 def option_value_matches(opt, val, cmd):
278 if opt in cmd and cmd[opt] == val:
279 return True
280 return False
282 def gen_registry(commands):
283 registry=""
284 push_indent()
285 for cmd in commands:
286 options = 'QCO_NO_OPTIONS'
287 if option_value_matches('success-response', 'no', cmd):
288 options = 'QCO_NO_SUCCESS_RESP'
290 registry += mcgen('''
291 qmp_register_command("%(name)s", qmp_marshal_input_%(c_name)s, %(opts)s);
292 ''',
293 name=cmd['command'], c_name=c_fun(cmd['command']),
294 opts=options)
295 pop_indent()
296 ret = mcgen('''
297 static void qmp_init_marshal(void)
299 %(registry)s
302 qapi_init(qmp_init_marshal);
303 ''',
304 registry=registry.rstrip())
305 return ret
307 def gen_command_decl_prologue(header, guard, prefix=""):
308 ret = mcgen('''
309 /* THIS FILE IS AUTOMATICALLY GENERATED, DO NOT MODIFY */
312 * schema-defined QAPI function prototypes
314 * Copyright IBM, Corp. 2011
316 * Authors:
317 * Anthony Liguori <aliguori@us.ibm.com>
319 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
320 * See the COPYING.LIB file in the top-level directory.
324 #ifndef %(guard)s
325 #define %(guard)s
327 #include "%(prefix)sqapi-types.h"
328 #include "qapi/qmp/qdict.h"
329 #include "qapi/error.h"
331 ''',
332 header=basename(header), guard=guardname(header), prefix=prefix)
333 return ret
335 def gen_command_def_prologue(prefix="", proxy=False):
336 ret = mcgen('''
337 /* THIS FILE IS AUTOMATICALLY GENERATED, DO NOT MODIFY */
340 * schema-defined QMP->QAPI command dispatch
342 * Copyright IBM, Corp. 2011
344 * Authors:
345 * Anthony Liguori <aliguori@us.ibm.com>
347 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
348 * See the COPYING.LIB file in the top-level directory.
352 #include "qemu-common.h"
353 #include "qemu/module.h"
354 #include "qapi/qmp/qerror.h"
355 #include "qapi/qmp/types.h"
356 #include "qapi/qmp/dispatch.h"
357 #include "qapi/visitor.h"
358 #include "qapi/qmp-output-visitor.h"
359 #include "qapi/qmp-input-visitor.h"
360 #include "qapi/dealloc-visitor.h"
361 #include "%(prefix)sqapi-types.h"
362 #include "%(prefix)sqapi-visit.h"
364 ''',
365 prefix=prefix)
366 if not proxy:
367 ret += '#include "%sqmp-commands.h"' % prefix
368 return ret + "\n\n"
371 try:
372 opts, args = getopt.gnu_getopt(sys.argv[1:], "chp:o:m",
373 ["source", "header", "prefix=",
374 "output-dir=", "type=", "middle"])
375 except getopt.GetoptError, err:
376 print str(err)
377 sys.exit(1)
379 output_dir = ""
380 prefix = ""
381 dispatch_type = "sync"
382 c_file = 'qmp-marshal.c'
383 h_file = 'qmp-commands.h'
384 middle_mode = False
386 do_c = False
387 do_h = False
389 for o, a in opts:
390 if o in ("-p", "--prefix"):
391 prefix = a
392 elif o in ("-o", "--output-dir"):
393 output_dir = a + "/"
394 elif o in ("-t", "--type"):
395 dispatch_type = a
396 elif o in ("-m", "--middle"):
397 middle_mode = True
398 elif o in ("-c", "--source"):
399 do_c = True
400 elif o in ("-h", "--header"):
401 do_h = True
403 if not do_c and not do_h:
404 do_c = True
405 do_h = True
407 c_file = output_dir + prefix + c_file
408 h_file = output_dir + prefix + h_file
410 def maybe_open(really, name, opt):
411 if really:
412 return open(name, opt)
413 else:
414 import StringIO
415 return StringIO.StringIO()
417 try:
418 os.makedirs(output_dir)
419 except os.error, e:
420 if e.errno != errno.EEXIST:
421 raise
423 exprs = parse_schema(sys.stdin)
424 commands = filter(lambda expr: expr.has_key('command'), exprs)
425 commands = filter(lambda expr: not expr.has_key('gen'), commands)
427 if dispatch_type == "sync":
428 fdecl = maybe_open(do_h, h_file, 'w')
429 fdef = maybe_open(do_c, c_file, 'w')
430 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)
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:
445 ret = gen_marshal_output(cmd['command'], arglist, ret_type, middle_mode) + "\n"
446 fdef.write(ret)
448 if middle_mode:
449 fdecl.write('%s;\n' % gen_marshal_input_decl(cmd['command'], arglist, ret_type, middle_mode))
451 ret = gen_marshal_input(cmd['command'], arglist, ret_type, middle_mode) + "\n"
452 fdef.write(ret)
454 fdecl.write("\n#endif\n");
456 if not middle_mode:
457 ret = gen_registry(commands)
458 fdef.write(ret)
460 fdef.flush()
461 fdef.close()
462 fdecl.flush()
463 fdecl.close()