Command & Control
Business applications can send commands to devices following the Command & Control API. This concept page describes how this API is used by applications to send commands and describes how Hono’s protocol adapters process the commands so that they reach their target device.
The description below shows the command & control handling using the Device Connection service. That service is now deprecated and will be replaced by the service implementing the Command Router API. See the last chapter for an overview of how commands are routed if protocol adapters are configured to use the Command Router service instead of the Device Connection service.
Commands can be sent following a request/response or a one-way pattern. For Request/Response commands, there is always a response expected from the device.
General concept
The following sequence diagram gives an overview of a device indicating its availability for receiving commands, of a business application sending a command to the device and of the device sending back a command response.
The application and the adapter connect to the AMQP Network, which forwards the transfer - for clarity this is not shown in the diagram below.
Request/Response Command overview
In (1) the device subscribes for commands (if connecting to the AMQP or MQTT adapter) or indicates that it will stay connected for a given amount of time to receive a command (if connecting to the HTTP adapter), using the ttd
(“time till disconnect”) parameter.
The protocol adapter will then create the necessary AMQP consumer link with the AMQP messaging network if it doesn’t exist already (for more details see below) and will send a notification to the application that the device is ready to receive commands (2).
After having created a sender link on the command/TENANT
address, the application can then send commands, with the target device given in the AMQP message to
address command/TENANT/4711
(3). If a command response is expected, the command response address command_response/TENANT/${replyId}
(with replyId
being an arbitrary identifier chosen by the application) is to be set as reply-to
property in the command message and a corresponding receiver link is to be opened by the application. For one-way commands, both is to be omitted.
After receiving the command, the protocol adapter instance will forward the command to the device (4) and send a disposition update back to the application (5).
In case of a Request/Response command, the device can then send a command response (6) that will be forwarded by the protocol adapter back to the application (7).
Command & Control involving a gateway
Hono has special support for sending commands to devices that are connected via a gateway to Hono. Such devices are configured in the Hono device registration service in such a way, that certain gateways may act on behalf of the device.
When sending commands, the northbound applications do not have to know to which gateway the command target device is connected to. The application sends the command with the device address and Hono will direct the command to a gateway that has subscribed for such commands and that is configured to act on behalf of the command target device. If there are multiple matching gateways, the one that the command target device was last connected to is chosen. The information about which gateways are subscribed and which gateway a device has last communicated by is managed via the device connection service.
Command consumer links in the protocol adapter
The protocol adapter opens 2 kinds of consumer links to receive commands.
-
A tenant-scoped link on the address
command/${tenant}
.
This is the link address used by applications to send commands. Upon receiving a command message on this link, the protocol adapter checks whether the command target device id needs to be mapped to a gateway. Furthermore it is checked to which particular protocol adapter instance the target device (or mapped gateway) is actually connected. Since this kind of link is opened from all protocol adapter instances receiving commands for the tenant, a command message is first received by any one of these protocol adapter instances. Therefore, if necessary, the command will be delegated to the adapter instance that is connected to the target device or to the gateway receiving commands for the device. That is done by forwarding the command to the AMQP messaging network on a link with the addresscommand_internal/${adapterInstanceId}
(see below). -
A link per protocol adapter instance on the address
command_internal/${adapterInstanceId}
.
On this link, commands will be received that have been forwarded from another protocol adapter instance. This link address is only used for communication between protocol adapter instances, so attaching to this link address should not be enabled for applications.
Example with multiple adapters involved
The following diagrams show the message flow if the command message is first received on a protocol adapter instance that the target device is not connected to.
Command subscription
In the scenario here there is a protocol adapter instance #2 through which a command subscription for the example tenant was already made (0).
The device subscribes for commands (1) and the protocol adapter creates the receiver link (2) on the tenant-scoped link. The protocol adapter then updates the command-handling protocol adapter instance for device information (3), assigning the device 4711 to adapter instance id #1. Following that, the notification about the device subscription is sent to the application via the AMQP messaging network (4).
Command handling
Upon receiving the notification, the application prepares sender and command response receiver links (1,2) and sends the command message to the AMQP messaging network. Here it is received by protocol adapter instance #2. The protocol adapter then queries the command-handling protocol adapter instances information for the device id of the command message (4). In this case here, the protocol adapter instance #1 is returned (5). The command then gets forwarded to the AMQP messaging network on the address for adapter instance #1 (6). The protocol adapter instance #1 will receive the message (7) and forward it to the device (8). As the last step, an accepted
disposition will be sent back to the application (9).
Command response handling
The command response message is sent back to the application from the protocol adapter via the AMQP messaging network.
Gateway subscriptions
Gateway subscribing for commands for a particular device
The following sequence diagrams show the different steps involved in having a gateway subscribe for commands of a particular device.
Command subscription
The gateway “gw-1” is connected to a protocol adapter and subscribes to commands for a device 4711 (1). This device has to be configured so that the gateway may act on its behalf (see Configuring Gateway Devices for details).
The protocol adapter creates the tenant-scoped consumer link on the command/TENANT
address (if it doesn’t already exist) (2) and then updates the command-handling protocol adapter instance for device information (3), assigning the device 4711 to adapter instance id #1.
Just like it is done when a protocol adapter handles any kind of message from a gateway acting on behalf of a device, the protocol adapter updates the last-known gateway information here, sending a request to the device connection service (4). The notification event is then sent containing the device id 4711 (5)
Command handling
After the application has prepared the sender and consumer links (1,2), it sends the command message on the command/TENANT
link with the AMQP message to
property set to command/TENANT/4711
and reply-to
set to the address of the command response consumer link (command_response/TENANT/${replyId}
with replyId
being an arbitrary identifier chosen by the application) (3). After receiving the command message, the protocol adapter determines the command-handling protocol adapter instances information for the device id of the command message (4). In this case here, the protocol adapter instance #1 is returned (5), meaning that the command is already at the right adapter instance. As the subscription for commands to device 4711 was done by gateway “gw-1”, the command gets forwarded to that gateway (6). It is then the responsibility of the gateway to forward the command to the device 4711
. After the gateway has acknowledged the command message, an accepted
disposition will be sent back to the application (7).
Command response handling
When the device sends a command response via the gateway (1), the protocol adapter forwards the command message on the command_response/TENANT/${replyId}
link to the application (2).
Gateway subscribing for commands for all its devices
A gateway may also subscribe for commands sent to all the different devices that the gateway acts on behalf of. Such a scenario is shown in the following sequence diagram.
Command subscription
The gateway subscribes for commands just like a normal device would, only using its id gw-1
(1). The protocol adapter creates the tenant-scoped consumer link on the command/TENANT
address (if it doesn’t already exist) (2) and then updates the command-handling protocol adapter instance for device information (3), assigning the device ‘gw-1’ to adapter instance id #1.
The subscription notification sent to the application contains the gateway id gw-1
. That means that either the application has to know about the gateway, or that it just assumes that the devices it sends commands to (and that are connected to the gateway) are always available for receiving commands. This may especially be the case for long-lasting command subscriptions (with the MQTT or AMQP adapter).
Command handling
After the application has prepared the sender and consumer links (1,2), it sends the command message on the command/TENANT
link with the AMQP message to
property set to command/TENANT/4711
and reply-to
set to the address of the command response consumer link (command_response/TENANT/${replyId}
with replyId
being an arbitrary identifier chosen by the application) (3). After receiving the command message, the protocol adapter determines the command-handling protocol adapter instances information for the device id of the command message (4).
In the example above, there is no adapter instance associated with the device 4711
. Therefore it is checked whether there are adapter instances handling commands for the gateways, configured to possibly act on behalf of the device.
If there is an adapter instance associated with the last known gateway of the device, that instance is returned as the result. Otherwise, and in the example above, the command handling adapter instance for any of these gateways is returned (the choice being random if there are multiple instances). In the above example that is the instance #1 associated with gateway gw-1
(5).
Then the command gets forwarded to that gateway (6). It is the responsibility of the gateway to forward the command to the device 4711
. After the gateway has acknowledged the command message, an accepted
disposition will be sent back to the application (7).
Handling of the command response is done in the same way as shown in the chapter above for a gateway subscribing for a particular device and is therefore omitted here.
If a gateway has already subscribed for commands for all its device, it may still subscribe for commands for a particular device (and the other way around). The particular device subscription has precedence then in choosing over which subscription protocol/channel to send the command to the gateway.
New approach using the Command Router service
The following diagrams show the message flow if protocol adapters are configured to use the Command Router service instead of the Device Connection service.
Command subscription
In the scenario the device subscribes for commands (1) and the protocol adapter registers the command consumer with the Command Router service, associating the device with its protocol adapter instance identifier (2). The Command Router service creates a receiver link scoped to the device’s tenant (3) if it doesn’t exist yet. Following that, the notification about the device subscription is sent to the application via the AMQP messaging network (4).
Command handling
Upon receiving the notification, the application prepares sender and command response receiver links (1,2) and sends the command message to the AMQP messaging network. The message is received by the Command Router service component (3), which will determine the protocol adapter instance #1 that is able to handle the command message. The command then gets forwarded to the AMQP messaging network on the address for adapter instance #1 (4). The protocol adapter instance #1 will receive the message (5) and forward it to the device (6). As the last step, an accepted
disposition will be sent back to the application (7).
Command response handling
The command response message is sent back to the application from the protocol adapter via the AMQP messaging network.