Source code for minos.common.injectors

from __future__ import (
    annotations,
)

from asyncio import (
    gather,
)
from typing import (
    Type,
    Union,
)

from cached_property import (
    cached_property,
)
from dependency_injector import (
    containers,
    providers,
)

from .configuration import (
    MinosConfig,
)
from .importlib import (
    import_module,
)
from .setup import (
    MinosSetup,
)


[docs]class DependencyInjector: """Async wrapper of ``dependency_injector.containers.Container``. """
[docs] def __init__(self, config: MinosConfig, **kwargs: Union[MinosSetup, Type[MinosSetup], str]): self.config = config self._raw_injections = kwargs
@cached_property def injections(self) -> dict[str, MinosSetup]: """Get the injections dictionary. :return: A dict of injections.. """ injections = dict() def _fn(raw: Union[MinosSetup, Type[MinosSetup], str]) -> MinosSetup: if isinstance(raw, str): raw = import_module(raw) if isinstance(raw, type): # noinspection PyUnresolvedReferences return raw.from_config(self.config, **injections) return raw for key, value in self._raw_injections.items(): injections[key] = _fn(value) return injections
[docs] async def wire(self, *args, **kwargs) -> None: """Connect the configuration. :return: This method does not return anything. """ self.container.wire(*args, **kwargs) await gather(*(injection.setup() for injection in self.injections.values()))
[docs] async def unwire(self) -> None: """Disconnect the configuration. :return: This method does not return anything. """ await gather(*(injection.destroy() for injection in self.injections.values())) self.container.unwire()
@cached_property def container(self) -> containers.Container: """Get the dependencies container. :return: A ``Container`` instance. """ container = containers.DynamicContainer() container.config = providers.Object(self.config) for name, injection in self.injections.items(): container.set_provider(name, providers.Object(injection)) return container def __getattr__(self, item: str) -> MinosSetup: if item not in self.injections: raise AttributeError(f"{type(self).__name__!r} does not contain the {item!r} attribute.") return self.injections[item]