1 # -*- coding: utf-8 -*-
3 # QAPI schema internal representation
5 # Copyright (c) 2015-2019 Red Hat Inc.
8 # Markus Armbruster <armbru@redhat.com>
9 # Eric Blake <eblake@redhat.com>
10 # Marc-André Lureau <marcandre.lureau@redhat.com>
12 # This work is licensed under the terms of the GNU GPL, version 2.
13 # See the COPYING file in the top-level directory.
15 # TODO catching name collisions in generated code would be nice
17 from collections
import OrderedDict
20 from typing
import List
, Optional
30 from .error
import QAPIError
, QAPISemError
, QAPISourceError
31 from .expr
import check_exprs
32 from .parser
import QAPIExpression
, QAPISchemaParser
35 class QAPISchemaIfCond
:
36 def __init__(self
, ifcond
=None):
40 return cgen_ifcond(self
.ifcond
)
43 return gen_if(self
._cgen
())
46 return gen_endif(self
._cgen
())
49 return docgen_ifcond(self
.ifcond
)
52 return bool(self
.ifcond
)
55 class QAPISchemaEntity
:
56 meta
: Optional
[str] = None
58 def __init__(self
, name
: str, info
, doc
, ifcond
=None, features
=None):
59 assert name
is None or isinstance(name
, str)
60 for f
in features
or []:
61 assert isinstance(f
, QAPISchemaFeature
)
62 f
.set_defined_in(name
)
65 # For explicitly defined entities, info points to the (explicit)
66 # definition. For builtins (and their arrays), info is None.
67 # For implicitly defined entities, info points to a place that
68 # triggered the implicit definition (there may be more than one
72 self
._ifcond
= ifcond
or QAPISchemaIfCond()
73 self
.features
= features
or []
77 return c_name(self
.name
)
79 def check(self
, schema
):
80 assert not self
._checked
82 for f
in self
.features
:
83 f
.check_clash(self
.info
, seen
)
86 def connect_doc(self
, doc
=None):
89 for f
in self
.features
:
90 doc
.connect_feature(f
)
96 def _set_module(self
, schema
, info
):
98 fname
= info
.fname
if info
else QAPISchemaModule
.BUILTIN_MODULE_NAME
99 self
._module
= schema
.module_by_fname(fname
)
100 self
._module
.add_entity(self
)
102 def set_module(self
, schema
):
103 self
._set
_module
(schema
, self
.info
)
110 def is_implicit(self
):
113 def visit(self
, visitor
):
118 return "%s '%s'" % (self
.meta
, self
.name
)
121 class QAPISchemaVisitor
:
122 def visit_begin(self
, schema
):
128 def visit_module(self
, name
):
131 def visit_needed(self
, entity
):
132 # Default to visiting everything
135 def visit_include(self
, name
, info
):
138 def visit_builtin_type(self
, name
, info
, json_type
):
141 def visit_enum_type(self
, name
, info
, ifcond
, features
, members
, prefix
):
144 def visit_array_type(self
, name
, info
, ifcond
, element_type
):
147 def visit_object_type(self
, name
, info
, ifcond
, features
,
148 base
, members
, variants
):
151 def visit_object_type_flat(self
, name
, info
, ifcond
, features
,
155 def visit_alternate_type(self
, name
, info
, ifcond
, features
, variants
):
158 def visit_command(self
, name
, info
, ifcond
, features
,
159 arg_type
, ret_type
, gen
, success_response
, boxed
,
160 allow_oob
, allow_preconfig
, coroutine
):
163 def visit_event(self
, name
, info
, ifcond
, features
, arg_type
, boxed
):
167 class QAPISchemaModule
:
169 BUILTIN_MODULE_NAME
= './builtin'
171 def __init__(self
, name
):
173 self
._entity
_list
= []
176 def is_system_module(name
: str) -> bool:
178 System modules are internally defined modules.
180 Their names start with the "./" prefix.
182 return name
.startswith('./')
185 def is_user_module(cls
, name
: str) -> bool:
187 User modules are those defined by the user in qapi JSON files.
189 They do not start with the "./" prefix.
191 return not cls
.is_system_module(name
)
194 def is_builtin_module(cls
, name
: str) -> bool:
196 The built-in module is a single System module for the built-in types.
198 It is always "./builtin".
200 return name
== cls
.BUILTIN_MODULE_NAME
202 def add_entity(self
, ent
):
203 self
._entity
_list
.append(ent
)
205 def visit(self
, visitor
):
206 visitor
.visit_module(self
.name
)
207 for entity
in self
._entity
_list
:
208 if visitor
.visit_needed(entity
):
209 entity
.visit(visitor
)
212 class QAPISchemaInclude(QAPISchemaEntity
):
213 def __init__(self
, sub_module
, info
):
214 super().__init
__(None, info
, None)
215 self
._sub
_module
= sub_module
217 def visit(self
, visitor
):
218 super().visit(visitor
)
219 visitor
.visit_include(self
._sub
_module
.name
, self
.info
)
222 class QAPISchemaType(QAPISchemaEntity
):
223 # Return the C type for common use.
224 # For the types we commonly box, this is a pointer type.
228 # Return the C type to be used in a parameter list.
229 def c_param_type(self
):
232 # Return the C type to be used where we suppress boxing.
233 def c_unboxed_type(self
):
239 def alternate_qtype(self
):
241 'null': 'QTYPE_QNULL',
242 'string': 'QTYPE_QSTRING',
243 'number': 'QTYPE_QNUM',
245 'boolean': 'QTYPE_QBOOL',
246 'array': 'QTYPE_QLIST',
247 'object': 'QTYPE_QDICT'
249 return json2qtype
.get(self
.json_type())
252 if self
.is_implicit():
256 def need_has_if_optional(self
):
257 # When FOO is a pointer, has_FOO == !!FOO, i.e. has_FOO is redundant.
258 # Except for arrays; see QAPISchemaArrayType.need_has_if_optional().
259 return not self
.c_type().endswith(POINTER_SUFFIX
)
261 def check(self
, schema
):
262 QAPISchemaEntity
.check(self
, schema
)
263 for feat
in self
.features
:
264 if feat
.is_special():
267 f
"feature '{feat.name}' is not supported for types")
271 return "%s type '%s'" % (self
.meta
, self
.name
)
274 class QAPISchemaBuiltinType(QAPISchemaType
):
277 def __init__(self
, name
, json_type
, c_type
):
278 super().__init
__(name
, None, None)
279 assert not c_type
or isinstance(c_type
, str)
280 assert json_type
in ('string', 'number', 'int', 'boolean', 'null',
282 self
._json
_type
_name
= json_type
283 self
._c
_type
_name
= c_type
289 return self
._c
_type
_name
291 def c_param_type(self
):
292 if self
.name
== 'str':
293 return 'const ' + self
._c
_type
_name
294 return self
._c
_type
_name
297 return self
._json
_type
_name
300 return self
.json_type()
302 def visit(self
, visitor
):
303 super().visit(visitor
)
304 visitor
.visit_builtin_type(self
.name
, self
.info
, self
.json_type())
307 class QAPISchemaEnumType(QAPISchemaType
):
310 def __init__(self
, name
, info
, doc
, ifcond
, features
, members
, prefix
):
311 super().__init
__(name
, info
, doc
, ifcond
, features
)
313 assert isinstance(m
, QAPISchemaEnumMember
)
314 m
.set_defined_in(name
)
315 assert prefix
is None or isinstance(prefix
, str)
316 self
.members
= members
319 def check(self
, schema
):
320 super().check(schema
)
322 for m
in self
.members
:
323 m
.check_clash(self
.info
, seen
)
325 def connect_doc(self
, doc
=None):
326 super().connect_doc(doc
)
327 doc
= doc
or self
.doc
328 for m
in self
.members
:
331 def is_implicit(self
):
332 # See QAPISchema._def_predefineds()
333 return self
.name
== 'QType'
336 return c_name(self
.name
)
338 def member_names(self
):
339 return [m
.name
for m
in self
.members
]
344 def visit(self
, visitor
):
345 super().visit(visitor
)
346 visitor
.visit_enum_type(
347 self
.name
, self
.info
, self
.ifcond
, self
.features
,
348 self
.members
, self
.prefix
)
351 class QAPISchemaArrayType(QAPISchemaType
):
354 def __init__(self
, name
, info
, element_type
):
355 super().__init
__(name
, info
, None)
356 assert isinstance(element_type
, str)
357 self
._element
_type
_name
= element_type
358 self
.element_type
= None
360 def need_has_if_optional(self
):
361 # When FOO is an array, we still need has_FOO to distinguish
362 # absent (!has_FOO) from present and empty (has_FOO && !FOO).
365 def check(self
, schema
):
366 super().check(schema
)
367 self
.element_type
= schema
.resolve_type(
368 self
._element
_type
_name
, self
.info
,
369 self
.info
and self
.info
.defn_meta
)
370 assert not isinstance(self
.element_type
, QAPISchemaArrayType
)
372 def set_module(self
, schema
):
373 self
._set
_module
(schema
, self
.element_type
.info
)
378 return self
.element_type
.ifcond
380 def is_implicit(self
):
384 return c_name(self
.name
) + POINTER_SUFFIX
390 elt_doc_type
= self
.element_type
.doc_type()
393 return 'array of ' + elt_doc_type
395 def visit(self
, visitor
):
396 super().visit(visitor
)
397 visitor
.visit_array_type(self
.name
, self
.info
, self
.ifcond
,
402 return "%s type ['%s']" % (self
.meta
, self
._element
_type
_name
)
405 class QAPISchemaObjectType(QAPISchemaType
):
406 def __init__(self
, name
, info
, doc
, ifcond
, features
,
407 base
, local_members
, variants
):
408 # struct has local_members, optional base, and no variants
409 # union has base, variants, and no local_members
410 super().__init
__(name
, info
, doc
, ifcond
, features
)
411 self
.meta
= 'union' if variants
else 'struct'
412 assert base
is None or isinstance(base
, str)
413 for m
in local_members
:
414 assert isinstance(m
, QAPISchemaObjectTypeMember
)
415 m
.set_defined_in(name
)
416 if variants
is not None:
417 assert isinstance(variants
, QAPISchemaVariants
)
418 variants
.set_defined_in(name
)
419 self
._base
_name
= base
421 self
.local_members
= local_members
422 self
.variants
= variants
425 def check(self
, schema
):
426 # This calls another type T's .check() exactly when the C
427 # struct emitted by gen_object() contains that T's C struct
428 # (pointers don't count).
429 if self
.members
is not None:
430 # A previous .check() completed: nothing to do
433 # Recursed: C struct contains itself
434 raise QAPISemError(self
.info
,
435 "object %s contains itself" % self
.name
)
437 super().check(schema
)
438 assert self
._checked
and self
.members
is None
442 self
.base
= schema
.resolve_type(self
._base
_name
, self
.info
,
444 if (not isinstance(self
.base
, QAPISchemaObjectType
)
445 or self
.base
.variants
):
448 "'base' requires a struct type, %s isn't"
449 % self
.base
.describe())
450 self
.base
.check(schema
)
451 self
.base
.check_clash(self
.info
, seen
)
452 for m
in self
.local_members
:
454 m
.check_clash(self
.info
, seen
)
455 members
= seen
.values()
458 self
.variants
.check(schema
, seen
)
459 self
.variants
.check_clash(self
.info
, seen
)
461 self
.members
= members
# mark completed
463 # Check that the members of this type do not cause duplicate JSON members,
464 # and update seen to track the members seen so far. Report any errors
465 # on behalf of info, which is not necessarily self.info
466 def check_clash(self
, info
, seen
):
468 assert not self
.variants
# not implemented
469 for m
in self
.members
:
470 m
.check_clash(info
, seen
)
472 def connect_doc(self
, doc
=None):
473 super().connect_doc(doc
)
474 doc
= doc
or self
.doc
475 if self
.base
and self
.base
.is_implicit():
476 self
.base
.connect_doc(doc
)
477 for m
in self
.local_members
:
480 def is_implicit(self
):
481 # See QAPISchema._make_implicit_object_type(), as well as
483 return self
.name
.startswith('q_')
486 assert self
.members
is not None
487 return not self
.members
and not self
.variants
490 assert self
.name
!= 'q_empty'
491 return super().c_name()
494 assert not self
.is_implicit()
495 return c_name(self
.name
) + POINTER_SUFFIX
497 def c_unboxed_type(self
):
498 return c_name(self
.name
)
503 def visit(self
, visitor
):
504 super().visit(visitor
)
505 visitor
.visit_object_type(
506 self
.name
, self
.info
, self
.ifcond
, self
.features
,
507 self
.base
, self
.local_members
, self
.variants
)
508 visitor
.visit_object_type_flat(
509 self
.name
, self
.info
, self
.ifcond
, self
.features
,
510 self
.members
, self
.variants
)
513 class QAPISchemaAlternateType(QAPISchemaType
):
516 def __init__(self
, name
, info
, doc
, ifcond
, features
, variants
):
517 super().__init
__(name
, info
, doc
, ifcond
, features
)
518 assert isinstance(variants
, QAPISchemaVariants
)
519 assert variants
.tag_member
520 variants
.set_defined_in(name
)
521 variants
.tag_member
.set_defined_in(self
.name
)
522 self
.variants
= variants
524 def check(self
, schema
):
525 super().check(schema
)
526 self
.variants
.tag_member
.check(schema
)
527 # Not calling self.variants.check_clash(), because there's nothing
529 self
.variants
.check(schema
, {})
530 # Alternate branch names have no relation to the tag enum values;
531 # so we have to check for potential name collisions ourselves.
534 for v
in self
.variants
.variants
:
535 v
.check_clash(self
.info
, seen
)
536 qtype
= v
.type.alternate_qtype()
541 % (v
.describe(self
.info
), v
.type.describe()))
542 conflicting
= set([qtype
])
543 if qtype
== 'QTYPE_QSTRING':
544 if isinstance(v
.type, QAPISchemaEnumType
):
545 for m
in v
.type.members
:
546 if m
.name
in ['on', 'off']:
547 conflicting
.add('QTYPE_QBOOL')
548 if re
.match(r
'[-+0-9.]', m
.name
):
549 # lazy, could be tightened
550 conflicting
.add('QTYPE_QNUM')
552 conflicting
.add('QTYPE_QNUM')
553 conflicting
.add('QTYPE_QBOOL')
554 for qt
in conflicting
:
558 "%s can't be distinguished from '%s'"
559 % (v
.describe(self
.info
), types_seen
[qt
]))
560 types_seen
[qt
] = v
.name
562 def connect_doc(self
, doc
=None):
563 super().connect_doc(doc
)
564 doc
= doc
or self
.doc
565 for v
in self
.variants
.variants
:
569 return c_name(self
.name
) + POINTER_SUFFIX
574 def visit(self
, visitor
):
575 super().visit(visitor
)
576 visitor
.visit_alternate_type(
577 self
.name
, self
.info
, self
.ifcond
, self
.features
, self
.variants
)
580 class QAPISchemaVariants
:
581 def __init__(self
, tag_name
, info
, tag_member
, variants
):
582 # Unions pass tag_name but not tag_member.
583 # Alternates pass tag_member but not tag_name.
584 # After check(), tag_member is always set.
585 assert bool(tag_member
) != bool(tag_name
)
586 assert (isinstance(tag_name
, str) or
587 isinstance(tag_member
, QAPISchemaObjectTypeMember
))
589 assert isinstance(v
, QAPISchemaVariant
)
590 self
._tag
_name
= tag_name
592 self
.tag_member
= tag_member
593 self
.variants
= variants
595 def set_defined_in(self
, name
):
596 for v
in self
.variants
:
597 v
.set_defined_in(name
)
599 def check(self
, schema
, seen
):
600 if self
._tag
_name
: # union
601 self
.tag_member
= seen
.get(c_name(self
._tag
_name
))
603 # Pointing to the base type when not implicit would be
604 # nice, but we don't know it here
605 if not self
.tag_member
or self
._tag
_name
!= self
.tag_member
.name
:
608 "discriminator '%s' is not a member of %s"
609 % (self
._tag
_name
, base
))
611 base_type
= schema
.lookup_type(self
.tag_member
.defined_in
)
613 if not base_type
.is_implicit():
614 base
= "base type '%s'" % self
.tag_member
.defined_in
615 if not isinstance(self
.tag_member
.type, QAPISchemaEnumType
):
618 "discriminator member '%s' of %s must be of enum type"
619 % (self
._tag
_name
, base
))
620 if self
.tag_member
.optional
:
623 "discriminator member '%s' of %s must not be optional"
624 % (self
._tag
_name
, base
))
625 if self
.tag_member
.ifcond
.is_present():
628 "discriminator member '%s' of %s must not be conditional"
629 % (self
._tag
_name
, base
))
631 assert isinstance(self
.tag_member
.type, QAPISchemaEnumType
)
632 assert not self
.tag_member
.optional
633 assert not self
.tag_member
.ifcond
.is_present()
634 if self
._tag
_name
: # union
635 # branches that are not explicitly covered get an empty type
636 cases
= {v
.name
for v
in self
.variants
}
637 for m
in self
.tag_member
.type.members
:
638 if m
.name
not in cases
:
639 v
= QAPISchemaVariant(m
.name
, self
.info
,
641 v
.set_defined_in(self
.tag_member
.defined_in
)
642 self
.variants
.append(v
)
643 if not self
.variants
:
644 raise QAPISemError(self
.info
, "union has no branches")
645 for v
in self
.variants
:
647 # Union names must match enum values; alternate names are
648 # checked separately. Use 'seen' to tell the two apart.
650 if v
.name
not in self
.tag_member
.type.member_names():
653 "branch '%s' is not a value of %s"
654 % (v
.name
, self
.tag_member
.type.describe()))
655 if (not isinstance(v
.type, QAPISchemaObjectType
)
660 % (v
.describe(self
.info
), v
.type.describe()))
663 def check_clash(self
, info
, seen
):
664 for v
in self
.variants
:
665 # Reset seen map for each variant, since qapi names from one
666 # branch do not affect another branch
667 v
.type.check_clash(info
, dict(seen
))
670 class QAPISchemaMember
:
671 """ Represents object members, enum members and features """
674 def __init__(self
, name
, info
, ifcond
=None):
675 assert isinstance(name
, str)
678 self
.ifcond
= ifcond
or QAPISchemaIfCond()
679 self
.defined_in
= None
681 def set_defined_in(self
, name
):
682 assert not self
.defined_in
683 self
.defined_in
= name
685 def check_clash(self
, info
, seen
):
686 cname
= c_name(self
.name
)
690 "%s collides with %s"
691 % (self
.describe(info
), seen
[cname
].describe(info
)))
694 def connect_doc(self
, doc
):
696 doc
.connect_member(self
)
698 def describe(self
, info
):
700 defined_in
= self
.defined_in
703 if defined_in
.startswith('q_obj_'):
704 # See QAPISchema._make_implicit_object_type() - reverse the
705 # mapping there to create a nice human-readable description
706 defined_in
= defined_in
[6:]
707 if defined_in
.endswith('-arg'):
708 # Implicit type created for a command's dict 'data'
709 assert role
== 'member'
711 elif defined_in
.endswith('-base'):
712 # Implicit type created for a union's dict 'base'
713 role
= 'base ' + role
716 elif defined_in
!= info
.defn_name
:
717 return "%s '%s' of type '%s'" % (role
, self
.name
, defined_in
)
718 return "%s '%s'" % (role
, self
.name
)
721 class QAPISchemaEnumMember(QAPISchemaMember
):
724 def __init__(self
, name
, info
, ifcond
=None, features
=None):
725 super().__init
__(name
, info
, ifcond
)
726 for f
in features
or []:
727 assert isinstance(f
, QAPISchemaFeature
)
728 f
.set_defined_in(name
)
729 self
.features
= features
or []
731 def connect_doc(self
, doc
):
732 super().connect_doc(doc
)
734 for f
in self
.features
:
735 doc
.connect_feature(f
)
738 class QAPISchemaFeature(QAPISchemaMember
):
741 def is_special(self
):
742 return self
.name
in ('deprecated', 'unstable')
745 class QAPISchemaObjectTypeMember(QAPISchemaMember
):
746 def __init__(self
, name
, info
, typ
, optional
, ifcond
=None, features
=None):
747 super().__init
__(name
, info
, ifcond
)
748 assert isinstance(typ
, str)
749 assert isinstance(optional
, bool)
750 for f
in features
or []:
751 assert isinstance(f
, QAPISchemaFeature
)
752 f
.set_defined_in(name
)
753 self
._type
_name
= typ
755 self
.optional
= optional
756 self
.features
= features
or []
760 return self
.optional
and self
.type.need_has_if_optional()
762 def check(self
, schema
):
763 assert self
.defined_in
764 self
.type = schema
.resolve_type(self
._type
_name
, self
.info
,
767 for f
in self
.features
:
768 f
.check_clash(self
.info
, seen
)
770 def connect_doc(self
, doc
):
771 super().connect_doc(doc
)
773 for f
in self
.features
:
774 doc
.connect_feature(f
)
777 class QAPISchemaVariant(QAPISchemaObjectTypeMember
):
780 def __init__(self
, name
, info
, typ
, ifcond
=None):
781 super().__init
__(name
, info
, typ
, False, ifcond
)
784 class QAPISchemaCommand(QAPISchemaEntity
):
787 def __init__(self
, name
, info
, doc
, ifcond
, features
,
789 gen
, success_response
, boxed
, allow_oob
, allow_preconfig
,
791 super().__init
__(name
, info
, doc
, ifcond
, features
)
792 assert not arg_type
or isinstance(arg_type
, str)
793 assert not ret_type
or isinstance(ret_type
, str)
794 self
._arg
_type
_name
= arg_type
796 self
._ret
_type
_name
= ret_type
799 self
.success_response
= success_response
801 self
.allow_oob
= allow_oob
802 self
.allow_preconfig
= allow_preconfig
803 self
.coroutine
= coroutine
805 def check(self
, schema
):
806 super().check(schema
)
807 if self
._arg
_type
_name
:
808 self
.arg_type
= schema
.resolve_type(
809 self
._arg
_type
_name
, self
.info
, "command's 'data'")
810 if not isinstance(self
.arg_type
, QAPISchemaObjectType
):
813 "command's 'data' cannot take %s"
814 % self
.arg_type
.describe())
815 if self
.arg_type
.variants
and not self
.boxed
:
818 "command's 'data' can take %s only with 'boxed': true"
819 % self
.arg_type
.describe())
820 if self
._ret
_type
_name
:
821 self
.ret_type
= schema
.resolve_type(
822 self
._ret
_type
_name
, self
.info
, "command's 'returns'")
823 if self
.name
not in self
.info
.pragma
.command_returns_exceptions
:
825 if isinstance(typ
, QAPISchemaArrayType
):
826 typ
= self
.ret_type
.element_type
828 if not isinstance(typ
, QAPISchemaObjectType
):
831 "command's 'returns' cannot take %s"
832 % self
.ret_type
.describe())
834 def connect_doc(self
, doc
=None):
835 super().connect_doc(doc
)
836 doc
= doc
or self
.doc
838 if self
.arg_type
and self
.arg_type
.is_implicit():
839 self
.arg_type
.connect_doc(doc
)
841 def visit(self
, visitor
):
842 super().visit(visitor
)
843 visitor
.visit_command(
844 self
.name
, self
.info
, self
.ifcond
, self
.features
,
845 self
.arg_type
, self
.ret_type
, self
.gen
, self
.success_response
,
846 self
.boxed
, self
.allow_oob
, self
.allow_preconfig
,
850 class QAPISchemaEvent(QAPISchemaEntity
):
853 def __init__(self
, name
, info
, doc
, ifcond
, features
, arg_type
, boxed
):
854 super().__init
__(name
, info
, doc
, ifcond
, features
)
855 assert not arg_type
or isinstance(arg_type
, str)
856 self
._arg
_type
_name
= arg_type
860 def check(self
, schema
):
861 super().check(schema
)
862 if self
._arg
_type
_name
:
863 self
.arg_type
= schema
.resolve_type(
864 self
._arg
_type
_name
, self
.info
, "event's 'data'")
865 if not isinstance(self
.arg_type
, QAPISchemaObjectType
):
868 "event's 'data' cannot take %s"
869 % self
.arg_type
.describe())
870 if self
.arg_type
.variants
and not self
.boxed
:
873 "event's 'data' can take %s only with 'boxed': true"
874 % self
.arg_type
.describe())
876 def connect_doc(self
, doc
=None):
877 super().connect_doc(doc
)
878 doc
= doc
or self
.doc
880 if self
.arg_type
and self
.arg_type
.is_implicit():
881 self
.arg_type
.connect_doc(doc
)
883 def visit(self
, visitor
):
884 super().visit(visitor
)
886 self
.name
, self
.info
, self
.ifcond
, self
.features
,
887 self
.arg_type
, self
.boxed
)
891 def __init__(self
, fname
):
895 parser
= QAPISchemaParser(fname
)
896 except OSError as err
:
898 f
"can't read schema file '{fname}': {err.strerror}"
901 exprs
= check_exprs(parser
.exprs
)
902 self
.docs
= parser
.docs
903 self
._entity
_list
= []
904 self
._entity
_dict
= {}
905 self
._module
_dict
= OrderedDict()
906 self
._schema
_dir
= os
.path
.dirname(fname
)
907 self
._make
_module
(QAPISchemaModule
.BUILTIN_MODULE_NAME
)
908 self
._make
_module
(fname
)
909 self
._predefining
= True
910 self
._def
_predefineds
()
911 self
._predefining
= False
912 self
._def
_exprs
(exprs
)
915 def _def_entity(self
, ent
):
916 # Only the predefined types are allowed to not have info
917 assert ent
.info
or self
._predefining
918 self
._entity
_list
.append(ent
)
921 # TODO reject names that differ only in '_' vs. '.' vs. '-',
922 # because they're liable to clash in generated C.
923 other_ent
= self
._entity
_dict
.get(ent
.name
)
926 where
= QAPISourceError(other_ent
.info
, "previous definition")
929 "'%s' is already defined\n%s" % (ent
.name
, where
))
931 ent
.info
, "%s is already defined" % other_ent
.describe())
932 self
._entity
_dict
[ent
.name
] = ent
934 def lookup_entity(self
, name
, typ
=None):
935 ent
= self
._entity
_dict
.get(name
)
936 if typ
and not isinstance(ent
, typ
):
940 def lookup_type(self
, name
):
941 return self
.lookup_entity(name
, QAPISchemaType
)
943 def resolve_type(self
, name
, info
, what
):
944 typ
= self
.lookup_type(name
)
949 info
, "%s uses unknown type '%s'" % (what
, name
))
952 def _module_name(self
, fname
: str) -> str:
953 if QAPISchemaModule
.is_system_module(fname
):
955 return os
.path
.relpath(fname
, self
._schema
_dir
)
957 def _make_module(self
, fname
):
958 name
= self
._module
_name
(fname
)
959 if name
not in self
._module
_dict
:
960 self
._module
_dict
[name
] = QAPISchemaModule(name
)
961 return self
._module
_dict
[name
]
963 def module_by_fname(self
, fname
):
964 name
= self
._module
_name
(fname
)
965 return self
._module
_dict
[name
]
967 def _def_include(self
, expr
: QAPIExpression
):
968 include
= expr
['include']
969 assert expr
.doc
is None
971 QAPISchemaInclude(self
._make
_module
(include
), expr
.info
))
973 def _def_builtin_type(self
, name
, json_type
, c_type
):
974 self
._def
_entity
(QAPISchemaBuiltinType(name
, json_type
, c_type
))
975 # Instantiating only the arrays that are actually used would
976 # be nice, but we can't as long as their generated code
977 # (qapi-builtin-types.[ch]) may be shared by some other
979 self
._make
_array
_type
(name
, None)
981 def _def_predefineds(self
):
982 for t
in [('str', 'string', 'char' + POINTER_SUFFIX
),
983 ('number', 'number', 'double'),
984 ('int', 'int', 'int64_t'),
985 ('int8', 'int', 'int8_t'),
986 ('int16', 'int', 'int16_t'),
987 ('int32', 'int', 'int32_t'),
988 ('int64', 'int', 'int64_t'),
989 ('uint8', 'int', 'uint8_t'),
990 ('uint16', 'int', 'uint16_t'),
991 ('uint32', 'int', 'uint32_t'),
992 ('uint64', 'int', 'uint64_t'),
993 ('size', 'int', 'uint64_t'),
994 ('bool', 'boolean', 'bool'),
995 ('any', 'value', 'QObject' + POINTER_SUFFIX
),
996 ('null', 'null', 'QNull' + POINTER_SUFFIX
)]:
997 self
._def
_builtin
_type
(*t
)
998 self
.the_empty_object_type
= QAPISchemaObjectType(
999 'q_empty', None, None, None, None, None, [], None)
1000 self
._def
_entity
(self
.the_empty_object_type
)
1002 qtypes
= ['none', 'qnull', 'qnum', 'qstring', 'qdict', 'qlist',
1004 qtype_values
= self
._make
_enum
_members
(
1005 [{'name': n
} for n
in qtypes
], None)
1007 self
._def
_entity
(QAPISchemaEnumType('QType', None, None, None, None,
1008 qtype_values
, 'QTYPE'))
1010 def _make_features(self
, features
, info
):
1011 if features
is None:
1013 return [QAPISchemaFeature(f
['name'], info
,
1014 QAPISchemaIfCond(f
.get('if')))
1017 def _make_enum_member(self
, name
, ifcond
, features
, info
):
1018 return QAPISchemaEnumMember(name
, info
,
1019 QAPISchemaIfCond(ifcond
),
1020 self
._make
_features
(features
, info
))
1022 def _make_enum_members(self
, values
, info
):
1023 return [self
._make
_enum
_member
(v
['name'], v
.get('if'),
1024 v
.get('features'), info
)
1027 def _make_array_type(self
, element_type
, info
):
1028 name
= element_type
+ 'List' # reserved by check_defn_name_str()
1029 if not self
.lookup_type(name
):
1030 self
._def
_entity
(QAPISchemaArrayType(name
, info
, element_type
))
1033 def _make_implicit_object_type(self
, name
, info
, ifcond
, role
, members
):
1036 # See also QAPISchemaObjectTypeMember.describe()
1037 name
= 'q_obj_%s-%s' % (name
, role
)
1038 typ
= self
.lookup_entity(name
, QAPISchemaObjectType
)
1040 # The implicit object type has multiple users. This can
1041 # only be a duplicate definition, which will be flagged
1045 self
._def
_entity
(QAPISchemaObjectType(
1046 name
, info
, None, ifcond
, None, None, members
, None))
1049 def _def_enum_type(self
, expr
: QAPIExpression
):
1052 prefix
= expr
.get('prefix')
1053 ifcond
= QAPISchemaIfCond(expr
.get('if'))
1055 features
= self
._make
_features
(expr
.get('features'), info
)
1056 self
._def
_entity
(QAPISchemaEnumType(
1057 name
, info
, expr
.doc
, ifcond
, features
,
1058 self
._make
_enum
_members
(data
, info
), prefix
))
1060 def _make_member(self
, name
, typ
, ifcond
, features
, info
):
1062 if name
.startswith('*'):
1065 if isinstance(typ
, list):
1066 assert len(typ
) == 1
1067 typ
= self
._make
_array
_type
(typ
[0], info
)
1068 return QAPISchemaObjectTypeMember(name
, info
, typ
, optional
, ifcond
,
1069 self
._make
_features
(features
, info
))
1071 def _make_members(self
, data
, info
):
1072 return [self
._make
_member
(key
, value
['type'],
1073 QAPISchemaIfCond(value
.get('if')),
1074 value
.get('features'), info
)
1075 for (key
, value
) in data
.items()]
1077 def _def_struct_type(self
, expr
: QAPIExpression
):
1078 name
= expr
['struct']
1079 base
= expr
.get('base')
1082 ifcond
= QAPISchemaIfCond(expr
.get('if'))
1083 features
= self
._make
_features
(expr
.get('features'), info
)
1084 self
._def
_entity
(QAPISchemaObjectType(
1085 name
, info
, expr
.doc
, ifcond
, features
, base
,
1086 self
._make
_members
(data
, info
),
1089 def _make_variant(self
, case
, typ
, ifcond
, info
):
1090 if isinstance(typ
, list):
1091 assert len(typ
) == 1
1092 typ
= self
._make
_array
_type
(typ
[0], info
)
1093 return QAPISchemaVariant(case
, info
, typ
, ifcond
)
1095 def _def_union_type(self
, expr
: QAPIExpression
):
1096 name
= expr
['union']
1098 tag_name
= expr
['discriminator']
1100 assert isinstance(data
, dict)
1102 ifcond
= QAPISchemaIfCond(expr
.get('if'))
1103 features
= self
._make
_features
(expr
.get('features'), info
)
1104 if isinstance(base
, dict):
1105 base
= self
._make
_implicit
_object
_type
(
1107 'base', self
._make
_members
(base
, info
))
1109 self
._make
_variant
(key
, value
['type'],
1110 QAPISchemaIfCond(value
.get('if')),
1112 for (key
, value
) in data
.items()]
1113 members
: List
[QAPISchemaObjectTypeMember
] = []
1115 QAPISchemaObjectType(name
, info
, expr
.doc
, ifcond
, features
,
1118 tag_name
, info
, None, variants
)))
1120 def _def_alternate_type(self
, expr
: QAPIExpression
):
1121 name
= expr
['alternate']
1123 assert isinstance(data
, dict)
1124 ifcond
= QAPISchemaIfCond(expr
.get('if'))
1126 features
= self
._make
_features
(expr
.get('features'), info
)
1128 self
._make
_variant
(key
, value
['type'],
1129 QAPISchemaIfCond(value
.get('if')),
1131 for (key
, value
) in data
.items()]
1132 tag_member
= QAPISchemaObjectTypeMember('type', info
, 'QType', False)
1134 QAPISchemaAlternateType(
1135 name
, info
, expr
.doc
, ifcond
, features
,
1136 QAPISchemaVariants(None, info
, tag_member
, variants
)))
1138 def _def_command(self
, expr
: QAPIExpression
):
1139 name
= expr
['command']
1140 data
= expr
.get('data')
1141 rets
= expr
.get('returns')
1142 gen
= expr
.get('gen', True)
1143 success_response
= expr
.get('success-response', True)
1144 boxed
= expr
.get('boxed', False)
1145 allow_oob
= expr
.get('allow-oob', False)
1146 allow_preconfig
= expr
.get('allow-preconfig', False)
1147 coroutine
= expr
.get('coroutine', False)
1148 ifcond
= QAPISchemaIfCond(expr
.get('if'))
1150 features
= self
._make
_features
(expr
.get('features'), info
)
1151 if isinstance(data
, OrderedDict
):
1152 data
= self
._make
_implicit
_object
_type
(
1154 'arg', self
._make
_members
(data
, info
))
1155 if isinstance(rets
, list):
1156 assert len(rets
) == 1
1157 rets
= self
._make
_array
_type
(rets
[0], info
)
1158 self
._def
_entity
(QAPISchemaCommand(name
, info
, expr
.doc
, ifcond
,
1159 features
, data
, rets
,
1160 gen
, success_response
,
1161 boxed
, allow_oob
, allow_preconfig
,
1164 def _def_event(self
, expr
: QAPIExpression
):
1165 name
= expr
['event']
1166 data
= expr
.get('data')
1167 boxed
= expr
.get('boxed', False)
1168 ifcond
= QAPISchemaIfCond(expr
.get('if'))
1170 features
= self
._make
_features
(expr
.get('features'), info
)
1171 if isinstance(data
, OrderedDict
):
1172 data
= self
._make
_implicit
_object
_type
(
1174 'arg', self
._make
_members
(data
, info
))
1175 self
._def
_entity
(QAPISchemaEvent(name
, info
, expr
.doc
, ifcond
,
1176 features
, data
, boxed
))
1178 def _def_exprs(self
, exprs
):
1181 self
._def
_enum
_type
(expr
)
1182 elif 'struct' in expr
:
1183 self
._def
_struct
_type
(expr
)
1184 elif 'union' in expr
:
1185 self
._def
_union
_type
(expr
)
1186 elif 'alternate' in expr
:
1187 self
._def
_alternate
_type
(expr
)
1188 elif 'command' in expr
:
1189 self
._def
_command
(expr
)
1190 elif 'event' in expr
:
1191 self
._def
_event
(expr
)
1192 elif 'include' in expr
:
1193 self
._def
_include
(expr
)
1198 for ent
in self
._entity
_list
:
1202 for ent
in self
._entity
_list
:
1203 ent
.set_module(self
)
1205 def visit(self
, visitor
):
1206 visitor
.visit_begin(self
)
1207 for mod
in self
._module
_dict
.values():