MQTT Interface
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

__init__.py 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. """
  5. mqtt (MQTT)
  6. ===========
  7. **Author:**
  8. * Dirk Alders <sudo-dirk@mount-mockery.de>
  9. **Description:**
  10. This Module supports functionality for mqtt connections
  11. **Submodules:**
  12. * :mod:`mqtt_client`
  13. **Unittest:**
  14. See also the :download:`unittest <mqtt/_testresults_/unittest.pdf>` documentation.
  15. **Module Documentation:**
  16. """
  17. __DEPENDENCIES__ = []
  18. import logging
  19. import paho.mqtt.client as paho
  20. import socket
  21. import time
  22. try:
  23. from config import APP_NAME as ROOT_LOGGER_NAME
  24. except ImportError:
  25. ROOT_LOGGER_NAME = 'root'
  26. logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__)
  27. class mqtt_client(object):
  28. def __init__(self, name, host, port=1883, username=None, password=None):
  29. self.__block_add_callbacks__ = True
  30. logger.info("Initiating mqtt client instance")
  31. self.__callbacks__ = {}
  32. self.__client__ = paho.Client(name) # create client object
  33. if username is not None and password is not None:
  34. logger.debug("Configuring authentification")
  35. self.__client__.username_pw_set(username, password) # login with credentials
  36. self.__client__.on_message = self.__receive__ # attach function to callback
  37. self.__client__.on_connect = self.__on_connect__
  38. self.__client__.on_disconnect = self.__on_disconnect__
  39. try:
  40. self.__client__.connect(host, port) # establish connection
  41. except (socket.timeout, OSError) as e:
  42. logger.warning("Can not connect to MQTT-Server")
  43. self.__client__.loop_start() # start the loop
  44. def add_callback(self, topic, callback):
  45. while self.__block_add_callbacks__:
  46. time.sleep(.1)
  47. logger.debug("Adding callback for topic %s", topic)
  48. self.__callbacks__[topic] = callback
  49. self.__client__.subscribe(topic)
  50. def send(self, topic, payload):
  51. self.__client__.publish(topic, payload)
  52. def __on_connect__(self, client, userdata, flags, rc):
  53. logger.debug("Connect with rc=%d", rc)
  54. if rc == 0:
  55. self.__block_add_callbacks__ = True
  56. logger.debug("Registering topics...")
  57. for topic in self.__callbacks__:
  58. self.__client__.subscribe(topic)
  59. self.__block_add_callbacks__ = False
  60. def __on_disconnect__(self, client, flags, rc):
  61. logger.warning("Disconnect with rc=%d", rc)
  62. def __receive__(self, client, userdata, message):
  63. logger.debug("Received message with topic %s and payload %s", message.topic, str(message.payload))
  64. for topic in self.__callbacks__:
  65. if topic.endswith('#'):
  66. if message.topic.startswith(topic[:-1]):
  67. self.__callbacks__[topic](client, userdata, message)
  68. else:
  69. if topic == message.topic:
  70. self.__callbacks__[topic](client, userdata, message)