qapi.py 37.2 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 errno
17
import getopt
18
import os
19
import sys
20
import string
21

22
builtin_types = {
K
Kevin Wolf 已提交
23 24 25 26 27 28 29 30 31 32 33 34
    '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',
35
    'size':     'QTYPE_QINT',
K
Kevin Wolf 已提交
36 37
}

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
# 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',
]

62 63 64 65 66 67
enum_types = []
struct_types = []
union_types = []
events = []
all_names = {}

68 69 70 71
#
# Parsing the schema into expressions
#

72 73 74 75 76 77 78 79
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

80 81
class QAPISchemaError(Exception):
    def __init__(self, schema, msg):
82
        self.fname = schema.fname
83
        self.msg = msg
84 85 86 87
        self.col = 1
        self.line = schema.line
        for ch in schema.src[schema.line_pos:schema.pos]:
            if ch == '\t':
88 89 90
                self.col = (self.col + 7) % 8 + 1
            else:
                self.col += 1
91
        self.info = schema.incl_info
92 93

    def __str__(self):
94
        return error_path(self.info) + \
95
            "%s:%d:%d: %s" % (self.fname, self.line, self.col, self.msg)
96

97 98
class QAPIExprError(Exception):
    def __init__(self, expr_info, msg):
99
        self.info = expr_info
100 101 102
        self.msg = msg

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

106 107
class QAPISchema:

108
    def __init__(self, fp, previously_included = [], incl_info = None):
109
        abs_fname = os.path.abspath(fp.name)
110
        fname = fp.name
111 112 113
        self.fname = fname
        previously_included.append(abs_fname)
        self.incl_info = incl_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
            expr_info = {'file': fname, 'line': self.line,
                         'parent': self.incl_info}
126 127 128 129 130 131 132 133 134
            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)
135 136
                incl_abs_fname = os.path.join(os.path.dirname(abs_fname),
                                              include)
137 138 139 140
                # catch inclusion cycle
                inf = expr_info
                while inf:
                    if incl_abs_fname == os.path.abspath(inf['file']):
141 142
                        raise QAPIExprError(expr_info, "Inclusion loop for %s"
                                            % include)
143
                    inf = inf['parent']
B
Benoît Canet 已提交
144
                # skip multiple include of the same file
145
                if incl_abs_fname in previously_included:
B
Benoît Canet 已提交
146
                    continue
147
                try:
148
                    fobj = open(incl_abs_fname, 'r')
149
                except IOError, e:
150 151
                    raise QAPIExprError(expr_info,
                                        '%s: %s' % (e.strerror, include))
152 153
                exprs_include = QAPISchema(fobj, previously_included,
                                           expr_info)
154 155 156 157 158
                self.exprs.extend(exprs_include.exprs)
            else:
                expr_elem = {'expr': expr,
                             'info': expr_info}
                self.exprs.append(expr_elem)
159 160 161 162

    def accept(self):
        while True:
            self.tok = self.src[self.cursor]
163
            self.pos = self.cursor
164 165 166
            self.cursor += 1
            self.val = None

167
            if self.tok == '#':
168 169 170 171 172 173 174 175 176 177
                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':
178 179
                        raise QAPISchemaError(self,
                                              'Missing terminating "\'"')
180
                    if esc:
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
                        if ch == 'b':
                            string += '\b'
                        elif ch == 'f':
                            string += '\f'
                        elif ch == 'n':
                            string += '\n'
                        elif ch == 'r':
                            string += '\r'
                        elif ch == 't':
                            string += '\t'
                        elif ch == 'u':
                            value = 0
                            for x in range(0, 4):
                                ch = self.src[self.cursor]
                                self.cursor += 1
                                if ch not in "0123456789abcdefABCDEF":
                                    raise QAPISchemaError(self,
                                                          '\\u escape needs 4 '
                                                          'hex digits')
                                value = (value << 4) + int(ch, 16)
                            # If Python 2 and 3 didn't disagree so much on
                            # how to handle Unicode, then we could allow
                            # Unicode string defaults.  But most of QAPI is
                            # ASCII-only, so we aren't losing much for now.
                            if not value or value > 0x7f:
                                raise QAPISchemaError(self,
                                                      'For now, \\u escape '
                                                      'only supports non-zero '
                                                      'values up to \\u007f')
                            string += chr(value)
                        elif ch in "\\/'\"":
                            string += ch
                        else:
                            raise QAPISchemaError(self,
                                                  "Unknown escape \\%s" %ch)
