python-dependency-injector/examples/callable_provider.py

50 lines
1.0 KiB
Python
Raw Normal View History

2015-01-28 01:48:33 +03:00
"""
Callable provider examples.
"""
from objects import AbstractCatalog
2015-02-23 11:47:38 +03:00
from objects.providers import (
Singleton,
Callable,
)
from objects.injections import (
Injection,
InitArg,
Attribute,
)
2015-01-28 01:48:33 +03:00
import sqlite3
# Some example function.
def consuming_function(arg, db):
return arg, db
# Catalog of objects providers.
class Catalog(AbstractCatalog):
"""
Objects catalog.
"""
database = Singleton(sqlite3.Connection,
InitArg('database', ':memory:'),
Attribute('row_factory', sqlite3.Row))
""" :type: (objects.Provider) -> sqlite3.Connection """
consuming_function = Callable(consuming_function,
Injection('db', database))
""" :type: (objects.Provider) -> consuming_function """
# Some calls.
arg1, db1 = Catalog.consuming_function(1)
arg2, db2 = Catalog.consuming_function(2)
arg3, db3 = Catalog.consuming_function(3)
# Some asserts.
assert db1 is db2 is db3
assert arg1 == 1
assert arg2 == 2
assert arg3 == 3