diff --git a/doc/source/documentation.rst b/doc/source/documentation.rst index f8f38cf3..5764349e 100644 --- a/doc/source/documentation.rst +++ b/doc/source/documentation.rst @@ -57,6 +57,18 @@ execute commands sent by the server. The server's efficient management of these tasks is essential for maintaining reliable communication with numerous IoT devices, especially those with limited power and processing resources. +Terminology +........... + +* **LwM2M:** Lightweight Machine to Machine protocol. +* **Leshan:** LwM2M server implementation as one main component of the system. +* **Backend**: Django instance that is responsible for the REST API, database + and visualization. +* **Frontend**: Web application that visualizes the data from the backend, + integrated into Django. +* **Endpoint**: IoT device that is connected to Leshan, represented by a unique + Endpoint name. + Django Server ............. The Django server hosts the REST API, manages the database, and provides a web interface @@ -237,6 +249,84 @@ The Leshan server can also run locally, without the need of a docker container. The Leshan server should now be up and running under the following URL: ``http://localhost:8080``. +Communication & Interfaces +-------------------------- + +The communication between IoT devices and Leshan is specified by the OMA LwM2M +standard: + +- `LwM2M core specification v1.1.1`_ +- `LwM2M transport binding v1.1.1`_ + +.. _LwM2M core specification v1.1.1: https://www.openmobilealliance.org/release/LightweightM2M/V1_1_1-20190617-A/OMA-TS-LightweightM2M_Core-V1_1_1-20190617-A.pdf +.. _LwM2M transport binding v1.1.1: https://www.openmobilealliance.org/release/LightweightM2M/V1_1_1-20190617-A/OMA-TS-LightweightM2M_Transport-V1_1_1-20190617-A.pdf + +The standard describes how the LwM2M server (Leshan) works, however, it does +not describe how to connect a backend server to Leshan. The backend is +responsible for storing the data in a database and implementing application +logic. A frontend can access the data in the database and visualize outward +facing user interfaces. Leshan acts as a gateway between Endpoints and the +backend. There should be no application specific logic implemented in Leshan. + +In order to communicate and exchange data, both components (Leshan LwM2M Server +and Django) post data to each other's ReST APIs. Communication is typically +triggered by IoT devices sending data or the user/application requesting data +from devices. + +Data Flow: Backend -> Device +............................ + +IoT devices usually operate in queue mode, meaning they are not always online. +The LwM2M Server is aware of the current status of a device (Online/Offline) +and communicates this status to the backend server. Leshan does not queue +pending data that should be sent to the device when it comes online. The +backend server must handle this by itself so it has to have a representation of +the current status of each device as well as the data to be send. The resource +table ``DeviceOperation`` is used to store pending operations that should be +sent to the endpoint while it is online. + +Once an endpoint updates it's registration (LwM2M Update Operation) Leshan +notifies the backend. The backend checks the ``DeviceOperation`` table for +pending operations and sends them to the device by posting to the Leshan hosted +ReST API. Leshan keeps the post call open until the device acknowledges the +operation or a timeout is generated. Endpoints can be slow to respond (several +Seconds), so the backend has to handle the ReST API call in an asynchronous +manner. By only sending data to endpoints while they are online, the backend +can be sure that the ReST API calls are not open for a long time. + +Asynchronous Communication +........................... + +Given that endpoints are comparably slow to respond, handling communication +asynchronously is essention for efficient operation. This can be effectively +managed using Celery, a distributed task queue. When Leshan notifies the +backend of an endpoint status update, Celery can be used to handle the +long-running API calls, ensuring that the backend remains responsive and +scalable. Once the API call is complete the database will be updated with the +result (e.g. ``completed``, ``pending``, ``failed``). Retransmissions can be +implemented based on the result and the requirements of the application. As the +backend communicates with many endpoints simultaneously, an efficient queing +mechanism is essential to ensure that the system remains responsive and +scalable. + +Example Communication +..................... + +The following example shows how the backend server can send a firmware download +link resource ``Package URI 5/0/1`` to an endpoint: + +#. User creates new ``DeviceOperation``: resource path ``5/0/1``, value + ``https://url.com/fw.bin``. +#. Backend checks endpoint online status. +#. If endpoint is offline, no further action is taken right away. +#. Endoint comes online, Leshan sends update to the backend. +#. Backend checks ``DeviceOperation`` table for pending operations for the + endpoint. +#. Finds pending operation, send resource to endpoint via the Leshan ReST API. +#. Pending operation is marked ``completed`` if the endpoint acknowledges the + operation. + + IoT Devices with Zephyr .......................