python-dependency-injector/examples/concept.py

63 lines
1.5 KiB
Python
Raw Normal View History

2015-08-31 16:31:38 +03:00
"""Concept example of `Dependency Injector`."""
2015-03-10 01:54:05 +03:00
2015-01-04 16:54:25 +03:00
import sqlite3
import dependency_injector as di
2015-01-04 16:54:25 +03:00
2015-01-11 16:03:45 +03:00
class ObjectA(object):
2015-03-10 01:54:05 +03:00
"""Example class ObjectA, that has dependency on database."""
2015-01-04 16:54:25 +03:00
def __init__(self, db):
2015-03-10 01:54:05 +03:00
"""Initializer."""
2015-01-04 16:54:25 +03:00
self.db = db
2015-01-11 16:03:45 +03:00
class ObjectB(object):
2015-03-10 01:54:05 +03:00
"""Example class ObjectB, that has dependencies on ObjectA and database."""
2015-01-04 16:54:25 +03:00
def __init__(self, a, db):
2015-03-10 01:54:05 +03:00
"""Initializer."""
2015-01-04 16:54:25 +03:00
self.a = a
self.db = db
class Catalog(di.AbstractCatalog):
2015-03-10 01:54:05 +03:00
"""Catalog of providers."""
2015-01-04 16:54:25 +03:00
database = di.Singleton(sqlite3.Connection,
database=':memory:')
""":type: (di.Provider) -> sqlite3.Connection"""
2015-01-04 16:54:25 +03:00
object_a_factory = di.Factory(ObjectA,
db=database)
""":type: (di.Provider) -> ObjectA"""
2015-01-04 16:54:25 +03:00
object_b_factory = di.Factory(ObjectB,
a=object_a_factory,
db=database)
""":type: (di.Provider) -> ObjectB"""
2015-01-04 16:54:25 +03:00
2015-01-11 19:10:11 +03:00
# Catalog static provides.
a1, a2 = Catalog.object_a_factory(), Catalog.object_a_factory()
b1, b2 = Catalog.object_b_factory(), Catalog.object_b_factory()
2015-01-11 19:10:11 +03:00
assert a1 is not a2
assert b1 is not b2
assert a1.db is a2.db is b1.db is b2.db is Catalog.database()
# Example of inline injections.
@di.inject(a=Catalog.object_a_factory)
@di.inject(b=Catalog.object_b_factory)
@di.inject(database=Catalog.database)
def example(a, b, database):
2015-08-05 17:33:38 +03:00
"""Example callback."""
assert a.db is b.db is database is Catalog.database()
example()