qapi-visit.py 11.0 KB
Newer Older
1 2 3 4
#
# QAPI visitor generator
#
# Copyright IBM, Corp. 2011
5
# Copyright (C) 2014-2016 Red Hat, Inc.
6 7 8 9
#
# Authors:
#  Anthony Liguori <aliguori@us.ibm.com>
#  Michael Roth    <mdroth@linux.vnet.ibm.com>
10
#  Markus Armbruster <armbru@redhat.com>
11
#
12 13
# This work is licensed under the terms of the GNU GPL, version 2.
# See the COPYING file in the top-level directory.
14 15

from qapi import *
16
import re
17

18 19
# visit_type_FOO_implicit() is emitted as needed; track if it has already
# been output.
20
implicit_structs_seen = set()
21 22 23

# visit_type_FOO_fields() is always emitted; track if a forward declaration
# or implementation has already been output.
24
struct_fields_seen = set()
25

26

27 28 29 30 31
def gen_visit_decl(name, scalar=False):
    c_type = c_name(name) + ' *'
    if not scalar:
        c_type += '*'
    return mcgen('''
32
void visit_type_%(c_name)s(Visitor *v, const char *name, %(c_type)sobj, Error **errp);
33 34 35 36
''',
                 c_name=c_name(name), c_type=c_type)


37
def gen_visit_fields_decl(typ):
38 39 40 41
    if typ.name in struct_fields_seen:
        return ''
    struct_fields_seen.add(typ.name)
    return mcgen('''
42

43
static void visit_type_%(c_type)s_fields(Visitor *v, %(c_type)s *obj, Error **errp);
44
''',
45
                 c_type=typ.c_name())
46 47 48 49 50 51 52 53


def gen_visit_implicit_struct(typ):
    if typ in implicit_structs_seen:
        return ''
    implicit_structs_seen.add(typ)

    ret = gen_visit_fields_decl(typ)
54 55

    ret += mcgen('''
56

57
static void visit_type_implicit_%(c_type)s(Visitor *v, %(c_type)s **obj, Error **errp)
58 59 60
{
    Error *err = NULL;

61
    visit_start_implicit_struct(v, (void **)obj, sizeof(%(c_type)s), &err);
62
    if (!err) {
63
        visit_type_%(c_type)s_fields(v, *obj, errp);
64
        visit_end_implicit_struct(v);
65 66 67 68
    }
    error_propagate(errp, err);
}
''',
69
                 c_type=typ.c_name())
70
    return ret
71

72

73
def gen_visit_struct_fields(name, base, members, variants):
74
    ret = ''
75

76
    if base:
E
Eric Blake 已提交
77
        ret += gen_visit_fields_decl(base)
78 79 80 81 82
    if variants:
        for var in variants.variants:
            # Ugly special case for simple union TODO get rid of it
            if not var.simple_union_type():
                ret += gen_visit_implicit_struct(var.type)
83

E
Eric Blake 已提交
84
    struct_fields_seen.add(name)
85 86
    ret += mcgen('''

87
static void visit_type_%(c_name)s_fields(Visitor *v, %(c_name)s *obj, Error **errp)
88 89
{
    Error *err = NULL;
M
Markus Armbruster 已提交
90

91
''',
92
                 c_name=c_name(name))
P
Paolo Bonzini 已提交
93

94 95
    if base:
        ret += mcgen('''
96
    visit_type_%(c_type)s_fields(v, (%(c_type)s *)obj, &err);
97
''',
E
Eric Blake 已提交
98
                     c_type=base.c_name())
E
Eric Blake 已提交
99
        ret += gen_err_check()
100

101
    ret += gen_visit_fields(members, prefix='obj->')
P
Paolo Bonzini 已提交
102

103 104
    if variants:
        ret += mcgen('''
105
    if (!visit_start_union(v, !!obj->u.data, &err) || err) {
106 107
        goto out;
    }
108
    switch (obj->%(c_name)s) {
109 110 111 112 113 114 115 116 117 118 119 120 121 122
''',
                     c_name=c_name(variants.tag_member.name))

        for var in variants.variants:
            # TODO ugly special case for simple union
            simple_union_type = var.simple_union_type()
            ret += mcgen('''
    case %(case)s:
''',
                         case=c_enum_const(variants.tag_member.type.name,
                                           var.name,
                                           variants.tag_member.type.prefix))
            if simple_union_type:
                ret += mcgen('''
123
        visit_type_%(c_type)s(v, "data", &obj->u.%(c_name)s, &err);
124 125 126 127 128
''',
                             c_type=simple_union_type.c_name(),
                             c_name=c_name(var.name))
            else:
                ret += mcgen('''
129
        visit_type_implicit_%(c_type)s(v, &obj->u.%(c_name)s, &err);
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
''',
                             c_type=var.type.c_name(),
                             c_name=c_name(var.name))
            ret += mcgen('''
        break;
''')

        ret += mcgen('''
    default:
        abort();
    }
''')

    # 'goto out' produced for base, by gen_visit_fields() for each member,
    # and if variants were present
    if base or members or variants:
