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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
|
#!/usr/bin/env python
#
# The MIT License (MIT)
#
# Copyright (c) 2019 Matthias P. Braendli, Maximilien Cuony
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from twx.botapi import TelegramBot
import threading
import time
import os
import datetime
import config
class Monitor(threading.Thread):
def __init__(self, ser):
threading.Thread.__init__(self)
self.ser = ser
self.reset_states()
def reset_states(self):
self.current_state = None
self.status_starttime = {}
self.status_duration = {}
self.last_gps_balise = None
self.last_message = None
self.last_balise = None
self.reseted = False
self.hoho_message = None
def run(self):
queue = self.ser.register_client()
while True:
try:
line = queue.popleft()
except IndexError:
time.sleep(1)
line = None
if line:
line = line.strip()
self.last_message = datetime.datetime.now()
if line.endswith("common init"):
self.reset_states()
self.reseted = True
if "[HOHO]" in line:
self.hoho_message = line
if "T_GPS" in line:
self.last_gps_balise = datetime.datetime.now()
if "FSM: FSM_" in line:
new_state = line.split(' ')[-1]
if self.current_state:
self.status_duration[self.current_state] = datetime.datetime.now() - self.status_starttime[self.current_state]
self.status_starttime[new_state] = datetime.datetime.now()
self.current_state = new_state
if "FSM: FSM_BALISE_LONGUE" in line or \
"FSM: FSM_BALISE_SPECIALE" in line or \
"FSM: FSM_BALISE_STATS1" in line or \
"FSM: FSM_BALISE_SPECIALE_STATS1" in line:
self.last_balise = datetime.datetime.now()
def alarms(self):
MAXIMUM_STATES = {
'FSM_OISIF': (10800, '3 hours'),
'FSM_OPEN1': (120, '2 minutes'),
'FSM_OPEN2': (120, '2 minutes'),
'FSM_LETTRE': (120, '2 minutes'),
'FSM_ECOUTE': (120, '2 minutes'),
'FSM_ATTENTE': (120, '2 minutes'),
'FSM_QSO': (1800, '30 minutes'),
'FSM_ANTI_BAVARD': (120, '2 minutes'),
'FSM_BLOQUE': (120, '2 minutes'),
'FSM_TEXTE_73': (120, '2 minutes'),
'FSM_TEXTE_HB9G': (120, '2 minutes'),
'FSM_TEXTE_LONG': (120, '2 minutes'),
'FSM_BALISE_LONGUE': (120, '2 minutes'),
'FSM_BALISE_STATS1' : (120, '2 minutes'),
'FSM_BALISE_STATS2' : (120, '2 minutes'),
'FSM_BALISE_STATS3' : (120, '2 minutes'),
'FSM_BALISE_SPECIALE': (120, '2 minutes'),
'FSM_BALISE_SPECIALE_STATS1' : (120, '2 minutes'),
'FSM_BALISE_SPECIALE_STATS2' : (120, '2 minutes'),
'FSM_BALISE_SPECIALE_STATS3' : (120, '2 minutes'),
'FSM_BALISE_COURTE': (120, '2 minutes'),
'FSM_BALISE_COURTE_OPEN': (120, '2 minutes'),
}
result = []
if self.reseted:
result.append("(AutoAckedError) A reset occured !")
self.reseted = False
if self.hoho_message:
result.append("(AutoAckedError) An error message was found in the UART: {}".format(self.hoho_message))
self.hoho_message = None
if self.last_message and (datetime.datetime.now() - self.last_message).total_seconds() > 300:
result.append("No message on UART for more than 5 minutes !")
if self.last_gps_balise and (datetime.datetime.now() - self.last_gps_balise).total_seconds() > 300:
result.append("No GPS for more than 5 minutes !")
if self.last_balise and (datetime.datetime.now() - self.last_balise).total_seconds() > 10800:
result.append("No long balise for more than 3 hours !")
if self.current_state and self.current_state in MAXIMUM_STATES and (datetime.datetime.now() - self.status_starttime[self.current_state]).total_seconds() > MAXIMUM_STATES[self.current_state][0]:
result.append("The FSM has been in the state {} for more than {} !".format(self.current_state, MAXIMUM_STATES[self.current_state][1]))
return result
class ADSL(threading.Thread):
def __init__(self, ser):
threading.Thread.__init__(self)
self.monitor = Monitor(ser)
self._ser = ser
def run(self):
self.monitor.start()
alarms = []
if not config.TELEGRAM_API_TOKEN or not config.TELEGRAM_GROUP:
print("Telegram not configured, ADSL not running.")
return
bot = TelegramBot(config.TELEGRAM_API_TOKEN)
bot.update_bot_info().wait()
print("Telegram bot {} ready".format(bot.username))
offset = None
bot.send_message(config.TELEGRAM_GROUP, b'\xe2\x84\xb9 Hello ! I have been started, so everything has been reset on my side.'.decode()).wait()
while True:
updates = bot.get_updates(offset=offset, limit=1, timeout=15).wait()
if updates:
offset = updates[0].update_id + 1
try:
if int(updates[0].message.chat.id) == int(config.TELEGRAM_GROUP):
if updates[0].message.text.startswith('/status'):
response = "Here is the current status:\n\n"
response += "Current state: {}\n".format(self.monitor.current_state)
if self.monitor.last_message:
response += "Last message: {} ({} seconds ago)\n".format(self.monitor.last_message.strftime("%H:%M:%S %d/%m/%Y"), int((datetime.datetime.now() - self.monitor.last_message).total_seconds()))
if self.monitor.last_gps_balise:
response += "Last GPS: {} ({} seconds ago)\n".format(self.monitor.last_gps_balise.strftime("%H:%M:%S %d/%m/%Y"), int((datetime.datetime.now() - self.monitor.last_gps_balise).total_seconds()))
if self.monitor.last_balise:
response += "Last Balise: {} ({} seconds ago)\n".format(self.monitor.last_balise.strftime("%H:%M:%S %d/%m/%Y"), int((datetime.datetime.now() - self.monitor.last_balise).total_seconds()))
response += "\n"
for state, starttime in self.monitor.status_starttime.items():
response += "{}: Started on {} ({} seconds ago)".format(state, starttime.strftime("%H:%M:%S %d/%m/%Y"), int((datetime.datetime.now() - starttime).total_seconds()))
if state == self.monitor.current_state:
response += ", in progress\n"
else:
response += ", duration: {} seconds\n".format(int(self.monitor.status_duration[state].total_seconds()))
bot.send_message(config.TELEGRAM_GROUP, response).wait()
elif updates[0].message.text.startswith('/stats'):
t_now = time.time()
values = ser.get_parsed_values()
stats_lines = ["Stats:"]
for k in values:
value, ts = values[k]
since = t_now - ts
stats_lines.append(f"{k}: {value} since {since}s")
bot.send_message(config.TELEGRAM_GROUP, "\n".join(stats_lines)).wait()
elif updates[0].message.text.startswith('/reboot'):
os.system(config.TELEGRAM_REBOOT_COMMAND)
bot.send_message(config.TELEGRAM_GROUP, b'\xe2\x84\xb9 I issued a reboot command. I hope everything is ok.'.decode()).wait()
else:
print(f"Ignore chat ID {updates[0].message.chat.id}")
except:
pass
new_alarms = self.monitor.alarms()
for alarm in new_alarms:
if alarm not in alarms:
bot.send_message(config.TELEGRAM_GROUP, b'\xe2\x9a\xa0 Problem \xe2\x9a\xa0\nSorry to bother you, but I think there is a problem with the glutt-o-matique: \n\n{}'.decode().format(alarm)).wait()
for old_alarm in alarms:
if old_alarm not in new_alarms:
bot.send_message(config.TELEGRAM_GROUP, b'\xe2\x9c\x85 Problem fixed \xe2\x9c\x85\nThe following problem is not anymore a problem with the glutt-o-matique:\n\n{}'.decode().format(old_alarm)).wait()
alarms = new_alarms
time.sleep(1)
|