]>
Commit | Line | Data |
---|---|---|
fb3182ce MR |
1 | # |
2 | # QAPI types generator | |
3 | # | |
4 | # Copyright IBM, Corp. 2011 | |
1de5d4ca | 5 | # Copyright (c) 2013-2016 Red Hat Inc. |
fb3182ce MR |
6 | # |
7 | # Authors: | |
8 | # Anthony Liguori <[email protected]> | |
2b162ccb | 9 | # Markus Armbruster <[email protected]> |
fb3182ce | 10 | # |
678e48a2 MA |
11 | # This work is licensed under the terms of the GNU GPL, version 2. |
12 | # See the COPYING file in the top-level directory. | |
fb3182ce | 13 | |
fb3182ce | 14 | from qapi import * |
fb3182ce | 15 | |
e98859a9 | 16 | |
1de5d4ca EB |
17 | # variants must be emitted before their container; track what has already |
18 | # been output | |
19 | objects_seen = set() | |
20 | ||
21 | ||
2b162ccb | 22 | def gen_fwd_object_or_array(name): |
fb3182ce | 23 | return mcgen(''' |
c0afa9c5 | 24 | |
e98859a9 | 25 | typedef struct %(c_name)s %(c_name)s; |
fb3182ce | 26 | ''', |
e98859a9 MA |
27 | c_name=c_name(name)) |
28 | ||
fb3182ce | 29 | |
2b162ccb | 30 | def gen_array(name, element_type): |
b9c4b48d | 31 | return mcgen(''' |
3a864e7c | 32 | |
e98859a9 | 33 | struct %(c_name)s { |
e98859a9 | 34 | %(c_name)s *next; |
e65d89bf | 35 | %(c_type)s value; |
2b162ccb | 36 | }; |
b9c4b48d | 37 | ''', |
e98859a9 MA |
38 | c_name=c_name(name), c_type=element_type.c_type()) |
39 | ||
b9c4b48d | 40 | |
7d9586f9 | 41 | def gen_struct_fields(members): |
01537030 | 42 | ret = '' |
7d9586f9 EB |
43 | for memb in members: |
44 | if memb.optional: | |
45 | ret += mcgen(''' | |
fb3182ce MR |
46 | bool has_%(c_name)s; |
47 | ''', | |
7d9586f9 EB |
48 | c_name=c_name(memb.name)) |
49 | ret += mcgen(''' | |
fb3182ce MR |
50 | %(c_type)s %(c_name)s; |
51 | ''', | |
7d9586f9 | 52 | c_type=memb.type.c_type(), c_name=c_name(memb.name)) |
01537030 KW |
53 | return ret |
54 | ||
e98859a9 | 55 | |
7d9586f9 | 56 | def gen_object(name, base, members, variants): |
1de5d4ca EB |
57 | if name in objects_seen: |
58 | return '' | |
59 | objects_seen.add(name) | |
60 | ||
61 | ret = '' | |
62 | if variants: | |
63 | for v in variants.variants: | |
64 | if (isinstance(v.type, QAPISchemaObjectType) and | |
65 | not v.type.is_implicit()): | |
66 | ret += gen_object(v.type.name, v.type.base, | |
67 | v.type.local_members, v.type.variants) | |
68 | ||
69 | ret += mcgen(''' | |
7d9586f9 EB |
70 | |
71 | struct %(c_name)s { | |
72 | ''', | |
1de5d4ca | 73 | c_name=c_name(name)) |
14d36307 | 74 | |
f87ab7f9 EB |
75 | if base: |
76 | ret += mcgen(''' | |
77 | /* Members inherited from %(c_name)s: */ | |
78 | ''', | |
79 | c_name=base.c_name()) | |
7d9586f9 | 80 | ret += gen_struct_fields(base.members) |
f87ab7f9 EB |
81 | ret += mcgen(''' |
82 | /* Own members: */ | |
83 | ''') | |
7d9586f9 | 84 | ret += gen_struct_fields(members) |
01537030 | 85 | |
570cd8d1 EB |
86 | if variants: |
87 | ret += gen_variants(variants) | |
88 | ||
83ecb22b | 89 | # Make sure that all structs have at least one field; this avoids |
e98859a9 MA |
90 | # potential issues with attempting to malloc space for zero-length |
91 | # structs in C, and also incompatibility with C++ (where an empty | |
92 | # struct is size 1). | |
570cd8d1 | 93 | if not (base and base.members) and not members and not variants: |
e98859a9 | 94 | ret += mcgen(''' |
83ecb22b PM |
95 | char qapi_dummy_field_for_empty_struct; |
96 | ''') | |
97 | ||
fb3182ce | 98 | ret += mcgen(''' |
e1d4210c MA |
99 | }; |
100 | ''') | |
fb3182ce MR |
101 | |
102 | return ret | |
103 | ||
e98859a9 | 104 | |
30594fe1 EB |
105 | def gen_upcast(name, base): |
106 | # C makes const-correctness ugly. We have to cast away const to let | |
107 | # this function work for both const and non-const obj. | |
108 | return mcgen(''' | |
109 | ||
110 | static inline %(base)s *qapi_%(c_name)s_base(const %(c_name)s *obj) | |
111 | { | |
112 | return (%(base)s *)obj; | |
113 | } | |
114 | ''', | |
115 | c_name=c_name(name), base=base.c_name()) | |
116 | ||
117 | ||
570cd8d1 | 118 | def gen_variants(variants): |
ca56a822 EB |
119 | # FIXME: What purpose does data serve, besides preventing a union that |
120 | # has a branch named 'data'? We use it in qapi-visit.py to decide | |
121 | # whether to bypass the switch statement if visiting the discriminator | |
122 | # failed; but since we 0-initialize structs, and cannot tell what | |
123 | # branch of the union is in use if the discriminator is invalid, there | |
124 | # should not be any data leaks even without a data pointer. Or, if | |
125 | # 'data' is merely added to guarantee we don't have an empty union, | |
126 | # shouldn't we enforce that at .json parse time? | |
570cd8d1 | 127 | ret = mcgen(''' |
1e6c1616 | 128 | union { /* union tag is @%(c_name)s */ |
dc8fb6df | 129 | void *data; |
fb3182ce | 130 | ''', |
570cd8d1 | 131 | c_name=c_name(variants.tag_member.name)) |
2b162ccb MA |
132 | |
133 | for var in variants.variants: | |
134 | # Ugly special case for simple union TODO get rid of it | |
544a3731 EB |
135 | simple_union_type = var.simple_union_type() |
136 | typ = simple_union_type or var.type | |
e4ba22b3 | 137 | ret += mcgen(''' |
fb3182ce MR |
138 | %(c_type)s %(c_name)s; |
139 | ''', | |
544a3731 | 140 | c_type=typ.c_type(is_unboxed=not simple_union_type), |
2b162ccb | 141 | c_name=c_name(var.name)) |
fb3182ce MR |
142 | |
143 | ret += mcgen(''' | |
f51d8fab | 144 | } u; |
fb3182ce MR |
145 | ''') |
146 | ||
147 | return ret | |
148 | ||
e98859a9 MA |
149 | |
150 | def gen_type_cleanup_decl(name): | |
fb3182ce | 151 | ret = mcgen(''' |
2b162ccb | 152 | |
e98859a9 | 153 | void qapi_free_%(c_name)s(%(c_name)s *obj); |
fb3182ce | 154 | ''', |
e98859a9 | 155 | c_name=c_name(name)) |
fb3182ce MR |
156 | return ret |
157 | ||
e98859a9 MA |
158 | |
159 | def gen_type_cleanup(name): | |
fb3182ce | 160 | ret = mcgen(''' |
c0afa9c5 | 161 | |
e98859a9 | 162 | void qapi_free_%(c_name)s(%(c_name)s *obj) |
fb3182ce | 163 | { |
f8b7f1a8 | 164 | QapiDeallocVisitor *qdv; |
fb3182ce MR |
165 | Visitor *v; |
166 | ||
167 | if (!obj) { | |
168 | return; | |
169 | } | |
170 | ||
f8b7f1a8 EB |
171 | qdv = qapi_dealloc_visitor_new(); |
172 | v = qapi_dealloc_get_visitor(qdv); | |
51e72bc1 | 173 | visit_type_%(c_name)s(v, NULL, &obj, NULL); |
f8b7f1a8 | 174 | qapi_dealloc_visitor_cleanup(qdv); |
fb3182ce MR |
175 | } |
176 | ''', | |
e98859a9 | 177 | c_name=c_name(name)) |
fb3182ce MR |
178 | return ret |
179 | ||
2b162ccb MA |
180 | |
181 | class QAPISchemaGenTypeVisitor(QAPISchemaVisitor): | |
182 | def __init__(self): | |
183 | self.decl = None | |
184 | self.defn = None | |
185 | self._fwdecl = None | |
2b162ccb MA |
186 | self._btin = None |
187 | ||
188 | def visit_begin(self, schema): | |
189 | self.decl = '' | |
190 | self.defn = '' | |
191 | self._fwdecl = '' | |
2b162ccb MA |
192 | self._btin = guardstart('QAPI_TYPES_BUILTIN') |
193 | ||
194 | def visit_end(self): | |
195 | self.decl = self._fwdecl + self.decl | |
196 | self._fwdecl = None | |
2b162ccb MA |
197 | # To avoid header dependency hell, we always generate |
198 | # declarations for built-in types in our header files and | |
199 | # simply guard them. See also do_builtins (command line | |
200 | # option -b). | |
201 | self._btin += guardend('QAPI_TYPES_BUILTIN') | |
202 | self.decl = self._btin + self.decl | |
203 | self._btin = None | |
204 | ||
25a0d9c9 EB |
205 | def visit_needed(self, entity): |
206 | # Visit everything except implicit objects | |
49823c4b EB |
207 | return not (entity.is_implicit() and |
208 | isinstance(entity, QAPISchemaObjectType)) | |
25a0d9c9 | 209 | |
2b162ccb | 210 | def _gen_type_cleanup(self, name): |
e98859a9 MA |
211 | self.decl += gen_type_cleanup_decl(name) |
212 | self.defn += gen_type_cleanup(name) | |
2b162ccb MA |
213 | |
214 | def visit_enum_type(self, name, info, values, prefix): | |
7264f5c5 EB |
215 | # Special case for our lone builtin enum type |
216 | # TODO use something cleaner than existence of info | |
217 | if not info: | |
218 | self._btin += gen_enum(name, values, prefix) | |
219 | if do_builtins: | |
220 | self.defn += gen_enum_lookup(name, values, prefix) | |
221 | else: | |
222 | self._fwdecl += gen_enum(name, values, prefix) | |
0b2e84ba | 223 | self.defn += gen_enum_lookup(name, values, prefix) |
2b162ccb MA |
224 | |
225 | def visit_array_type(self, name, info, element_type): | |
226 | if isinstance(element_type, QAPISchemaBuiltinType): | |
227 | self._btin += gen_fwd_object_or_array(name) | |
228 | self._btin += gen_array(name, element_type) | |
e98859a9 | 229 | self._btin += gen_type_cleanup_decl(name) |
2b162ccb | 230 | if do_builtins: |
e98859a9 | 231 | self.defn += gen_type_cleanup(name) |
2b162ccb MA |
232 | else: |
233 | self._fwdecl += gen_fwd_object_or_array(name) | |
234 | self.decl += gen_array(name, element_type) | |
235 | self._gen_type_cleanup(name) | |
236 | ||
237 | def visit_object_type(self, name, info, base, members, variants): | |
25a0d9c9 | 238 | self._fwdecl += gen_fwd_object_or_array(name) |
570cd8d1 | 239 | self.decl += gen_object(name, base, members, variants) |
ddf21908 EB |
240 | if base: |
241 | self.decl += gen_upcast(name, base) | |
25a0d9c9 | 242 | self._gen_type_cleanup(name) |
2b162ccb MA |
243 | |
244 | def visit_alternate_type(self, name, info, variants): | |
245 | self._fwdecl += gen_fwd_object_or_array(name) | |
570cd8d1 | 246 | self.decl += gen_object(name, None, [variants.tag_member], variants) |
2b162ccb MA |
247 | self._gen_type_cleanup(name) |
248 | ||
249 | # If you link code generated from multiple schemata, you want only one | |
250 | # instance of the code for built-in types. Generate it only when | |
251 | # do_builtins, enabled by command line option -b. See also | |
252 | # QAPISchemaGenTypeVisitor.visit_end(). | |
c0afa9c5 | 253 | do_builtins = False |
8d3bc517 | 254 | |
2114f5a9 MA |
255 | (input_file, output_dir, do_c, do_h, prefix, opts) = \ |
256 | parse_command_line("b", ["builtins"]) | |
257 | ||
fb3182ce | 258 | for o, a in opts: |
2114f5a9 | 259 | if o in ("-b", "--builtins"): |
c0afa9c5 | 260 | do_builtins = True |
8d3bc517 | 261 | |
12f8e1b9 | 262 | c_comment = ''' |
fb3182ce MR |
263 | /* |
264 | * deallocation functions for schema-defined QAPI types | |
265 | * | |
266 | * Copyright IBM, Corp. 2011 | |
267 | * | |
268 | * Authors: | |
269 | * Anthony Liguori <[email protected]> | |
270 | * Michael Roth <[email protected]> | |
271 | * | |
272 | * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. | |
273 | * See the COPYING.LIB file in the top-level directory. | |
274 | * | |
275 | */ | |
12f8e1b9 MA |
276 | ''' |
277 | h_comment = ''' | |
fb3182ce MR |
278 | /* |
279 | * schema-defined QAPI types | |
280 | * | |
281 | * Copyright IBM, Corp. 2011 | |
282 | * | |
283 | * Authors: | |
284 | * Anthony Liguori <[email protected]> | |
285 | * | |
286 | * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. | |
287 | * See the COPYING.LIB file in the top-level directory. | |
288 | * | |
289 | */ | |
12f8e1b9 | 290 | ''' |
fb3182ce | 291 | |
12f8e1b9 MA |
292 | (fdef, fdecl) = open_output(output_dir, do_c, do_h, prefix, |
293 | 'qapi-types.c', 'qapi-types.h', | |
294 | c_comment, h_comment) | |
fb3182ce | 295 | |
12f8e1b9 | 296 | fdef.write(mcgen(''' |
9167ebd9 | 297 | #include "qemu/osdep.h" |
12f8e1b9 MA |
298 | #include "qapi/dealloc-visitor.h" |
299 | #include "%(prefix)sqapi-types.h" | |
300 | #include "%(prefix)sqapi-visit.h" | |
12f8e1b9 MA |
301 | ''', |
302 | prefix=prefix)) | |
303 | ||
7264f5c5 | 304 | # To avoid circular headers, use only typedefs.h here, not qobject.h |
12f8e1b9 | 305 | fdecl.write(mcgen(''' |
7264f5c5 | 306 | #include "qemu/typedefs.h" |
12f8e1b9 | 307 | ''')) |
fb3182ce | 308 | |
2b162ccb MA |
309 | schema = QAPISchema(input_file) |
310 | gen = QAPISchemaGenTypeVisitor() | |
311 | schema.visit(gen) | |
312 | fdef.write(gen.defn) | |
313 | fdecl.write(gen.decl) | |
fb3182ce | 314 | |
12f8e1b9 | 315 | close_output(fdef, fdecl) |