plugins: Add refs to dependencies on plugins

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2020-04-12 16:43:53 +02:00
parent 8585ef18eb
commit a72152c462
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2
2 changed files with 5 additions and 1 deletions

View file

@ -4,7 +4,7 @@ These are used in the plugin system added in poezio 0.7.5
(see plugin_manager.py)
"""
from typing import Set
from typing import Any, Dict, Set
from asyncio import iscoroutinefunction
from functools import partial
from configparser import RawConfigParser
@ -406,6 +406,8 @@ class BasePlugin(object, metaclass=SafetyMetaclass):
default_config = None
dependencies: Set[str] = set()
# This dict will get populated when the plugin is initialized
refs: Dict[str, Any] = {}
def __init__(self, name, plugin_api, core, plugins_conf_dir):
self.__name = name

View file

@ -136,6 +136,8 @@ class PluginManager:
name, dep
)
return None
# Add reference of the dep to the plugin's usage
module.Plugin.refs[dep] = self.plugins[dep]
self.plugins[name] = module.Plugin(name, self.plugin_api, self.core,
self.plugins_conf_dir)