From: John Snow <jsnow@redhat.com>
To: marcandre.lureau@redhat.com, qemu-devel@nongnu.org
Cc: armbru@redhat.com
Subject: Re: [PATCH v3 4/9] qapi: introduce IfPredicateList and IfAny
Date: Wed, 12 May 2021 19:26:44 -0400 [thread overview]
Message-ID: <d974cb2c-0f54-9c19-f973-c74cee3d192b@redhat.com> (raw)
In-Reply-To: <20210429134032.1125111-5-marcandre.lureau@redhat.com>
On 4/29/21 9:40 AM, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> Refactor IfAll class, to introduce a base class IfPredicateList and add
> IfAny for the 'any' conditions.
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> scripts/qapi/common.py | 32 +++++++++++++++++++++++++++-----
> 1 file changed, 27 insertions(+), 5 deletions(-)
>
> diff --git a/scripts/qapi/common.py b/scripts/qapi/common.py
> index 59a7ee2f32..102d347348 100644
> --- a/scripts/qapi/common.py
> +++ b/scripts/qapi/common.py
> @@ -224,23 +224,45 @@ def __eq__(self, other: object) -> bool:
> return self.option == other.option
>
>
> -class IfAll(IfPredicate):
> +class IfPredicateList(IfPredicate):
> + C_SEP = ""
> + DOC_SEP = ""
> +
> def __init__(self, pred_list: Sequence[IfPredicate]):
> self.pred_list = pred_list
>
> def cgen(self) -> str:
> - return " && ".join([p.cgen() for p in self.pred_list])
> + sep = " " + self.C_SEP + " "
> + gen = sep.join([p.cgen() for p in self.pred_list])
> + if len(self.pred_list) == 1:
> + return gen
> + return "(%s)" % gen
>
> def docgen(self) -> str:
> - return " and ".join([p.docgen() for p in self.pred_list])
> + sep = " " + self.DOC_SEP + " "
> + gen = sep.join([p.docgen() for p in self.pred_list])
> + if len(self.pred_list) == 1:
> + return gen
> + return "(%s)" % gen
>
> def __bool__(self) -> bool:
> return bool(self.pred_list)
>
> def __repr__(self) -> str:
> - return f"IfAll({self.pred_list})"
> + ty = type(self)
> + return f"{ty.__qualname__}({self.pred_list})"
>
> def __eq__(self, other: object) -> bool:
> - if not isinstance(other, IfAll):
> + if not isinstance(other, type(self)):
> return False
> return self.pred_list == other.pred_list
> +
> +
> +class IfAll(IfPredicateList):
> + C_SEP = "&&"
> + DOC_SEP = "and"
> +
> +
> +class IfAny(IfPredicateList):
> + C_SEP = "||"
> + DOC_SEP = "or"
>
I do like the way these get combined. Is there a reason it's not
squashed into the earlier commit?
(Qualms about not having a visitor or a callback or whatever you want to
call it remain, but I'll stop remarking on that for the rest of this
series.)
Tested-by: John Snow <jsnow@redhat.com>
next prev parent reply other threads:[~2021-05-12 23:30 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-29 13:40 [PATCH v3 0/9] qapi: untie 'if' conditions from C preprocessor marcandre.lureau
2021-04-29 13:40 ` [PATCH v3 1/9] qapi: replace List[str] by QAPISchemaIfCond marcandre.lureau
2021-05-12 20:53 ` John Snow
2021-05-17 11:17 ` Marc-André Lureau
2021-05-17 16:30 ` John Snow
2021-04-29 13:40 ` [PATCH v3 2/9] qapi: move gen_if/gen_endif to QAPISchemaIfCond marcandre.lureau
2021-05-11 16:39 ` Stefan Hajnoczi
2021-05-12 12:36 ` Marc-André Lureau
2021-05-12 18:53 ` John Snow
2021-05-17 11:18 ` Marc-André Lureau
2021-05-12 21:01 ` John Snow
2021-05-21 14:35 ` Markus Armbruster
2021-04-29 13:40 ` [PATCH v3 3/9] qapi: start building an 'if' predicate tree marcandre.lureau
2021-05-12 21:39 ` John Snow
2021-05-17 11:18 ` Marc-André Lureau
2021-05-17 16:34 ` John Snow
2021-05-21 14:48 ` Markus Armbruster
2021-05-21 16:18 ` John Snow
2021-06-08 13:57 ` Markus Armbruster
2021-04-29 13:40 ` [PATCH v3 4/9] qapi: introduce IfPredicateList and IfAny marcandre.lureau
2021-05-12 23:26 ` John Snow [this message]
2021-05-17 11:18 ` Marc-André Lureau
2021-05-17 16:35 ` John Snow
2021-04-29 13:40 ` [PATCH v3 5/9] qapi: add IfNot marcandre.lureau
2021-05-12 23:32 ` John Snow
2021-04-29 13:40 ` [PATCH v3 6/9] qapi: normalize 'if' condition to IfPredicate tree marcandre.lureau
2021-05-12 23:47 ` John Snow
2021-05-17 11:18 ` Marc-André Lureau
2021-05-17 16:41 ` John Snow
2021-04-29 13:40 ` [PATCH v3 7/9] qapi: convert 'if' C-expressions to the new syntax tree marcandre.lureau
2021-05-12 23:51 ` John Snow
2021-05-17 11:20 ` Marc-André Lureau
2021-04-29 13:40 ` [PATCH v3 8/9] qapi: make 'if' condition strings simple identifiers marcandre.lureau
2021-05-12 23:56 ` John Snow
2021-04-29 13:40 ` [PATCH v3 9/9] docs: update the documentation about schema configuration marcandre.lureau
2021-05-13 0:01 ` John Snow
2021-05-11 16:52 ` [PATCH v3 0/9] qapi: untie 'if' conditions from C preprocessor Stefan Hajnoczi
2021-05-12 12:39 ` Marc-André Lureau
2021-05-12 17:43 ` Markus Armbruster
2021-05-12 18:58 ` John Snow
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=d974cb2c-0f54-9c19-f973-c74cee3d192b@redhat.com \
--to=jsnow@redhat.com \
--cc=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 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).