146
        ret += mcgen('''
147

148 149 150
out:
''')
    ret += mcgen('''
151 152 153
    error_propagate(errp, err);
}
''')
154 155 156
    return ret


157
def gen_visit_list(name, element_type):
158 159 160 161
    # FIXME: if *obj is NULL on entry, and the first visit_next_list()
    # assigns to *obj, while a later one fails, we should clean up *obj
    # rather than leaving it non-NULL. As currently written, the caller must
    # call qapi_free_FOOList() to avoid a memory leak of the partial FOOList.
162 163
    return mcgen('''

164
void visit_type_%(c_name)s(Visitor *v, const char *name, %(c_name)s **obj, Error **errp)
165
{
P
Paolo Bonzini 已提交
166
    Error *err = NULL;
167
    GenericList *i, **prev;
168

169
    visit_start_list(v, name, &err);
170 171 172 173 174
    if (err) {
        goto out;
    }

    for (prev = (GenericList **)obj;
175
         !err && (i = visit_next_list(v, prev, sizeof(**obj))) != NULL;
176
         prev = &i) {
177
        %(c_name)s *native_i = (%(c_name)s *)i;
178
        visit_type_%(c_elt_type)s(v, NULL, &native_i->value, &err);
179
    }
180

181
    visit_end_list(v);
182 183
out:
    error_propagate(errp, err);
184 185
}
''',
186
                 c_name=c_name(name), c_elt_type=element_type.c_name())
187

188 189

def gen_visit_enum(name):
190 191
    return mcgen('''

192
void visit_type_%(c_name)s(Visitor *v, const char *name, %(c_name)s *obj, Error **errp)
193
{
E
Eric Blake 已提交
194
    int value = *obj;
195
    visit_type_enum(v, name, &value, %(c_name)s_lookup, errp);
E
Eric Blake 已提交
196
    *obj = value;
197 198
}
''',
199
                 c_name=c_name(name))
200

201

202
def gen_visit_alternate(name, variants):
203 204 205 206 207
    promote_int = 'true'
    for var in variants.variants:
        if var.type.alternate_qtype() == 'QTYPE_QINT':
            promote_int = 'false'

K
Kevin Wolf 已提交
208 209
    ret = mcgen('''

210
void visit_type_%(c_name)s(Visitor *v, const char *name, %(c_name)s **obj, Error **errp)
K
Kevin Wolf 已提交
211 212 213
{
    Error *err = NULL;

214
    visit_start_implicit_struct(v, (void**) obj, sizeof(%(c_name)s), &err);
215 216 217
    if (err) {
        goto out;
    }
218
    visit_get_next_type(v, name, &(*obj)->type, %(promote_int)s, &err);
219
    if (err) {
220
        goto out_obj;
221
    }
222
    switch ((*obj)->type) {
K
Kevin Wolf 已提交
223
''',
224
                c_name=c_name(name), promote_int=promote_int)
K
Kevin Wolf 已提交
225

226
    for var in variants.variants:
K
Kevin Wolf 已提交
227
        ret += mcgen('''
228
    case %(case)s:
229
        visit_type_%(c_type)s(v, name, &(*obj)->u.%(c_name)s, &err);
230
        break;
K
Kevin Wolf 已提交
231
''',
232
                     case=var.type.alternate_qtype(),
233 234
                     c_type=var.type.c_name(),
                     c_name=c_name(var.name))
K
Kevin Wolf 已提交
235 236

    ret += mcgen('''
237
    default:
238 239
        error_setg(&err, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "%(name)s");
K
Kevin Wolf 已提交
240
    }
241
out_obj:
242
    visit_end_implicit_struct(v);
243 244
out:
    error_propagate(errp, err);
K
Kevin Wolf 已提交
245
}
246 247
''',
                 name=name)
K
Kevin Wolf 已提交
248 249 250

    return ret

251

252
def gen_visit_object(name, base, members, variants):
253
    ret = gen_visit_struct_fields(name, base, members, variants)
254

255 256 257 258
    # FIXME: if *obj is NULL on entry, and visit_start_struct() assigns to
    # *obj, but then visit_type_FOO_fields() fails, we should clean up *obj
    # rather than leaving it non-NULL. As currently written, the caller must
    # call qapi_free_FOO() to avoid a memory leak of the partial FOO.
