Skip to content

Commit

Permalink
qemu.py: Don't set _popen=None on error/shutdown
Browse files Browse the repository at this point in the history
Keep the Popen object around to we can query its exit code later.

To keep the existing 'self._popen is None' checks working, add a
is_running() method, that will check if the process is still running.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20170526181200.17227-2-ehabkost@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
  • Loading branch information
ehabkost committed Jun 5, 2017
1 parent 99861ec commit 37bbcd5
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions scripts/qemu.py
Expand Up @@ -85,8 +85,11 @@ def _remove_if_exists(path):
return
raise

def is_running(self):
return self._popen and (self._popen.returncode is None)

def get_pid(self):
if not self._popen:
if not self.is_running():
return None
return self._popen.pid

Expand Down Expand Up @@ -128,16 +131,16 @@ def launch(self):
stderr=subprocess.STDOUT, shell=False)
self._post_launch()
except:
if self._popen:
if self.is_running():
self._popen.kill()
self._popen.wait()
self._load_io_log()
self._post_shutdown()
self._popen = None
raise

def shutdown(self):
'''Terminate the VM and clean up'''
if not self._popen is None:
if self.is_running():
try:
self._qmp.cmd('quit')
self._qmp.close()
Expand All @@ -149,7 +152,6 @@ def shutdown(self):
sys.stderr.write('qemu received signal %i: %s\n' % (-exitcode, ' '.join(self._args)))
self._load_io_log()
self._post_shutdown()
self._popen = None

underscore_to_dash = string.maketrans('_', '-')
def qmp(self, cmd, conv_keys=True, **args):
Expand Down

0 comments on commit 37bbcd5

Please sign in to comment.