mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
149 lines
5.4 KiB
Python
149 lines
5.4 KiB
Python
"""
|
|
control.py - Implements SHUTDOWN and REHASH functionality.
|
|
"""
|
|
import signal
|
|
import os
|
|
import threading
|
|
import sys
|
|
import atexit
|
|
|
|
from pylinkirc import world, utils, conf, classes
|
|
from pylinkirc.log import log, makeFileLogger, stopFileLoggers, getConsoleLogLevel
|
|
from . import permissions
|
|
|
|
tried_shutdown = False
|
|
|
|
def remove_network(ircobj):
|
|
"""Removes a network object from the pool."""
|
|
# Disable autoconnect first by setting the delay negative.
|
|
ircobj.serverdata['autoconnect'] = -1
|
|
ircobj.disconnect()
|
|
del world.networkobjects[ircobj.name]
|
|
|
|
def _print_remaining_threads():
|
|
log.debug('_shutdown(): Remaining threads: %s', ['%s/%s' % (t.name, t.ident) for t in threading.enumerate()])
|
|
|
|
def _remove_pid():
|
|
# Remove our pid file.
|
|
log.info("Removing our pid file.")
|
|
try:
|
|
os.remove("%s.pid" % conf.confname)
|
|
except OSError:
|
|
log.exception("Failed to remove PID, ignoring...")
|
|
|
|
def _kill_plugins(irc=None):
|
|
log.info("Shutting down plugins.")
|
|
for name, plugin in world.plugins.items():
|
|
# Before closing connections, tell all plugins to shutdown cleanly first.
|
|
if hasattr(plugin, 'die'):
|
|
log.debug('coremods.control: Running die() on plugin %s due to shutdown.', name)
|
|
try:
|
|
plugin.die(irc=irc)
|
|
except: # But don't allow it to crash the server.
|
|
log.exception('coremods.control: Error occurred in die() of plugin %s, skipping...', name)
|
|
|
|
# We use atexit to register certain functions so that when PyLink cleans up after itself if it
|
|
# shuts down because all networks have been disconnected.
|
|
atexit.register(_remove_pid)
|
|
atexit.register(_kill_plugins)
|
|
|
|
def _shutdown(irc=None):
|
|
"""Shuts down the Pylink daemon."""
|
|
global tried_shutdown
|
|
if tried_shutdown: # We froze on shutdown last time, so immediately abort.
|
|
_print_remaining_threads()
|
|
raise KeyboardInterrupt("Forcing shutdown.")
|
|
|
|
tried_shutdown = True
|
|
|
|
# HACK: run the _kill_plugins trigger with the current IRC object. XXX: We should really consider removing this
|
|
# argument, since no plugins actually use it to do anything.
|
|
atexit.unregister(_kill_plugins)
|
|
_kill_plugins(irc=irc)
|
|
|
|
# Remove our main PyLink bot as well.
|
|
utils.unregisterService('pylink')
|
|
|
|
for ircobj in world.networkobjects.copy().values():
|
|
# Disconnect all our networks.
|
|
remove_network(ircobj)
|
|
|
|
log.info("Waiting for remaining threads to stop; this may take a few seconds. If PyLink freezes "
|
|
"at this stage, press Ctrl-C to force a shutdown.")
|
|
_print_remaining_threads()
|
|
|
|
# Done.
|
|
|
|
def sigterm_handler(signo, stack_frame):
|
|
"""Handles SIGTERM and SIGINT gracefully by shutting down the PyLink daemon."""
|
|
log.info("Shutting down on signal %s." % signo)
|
|
_shutdown()
|
|
|
|
signal.signal(signal.SIGTERM, sigterm_handler)
|
|
signal.signal(signal.SIGINT, sigterm_handler)
|
|
|
|
def _rehash():
|
|
"""Rehashes the PyLink daemon."""
|
|
log.info('Reloading PyLink configuration...')
|
|
old_conf = conf.conf.copy()
|
|
fname = conf.fname
|
|
new_conf = conf.loadConf(fname, errors_fatal=False, logger=log)
|
|
conf.conf = new_conf
|
|
|
|
# Reset any file logger options.
|
|
stopFileLoggers()
|
|
files = new_conf['logging'].get('files')
|
|
if files:
|
|
for filename, config in files.items():
|
|
makeFileLogger(filename, config.get('loglevel'))
|
|
|
|
log.debug('rehash: updating console log level')
|
|
world.console_handler.setLevel(getConsoleLogLevel())
|
|
|
|
# Reset permissions.
|
|
log.debug('rehash: resetting permissions')
|
|
permissions.resetPermissions()
|
|
|
|
for network, ircobj in world.networkobjects.copy().items():
|
|
# Server was removed from the config file, disconnect them.
|
|
log.debug('rehash: checking if %r is in new conf still.', network)
|
|
if network not in new_conf['servers']:
|
|
log.debug('rehash: removing connection to %r (removed from config).', network)
|
|
remove_network(ircobj)
|
|
else:
|
|
# XXX: we should really just add abstraction to Irc to update config settings...
|
|
ircobj.conf = new_conf
|
|
ircobj.serverdata = new_conf['servers'][network]
|
|
ircobj.botdata = new_conf['bot']
|
|
ircobj.autoconnect_active_multiplier = 1
|
|
|
|
# Clear the IRC object's channel loggers and replace them with
|
|
# new ones by re-running log_setup().
|
|
while ircobj.loghandlers:
|
|
log.removeHandler(ircobj.loghandlers.pop())
|
|
|
|
ircobj.log_setup()
|
|
|
|
utils.resetModuleDirs()
|
|
|
|
for network, sdata in new_conf['servers'].items():
|
|
# Connect any new networks or disconnected networks if they aren't already.
|
|
if (network not in world.networkobjects) or (not world.networkobjects[network].connection_thread.is_alive()):
|
|
proto = utils.getProtocolModule(sdata['protocol'])
|
|
|
|
# API note: 2.0.x style of starting network connections
|
|
world.networkobjects[network] = newirc = proto.Class(network)
|
|
newirc.connect()
|
|
|
|
log.info('Finished reloading PyLink configuration.')
|
|
|
|
if os.name == 'posix':
|
|
# Only register SIGHUP/SIGUSR1 on *nix.
|
|
def sigusr1_handler(_signo, _stack_frame):
|
|
"""Handles SIGUSR1 by rehashing the PyLink daemon."""
|
|
log.info("SIGUSR1 received, reloading config.")
|
|
_rehash()
|
|
|
|
signal.signal(signal.SIGUSR1, sigusr1_handler)
|
|
signal.signal(signal.SIGHUP, sigterm_handler)
|