aboutsummaryrefslogtreecommitdiff
path: root/ModuleManager.py
blob: 3de549d12e14234e847dddbe16573748f2cc5cbf (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import gc, glob, imp, inspect, os, sys

class ModuleManager(object):
    def __init__(self, bot, directory="modules"):
        self.bot = bot
        self.directory = directory
        self.modules = {}
        self.waiting_requirement = {}
    def list_modules(self):
        return sorted(glob.glob(os.path.join(self.directory, "*.py")))

    def module_name(self, filename):
        return os.path.basename(filename).rsplit(".py", 1)[0].lower()

    def _load_module(self, filename):
        name = self.module_name(filename)

        whitelist = self.bot.config.get("module_whitelist", [])
        if whitelist and name not in whitelist: return

        with open(filename) as module_file:
            while True:
                line = module_file.readline().strip()
                line_split = line.split(" ")
                if line and line.startswith("#--"):
                    # this is a hashflag
                    if line == "#--ignore":
                        # nope, ignore this module.
                        return None
                    elif line_split[0] == "#--require-config" and len(
                            line_split) > 1:
                        if not line_split[1].lower() in self.bot.config or not self.bot.config[
                                    line_split[1].lower()]:
                            # nope, required config option not present.
                            return None
                    elif line_split[0] == "#--require-module" and len(
                            line_split) > 1:
                        if not "bitbot_%s" % line_split[1].lower() in sys.modules:
                            if not line_split[1].lower() in self.waiting_requirement:
                                self.waiting_requirement[line_split[1].lower()] = set([])
                            self.waiting_requirement[line_split[1].lower()].add(filename)
                            return None
                else:
                    break
        import_name = "bitbot_%s" % name
        module = imp.load_source(import_name, filename)
        assert hasattr(module, "Module"
            ), "module '%s' doesn't have a Module class."
        assert inspect.isclass(module.Module
            ), "module '%s' has a Module attribute but it is not a class."
        module_object = module.Module(self.bot)
        if not hasattr(module_object, "_name"):
            module_object._name = name.title()
        module_object._is_unloaded = False
        module_object._import_name = import_name
        assert not module_object._name in self.modules, (
            "module name '%s' attempted to be used twice.")
        return module_object

    def load_module(self, filename):
        name = self.module_name(filename)
        module = self._load_module(filename)
        if module:
            self.modules[module._name] = module
            if name in self.waiting_requirement:
                for filename in self.waiting_requirement:
                    self.load_module(filename)
            sys.stderr.write("module '%s' loaded.\n" % filename)
        else:
            sys.stderr.write("module '%s' not loaded.\n" % filename)
    def load_modules(self):
        for filename in self.list_modules():
            self.load_module(filename)

    def unload_module(self, module):
        # this is such a bad idea
        module._is_unloaded = True
        self.unhook_check(self.bot.events)
        if hasattr(module, "_cleanup"):
            module._cleanup()
        del sys.modules[module._import_name]
        del self.modules[module._name]
        del module
        gc.collect()

    def unhook_check(self, event):
        for hook in event.get_hooks():
            if hasattr(hook.function, "__self__") and hasattr(
                    hook.function.__self__, "_is_unloaded"
                    ) and hook.function.__self__._is_unloaded:
                event._unhook(hook)
        for child in event.get_children():
            self.unhook_check(event.get_child(child))