python-dependency-injector/objects/providers.py

135 lines
3.1 KiB
Python
Raw Normal View History

2015-01-04 17:26:33 +03:00
"""
Standard providers.
"""
2015-01-10 12:24:25 +03:00
from .injections import InitArg, Attribute, Method
2015-01-04 17:26:33 +03:00
class Provider(object):
"""
Base provider class.
"""
2015-01-11 16:03:45 +03:00
__is_objects_provider__ = True
2015-01-04 17:26:33 +03:00
def __call__(self, *args, **kwargs):
"""
Returns provided instance.
"""
raise NotImplementedError()
2015-01-11 16:03:45 +03:00
def prepare_injections(injections):
"""
Prepares injections list to injection.
"""
return [(injection.name, injection.value) for injection in injections]
def fetch_injections(injections, injection_type):
"""
Fetches injections of injection type from list.
"""
return tuple([injection
for injection in injections
if isinstance(injection, injection_type)])
2015-01-10 12:24:25 +03:00
2015-01-04 17:26:33 +03:00
class NewInstance(Provider):
"""
New instance providers will create and return new instance on every call.
"""
2015-01-10 12:24:25 +03:00
def __init__(self, provides, *injections):
2015-01-04 17:26:33 +03:00
"""
Initializer.
"""
self.provides = provides
2015-01-11 16:03:45 +03:00
self.init_injections = fetch_injections(injections, InitArg)
self.attribute_injections = fetch_injections(injections, Attribute)
self.method_injections = fetch_injections(injections, Method)
2015-01-04 17:26:33 +03:00
def __call__(self, *args, **kwargs):
"""
Returns provided instance.
"""
2015-01-11 16:03:45 +03:00
init_injections = prepare_injections(self.init_injections)
init_injections = dict(init_injections)
2015-01-10 12:24:25 +03:00
init_injections.update(kwargs)
2015-01-04 17:26:33 +03:00
2015-01-10 12:24:25 +03:00
provided = self.provides(*args, **init_injections)
2015-01-11 16:03:45 +03:00
attribute_injections = prepare_injections(self.attribute_injections)
for name, injectable in attribute_injections:
2015-01-10 12:24:25 +03:00
setattr(provided, name, injectable)
2015-01-11 16:03:45 +03:00
method_injections = prepare_injections(self.method_injections)
for name, injectable in method_injections:
2015-01-10 12:24:25 +03:00
getattr(provided, name)(injectable)
2015-01-04 17:26:33 +03:00
2015-01-10 12:24:25 +03:00
return provided
2015-01-04 17:26:33 +03:00
class Singleton(NewInstance):
"""
Singleton provider will create instance once and return it on every call.
"""
def __init__(self, *args, **kwargs):
"""
Initializer.
"""
self.instance = None
super(Singleton, self).__init__(*args, **kwargs)
def __call__(self, *args, **kwargs):
"""
Returns provided instance.
"""
if not self.instance:
self.instance = super(Singleton, self).__call__(*args, **kwargs)
return self.instance
class _StaticProvider(Provider):
"""
Static provider is base implementation that provides exactly the same as
it got on input.
"""
def __init__(self, provides):
"""
Initializer.
"""
self.provides = provides
def __call__(self):
"""
Returns provided instance.
"""
return self.provides
class Class(_StaticProvider):
"""
Class provider provides class.
"""
class Object(_StaticProvider):
"""
Object provider provides object.
"""
class Function(_StaticProvider):
"""
Function provider provides function.
"""
class Value(_StaticProvider):
"""
Value provider provides value.
"""