Skip to content

Commit

Permalink
qapi: Fix code generation for empty modules
Browse files Browse the repository at this point in the history
When a sub-module doesn't contain any definitions, we don't generate
code for it, but we do generate the #include.

We generate code only for modules that get visited.
QAPISchema.visit() visits only modules that have definitions.  It can
visit modules multiple times.

Clean this up as follows.  Collect entities in their QAPISchemaModule.
Have QAPISchema.visit() call QAPISchemaModule.visit() for each module.
Have QAPISchemaModule.visit() call .visit_module() for itself, and
QAPISchemaEntity.visit() for each of its entities.  This way, we visit
each module exactly once.

Signed-off-by: Markus Armbruster <[email protected]>
Message-Id: <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
  • Loading branch information
Markus Armbruster committed Jan 14, 2020
1 parent a9f1dd7 commit 3e7fb58
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 29 deletions.
24 changes: 13 additions & 11 deletions scripts/qapi/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def check_doc(self):
def _set_module(self, schema, info):
assert self._checked
self._module = schema.module_by_fname(info and info.fname)
self._module.add_entity(self)

def set_module(self, schema):
self._set_module(schema, self.info)
Expand All @@ -77,11 +78,6 @@ def ifcond(self):
assert self._checked
return self._ifcond

@property
def module(self):
assert self._module or not self.info
return self._module

def is_implicit(self):
return not self.info

Expand Down Expand Up @@ -142,6 +138,16 @@ def visit_event(self, name, info, ifcond, arg_type, boxed):
class QAPISchemaModule(object):
def __init__(self, name):
self.name = name
self._entity_list = []

def add_entity(self, ent):
self._entity_list.append(ent)

def visit(self, visitor):
visitor.visit_module(self.name)
for entity in self._entity_list:
if visitor.visit_needed(entity):
entity.visit(visitor)


class QAPISchemaInclude(QAPISchemaEntity):
Expand Down Expand Up @@ -1093,10 +1099,6 @@ def check(self):
def visit(self, visitor):
visitor.visit_begin(self)
module = None
for entity in self._entity_list:
if visitor.visit_needed(entity):
if entity.module != module:
module = entity.module
visitor.visit_module(module.name)
entity.visit(visitor)
for mod in self._module_dict.values():
mod.visit(visitor)
visitor.visit_end()
1 change: 1 addition & 0 deletions tests/qapi-schema/empty.out
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ enum QType
member qdict
member qlist
member qbool
module empty.json
6 changes: 2 additions & 4 deletions tests/qapi-schema/include-repetition.out
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ enum QType
member qbool
module include-repetition.json
include comments.json
include include-repetition-sub.json
include comments.json
module comments.json
enum Status
member good
member bad
member ugly
module include-repetition.json
include include-repetition-sub.json
module include-repetition-sub.json
include comments.json
include comments.json
module include-repetition.json
include comments.json
24 changes: 10 additions & 14 deletions tests/qapi-schema/qapi-schema-test.out
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,6 @@ object q_obj_sizeList-wrapper
member data: sizeList optional=False
object q_obj_anyList-wrapper
member data: anyList optional=False
module sub-sub-module.json
array StatusList Status
module qapi-schema-test.json
object q_obj_StatusList-wrapper
member data: StatusList optional=False
enum UserDefListUnionKind
Expand Down Expand Up @@ -193,17 +190,6 @@ object UserDefListUnion
case any: q_obj_anyList-wrapper
case user: q_obj_StatusList-wrapper
include include/sub-module.json
module include/sub-module.json
include sub-sub-module.json
module sub-sub-module.json
enum Status
member good
member bad
member ugly
module include/sub-module.json
object SecondArrayRef
member s: StatusList optional=False
module qapi-schema-test.json
command user_def_cmd None -> None
gen=True success_response=True boxed=False oob=False preconfig=False
object q_obj_user_def_cmd1-arg
Expand Down Expand Up @@ -435,3 +421,13 @@ command test-command-cond-features3 None -> None
gen=True success_response=True boxed=False oob=False preconfig=False
feature feature1
if ['defined(TEST_IF_COND_1)', 'defined(TEST_IF_COND_2)']
module include/sub-module.json
include sub-sub-module.json
object SecondArrayRef
member s: StatusList optional=False
module sub-sub-module.json
array StatusList Status
enum Status
member good
member bad
member ugly

0 comments on commit 3e7fb58

Please sign in to comment.