2018-03-19 09:58:56 +00:00
|
|
|
import logging
|
|
|
|
import asyncio
|
|
|
|
|
|
|
|
from hbmqtt.client import MQTTClient, ClientException
|
|
|
|
from hbmqtt.mqtt.constants import QOS_1
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# This sample shows how to subscbribe a topic and receive data from incoming messages
|
|
|
|
# It subscribes to '$SYS/broker/uptime' topic and displays the first ten values returned
|
|
|
|
# by the broker.
|
|
|
|
#
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2020-12-31 00:16:45 +00:00
|
|
|
async def uptime_coro():
|
2018-03-19 09:58:56 +00:00
|
|
|
C = MQTTClient()
|
2021-03-14 21:16:51 +00:00
|
|
|
await C.connect("mqtt://test:test@0.0.0.0:1883")
|
2020-12-31 00:16:45 +00:00
|
|
|
# await C.connect('mqtt://0.0.0.0:1883')
|
2018-03-19 09:58:56 +00:00
|
|
|
# Subscribe to '$SYS/broker/uptime' with QOS=1
|
2021-03-14 21:16:51 +00:00
|
|
|
await C.subscribe(
|
|
|
|
[
|
|
|
|
("data/memes", QOS_1), # Topic allowed
|
|
|
|
("data/classified", QOS_1), # Topic forbidden
|
|
|
|
("repositories/hbmqtt/master", QOS_1), # Topic allowed
|
|
|
|
("repositories/hbmqtt/devel", QOS_1), # Topic forbidden
|
|
|
|
("calendar/hbmqtt/releases", QOS_1), # Topic allowed
|
|
|
|
]
|
|
|
|
)
|
2018-03-19 09:58:56 +00:00
|
|
|
logger.info("Subscribed")
|
|
|
|
try:
|
|
|
|
for i in range(1, 100):
|
2020-12-31 00:16:45 +00:00
|
|
|
message = await C.deliver_message()
|
2018-03-19 09:58:56 +00:00
|
|
|
packet = message.publish_packet
|
2021-03-14 21:16:51 +00:00
|
|
|
print(
|
|
|
|
"%d: %s => %s"
|
|
|
|
% (i, packet.variable_header.topic_name, str(packet.payload.data))
|
|
|
|
)
|
|
|
|
await C.unsubscribe(["$SYS/broker/uptime", "$SYS/broker/load/#"])
|
2018-03-19 09:58:56 +00:00
|
|
|
logger.info("UnSubscribed")
|
2020-12-31 00:16:45 +00:00
|
|
|
await C.disconnect()
|
2018-03-19 09:58:56 +00:00
|
|
|
except ClientException as ce:
|
|
|
|
logger.error("Client exception: %s" % ce)
|
|
|
|
|
|
|
|
|
2021-03-14 21:16:51 +00:00
|
|
|
if __name__ == "__main__":
|
2018-03-19 09:58:56 +00:00
|
|
|
formatter = "[%(asctime)s] {%(filename)s:%(lineno)d} %(levelname)s - %(message)s"
|
|
|
|
logging.basicConfig(level=logging.INFO, format=formatter)
|
|
|
|
asyncio.get_event_loop().run_until_complete(uptime_coro())
|