216 217 218 219 220 221 222 223
                        esc = False
                    elif ch == "\\":
                        esc = True
                    elif ch == "'":
                        self.val = string
                        return
                    else:
                        string += ch
224 225 226 227 228 229 230 231 232 233 234 235
            elif self.src.startswith("true", self.pos):
                self.val = True
                self.cursor += 3
                return
            elif self.src.startswith("false", self.pos):
                self.val = False
                self.cursor += 4
                return
            elif self.src.startswith("null", self.pos):
                self.val = None
                self.cursor += 3
                return
236 237 238 239
            elif self.tok == '\n':
                if self.cursor == len(self.src):
                    self.tok = None
                    return
240 241
                self.line += 1
                self.line_pos = self.cursor
242 243
            elif not self.tok.isspace():
                raise QAPISchemaError(self, 'Stray "%s"' % self.tok)
244 245 246

    def get_members(self):
        expr = OrderedDict()
247 248 249 250 251 252
        if self.tok == '}':
            self.accept()
            return expr
        if self.tok != "'":
            raise QAPISchemaError(self, 'Expected string or "}"')
        while True:
253 254
            key = self.val
            self.accept()
255 256 257
            if self.tok != ':':
                raise QAPISchemaError(self, 'Expected ":"')
            self.accept()
258 259
            if key in expr:
                raise QAPISchemaError(self, 'Duplicate key "%s"' % key)
260
            expr[key] = self.get_expr(True)
261
            if self.tok == '}':
262
                self.accept()
263 264 265 266 267 268
                return expr
            if self.tok != ',':
                raise QAPISchemaError(self, 'Expected "," or "}"')
            self.accept()
            if self.tok != "'":
                raise QAPISchemaError(self, 'Expected string')
269 270 271

    def get_values(self):
        expr = []
272 273 274
        if self.tok == ']':
            self.accept()
            return expr
275 276 277
        if not self.tok in "{['tfn":
            raise QAPISchemaError(self, 'Expected "{", "[", "]", string, '
                                  'boolean or "null"')
278
        while True:
279
            expr.append(self.get_expr(True))
280
            if self.tok == ']':
281
                self.accept()
282 283 284 285
                return expr
            if self.tok != ',':
                raise QAPISchemaError(self, 'Expected "," or "]"')
            self.accept()
286

287 288 289
    def get_expr(self, nested):
        if self.tok != '{' and not nested:
            raise QAPISchemaError(self, 'Expected "{"')
290 291 292 293 294 295
        if self.tok == '{':
            self.accept()
            expr = self.get_members()
        elif self.tok == '[':
            self.accept()
            expr = self.get_values()
296
        elif self.tok in "'tfn":
297 298
            expr = self.val
            self.accept()
299 300
        else:
            raise QAPISchemaError(self, 'Expected "{", "[" or string')
301
        return expr
K
Kevin Wolf 已提交
302

303 304 305 306
#
# Semantic analysis of schema expressions
#

307 308 309 310 311 312
def find_base_fields(base):
    base_struct_define = find_struct(base)
    if not base_struct_define:
        return None
    return base_struct_define['data']

313 314
# Return the qtype of an alternate branch, or None on error.
def find_alternate_member_qtype(qapi_type):
E
Eric Blake 已提交
315 316 317 318 319 320
    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"
321 322
    elif find_union(qapi_type):
        return "QTYPE_QDICT"
E
Eric Blake 已提交
323 324
    return None

325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
# 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)

344 345
# FIXME should enforce "other than downstream extensions [...], all
# names should begin with a letter".
E
Eric Blake 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
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))

369 370 371
def add_name(name, info, meta, implicit = False):
    global all_names
    check_name(info, "'%s'" % meta, name)
