2023-12-05 16:21:08 +08:00
|
|
|
import time
|
2023-12-09 18:49:22 +08:00
|
|
|
|
2023-12-05 16:21:08 +08:00
|
|
|
import paho.mqtt.client as mqtt
|
2023-12-02 11:45:52 +08:00
|
|
|
|
2023-12-09 18:49:22 +08:00
|
|
|
from tool import *
|
|
|
|
|
2023-12-11 09:15:23 +08:00
|
|
|
times = 6
|
2023-12-09 18:49:22 +08:00
|
|
|
|
|
|
|
|
|
|
|
class DataUploadClient:
|
|
|
|
def __init__(self, broker, port, topic):
|
|
|
|
self.broker = broker
|
|
|
|
self.port = port
|
|
|
|
self.topic = topic
|
|
|
|
self.client = mqtt.Client()
|
|
|
|
self.client.on_connect = self.on_connect
|
|
|
|
self.client.on_disconnect = self.on_disconnect
|
|
|
|
|
|
|
|
def on_connect(self, client, userdata, flags, rc):
|
2023-12-11 09:15:23 +08:00
|
|
|
global times
|
|
|
|
times = 6
|
2023-12-09 18:49:22 +08:00
|
|
|
self.client.publish('success', payload='连接成功,执行数据推送和本地存储' + str(time.time()), qos=0)
|
|
|
|
subprocess.Popen(['/usr/bin/bash /home/pi/lot_manager/bash/start_data_upload.sh'], shell=True)
|
|
|
|
|
|
|
|
def on_disconnect(self, client, userdata, rc):
|
2023-12-09 18:57:28 +08:00
|
|
|
# print("失败,执行本地存储")
|
2023-12-09 18:49:22 +08:00
|
|
|
subprocess.Popen(['/usr/bin/bash /home/pi/lot_manager/bash/stop_data_upload.sh'], shell=True)
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
self.client.connect(self.broker, self.port)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
MQTT = DataUploadClient('192.168.1.27', 1883, 'lot_mqtt')
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
MQTT.start()
|
|
|
|
MQTT.client.loop_forever()
|
|
|
|
except:
|
2023-12-09 18:57:28 +08:00
|
|
|
# print("重新连接")
|
|
|
|
time.sleep(10)
|
2023-12-11 09:15:23 +08:00
|
|
|
if times == 0:
|
|
|
|
MQTT.on_disconnect(None, None, None)
|
|
|
|
times -= 1
|