From: Nikos Skalkotos Date: Thu, 18 Oct 2012 14:24:57 +0000 (+0300) Subject: Handle keaboard interrupts and TERM signals. X-Git-Tag: v0.1~10 X-Git-Url: https://code.grnet.gr/git/snf-image-creator/commitdiff_plain/9c354f13446f73458e52ac5bd7063f3e01dabbc7 Handle keaboard interrupts and TERM signals. --- diff --git a/image_creator/dialog_main.py b/image_creator/dialog_main.py index d9cea55..f9dd260 100644 --- a/image_creator/dialog_main.py +++ b/image_creator/dialog_main.py @@ -67,6 +67,7 @@ def image_creator(d, media, out): disk.cleanup() signal.signal(signal.SIGINT, signal_handler) + signal.signal(signal.SIGTERM, signal_handler) try: snapshot = disk.snapshot() dev = disk.get_device(snapshot) diff --git a/image_creator/disk.py b/image_creator/disk.py index 70c7f87..aaee6ef 100644 --- a/image_creator/disk.py +++ b/image_creator/disk.py @@ -84,13 +84,16 @@ class Disk(object): """Cleanup internal data. This needs to be called before the program ends. """ - while len(self._devices): - device = self._devices.pop() - device.destroy() - - while len(self._cleanup_jobs): - job, args = self._cleanup_jobs.pop() - job(*args) + try: + while len(self._devices): + device = self._devices.pop() + device.destroy() + finally: + # Make sure those are executed even if one of the device.destroy + # methods throws exeptions. + while len(self._cleanup_jobs): + job, args = self._cleanup_jobs.pop() + job(*args) def snapshot(self): """Creates a snapshot of the original source media of the Disk @@ -225,12 +228,14 @@ class DiskDevice(object): def destroy(self): """Destroy this DiskDevice instance.""" - if self.guestfs_enabled: - self.g.umount_all() - self.g.sync() - - # Close the guestfs handler if open - self.g.close() + # In new guestfs versions, there is a handy shutdown method for this + try: + if self.guestfs_enabled: + self.g.umount_all() + self.g.sync() + finally: + # Close the guestfs handler if open + self.g.close() def progress_callback(self, ev, eh, buf, array): position = array[2] diff --git a/image_creator/main.py b/image_creator/main.py index f5dc5fe..9996dd6 100644 --- a/image_creator/main.py +++ b/image_creator/main.py @@ -45,6 +45,7 @@ import sys import os import optparse import StringIO +import signal def check_writable_dir(option, opt_str, value, parser): @@ -187,6 +188,12 @@ def image_creator(): "(use --force to overwrite it)." % filename) disk = Disk(options.source, out) + + def signal_handler(signum, frame): + disk.cleanup() + + signal.signal(signal.SIGINT, signal_handler) + signal.signal(signal.SIGTERM, signal_handler) try: snapshot = disk.snapshot()