-
Notifications
You must be signed in to change notification settings - Fork 73
/
startup_manager.py
executable file
·112 lines (99 loc) · 3.28 KB
/
startup_manager.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
"""Unitree System Manager
needs python3
Functions:
1. run bash files
2. delete uploaded packages
3. run update packages
4. process topics when modules shut down
author: Zhongkai Chen
site: www.unitree.com
"""
import paho.mqtt.client as mqtt
import subprocess
import asyncio
import string
updatePackage = ''
updateFirmware = ''
updatePackageCmd ="""
echo "***Start Package Update***"
sh temp/run.sh
echo "Remove temp files"
rm -rf temp
echo "Finished"
"""
updateFirmwareCmd ="""
echo "***Start Firmware Update***"
cd temp
python3 ../update_firmware.py *.bin
echo "Remove temp files"
rm -rf temp
echo "Finished"
"""
printable = set(string.printable)
async def runCmd(cmd):
proc = await asyncio.create_subprocess_shell(
cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
xx = ''
while True:
out = await proc.stdout.readline()
if(out == b''):
break
filter(lambda x: x in printable, out)
client.publish("usys/info",out,1)
client.loop()
def on_connect(client,userdata,flags,rc):
print("Unitree MQTT System Manager")
print("Connected with result code " + str(rc))
client.subscribe("usys/sh")
client.subscribe("usys/delete")
client.subscribe("usys/update_package")
client.subscribe("usys/update_firmware")
client.publish("usys/run",'ok',1,True)
client.publish("usys/updating", '', 1, True)
def on_message(client, userdata, msg):
global updatePackage
global updateFirmware
# not doing anything during update
if(updatePackage !='' or updateFirmware !=''):
return
# run bash file
if(msg.topic == "usys/sh"):
bashFile = str(msg.payload,'utf-8')
print("Running sh " + bashFile)
process = subprocess.Popen(["sh", bashFile],stdout=subprocess.PIPE)
# delete update packages
elif(msg.topic == "usys/delete"):
fileLink = str(msg.payload,'utf-8')
process = subprocess.Popen(["rm",fileLink],stdout=subprocess.PIPE)
client.publish("usys/deleted",fileLink,1,False)
# run update package
elif(msg.topic == "usys/update_package"):
updatePackage = str(msg.payload,'utf-8')
# run update firmware
elif(msg.topic == "usys/update_firmware"):
updateFirmware = str(msg.payload,'utf-8')
client = mqtt.Client()
client.will_set("usys/run","",1,True)
client.on_connect = on_connect
client.on_message = on_message
client.connect("localhost",1883,60)
loop = asyncio.get_event_loop()
while True:
client.loop()
if(updatePackage != ''):
client.publish("usys/updating", 'true', 1,True)
unzipCmd = ("sh kill.sh; rm -rf temp; mkdir temp; echo 'Unzip files to temp folder';"
+ "unzip -q '" + updatePackage + "' -d temp;")
loop.run_until_complete(runCmd(unzipCmd+updatePackageCmd))
updatePackage = ''
client.publish("usys/updating", '', 1,True)
if(updateFirmware != ''):
client.publish("usys/updating", 'true', 1,True)
unzipCmd = ("sh kill.sh; rm -rf temp; mkdir temp; echo 'Unzip files to temp folder';"
+ "unzip -q '" + updateFirmware + "' -d temp;")
loop.run_until_complete(runCmd(unzipCmd+updateFirmwareCmd))
updateFirmware = ''
client.publish("usys/updating", '', 1,True)