From: Stefan Hajnoczi <stefanha@redhat.com>
To: John Snow <jsnow@redhat.com>
Cc: armbru@redhat.com, crosa@redhat.com, qemu-devel@nongnu.org,
ehabkost@redhat.com
Subject: Re: [PATCH RFC 6/7] qmp_protocol: add QMP client implementation
Date: Wed, 14 Apr 2021 06:44:32 +0100 [thread overview]
Message-ID: <YHaBQOYfMSuXoMAj@stefanha-x1.localdomain> (raw)
In-Reply-To: <20210413155553.2660523-7-jsnow@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 1564 bytes --]
On Tue, Apr 13, 2021 at 11:55:52AM -0400, John Snow wrote:
> + async def _execute(self, msg: Message) -> object:
> + """
> + The same as `execute_msg()`, but without safety mechanisms.
> +
> + Does not assign an execution ID and does not check that the form
> + of the message being sent is valid.
> +
> + This method *Requires* an 'id' parameter to be set on the
> + message, it will not set one for you like `execute()` or
> + `execute_msg()`.
> +
> + Do not use "__aqmp#00000" style IDs, use something else to avoid
> + potential clashes. If this ID clashes with an ID presently
> + in-use or otherwise clashes with the auto-generated IDs, the
> + response routing mechanisms in _on_message may very well fail
> + loudly enough to cause the entire loop to crash.
> +
> + The ID should be a str; or at least something JSON
> + serializable. It *must* be hashable.
> + """
> + exec_id = cast(str, msg['id'])
> + self.logger.debug("Execute(%s): '%s'", exec_id,
> + msg.get('execute', msg.get('exec-oob')))
> +
> + queue: asyncio.Queue[Message] = asyncio.Queue(maxsize=1)
> + task = create_task(self._bh_execute(msg, queue))
We're already in a coroutine, can we await queue.get() ourselves instead
of creating a new task?
I guess this is done in order to use Task.cancel() in _bh_disconnect()
but it seems simpler to use queue both for success and cancellation.
Fewer tasks are easier to reason about.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2021-04-14 8:23 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-13 15:55 [PATCH RFC 0/7] RFC: Asynchronous QMP Draft John Snow
2021-04-13 15:55 ` [PATCH RFC 1/7] util: asyncio-related helpers John Snow
2021-04-13 15:55 ` [PATCH RFC 2/7] error: Error classes and so on John Snow
2021-04-13 15:55 ` [PATCH RFC 3/7] protocol: generic async message-based protocol loop John Snow
2021-04-13 20:00 ` Stefan Hajnoczi
2021-04-14 17:29 ` John Snow
2021-04-15 9:14 ` Stefan Hajnoczi
2021-04-13 15:55 ` [PATCH RFC 4/7] message: add QMP Message type John Snow
2021-04-13 20:07 ` Stefan Hajnoczi
2021-04-14 17:39 ` John Snow
2021-04-13 15:55 ` [PATCH RFC 5/7] models: Add well-known QMP objects John Snow
2021-04-13 15:55 ` [PATCH RFC 6/7] qmp_protocol: add QMP client implementation John Snow
2021-04-14 5:44 ` Stefan Hajnoczi [this message]
2021-04-14 17:50 ` John Snow
2021-04-15 9:23 ` Stefan Hajnoczi
2021-04-13 15:55 ` [PATCH RFC 7/7] linter config John Snow
2021-04-14 6:38 ` [PATCH RFC 0/7] RFC: Asynchronous QMP Draft Stefan Hajnoczi
2021-04-14 19:17 ` John Snow
2021-04-15 9:52 ` Stefan Hajnoczi
2021-04-20 2:26 ` John Snow
2021-04-20 2:47 ` 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=YHaBQOYfMSuXoMAj@stefanha-x1.localdomain \
--to=stefanha@redhat.com \
--cc=armbru@redhat.com \
--cc=crosa@redhat.com \
--cc=ehabkost@redhat.com \
--cc=jsnow@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).