Packages
commanded
1.1.0
1.4.10
1.4.9
1.4.8
1.4.7
1.4.6
1.4.3
1.4.2
1.4.1
1.4.0
1.4.0-rc.0
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
1.0.0-rc.1
1.0.0-rc.0
0.19.1
0.19.0
0.18.1
0.18.0
0.17.5
0.17.4
0.17.3
0.17.2
0.17.1
0.17.0
0.16.0
0.16.0-rc.1
0.16.0-rc.0
0.15.1
0.15.0
0.14.0
0.14.0-rc.0
0.13.0
0.12.0
0.11.0
0.10.0
0.9.0
0.8.5
0.8.4
0.8.3
0.8.1
0.8.0
0.7.1
0.6.2
0.6.1
0.6.0
0.4.0
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
Use Commanded to build your own Elixir applications following the CQRS/ES pattern.
Current section
Files
Jump to
Current section
Files
lib/commanded/commands/composite_router.ex
defmodule Commanded.Commands.CompositeRouter do
@moduledoc """
Composite router allows you to combine multiple router modules into a single
router able to dispatch any registered command from an included child router.
One example usage is to define a router per context and then combine each
context's router into a single top-level composite app router used for all
command dispatching.
### Example
Define a composite router module which imports the commands from each included
router:
defmodule Bank.AppRouter do
use Commanded.Commands.CompositeRouter
router(Bank.Accounts.Router)
router(Bank.MoneyTransfer.Router)
end
One or more routers or composite routers can be included in a
`Commanded.Application` since it is also a composite router:
defmodule BankApp do
use Commanded.Application
router(Bank.AppRouter)
end
You can dispatch a command via the application which will then be routed to
the associated child router:
command = %OpenAccount{account_number: "ACC123", initial_balance: 1_000}
:ok = BankApp.dispatch(command)
Or via the composite router itself, specifying the application:
:ok = Bank.AppRouter.dispatch(command, application: BankApp)
A composite router can include composite routers.
"""
defmacro __using__(opts) do
quote do
require Logger
import unquote(__MODULE__)
@before_compile unquote(__MODULE__)
Module.register_attribute(__MODULE__, :registered_commands, accumulate: false)
application = Keyword.get(unquote(opts), :application)
default_dispatch_opts =
unquote(opts)
|> Keyword.get(:default_dispatch_opts, [])
|> Keyword.put(:application, application)
@default_dispatch_opts default_dispatch_opts
@registered_commands %{}
end
end
@doc """
Register a `Commanded.Commands.Router` module within this composite router.
Will allow the composite router to dispatch any commands registered by the
included router module. Multiple routers can be registered.
"""
defmacro router(router_module) do
quote location: :keep do
for command <- unquote(router_module).__registered_commands__() do
case Map.get(@registered_commands, command) do
nil ->
@registered_commands Map.put(@registered_commands, command, unquote(router_module))
existing_router ->
raise "duplicate registration for #{inspect(command)} command, registered in both #{
inspect(existing_router)
} and #{inspect(unquote(router_module))}"
end
end
end
end
defmacro __before_compile__(_env) do
quote generated: true do
@doc false
def __registered_commands__ do
Enum.map(@registered_commands, fn {command_module, _router} -> command_module end)
end
@doc false
def dispatch(command, opts \\ [])
@doc false
def dispatch(command, :infinity),
do: do_dispatch(command, timeout: :infinity)
@doc false
def dispatch(command, timeout) when is_integer(timeout),
do: do_dispatch(command, timeout: timeout)
@doc false
def dispatch(command, opts),
do: do_dispatch(command, opts)
for {command_module, router} <- @registered_commands do
@command_module command_module
@router router
defp do_dispatch(%@command_module{} = command, opts) do
opts = Keyword.merge(@default_dispatch_opts, opts)
@router.dispatch(command, opts)
end
end
# Catch unregistered commands, log and return an error.
defp do_dispatch(command, _opts) do
Logger.error(fn ->
"attempted to dispatch an unregistered command: " <> inspect(command)
end)
{:error, :unregistered_command}
end
end
end
end