2020-09-10 05:23:28 +03:00
|
|
|
"""Containers module."""
|
2017-03-26 16:40:41 +03:00
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
import inspect
|
2020-10-09 22:16:27 +03:00
|
|
|
import sys
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
try:
|
|
|
|
import asyncio
|
|
|
|
except ImportError:
|
|
|
|
asyncio = None
|
|
|
|
|
2017-03-26 16:40:41 +03:00
|
|
|
import six
|
|
|
|
|
2021-02-01 17:42:21 +03:00
|
|
|
from . import providers, errors
|
2017-03-26 16:40:41 +03:00
|
|
|
|
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
if sys.version_info[:2] >= (3, 6):
|
|
|
|
from .wiring import wire, unwire
|
|
|
|
else:
|
|
|
|
def wire(*args, **kwargs):
|
|
|
|
raise NotImplementedError('Wiring requires Python 3.6 or above')
|
|
|
|
|
|
|
|
def unwire(*args, **kwargs):
|
|
|
|
raise NotImplementedError('Wiring requires Python 3.6 or above')
|
|
|
|
|
|
|
|
|
2021-02-03 23:33:16 +03:00
|
|
|
class Container(object):
|
|
|
|
"""Abstract container."""
|
|
|
|
|
|
|
|
|
|
|
|
class DynamicContainer(Container):
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Dynamic inversion of control container.
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
services = DynamicContainer()
|
|
|
|
services.auth = providers.Factory(AuthService)
|
|
|
|
services.users = providers.Factory(UsersService,
|
|
|
|
auth_service=services.auth)
|
|
|
|
|
|
|
|
.. py:attribute:: providers
|
|
|
|
|
|
|
|
Read-only dictionary of all providers.
|
|
|
|
|
|
|
|
:type: dict[str, :py:class:`dependency_injector.providers.Provider`]
|
|
|
|
|
|
|
|
.. py:attribute:: overridden
|
|
|
|
|
|
|
|
Tuple of overriding containers.
|
|
|
|
|
|
|
|
:type: tuple[:py:class:`DynamicContainer`]
|
|
|
|
|
|
|
|
.. py:attribute:: provider_type
|
|
|
|
|
|
|
|
Type of providers that could be placed in container.
|
|
|
|
|
|
|
|
:type: type
|
|
|
|
"""
|
|
|
|
|
|
|
|
__IS_CONTAINER__ = True
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""Initializer.
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
2021-02-01 17:42:21 +03:00
|
|
|
self.provider_type = providers.Provider
|
2020-10-09 22:16:27 +03:00
|
|
|
self.providers = {}
|
2017-03-26 16:40:41 +03:00
|
|
|
self.overridden = tuple()
|
2020-10-09 22:16:27 +03:00
|
|
|
self.declarative_parent = None
|
|
|
|
self.wired_to_modules = []
|
|
|
|
self.wired_to_packages = []
|
2021-02-01 17:42:21 +03:00
|
|
|
self.__self__ = providers.Object(self)
|
2017-03-26 16:40:41 +03:00
|
|
|
super(DynamicContainer, self).__init__()
|
|
|
|
|
2020-06-23 05:45:16 +03:00
|
|
|
def __deepcopy__(self, memo):
|
|
|
|
"""Create and return full copy of container."""
|
|
|
|
copied = memo.get(id(self))
|
|
|
|
if copied is not None:
|
|
|
|
return copied
|
|
|
|
|
|
|
|
copied = self.__class__()
|
2021-02-01 17:42:21 +03:00
|
|
|
copied.provider_type = providers.Provider
|
|
|
|
copied.overridden = providers.deepcopy(self.overridden, memo)
|
2020-10-09 22:16:27 +03:00
|
|
|
copied.declarative_parent = self.declarative_parent
|
2020-06-23 05:45:16 +03:00
|
|
|
|
2021-02-01 17:42:21 +03:00
|
|
|
for name, provider in providers.deepcopy(self.providers, memo).items():
|
2020-06-23 19:47:48 +03:00
|
|
|
setattr(copied, name, provider)
|
|
|
|
|
2020-06-23 05:45:16 +03:00
|
|
|
return copied
|
|
|
|
|
2017-03-26 16:40:41 +03:00
|
|
|
def __setattr__(self, str name, object value):
|
|
|
|
"""Set instance attribute.
|
|
|
|
|
|
|
|
If value of attribute is provider, it will be added into providers
|
|
|
|
dictionary.
|
|
|
|
|
|
|
|
:param name: Attribute's name
|
|
|
|
:type name: str
|
|
|
|
|
|
|
|
:param value: Attribute's value
|
|
|
|
:type value: object
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
2021-02-01 17:42:21 +03:00
|
|
|
if isinstance(value, providers.Provider) and name != '__self__':
|
2017-03-26 16:40:41 +03:00
|
|
|
_check_provider_type(self, value)
|
|
|
|
self.providers[name] = value
|
|
|
|
super(DynamicContainer, self).__setattr__(name, value)
|
|
|
|
|
|
|
|
def __delattr__(self, str name):
|
|
|
|
"""Delete instance attribute.
|
|
|
|
|
|
|
|
If value of attribute is provider, it will be deleted from providers
|
|
|
|
dictionary.
|
|
|
|
|
|
|
|
:param name: Attribute's name
|
|
|
|
:type name: str
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
if name in self.providers:
|
|
|
|
del self.providers[name]
|
|
|
|
super(DynamicContainer, self).__delattr__(name)
|
|
|
|
|
2021-01-15 15:20:37 +03:00
|
|
|
@property
|
|
|
|
def dependencies(self):
|
|
|
|
"""Return dependency providers dictionary.
|
|
|
|
|
|
|
|
Dependency providers can be both of :py:class:`dependency_injector.providers.Dependency` and
|
|
|
|
:py:class:`dependency_injector.providers.DependenciesContainer`.
|
|
|
|
|
|
|
|
:rtype:
|
|
|
|
dict[str, :py:class:`dependency_injector.providers.Provider`]
|
|
|
|
"""
|
|
|
|
return {
|
|
|
|
name: provider
|
|
|
|
for name, provider in self.providers.items()
|
2021-02-01 17:42:21 +03:00
|
|
|
if isinstance(provider, (providers.Dependency, providers.DependenciesContainer))
|
2021-01-15 15:20:37 +03:00
|
|
|
}
|
|
|
|
|
2021-02-01 17:42:21 +03:00
|
|
|
def traverse(self, types=None):
|
|
|
|
"""Return providers traversal generator."""
|
|
|
|
yield from providers.traverse(*self.providers.values(), types=types)
|
|
|
|
|
2017-12-25 00:03:13 +03:00
|
|
|
def set_providers(self, **providers):
|
|
|
|
"""Set container providers.
|
|
|
|
|
|
|
|
:param providers: Dictionary of providers
|
|
|
|
:type providers:
|
|
|
|
dict[str, :py:class:`dependency_injector.providers.Provider`]
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
for name, provider in six.iteritems(providers):
|
|
|
|
setattr(self, name, provider)
|
|
|
|
|
2017-03-26 22:38:26 +03:00
|
|
|
def override(self, object overriding):
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Override current container by overriding container.
|
|
|
|
|
|
|
|
:param overriding: Overriding container.
|
|
|
|
:type overriding: :py:class:`DynamicContainer`
|
|
|
|
|
|
|
|
:raise: :py:exc:`dependency_injector.errors.Error` if trying to
|
|
|
|
override container by itself
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
if overriding is self:
|
2021-02-01 17:42:21 +03:00
|
|
|
raise errors.Error('Container {0} could not be overridden '
|
|
|
|
'with itself'.format(self))
|
2017-03-26 16:40:41 +03:00
|
|
|
|
|
|
|
self.overridden += (overriding,)
|
|
|
|
|
|
|
|
for name, provider in six.iteritems(overriding.providers):
|
|
|
|
try:
|
|
|
|
getattr(self, name).override(provider)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
2017-12-25 00:03:13 +03:00
|
|
|
def override_providers(self, **overriding_providers):
|
|
|
|
"""Override container providers.
|
|
|
|
|
|
|
|
:param overriding_providers: Dictionary of providers
|
|
|
|
:type overriding_providers:
|
|
|
|
dict[str, :py:class:`dependency_injector.providers.Provider`]
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
for name, overriding_provider in six.iteritems(overriding_providers):
|
|
|
|
container_provider = getattr(self, name)
|
|
|
|
container_provider.override(overriding_provider)
|
|
|
|
|
2017-03-26 16:40:41 +03:00
|
|
|
def reset_last_overriding(self):
|
|
|
|
"""Reset last overriding provider for each container providers.
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
if not self.overridden:
|
2021-02-01 17:42:21 +03:00
|
|
|
raise errors.Error('Container {0} is not overridden'.format(self))
|
2017-03-26 16:40:41 +03:00
|
|
|
|
|
|
|
self.overridden = self.overridden[:-1]
|
|
|
|
|
|
|
|
for provider in six.itervalues(self.providers):
|
|
|
|
provider.reset_last_overriding()
|
|
|
|
|
|
|
|
def reset_override(self):
|
|
|
|
"""Reset all overridings for each container providers.
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
self.overridden = tuple()
|
|
|
|
|
|
|
|
for provider in six.itervalues(self.providers):
|
|
|
|
provider.reset_override()
|
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
def wire(self, modules=None, packages=None):
|
|
|
|
"""Wire container providers with provided packages and modules.
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
wire(
|
|
|
|
container=self,
|
|
|
|
modules=modules,
|
|
|
|
packages=packages,
|
|
|
|
)
|
|
|
|
|
|
|
|
if modules:
|
|
|
|
self.wired_to_modules.extend(modules)
|
|
|
|
|
|
|
|
if packages:
|
|
|
|
self.wired_to_packages.extend(packages)
|
|
|
|
|
|
|
|
def unwire(self):
|
|
|
|
"""Unwire container providers from previously wired packages and modules."""
|
|
|
|
unwire(
|
|
|
|
modules=self.wired_to_modules,
|
|
|
|
packages=self.wired_to_packages,
|
|
|
|
)
|
|
|
|
|
|
|
|
self.wired_to_modules.clear()
|
|
|
|
self.wired_to_packages.clear()
|
|
|
|
|
2020-10-25 03:56:32 +03:00
|
|
|
def init_resources(self):
|
|
|
|
"""Initialize all container resources."""
|
2021-01-11 03:26:15 +03:00
|
|
|
futures = []
|
|
|
|
|
2021-02-01 17:54:36 +03:00
|
|
|
for provider in self.traverse(types=[providers.Resource]):
|
2021-01-11 03:26:15 +03:00
|
|
|
resource = provider.init()
|
|
|
|
|
|
|
|
if _isawaitable(resource):
|
|
|
|
futures.append(resource)
|
|
|
|
|
|
|
|
if futures:
|
|
|
|
return asyncio.gather(*futures)
|
2020-10-25 03:56:32 +03:00
|
|
|
|
|
|
|
def shutdown_resources(self):
|
|
|
|
"""Shutdown all container resources."""
|
2021-01-11 03:26:15 +03:00
|
|
|
futures = []
|
|
|
|
|
2021-02-01 17:54:36 +03:00
|
|
|
for provider in self.traverse(types=[providers.Resource]):
|
2021-01-11 03:26:15 +03:00
|
|
|
shutdown = provider.shutdown()
|
|
|
|
|
|
|
|
if _isawaitable(shutdown):
|
|
|
|
futures.append(shutdown)
|
|
|
|
|
|
|
|
if futures:
|
|
|
|
return asyncio.gather(*futures)
|
2020-10-09 22:16:27 +03:00
|
|
|
|
2021-01-14 01:07:41 +03:00
|
|
|
def apply_container_providers_overridings(self):
|
|
|
|
"""Apply container providers' overridings."""
|
2021-02-05 16:59:16 +03:00
|
|
|
for provider in self.traverse(types=[providers.Container]):
|
2021-01-14 01:07:41 +03:00
|
|
|
provider.apply_overridings()
|
|
|
|
|
2021-02-06 01:14:10 +03:00
|
|
|
def reset_singletons(self):
|
2021-02-06 02:17:44 +03:00
|
|
|
"""Reset container singletons."""
|
|
|
|
for provider in self.traverse(types=[providers.BaseSingleton]):
|
2021-02-06 01:14:10 +03:00
|
|
|
provider.reset()
|
|
|
|
|
2017-03-26 16:40:41 +03:00
|
|
|
|
|
|
|
class DeclarativeContainerMetaClass(type):
|
|
|
|
"""Declarative inversion of control container meta class."""
|
|
|
|
|
2017-03-26 22:38:26 +03:00
|
|
|
def __new__(type mcs, str class_name, tuple bases, dict attributes):
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Declarative container class factory."""
|
2021-01-30 00:37:50 +03:00
|
|
|
containers = {
|
|
|
|
name: container
|
2021-01-13 01:49:48 +03:00
|
|
|
for name, container in six.iteritems(attributes)
|
|
|
|
if is_container(container)
|
2021-01-30 00:37:50 +03:00
|
|
|
}
|
2017-11-21 12:47:55 +03:00
|
|
|
|
2021-01-30 00:37:50 +03:00
|
|
|
cls_providers = {
|
|
|
|
name: provider
|
2021-01-13 01:49:48 +03:00
|
|
|
for name, provider in six.iteritems(attributes)
|
2021-02-01 17:42:21 +03:00
|
|
|
if isinstance(provider, providers.Provider)
|
2021-01-30 00:37:50 +03:00
|
|
|
}
|
2017-03-26 16:40:41 +03:00
|
|
|
|
2021-01-30 00:37:50 +03:00
|
|
|
inherited_providers = {
|
|
|
|
name: provider
|
2021-01-13 01:49:48 +03:00
|
|
|
for base in bases
|
|
|
|
if is_container(base) and base is not DynamicContainer
|
|
|
|
for name, provider in six.iteritems(base.providers)
|
2021-01-30 00:37:50 +03:00
|
|
|
}
|
|
|
|
|
2021-02-01 17:42:21 +03:00
|
|
|
all_providers = {}
|
|
|
|
all_providers.update(inherited_providers)
|
|
|
|
all_providers.update(cls_providers)
|
2017-03-26 16:40:41 +03:00
|
|
|
|
2021-01-30 00:37:50 +03:00
|
|
|
attributes['containers'] = containers
|
|
|
|
attributes['inherited_providers'] = inherited_providers
|
|
|
|
attributes['cls_providers'] = cls_providers
|
2021-02-01 17:42:21 +03:00
|
|
|
attributes['providers'] = all_providers
|
2017-03-26 16:40:41 +03:00
|
|
|
|
2017-03-26 22:38:26 +03:00
|
|
|
cls = <type>type.__new__(mcs, class_name, bases, attributes)
|
2017-03-26 16:40:41 +03:00
|
|
|
|
2021-02-01 17:42:21 +03:00
|
|
|
cls.__self__ = providers.Object(cls)
|
2021-01-11 16:18:02 +03:00
|
|
|
|
2017-03-26 16:40:41 +03:00
|
|
|
for provider in six.itervalues(cls.providers):
|
|
|
|
_check_provider_type(cls, provider)
|
|
|
|
|
|
|
|
return cls
|
|
|
|
|
2017-03-26 22:38:26 +03:00
|
|
|
def __setattr__(cls, str name, object value):
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Set class attribute.
|
|
|
|
|
|
|
|
If value of attribute is provider, it will be added into providers
|
|
|
|
dictionary.
|
|
|
|
|
|
|
|
:param name: Attribute's name
|
|
|
|
:type name: str
|
|
|
|
|
|
|
|
:param value: Attribute's value
|
|
|
|
:type value: object
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
2021-02-01 17:42:21 +03:00
|
|
|
if isinstance(value, providers.Provider) and name != '__self__':
|
2017-03-26 16:40:41 +03:00
|
|
|
_check_provider_type(cls, value)
|
|
|
|
cls.providers[name] = value
|
|
|
|
cls.cls_providers[name] = value
|
|
|
|
super(DeclarativeContainerMetaClass, cls).__setattr__(name, value)
|
|
|
|
|
2017-03-26 22:38:26 +03:00
|
|
|
def __delattr__(cls, str name):
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Delete class attribute.
|
|
|
|
|
|
|
|
If value of attribute is provider, it will be deleted from providers
|
|
|
|
dictionary.
|
|
|
|
|
|
|
|
:param name: Attribute's name
|
|
|
|
:type name: str
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
if name in cls.providers and name in cls.cls_providers:
|
|
|
|
del cls.providers[name]
|
|
|
|
del cls.cls_providers[name]
|
|
|
|
super(DeclarativeContainerMetaClass, cls).__delattr__(name)
|
|
|
|
|
2021-01-15 15:20:37 +03:00
|
|
|
@property
|
|
|
|
def dependencies(cls):
|
|
|
|
"""Return dependency providers dictionary.
|
|
|
|
|
|
|
|
Dependency providers can be both of :py:class:`dependency_injector.providers.Dependency` and
|
|
|
|
:py:class:`dependency_injector.providers.DependenciesContainer`.
|
|
|
|
|
|
|
|
:rtype:
|
|
|
|
dict[str, :py:class:`dependency_injector.providers.Provider`]
|
|
|
|
"""
|
|
|
|
return {
|
|
|
|
name: provider
|
|
|
|
for name, provider in cls.providers.items()
|
2021-02-01 17:42:21 +03:00
|
|
|
if isinstance(provider, (providers.Dependency, providers.DependenciesContainer))
|
2021-01-15 15:20:37 +03:00
|
|
|
}
|
|
|
|
|
2021-02-01 17:42:21 +03:00
|
|
|
def traverse(cls, types=None):
|
|
|
|
"""Return providers traversal generator."""
|
|
|
|
yield from providers.traverse(*cls.providers.values(), types=types)
|
|
|
|
|
2017-03-26 16:40:41 +03:00
|
|
|
|
|
|
|
@six.add_metaclass(DeclarativeContainerMetaClass)
|
2021-02-03 23:33:16 +03:00
|
|
|
class DeclarativeContainer(Container):
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Declarative inversion of control container.
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
class Services(DeclarativeContainer):
|
|
|
|
auth = providers.Factory(AuthService)
|
|
|
|
users = providers.Factory(UsersService,
|
|
|
|
auth_service=auth)
|
|
|
|
"""
|
|
|
|
|
|
|
|
__IS_CONTAINER__ = True
|
|
|
|
|
2021-02-01 17:42:21 +03:00
|
|
|
provider_type = providers.Provider
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Type of providers that could be placed in container.
|
|
|
|
|
|
|
|
:type: type
|
|
|
|
"""
|
|
|
|
|
|
|
|
instance_type = DynamicContainer
|
|
|
|
"""Type of container that is returned on instantiating declarative
|
|
|
|
container.
|
|
|
|
|
|
|
|
:type: type
|
|
|
|
"""
|
|
|
|
|
2017-11-21 12:47:55 +03:00
|
|
|
containers = dict()
|
|
|
|
"""Read-only dictionary of all nested containers.
|
|
|
|
|
|
|
|
:type: dict[str, :py:class:`DeclarativeContainer`]
|
|
|
|
"""
|
|
|
|
|
2017-03-26 16:40:41 +03:00
|
|
|
providers = dict()
|
|
|
|
"""Read-only dictionary of all providers.
|
|
|
|
|
|
|
|
:type: dict[str, :py:class:`dependency_injector.providers.Provider`]
|
|
|
|
"""
|
|
|
|
|
|
|
|
cls_providers = dict()
|
|
|
|
"""Read-only dictionary of current container providers.
|
|
|
|
|
|
|
|
:type: dict[str, :py:class:`dependency_injector.providers.Provider`]
|
|
|
|
"""
|
|
|
|
|
|
|
|
inherited_providers = dict()
|
|
|
|
"""Read-only dictionary of inherited providers.
|
|
|
|
|
|
|
|
:type: dict[str, :py:class:`dependency_injector.providers.Provider`]
|
|
|
|
"""
|
|
|
|
|
|
|
|
overridden = tuple()
|
|
|
|
"""Tuple of overriding containers.
|
|
|
|
|
|
|
|
:type: tuple[:py:class:`DeclarativeContainer`]
|
|
|
|
"""
|
|
|
|
|
2021-01-11 16:18:02 +03:00
|
|
|
__self__ = None
|
|
|
|
"""Provider that provides current container.
|
|
|
|
|
|
|
|
:type: :py:class:`dependency_injector.providers.Provider`
|
|
|
|
"""
|
|
|
|
|
2017-12-25 00:03:13 +03:00
|
|
|
def __new__(cls, **overriding_providers):
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Constructor.
|
|
|
|
|
|
|
|
:return: Dynamic container with copy of all providers.
|
|
|
|
:rtype: :py:class:`DynamicContainer`
|
|
|
|
"""
|
2017-12-25 00:03:13 +03:00
|
|
|
container = cls.instance_type()
|
2017-03-26 16:40:41 +03:00
|
|
|
container.provider_type = cls.provider_type
|
2020-10-09 22:16:27 +03:00
|
|
|
container.declarative_parent = cls
|
2021-02-01 17:42:21 +03:00
|
|
|
container.set_providers(**providers.deepcopy(cls.providers))
|
2017-12-25 00:03:13 +03:00
|
|
|
container.override_providers(**overriding_providers)
|
2021-01-14 01:07:41 +03:00
|
|
|
container.apply_container_providers_overridings()
|
2017-03-26 16:40:41 +03:00
|
|
|
return container
|
|
|
|
|
|
|
|
@classmethod
|
2017-03-26 22:38:26 +03:00
|
|
|
def override(cls, object overriding):
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Override current container by overriding container.
|
|
|
|
|
|
|
|
:param overriding: Overriding container.
|
|
|
|
:type overriding: :py:class:`DeclarativeContainer`
|
|
|
|
|
|
|
|
:raise: :py:exc:`dependency_injector.errors.Error` if trying to
|
|
|
|
override container by itself or its subclasses
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
if issubclass(cls, overriding):
|
2021-02-01 17:42:21 +03:00
|
|
|
raise errors.Error('Container {0} could not be overridden '
|
|
|
|
'with itself or its subclasses'.format(cls))
|
2017-03-26 16:40:41 +03:00
|
|
|
|
|
|
|
cls.overridden += (overriding,)
|
|
|
|
|
|
|
|
for name, provider in six.iteritems(overriding.cls_providers):
|
|
|
|
try:
|
|
|
|
getattr(cls, name).override(provider)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def reset_last_overriding(cls):
|
|
|
|
"""Reset last overriding provider for each container providers.
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
if not cls.overridden:
|
2021-02-01 17:42:21 +03:00
|
|
|
raise errors.Error('Container {0} is not overridden'.format(cls))
|
2017-03-26 16:40:41 +03:00
|
|
|
|
|
|
|
cls.overridden = cls.overridden[:-1]
|
|
|
|
|
|
|
|
for provider in six.itervalues(cls.providers):
|
|
|
|
provider.reset_last_overriding()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def reset_override(cls):
|
|
|
|
"""Reset all overridings for each container providers.
|
|
|
|
|
|
|
|
:rtype: None
|
|
|
|
"""
|
|
|
|
cls.overridden = tuple()
|
|
|
|
|
|
|
|
for provider in six.itervalues(cls.providers):
|
|
|
|
provider.reset_override()
|
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
@classmethod
|
|
|
|
def resolve_provider_name(cls, provider_to_resolve):
|
|
|
|
"""Try to resolve provider name by its instance."""
|
|
|
|
for provider_name, container_provider in cls.providers.items():
|
|
|
|
if container_provider is provider_to_resolve:
|
|
|
|
return provider_name
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2017-03-26 16:40:41 +03:00
|
|
|
|
|
|
|
def override(object container):
|
|
|
|
""":py:class:`DeclarativeContainer` overriding decorator.
|
|
|
|
|
|
|
|
:param container: Container that should be overridden by decorated
|
|
|
|
container.
|
|
|
|
:type container: :py:class:`DeclarativeContainer`
|
|
|
|
|
|
|
|
:return: Declarative container's overriding decorator.
|
|
|
|
:rtype: callable(:py:class:`DeclarativeContainer`)
|
|
|
|
"""
|
2017-03-26 22:38:26 +03:00
|
|
|
def _decorator(object overriding_container):
|
2017-03-26 16:40:41 +03:00
|
|
|
"""Overriding decorator."""
|
|
|
|
container.override(overriding_container)
|
|
|
|
return overriding_container
|
|
|
|
return _decorator
|
|
|
|
|
|
|
|
|
|
|
|
def copy(object container):
|
|
|
|
""":py:class:`DeclarativeContainer` copying decorator.
|
|
|
|
|
|
|
|
This decorator copy all providers from provided container to decorated one.
|
|
|
|
If one of the decorated container providers matches to source container
|
|
|
|
providers by name, it would be replaced by reference.
|
|
|
|
|
|
|
|
:param container: Container that should be copied by decorated container.
|
|
|
|
:type container: :py:class:`DeclarativeContainer`
|
|
|
|
|
|
|
|
:return: Declarative container's copying decorator.
|
|
|
|
:rtype: callable(:py:class:`DeclarativeContainer`)
|
|
|
|
"""
|
2021-01-27 17:21:45 +03:00
|
|
|
def _get_providers_memo(from_providers, source_providers):
|
|
|
|
memo = dict()
|
|
|
|
|
|
|
|
for name, provider in from_providers.items():
|
2017-03-26 16:40:41 +03:00
|
|
|
try:
|
2021-01-27 17:21:45 +03:00
|
|
|
source_provider = source_providers[name]
|
|
|
|
except KeyError:
|
|
|
|
...
|
2017-03-26 16:40:41 +03:00
|
|
|
else:
|
|
|
|
memo[id(source_provider)] = provider
|
|
|
|
|
2021-01-27 17:21:45 +03:00
|
|
|
if hasattr(provider, 'providers') and hasattr(source_provider, 'providers'):
|
|
|
|
sub_memo = _get_providers_memo(provider.providers, source_provider.providers)
|
|
|
|
memo.update(sub_memo)
|
|
|
|
return memo
|
|
|
|
|
|
|
|
def _decorator(copied_container):
|
|
|
|
memo = _get_providers_memo(copied_container.cls_providers, container.providers)
|
|
|
|
|
2021-02-01 17:42:21 +03:00
|
|
|
providers_copy = providers.deepcopy(container.providers, memo)
|
2017-03-26 16:40:41 +03:00
|
|
|
for name, provider in six.iteritems(providers_copy):
|
|
|
|
setattr(copied_container, name, provider)
|
|
|
|
|
|
|
|
return copied_container
|
|
|
|
return _decorator
|
|
|
|
|
|
|
|
|
|
|
|
cpdef bint is_container(object instance):
|
|
|
|
"""Check if instance is container instance.
|
|
|
|
|
|
|
|
:param instance: Instance to be checked.
|
|
|
|
:type instance: object
|
|
|
|
|
|
|
|
:rtype: bool
|
|
|
|
"""
|
|
|
|
return getattr(instance, '__IS_CONTAINER__', False) is True
|
|
|
|
|
|
|
|
|
|
|
|
cpdef object _check_provider_type(object container, object provider):
|
|
|
|
if not isinstance(provider, container.provider_type):
|
2021-02-01 17:42:21 +03:00
|
|
|
raise errors.Error('{0} can contain only {1} '
|
|
|
|
'instances'.format(container, container.provider_type))
|
2021-01-11 03:26:15 +03:00
|
|
|
|
|
|
|
|
|
|
|
cpdef bint _isawaitable(object instance):
|
|
|
|
try:
|
|
|
|
return <bint> inspect.isawaitable(instance)
|
|
|
|
except AttributeError:
|
|
|
|
return <bint> False
|