qapi.py 31.9 KB
Newer Older
1 2 3 4
#
# QAPI helper library
#
# Copyright IBM, Corp. 2011
E
Eric Blake 已提交
5
# Copyright (c) 2013-2015 Red Hat Inc.
6 7 8
#
# Authors:
#  Anthony Liguori <aliguori@us.ibm.com>
9
#  Markus Armbruster <armbru@redhat.com>
10
#
11 12
# This work is licensed under the terms of the GNU GPL, version 2.
# See the COPYING file in the top-level directory.
13

14
import re
15
from ordereddict import OrderedDict
16
import os
17
import sys
18

19
builtin_types = {
K
Kevin Wolf 已提交
20 21 22 23 24 25 26 27 28 29 30 31
    'str':      'QTYPE_QSTRING',
    'int':      'QTYPE_QINT',
    'number':   'QTYPE_QFLOAT',
    'bool':     'QTYPE_QBOOL',
    'int8':     'QTYPE_QINT',
    'int16':    'QTYPE_QINT',
    'int32':    'QTYPE_QINT',
    'int64':    'QTYPE_QINT',
    'uint8':    'QTYPE_QINT',
    'uint16':   'QTYPE_QINT',
    'uint32':   'QTYPE_QINT',
    'uint64':   'QTYPE_QINT',
32
    'size':     'QTYPE_QINT',
K
Kevin Wolf 已提交
33 34
}

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
# Whitelist of commands allowed to return a non-dictionary
returns_whitelist = [
    # From QMP:
    'human-monitor-command',
    'query-migrate-cache-size',
    'query-tpm-models',
    'query-tpm-types',
    'ringbuf-read',

    # From QGA:
    'guest-file-open',
    'guest-fsfreeze-freeze',
    'guest-fsfreeze-freeze-list',
    'guest-fsfreeze-status',
    'guest-fsfreeze-thaw',
    'guest-get-time',
    'guest-set-vcpus',
    'guest-sync',
    'guest-sync-delimited',

    # From qapi-schema-test:
    'user_def_cmd3',
]

59 60 61 62 63 64
enum_types = []
struct_types = []
union_types = []
events = []
all_names = {}

65 66 67 68 69 70 71 72
def error_path(parent):
    res = ""
    while parent:
        res = ("In file included from %s:%d:\n" % (parent['file'],
                                                   parent['line'])) + res
        parent = parent['parent']
    return res

73 74
class QAPISchemaError(Exception):
    def __init__(self, schema, msg):
75
        self.input_file = schema.input_file
76
        self.msg = msg
77 78 79 80
        self.col = 1
        self.line = schema.line
        for ch in schema.src[schema.line_pos:schema.pos]:
            if ch == '\t':
81 82 83
                self.col = (self.col + 7) % 8 + 1
            else:
                self.col += 1
84
        self.info = schema.parent_info
85 86

    def __str__(self):
87 88
        return error_path(self.info) + \
            "%s:%d:%d: %s" % (self.input_file, self.line, self.col, self.msg)
89

90 91
class QAPIExprError(Exception):
    def __init__(self, expr_info, msg):
92
        self.info = expr_info
93 94 95
        self.msg = msg

    def __str__(self):
96 97
        return error_path(self.info['parent']) + \
            "%s:%d: %s" % (self.info['file'], self.info['line'], self.msg)
98

99 100
class QAPISchema:

B
Benoît Canet 已提交
101 102 103 104 105
    def __init__(self, fp, input_relname=None, include_hist=[],
                 previously_included=[], parent_info=None):
        """ include_hist is a stack used to detect inclusion cycles
            previously_included is a global state used to avoid multiple
                                inclusions of the same file"""
106 107 108 109 110 111
        input_fname = os.path.abspath(fp.name)
        if input_relname is None:
            input_relname = fp.name
        self.input_dir = os.path.dirname(input_fname)
        self.input_file = input_relname
        self.include_hist = include_hist + [(input_relname, input_fname)]
B
Benoît Canet 已提交
112
        previously_included.append(input_fname)
113
        self.parent_info = parent_info
114 115 116 117
        self.src = fp.read()
        if self.src == '' or self.src[-1] != '\n':
            self.src += '\n'
        self.cursor = 0
118 119
        self.line = 1
        self.line_pos = 0