259 260
    ret += mcgen('''

261
void visit_type_%(c_name)s(Visitor *v, const char *name, %(c_name)s **obj, Error **errp)
262
{
263 264
    Error *err = NULL;

265
    visit_start_struct(v, name, (void **)obj, sizeof(%(c_name)s), &err);
266 267 268
    if (err) {
        goto out;
    }
269 270 271
    if (!*obj) {
        goto out_obj;
    }
272
    visit_type_%(c_name)s_fields(v, *obj, &err);
273 274
    error_propagate(errp, err);
    err = NULL;
275
out_obj:
276
    visit_end_struct(v, &err);
277 278
out:
    error_propagate(errp, err);
279
}
280 281
''',
                 c_name=c_name(name))
282

283 284
    return ret

285

286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
class QAPISchemaGenVisitVisitor(QAPISchemaVisitor):
    def __init__(self):
        self.decl = None
        self.defn = None
        self._btin = None

    def visit_begin(self, schema):
        self.decl = ''
        self.defn = ''
        self._btin = guardstart('QAPI_VISIT_BUILTIN')

    def visit_end(self):
        # To avoid header dependency hell, we always generate
        # declarations for built-in types in our header files and
        # simply guard them.  See also do_builtins (command line
        # option -b).
        self._btin += guardend('QAPI_VISIT_BUILTIN')
        self.decl = self._btin + self.decl
        self._btin = None

306 307
    def visit_needed(self, entity):
        # Visit everything except implicit objects
308 309
        return not (entity.is_implicit() and
                    isinstance(entity, QAPISchemaObjectType))
310

311
    def visit_enum_type(self, name, info, values, prefix):
312 313 314 315 316 317 318 319 320
        # Special case for our lone builtin enum type
        # TODO use something cleaner than existence of info
        if not info:
            self._btin += gen_visit_decl(name, scalar=True)
            if do_builtins:
                self.defn += gen_visit_enum(name)
        else:
            self.decl += gen_visit_decl(name, scalar=True)
            self.defn += gen_visit_enum(name)
321 322 323 324 325 326 327 328 329 330 331 332 333

    def visit_array_type(self, name, info, element_type):
        decl = gen_visit_decl(name)
        defn = gen_visit_list(name, element_type)
        if isinstance(element_type, QAPISchemaBuiltinType):
            self._btin += decl
            if do_builtins:
                self.defn += defn
        else:
            self.decl += decl
            self.defn += defn

    def visit_object_type(self, name, info, base, members, variants):
334
        self.decl += gen_visit_decl(name)
335
        self.defn += gen_visit_object(name, base, members, variants)
336 337 338 339 340 341 342 343 344

    def visit_alternate_type(self, name, info, variants):
        self.decl += gen_visit_decl(name)
        self.defn += gen_visit_alternate(name, variants)

# If you link code generated from multiple schemata, you want only one
# instance of the code for built-in types.  Generate it only when
# do_builtins, enabled by command line option -b.  See also
# QAPISchemaGenVisitVisitor.visit_end().
345
do_builtins = False
346

347 348 349
(input_file, output_dir, do_c, do_h, prefix, opts) = \
    parse_command_line("b", ["builtins"])

350
for o, a in opts:
351
    if o in ("-b", "--builtins"):
352
        do_builtins = True
353

354
c_comment = '''
355 356 357 358 359 360 361 362 363 364 365 366
/*
 * schema-defined QAPI visitor functions
 *
 * Copyright IBM, Corp. 2011
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
 *
 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
 * See the COPYING.LIB file in the top-level directory.
 *
 */
367 368
'''
h_comment = '''
369
/*
370
 * schema-defined QAPI visitor functions
371 372 373 374 375 376 377 378 379 380
 *
 * Copyright IBM, Corp. 2011
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
 *
 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
 * See the COPYING.LIB file in the top-level directory.
 *
 */
381 382 383 384 385
'''

(fdef, fdecl) = open_output(output_dir, do_c, do_h, prefix,
                            'qapi-visit.c', 'qapi-visit.h',
                            c_comment, h_comment)
386

387
fdef.write(mcgen('''
388
#include "qemu/osdep.h"
389 390 391
#include "qemu-common.h"
#include "%(prefix)sqapi-visit.h"
''',
392
                 prefix=prefix))
393

394
fdecl.write(mcgen('''
395
#include "qapi/visitor.h"
396
#include "qapi/qmp/qerror.h"
397
#include "%(prefix)sqapi-types.h"
398

399
''',
400
                  prefix=prefix))
401

402 403 404 405 406
schema = QAPISchema(input_file)
gen = QAPISchemaGenVisitVisitor()
schema.visit(gen)
fdef.write(gen.defn)
fdecl.write(gen.decl)
407

408
close_output(fdef, fdecl)