372 373
    # FIXME should reject names that differ only in '_' vs. '.'
    # vs. '-', because they're liable to clash in generated C.
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
    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

def add_struct(definition, info):
    global struct_types
    name = definition['struct']
    add_name(name, info, 'struct')
    struct_types.append(definition)

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

def add_union(definition, info):
    global union_types
    name = definition['union']
    add_name(name, info, 'union')
    union_types.append(definition)

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

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

def find_enum(name):
    global enum_types
    for enum in enum_types:
        if enum['enum_name'] == name:
            return enum
    return None

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

425
def check_type(expr_info, source, value, allow_array = False,
426 427
               allow_dict = False, allow_optional = False,
               allow_star = False, allow_metas = []):
428 429 430 431 432 433
    global all_names
    orig_value = value

    if value is None:
        return

434
    if allow_star and value == '**':
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
        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):
451 452 453 454
        if value == '**':
            raise QAPIExprError(expr_info,
                                "%s uses '**' but did not request 'gen':false"
                                % source)
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
        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 已提交
473 474
        check_name(expr_info, "Member of %s" % source, key,
                   allow_optional=allow_optional)
475 476
        # Todo: allow dictionaries to represent default values of
        # an optional argument.
477
        check_type(expr_info, "Member '%s' of %s" % (key, source), arg,
478
                   allow_array=True, allow_star=allow_star,
479
                   allow_metas=['built-in', 'union', 'alternate', 'struct',
480
                                'enum'])
481

482 483 484 485 486 487 488 489 490 491 492 493 494 495
def check_member_clash(expr_info, base_name, data, source = ""):
    base = find_struct(base_name)
    assert base
    base_members = base['data']
    for key in data.keys():
        if key.startswith('*'):
            key = key[1:]
        if key in base_members or "*" + key in base_members:
            raise QAPIExprError(expr_info,
                                "Member name '%s'%s clashes with base '%s'"
                                % (key, source, base_name))
    if base.get('base'):
        check_member_clash(expr_info, base['base'], data, source)

496 497
def check_command(expr, expr_info):
    name = expr['command']
498 499
    allow_star = expr.has_key('gen')

500
    check_type(expr_info, "'data' for command '%s'" % name,
E
Eric Blake 已提交
501
               expr.get('data'), allow_dict=True, allow_optional=True,
502
               allow_metas=['union', 'struct'], allow_star=allow_star)
503 504 505
    returns_meta = ['union', 'struct']
    if name in returns_whitelist:
        returns_meta += ['built-in', 'alternate', 'enum']
506 507
    check_type(expr_info, "'returns' for command '%s'" % name,
               expr.get('returns'), allow_array=True, allow_dict=True,
508 509
               allow_optional=True, allow_metas=returns_meta,
               allow_star=allow_star)
510

W
Wenchao Xia 已提交
511
def check_event(expr, expr_info):
512 513 514 515 516 517
    global events
    name = expr['event']

    if name.upper() == 'MAX':
        raise QAPIExprError(expr_info, "Event name 'MAX' cannot be created")
    events.append(name)
518
    check_type(expr_info, "'data' for event '%s'" % name,
E
Eric Blake 已提交
519
               expr.get('data'), allow_dict=True, allow_optional=True,
520
               allow_metas=['union', 'struct'])
W
Wenchao Xia 已提交
521

522 523 524 525 526
def check_union(expr, expr_info):
    name = expr['union']
    base = expr.get('base')
    discriminator = expr.get('discriminator')
    members = expr['data']
E
Eric Blake 已提交
527
    values = { 'MAX': '(automatic)' }
528

529
    # If the object has a member 'base', its value must name a struct,
530 531 532 533 534 535
    # 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)
536

537 538 539 540
    # Two types of unions, determined by discriminator.

    # With no discriminator it is a simple union.
    if discriminator is None:
541
        enum_define = None
542
        allow_metas=['built-in', 'union', 'alternate', 'struct', 'enum']
E
Eric Blake 已提交
543 544
        if base is not None:
            raise QAPIExprError(expr_info,
545
                                "Simple union '%s' must not have a base"
E
Eric Blake 已提交
546
                                % name)