120 121 122 123
        self.exprs = []
        self.accept()

        while self.tok != None:
124 125 126 127 128 129 130 131 132 133 134
            expr_info = {'file': input_relname, 'line': self.line, 'parent': self.parent_info}
            expr = self.get_expr(False)
            if isinstance(expr, dict) and "include" in expr:
                if len(expr) != 1:
                    raise QAPIExprError(expr_info, "Invalid 'include' directive")
                include = expr["include"]
                if not isinstance(include, str):
                    raise QAPIExprError(expr_info,
                                        'Expected a file name (string), got: %s'
                                        % include)
                include_path = os.path.join(self.input_dir, include)
135 136 137 138
                for elem in self.include_hist:
                    if include_path == elem[1]:
                        raise QAPIExprError(expr_info, "Inclusion loop for %s"
                                            % include)
B
Benoît Canet 已提交
139 140 141
                # skip multiple include of the same file
                if include_path in previously_included:
                    continue
142 143
                try:
                    fobj = open(include_path, 'r')
144
                except IOError, e:
145 146
                    raise QAPIExprError(expr_info,
                                        '%s: %s' % (e.strerror, include))
B
Benoît Canet 已提交
147 148
                exprs_include = QAPISchema(fobj, include, self.include_hist,
                                           previously_included, expr_info)
149 150 151 152 153
                self.exprs.extend(exprs_include.exprs)
            else:
                expr_elem = {'expr': expr,
                             'info': expr_info}
                self.exprs.append(expr_elem)
154 155 156 157

    def accept(self):
        while True:
            self.tok = self.src[self.cursor]
158
            self.pos = self.cursor
159 160 161
            self.cursor += 1
            self.val = None

162
            if self.tok == '#':
163 164 165 166 167 168 169 170 171 172
                self.cursor = self.src.find('\n', self.cursor)
            elif self.tok in ['{', '}', ':', ',', '[', ']']:
                return
            elif self.tok == "'":
                string = ''
                esc = False
                while True:
                    ch = self.src[self.cursor]
                    self.cursor += 1
                    if ch == '\n':
173 174
                        raise QAPISchemaError(self,
                                              'Missing terminating "\'"')
175 176 177 178 179 180 181 182 183 184
                    if esc:
                        string += ch
                        esc = False
                    elif ch == "\\":
                        esc = True
                    elif ch == "'":
                        self.val = string
                        return
                    else:
                        string += ch
185 186 187 188 189 190 191 192 193 194 195 196 197 198
            elif self.tok in "tfn":
                val = self.src[self.cursor - 1:]
                if val.startswith("true"):
                    self.val = True
                    self.cursor += 3
                    return
                elif val.startswith("false"):
                    self.val = False
                    self.cursor += 4
                    return
                elif val.startswith("null"):
                    self.val = None
                    self.cursor += 3
                    return
199 200 201 202
            elif self.tok == '\n':
                if self.cursor == len(self.src):
                    self.tok = None
                    return
203 204
                self.line += 1
                self.line_pos = self.cursor
205 206
            elif not self.tok.isspace():
                raise QAPISchemaError(self, 'Stray "%s"' % self.tok)
207 208 209

    def get_members(self):
        expr = OrderedDict()
210 211 212 213 214 215
        if self.tok == '}':
            self.accept()
            return expr
        if self.tok != "'":
            raise QAPISchemaError(self, 'Expected string or "}"')
        while True:
216 217
            key = self.val
            self.accept()
218 219 220
            if self.tok != ':':
                raise QAPISchemaError(self, 'Expected ":"')
            self.accept()
221 222
            if key in expr:
                raise QAPISchemaError(self, 'Duplicate key "%s"' % key)
223
            expr[key] = self.get_expr(True)
224
            if self.tok == '}':
225
                self.accept()
226 227 228 229 230 231
                return expr
            if self.tok != ',':
                raise QAPISchemaError(self, 'Expected "," or "}"')
            self.accept()
            if self.tok != "'":
                raise QAPISchemaError(self, 'Expected string')
232 233 234

    def get_values(self):
        expr = []
235 236 237
        if self.tok == ']':
            self.accept()
            return expr
238 239 240
        if not self.tok in "{['tfn":
            raise QAPISchemaError(self, 'Expected "{", "[", "]", string, '
                                  'boolean or "null"')
