Skip to main content

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

nuropb_gw-0.1.3.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

nuropb_gw-0.1.3-py3-none-any.whl (20.3 kB view details)

Uploaded Python 3

File details

Details for the file nuropb_gw-0.1.3.tar.gz.

File metadata

  • Download URL: nuropb_gw-0.1.3.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

Hashes for nuropb_gw-0.1.3.tar.gz
Algorithm Hash digest
SHA256 7acabecde9f6ee375ae15946ddf3e3eb4cd6625903369a681a0f1caf3f624d42
MD5 6476a9419216296ebc9c1024256dd260
BLAKE2b-256 d8df49860551be3baccb74dd287c003f95c54fcfbd316223f42c88deb1571d9b

See more details on using hashes here.

File details

Details for the file nuropb_gw-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: nuropb_gw-0.1.3-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

Hashes for nuropb_gw-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 97f332248d1143da9e14620e9c11b1748498dbff6cb6ef28a3e0915fd0adbd61
MD5 e74739875759a14fb0455473cfe03e66
BLAKE2b-256 c5b1d9a9d8e0d901900aec48097c9d7bdb5529738a06589890da6dfc69b0f48a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page