Websocket gateway library for Nuropb Service Mesh
Project description
TCP(WebSocket) Service Mesh Gateway
Library for providing a TCP(WebSocket) gateway to the Nuropb service mesh. The Library leverages the Tornado asynchronous networking framework, and can also be used as a template for other TCP connection handlers. In addition, it can also be used as pattern to implement a WebSocket BFF (Backend For Frontend).
There are two primary classes that interact together in providing consumer
access
to the services hosted on the Service Mesh. It's always tricky how to coordinate the
dependencies between classes, especially when there are bidirectional flows and
process between them.
Consumers are external to the service mesh, and are considered to be untrusted, and the nature of the connections to be less reliable. The service mesh transport protocol is implemented AMQP over TCP and is more challenging for broad adoption, and especially from browsers and mobile devices. The solution is to provide a WebSocket gateway interface to the service mesh.
The HandlerManager is responsible for incoming tcp (websocket) connections, and the ServiceMeshManager, which is responsible for proxying communications to the service mesh.
The final design is somewhat under consideration, with the options being:
- Having an overarching coordination class, i.e. a manager of managers
- or the current design where the ServiceMeshManager is both the service mesh proxy and the HandlerManager's manager.
It's acknowledge that the two classes are tightly coupled. The physical separation helps with logical separation of responsibilities and the ability to test them.
It is important to NOTE that there's a one-to-one relationship between the HandlerManager and ServiceMeshManager. The design requires that for each handler type, there's a dedicated HandlerManager and by inference, a dedicated ServiceMeshManager with its own connection to the service mesh.
handler_manager.HandlerManager
The HandlerManager is responsible for TCP(WebSocket) connection handlers, and does the following:
- Registers handlers for incoming connections
- Unregistering handlers for closed connections
- Authorization validation of new connections
- Receiving messages from handlers
- Sending messages to handlers
- Sending messages to:
- all registered handlers
- one specific handler
- all handlers registered to one user or a set of specific users
service_mesh_manager.ServiceMeshManager
- Manages a (NuroPb API) connection to the service mesh.
- Passes messages between HandlerManager and the service mesh API
- Tracks the state of asynchronous requests from handlers and directs responses from the service mesh back to the originating handler.
- Is responsible for its and only its, connection authorisation to the service mesh transport layer and broker. NOT any on-behalf-of authorisation for handler connections.
Authentication and Authorization
The HandlerManager is not responsible for authentication. It is designed to verify that authentication has already been done through validating an authorization token provided when a new handler is registered. A bearer token is assumed, however there is plenty of scope for other passwordless authentication mechanisms.
Implementation instantiation and injection:
On ServiceMeshManager instantiation, and instance of the HandlerManager is passed in.
handler_manager = HandlerManager(
...
)
service_mesh_manager = ServiceMeshManager(
...,
handler_manager=handler_manager,
)
The challenge provide by this assembly, if forwarding incoming messages from the handlers
to the service mesh. the HandlerManager provides a callback function to be called when
a message is received, on_handler_message_received
.
There are not many times when HandlerManager is initialised with on_handler_message_received, as it is instantiated before ServiceMeshManager. It is however set by the ServiceMeshManager during its instantiation, as follows:
self._handler_manager = handler_manager
self._handler_manager._on_handler_message_received = self._on_handler_message_received
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nuropb_gw-0.1.1.tar.gz
.
File metadata
- Download URL: nuropb_gw-0.1.1.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8ea0f7c4539bc39b0b93106fca4131cdf87f6afc27a78589e3d9444bbdea672 |
|
MD5 | 3cc24ee9f5fec2845fe03bc97bdb6215 |
|
BLAKE2b-256 | 0ae6803e22a35dfbe586f8aa504b439eefb72c763d1b9ca7fee86168a28b320b |
File details
Details for the file nuropb_gw-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: nuropb_gw-0.1.1-py3-none-any.whl
- Upload date:
- Size: 20.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf71ed9659e0efa55f9b2ea8a3eff8bc7eb082be23a007e782920b6a3547bc3c |
|
MD5 | 6c6a962b6f8e374c2ad17fffac62af7d |
|
BLAKE2b-256 | a076001cbc562b94c2a384d40eda143a33a0cffdbac99ea0a619018a41efe245 |