mqtt_subscriber.py 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import logging
  2. from threading import Thread
  3. from kalliope.core import SignalModule, MissingParameter
  4. from kalliope.core.ConfigurationManager import BrainLoader
  5. from kalliope.signals.mqtt_subscriber.MqttClient import MqttClient
  6. from kalliope.signals.mqtt_subscriber.models import Broker, Topic
  7. from kalliope.core import Utils
  8. CLIENT_ID = "kalliope"
  9. logging.basicConfig()
  10. logger = logging.getLogger("kalliope")
  11. class Mqtt_subscriber(SignalModule, Thread):
  12. def __init__(self, **kwargs):
  13. super(Mqtt_subscriber, self).__init__(**kwargs)
  14. Utils.print_info('[Mqtt_subscriber] Starting manager')# variables
  15. self.list_synapses_with_mqtt = list(super(Mqtt_subscriber, self).get_list_synapse())
  16. self.broker_ip = None
  17. self.topic = None
  18. self.json_message = False
  19. def run(self):
  20. logger.debug("[Mqtt_subscriber] Starting Mqtt_subscriber")
  21. # we need to sort broker URL by ip, then for each broker, we sort by topic and attach synapses name to run to it
  22. list_broker_to_instantiate = self.get_list_broker_to_instantiate(self.list_synapses_with_mqtt)
  23. # now instantiate a MQTT client for each broker object
  24. self.instantiate_mqtt_client(list_broker_to_instantiate)
  25. @staticmethod
  26. def check_parameters(parameters):
  27. """
  28. overwrite method
  29. receive a dict of parameter from a mqtt_subscriber signal
  30. :param parameters: dict of mqtt_signal_parameters
  31. :return: True if parameters are valid
  32. """
  33. # check mandatory parameters
  34. mandatory_parameters = ["broker_ip", "topic"]
  35. if not all(key in parameters for key in mandatory_parameters):
  36. return False
  37. return True
  38. @staticmethod
  39. def get_list_broker_to_instantiate(list_synapse_with_mqtt_subscriber):
  40. """
  41. return a list of Broker object from the given list of synapse
  42. :param list_synapse_with_mqtt_subscriber: list of Synapse object
  43. :return: list of Broker
  44. """
  45. returned_list_of_broker = list()
  46. for synapse in list_synapse_with_mqtt_subscriber:
  47. for signal in synapse.signals:
  48. # check if the broker exist in the list
  49. if not any(x.broker_ip == signal.parameters["broker_ip"] for x in returned_list_of_broker):
  50. logger.debug("[Mqtt_subscriber] Create new broker: %s" % signal.parameters["broker_ip"])
  51. # create a new broker object
  52. new_broker = Broker()
  53. new_broker.build_from_signal_dict(signal.parameters)
  54. # add the current topic
  55. logger.debug("[Mqtt_subscriber] Add new topic to broker %s: %s" % (new_broker.broker_ip,
  56. signal.parameters["topic"]))
  57. new_topic = Topic()
  58. new_topic.name = signal.parameters["topic"]
  59. if "is_json" in signal.parameters:
  60. logger.debug("[Mqtt_subscriber] Message for the topic %s will be json converted"
  61. % new_topic.name)
  62. new_topic.is_json = bool(signal.parameters["is_json"])
  63. else:
  64. new_topic.is_json = False
  65. # add the current synapse to the topic
  66. new_topic.synapses = list()
  67. new_topic.synapses.append(synapse)
  68. new_broker.topics.append(new_topic)
  69. logger.debug("[Mqtt_subscriber] Add new synapse to topic %s :%s" % (new_topic.name, synapse.name))
  70. returned_list_of_broker.append(new_broker)
  71. else:
  72. # the broker exist. get it from the list of broker
  73. broker_to_edit = next((broker for broker in returned_list_of_broker
  74. if signal.parameters["broker_ip"] == broker.broker_ip))
  75. # check if the topic already exist
  76. if not any(topic.name == signal.parameters["topic"] for topic in broker_to_edit.topics):
  77. new_topic = Topic()
  78. new_topic.name = signal.parameters["topic"]
  79. if "is_json" in signal.parameters:
  80. logger.debug("[Mqtt_subscriber] Message for the topic %s will be json converted"
  81. % new_topic.name)
  82. new_topic.is_json = bool(signal.parameters["is_json"])
  83. else:
  84. new_topic.is_json = False
  85. logger.debug("[Mqtt_subscriber] Add new topic to existing broker "
  86. "%s: %s" % (broker_to_edit.broker_ip, signal.parameters["topic"]))
  87. # add the current synapse to the topic
  88. logger.debug("[Mqtt_subscriber] Add new synapse "
  89. "to topic %s :%s" % (new_topic.name, synapse.name))
  90. new_topic.synapses = list()
  91. new_topic.synapses.append(synapse)
  92. # add the topic to the broker
  93. broker_to_edit.topics.append(new_topic)
  94. else:
  95. # the topic already exist, get it from the list
  96. topic_to_edit = next((topic for topic in broker_to_edit.topics
  97. if topic.name == signal.parameters["topic"]))
  98. # add the synapse
  99. logger.debug("[Mqtt_subscriber] Add synapse %s to existing topic %s "
  100. "in existing broker %s" % (synapse.name,
  101. topic_to_edit.name,
  102. broker_to_edit.broker_ip))
  103. topic_to_edit.synapses.append(synapse)
  104. return returned_list_of_broker
  105. def instantiate_mqtt_client(self, list_broker_to_instantiate):
  106. """
  107. Instantiate a MqttClient thread for each broker
  108. :param list_broker_to_instantiate: list of broker to run
  109. """
  110. for broker in list_broker_to_instantiate:
  111. mqtt_client = MqttClient(broker=broker, brain=self.brain)
  112. mqtt_client.start()