241
        while True:
242
            expr.append(self.get_expr(True))
243
            if self.tok == ']':
244
                self.accept()
245 246 247 248
                return expr
            if self.tok != ',':
                raise QAPISchemaError(self, 'Expected "," or "]"')
            self.accept()
249

250 251 252
    def get_expr(self, nested):
        if self.tok != '{' and not nested:
            raise QAPISchemaError(self, 'Expected "{"')
253 254 255 256 257 258
        if self.tok == '{':
            self.accept()
            expr = self.get_members()
        elif self.tok == '[':
            self.accept()
            expr = self.get_values()
259
        elif self.tok in "'tfn":
260 261
            expr = self.val
            self.accept()
262 263
        else:
            raise QAPISchemaError(self, 'Expected "{", "[" or string')
264
        return expr
K
Kevin Wolf 已提交
265

266 267 268 269 270 271
def find_base_fields(base):
    base_struct_define = find_struct(base)
    if not base_struct_define:
        return None
    return base_struct_define['data']

272 273
# Return the qtype of an alternate branch, or None on error.
def find_alternate_member_qtype(qapi_type):
E
Eric Blake 已提交
274 275 276 277 278 279
    if builtin_types.has_key(qapi_type):
        return builtin_types[qapi_type]
    elif find_struct(qapi_type):
        return "QTYPE_QDICT"
    elif find_enum(qapi_type):
        return "QTYPE_QSTRING"
280 281
    elif find_union(qapi_type):
        return "QTYPE_QDICT"
E
Eric Blake 已提交
282 283
    return None

284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
# Return the discriminator enum define if discriminator is specified as an
# enum type, otherwise return None.
def discriminator_find_enum_define(expr):
    base = expr.get('base')
    discriminator = expr.get('discriminator')

    if not (discriminator and base):
        return None

    base_fields = find_base_fields(base)
    if not base_fields:
        return None

    discriminator_type = base_fields.get(discriminator)
    if not discriminator_type:
        return None

    return find_enum(discriminator_type)

E
Eric Blake 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
valid_name = re.compile('^[a-zA-Z_][a-zA-Z0-9_.-]*$')
def check_name(expr_info, source, name, allow_optional = False,
               enum_member = False):
    global valid_name
    membername = name

    if not isinstance(name, str):
        raise QAPIExprError(expr_info,
                            "%s requires a string name" % source)
    if name.startswith('*'):
        membername = name[1:]
        if not allow_optional:
            raise QAPIExprError(expr_info,
                                "%s does not allow optional name '%s'"
                                % (source, name))
    # Enum members can start with a digit, because the generated C
    # code always prefixes it with the enum name
    if enum_member:
        membername = '_' + membername
    if not valid_name.match(membername):
        raise QAPIExprError(expr_info,
                            "%s uses invalid name '%s'" % (source, name))

326
def check_type(expr_info, source, value, allow_array = False,
327 328
               allow_dict = False, allow_optional = False,
               allow_star = False, allow_metas = []):
329 330 331 332 333 334
    global all_names
    orig_value = value

    if value is None:
        return

335
    if allow_star and value == '**':
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
        return

    # Check if array type for value is okay
    if isinstance(value, list):
        if not allow_array:
            raise QAPIExprError(expr_info,
                                "%s cannot be an array" % source)
        if len(value) != 1 or not isinstance(value[0], str):
            raise QAPIExprError(expr_info,
                                "%s: array type must contain single type name"
                                % source)
        value = value[0]
        orig_value = "array of %s" %value

    # Check if type name for value is okay
    if isinstance(value, str):
352 353 354 355
        if value == '**':
            raise QAPIExprError(expr_info,
                                "%s uses '**' but did not request 'gen':false"
                                % source)
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
        if not value in all_names:
            raise QAPIExprError(expr_info,
                                "%s uses unknown type '%s'"
                                % (source, orig_value))
        if not all_names[value] in allow_metas:
            raise QAPIExprError(expr_info,
                                "%s cannot use %s type '%s'"
                                % (source, all_names[value], orig_value))
        return

    # value is a dictionary, check that each member is okay
    if not isinstance(value, OrderedDict):
        raise QAPIExprError(expr_info,
                            "%s should be a dictionary" % source)
    if not allow_dict:
        raise QAPIExprError(expr_info,
                            "%s should be a type name" % source)
    for (key, arg) in value.items():
