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.
15 from qapi
.common
import *
16 from qapi
.gen
import QAPISchemaMonolithicCVisitor
17 from qapi
.schema
import (QAPISchemaArrayType
, QAPISchemaBuiltinType
,
21 def to_qlit(obj
, level
=0, suppress_first_indent
=False):
24 return level
* 4 * ' '
26 if isinstance(obj
, tuple):
28 ifcond
= extra
.get('if')
29 comment
= extra
.get('comment')
32 ret
+= indent(level
) + '/* %s */\n' % comment
35 ret
+= to_qlit(ifobj
, level
)
37 ret
+= '\n' + gen_endif(ifcond
)
41 if not suppress_first_indent
:
45 elif isinstance(obj
, str):
46 ret
+= 'QLIT_QSTR(' + to_c_string(obj
) + ')'
47 elif isinstance(obj
, list):
48 elts
= [to_qlit(elt
, level
+ 1).strip('\n')
50 elts
.append(indent(level
+ 1) + "{}")
51 ret
+= 'QLIT_QLIST(((QLitObject[]) {\n'
52 ret
+= '\n'.join(elts
) + '\n'
53 ret
+= indent(level
) + '}))'
54 elif isinstance(obj
, dict):
56 for key
, value
in sorted(obj
.items()):
57 elts
.append(indent(level
+ 1) + '{ %s, %s }' %
58 (to_c_string(key
), to_qlit(value
, level
+ 1, True)))
59 elts
.append(indent(level
+ 1) + '{}')
60 ret
+= 'QLIT_QDICT(((QLitDictEntry[]) {\n'
61 ret
+= ',\n'.join(elts
) + '\n'
62 ret
+= indent(level
) + '}))'
63 elif isinstance(obj
, bool):
64 ret
+= 'QLIT_QBOOL(%s)' % ('true' if obj
else 'false')
66 assert False # not implemented
72 def to_c_string(string
):
73 return '"' + string
.replace('\\', r
'\\').replace('"', r
'\"') + '"'
76 class QAPISchemaGenIntrospectVisitor(QAPISchemaMonolithicCVisitor
):
78 def __init__(self
, prefix
, unmask
):
79 QAPISchemaMonolithicCVisitor
.__init
__(
80 self
, prefix
, 'qapi-introspect',
81 ' * QAPI/QMP schema introspection', __doc__
)
87 self
._genc
.add(mcgen('''
88 #include "qemu/osdep.h"
89 #include "%(prefix)sqapi-introspect.h"
94 def visit_begin(self
, schema
):
98 # visit the types that are actually used
99 for typ
in self
._used
_types
:
102 name
= c_name(self
._prefix
, protect
=False) + 'qmp_schema_qlit'
103 self
._genh
.add(mcgen('''
104 #include "qapi/qmp/qlit.h"
106 extern const QLitObject %(c_name)s;
108 c_name
=c_name(name
)))
109 self
._genc
.add(mcgen('''
110 const QLitObject %(c_name)s = %(c_string)s;
113 c_string
=to_qlit(self
._qlits
)))
116 self
._used
_types
= []
119 def visit_needed(self
, entity
):
120 # Ignore types on first pass; visit_end() will pick up used types
121 return not isinstance(entity
, QAPISchemaType
)
123 def _name(self
, name
):
126 if name
not in self
._name
_map
:
127 self
._name
_map
[name
] = '%d' % len(self
._name
_map
)
128 return self
._name
_map
[name
]
130 def _use_type(self
, typ
):
131 # Map the various integer types to plain int
132 if typ
.json_type() == 'int':
133 typ
= self
._schema
.lookup_type('int')
134 elif (isinstance(typ
, QAPISchemaArrayType
) and
135 typ
.element_type
.json_type() == 'int'):
136 typ
= self
._schema
.lookup_type('intList')
137 # Add type to work queue if new
138 if typ
not in self
._used
_types
:
139 self
._used
_types
.append(typ
)
140 # Clients should examine commands and events, not types. Hide
141 # type names as integers to reduce the temptation. Also, it
142 # saves a few characters on the wire.
143 if isinstance(typ
, QAPISchemaBuiltinType
):
145 if isinstance(typ
, QAPISchemaArrayType
):
146 return '[' + self
._use
_type
(typ
.element_type
) + ']'
147 return self
._name
(typ
.name
)
149 def _gen_qlit(self
, name
, mtype
, obj
, ifcond
):
151 if mtype
not in ('command', 'event', 'builtin', 'array'):
153 # Output a comment to make it easy to map masked names
154 # back to the source when reading the generated output.
155 extra
['comment'] = '"%s" = %s' % (self
._name
(name
), name
)
156 name
= self
._name
(name
)
158 obj
['meta-type'] = mtype
162 self
._qlits
.append((obj
, extra
))
164 self
._qlits
.append(obj
)
166 def _gen_member(self
, member
):
167 ret
= {'name': member
.name
, 'type': self
._use
_type
(member
.type)}
169 ret
['default'] = None
171 ret
= (ret
, {'if': member
.ifcond
})
174 def _gen_variants(self
, tag_name
, variants
):
175 return {'tag': tag_name
,
176 'variants': [self
._gen
_variant
(v
) for v
in variants
]}
178 def _gen_variant(self
, variant
):
179 return ({'case': variant
.name
, 'type': self
._use
_type
(variant
.type)},
180 {'if': variant
.ifcond
})
182 def visit_builtin_type(self
, name
, info
, json_type
):
183 self
._gen
_qlit
(name
, 'builtin', {'json-type': json_type
}, [])
185 def visit_enum_type(self
, name
, info
, ifcond
, members
, prefix
):
186 self
._gen
_qlit
(name
, 'enum',
188 [(m
.name
, {'if': m
.ifcond
}) for m
in members
]},
191 def visit_array_type(self
, name
, info
, ifcond
, element_type
):
192 element
= self
._use
_type
(element_type
)
193 self
._gen
_qlit
('[' + element
+ ']', 'array', {'element-type': element
},
196 def visit_object_type_flat(self
, name
, info
, ifcond
, members
, variants
,
198 obj
= {'members': [self
._gen
_member
(m
) for m
in members
]}
200 obj
.update(self
._gen
_variants
(variants
.tag_member
.name
,
203 obj
['features'] = [(f
.name
, {'if': f
.ifcond
}) for f
in features
]
205 self
._gen
_qlit
(name
, 'object', obj
, ifcond
)
207 def visit_alternate_type(self
, name
, info
, ifcond
, variants
):
208 self
._gen
_qlit
(name
, 'alternate',
210 ({'type': self
._use
_type
(m
.type)}, {'if': m
.ifcond
})
211 for m
in variants
.variants
]}, ifcond
)
213 def visit_command(self
, name
, info
, ifcond
, arg_type
, ret_type
, gen
,
214 success_response
, boxed
, allow_oob
, allow_preconfig
,
216 arg_type
= arg_type
or self
._schema
.the_empty_object_type
217 ret_type
= ret_type
or self
._schema
.the_empty_object_type
218 obj
= {'arg-type': self
._use
_type
(arg_type
),
219 'ret-type': self
._use
_type
(ret_type
)}
221 obj
['allow-oob'] = allow_oob
224 obj
['features'] = [(f
.name
, {'if': f
.ifcond
}) for f
in features
]
226 self
._gen
_qlit
(name
, 'command', obj
, ifcond
)
228 def visit_event(self
, name
, info
, ifcond
, arg_type
, boxed
):
229 arg_type
= arg_type
or self
._schema
.the_empty_object_type
230 self
._gen
_qlit
(name
, 'event', {'arg-type': self
._use
_type
(arg_type
)},
234 def gen_introspect(schema
, output_dir
, prefix
, opt_unmask
):
235 vis
= QAPISchemaGenIntrospectVisitor(prefix
, opt_unmask
)
237 vis
.write(output_dir
)