mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00
qapi/introspect.py: create a typed 'Annotated' data strutcure
Presently, we use a tuple to attach a dict containing annotations (comments and compile-time conditionals) to a tree node. This is undesirable because dicts are difficult to strongly type; promoting it to a real class allows us to name the values and types of the annotations we are expecting. In terms of typing, the Annotated<T> type serves as a generic container where the annotated node's type is preserved, allowing for greater specificity than we'd be able to provide without a generic. Signed-off-by: John Snow <jsnow@redhat.com> Message-Id: <20210216021809.134886-11-jsnow@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
9db2734613
commit
4f7f97a7b3
1 changed files with 45 additions and 33 deletions
|
@ -13,8 +13,12 @@ See the COPYING file in the top-level directory.
|
||||||
from typing import (
|
from typing import (
|
||||||
Any,
|
Any,
|
||||||
Dict,
|
Dict,
|
||||||
|
Generic,
|
||||||
|
Iterable,
|
||||||
List,
|
List,
|
||||||
Optional,
|
Optional,
|
||||||
|
Tuple,
|
||||||
|
TypeVar,
|
||||||
Union,
|
Union,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -52,15 +56,25 @@ _Stub = Any
|
||||||
_Scalar = Union[str, bool, None]
|
_Scalar = Union[str, bool, None]
|
||||||
_NonScalar = Union[Dict[str, _Stub], List[_Stub]]
|
_NonScalar = Union[Dict[str, _Stub], List[_Stub]]
|
||||||
_Value = Union[_Scalar, _NonScalar]
|
_Value = Union[_Scalar, _NonScalar]
|
||||||
# JSONValue = TODO, in a forthcoming commit.
|
JSONValue = Union[_Value, 'Annotated[_Value]']
|
||||||
|
|
||||||
|
|
||||||
def _make_tree(obj, ifcond, comment=None):
|
_ValueT = TypeVar('_ValueT', bound=_Value)
|
||||||
extra = {
|
|
||||||
'if': ifcond,
|
|
||||||
'comment': comment
|
class Annotated(Generic[_ValueT]):
|
||||||
}
|
"""
|
||||||
return (obj, extra)
|
Annotated generally contains a SchemaInfo-like type (as a dict),
|
||||||
|
But it also used to wrap comments/ifconds around scalar leaf values,
|
||||||
|
for the benefit of features and enums.
|
||||||
|
"""
|
||||||
|
# TODO: Remove after Python 3.7 adds @dataclass:
|
||||||
|
# pylint: disable=too-few-public-methods
|
||||||
|
def __init__(self, value: _ValueT, ifcond: Iterable[str],
|
||||||
|
comment: Optional[str] = None):
|
||||||
|
self.value = value
|
||||||
|
self.comment: Optional[str] = comment
|
||||||
|
self.ifcond: Tuple[str, ...] = tuple(ifcond)
|
||||||
|
|
||||||
|
|
||||||
def _tree_to_qlit(obj, level=0, dict_value=False):
|
def _tree_to_qlit(obj, level=0, dict_value=False):
|
||||||
|
@ -68,11 +82,7 @@ def _tree_to_qlit(obj, level=0, dict_value=False):
|
||||||
def indent(level):
|
def indent(level):
|
||||||
return level * 4 * ' '
|
return level * 4 * ' '
|
||||||
|
|
||||||
if isinstance(obj, tuple):
|
if isinstance(obj, Annotated):
|
||||||
ifobj, extra = obj
|
|
||||||
ifcond = extra.get('if')
|
|
||||||
comment = extra.get('comment')
|
|
||||||
|
|
||||||
# NB: _tree_to_qlit is called recursively on the values of a
|
# NB: _tree_to_qlit is called recursively on the values of a
|
||||||
# key:value pair; those values can't be decorated with
|
# key:value pair; those values can't be decorated with
|
||||||
# comments or conditionals.
|
# comments or conditionals.
|
||||||
|
@ -80,13 +90,13 @@ def _tree_to_qlit(obj, level=0, dict_value=False):
|
||||||
assert not dict_value, msg
|
assert not dict_value, msg
|
||||||
|
|
||||||
ret = ''
|
ret = ''
|
||||||
if comment:
|
if obj.comment:
|
||||||
ret += indent(level) + '/* %s */\n' % comment
|
ret += indent(level) + '/* %s */\n' % obj.comment
|
||||||
if ifcond:
|
if obj.ifcond:
|
||||||
ret += gen_if(ifcond)
|
ret += gen_if(obj.ifcond)
|
||||||
ret += _tree_to_qlit(ifobj, level)
|
ret += _tree_to_qlit(obj.value, level)
|
||||||
if ifcond:
|
if obj.ifcond:
|
||||||
ret += '\n' + gen_endif(ifcond)
|
ret += '\n' + gen_endif(obj.ifcond)
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
ret = ''
|
ret = ''
|
||||||
|
@ -203,7 +213,7 @@ const QLitObject %(c_name)s = %(c_string)s;
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _gen_features(features):
|
def _gen_features(features):
|
||||||
return [_make_tree(f.name, f.ifcond) for f in features]
|
return [Annotated(f.name, f.ifcond) for f in features]
|
||||||
|
|
||||||
def _gen_tree(self, name, mtype, obj, ifcond, features):
|
def _gen_tree(self, name, mtype, obj, ifcond, features):
|
||||||
comment: Optional[str] = None
|
comment: Optional[str] = None
|
||||||
|
@ -217,7 +227,7 @@ const QLitObject %(c_name)s = %(c_string)s;
|
||||||
obj['meta-type'] = mtype
|
obj['meta-type'] = mtype
|
||||||
if features:
|
if features:
|
||||||
obj['features'] = self._gen_features(features)
|
obj['features'] = self._gen_features(features)
|
||||||
self._trees.append(_make_tree(obj, ifcond, comment))
|
self._trees.append(Annotated(obj, ifcond, comment))
|
||||||
|
|
||||||
def _gen_member(self, member):
|
def _gen_member(self, member):
|
||||||
obj = {'name': member.name, 'type': self._use_type(member.type)}
|
obj = {'name': member.name, 'type': self._use_type(member.type)}
|
||||||
|
@ -225,7 +235,7 @@ const QLitObject %(c_name)s = %(c_string)s;
|
||||||
obj['default'] = None
|
obj['default'] = None
|
||||||
if member.features:
|
if member.features:
|
||||||
obj['features'] = self._gen_features(member.features)
|
obj['features'] = self._gen_features(member.features)
|
||||||
return _make_tree(obj, member.ifcond)
|
return Annotated(obj, member.ifcond)
|
||||||
|
|
||||||
def _gen_variants(self, tag_name, variants):
|
def _gen_variants(self, tag_name, variants):
|
||||||
return {'tag': tag_name,
|
return {'tag': tag_name,
|
||||||
|
@ -233,16 +243,17 @@ const QLitObject %(c_name)s = %(c_string)s;
|
||||||
|
|
||||||
def _gen_variant(self, variant):
|
def _gen_variant(self, variant):
|
||||||
obj = {'case': variant.name, 'type': self._use_type(variant.type)}
|
obj = {'case': variant.name, 'type': self._use_type(variant.type)}
|
||||||
return _make_tree(obj, variant.ifcond)
|
return Annotated(obj, variant.ifcond)
|
||||||
|
|
||||||
def visit_builtin_type(self, name, info, json_type):
|
def visit_builtin_type(self, name, info, json_type):
|
||||||
self._gen_tree(name, 'builtin', {'json-type': json_type}, [], None)
|
self._gen_tree(name, 'builtin', {'json-type': json_type}, [], None)
|
||||||
|
|
||||||
def visit_enum_type(self, name, info, ifcond, features, members, prefix):
|
def visit_enum_type(self, name, info, ifcond, features, members, prefix):
|
||||||
self._gen_tree(name, 'enum',
|
self._gen_tree(
|
||||||
{'values': [_make_tree(m.name, m.ifcond, None)
|
name, 'enum',
|
||||||
for m in members]},
|
{'values': [Annotated(m.name, m.ifcond) for m in members]},
|
||||||
ifcond, features)
|
ifcond, features
|
||||||
|
)
|
||||||
|
|
||||||
def visit_array_type(self, name, info, ifcond, element_type):
|
def visit_array_type(self, name, info, ifcond, element_type):
|
||||||
element = self._use_type(element_type)
|
element = self._use_type(element_type)
|
||||||
|
@ -259,12 +270,13 @@ const QLitObject %(c_name)s = %(c_string)s;
|
||||||
self._gen_tree(name, 'object', obj, ifcond, features)
|
self._gen_tree(name, 'object', obj, ifcond, features)
|
||||||
|
|
||||||
def visit_alternate_type(self, name, info, ifcond, features, variants):
|
def visit_alternate_type(self, name, info, ifcond, features, variants):
|
||||||
self._gen_tree(name, 'alternate',
|
self._gen_tree(
|
||||||
{'members': [
|
name, 'alternate',
|
||||||
_make_tree({'type': self._use_type(m.type)},
|
{'members': [Annotated({'type': self._use_type(m.type)},
|
||||||
m.ifcond, None)
|
m.ifcond)
|
||||||
for m in variants.variants]},
|
for m in variants.variants]},
|
||||||
ifcond, features)
|
ifcond, features
|
||||||
|
)
|
||||||
|
|
||||||
def visit_command(self, name, info, ifcond, features,
|
def visit_command(self, name, info, ifcond, features,
|
||||||
arg_type, ret_type, gen, success_response, boxed,
|
arg_type, ret_type, gen, success_response, boxed,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue