From: "Andreas Färber" <afaerber@suse.de>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL 02/10] qom: Introduce ObjectPropertyIterator struct for iteration
Date: Thu, 19 Nov 2015 11:24:24 +0100 [thread overview]
Message-ID: <564DA358.4060501@suse.de> (raw)
In-Reply-To: <87vb8ybb1l.fsf@blackfin.pond.sub.org>
Am 19.11.2015 um 10:20 schrieb Markus Armbruster:
> Andreas Färber <afaerber@suse.de> writes:
>
>> From: "Daniel P. Berrange" <berrange@redhat.com>
>>
>> Some users of QOM need to be able to iterate over properties
>> defined against an object instance. Currently they are just
>> directly using the QTAIL macros against the object properties
>> data structure.
>>
>> This is bad because it exposes them to changes in the data
>> structure used to store properties, as well as changes in
>> functionality such as ability to register properties against
>> the class.
>>
>> This provides an ObjectPropertyIterator struct which will
>> insulate the callers from the particular data structure
>> used to store properties. It can be used thus
>>
>> ObjectProperty *prop;
>> ObjectPropertyIterator *iter;
>>
>> iter = object_property_iter_init(obj);
>> while ((prop = object_property_iter_next(iter))) {
>> ... do something with prop ...
>> }
>> object_property_iter_free(iter);
>
> I see my review hasn't been addressed,
Well, it has, I double-checked that the missing "Iterator" above was
already on my branch, therefore my IRC comment pointing you to qom-next.
> probably because it came late.
Other than that you only seemed to discuss design alternatives, for
which neither you nor Daniel provided any actual patch I could've
applied. While I regularly do style fixups myself, and with the series
missing -rc0 also functional fixes, posting a diff for review/record, I
do not see redesigning a 6-patch series as something I can silently do
last-minute without full respin, for which -rc1 did not leave time.
There was a v3 with iterators, and Pavel pinged v4 twice, I did once
too, and the last delay after getting the series to work was only due to
me inserting Daniel's test case (legit hardfreeze material), so ...
> Would you accept a follow-up patch to bring the iterator into line with
> existing ones?
... yes, from my perspective any such cleanups can be done post-2.5.
Please note that both patch 6/7 (included) and 7/7 (not in this pull)
enhance the iterator, so follow-up patches should be based on qom-next
please.
Thanks,
Andreas
--
SUSE Linux GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Felix Imendörffer, Jane Smithard, Graham Norton; HRB 21284 (AG Nürnberg)
next prev parent reply other threads:[~2015-11-19 10:24 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-18 20:39 [Qemu-devel] [PULL for-2.5 00/10] QOM devices patch queue 2015-11-18 Andreas Färber
2015-11-18 20:39 ` [Qemu-devel] [PULL 01/10] qdev: Change Property::offset field to ptrdiff_t type Andreas Färber
2015-11-18 20:39 ` [Qemu-devel] [PULL 02/10] qom: Introduce ObjectPropertyIterator struct for iteration Andreas Färber
2015-11-19 9:20 ` Markus Armbruster
2015-11-19 9:25 ` Daniel P. Berrange
2015-11-19 9:49 ` Markus Armbruster
2015-11-19 10:24 ` Andreas Färber [this message]
2015-11-19 13:42 ` Markus Armbruster
2015-11-18 20:39 ` [Qemu-devel] [PULL 03/10] qmp: Convert QMP code to use object property iterators Andreas Färber
2015-11-18 20:39 ` [Qemu-devel] [PULL 04/10] vl: Convert machine help " Andreas Färber
2015-11-18 20:39 ` [Qemu-devel] [PULL 05/10] ppc: Convert spapr " Andreas Färber
2015-11-18 20:39 ` [Qemu-devel] [PULL 06/10] net: Convert net filter " Andreas Färber
2015-11-18 20:39 ` [Qemu-devel] [PULL 07/10] qom: Add a test case for complex property finalization Andreas Färber
2015-11-18 20:39 ` [Qemu-devel] [PULL 08/10] qom: Replace object property list with GHashTable Andreas Färber
2015-11-18 20:39 ` [Qemu-devel] [PULL 09/10] qom: Clean up assertions to display values on failure Andreas Färber
2015-11-18 20:39 ` [Qemu-devel] [PULL 10/10] MAINTAINERS: Add check-qom-{interface, proplist} to QOM Andreas Färber
2015-11-19 13:55 ` Daniel P. Berrange
2015-11-19 13:58 ` Igor Mammedov
2015-11-19 10:54 ` [Qemu-devel] [PULL for-2.5 00/10] QOM devices patch queue 2015-11-18 Peter Maydell
2015-11-19 11:53 ` Daniel P. Berrange
2015-11-19 14:09 ` Andreas Färber
2015-11-19 14:13 ` Daniel P. Berrange
-- strict thread matches above, loose matches on Subject: below --
2015-11-18 20:22 Andreas Färber
2015-11-18 20:22 ` [Qemu-devel] [PULL 02/10] qom: Introduce ObjectPropertyIterator struct for iteration Andreas Färber
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=564DA358.4060501@suse.de \
--to=afaerber@suse.de \
--cc=armbru@redhat.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).