Dependency injection in BlackSheep¶
The getting started tutorials show how route and query string parameters can be injected directly in request handlers, by function signature. BlackSheep also supports dependency injection of services configured for the application. This page describes:
- An introduction to dependency injection in BlackSheep.
- Service resolution.
- Service lifetime.
- Options to create services.
- Examples of dependency injection.
Introduction¶
The Application
object exposes a services
property that can be used to
configure services. When the function signature of a request handler references
a type that is registered as service, an instance of that type is automatically
injected when the request handler is called.
Consider this example:
- some context is necessary to handle certain web requests (for example, a database connection pool)
- a class that contains this context can be configured in application services before the application starts
- request handlers have this context automatically injected
Demo¶
Starting from a minimal environment as described in the getting started
tutorial, create a foo.py
file with the following
contents, inside a domain
folder:
.
├── domain
│ ├── foo.py
│ └── __init__.py
└── server.py
domain/foo.py:
class Foo:
def __init__(self) -> None:
self.foo = "Foo"
Import the new class in server.py
, and register the type in app.services
as in this example:
server.py:
from blacksheep import Application
from domain.foo import Foo
app = Application()
app.services.add_exact_scoped(Foo) # <-- register Foo type as a service
@app.route("/")
def home(foo: Foo): # <-- foo is referenced in type annotation
return f"Hello, {foo.foo}!"
An instance of Foo
is injected automatically at every web request to "/".
Dependency injection is implemented in a dedicated library from the same author:
rodi
. rodi
implements dependency
injection in an unobstrusive way: it works by inspecting __init__
methods and
doesn't require to alter the source code of classes registered as services.
rodi
can also resolve dependencies inspecting class annotations, if an
__init__
method is not specified for the class to activate.
Service resolution¶
rodi
automatically resolves graphs of services, when a type that is resolved
requires other types. In the following example, instances of A
are created
automatically when resolving Foo
because the __init__
method in Foo
requires an instance of A
:
foo.py:
class A:
def __init__(self) -> None:
pass
class Foo:
def __init__(self, a: A) -> None:
self.a = a
Note that both types need to be registered in app.services
:
server.py:
from blacksheep import Application, text
from domain.foo import A, Foo
app = Application()
app.services.add_exact_transient(A)
app.services.add_exact_scoped(Foo)
@app.route("/")
def home(foo: Foo):
return text(
f"""
A: {id(foo.a)}
"""
)
Produces a response like the following at "/":
A: 140289521293056
Using class annotations¶
In alternative to defining __init__
methods, it is also possible to use
class annotations, like in the example below:
class A:
pass
class Foo:
a: A
Understanding services' lifetime¶
rodi
supports services having one of these lifetimes:
- singleton - instantiated only once per service provider
- transient - services are instantiated every time they are required
- scoped - instantiated once per web request
Consider the following example, where a type A
is registered as transient,
B
as scoped, C
as singleton:
foo.py:
class A:
def __init__(self) -> None:
pass
class B:
def __init__(self) -> None:
pass
class C:
def __init__(self) -> None:
pass
class Foo:
def __init__(self, a1: A, a2: A, b1: B, b2: B, c1: C, c2: C) -> None:
self.a1 = a1
self.a2 = a2
self.b1 = b1
self.b2 = b2
self.c1 = c1
self.c2 = c2
server.py:
from blacksheep import Application, text
from domain.foo import A, B, C, Foo
app = Application()
app.services.add_exact_transient(A)
app.services.add_exact_scoped(B)
app.services.add_exact_singleton(C)
app.services.add_exact_scoped(Foo)
@app.route("/")
def home(foo: Foo):
return text(
f"""
A1: {id(foo.a1)}
A2: {id(foo.a2)}
B1: {id(foo.b1)}
B2: {id(foo.b2)}
C1: {id(foo.c1)}
C2: {id(foo.c2)}
"""
)
Produces responses like the following at "/":
Request 1:
A1: 139976289977296
A2: 139976289977680
B1: 139976289977584
B2: 139976289977584
C1: 139976289978736
C2: 139976289978736
Request 2:
A1: 139976289979888
A2: 139976289979936
B1: 139976289979984
B2: 139976289979984
C1: 139976289978736
C2: 139976289978736
Note how:
- transient services are always instantiated whenever they are activated (A)
- scoped services are instantiated once per web request (B)
- a singleton service is activated only once (C)
Options to create services¶
rodi
provides several ways to define and instantiate services.
- registering an exact instance as singleton
- registering a concrete class by its type
- registering an abstract class and one of its concrete implementations
- registering a service using a factory function
Singleton example¶
class ServiceSettings:
def __init__(
self,
oauth_application_id: str,
oauth_application_secret: str
):
self.oauth_application_id = oauth_application_id
self.oauth_application_secret = oauth_application_secret
app.services.add_instance(ServiceSettings("00000000001", "APP_SECRET_EXAMPLE"))
Registering a concrete class¶
class HelloHandler:
def __init__(self):
pass
def greetings() -> str:
return "Hello"
app.services.add_exact_transient(HelloHandler)
Registering an abstract class¶
from abc import ABC, abstractmethod
from dataclasses import dataclass
from typing import Optional
from blacksheep.server.responses import json, not_found
# domain class and abstract repository defined in a dedicated package for
# domain objects
@dataclass
class Cat:
id: str
name: str
class CatsRepository(ABC):
@abstractmethod
async def get_cat_by_id(self, id: str) -> Optional[Cat]:
pass
# ------------------
# the concrete implementation will be defined in a dedicated package
class PostgreSQLCatsRepository(CatsRepository):
async def get_cat_by_id(self, id: str) -> Optional[Cat]:
# TODO: implement
raise Exception("Not implemented")
# ------------------
# register the abstract class and its concrete implementation when configuring
# the application
app.services.add_scoped(CatsRepository, PostgreSQLCatsRepository)
# a request handler needing the CatsRepository doesn't need to know about
# the exact implementation (e.g. PostgreSQL, SQLite, etc.)
@app.route("/api/cats/{cat_id}")
async def get_cat(cat_id: str, repo: CatsRepository):
cat = await repo.get_cat_by_id(cat_id)
if cat is None:
return not_found()
return json(cat)
Using a factory function¶
class Something:
def __init__(self, value: str) -> None:
self.value = value
def something_factory(services, activating_type) -> Something:
return Something("Factory Example")
app.services.add_transient_by_factory(something_factory)
Example: implement a request context¶
A good example of scoped service is one used to assign each web request with a trace id that can be used to identify requests for logging purposes.
from uuid import UUID, uuid4
class OperationContext:
def __init__(self):
self._trace_id = uuid4()
@property
def trace_id(self) -> UUID:
return self._trace_id
Register the OperationContext
type as a scoped service, this way it is
instantiated once per web request:
app.services.add_exact_scoped(OperationContext)
@app.route("/")
def home(context: OperationContext):
return text(
f"""
Request ID: {context.trace_id}
"""
)
Services that require asynchronous initialization¶
Services that require asynchronous initialization can be configured inside
on_start
callbacks, like in the following example:
import asyncio
from blacksheep import Application, text
app = Application()
class Example:
def __init__(self, text):
self.text = text
async def configure_something(app: Application):
await asyncio.sleep(0.5) # simulate 500 ms delay
app.services.add_instance(Example("Hello World"))
app.on_start += configure_something
@app.route("/")
async def home(service: Example):
return text(f"{service.text}")
Services configured this way are automatically injected in request handlers,
when a parameter name or type annotation matches a key inside app.services
.
Services that require disposing should be disposed in on_stop
callback:
async def dispose_example(app: Application):
# Note: after the application is started, services are read from
# app.service_provider:
service = app.service_provider[Example]
await service.dispose()
app.on_stop += dispose_example
Last modified on: 2023-04-17 16:51:11