E
Eric Blake 已提交
374 375
        check_name(expr_info, "Member of %s" % source, key,
                   allow_optional=allow_optional)
376
        check_type(expr_info, "Member '%s' of %s" % (key, source), arg,
E
Eric Blake 已提交
377
                   allow_array=True, allow_dict=True, allow_optional=True,
378
                   allow_metas=['built-in', 'union', 'alternate', 'struct',
379
                                'enum'], allow_star=allow_star)
380 381 382

def check_command(expr, expr_info):
    name = expr['command']
383 384
    allow_star = expr.has_key('gen')

385
    check_type(expr_info, "'data' for command '%s'" % name,
E
Eric Blake 已提交
386
               expr.get('data'), allow_dict=True, allow_optional=True,
387
               allow_metas=['union', 'struct'], allow_star=allow_star)
388 389 390
    returns_meta = ['union', 'struct']
    if name in returns_whitelist:
        returns_meta += ['built-in', 'alternate', 'enum']
391 392
    check_type(expr_info, "'returns' for command '%s'" % name,
               expr.get('returns'), allow_array=True, allow_dict=True,
393 394
               allow_optional=True, allow_metas=returns_meta,
               allow_star=allow_star)
395

W
Wenchao Xia 已提交
396
def check_event(expr, expr_info):
397 398
    global events
    name = expr['event']
W
Wenchao Xia 已提交
399
    params = expr.get('data')
400 401 402 403

    if name.upper() == 'MAX':
        raise QAPIExprError(expr_info, "Event name 'MAX' cannot be created")
    events.append(name)
404
    check_type(expr_info, "'data' for event '%s'" % name,
E
Eric Blake 已提交
405
               expr.get('data'), allow_dict=True, allow_optional=True,
406
               allow_metas=['union', 'struct'])
W
Wenchao Xia 已提交
407 408 409 410 411
    if params:
        for argname, argentry, optional, structured in parse_args(params):
            if structured:
                raise QAPIExprError(expr_info,
                                    "Nested structure define in event is not "
W
Wenchao Xia 已提交
412
                                    "supported, event '%s', argname '%s'"
W
Wenchao Xia 已提交
413 414
                                    % (expr['event'], argname))

415 416 417 418 419
def check_union(expr, expr_info):
    name = expr['union']
    base = expr.get('base')
    discriminator = expr.get('discriminator')
    members = expr['data']
E
Eric Blake 已提交
420
    values = { 'MAX': '(automatic)' }
421

422 423 424 425 426 427 428
    # If the object has a member 'base', its value must name a complex type,
    # and there must be a discriminator.
    if base is not None:
        if discriminator is None:
            raise QAPIExprError(expr_info,
                                "Union '%s' requires a discriminator to go "
                                "along with base" %name)
429

430 431 432 433
    # Two types of unions, determined by discriminator.

    # With no discriminator it is a simple union.
    if discriminator is None:
434
        enum_define = None
435
        allow_metas=['built-in', 'union', 'alternate', 'struct', 'enum']
E
Eric Blake 已提交
436 437
        if base is not None:
            raise QAPIExprError(expr_info,
438
                                "Simple union '%s' must not have a base"
E
Eric Blake 已提交
439
                                % name)
440 441 442

    # Else, it's a flat union.
    else:
E
Eric Blake 已提交
443 444
        # The object must have a string member 'base'.
        if not isinstance(base, str):
445
            raise QAPIExprError(expr_info,
E
Eric Blake 已提交
446
                                "Flat union '%s' must have a string base field"
447
                                % name)
E
Eric Blake 已提交
448 449 450 451 452 453
        base_fields = find_base_fields(base)
        if not base_fields:
            raise QAPIExprError(expr_info,
                                "Base '%s' is not a valid type"
                                % base)

E
Eric Blake 已提交
454 455 456 457
        # The value of member 'discriminator' must name a non-optional
        # member of the base type.
        check_name(expr_info, "Discriminator of flat union '%s'" % name,
                   discriminator)
458 459 460 461 462 463 464
        discriminator_type = base_fields.get(discriminator)
        if not discriminator_type:
            raise QAPIExprError(expr_info,
                                "Discriminator '%s' is not a member of base "
                                "type '%s'"
                                % (discriminator, base))
        enum_define = find_enum(discriminator_type)