547 548 549

    # Else, it's a flat union.
    else:
E
Eric Blake 已提交
550 551
        # The object must have a string member 'base'.
        if not isinstance(base, str):
552
            raise QAPIExprError(expr_info,
E
Eric Blake 已提交
553
                                "Flat union '%s' must have a string base field"
554
                                % name)
E
Eric Blake 已提交
555 556 557
        base_fields = find_base_fields(base)
        if not base_fields:
            raise QAPIExprError(expr_info,
558
                                "Base '%s' is not a valid struct"
E
Eric Blake 已提交
559 560
                                % base)

E
Eric Blake 已提交
561
        # The value of member 'discriminator' must name a non-optional
562
        # member of the base struct.
E
Eric Blake 已提交
563 564
        check_name(expr_info, "Discriminator of flat union '%s'" % name,
                   discriminator)
565 566 567 568
        discriminator_type = base_fields.get(discriminator)
        if not discriminator_type:
            raise QAPIExprError(expr_info,
                                "Discriminator '%s' is not a member of base "
569
                                "struct '%s'"
570 571
                                % (discriminator, base))
        enum_define = find_enum(discriminator_type)
572
        allow_metas=['struct']
573 574 575 576 577
        # Do not allow string discriminator
        if not enum_define:
            raise QAPIExprError(expr_info,
                                "Discriminator '%s' must be of enumeration "
                                "type" % discriminator)
578 579 580

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

583
        # Each value must name a known type; furthermore, in flat unions,
584
        # branches must be a struct with no overlapping member names
585
        check_type(expr_info, "Member '%s' of union '%s'" % (key, name),
586
                   value, allow_array=not base, allow_metas=allow_metas)
587 588 589 590 591
        if base:
            branch_struct = find_struct(value)
            assert branch_struct
            check_member_clash(expr_info, base, branch_struct['data'],
                               " of branch '%s'" % key)
592

E
Eric Blake 已提交
593
        # If the discriminator names an enum type, then all members
594
        # of 'data' must also be members of the enum type.
E
Eric Blake 已提交
595 596 597 598 599 600 601 602 603
        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:
604
            c_key = camel_to_upper(key)
E
Eric Blake 已提交
605 606 607 608 609 610
            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

611
def check_alternate(expr, expr_info):
612
    name = expr['alternate']
613 614 615 616 617 618
    members = expr['data']
    values = { 'MAX': '(automatic)' }
    types_seen = {}

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

621
        # Check for conflicts in the generated enum
622
        c_key = camel_to_upper(key)
623 624
        if c_key in values:
            raise QAPIExprError(expr_info,
625 626
                                "Alternate '%s' member '%s' clashes with '%s'"
                                % (name, key, values[c_key]))
627
        values[c_key] = key
E
Eric Blake 已提交
628

629
        # Ensure alternates have no type conflicts.
630 631 632
        check_type(expr_info, "Member '%s' of alternate '%s'" % (key, name),
                   value,
                   allow_metas=['built-in', 'union', 'struct', 'enum'])
633
        qtype = find_alternate_member_qtype(value)
634
        assert qtype
635 636
        if qtype in types_seen:
            raise QAPIExprError(expr_info,
637
                                "Alternate '%s' member '%s' can't "
638 639 640
                                "be distinguished from member '%s'"
                                % (name, key, types_seen[qtype]))
        types_seen[qtype] = key
641

642 643 644 645 646 647 648 649 650
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 已提交
651 652
        check_name(expr_info, "Member of enum '%s'" %name, member,
                   enum_member=True)
653
        key = camel_to_upper(member)
654 655 656 657 658 659
        if key in values:
            raise QAPIExprError(expr_info,
                                "Enum '%s' member '%s' clashes with '%s'"
                                % (name, member, values[key]))
        values[key] = member

660
def check_struct(expr, expr_info):
661
    name = expr['struct']
662 663
    members = expr['data']

664
    check_type(expr_info, "'data' for struct '%s'" % name, members,
E
Eric Blake 已提交
665
               allow_dict=True, allow_optional=True)
