mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 10:03:56 +03:00
87 lines
2.4 KiB
Cython
87 lines
2.4 KiB
Cython
"""Dependency injector provider utils.
|
|
|
|
Powered by Cython.
|
|
"""
|
|
|
|
import copy
|
|
import sys
|
|
import types
|
|
import threading
|
|
|
|
from dependency_injector.errors import Error
|
|
|
|
|
|
if sys.version_info[0] == 3: # pragma: no cover
|
|
CLASS_TYPES = (type,)
|
|
else: # pragma: no cover
|
|
CLASS_TYPES = (type, types.ClassType)
|
|
|
|
copy._deepcopy_dispatch[types.MethodType] = \
|
|
lambda obj, memo: type(obj)(obj.im_func,
|
|
copy.deepcopy(obj.im_self, memo),
|
|
obj.im_class)
|
|
|
|
|
|
cpdef bint is_provider(object instance):
|
|
"""Check if instance is provider instance.
|
|
|
|
:param instance: Instance to be checked.
|
|
:type instance: object
|
|
|
|
:rtype: bool
|
|
"""
|
|
return (not isinstance(instance, CLASS_TYPES) and
|
|
getattr(instance, '__IS_PROVIDER__', False) is True)
|
|
|
|
|
|
cpdef object ensure_is_provider(object instance):
|
|
"""Check if instance is provider instance and return it.
|
|
|
|
:param instance: Instance to be checked.
|
|
:type instance: object
|
|
|
|
:raise: :py:exc:`dependency_injector.errors.Error` if provided instance is
|
|
not provider.
|
|
|
|
:rtype: :py:class:`dependency_injector.providers.Provider`
|
|
"""
|
|
if not is_provider(instance):
|
|
raise Error('Expected provider instance, '
|
|
'got {0}'.format(str(instance)))
|
|
return instance
|
|
|
|
|
|
cpdef bint is_delegated(object instance):
|
|
"""Check if instance is delegated provider.
|
|
|
|
:param instance: Instance to be checked.
|
|
:type instance: object
|
|
|
|
:rtype: bool
|
|
"""
|
|
return (not isinstance(instance, CLASS_TYPES) and
|
|
getattr(instance, '__IS_DELEGATED__', False) is True)
|
|
|
|
|
|
cpdef str represent_provider(object provider, object provides):
|
|
"""Return string representation of provider.
|
|
|
|
:param provider: Provider object
|
|
:type provider: :py:class:`dependency_injector.providers.Provider`
|
|
|
|
:param provides: Object that provider provides
|
|
:type provider: object
|
|
|
|
:return: String representation of provider
|
|
:rtype: str
|
|
"""
|
|
return '<{provider}({provides}) at {address}>'.format(
|
|
provider='.'.join((provider.__class__.__module__,
|
|
provider.__class__.__name__)),
|
|
provides=repr(provides) if provides is not None else '',
|
|
address=hex(id(provider)))
|
|
|
|
cpdef object deepcopy(object instance, dict memo=None):
|
|
"""Return full copy of provider or container with providers."""
|
|
return copy.deepcopy(instance, memo)
|