diff options
author | Kevin Wolf <kwolf@redhat.com> | 2013-07-16 10:49:41 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-07-26 21:10:11 +0200 |
commit | ea66c6d8819c8fc5f73a28554992be64e5399fed (patch) | |
tree | 9ba7a5f0c3cbe8f68ece4a68a8660ca16fe1c141 | |
parent | e8316d7e8e8339a9ea593ba821a0aad26908c0d5 (diff) | |
download | qemu-ea66c6d8819c8fc5f73a28554992be64e5399fed.zip |
qapi.py: Maintain a list of union types
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
-rw-r--r-- | scripts/qapi.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/qapi.py b/scripts/qapi.py index baf13213a9..3a54c7fc7c 100644 --- a/scripts/qapi.py +++ b/scripts/qapi.py @@ -105,6 +105,7 @@ def parse_schema(fp): if expr_eval.has_key('enum'): add_enum(expr_eval['enum']) elif expr_eval.has_key('union'): + add_union(expr_eval) add_enum('%sKind' % expr_eval['union']) elif expr_eval.has_key('type'): add_struct(expr_eval) @@ -188,6 +189,7 @@ def type_name(name): enum_types = [] struct_types = [] +union_types = [] def add_struct(definition): global struct_types @@ -200,6 +202,17 @@ def find_struct(name): return struct return None +def add_union(definition): + global union_types + 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): global enum_types enum_types.append(name) |