666
    check_type(expr_info, "'base' for struct '%s'" % name, expr.get('base'),
667
               allow_metas=['struct'])
668 669
    if expr.get('base'):
        check_member_clash(expr_info, expr['base'], expr['data'])
670

671 672 673 674 675 676 677 678 679 680 681 682 683
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))
684 685 686 687
        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))
688 689 690 691 692 693
    for key in required:
        if not expr.has_key(key):
            raise QAPIExprError(info,
                                "Key '%s' is missing from %s '%s'"
                                % (key, meta, name))

694
def check_exprs(exprs):
695 696
    global all_names

697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
    # Learn the types and check for valid expression keys
    for builtin in builtin_types.keys():
        all_names[builtin] = 'built-in'
    for expr_elem in exprs:
        expr = expr_elem['expr']
        info = expr_elem['info']
        if expr.has_key('enum'):
            check_keys(expr_elem, 'enum', ['data'])
            add_enum(expr['enum'], info, expr['data'])
        elif expr.has_key('union'):
            check_keys(expr_elem, 'union', ['data'],
                       ['base', 'discriminator'])
            add_union(expr, info)
        elif expr.has_key('alternate'):
            check_keys(expr_elem, 'alternate', ['data'])
            add_name(expr['alternate'], info, 'alternate')
        elif expr.has_key('struct'):
            check_keys(expr_elem, 'struct', ['data'], ['base'])
            add_struct(expr, info)
        elif expr.has_key('command'):
            check_keys(expr_elem, 'command', [],
                       ['data', 'returns', 'gen', 'success-response'])
            add_name(expr['command'], info, 'command')
        elif expr.has_key('event'):
            check_keys(expr_elem, 'event', [], ['data'])
            add_name(expr['event'], info, 'event')
        else:
            raise QAPIExprError(expr_elem['info'],
                                "Expression is missing metatype")
726

727 728 729 730 731 732
    # Try again for hidden UnionKind enum
    for expr_elem in exprs:
        expr = expr_elem['expr']
        if expr.has_key('union'):
            if not discriminator_find_enum_define(expr):
                add_enum('%sKind' % expr['union'], expr_elem['info'],
733
                         implicit=True)
734 735 736 737 738 739 740 741
        elif expr.has_key('alternate'):
            add_enum('%sKind' % expr['alternate'], expr_elem['info'],
                     implicit=True)

    # Validate that exprs make sense
    for expr_elem in exprs:
        expr = expr_elem['expr']
        info = expr_elem['info']
742

743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764
        if expr.has_key('enum'):
            check_enum(expr, info)
        elif expr.has_key('union'):
            check_union(expr, info)
        elif expr.has_key('alternate'):
            check_alternate(expr, info)
        elif expr.has_key('struct'):
            check_struct(expr, info)
        elif expr.has_key('command'):
            check_command(expr, info)
        elif expr.has_key('event'):
            check_event(expr, info)
        else:
            assert False, 'unexpected meta type'

    return map(lambda expr_elem: expr_elem['expr'], exprs)

def parse_schema(fname):
    try:
        schema = QAPISchema(open(fname, "r"))
        return check_exprs(schema.exprs)
    except (QAPISchemaError, QAPIExprError), e:
765 766 767
        print >>sys.stderr, e
        exit(1)

768 769 770 771
#
# Code generation helpers
#

772
def parse_args(typeinfo):
E
Eric Blake 已提交
773
    if isinstance(typeinfo, str):
774 775 776 777
        struct = find_struct(typeinfo)
        assert struct != None
        typeinfo = struct['data']

778 779 780 781 782 783 784
    for member in typeinfo:
        argname = member
        argentry = typeinfo[member]
        optional = False
        if member.startswith('*'):
            argname = member[1:]
            optional = True
785 786 787
        # Todo: allow argentry to be OrderedDict, for providing the
        # value of an optional argument.
        yield (argname, argentry, optional)
788 789 790 791 792 793 794 795 796 797 798 799 800 801

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

