After this patch, qemu.aqmp.legacy.QEMUMonitorProtocol no longer inherits from qemu.qmp.QEMUMonitorProtocol. To do this, several inherited methods need to be explicitly re-defined. (Licensing: This is copying and modifying GPLv2-only code into a GPLv2-only file.) Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Reviewed-by: Beraldo Leal <bleal@redhat.com> Message-id: 20220330172812.3427355-4-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
		
			
				
	
	
		
			236 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			236 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
"""
 | 
						|
Sync QMP Wrapper
 | 
						|
 | 
						|
This class pretends to be qemu.qmp.QEMUMonitorProtocol.
 | 
						|
"""
 | 
						|
 | 
						|
#
 | 
						|
# Copyright (C) 2009-2022 Red Hat Inc.
 | 
						|
#
 | 
						|
# Authors:
 | 
						|
#  Luiz Capitulino <lcapitulino@redhat.com>
 | 
						|
#  John Snow <jsnow@redhat.com>
 | 
						|
#
 | 
						|
# This work is licensed under the terms of the GNU GPL, version 2.  See
 | 
						|
# the COPYING file in the top-level directory.
 | 
						|
#
 | 
						|
 | 
						|
import asyncio
 | 
						|
from types import TracebackType
 | 
						|
from typing import (
 | 
						|
    Any,
 | 
						|
    Awaitable,
 | 
						|
    Dict,
 | 
						|
    List,
 | 
						|
    Optional,
 | 
						|
    Type,
 | 
						|
    TypeVar,
 | 
						|
    Union,
 | 
						|
)
 | 
						|
 | 
						|
from .error import QMPError
 | 
						|
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
 | 
						|
 | 
						|
 | 
						|
class QMPBadPortError(QMPError):
 | 
						|
    """
 | 
						|
    Unable to parse socket address: Port was non-numerical.
 | 
						|
    """
 | 
						|
 | 
						|
 | 
						|
