本文整理汇总了Python中daemon.DaemonContext.signal_map方法的典型用法代码示例。如果您正苦于以下问题:Python DaemonContext.signal_map方法的具体用法?Python DaemonContext.signal_map怎么用?Python DaemonContext.signal_map使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类daemon.DaemonContext
的用法示例。
在下文中一共展示了DaemonContext.signal_map方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: start
# 需要导入模块: from daemon import DaemonContext [as 别名]
# 或者: from daemon.DaemonContext import signal_map [as 别名]
def start(self, detachProcess=True):
pidFile = TimeoutPIDLockFile(self._pidFile)
context = DaemonContext(
working_directory=self._runDir,
umask=0o002,
pidfile=pidFile,
detach_process=detachProcess,
)
context.signal_map = {
signal.SIGTERM: 'terminate',
signal.SIGHUP: 'terminate',
signal.SIGUSR1: 'terminate',
}
if self._isRunningAndBreak(pidFile):
raise AlreadyRunning("PID file locked and process not stale")
self._context = context
try:
context.open()
self._setupLogging()
except:
if self.logger is None:
self._setupLogging()
self.logger.warn("Exception while entering context", exc_info=True)
try:
context.close()
except:
pass
return
try:
self.run()
except Exception as e:
self.logger.error("Exception in run()", exc_info=e)
finally:
self.logger.debug("Shutting down daemon")
self.shutdown()
try:
self._fHandler.close()
except:
pass
try:
context.close()
except:
pass