802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
# ENUMName -> ENUM_NAME, EnumName1 -> ENUM_NAME1
# ENUM_NAME -> ENUM_NAME, ENUM_NAME1 -> ENUM_NAME1, ENUM_Name2 -> ENUM_NAME2
# ENUM24_Name -> ENUM24_NAME
def camel_to_upper(value):
    c_fun_str = c_name(value, False)
    if value.isupper():
        return c_fun_str

    new_name = ''
    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 += '_'
        new_name += c
    return new_name.lstrip('_').upper()

def c_enum_const(type_name, const_name):
    return camel_to_upper(type_name + '_' + const_name)

827
c_name_trans = string.maketrans('.-', '__')
828

829 830 831 832 833 834 835 836 837
# Map @name to a valid C identifier.
# If @protect, avoid returning certain ticklish identifiers (like
# C keywords) by prepending "q_".
#
# Used for converting 'name' from a 'name':'type' qapi definition
# into a generated struct member, as well as converting type names
# into substrings of a generated C function name.
# '__a.b_c' -> '__a_b_c', 'x-foo' -> 'x_foo'
# protect=True: 'int' -> 'q_int'; protect=False: 'int' -> 'int'
838
def c_name(name, protect=True):
B
Blue Swirl 已提交
839 840 841 842 843 844 845 846 847 848 849 850 851 852
    # 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'])
853 854 855 856 857 858 859 860 861 862
    # 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'])
863
    # namespace pollution:
864
    polluted_words = set(['unix', 'errno'])
865
    if protect and (name in c89_words | c99_words | c11_words | gcc_words | cpp_words | polluted_words):
B
Blue Swirl 已提交
866
        return "q_" + name
867
    return name.translate(c_name_trans)
868

869 870 871
# Map type @name to the C typedef name for the list form.
#
# ['Name'] -> 'NameList', ['x-Foo'] -> 'x_FooList', ['int'] -> 'intList'
872
def c_list_type(name):
873
    return type_name(name) + 'List'
874

875 876 877 878 879 880 881
# Map type @value to the C typedef form.
#
# Used for converting 'type' from a 'member':'type' qapi definition
# into the alphanumeric portion of the type for a generated C parameter,
# as well as generated C function names.  See c_type() for the rest of
# the conversion such as adding '*' on pointer types.
# 'int' -> 'int', '[x-Foo]' -> 'x_FooList', '__a.b_c' -> '__a_b_c'
E
Eric Blake 已提交
882 883 884
def type_name(value):
    if type(value) == list:
        return c_list_type(value[0])
885 886 887
    if value in builtin_types.keys():
        return value
    return c_name(value)
888

889
eatspace = '\033EATSPACE.'
E
Eric Blake 已提交
890
pointer_suffix = ' *' + eatspace
891

892 893 894 895
# Map type @name to its C type expression.
# If @is_param, const-qualify the string type.
#
# This function is used for computing the full C type of 'member':'name'.
896 897 898
# 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().
E
Eric Blake 已提交
899 900
def c_type(value, is_param=False):
    if value == 'str':
901
        if is_param:
E
Eric Blake 已提交
902 903
            return 'const char' + pointer_suffix
        return 'char' + pointer_suffix
904

E
Eric Blake 已提交
905
    elif value == 'int':
906
        return 'int64_t'
E
Eric Blake 已提交
907 908 909 910 911
    elif (value == 'int8' or value == 'int16' or value == 'int32' or
          value == 'int64' or value == 'uint8' or value == 'uint16' or
          value == 'uint32' or value == 'uint64'):
        return value + '_t'
    elif value == 'size':
L
Laszlo Ersek 已提交
912
        return 'uint64_t'
E
Eric Blake 已提交
913
    elif value == 'bool':
914
        return 'bool'
E
Eric Blake 已提交
915
    elif value == 'number':
916
        return 'double'
E
Eric Blake 已提交
917 918 919
    elif type(value) == list:
        return c_list_type(value[0]) + pointer_suffix
    elif is_enum(value):
920
        return c_name(value)
E
Eric Blake 已提交
921
    elif value == None:
922
        return 'void'
E
Eric Blake 已提交
923 924
    elif value in events:
        return camel_case(value) + 'Event' + pointer_suffix
925
    else:
