2015-08-01 21:04:30 +00:00
|
|
|
import logging
|
|
|
|
import asyncio
|
|
|
|
|
|
|
|
from hbmqtt.client import MQTTClient
|
2016-07-31 16:29:41 +00:00
|
|
|
from hbmqtt.mqtt.constants import QOS_1, QOS_2
|
2015-08-01 21:04:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# 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,
|
2015-08-06 19:08:22 +00:00
|
|
|
'retain': True,
|
|
|
|
},
|
2015-08-01 21:04:30 +00:00
|
|
|
}
|
2015-08-06 19:08:22 +00:00
|
|
|
C = MQTTClient(config=config)
|
|
|
|
#C = MQTTClient()
|
2015-08-01 21:04:30 +00:00
|
|
|
|
2015-11-01 14:58:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_coro():
|
|
|
|
yield from C.connect('mqtts://test.mosquitto.org/', cafile='mosquitto.org.crt')
|
2015-08-01 21:04:30 +00:00
|
|
|
tasks = [
|
2015-10-16 20:13:37 +00:00
|
|
|
asyncio.ensure_future(C.publish('a/b', b'TEST MESSAGE WITH QOS_0')),
|
2016-07-31 16:29:41 +00:00
|
|
|
asyncio.ensure_future(C.publish('a/b', b'TEST MESSAGE WITH QOS_1', qos=QOS_1)),
|
|
|
|
asyncio.ensure_future(C.publish('a/b', b'TEST MESSAGE WITH QOS_2', qos=QOS_2)),
|
2015-08-01 21:04:30 +00:00
|
|
|
]
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from asyncio.wait(tasks)
|
2015-08-01 21:04:30 +00:00
|
|
|
logger.info("messages published")
|
2015-11-01 14:58:20 +00:00
|
|
|
yield from C.disconnect()
|
2015-08-01 21:04:30 +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())
|