From: Pierrick Bouvier <pierrick.bouvier@linaro.org>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org, alex.bennee@linaro.org,
stefanha@redhat.com, peter.maydell@linaro.org,
richard.henderson@linaro.org, pbonzini@redhat.com,
jsnow@redhat.com, philmd@linaro.org, berrange@redhat.com,
thuth@redhat.com, Michael Roth <michael.roth@amd.com>
Subject: Re: [PATCH 01/13] qapi: introduce 'runtime_if' for QAPI json
Date: Thu, 15 May 2025 08:42:48 -0700 [thread overview]
Message-ID: <b1497baf-323b-431c-a6bc-2758db3cc428@linaro.org> (raw)
In-Reply-To: <878qmy5vxc.fsf@pond.sub.org>
On 5/14/25 9:39 PM, Markus Armbruster wrote:
> Consensus is to shelve this series, and eliminate target-specific
> conditionals instead. But let me scribble down a few notes for
> posterity just in case we ever take it off the shelf again.
>
> Pierrick Bouvier <pierrick.bouvier@linaro.org> writes:
>
>> This new entry can be used in QAPI json to specify a runtime conditional
>> to expose any entry, similar to existing 'if', that applies at compile
>> time, thanks to ifdef. The element is always defined in C, but not
>> exposed through the schema and visit functions, thus being hidden for a
>> QMP consumer.
>>
>> QAPISchemaIfCond is extended to parse this information. A first version
>> was tried duplicating this, but this proved to be much more boilerplate
>> than needed to pass information through all function calls.
>>
>> 'if' and 'runtime_if' can be combined elegantly on a single item,
>> allowing to restrict an element to be present based on compile time
>> defines, and runtime checks at the same time.
>
> I understand the combination is "and", i.e. both conditions need to be
> satisfied.
>
Yes, if results in introduction of an ifdef, and runtime_if, an if.
#ifdef IF_CONDITION
if (runtime_if_condition()) {
...
}
#endif
> The syntax change I'd consider elegant (it's subjective!) is *none*.
> Instead of
>
> 'if': 'CONFIG_DINGS',
> 'runtime_if': 'target_bums()'
>
> use
>
> 'if': ['all': ['CONFIG_DINGS', 'target_bums()']]
>
Why not, but I don't see how to identify what would be an ifdef, vs what
is an if, and I don't think that using something like
"is_capital_letters" or "has_parentheses" is a good thing.
> Might need semantic restrictions to simplify the implementation.
>
>> Note: This commit only adds parsing of runtime_if, and does not hide
>> anything yet.
>>
>> For review:
>>
>> - I don't really like "runtime_if" name.
>> What would make sense, IMHO, is to rename existing 'if' to 'ifdef',
>> and reuse 'if' for 'runtime_if'. Since it requires invasive changes, I
>> would prefer to get agreement before wasting time in case you prefer
>> any other naming convention. Let me know what you'd like.
>>
>> - As mentioned in second paragraph, I think our best implementation
>> would be to extend existing QAPISchemaIfCond, as it's really
>> complicated to extend all call sites if we have another new object.
>
> I figure the alternative is an abstract type with two concrete subtypes,
> one for each kind of conditional.
>
>> - No tests/doc added at this time, as I prefer to wait that we decide
>> about naming and proposed approach first.
>
> We'd need
>
> * Positive test(s) in tests/qapi-schema/qapi-schema-test.json
>
> * Negative tests similar to the ones with have for 'if'
>
> * Documentation update docs/devel/qapi-code-gen.rst
>
As we decided to follow the approach (1) "Drop target-specific
conditionals", I will focus on the other series, and drop this one.
Thanks,
Pierrick
next prev parent reply other threads:[~2025-05-15 15:43 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-07 23:14 [PATCH 00/13] single-binary: make QAPI generated files common Pierrick Bouvier
2025-05-07 23:14 ` [PATCH 01/13] qapi: introduce 'runtime_if' for QAPI json Pierrick Bouvier
2025-05-08 6:53 ` Philippe Mathieu-Daudé
2025-05-08 20:22 ` Pierrick Bouvier
2025-05-15 4:39 ` Markus Armbruster
2025-05-15 15:42 ` Pierrick Bouvier [this message]
2025-05-07 23:14 ` [PATCH 02/13] qapi/introspect: generate schema as a QObject directly Pierrick Bouvier
2025-05-07 23:14 ` [PATCH 03/13] qobject/qlit: allow to hide dict or list entries Pierrick Bouvier
2025-05-08 14:21 ` Daniel P. Berrangé
2025-05-08 20:25 ` Pierrick Bouvier
2025-05-07 23:14 ` [PATCH 04/13] qapi/introspect: hide fields in schema Pierrick Bouvier
2025-05-07 23:14 ` [PATCH 05/13] qapi/commands: register commands conditionally Pierrick Bouvier
2025-05-07 23:14 ` [PATCH 06/13] qapi/visit: hide fields in JSON marshalling Pierrick Bouvier
2025-05-07 23:14 ` [PATCH 07/13] qapi: add access to qemu/target-info.h Pierrick Bouvier
2025-05-08 6:57 ` Philippe Mathieu-Daudé
2025-05-07 23:14 ` [PATCH 08/13] qemu/target-info: implement missing helpers Pierrick Bouvier
2025-05-08 6:40 ` Philippe Mathieu-Daudé
2025-05-08 20:30 ` Pierrick Bouvier
2025-05-07 23:14 ` [PATCH 09/13] qapi: transform target specific 'if' in runtime checks Pierrick Bouvier
2025-05-08 6:44 ` Philippe Mathieu-Daudé
2025-05-08 14:40 ` Daniel P. Berrangé
2025-05-08 20:48 ` Pierrick Bouvier
2025-05-10 6:57 ` Markus Armbruster
2025-05-13 0:36 ` Pierrick Bouvier
2025-05-13 7:08 ` Markus Armbruster
2025-05-13 22:52 ` Pierrick Bouvier
2025-05-14 7:13 ` Markus Armbruster
2025-05-14 16:54 ` Pierrick Bouvier
2025-05-14 14:09 ` Markus Armbruster
2025-05-14 16:50 ` Pierrick Bouvier
2025-05-07 23:14 ` [PATCH 10/13] qapi: add weak stubs for target specific commands Pierrick Bouvier
2025-05-08 6:57 ` Philippe Mathieu-Daudé
2025-05-08 20:33 ` Pierrick Bouvier
2025-05-07 23:14 ` [PATCH 11/13] qapi: make all generated files common Pierrick Bouvier
2025-05-08 6:57 ` Philippe Mathieu-Daudé
2025-05-07 23:14 ` [PATCH 13/13] [ANNEX] build/qapi: after series Pierrick Bouvier
2025-05-07 23:33 ` [PATCH 00/13] single-binary: make QAPI generated files common Pierrick Bouvier
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=b1497baf-323b-431c-a6bc-2758db3cc428@linaro.org \
--to=pierrick.bouvier@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=jsnow@redhat.com \
--cc=michael.roth@amd.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=stefanha@redhat.com \
--cc=thuth@redhat.com \
/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).