-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmqtt.py
65 lines (54 loc) · 2.09 KB
/
mqtt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import json
import logging
import os
import paho.mqtt.client
import sys
from paho.mqtt.enums import CallbackAPIVersion
from pathlib import Path
class BirdsEyeMQTT:
def __init__(self, mqtt_host, mqtt_port, topics, log_path, start_time):
self.mqtt_host = mqtt_host
self.mqtt_port = mqtt_port
self.topics = topics
self.log_path = log_path
self.start_time = start_time
Path(self.log_path).mkdir(parents=True, exist_ok=True)
try:
self.client = paho.mqtt.client.Client(CallbackAPIVersion.VERSION2)
self.client.on_connect = self.on_connect
self.client.on_publish = self.on_publish
self.client.connect(mqtt_host, mqtt_port, 60)
self.client.loop_start()
except Exception as err:
logging.error(
"Unable to connect to MQTT host %s:%s because: %s.",
mqtt_host,
str(mqtt_port),
str(err),
)
sys.exit(1)
def on_message_func(self, message_handler):
def on_message(client, userdata, json_message):
json_data = json.loads(json_message.payload)
self.log(json_data)
message_handler(json_data)
return on_message
def log(self, json_data):
try:
with open(
os.path.join(self.log_path, f"mqtt-{self.start_time}.log"),
"a",
encoding="utf-8",
) as f:
f.write(f"{json.dumps(json_data)}\n")
except FileNotFoundError as err:
logging.error(f"could not write to mqtt rssi log: {err}")
def on_connect(self, client, userdata, flags, result_code):
logging.info(
f"Connected to MQTT broker {self.mqtt_host}:{self.mqtt_port} with result code {result_code}"
)
for topic, handler in self.topics:
self.client.subscribe(topic)
self.client.message_callback_add(topic, self.on_message_func(handler))
def on_publish(self, client, userdata, mid):
logging.info("Completed transmission to broker.")