PubSub

Bristlemouth offers the ability to subscribe and publish to topics on the network. A topic is a unique string that nodes on the network communicate over. Pubsub is apart of the Middleware Protocol on the Bristlemouth stack. Middleware is built on top of UDP and the publish subscribe capabilities are associated with port 4321.

Topics are subscribed to, and then added to the resource list in bcmp/resource_discovery.c, which can be used by other nodes to determine the subscribed to topics of interest. The following is an example of how to subscribe to a topic of interest:

#define sub_topic "sub/example"

static void example_sub_cb(uint64_t node_id, const char *topic,
                           uint16_t topic_len, const uint8_t *data,
                           uint16_t data_len, uint8_t type, uint8_t version)
{
    ...
}

int main(void) {

  ...

  bm_sub(sub_topic, example_sub_cb);

  ...

}

Multiple callbacks are able to be tied to the same subscription, allowing multiple applications to utilize the same topic. API is also available to unsubscribe to topics.

In order to use the API required by the pubsub module, the following header must be included:

#include "pubsub.h"

API

bool bm_sub(const char *topic, const BmPubSubCb callback);

Subscribe to a specific string topic with callback

Parameters:
  • topic – topic string to subscribe to

  • callback – callback function to call when data is received on this topic

Returns:

BmOk if able to properly subscribe to topic, BmErr otherwise

bool bm_sub_wl(const char *topic, uint16_t topic_len, const BmPubSubCb callback);

Subscribe to a specific string topic with callback (while providing the topic length)

Parameters:
  • topic – topic string to subscribe to

  • topic_len – length of topic string

  • callback – callback function to call when data is received on this topic

Returns:

BmOk if able to properly subscribe to topic, BmErr otherwise

bool bm_unsub(const char *topic, const BmPubSubCb callback);

Unsubscribe to a specific string topic with callback

Parameters:
  • topic – topic string to unsubscribe from

  • callback – callback function to call when data is received on this topic

Returns:

BmOk if able to properly unsubscribe from topic, BmErr otherwise

bool bm_unsubwl(const char *topic, uint16_t topic_len, const BmPubSubCb callback);

Unsubscribe to a specific string topic with callback (while providing the topic length)

Parameters:
  • topic – topic string to unsubscribe from

  • topic_len – length of topic string

  • callback – callback function to call when data is received on this topic

Returns:

BmOk if able to properly unsubscribe from topic, BmErr otherwise

bool bm_pub(const char *topic, const void *data, uint16_t len, const uint8_t type, uint8_t version);

Publish data to specific topic

Parameters:
  • topic – topic string to publish to

  • data – data to publish

  • len – length of data to publish

  • type – type of data to publish, this is defined by the integrator (not currently used)

  • version – version of the data to publish, this is defined by integrator (not currently used)

Returns:

BmOk if able to properly publish to topic, BmErr otherwise

bool bm_pubwl(const char *topic, uint16_t topic_len, const void *data, uint16_t len, const uint8_t type, uint8_t version);

Publish data to specific topic (while providing the topic length)

Parameters:
  • topic – topic string to publish to

  • topic_len – length of topic string

  • data – data to publish

  • len – length of data to publish

  • type – type of data to publish, this is defined by the integrator (not currently used)

  • version – version of the data to publish, this is defined by integrator (not currently used)

Returns:

BmOk if able to properly publish to topic, BmErr otherwise