465
        allow_metas=['struct']
466 467 468 469 470
        # Do not allow string discriminator
        if not enum_define:
            raise QAPIExprError(expr_info,
                                "Discriminator '%s' must be of enumeration "
                                "type" % discriminator)
471 472 473

    # Check every branch
    for (key, value) in members.items():
E
Eric Blake 已提交
474 475
        check_name(expr_info, "Member of union '%s'" % name, key)

476 477 478 479 480
        # Each value must name a known type; furthermore, in flat unions,
        # branches must be a struct
        check_type(expr_info, "Member '%s' of union '%s'" % (key, name),
                   value, allow_array=True, allow_metas=allow_metas)

E
Eric Blake 已提交
481
        # If the discriminator names an enum type, then all members
482
        # of 'data' must also be members of the enum type.
E
Eric Blake 已提交
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
        if enum_define:
            if not key in enum_define['enum_values']:
                raise QAPIExprError(expr_info,
                                    "Discriminator value '%s' is not found in "
                                    "enum '%s'" %
                                    (key, enum_define["enum_name"]))

        # Otherwise, check for conflicts in the generated enum
        else:
            c_key = _generate_enum_string(key)
            if c_key in values:
                raise QAPIExprError(expr_info,
                                    "Union '%s' member '%s' clashes with '%s'"
                                    % (name, key, values[c_key]))
            values[c_key] = key

499
def check_alternate(expr, expr_info):
500
    name = expr['alternate']
501 502 503 504 505 506
    members = expr['data']
    values = { 'MAX': '(automatic)' }
    types_seen = {}

    # Check every branch
    for (key, value) in members.items():
E
Eric Blake 已提交
507 508
        check_name(expr_info, "Member of alternate '%s'" % name, key)

509 510 511 512
        # Check for conflicts in the generated enum
        c_key = _generate_enum_string(key)
        if c_key in values:
            raise QAPIExprError(expr_info,
513 514
                                "Alternate '%s' member '%s' clashes with '%s'"
                                % (name, key, values[c_key]))
515
        values[c_key] = key
E
Eric Blake 已提交
516

517
        # Ensure alternates have no type conflicts.
518 519 520
        check_type(expr_info, "Member '%s' of alternate '%s'" % (key, name),
                   value,
                   allow_metas=['built-in', 'union', 'struct', 'enum'])
521
        qtype = find_alternate_member_qtype(value)
522
        assert qtype
523 524
        if qtype in types_seen:
            raise QAPIExprError(expr_info,
525
                                "Alternate '%s' member '%s' can't "
526 527 528
                                "be distinguished from member '%s'"
                                % (name, key, types_seen[qtype]))
        types_seen[qtype] = key
529

530 531 532 533 534 535 536 537 538
def check_enum(expr, expr_info):
    name = expr['enum']
    members = expr.get('data')
    values = { 'MAX': '(automatic)' }

    if not isinstance(members, list):
        raise QAPIExprError(expr_info,
                            "Enum '%s' requires an array for 'data'" % name)
    for member in members:
E
Eric Blake 已提交
539 540
        check_name(expr_info, "Member of enum '%s'" %name, member,
                   enum_member=True)
541 542 543 544 545 546 547
        key = _generate_enum_string(member)
        if key in values:
            raise QAPIExprError(expr_info,
                                "Enum '%s' member '%s' clashes with '%s'"
                                % (name, member, values[key]))
        values[key] = member

548 549 550 551 552
def check_struct(expr, expr_info):
    name = expr['type']
    members = expr['data']

    check_type(expr_info, "'data' for type '%s'" % name, members,
E
Eric Blake 已提交
553
               allow_dict=True, allow_optional=True)
554 555 556
    check_type(expr_info, "'base' for type '%s'" % name, expr.get('base'),
               allow_metas=['struct'])

557 558 559
def check_exprs(schema):
    for expr_elem in schema.exprs:
        expr = expr_elem['expr']
560 561 562 563 564
        info = expr_elem['info']

        if expr.has_key('enum'):
            check_enum(expr, info)
        elif expr.has_key('union'):
565 566 567
            check_union(expr, info)
        elif expr.has_key('alternate'):
            check_alternate(expr, info)
