2 # QAPI parser test harness
4 # Copyright (c) 2013 Red Hat Inc.
7 # Markus Armbruster <armbru@redhat.com>
9 # This work is licensed under the terms of the GNU GPL, version 2 or later.
10 # See the COPYING file in the top-level directory.
14 from pprint
import pprint
19 class QAPISchemaTestVisitor(QAPISchemaVisitor
):
20 def visit_enum_type(self
, name
, info
, values
, prefix
):
21 print 'enum %s %s' % (name
, values
)
23 print ' prefix %s' % prefix
25 def visit_object_type(self
, name
, info
, base
, members
, variants
):
26 print 'object %s' % name
28 print ' base %s' % base
.name
30 print ' member %s: %s optional=%s' % \
31 (m
.name
, m
.type.name
, m
.optional
)
32 self
._print
_variants
(variants
)
34 def visit_alternate_type(self
, name
, info
, variants
):
35 print 'alternate %s' % name
36 self
._print
_variants
(variants
)
38 def visit_command(self
, name
, info
, arg_type
, ret_type
,
39 gen
, success_response
):
40 print 'command %s %s -> %s' % \
41 (name
, arg_type
and arg_type
.name
, ret_type
and ret_type
.name
)
42 print ' gen=%s success_response=%s' % (gen
, success_response
)
44 def visit_event(self
, name
, info
, arg_type
):
45 print 'event %s %s' % (name
, arg_type
and arg_type
.name
)
48 def _print_variants(variants
):
51 print ' tag %s' % variants
.tag_name
52 for v
in variants
.variants
:
53 print ' case %s: %s' % (v
.name
, v
.type.name
)
55 schema
= QAPISchema(sys
.argv
[1])
56 schema
.visit(QAPISchemaTestVisitor())