Beispiel #1
0
 def __init__(self, bot_config):
     log.debug("ErrBot init.")
     super().__init__(bot_config)
     self.bot_config = bot_config
     self.prefix = bot_config.BOT_PREFIX
     if bot_config.BOT_ASYNC:
         self.thread_pool = ThreadPool(3)
         log.debug('created the thread pool' + str(self.thread_pool))
     self.commands = {
     }  # the dynamically populated list of commands available on the bot
     self.re_commands = {
     }  # the dynamically populated list of regex-based commands available on the bot
     self.command_filters = []  # the dynamically populated list of filters
     self.MSG_UNKNOWN_COMMAND = 'Unknown command: "%(command)s". ' \
                                'Type "' + bot_config.BOT_PREFIX + 'help" for available commands.'
     if bot_config.BOT_ALT_PREFIX_CASEINSENSITIVE:
         self.bot_alt_prefixes = tuple(
             prefix.lower() for prefix in bot_config.BOT_ALT_PREFIXES)
     else:
         self.bot_alt_prefixes = bot_config.BOT_ALT_PREFIXES
     self.repo_manager = None
     self.plugin_manager = None
     self.storage_plugin = None
     self._plugin_errors_during_startup = None
     self.flow_executor = FlowExecutor(self)
Beispiel #2
0
 def __init__(self, bot_config):
     log.debug("ErrBot init.")
     super().__init__(bot_config)
     self.bot_config = bot_config
     self.prefix = bot_config.BOT_PREFIX
     if bot_config.BOT_ASYNC:
         self.thread_pool = ThreadPool(bot_config.BOT_ASYNC_POOLSIZE)
         atexit.register(self.thread_pool.close)
         log.debug(
             "created a thread pool of size %d.", bot_config.BOT_ASYNC_POOLSIZE
         )
     self.commands = (
         {}
     )  # the dynamically populated list of commands available on the bot
     self.re_commands = (
         {}
     )  # the dynamically populated list of regex-based commands available on the bot
     self.command_filters = []  # the dynamically populated list of filters
     self.MSG_UNKNOWN_COMMAND = (
         'Unknown command: "%(command)s". '
         'Type "' + bot_config.BOT_PREFIX + 'help" for available commands.'
     )
     if bot_config.BOT_ALT_PREFIX_CASEINSENSITIVE:
         self.bot_alt_prefixes = tuple(
             prefix.lower() for prefix in bot_config.BOT_ALT_PREFIXES
         )
     else:
         self.bot_alt_prefixes = bot_config.BOT_ALT_PREFIXES
     self.repo_manager = None
     self.plugin_manager = None
     self.storage_plugin = None
     self._plugin_errors_during_startup = None
     self.flow_executor = FlowExecutor(self)
     self._gbl = RLock()  # this protects internal structures of this class
     self.set_message_size_limit()