568 569 570 571
        elif expr.has_key('type'):
            check_struct(expr, info)
        elif expr.has_key('command'):
            check_command(expr, info)
572 573
        elif expr.has_key('event'):
            check_event(expr, info)
574 575
        else:
            assert False, 'unexpected meta type'
576

577 578 579 580 581 582 583 584 585 586 587 588 589
def check_keys(expr_elem, meta, required, optional=[]):
    expr = expr_elem['expr']
    info = expr_elem['info']
    name = expr[meta]
    if not isinstance(name, str):
        raise QAPIExprError(info,
                            "'%s' key must have a string value" % meta)
    required = required + [ meta ]
    for (key, value) in expr.items():
        if not key in required and not key in optional:
            raise QAPIExprError(info,
                                "Unknown key '%s' in %s '%s'"
                                % (key, meta, name))
590 591 592 593
        if (key == 'gen' or key == 'success-response') and value != False:
            raise QAPIExprError(info,
                                "'%s' of %s '%s' should only use false value"
                                % (key, meta, name))
594 595 596 597 598 599 600
    for key in required:
        if not expr.has_key(key):
            raise QAPIExprError(info,
                                "Key '%s' is missing from %s '%s'"
                                % (key, meta, name))


601
def parse_schema(input_file):
602 603 604
    global all_names
    exprs = []

605
    # First pass: read entire file into memory
606
    try:
607
        schema = QAPISchema(open(input_file, "r"))
608
    except (QAPISchemaError, QAPIExprError), e:
609 610 611
        print >>sys.stderr, e
        exit(1)

612
    try:
613 614
        # Next pass: learn the types and check for valid expression keys. At
        # this point, top-level 'include' has already been flattened.
615 616
        for builtin in builtin_types.keys():
            all_names[builtin] = 'built-in'
617 618
        for expr_elem in schema.exprs:
            expr = expr_elem['expr']
619
            info = expr_elem['info']
620
            if expr.has_key('enum'):
621
                check_keys(expr_elem, 'enum', ['data'])
622
                add_enum(expr['enum'], info, expr['data'])
623
            elif expr.has_key('union'):
624 625
                check_keys(expr_elem, 'union', ['data'],
                           ['base', 'discriminator'])
626
                add_union(expr, info)
627 628
            elif expr.has_key('alternate'):
                check_keys(expr_elem, 'alternate', ['data'])
629
                add_name(expr['alternate'], info, 'alternate')
630
            elif expr.has_key('type'):
631
                check_keys(expr_elem, 'type', ['data'], ['base'])
632
                add_struct(expr, info)
633 634 635
            elif expr.has_key('command'):
                check_keys(expr_elem, 'command', [],
                           ['data', 'returns', 'gen', 'success-response'])
636
                add_name(expr['command'], info, 'command')
637 638
            elif expr.has_key('event'):
                check_keys(expr_elem, 'event', [], ['data'])
639
                add_name(expr['event'], info, 'event')
640 641 642
            else:
                raise QAPIExprError(expr_elem['info'],
                                    "Expression is missing metatype")
643 644 645 646 647 648 649
            exprs.append(expr)

        # Try again for hidden UnionKind enum
        for expr_elem in schema.exprs:
            expr = expr_elem['expr']
            if expr.has_key('union'):
                if not discriminator_find_enum_define(expr):
650 651
                    add_enum('%sKind' % expr['union'], expr_elem['info'],
                             implicit=True)
652
            elif expr.has_key('alternate'):
653 654
                add_enum('%sKind' % expr['alternate'], expr_elem['info'],
                         implicit=True)
655 656

        # Final pass - validate that exprs make sense
657 658 659 660 661
        check_exprs(schema)
    except QAPIExprError, e:
        print >>sys.stderr, e
        exit(1)

662 663 664
    return exprs

def parse_args(typeinfo):
E
Eric Blake 已提交
665
    if isinstance(typeinfo, str):
666 667 668 669
        struct = find_struct(typeinfo)
        assert struct != None
        typeinfo = struct['data']

670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
    for member in typeinfo:
        argname = member
        argentry = typeinfo[member]
        optional = False
        structured = False
        if member.startswith('*'):
            argname = member[1:]
            optional = True
        if isinstance(argentry, OrderedDict):
            structured = True
        yield (argname, argentry, optional, structured)