E
Eric Blake 已提交
926 927
        # complex type name
        assert isinstance(value, str) and value != ""
928
        return c_name(value) + pointer_suffix
929

E
Eric Blake 已提交
930 931
def is_c_ptr(value):
    return c_type(value).endswith(pointer_suffix)
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948

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

949 950
# Generate @code with @kwds interpolated.
# Obey indent_level, and strip eatspace.
951
def cgen(code, **kwds):
952 953 954 955 956 957
    raw = code % kwds
    if indent_level:
        indent = genindent(indent_level)
        raw = re.subn("^.", indent + r'\g<0>', raw, 0, re.MULTILINE)
        raw = raw[0]
    return re.sub(re.escape(eatspace) + ' *', '', raw)
958 959

def mcgen(code, **kwds):
960 961 962
    if code[0] == '\n':
        code = code[1:]
    return cgen(code, **kwds)
963 964 965


def guardname(filename):
M
Markus Armbruster 已提交
966
    return c_name(filename, protect=False).upper()
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983

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))
984

985 986 987 988
#
# Common command line parsing
#

989 990 991 992
def parse_command_line(extra_options = "", extra_long_options = []):

    try:
        opts, args = getopt.gnu_getopt(sys.argv[1:],
993
                                       "chp:o:" + extra_options,
994
                                       ["source", "header", "prefix=",
995
                                        "output-dir="] + extra_long_options)
996
    except getopt.GetoptError, err:
997
        print >>sys.stderr, "%s: %s" % (sys.argv[0], str(err))
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
        sys.exit(1)

    output_dir = ""
    prefix = ""
    do_c = False
    do_h = False
    extra_opts = []

    for oa in opts:
        o, a = oa
        if o in ("-p", "--prefix"):
1009 1010 1011 1012 1013 1014
            match = re.match('([A-Za-z_.-][A-Za-z0-9_.-]*)?', a)
            if match.end() != len(a):
                print >>sys.stderr, \
                    "%s: 'funny character '%s' in argument of --prefix" \
                    % (sys.argv[0], a[match.end()])
                sys.exit(1)
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
            prefix = a
        elif o in ("-o", "--output-dir"):
            output_dir = a + "/"
        elif o in ("-c", "--source"):
            do_c = True
        elif o in ("-h", "--header"):
            do_h = True
        else:
            extra_opts.append(oa)

    if not do_c and not do_h:
        do_c = True
        do_h = True

1029 1030
    if len(args) != 1:
        print >>sys.stderr, "%s: need exactly one argument" % sys.argv[0]
1031
        sys.exit(1)
1032
    fname = args[0]
1033

1034
    return (fname, output_dir, do_c, do_h, prefix, extra_opts)
1035

1036 1037 1038 1039
#
# Generate output files with boilerplate
#

1040 1041
def open_output(output_dir, do_c, do_h, prefix, c_file, h_file,
                c_comment, h_comment):
M
Markus Armbruster 已提交
1042
    guard = guardname(prefix + h_file)
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
    c_file = output_dir + prefix + c_file
    h_file = output_dir + prefix + h_file

    try:
        os.makedirs(output_dir)
    except os.error, e:
        if e.errno != errno.EEXIST:
            raise

    def maybe_open(really, name, opt):
        if really:
            return open(name, opt)
        else:
            import StringIO
            return StringIO.StringIO()

    fdef = maybe_open(do_c, c_file, 'w')
    fdecl = maybe_open(do_h, h_file, 'w')

    fdef.write(mcgen('''
/* AUTOMATICALLY GENERATED, DO NOT MODIFY */
%(comment)s
''',
                     comment = c_comment))

    fdecl.write(mcgen('''
/* AUTOMATICALLY GENERATED, DO NOT MODIFY */
%(comment)s
#ifndef %(guard)s
#define %(guard)s

''',
M
Markus Armbruster 已提交
1075
                      comment = h_comment, guard = guard))
1076 1077 1078 1079 1080 1081 1082 1083 1084

    return (fdef, fdecl)

def close_output(fdef, fdecl):
    fdecl.write('''
#endif
''')
    fdecl.close()
    fdef.close()