class QEMUMonitorProtocol:
 | 
						|
    def __init__(self, address: SocketAddrT,
 | 
						|
                 server: bool = False,
 | 
						|
                 nickname: Optional[str] = None):
 | 
						|
 | 
						|
        self._aqmp = QMPClient(nickname)
 | 
						|
        self._aloop = asyncio.get_event_loop()
 | 
						|
        self._address = address
 | 
						|
        self._timeout: Optional[float] = None
 | 
						|
 | 
						|
        if server:
 | 
						|
            self._sync(self._aqmp.start_server(self._address))
 | 
						|
 | 
						|
    _T = TypeVar('_T')
 | 
						|
 | 
						|
    def _sync(
 | 
						|
            self, future: Awaitable[_T], timeout: Optional[float] = None
 | 
						|
    ) -> _T:
 | 
						|
        return self._aloop.run_until_complete(
 | 
						|
            asyncio.wait_for(future, timeout=timeout)
 | 
						|
        )
 | 
						|
 | 
						|
    def _get_greeting(self) -> Optional[QMPMessage]:
 | 
						|
        if self._aqmp.greeting is not None:
 | 
						|
            # pylint: disable=protected-access
 | 
						|
            return self._aqmp.greeting._asdict()
 | 
						|
        return None
 | 
						|
 | 
						|
    def __enter__(self: _T) -> _T:
 | 
						|
        # Implement context manager enter function.
 | 
						|
        return self
 | 
						|
 | 
						|
    def __exit__(self,
 | 
						|
                 # pylint: disable=duplicate-code
 | 
						|
                 # see https://github.com/PyCQA/pylint/issues/3619
 | 
						|
                 exc_type: Optional[Type[BaseException]],
 | 
						|
                 exc_val: Optional[BaseException],
 | 
						|
                 exc_tb: Optional[TracebackType]) -> None:
 | 
						|
        # Implement context manager exit function.
 | 
						|
        self.close()
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def parse_address(cls, address: str) -> SocketAddrT:
 | 
						|
        """
 | 
						|
        Parse a string into a QMP address.
 | 
						|
 | 
						|
        Figure out if the argument is in the port:host form.
 | 
						|
        If it's not, it's probably a file path.
 | 
						|
        """
 | 
						|
        components = address.split(':')
 | 
						|
        if len(components) == 2:
 | 
						|
            try:
 | 
						|
                port = int(components[1])
 | 
						|
            except ValueError:
 | 
						|
                msg = f"Bad port: '{components[1]}' in '{address}'."
 | 
						|
                raise QMPBadPortError(msg) from None
 | 
						|
            return (components[0], port)
 | 
						|
 | 
						|
        # Treat as filepath.
 | 
						|
        return address
 | 
						|
 | 
						|
    def connect(self, negotiate: bool = True) -> Optional[QMPMessage]:
 | 
						|
        self._aqmp.await_greeting = negotiate
 | 
						|
        self._aqmp.negotiate = negotiate
 | 
						|
 | 
						|
        self._sync(
 | 
						|
            self._aqmp.connect(self._address)
 | 
						|
        )
 | 
						|
        return self._get_greeting()
 | 
						|
 | 
						|
    def accept(self, timeout: Optional[float] = 15.0) -> QMPMessage:
 | 
						|
        self._aqmp.await_greeting = True
 | 
						|
        self._aqmp.negotiate = True
 | 
						|
 | 
						|
        self._sync(self._aqmp.accept(), timeout)
 | 
						|
 | 
						|
        ret = self._get_greeting()
 | 
						|
        assert ret is not None
 | 
						|
        return ret
 | 
						|
 | 
						|
    def cmd_obj(self, qmp_cmd: QMPMessage) -> QMPMessage:
 | 
						|
        return dict(
 | 
						|
            self._sync(
 | 
						|
                # pylint: disable=protected-access
 | 
						|
 | 
						|
                # _raw() isn't a public API, because turning off
 | 
						|
                # automatic ID assignment is discouraged. For
 | 
						|
                # compatibility with iotests *only*, do it anyway.
 | 
						|
                self._aqmp._raw(qmp_cmd, assign_id=False),
 | 
						|
                self._timeout
 | 
						|
            )
 | 
						|
        )
 | 
						|
 | 
						|
    def cmd(self, name: str,
 | 
						|
            args: Optional[Dict[str, object]] = None,
 | 
						|
            cmd_id: Optional[object] = None) -> QMPMessage:
 | 
						|
        """
 | 
						|
        Build a QMP command and send it to the QMP Monitor.
 | 
						|
 | 
						|
        @param name: command name (string)
 | 
						|
        @param args: command arguments (dict)
 | 
						|
        @param cmd_id: command id (dict, list, string or int)
 | 
						|
        """
 | 
						|
        qmp_cmd: QMPMessage = {'execute': name}
 | 
						|
        if args:
 | 
						|
            qmp_cmd['arguments'] = args
 | 
						|
        if cmd_id:
 | 
						|
            qmp_cmd['id'] = cmd_id
 | 
						|
        return self.cmd_obj(qmp_cmd)
 | 
						|
 | 
						|
    def command(self, cmd: str, **kwds: object) -> QMPReturnValue:
 | 
						|
        return self._sync(
 | 
						|
            self._aqmp.execute(cmd, kwds),
 | 
						|
            self._timeout
 | 
						|
        )
 | 
						|
 | 
						|
    def pull_event(self,
 | 
						|
                   wait: Union[bool, float] = False) -> Optional[QMPMessage]:
 | 
						|
        if not wait:
 | 
						|
            # wait is False/0: "do not wait, do not except."
 | 
						|
            if self._aqmp.events.empty():
 | 
						|
                return None
 | 
						|
 | 
						|
        # If wait is 'True', wait forever. If wait is False/0, the events
 | 
						|
        # queue must not be empty; but it still needs some real amount
 | 
						|
        # of time to complete.
 | 
						|
        timeout = None
 | 
						|
        if wait and isinstance(wait, float):
 | 
						|
            timeout = wait
 | 
						|
 | 
						|
        return dict(
 | 
						|
            self._sync(
 | 
						|
                self._aqmp.events.get(),
 | 
						|
                timeout
 | 
						|
            )
 | 
						|
        )
 | 
						|
 | 
						|
    def get_events(self, wait: Union[bool, float] = False) -> List[QMPMessage]:
 | 
						|
        events = [dict(x) for x in self._aqmp.events.clear()]
 | 
						|
        if events:
 | 
						|
            return events
 | 
						|
 | 
						|
        event = self.pull_event(wait)
 | 
						|
        return [event] if event is not None else []
 | 
						|
 | 
						|
    def clear_events(self) -> None:
 | 
						|
        self._aqmp.events.clear()
 | 
						|
 | 
						|
    def close(self) -> None:
 | 
						|
        self._sync(
 | 
						|
            self._aqmp.disconnect()
 | 
						|
        )
 | 
						|
 | 
						|
    def settimeout(self, timeout: Optional[float]) -> None:
 | 
						|
        self._timeout = timeout
 | 
						|
 | 
						|
    def send_fd_scm(self, fd: int) -> None:
 | 
						|
        self._aqmp.send_fd_scm(fd)
 | 
						|
 | 
						|
    def __del__(self) -> None:
 | 
						|
        if self._aqmp.runstate == Runstate.IDLE:
 | 
						|
            return
 | 
						|
 | 
						|
        if not self._aloop.is_running():
 | 
						|
            self.close()
 | 
						|
        else:
 | 
						|
            # Garbage collection ran while the event loop was running.
 | 
						|
            # Nothing we can do about it now, but if we don't raise our
 | 
						|
            # own error, the user will be treated to a lot of traceback
 | 
						|
            # they might not understand.
 | 
						|
            raise QMPError(
 | 
						|
                "QEMUMonitorProtocol.close()"
 | 
						|
                " was not called before object was garbage collected"
 | 
						|
            )
 |