Skip to main content

Python agent for microServiceBus.com. Please visit https://microservicebus.com for more information.

Project description

microservicebus-py

General

To avoid blocking the thread, avoid using the print(...) function. Instead use the built-in printf function inherited from base_service:

self.printf("Hello world")

You can also use self.Debug if you want the logging transmitted to msb.com.

BaseService (base_service)

All services inherit from BaseService either directly or through CustomService. Inheriting from BaseService provides a number of functions such as self.Debug(text) and self.SubmitMessage(message). Such methods are predefined to target specific destinations and functions. A service can also call self.SubmitAction(destination, action, message) to more flexibility is needed.

For instance, if you had a custom service called emailhandler which would send emails through the Process function and you'd like to send a message to it you would write:

message = {'to':'foo@bar.com', 'subject':'Hello', 'body':'...from foo'}
await self.SubmitAction("emailhandler", "Process", message)

Note that the action is set to "Process". All services inheriting from BaseService has a Start. Stop and Proccess function. However, you could have created a SendEmail function and set the action to "SendEmail".

If, on the other hand, you'd like to send a message to the IoT Hub you would set the destination to "com". However, there is already a simplified function called SubmitMessage predefined with both destination and action:

message = {'ts':'2021-01-01 01:01:01', 'temperature':22}
await self.SubmitMessage(message)

Similarly there is a predefined function to logging:

await self.Debug("Hello from Python")

Internal services

Internal services are used as any other service but are never stopped.

Orchestrator (orchestrator_service)

The Orchestrator is responsible for starting up services and correlate messages between then. All messages on the queue are of type QueueMessage (baseservice) and contains information such as the destination and action. When the Orchestrator receives a message on the queue, it will resolve the destination and call the function (_action).

microServiceBusHandler (msb_handler)

As the name implies the microServiceBusHandler is responsible for all communication with microServiceBus.com. When staring up the service will sign in to msb.com and set up channels for different commands in msb. After successful sign-in, the service will call the Orchestrator to start up the these services.

Logger (logger_service)

The Logger service outputs data to the terminal and forward debugging info to microServiceBusHandler if enabled

Com (downloaded at startup) (Currently not used)

The Com service is responsible for all communication with the IoT Hub provider. The only implementation as for now is the AzureIoT service.

The Com service is also responsible to handle state changes. These is expected to be a msb-state in the desired state:

"msb-state": {
    "enabled": true,
    "debug": false
},

If any of the elements in the msb-state changes, the Com service is responsible for taking actions, such as stopping and starting custom services. State changes will also get forwarded to all other services.

Com does not have any inbound functions and can not be stopped.

Custom services

All custom services inherit from BaseService and must expose the following functions:

Start

The Start function will be called when the when custom service is started. This is the where the services should start any kind of interval or work to produce readings.

Readings can be submitted using the self.SubmitMessage(message) function which forwards the message to the Process function of the Com service.

Stop

The Stop function is called as the service is getting stopped and can be used for any cleanup.

Process

The Process method can optionally be used for transmitting messages between services using the self.SubmitAction(destination, action, message) E.g

await self.SubmitAction('MyOtherService', 'Process', message)

StateUpdate

State updates received by the Com service are forwarded to all services and accessible through the StateUpdate function

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

microservicebus-py-0.0.16.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

microservicebus_py-0.0.16-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file microservicebus-py-0.0.16.tar.gz.

File metadata

  • Download URL: microservicebus-py-0.0.16.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.8.5

File hashes

Hashes for microservicebus-py-0.0.16.tar.gz
Algorithm Hash digest
SHA256 b007a3b802e496cd3daeda04030ef0efdd17c06b38bb2a612d58a2639a70588f
MD5 42d8138a1acf65ede332b3ea743201c1
BLAKE2b-256 7ae571822d66545059f968ea101bd5304a98b1dff9ceb7ac9070ee3a6c60a4fc

See more details on using hashes here.

File details

Details for the file microservicebus_py-0.0.16-py3-none-any.whl.

File metadata

File hashes

Hashes for microservicebus_py-0.0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 16708c801a316e077f3be24451c9cc19e2b23569a5e0df7a17fdc3993d0acf9c
MD5 719f30d3d14936c8e7796a1f26bab198
BLAKE2b-256 63c8697c7e54b7d78fe689f6b1a1ef52d76099205772b124b1c717ba27bb8816

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