def de_camel_case(name):
    new_name = ''
    for ch in name:
        if ch.isupper() and new_name:
            new_name += '_'
        if ch == '-':
            new_name += '_'
        else:
            new_name += ch.lower()
    return new_name

def camel_case(name):
    new_name = ''
    first = True
    for ch in name:
        if ch in ['_', '-']:
            first = True
        elif first:
            new_name += ch.upper()
            first = False
        else:
            new_name += ch.lower()
    return new_name

706
def c_var(name, protect=True):
B
Blue Swirl 已提交
707 708 709 710 711 712 713 714 715 716 717 718 719 720
    # ANSI X3J11/88-090, 3.1.1
    c89_words = set(['auto', 'break', 'case', 'char', 'const', 'continue',
                     'default', 'do', 'double', 'else', 'enum', 'extern', 'float',
                     'for', 'goto', 'if', 'int', 'long', 'register', 'return',
                     'short', 'signed', 'sizeof', 'static', 'struct', 'switch',
                     'typedef', 'union', 'unsigned', 'void', 'volatile', 'while'])
    # ISO/IEC 9899:1999, 6.4.1
    c99_words = set(['inline', 'restrict', '_Bool', '_Complex', '_Imaginary'])
    # ISO/IEC 9899:2011, 6.4.1
    c11_words = set(['_Alignas', '_Alignof', '_Atomic', '_Generic', '_Noreturn',
                     '_Static_assert', '_Thread_local'])
    # GCC http://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/C-Extensions.html
    # excluding _.*
    gcc_words = set(['asm', 'typeof'])
721 722 723 724 725 726 727 728 729 730
    # C++ ISO/IEC 14882:2003 2.11
    cpp_words = set(['bool', 'catch', 'class', 'const_cast', 'delete',
                     'dynamic_cast', 'explicit', 'false', 'friend', 'mutable',
                     'namespace', 'new', 'operator', 'private', 'protected',
                     'public', 'reinterpret_cast', 'static_cast', 'template',
                     'this', 'throw', 'true', 'try', 'typeid', 'typename',
                     'using', 'virtual', 'wchar_t',
                     # alternative representations
                     'and', 'and_eq', 'bitand', 'bitor', 'compl', 'not',
                     'not_eq', 'or', 'or_eq', 'xor', 'xor_eq'])
731
    # namespace pollution:
732
    polluted_words = set(['unix', 'errno'])
733
    if protect and (name in c89_words | c99_words | c11_words | gcc_words | cpp_words | polluted_words):
B
Blue Swirl 已提交
734
        return "q_" + name
735 736
    return name.replace('-', '_').lstrip("*")

737 738
def c_fun(name, protect=True):
    return c_var(name, protect).replace('.', '_')
739 740 741 742 743 744 745 746 747

def c_list_type(name):
    return '%sList' % name

def type_name(name):
    if type(name) == list:
        return c_list_type(name[0])
    return name

E
Eric Blake 已提交
748
def add_name(name, info, meta, implicit = False, source = None):
749
    global all_names
E
Eric Blake 已提交
750 751 752
    if not source:
        source = "'%s'" % meta
    check_name(info, source, name)
753 754 755 756 757 758 759 760 761
    if name in all_names:
        raise QAPIExprError(info,
                            "%s '%s' is already defined"
                            % (all_names[name], name))
    if not implicit and name[-4:] == 'Kind':
        raise QAPIExprError(info,
                            "%s '%s' should not end in 'Kind'"
                            % (meta, name))
    all_names[name] = meta
762

763
def add_struct(definition, info):
764
    global struct_types
765
    name = definition['type']
E
Eric Blake 已提交
766
    add_name(name, info, 'struct', source="'type'")
767 768 769 770 771 772 773 774
    struct_types.append(definition)

def find_struct(name):
    global struct_types
    for struct in struct_types:
        if struct['type'] == name:
            return struct
    return None
775

776
def add_union(definition, info):
777
    global union_types
778 779
    name = definition['union']
    add_name(name, info, 'union')
780
    union_types.append(definition)
781 782 783 784 785 786 787 788

def find_union(name):
    global union_types
    for union in union_types:
        if union['union'] == name:
            return union
    return None

789
def add_enum(name, info, enum_values = None, implicit = False):
790
    global enum_types
791
    add_name(name, info, 'enum', implicit)
