2 QAPI introspection generator
4 Copyright (C) 2015-2018 Red Hat, Inc.
7 Markus Armbruster <armbru@redhat.com>
9 This work is licensed under the terms of the GNU GPL, version 2.
10 See the COPYING file in the top-level directory.
13 from qapi
.common
import *
16 def to_qlit(obj
, level
=0, suppress_first_indent
=False):
19 return level
* 4 * ' '
21 if isinstance(obj
, tuple):
23 ifcond
= extra
.get('if')
24 comment
= extra
.get('comment')
27 ret
+= indent(level
) + '/* %s */\n' % comment
30 ret
+= to_qlit(ifobj
, level
)
32 ret
+= '\n' + gen_endif(ifcond
)
36 if not suppress_first_indent
:
40 elif isinstance(obj
, str):
41 ret
+= 'QLIT_QSTR(' + to_c_string(obj
) + ')'
42 elif isinstance(obj
, list):
43 elts
= [to_qlit(elt
, level
+ 1).strip('\n')
45 elts
.append(indent(level
+ 1) + "{}")
46 ret
+= 'QLIT_QLIST(((QLitObject[]) {\n'
47 ret
+= '\n'.join(elts
) + '\n'
48 ret
+= indent(level
) + '}))'
49 elif isinstance(obj
, dict):
51 for key
, value
in sorted(obj
.items()):
52 elts
.append(indent(level
+ 1) + '{ %s, %s }' %
53 (to_c_string(key
), to_qlit(value
, level
+ 1, True)))
54 elts
.append(indent(level
+ 1) + '{}')
55 ret
+= 'QLIT_QDICT(((QLitDictEntry[]) {\n'
56 ret
+= ',\n'.join(elts
) + '\n'
57 ret
+= indent(level
) + '}))'
58 elif isinstance(obj
, bool):
59 ret
+= 'QLIT_QBOOL(%s)' % ('true' if obj
else 'false')
61 assert False # not implemented
67 def to_c_string(string
):
68 return '"' + string
.replace('\\', r
'\\').replace('"', r
'\"') + '"'
71 class QAPISchemaGenIntrospectVisitor(QAPISchemaMonolithicCVisitor
):
73 def __init__(self
, prefix
, unmask
):
74 QAPISchemaMonolithicCVisitor
.__init
__(
75 self
, prefix
, 'qapi-introspect',
76 ' * QAPI/QMP schema introspection', __doc__
)
82 self
._genc
.add(mcgen('''
83 #include "qemu/osdep.h"
84 #include "%(prefix)sqapi-introspect.h"
89 def visit_begin(self
, schema
):
93 # visit the types that are actually used
94 for typ
in self
._used
_types
:
97 name
= c_name(self
._prefix
, protect
=False) + 'qmp_schema_qlit'
98 self
._genh
.add(mcgen('''
99 #include "qapi/qmp/qlit.h"
101 extern const QLitObject %(c_name)s;
103 c_name
=c_name(name
)))
104 self
._genc
.add(mcgen('''
105 const QLitObject %(c_name)s = %(c_string)s;
108 c_string
=to_qlit(self
._qlits
)))
111 self
._used
_types
= []
114 def visit_needed(self
, entity
):
115 # Ignore types on first pass; visit_end() will pick up used types
116 return not isinstance(entity
, QAPISchemaType
)
118 def _name(self
, name
):
121 if name
not in self
._name
_map
:
122 self
._name
_map
[name
] = '%d' % len(self
._name
_map
)
123 return self
._name
_map
[name
]
125 def _use_type(self
, typ
):
126 # Map the various integer types to plain int
127 if typ
.json_type() == 'int':
128 typ
= self
._schema
.lookup_type('int')
129 elif (isinstance(typ
, QAPISchemaArrayType
) and
130 typ
.element_type
.json_type() == 'int'):
131 typ
= self
._schema
.lookup_type('intList')
132 # Add type to work queue if new
133 if typ
not in self
._used
_types
:
134 self
._used
_types
.append(typ
)
135 # Clients should examine commands and events, not types. Hide
136 # type names as integers to reduce the temptation. Also, it
137 # saves a few characters on the wire.
138 if isinstance(typ
, QAPISchemaBuiltinType
):
140 if isinstance(typ
, QAPISchemaArrayType
):
141 return '[' + self
._use
_type
(typ
.element_type
) + ']'
142 return self
._name
(typ
.name
)
144 def _gen_qlit(self
, name
, mtype
, obj
, ifcond
):
146 if mtype
not in ('command', 'event', 'builtin', 'array'):
148 # Output a comment to make it easy to map masked names
149 # back to the source when reading the generated output.
150 extra
['comment'] = '"%s" = %s' % (self
._name
(name
), name
)
151 name
= self
._name
(name
)
153 obj
['meta-type'] = mtype
157 self
._qlits
.append((obj
, extra
))
159 self
._qlits
.append(obj
)
161 def _gen_member(self
, member
):
162 ret
= {'name': member
.name
, 'type': self
._use
_type
(member
.type)}
164 ret
['default'] = None
166 ret
= (ret
, {'if': member
.ifcond
})
169 def _gen_variants(self
, tag_name
, variants
):
170 return {'tag': tag_name
,
171 'variants': [self
._gen
_variant
(v
) for v
in variants
]}
173 def _gen_variant(self
, variant
):
174 return ({'case': variant
.name
, 'type': self
._use
_type
(variant
.type)},
175 {'if': variant
.ifcond
})
177 def visit_builtin_type(self
, name
, info
, json_type
):
178 self
._gen
_qlit
(name
, 'builtin', {'json-type': json_type
}, [])
180 def visit_enum_type(self
, name
, info
, ifcond
, members
, prefix
):
181 self
._gen
_qlit
(name
, 'enum',
183 [(m
.name
, {'if': m
.ifcond
}) for m
in members
]},
186 def visit_array_type(self
, name
, info
, ifcond
, element_type
):
187 element
= self
._use
_type
(element_type
)
188 self
._gen
_qlit
('[' + element
+ ']', 'array', {'element-type': element
},
191 def visit_object_type_flat(self
, name
, info
, ifcond
, members
, variants
,
193 obj
= {'members': [self
._gen
_member
(m
) for m
in members
]}
195 obj
.update(self
._gen
_variants
(variants
.tag_member
.name
,
198 obj
['features'] = [(f
.name
, {'if': f
.ifcond
}) for f
in features
]
200 self
._gen
_qlit
(name
, 'object', obj
, ifcond
)
202 def visit_alternate_type(self
, name
, info
, ifcond
, variants
):
203 self
._gen
_qlit
(name
, 'alternate',
205 ({'type': self
._use
_type
(m
.type)}, {'if': m
.ifcond
})
206 for m
in variants
.variants
]}, ifcond
)
208 def visit_command(self
, name
, info
, ifcond
, arg_type
, ret_type
, gen
,
209 success_response
, boxed
, allow_oob
, allow_preconfig
):
210 arg_type
= arg_type
or self
._schema
.the_empty_object_type
211 ret_type
= ret_type
or self
._schema
.the_empty_object_type
212 obj
= {'arg-type': self
._use
_type
(arg_type
),
213 'ret-type': self
._use
_type
(ret_type
)}
215 obj
['allow-oob'] = allow_oob
216 self
._gen
_qlit
(name
, 'command', obj
, ifcond
)
218 def visit_event(self
, name
, info
, ifcond
, arg_type
, boxed
):
219 arg_type
= arg_type
or self
._schema
.the_empty_object_type
220 self
._gen
_qlit
(name
, 'event', {'arg-type': self
._use
_type
(arg_type
)},
224 def gen_introspect(schema
, output_dir
, prefix
, opt_unmask
):
225 vis
= QAPISchemaGenIntrospectVisitor(prefix
, opt_unmask
)
227 vis
.write(output_dir
)