1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Handle OS termination signals. (#425)

* Handle OS termination signals.

* Added comment about why a timer is required to handle OS signals.
This commit is contained in:
Jocelyn Le Sage
2017-06-20 12:04:38 -04:00
committed by Virgil Dupras
parent 8861f6296e
commit 84011fb46d
2 changed files with 33 additions and 0 deletions

27
run.py
View File

@@ -20,6 +20,23 @@ from qt import dg_rc
from qt.platform import BASE_PATH
from core import __version__, __appname__
from signal import signal, SIGINT, SIGTERM, SIGQUIT
global dgapp
dgapp = None
def signalHandler(sig, frame):
global dgapp
if dgapp is None:
return
if sig in (SIGINT, SIGTERM, SIGQUIT):
dgapp.SIGTERM.emit()
def setUpSignals():
signal(SIGINT, signalHandler)
signal(SIGTERM, signalHandler)
signal(SIGQUIT, signalHandler)
def main():
app = QApplication(sys.argv)
QCoreApplication.setOrganizationName('Hardcoded Software')
@@ -30,10 +47,20 @@ def main():
lang = settings.value('Language')
locale_folder = op.join(BASE_PATH, 'locale')
install_gettext_trans_under_qt(locale_folder, lang)
# Handle OS signals
setUpSignals()
# Let the Python interpreter runs every 500ms to handle signals. This is
# required because Python cannot handle signals while the Qt event loop is
# running.
from PyQt5.QtCore import QTimer
timer = QTimer()
timer.start(500)
timer.timeout.connect(lambda: None)
# Many strings are translated at import time, so this is why we only import after the translator
# has been installed
from qt.app import DupeGuru
app.setWindowIcon(QIcon(QPixmap(":/{0}".format(DupeGuru.LOGO_NAME))))
global dgapp
dgapp = DupeGuru()
install_excepthook('https://github.com/hsoft/dupeguru/issues')
result = app.exec()