waku
¶
Application
¶
Source code in src/waku/application.py
ApplicationFactory
¶
create
classmethod
¶
create(
root_module,
/,
dependency_provider,
lifespan=(),
extensions=DEFAULT_EXTENSIONS,
)
Source code in src/waku/factory.py
DynamicModule
dataclass
¶
DynamicModule(
*,
providers=list(),
imports=list(),
exports=list(),
extensions=list(),
is_global=False,
id=uuid4(),
parent_module,
)
Bases: ModuleMetadata
providers
class-attribute
instance-attribute
¶
List of providers for dependency injection.
imports
class-attribute
instance-attribute
¶
List of modules imported by this module.
exports
class-attribute
instance-attribute
¶
List of types or modules exported by this module.
extensions
class-attribute
instance-attribute
¶
List of module extensions for lifecycle hooks.
is_global
class-attribute
instance-attribute
¶
Whether this module is global or not.
module
¶
Decorator to define a module.
PARAMETER | DESCRIPTION |
---|---|
providers
|
Sequence of providers for dependency injection. |
imports
|
Sequence of modules imported by this module.
TYPE:
|
exports
|
Sequence of types or modules exported by this module.
TYPE:
|
extensions
|
Sequence of module extensions for lifecycle hooks.
TYPE:
|
is_global
|
Whether this module is global or not.
TYPE:
|
Source code in src/waku/modules/_metadata.py
application
¶
Application
¶
Source code in src/waku/application.py
container
¶
ApplicationContainer
¶
Source code in src/waku/container.py
add_module
¶
Source code in src/waku/container.py
has
¶
get_module
¶
get_module_by_id
¶
get_modules
¶
override
¶
is_global_module
¶
context
async
¶
get
async
¶
contrib
¶
asgi
¶
litestar
¶
ApplicationMiddleware
¶
ApplicationPlugin
¶
Bases: InitPluginProtocol
Source code in src/waku/contrib/litestar.py
on_app_init
¶
Source code in src/waku/contrib/litestar.py
di
¶
AnyProvider
module-attribute
¶
DependencyProvider
¶
Bases: ABC
register
abstractmethod
¶
try_register
abstractmethod
¶
context
async
¶
Source code in src/waku/di/_providers.py
get
async
¶
get_all
async
¶
InjectionContext
¶
Bases: Protocol
resolve
async
¶
Source code in src/waku/di/_context.py
resolve_iterable
async
¶
Source code in src/waku/di/_context.py
Dependency
dataclass
¶
inject
¶
contrib
¶
aioinject
¶
AioinjectDependencyProvider
¶
Bases: DependencyProvider
Source code in src/waku/di/contrib/aioinject.py
context
async
¶
Source code in src/waku/di/_providers.py
get
async
¶
get_all
async
¶
register
¶
try_register
¶
override
¶
ext
¶
DEFAULT_EXTENSIONS
module-attribute
¶
DEFAULT_EXTENSIONS = (
ValidationExtension(
[DependenciesAccessible(), DIScopeMismatch()],
strict=True,
),
)
validation
¶
ValidationRule
¶
ValidationExtension
¶
Bases: AfterApplicationInit
Source code in src/waku/ext/validation/_extension.py
after_app_init
async
¶
rules
¶
DependenciesAccessible
¶
Bases: ValidationRule
Check if all dependencies of providers are accessible.
This validation rule ensures that all dependencies required by providers are either: 1. Available globally 2. Provided by the current module 3. Provided by any of the imported modules
validate
¶
Source code in src/waku/ext/validation/rules.py
DIScopeMismatch
¶
Bases: ValidationRule
Check if Singleton and Object providers don't depend on Scoped and Transient ones.
validate
¶
Source code in src/waku/ext/validation/rules.py
extensions
¶
Extension protocols for the waku framework.
This module defines protocols for extending module behavior. These protocols allow for hooking into various lifecycle events.
ApplicationExtension
module-attribute
¶
ApplicationExtension = (
OnApplicationInit | AfterApplicationInit
)
factory
¶
ApplicationFactory
¶
create
classmethod
¶
create(
root_module,
/,
dependency_provider,
lifespan=(),
extensions=DEFAULT_EXTENSIONS,
)
Source code in src/waku/factory.py
graph
¶
ModuleGraph
¶
Source code in src/waku/graph.py
add_node
¶
add_edge
¶
traverse
¶
Source code in src/waku/graph.py
lifespan
¶
LifespanFunc
module-attribute
¶
LifespanFunc = (
Callable[
['Application'], AbstractAsyncContextManager[None]
]
| AbstractAsyncContextManager[None]
)
mediator
¶
Mediator
¶
Bases: IMediator
Default mediator implementation.
Source code in src/waku/mediator/impl.py
send
async
¶
Send a request through the mediator middleware chain.
PARAMETER | DESCRIPTION |
---|---|
request
|
The request to process |
RETURNS | DESCRIPTION |
---|---|
ResponseT
|
Response from the handler |
RAISES | DESCRIPTION |
---|---|
RequestHandlerNotFound
|
If no handler is registered for the request type |
Source code in src/waku/mediator/impl.py
publish
async
¶
Publish an event to all registered handlers.
PARAMETER | DESCRIPTION |
---|---|
event
|
The event to publish
TYPE:
|
RAISES | DESCRIPTION |
---|---|
EventHandlerNotFound
|
If no handlers are registered for the event type |
Source code in src/waku/mediator/impl.py
IMediator
¶
Bases: ISender
, IPublisher
, ABC
Defines a mediator to encapsulate request/response and publishing interaction patterns.
publish
abstractmethod
async
¶
ISender
¶
Bases: ABC
Send a request through the mediator middleware chain to be handled by a single handler.
MiddlewareChain
¶
Source code in src/waku/mediator/middlewares.py
wrap
¶
Source code in src/waku/mediator/middlewares.py
MediatorConfig
dataclass
¶
MediatorConfig(
*,
mediator_implementation_type=Mediator,
event_publisher=SequentialEventPublisher,
middlewares=(),
)
Configuration for the Mediator extension.
This class defines the configuration options for setting up the mediator pattern implementation in the application.
ATTRIBUTE | DESCRIPTION |
---|---|
mediator_implementation_type |
The concrete implementation class for the mediator interface (IMediator). Defaults to the standard Mediator class. |
event_publisher |
The implementation class for publishing events. Defaults to
TYPE:
|
middlewares |
A sequence of middleware classes that will be applied to the mediator pipeline. Middlewares are executed in the order they are defined. Defaults to an empty sequence.
TYPE:
|
Example
MediatorExtension
¶
Bases: OnModuleConfigure
Source code in src/waku/mediator/modules.py
MediatorModule
¶
register
classmethod
¶
Application-level module for Mediator setup.
PARAMETER | DESCRIPTION |
---|---|
config
|
Configuration for the Mediator extension.
TYPE:
|
Source code in src/waku/mediator/modules.py
RequestHandler
¶
Bases: ABC
, Generic[RequestT, ResponseT]
The request handler interface.
The request handler is an object, which gets a request as input and may return a response as a result.
Command handler example::
class JoinMeetingCommandHandler(RequestHandler[JoinMeetingCommand, None]) def init(self, meetings_api: MeetingAPIProtocol) -> None: self._meetings_api = meetings_api
async def handle(self, request: JoinMeetingCommand) -> None:
await self._meetings_api.join_user(request.user_id, request.meeting_id)
Query handler example::
class ReadMeetingQueryHandler(RequestHandler[ReadMeetingQuery, ReadMeetingQueryResult]) def init(self, meetings_api: MeetingAPIProtocol) -> None: self._meetings_api = meetings_api
async def handle(self, request: ReadMeetingQuery) -> ReadMeetingQueryResult:
link = await self._meetings_api.get_link(request.meeting_id)
return ReadMeetingQueryResult(link=link, meeting_id=request.meeting_id)
RequestMap
¶
Source code in src/waku/mediator/requests/map.py
bind
¶
Source code in src/waku/mediator/requests/map.py
contracts
¶
events
¶
handler
¶
EventHandler
¶
The event handler interface.
Usage::
class UserJoinedEventHandler(EventHandler[UserJoinedEvent]) def init(self, meetings_api: MeetingAPIProtocol) -> None: self._meetings_api = meetings_api
async def handle(self, event: UserJoinedEvent) -> None:
await self._meetings_api.notify_room(event.meeting_id, "New user joined!")
map
¶
EventMapRegistry
module-attribute
¶
EventMapRegistry = MutableMapping[
type[EventT], list[EventHandlerType[EventT]]
]
EventMap
¶
Source code in src/waku/mediator/events/map.py
bind
¶
Source code in src/waku/mediator/events/map.py
publish
¶
SequentialEventPublisher
¶
Bases: EventPublisher
GroupEventPublisher
¶
Bases: EventPublisher
exceptions
¶
ImproperlyConfiguredError
¶
Bases: MediatorError
Raised when mediator configuration is invalid.
RequestHandlerAlreadyRegistered
¶
Bases: MediatorError
, KeyError
Raised when a request handler is already registered.
ATTRIBUTE | DESCRIPTION |
---|---|
request_type |
The type of request that caused the error. |
handler_type |
The type of handler that was already registered.
TYPE:
|
Source code in src/waku/mediator/exceptions.py
RequestHandlerNotFound
¶
Bases: MediatorError
, TypeError
Raised when a request handler is not found.
ATTRIBUTE | DESCRIPTION |
---|---|
request_type |
The type of request that caused the error. |
Source code in src/waku/mediator/exceptions.py
EventHandlerAlreadyRegistered
¶
Bases: MediatorError
, KeyError
Raised when an event handler is already registered.
ATTRIBUTE | DESCRIPTION |
---|---|
event_type |
The type of event that caused the error. |
handler_type |
The type of handler that was already registered.
TYPE:
|
Source code in src/waku/mediator/exceptions.py
EventHandlerNotFound
¶
Bases: MediatorError
, TypeError
Raised when an event handler is not found.
ATTRIBUTE | DESCRIPTION |
---|---|
event_type |
The type of event that caused the error. |
Source code in src/waku/mediator/exceptions.py
impl
¶
Mediator
¶
Bases: IMediator
Default mediator implementation.
Source code in src/waku/mediator/impl.py
send
async
¶
Send a request through the mediator middleware chain.
PARAMETER | DESCRIPTION |
---|---|
request
|
The request to process |
RETURNS | DESCRIPTION |
---|---|
ResponseT
|
Response from the handler |
RAISES | DESCRIPTION |
---|---|
RequestHandlerNotFound
|
If no handler is registered for the request type |
Source code in src/waku/mediator/impl.py
publish
async
¶
Publish an event to all registered handlers.
PARAMETER | DESCRIPTION |
---|---|
event
|
The event to publish
TYPE:
|
RAISES | DESCRIPTION |
---|---|
EventHandlerNotFound
|
If no handlers are registered for the event type |
Source code in src/waku/mediator/impl.py
interfaces
¶
ISender
¶
Bases: ABC
Send a request through the mediator middleware chain to be handled by a single handler.
IMediator
¶
Bases: ISender
, IPublisher
, ABC
Defines a mediator to encapsulate request/response and publishing interaction patterns.
publish
abstractmethod
async
¶
middlewares
¶
NoopMiddleware
¶
Bases: Middleware[RequestT, ResponseT]
MiddlewareChain
¶
Source code in src/waku/mediator/middlewares.py
wrap
¶
Source code in src/waku/mediator/middlewares.py
modules
¶
MediatorConfig
dataclass
¶
MediatorConfig(
*,
mediator_implementation_type=Mediator,
event_publisher=SequentialEventPublisher,
middlewares=(),
)
Configuration for the Mediator extension.
This class defines the configuration options for setting up the mediator pattern implementation in the application.
ATTRIBUTE | DESCRIPTION |
---|---|
mediator_implementation_type |
The concrete implementation class for the mediator interface (IMediator). Defaults to the standard Mediator class. |
event_publisher |
The implementation class for publishing events. Defaults to
TYPE:
|
middlewares |
A sequence of middleware classes that will be applied to the mediator pipeline. Middlewares are executed in the order they are defined. Defaults to an empty sequence.
TYPE:
|
Example
MediatorModule
¶
register
classmethod
¶
Application-level module for Mediator setup.
PARAMETER | DESCRIPTION |
---|---|
config
|
Configuration for the Mediator extension.
TYPE:
|
Source code in src/waku/mediator/modules.py
MediatorExtension
¶
Bases: OnModuleConfigure
Source code in src/waku/mediator/modules.py
requests
¶
handler
¶
RequestHandlerType
module-attribute
¶
RequestHandlerType = type[
RequestHandler[RequestT, ResponseT]
]
RequestHandler
¶
Bases: ABC
, Generic[RequestT, ResponseT]
The request handler interface.
The request handler is an object, which gets a request as input and may return a response as a result.
Command handler example::
class JoinMeetingCommandHandler(RequestHandler[JoinMeetingCommand, None]) def init(self, meetings_api: MeetingAPIProtocol) -> None: self._meetings_api = meetings_api
async def handle(self, request: JoinMeetingCommand) -> None:
await self._meetings_api.join_user(request.user_id, request.meeting_id)
Query handler example::
class ReadMeetingQueryHandler(RequestHandler[ReadMeetingQuery, ReadMeetingQueryResult]) def init(self, meetings_api: MeetingAPIProtocol) -> None: self._meetings_api = meetings_api
async def handle(self, request: ReadMeetingQuery) -> ReadMeetingQueryResult:
link = await self._meetings_api.get_link(request.meeting_id)
return ReadMeetingQueryResult(link=link, meeting_id=request.meeting_id)
map
¶
RequestMapRegistry
module-attribute
¶
RequestMapRegistry = MutableMapping[
type[RequestT], RequestHandlerType[RequestT, ResponseT]
]
RequestMap
¶
Source code in src/waku/mediator/requests/map.py
bind
¶
Source code in src/waku/mediator/requests/map.py
modules
¶
DynamicModule
dataclass
¶
DynamicModule(
*,
providers=list(),
imports=list(),
exports=list(),
extensions=list(),
is_global=False,
id=uuid4(),
parent_module,
)
Bases: ModuleMetadata
providers
class-attribute
instance-attribute
¶
List of providers for dependency injection.
imports
class-attribute
instance-attribute
¶
List of modules imported by this module.
exports
class-attribute
instance-attribute
¶
List of types or modules exported by this module.
extensions
class-attribute
instance-attribute
¶
List of module extensions for lifecycle hooks.
is_global
class-attribute
instance-attribute
¶
Whether this module is global or not.
ModuleMetadata
dataclass
¶
ModuleMetadata(
*,
providers=list(),
imports=list(),
exports=list(),
extensions=list(),
is_global=False,
id=uuid4(),
)
providers
class-attribute
instance-attribute
¶
List of providers for dependency injection.
imports
class-attribute
instance-attribute
¶
List of modules imported by this module.
exports
class-attribute
instance-attribute
¶
List of types or modules exported by this module.
extensions
class-attribute
instance-attribute
¶
List of module extensions for lifecycle hooks.
is_global
class-attribute
instance-attribute
¶
Whether this module is global or not.
Module
¶
Source code in src/waku/modules/_module.py
module
¶
Decorator to define a module.
PARAMETER | DESCRIPTION |
---|---|
providers
|
Sequence of providers for dependency injection. |
imports
|
Sequence of modules imported by this module.
TYPE:
|
exports
|
Sequence of types or modules exported by this module.
TYPE:
|
extensions
|
Sequence of module extensions for lifecycle hooks.
TYPE:
|
is_global
|
Whether this module is global or not.
TYPE:
|