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__)
|
|
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def uptime_coro():
|
|
|
|
C = MQTTClient()
|
2019-01-05 18:52:54 +00:00
|
|
|
yield from C.connect('mqtt://test:test@0.0.0.0:1883')
|
|
|
|
# yield from C.connect('mqtt://0.0.0.0:1883')
|
2018-03-19 09:58:56 +00:00
|
|
|
# Subscribe to '$SYS/broker/uptime' with QOS=1
|
|
|
|
yield from C.subscribe([
|
|
|
|
('data/memes', QOS_1), # Topic allowed
|
|
|
|
('data/classified', QOS_1), # Topic forbidden
|
2019-01-04 17:29:48 +00:00
|
|
|
('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):
|
|
|
|
message = yield from C.deliver_message()
|
|
|
|
packet = message.publish_packet
|
|
|
|
print("%d: %s => %s" % (i, packet.variable_header.topic_name, str(packet.payload.data)))
|
|
|
|
yield from C.unsubscribe(['$SYS/broker/uptime', '$SYS/broker/load/#'])
|
|
|
|
logger.info("UnSubscribed")
|
|
|
|
yield from C.disconnect()
|
|
|
|
except ClientException as ce:
|
|
|
|
logger.error("Client exception: %s" % ce)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
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())
|