From: Eric Blake <eblake@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org, Michael Roth <mdroth@linux.vnet.ibm.com>
Subject: Re: [Qemu-devel] [PATCH v8.5 1/4] qapi: Drop all_members parameter from check()
Date: Tue, 3 Nov 2015 06:26:43 -0700 [thread overview]
Message-ID: <5638B613.2020402@redhat.com> (raw)
In-Reply-To: <87611jjq98.fsf@blackfin.pond.sub.org>
[-- Attachment #1: Type: text/plain, Size: 6835 bytes --]
On 11/03/2015 04:06 AM, Markus Armbruster wrote:
> Eric Blake <eblake@redhat.com> writes:
>
>> The implementation of QAPISchemaObjectTypeMember.check() always
>> adds the member currently being checked to both the all_members
>> and seen parameters.
>
> QAPISchemaObjectTypeMember.check() does four things:
>
> 1. Compute self.type
>
> Precondition: all types are defined.
Correct, unchanged by this patch.
>
> 2. Accumulate members
>
> all_members serves as accumulator.
>
> We'll see that its only actual use is the owning object type's
> check(), which uses it to compute self.members.
This patch changes it to use seen.values(), which (once you use an
OrderedDict() instead of plain {}) is identical to all_members.
>
> 3. Check for collisions
>
> This works by accumulating names in seen. Precondition: seen
> contains the names seen so far.
>
> Note that this part uses seen like a set. See 4.
Unchanged by this patch; but see also 2/4 and 3/4.
>
> 4. Accumulate a map from names to members
>
> seen serves as accumulator.
>
Unchanged by this patch.
> We'll see that its only actual user is the owning object type's
> variants.check(), which uses it to compute variants.tag_member from
> variants.tag_name.
>
>> However, the three callers of this method
>> pass in the following parameters:
>>
>> QAPISchemaObjectType.check():
>> - all_members contains all non-variant members seen to date,
>> for use in populating self.members
>> - seen contains all non-variant members seen to date, for
>> use in checking for collisions
>
> Yes, and:
>
> - we're calling it for m in self.local_members
> - before the loop, all_members and seen are initialized to the inherited
> non-variant members
> - after the loop, they therefore contain all non-variant members
>
> This caller uses all four things done by QAPISchemaObjectType.check():
>
> 1. Compute m.type
Unchanged by this patch.
> 2. Accumulate non-variant members
Whether the accumulation is done via all_members (pre-patch) or by
seen.values() (post-patch), this step is still done.
> 3. Check for collisions among non-variant members
> Before the loop, seen contains the inherited members, which don't
> collide (self.base.check() ensures that). The loop adds the local
> members one by one, checking for collisions.
Unchanged by this patch.
> 4. Accumulate a map from names to non-variant members
> Similar argument to 3.
Unchanged by this patch.
>
>> QAPISchemaObjectTypeVariant.check():
>
> Do you mean QAPISchemaObjectVariants.check()?
QAPISchemaObjectTypeVariants.check() calls
QAPISchemaObjectTypeVariant.check() for each variant, but with a fresh
copy of seen. We'll later need to expand this copy of seen (patch 2/4),
but for this patch its use is unchanged - we are appending a single
value (the tag value) which is wrong, but no one cares that we appended
it because it was a copy. Patch 3/4 fixes to not append to it.
>
>> - all_members is a throwaway empty list
>> - seen is a throwaway dictionary created as a copy by
>> QAPISchemaObjectVariants.check() (since the members of
>> one variant cannot collide with those from another), for
>> use in checking for collisions (technically, we no longer
>> need to check for collisions between tag values and QMP
>> key names, but that's a cleanup for another patch)
>>
>> QAPISchemaAlternateType.check():
>> - all_members is a throwaway empty list
>> - seen is a throwaway empty dict
>
> I'm afraid you're omitting a few steps here, and I think you missed
> QAPISchemaObjectVariants.check()'s self.tag_member.check().
There is no self.tag_member.check(), any more; rather, my earlier
patches have reworked things so that tag_member is checked by the owner
(a flat union's base type, a simple union's local_members, or directly
in QAPISchemaAlternateType prior to calling Variants.check()). I guess
that's a pitfall of seeing this patch without my rework of 5/17 to
address your comments there.
>> Therefore, in the one case where we care about all_members
>> after seen has been populated, we know that it contains the
>> same members as seen.values(); changing seen to be an
>> OrderedDict() is sufficient to pick up this information with
>> one less parameter being passed around.
>
> I believe the first step should be dropping the obsolete check for
> collision of tag value with non-variant members. I believe this should
> do:
>
> @@ -1059,8 +1059,7 @@ class QAPISchemaObjectTypeVariants(object):
> self.tag_member.check(schema, members, seen)
> assert isinstance(self.tag_member.type, QAPISchemaEnumType)
> for v in self.variants:
> - vseen = dict(seen)
> - v.check(schema, self.tag_member.type, vseen)
> + v.check(schema, self.tag_member.type, {})
Close, but not quite. It should do:
+ cases = {}
for v in self.variants:
vseen = dict(seen)
- v.check(schema, self.tag_member.type, vseen)
+ v.check(schema, self.tag_member.type, vseen, cases)
coupled with this in QAPISchemaObjectTypeVariant:
- def check(self, schema, tag_type, seen):
- QAPISchemaObjectTypeMember.check(self, schema, [], seen)
+ def check(self, schema, tag_type, seen, cases):
+ QAPISchemaObjectTypeMember.check(self, schema, [], cases)
so that we are now checking collisions between tag values, rather than
cases. But that's what I did in patch 3/4. And we still need seen
passed to Variant.check(), because that's the checking added in 2/4.
Okay, you've convinced me - when I post v9, I'll reorder these four
patches to put 3/4 first.
>
>
> class QAPISchemaObjectTypeVariant(QAPISchemaObjectTypeMember):
>
> Then only one caller about 2-4., namely QAPISchemaObjectType.check().
> Simplify radically: move 2-4. to the caller that cares, drop parameters
> all_members and seen.
Nope - because seen (well, a copy of seen) is still important to patch 2/4.
>
> Still to do then: non-variant member collision checking. Factor out
> 3. into a helper function, use it for non-variant members.
Factoring into a helper function is done in 4/4. I can try and
rearrange that earlier, too.
>
> What do you think?
>
Can you at least look at 2, 3, and 4 to see where I'm headed, and then I
can rearrange things for the v9 spin? We're probably talking a bit past
each other, with the same end goal, but a muddle in the middle of how to
get there.
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]
next prev parent reply other threads:[~2015-11-03 13:26 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-28 17:14 [Qemu-devel] [PATCH v8 00/17] alternate layout (post-introspection cleanups, subset C) Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 01/17] qapi: Use generated TestStruct machinery in tests Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 02/17] qapi: Strengthen test of TestStructList Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 03/17] qapi: Provide nicer array names in introspection Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 04/17] qapi-introspect: Guarantee particular sorting Eric Blake
2015-10-30 11:20 ` Markus Armbruster
2015-10-30 15:41 ` Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 05/17] qapi: Track simple union tag in object.local_members Eric Blake
2015-10-30 12:54 ` Markus Armbruster
2015-10-30 16:32 ` Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 06/17] qapi-types: Consolidate gen_struct() and gen_union() Eric Blake
2015-10-30 13:01 ` Markus Armbruster
2015-10-30 16:36 ` Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 07/17] qapi: Rework collision assertions Eric Blake
2015-11-02 15:37 ` Markus Armbruster
2015-11-02 17:20 ` Eric Blake
2015-11-02 21:24 ` Eric Blake
2015-11-03 7:56 ` Markus Armbruster
2015-11-03 13:30 ` Eric Blake
2015-11-02 22:41 ` [Qemu-devel] [PATCH v8.5 0/4] rework of 7/17 Eric Blake
2015-11-02 22:41 ` [Qemu-devel] [PATCH v8.5 1/4] qapi: Drop all_members parameter from check() Eric Blake
2015-11-03 11:06 ` Markus Armbruster
2015-11-03 13:26 ` Eric Blake [this message]
2015-11-03 14:02 ` Markus Armbruster
2015-11-03 14:12 ` Eric Blake
2015-11-03 16:19 ` Markus Armbruster
2015-11-03 17:34 ` Eric Blake
2015-11-03 14:04 ` [Qemu-devel] [PATCH 1/7] qapi: Drop obsolete tag value collision assertions Markus Armbruster
2015-11-03 14:04 ` [Qemu-devel] [PATCH 2/7] qapi: Simplify QAPISchemaObjectTypeMember.check() Markus Armbruster
2015-11-03 14:04 ` [Qemu-devel] [PATCH 3/7] qapi: Clean up after previous commit Markus Armbruster
2015-11-03 14:04 ` [Qemu-devel] [PATCH 4/7] qapi: Fix up commit 7618b91's clash sanity checking change Markus Armbruster
2015-11-03 14:04 ` [Qemu-devel] [PATCH 5/7] qapi: Eliminate QAPISchemaObjectType.check() variable members Markus Armbruster
2015-11-03 14:04 ` [Qemu-devel] [PATCH 6/7] qapi: Factor out QAPISchemaObjectTypeMember.check_clash() Markus Armbruster
2015-11-03 14:04 ` [Qemu-devel] [PATCH 7/7] qapi: QAPISchemaObjectTypeVariants.check() Markus Armbruster
2015-11-02 22:41 ` [Qemu-devel] [PATCH v8.5 2/4] qapi: Check for QMP collisions of flat union branches Eric Blake
2015-11-02 22:41 ` [Qemu-devel] [PATCH v8.5 3/4] qapi: Fix check for variant tag values collision Eric Blake
2015-11-02 22:41 ` [Qemu-devel] [PATCH v8.5 4/4] qapi: Consolidate collision detection code Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 08/17] qapi: Remove outdated tests related to QMP/branch collisions Eric Blake
2015-11-03 16:32 ` Markus Armbruster
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 09/17] qapi: Add positive tests to qapi-schema-test Eric Blake
2015-11-03 16:43 ` Markus Armbruster
2015-11-03 16:56 ` Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 10/17] qapi: Simplify visiting of alternate types Eric Blake
2015-11-03 18:30 ` Markus Armbruster
2015-11-03 18:59 ` Eric Blake
2015-11-04 7:30 ` Markus Armbruster
2015-11-04 16:03 ` Markus Armbruster
2015-11-04 20:52 ` Eric Blake
2015-11-05 7:17 ` Markus Armbruster
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 11/17] qapi: Fix alternates that accept 'number' but not 'int' Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 12/17] qapi: Remove dead visitor code Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 13/17] qapi: Plug leaks in test-qmp-* Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 14/17] qapi: Simplify error testing " Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 15/17] qapi: Test failure in middle of array parse Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 16/17] qapi: More tests of input arrays Eric Blake
2015-10-28 17:14 ` [Qemu-devel] [PATCH v8 17/17] qapi: Simplify visits of optional fields Eric Blake
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5638B613.2020402@redhat.com \
--to=eblake@redhat.com \
--cc=armbru@redhat.com \
--cc=mdroth@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).