mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 20:33:54 -06:00
python/qmp.py: re-absorb MonitorResponseError
When I initially split this out, I considered this more of a machine error than a QMP protocol error, but I think that's misguided. Move this back to qmp.py and name it QMPResponseError. Convert qmp.command() to use this exception type. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Message-Id: <20200710052220.3306-4-jsnow@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
This commit is contained in:
parent
2012453ddd
commit
e3a23b4803
3 changed files with 21 additions and 18 deletions
|
@ -56,19 +56,6 @@ class AbnormalShutdown(QEMUMachineError):
|
|||
"""
|
||||
|
||||
|
||||
class MonitorResponseError(qmp.QMPError):
|
||||
"""
|
||||
Represents erroneous QMP monitor reply
|
||||
"""
|
||||
def __init__(self, reply):
|
||||
try:
|
||||
desc = reply["error"]["desc"]
|
||||
except KeyError:
|
||||
desc = reply
|
||||
super().__init__(desc)
|
||||
self.reply = reply
|
||||
|
||||
|
||||
class QEMUMachine:
|
||||
"""
|
||||
A QEMU VM
|
||||
|
@ -533,7 +520,7 @@ class QEMUMachine:
|
|||
if reply is None:
|
||||
raise qmp.QMPError("Monitor is closed")
|
||||
if "error" in reply:
|
||||
raise MonitorResponseError(reply)
|
||||
raise qmp.QMPResponseError(reply)
|
||||
return reply["return"]
|
||||
|
||||
def get_qmp_event(self, wait=False):
|
||||
|
|
|
@ -61,6 +61,19 @@ class QMPTimeoutError(QMPError):
|
|||
"""
|
||||
|
||||
|
||||
class QMPResponseError(QMPError):
|
||||
"""
|
||||
Represents erroneous QMP monitor reply
|
||||
"""
|
||||
def __init__(self, reply: QMPMessage):
|
||||
try:
|
||||
desc = reply['error']['desc']
|
||||
except KeyError:
|
||||
desc = reply
|
||||
super().__init__(desc)
|
||||
self.reply = reply
|
||||
|
||||
|
||||
class QEMUMonitorProtocol:
|
||||
"""
|
||||
Provide an API to connect to QEMU via QEMU Monitor Protocol (QMP) and then
|
||||
|
@ -251,8 +264,8 @@ class QEMUMonitorProtocol:
|
|||
Build and send a QMP command to the monitor, report errors if any
|
||||
"""
|
||||
ret = self.cmd(cmd, kwds)
|
||||
if "error" in ret:
|
||||
raise Exception(ret['error']['desc'])
|
||||
if 'error' in ret:
|
||||
raise QMPResponseError(ret)
|
||||
return ret['return']
|
||||
|
||||
def pull_event(self, wait=False):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue