2015-08-02 14:01:16 +00:00
|
|
|
import logging
|
|
|
|
import asyncio
|
|
|
|
|
|
|
|
from hbmqtt.client import MQTTClient
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# This sample shows how to publish messages to broker using different QOS
|
|
|
|
# Debug outputs shows the message flows
|
|
|
|
#
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
config = {
|
|
|
|
'will': {
|
|
|
|
'topic': '/will/client',
|
|
|
|
'message': b'Dead or alive',
|
|
|
|
'qos': 0x01,
|
|
|
|
'retain': True
|
2015-08-06 19:08:22 +00:00
|
|
|
},
|
|
|
|
'capath': '.',
|
2015-08-02 14:01:16 +00:00
|
|
|
}
|
2015-08-06 19:08:22 +00:00
|
|
|
C = MQTTClient(config=config)
|
|
|
|
#C = MQTTClient()
|
2015-08-02 14:01:16 +00:00
|
|
|
|
2015-10-16 20:13:37 +00:00
|
|
|
async def test_coro():
|
|
|
|
await C.connect('wss://test.mosquitto.org:8081/', cafile='mosquitto.org.crt')
|
2015-08-02 14:01:16 +00:00
|
|
|
tasks = [
|
2015-10-16 20:13:37 +00:00
|
|
|
asyncio.ensure_future(C.publish('a/b', b'TEST MESSAGE WITH QOS_0')),
|
|
|
|
asyncio.ensure_future(C.publish('a/b', b'TEST MESSAGE WITH QOS_1', qos=0x01)),
|
|
|
|
asyncio.ensure_future(C.publish('a/b', b'TEST MESSAGE WITH QOS_2', qos=0x02)),
|
2015-08-02 14:01:16 +00:00
|
|
|
]
|
2015-10-16 20:13:37 +00:00
|
|
|
await asyncio.wait(tasks)
|
2015-08-02 14:01:16 +00:00
|
|
|
logger.info("messages published")
|
2015-10-16 20:13:37 +00:00
|
|
|
await C.disconnect()
|
2015-08-02 14:01:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
formatter = "[%(asctime)s] {%(filename)s:%(lineno)d} %(levelname)s - %(message)s"
|
|
|
|
logging.basicConfig(level=logging.DEBUG, format=formatter)
|
|
|
|
asyncio.get_event_loop().run_until_complete(test_coro())
|