792
    enum_types.append({"enum_name": name, "enum_values": enum_values})
793

794
def find_enum(name):
795
    global enum_types
796 797 798 799 800 801 802
    for enum in enum_types:
        if enum['enum_name'] == name:
            return enum
    return None

def is_enum(name):
    return find_enum(name) != None
803

804 805 806 807 808
eatspace = '\033EATSPACE.'

# A special suffix is added in c_type() for pointer types, and it's
# stripped in mcgen(). So please notice this when you check the return
# value of c_type() outside mcgen().
809
def c_type(name, is_param=False):
810
    if name == 'str':
811
        if is_param:
812 813 814
            return 'const char *' + eatspace
        return 'char *' + eatspace

815 816
    elif name == 'int':
        return 'int64_t'
817 818 819 820
    elif (name == 'int8' or name == 'int16' or name == 'int32' or
          name == 'int64' or name == 'uint8' or name == 'uint16' or
          name == 'uint32' or name == 'uint64'):
        return name + '_t'
L
Laszlo Ersek 已提交
821 822
    elif name == 'size':
        return 'uint64_t'
823 824 825 826 827
    elif name == 'bool':
        return 'bool'
    elif name == 'number':
        return 'double'
    elif type(name) == list:
828
        return '%s *%s' % (c_list_type(name[0]), eatspace)
829 830 831 832
    elif is_enum(name):
        return name
    elif name == None or len(name) == 0:
        return 'void'
833
    elif name in events:
834
        return '%sEvent *%s' % (camel_case(name), eatspace)
835
    else:
836 837 838 839 840
        return '%s *%s' % (name, eatspace)

def is_c_ptr(name):
    suffix = "*" + eatspace
    return c_type(name).endswith(suffix)
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864

def genindent(count):
    ret = ""
    for i in range(count):
        ret += " "
    return ret

indent_level = 0

def push_indent(indent_amount=4):
    global indent_level
    indent_level += indent_amount

def pop_indent(indent_amount=4):
    global indent_level
    indent_level -= indent_amount

def cgen(code, **kwds):
    indent = genindent(indent_level)
    lines = code.split('\n')
    lines = map(lambda x: indent + x, lines)
    return '\n'.join(lines) % kwds + '\n'

def mcgen(code, **kwds):
865 866
    raw = cgen('\n'.join(code.split('\n')[1:-1]), **kwds)
    return re.sub(re.escape(eatspace) + ' *', '', raw)
867 868 869 870 871

def basename(filename):
    return filename.split("/")[-1]

def guardname(filename):
M
Michael Roth 已提交
872 873 874 875
    guard = basename(filename).rsplit(".", 1)[0]
    for substr in [".", " ", "-"]:
        guard = guard.replace(substr, "_")
    return guard.upper() + '_H'
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892

def guardstart(name):
    return mcgen('''

#ifndef %(name)s
#define %(name)s

''',
                 name=guardname(name))

def guardend(name):
    return mcgen('''

#endif /* %(name)s */

''',
                 name=guardname(name))
893

894 895 896 897 898
# ENUMName -> ENUM_NAME, EnumName1 -> ENUM_NAME1
# ENUM_NAME -> ENUM_NAME, ENUM_NAME1 -> ENUM_NAME1, ENUM_Name2 -> ENUM_NAME2
# ENUM24_Name -> ENUM24_NAME
def _generate_enum_string(value):
    c_fun_str = c_fun(value, False)
899
    if value.isupper():
900 901
        return c_fun_str

902
    new_name = ''
903 904 905 906 907 908 909 910 911 912
    l = len(c_fun_str)
    for i in range(l):
        c = c_fun_str[i]
        # When c is upper and no "_" appears before, do more checks
        if c.isupper() and (i > 0) and c_fun_str[i - 1] != "_":
            # Case 1: next string is lower
            # Case 2: previous string is digit
            if (i < (l - 1) and c_fun_str[i + 1].islower()) or \
            c_fun_str[i - 1].isdigit():
                new_name += '_'
913 914
        new_name += c
    return new_name.lstrip('_').upper()
915 916

def generate_enum_full_value(enum_name, enum_value):
917 918
    abbrev_string = _generate_enum_string(enum_name)
    value_string = _generate_enum_string(enum_value)
919
    return "%s_%s" % (abbrev_string, value_string)