All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: qemu-devel@nongnu.org, armbru@redhat.com
Subject: Re: [Qemu-devel] [PATCH v7 01/14] qapi: add 'if' to top-level expressions
Date: Tue, 03 Jul 2018 18:21:34 +0200	[thread overview]
Message-ID: <87601we1dd.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <20180703155648.11933-2-marcandre.lureau@redhat.com> ("Marc-André Lureau"'s message of "Tue, 3 Jul 2018 17:56:35 +0200")

Marc-André Lureau <marcandre.lureau@redhat.com> writes:

> Accept 'if' key in top-level elements, accepted as string or list of
> string type. The following patches will modify the test visitor to
> check the value is correctly saved, and generate #if/#endif code (as a
> single #if/endif line or a series for a list).
>
> Example of 'if' key:
> { 'struct': 'TestIfStruct', 'data': { 'foo': 'int' },
>   'if': 'defined(TEST_IF_STRUCT)' }
>
> The generated code is for now *unconditional*. Later patches generate
> the conditionals.
>
> A following patch for qapi-code-gen.txt will provide more complete
> documentation for 'if' usage.

Dropping this paragraph as per review of v6.

> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> Reviewed-by: Markus Armbruster <armbru@redhat.com>
[...]
> diff --git a/docs/devel/qapi-code-gen.txt b/docs/devel/qapi-code-gen.txt
> index 94a7e8f4d0..beca020575 100644
> --- a/docs/devel/qapi-code-gen.txt
> +++ b/docs/devel/qapi-code-gen.txt
> @@ -744,6 +744,28 @@ Example: Red Hat, Inc. controls redhat.com, and may therefore add a
>  downstream command __com.redhat_drive-mirror.
>  
>  
> +=== Configuring the schema ===
> +
> +Top-level QAPI expressions.  The value must be a string or a list of
> +string.  The corresponding generated code will then guard the inclusion
> +of that member in the larger struct or function with #if IFCOND
> +(or several #if lines for a list), where IFCOND is the value of the
> +'if' key.
> +
> +'struct', 'enum', 'union', 'alternate', 'command' and 'event'
> +top-level QAPI expressions can take an 'if' keyword like:
> +
> +{ 'struct': 'IfStruct', 'data': { 'foo': 'int' },
> +  'if': 'defined(IFCOND)' }
> +
> +Please note that you are responsible to ensure that the C code will
> +compile with an arbitrary combination of conditions, since the
> +generators are unable to check it at this point.
> +
> +The presence of 'if' keys in the schema is reflected through to the
> +introspection output depending on the build configuration.
> +
> +
>  == Client JSON Protocol introspection ==
>  
>  Clients of a Client JSON Protocol commonly need to figure out what

Replacing this hunk by

  +=== Configuring the schema ===
  +
  +The 'struct', 'enum', 'union', 'alternate', 'command' and 'event'
  +top-level expressions can take an 'if' key.  Its value must be a string
  +or a list of strings.  A string is shorthand for a list containing just
  +that string.  The code generated for the top-level expression will then
  +be guarded by #if COND for each COND in the list.
  +
  +Example: a conditional struct
  +
  + { 'struct': 'IfStruct', 'data': { 'foo': 'int' },
  +   'if': ['defined(CONFIG_FOO)', 'defined(HAVE_BAR)'] }
  +
  +gets its generated code guarded like this:
  +
  + #if defined(CONFIG_FOO)
  + #if defined(HAVE_BAR)
  + ... generated code ...
  + #endif /* defined(HAVE_BAR) */
  + #endif /* defined(CONFIG_FOO) */
  +
  +Please note that you are responsible to ensure that the C code will
  +compile with an arbitrary combination of conditions, since the
  +generators are unable to check it at this point.
  +
  +The presence of 'if' keys in the schema is reflected through to the
  +introspection output depending on the build configuration.
  +
  +

as per review of v6.

[...]

  reply	other threads:[~2018-07-03 16:21 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-03 15:56 [Qemu-devel] [PATCH v7 00/14] qapi: add #if pre-processor conditions to generated code (part 1) Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 01/14] qapi: add 'if' to top-level expressions Marc-André Lureau
2018-07-03 16:21   ` Markus Armbruster [this message]
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 02/14] qapi: pass 'if' condition into QAPISchemaEntity objects Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 03/14] qapi: leave the ifcond attribute undefined until check() Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 04/14] qapi: add 'ifcond' to visitor methods Marc-André Lureau
2018-07-03 16:22   ` Markus Armbruster
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 05/14] qapi: mcgen() shouldn't indent # lines Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 06/14] qapi: add #if/#endif helpers Marc-André Lureau
2018-07-03 16:35   ` Markus Armbruster
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 07/14] qapi-introspect: modify to_qlit() to append ', ' on level > 0 Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 08/14] qapi-introspect: add preprocessor conditions to generated QLit Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 09/14] qapi/commands: add #if conditions to commands Marc-André Lureau
2018-07-03 16:36   ` Markus Armbruster
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 10/14] qapi/events: add #if conditions to events Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 11/14] qapi-types: add #if conditions to types & visitors Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 12/14] qapi: add 'If:' section to generated documentation Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 13/14] qapi: add conditions to VNC type/commands/events on the schema Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 14/14] qapi: add conditions to SPICE " Marc-André Lureau
2018-07-03 16:41 ` [Qemu-devel] [PATCH v7 00/14] qapi: add #if pre-processor conditions to generated code (part 1) Markus Armbruster

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=87601we1dd.fsf@dusky.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=marcandre.lureau@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.