Skip to content

Commit

Permalink
qapi: Detect collisions in C member names
Browse files Browse the repository at this point in the history
Detect attempts to declare two object members that would result
in the same C member name, by keying the 'seen' dictionary off
of the C name rather than the qapi name.  It also requires passing
info through the check_clash() methods.

This addresses a TODO and fixes the previously-broken
args-name-clash test.  The resulting error message demonstrates
the utility of the .describe() method added previously.  No change
to generated code.

Signed-off-by: Eric Blake <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Markus Armbruster <[email protected]>
  • Loading branch information
ebblake authored and Markus Armbruster committed Dec 17, 2015
1 parent 88d4ef8 commit 27b60ab
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 22 deletions.
31 changes: 19 additions & 12 deletions scripts/qapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -977,20 +977,23 @@ def check(self, schema):
self.base = schema.lookup_type(self._base_name)
assert isinstance(self.base, QAPISchemaObjectType)
self.base.check(schema)
self.base.check_clash(schema, seen)
self.base.check_clash(schema, self.info, seen)
for m in self.local_members:
m.check(schema)
m.check_clash(seen)
m.check_clash(self.info, seen)
self.members = seen.values()
if self.variants:
self.variants.check(schema, seen)
assert self.variants.tag_member in self.members
self.variants.check_clash(schema, seen)
self.variants.check_clash(schema, self.info, seen)

def check_clash(self, schema, seen):
# Check that the members of this type do not cause duplicate JSON fields,
# and update seen to track the members seen so far. Report any errors
# on behalf of info, which is not necessarily self.info
def check_clash(self, schema, info, seen):
assert not self.variants # not implemented
for m in self.members:
m.check_clash(seen)
m.check_clash(info, seen)

def is_implicit(self):
# See QAPISchema._make_implicit_object_type()
Expand Down Expand Up @@ -1036,10 +1039,13 @@ def check(self, schema):
self.type = schema.lookup_type(self._type_name)
assert self.type

def check_clash(self, seen):
# TODO change key of seen from QAPI name to C name
assert self.name not in seen
seen[self.name] = self
def check_clash(self, info, seen):
cname = c_name(self.name)
if cname in seen:
raise QAPIExprError(info,
"%s collides with %s"
% (self.describe(), seen[cname].describe()))
seen[cname] = self

def _pretty_owner(self):
owner = self.owner
Expand Down Expand Up @@ -1080,20 +1086,21 @@ def set_owner(self, name):

def check(self, schema, seen):
if not self.tag_member: # flat union
self.tag_member = seen[self.tag_name]
self.tag_member = seen[c_name(self.tag_name)]
assert self.tag_name == self.tag_member.name
assert isinstance(self.tag_member.type, QAPISchemaEnumType)
for v in self.variants:
v.check(schema)
assert v.name in self.tag_member.type.values
if isinstance(v.type, QAPISchemaObjectType):
v.type.check(schema)

def check_clash(self, schema, seen):
def check_clash(self, schema, info, seen):
for v in self.variants:
# Reset seen map for each variant, since qapi names from one
# branch do not affect another branch
assert isinstance(v.type, QAPISchemaObjectType)
v.type.check_clash(schema, dict(seen))
v.type.check_clash(schema, info, dict(seen))


class QAPISchemaObjectTypeVariant(QAPISchemaObjectTypeMember):
Expand Down
1 change: 1 addition & 0 deletions tests/qapi-schema/args-name-clash.err
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tests/qapi-schema/args-name-clash.json:4: 'a_b' (parameter of oops) collides with 'a-b' (parameter of oops)
2 changes: 1 addition & 1 deletion tests/qapi-schema/args-name-clash.exit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0
1
5 changes: 2 additions & 3 deletions tests/qapi-schema/args-name-clash.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# C member name collision
# FIXME - This parses, but fails to compile, because the C struct is given
# two 'a_b' members. Either reject this at parse time, or munge the C names
# to avoid the collision.
# Reject members that clash when mapped to C names (we would have two 'a_b'
# members).
{ 'command': 'oops', 'data': { 'a-b': 'str', 'a_b': 'str' } }
6 changes: 0 additions & 6 deletions tests/qapi-schema/args-name-clash.out
Original file line number Diff line number Diff line change
@@ -1,6 +0,0 @@
object :empty
object :obj-oops-arg
member a-b: str optional=False
member a_b: str optional=False
command oops :obj-oops-arg -> None
gen=True success_response=True

0 comments on commit 27b60ab

Please sign in to comment.