]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
qmp: Check for returned data from __json_read in get_events
authorFam Zheng <famz@redhat.com>
Mon, 24 Feb 2014 05:45:01 +0000 (13:45 +0800)
committerLuiz Capitulino <lcapitulino@redhat.com>
Fri, 28 Feb 2014 18:35:53 +0000 (13:35 -0500)
When QEMU process aborts and socket is closed, qmp client will not
detect it. When this happens, some qemu-iotests scripts will enter an
endless loop waiting for qmp events.

It's better we raise an exception in qmp.py to catch this and make the
test script stop.

Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
scripts/qmp/qmp.py

index 5c9717594f53409b55f6a88d03eac5fbccfe4906..20b6ec795e38daff24718c0976881863feba58fe 100644 (file)
@@ -171,7 +171,12 @@ class QEMUMonitorProtocol:
                 pass
         self.__sock.setblocking(1)
         if not self.__events and wait:
-            self.__json_read(only_event=True)
+            ret = self.__json_read(only_event=True)
+            if ret == None:
+                # We are in blocking mode, if don't get anything, something
+                # went wrong
+                raise QMPConnectError("Error while reading from socket")
+
         return self.__events
 
     def clear_events(self):