h/core/reload.py

162 lines
5.0 KiB
Python
Raw Normal View History

2009-04-19 11:42:48 +00:00
import collections
2010-01-17 20:38:37 +00:00
import glob
import os
2010-03-11 23:34:54 +00:00
import re
import sys
2010-01-17 20:38:37 +00:00
import traceback
2009-04-19 11:42:48 +00:00
2010-03-11 23:34:54 +00:00
if 'mtimes' not in globals():
mtimes = {}
if 'lastfiles' not in globals():
lastfiles = set()
2010-03-01 02:32:41 +00:00
2010-03-11 23:34:54 +00:00
def make_signature(f):
2015-11-15 16:36:35 +00:00
return f.__code__.co_filename, f.__name__, f.__code__.co_firstlineno
2010-03-11 23:34:54 +00:00
def format_plug(plug, kind='', lpad=0, width=40):
out = ' ' * lpad + '%s:%s:%s' % make_signature(plug[0])
if kind == 'command':
out += ' ' * (50 - len(out)) + plug[1]['name']
if kind == 'event':
out += ' ' * (50 - len(out)) + ', '.join(plug[1]['events'])
if kind == 'regex':
out += ' ' * (50 - len(out)) + plug[1]['regex']
2009-11-07 18:37:38 +00:00
return out
2010-03-01 02:32:41 +00:00
def reload(init=False):
2010-03-11 23:34:54 +00:00
changed = False
if init:
2010-03-11 23:34:54 +00:00
bot.plugs = collections.defaultdict(list)
bot.threads = {}
2010-03-11 23:34:54 +00:00
core_fileset = set(glob.glob(os.path.join("core", "*.py")))
2010-03-11 23:34:54 +00:00
for filename in core_fileset:
mtime = os.stat(filename).st_mtime
if mtime != mtimes.get(filename):
mtimes[filename] = mtime
2010-03-11 23:34:54 +00:00
changed = True
try:
2010-03-01 02:32:41 +00:00
eval(compile(open(filename, 'U').read(), filename, 'exec'),
2014-01-14 21:12:37 +00:00
globals())
except Exception:
traceback.print_exc()
if init: # stop if there's an error (syntax?) in a core
2010-03-01 02:32:41 +00:00
sys.exit() # script on startup
continue
2010-01-17 20:38:37 +00:00
if filename == os.path.join('core', 'reload.py'):
reload(init=init)
return
2010-03-11 23:34:54 +00:00
fileset = set(glob.glob(os.path.join('plugins', '*.py')))
# remove deleted/moved plugins
2015-11-15 16:36:35 +00:00
for name, data in bot.plugs.items():
2010-03-11 23:34:54 +00:00
bot.plugs[name] = [x for x in data if x[0]._filename in fileset]
for filename in list(mtimes):
if filename not in fileset and filename not in core_fileset:
mtimes.pop(filename)
2015-11-15 16:36:35 +00:00
for func, handler in list(bot.threads.items()):
2010-03-11 23:34:54 +00:00
if func._filename not in fileset:
handler.stop()
del bot.threads[func]
# compile new plugins
for filename in fileset:
mtime = os.stat(filename).st_mtime
if mtime != mtimes.get(filename):
mtimes[filename] = mtime
2010-03-11 23:34:54 +00:00
changed = True
try:
code = compile(open(filename, 'U').read(), filename, 'exec')
namespace = {}
eval(code, namespace)
except Exception:
traceback.print_exc()
continue
# remove plugins already loaded from this filename
2015-11-15 16:36:35 +00:00
for name, data in bot.plugs.items():
bot.plugs[name] = [x for x in data
2010-03-11 23:34:54 +00:00
if x[0]._filename != filename]
2009-11-19 00:39:27 +00:00
2015-11-15 16:36:35 +00:00
for func, handler in list(bot.threads.items()):
2010-03-11 23:34:54 +00:00
if func._filename == filename:
handler.stop()
del bot.threads[func]
2015-11-15 16:36:35 +00:00
for obj in namespace.values():
2010-03-11 23:34:54 +00:00
if hasattr(obj, '_hook'): # check for magic
if obj._thread:
bot.threads[obj] = Handler(obj)
2010-03-11 23:34:54 +00:00
for type, data in obj._hook:
bot.plugs[type] += [data]
2009-11-07 18:37:38 +00:00
if not init:
2015-11-15 16:36:35 +00:00
print('### new plugin (type: %s) loaded:' % \
type, format_plug(data))
2010-03-11 23:34:54 +00:00
if changed:
bot.commands = {}
for plug in bot.plugs['command']:
name = plug[1]['name'].lower()
if not re.match(r'^\w+$', name):
2015-11-15 16:36:35 +00:00
print('### ERROR: invalid command name "%s" (%s)' % (name,
format_plug(plug)))
2010-03-11 23:34:54 +00:00
continue
if name in bot.commands:
2015-11-15 16:36:35 +00:00
print("### ERROR: command '%s' already registered (%s, %s)" % \
2010-03-11 23:34:54 +00:00
(name, format_plug(bot.commands[name]),
2015-11-15 16:36:35 +00:00
format_plug(plug)))
2010-03-11 23:34:54 +00:00
continue
bot.commands[name] = plug
bot.events = collections.defaultdict(list)
for func, args in bot.plugs['event']:
for event in args['events']:
bot.events[event].append((func, args))
if init:
2015-11-15 16:36:35 +00:00
print(' plugin listing:')
2010-03-11 23:34:54 +00:00
if bot.commands:
# hack to make commands with multiple aliases
# print nicely
2015-11-15 16:36:35 +00:00
print(' command:')
2010-03-11 23:34:54 +00:00
commands = collections.defaultdict(list)
2015-11-15 16:36:35 +00:00
for name, (func, args) in bot.commands.items():
2010-03-11 23:34:54 +00:00
commands[make_signature(func)].append(name)
2015-11-15 16:36:35 +00:00
for sig, names in sorted(commands.items()):
names.sort(key=lambda x: (-len(x), x)) # long names first
2010-03-11 23:34:54 +00:00
out = ' ' * 6 + '%s:%s:%s' % sig
out += ' ' * (50 - len(out)) + ', '.join(names)
2015-11-15 16:36:35 +00:00
print(out)
2015-11-15 16:36:35 +00:00
for kind, plugs in sorted(bot.plugs.items()):
2010-03-11 23:34:54 +00:00
if kind == 'command':
continue
2015-11-15 16:36:35 +00:00
print(' %s:' % kind)
for plug in plugs:
2015-11-15 16:36:35 +00:00
print(format_plug(plug, kind=kind, lpad=6))
print()