01f9005feb
- Backport aqmp patches from upstream which can fix iotest issues * Patches added: python-aqmp-add-__del__-method-to-legacy.patch python-aqmp-add-_session_guard.patch python-aqmp-add-SocketAddrT-to-package-r.patch python-aqmp-add-socket-bind-step-to-lega.patch python-aqmp-add-start_server-and-accept-.patch python-aqmp-copy-type-definitions-from-q.patch python-aqmp-drop-_bind_hack.patch python-aqmp-fix-docstring-typo.patch python-aqmp-Fix-negotiation-with-pre-oob.patch python-aqmp-fix-race-condition-in-legacy.patch Python-aqmp-fix-type-definitions-for-myp.patch python-aqmp-handle-asyncio.TimeoutError-.patch python-aqmp-refactor-_do_accept-into-two.patch python-aqmp-remove-_new_session-and-_est.patch python-aqmp-rename-accept-to-start_serve.patch python-aqmp-rename-AQMPError-to-QMPError.patch python-aqmp-split-_client_connected_cb-o.patch python-aqmp-squelch-pylint-warning-for-t.patch python-aqmp-stop-the-server-during-disco.patch python-introduce-qmp-shell-wrap-convenie.patch python-machine-raise-VMLaunchFailure-exc.patch python-move-qmp-shell-under-the-AQMP-pac.patch python-move-qmp-utilities-to-python-qemu.patch python-qmp-switch-qmp-shell-to-AQMP.patch python-support-recording-QMP-session-to-.patch python-upgrade-mypy-to-0.780.patch - Drop the patches which are workaround to fix iotest issues * Patches dropped: Revert-python-iotests-replace-qmp-with-a.patch Revert-python-machine-add-instance-disam.patch Revert-python-machine-add-sock_dir-prope.patch Revert-python-machine-handle-fast-QEMU-t.patch Revert-python-machine-move-more-variable.patch Revert-python-machine-remove-_remove_mon.patch OBS-URL: https://build.opensuse.org/request/show/966963 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=708
135 lines
4.6 KiB
Diff
135 lines
4.6 KiB
Diff
From: John Snow <jsnow@redhat.com>
|
|
Date: Mon, 10 Jan 2022 18:28:47 -0500
|
|
Subject: python/aqmp: copy type definitions from qmp
|
|
|
|
Git-commit: 0e6bfd8b96e407db7b0cb5e8c14cc315a7154f53
|
|
|
|
Copy the remaining type definitions from QMP into the qemu.aqmp.legacy
|
|
module. Now, users that require the legacy interface don't need to
|
|
import anything else but qemu.aqmp.legacy wrapper.
|
|
|
|
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
|
|
Reviewed-by: Beraldo Leal <bleal@redhat.com>
|
|
Signed-off-by: Li Zhang <lizhang@suse.de>
|
|
---
|
|
python/qemu/aqmp/legacy.py | 22 ++++++++++++++++++++--
|
|
python/qemu/aqmp/protocol.py | 16 ++++++++++------
|
|
2 files changed, 30 insertions(+), 8 deletions(-)
|
|
|
|
diff --git a/python/qemu/aqmp/legacy.py b/python/qemu/aqmp/legacy.py
|
|
index 2ccb136b02c1fcf586507400c056..9431fe933019b1e1c221ea3ab7bb 100644
|
|
--- a/python/qemu/aqmp/legacy.py
|
|
+++ b/python/qemu/aqmp/legacy.py
|
|
@@ -6,7 +6,9 @@ This class pretends to be qemu.qmp.QEMUMonitorProtocol.
|
|
|
|
import asyncio
|
|
from typing import (
|
|
+ Any,
|
|
Awaitable,
|
|
+ Dict,
|
|
List,
|
|
Optional,
|
|
TypeVar,
|
|
@@ -14,13 +16,29 @@ from typing import (
|
|
)
|
|
|
|
import qemu.qmp
|
|
-from qemu.qmp import QMPMessage, QMPReturnValue, SocketAddrT
|
|
|
|
from .error import AQMPError
|
|
-from .protocol import Runstate
|
|
+from .protocol import Runstate, SocketAddrT
|
|
from .qmp_client import QMPClient
|
|
|
|
|
|
+#: QMPMessage is an entire QMP message of any kind.
|
|
+QMPMessage = Dict[str, Any]
|
|
+
|
|
+#: QMPReturnValue is the 'return' value of a command.
|
|
+QMPReturnValue = object
|
|
+
|
|
+#: QMPObject is any object in a QMP message.
|
|
+QMPObject = Dict[str, object]
|
|
+
|
|
+# QMPMessage can be outgoing commands or incoming events/returns.
|
|
+# QMPReturnValue is usually a dict/json object, but due to QAPI's
|
|
+# 'returns-whitelist', it can actually be anything.
|
|
+#
|
|
+# {'return': {}} is a QMPMessage,
|
|
+# {} is the QMPReturnValue.
|
|
+
|
|
+
|
|
# pylint: disable=missing-docstring
|
|
|
|
|
|
diff --git a/python/qemu/aqmp/protocol.py b/python/qemu/aqmp/protocol.py
|
|
index c4fbe35a0e41c589059ec4fa37a8..5b4f2f0d0a81a0d2902358e9b799 100644
|
|
--- a/python/qemu/aqmp/protocol.py
|
|
+++ b/python/qemu/aqmp/protocol.py
|
|
@@ -46,6 +46,10 @@ T = TypeVar('T')
|
|
_U = TypeVar('_U')
|
|
_TaskFN = Callable[[], Awaitable[None]] # aka ``async def func() -> None``
|
|
|
|
+InternetAddrT = Tuple[str, int]
|
|
+UnixAddrT = str
|
|
+SocketAddrT = Union[UnixAddrT, InternetAddrT]
|
|
+
|
|
|
|
class Runstate(Enum):
|
|
"""Protocol session runstate."""
|
|
@@ -257,7 +261,7 @@ class AsyncProtocol(Generic[T]):
|
|
|
|
@upper_half
|
|
@require(Runstate.IDLE)
|
|
- async def accept(self, address: Union[str, Tuple[str, int]],
|
|
+ async def accept(self, address: SocketAddrT,
|
|
ssl: Optional[SSLContext] = None) -> None:
|
|
"""
|
|
Accept a connection and begin processing message queues.
|
|
@@ -275,7 +279,7 @@ class AsyncProtocol(Generic[T]):
|
|
|
|
@upper_half
|
|
@require(Runstate.IDLE)
|
|
- async def connect(self, address: Union[str, Tuple[str, int]],
|
|
+ async def connect(self, address: SocketAddrT,
|
|
ssl: Optional[SSLContext] = None) -> None:
|
|
"""
|
|
Connect to the server and begin processing message queues.
|
|
@@ -337,7 +341,7 @@ class AsyncProtocol(Generic[T]):
|
|
|
|
@upper_half
|
|
async def _new_session(self,
|
|
- address: Union[str, Tuple[str, int]],
|
|
+ address: SocketAddrT,
|
|
ssl: Optional[SSLContext] = None,
|
|
accept: bool = False) -> None:
|
|
"""
|
|
@@ -397,7 +401,7 @@ class AsyncProtocol(Generic[T]):
|
|
@upper_half
|
|
async def _establish_connection(
|
|
self,
|
|
- address: Union[str, Tuple[str, int]],
|
|
+ address: SocketAddrT,
|
|
ssl: Optional[SSLContext] = None,
|
|
accept: bool = False
|
|
) -> None:
|
|
@@ -424,7 +428,7 @@ class AsyncProtocol(Generic[T]):
|
|
await self._do_connect(address, ssl)
|
|
|
|
@upper_half
|
|
- async def _do_accept(self, address: Union[str, Tuple[str, int]],
|
|
+ async def _do_accept(self, address: SocketAddrT,
|
|
ssl: Optional[SSLContext] = None) -> None:
|
|
"""
|
|
Acting as the transport server, accept a single connection.
|
|
@@ -482,7 +486,7 @@ class AsyncProtocol(Generic[T]):
|
|
self.logger.debug("Connection accepted.")
|
|
|
|
@upper_half
|
|
- async def _do_connect(self, address: Union[str, Tuple[str, int]],
|
|
+ async def _do_connect(self, address: SocketAddrT,
|
|
ssl: Optional[SSLContext] = None) -> None:
|
|
"""
|
|
Acting as the transport client, initiate a connection to a server.
|