tasks.py
11.5 KB
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
from __future__ import absolute_import
from django.conf import settings
from common.models import *
from src.monitoring.plc_checker import PlcChecker
from devices.PLC import PLCController
from utils.JDManipulator import *
import json
import utils.Logger as L
import majordome.tasks
import alert_manager.tasks
log = L.setupLogger("MonitoringTaskLogger", "Monitoring")
# EP
#DEBUG_FILE = False
DEBUG_FILE = True
'''
Infinite task created at the program's start.
Checks the plc status, parse it, analyse it, store it in db
'''
class Monitoring():
timers = {}
functions = {}
state = None
plcController = None
majordome = None
alert_manager = None
alert_task = None
majordome_task = None
timer_status = None
timer_tasks = None
status_plc = None
plc_checker = PlcChecker()
def run(self):
print ("AGENT ENV: startup...")
self.createTask()
# (TRY TO) Connect to PLC
# (non blocking if could not connect)
self.setContext()
print ("AGENT ENV: config PLC is (ip={}, port={})".format(self.plcController.ip, self.plcController.port))
# (EP) self.setTime()
self.setTimers()
print("AGENT ENV: my timers (check env status every {}s, check other agents every {}s)".format(self.timer_status, self.timer_tasks))
self.setTasks()
print("AGENT ENV: Other Agents id read from DB (majordome={}, alert={})".format(self.majordome_task, self.alert_task))
self.loop()
def createTask(self):
try:
# (EP) NO find() method available from Django ORM, c'est du n'importe quoi ce code (lastminute.com ?) !!!!
#TaskId.objects.find(task="monitoring").delete()
TaskId.objects.filter(task="monitoring").delete()
except Exception as e:
log.info(str(e))
# (EP) return always if no monitoring task to delete, and so monitoring task id is never saved !!!
#return 1
# PM 20190129 remove
#TaskId.objects.create(task_id=self.request.id, task="monitoring")
return 0
def setTasks(self):
try:
self.majordome_task = TaskId.objects.get(task="majordome")
self.alert_task = TaskId.objects.get(task="alert_manager")
except Exception as e:
self.majordome_task = None
self.alert_task = None
return 0
def setContext(self):
self.plcController = PLCController()
self.state = "RUNNING"
return (0)
def setTimers(self):
self.timer_status = 2
self.timer_tasks = 5
self.timers = {"timer_status": self.timer_status,
"timer_tasks": self.timer_tasks}
# (EP) "tasks": self.timer_tasks}
# (EP) self.functions = {"timer_status": self.handleTimerStatus,
self.functions = {"timer_status": self.handleStatus,
"timer_tasks": self.handleTasks}
return (0)
def logDB(self, message: str):
Log.objects.create(agent='Monitoring', message=message)
'''
Function called by the main loop to check if the majordome and alert_manager are running
'''
def handleTasks(self):
# Reset timer total duration
# (EP) self.timers["tasks"] = self.timer_tasks
self.timers["timer_tasks"] = self.timer_tasks
# TODO check majordome and alert_manager status
if self.majordome_task is None:
try:
# (EP) bugfix !!!
#self.monitoring_task = TaskId.objects.get(task="majordome")
self.majordome_task = TaskId.objects.get(task="majordome")
except Exception as e:
print("no USE_CELERY => do not create Majordome task")
if self.alert_task is None:
try:
self.alert_task = TaskId.objects.get(task="alert_manager")
except Exception as e:
# Mind this will raise an Exception if RABBITMQ is not started !
print("no USE_CELERY => do not create AlertListener task")
# EP non car 0 = false
#return 0
return True
'''
Check if all devices info are consitants
'''
def isStatusValid(self):
return True
'''
Extract content from the status dictionary
'''
def extractFromDict(self, status):
synthesis = {}
devices = status["devices"]
#print(devices)
#is_safe_str = status["is_safe"]
#mode = status["mode"]
# PM 20190220 try valid
for device in devices:
if str(device['error_code']) == "0":
#if device['valid'] == "yes":
for value in device["device_values"]:
synthesis[value["name"]] = value["value"]
synthesis[value["name"] + "_unit"] = value["unit"]
return synthesis
# TODO ATTENTION SI DEUX DEVICES ONT LE MEME NOM
# TODO SAVE SYNTHESIS
def saveContent(self, content):
devices = content[0]["devices"]
print("saveContent")
for device in devices:
# PM 20190222 try valid with error_code
#if device['valid'] == "yes":
if str(device['error_code']) == "0":
status = PlcDeviceStatus()
try:
database_device = PlcDevice.objects.get(name=device["device_name"])
except Exception as e:
# plc = Plc.objects.first()
try:
database_device = PlcDevice.objects.create(name=device["device_name"])
except Exception as e:
print(e)
status.device = database_device
for value in device["device_values"]:
status.setValue(value["monitoring_name"], value["value"], value["unit"])
#status.setValue("mode", mode)
#status.setValue("is_safe", is_safe_str)
status.save()
'''
Parse status returned by plc
'''
def parseStatus(self, status_plc):
try:
status = {}
dict = json.loads(status_plc)
if dict[0]["entity_name"] == "PLC_STATUS":
if self.isStatusValid():
status = self.extractFromDict(dict[0])
self.saveContent(dict)
else:
# TODO HANDLE ERROR HERE
pass
except Exception as e:
if DEBUG_FILE and settings.DEBUG:
log.info(str(e))
self.status_plc = {}
return 1
self.status_plc = status
return 0
'''
Check if string is ouside
'''
def isOutside(self, key):
if key.find('Outside') != -1 or key.find('Rain') != -1\
or key.find("Wind") != -1 or key.find("Sky") != -1:
return True
elif key == "Pressure":
return True
elif key == "DewPoint":
return True
return False
def isInside(self, key):
if key.find('Inside') != -1 or key.find('Door') != -1:
return True
elif key == "status":
return True
elif key == "current":
return True
return False
'''
Save status returned by plc
'''
def old__saveStatus(self):
outside = WeatherWatch()
inside = SiteWatch()
for key, value in self.status_plc.items():
if self.isOutside(key):
outside.setAttribute(key, value)
elif self.isInside(key):
inside.setAttribute(key, value)
outside.setGlobalStatus()
inside.setGlobalStatus()
outside.save()
inside.save()
#return 0
def saveSite(self):
inside = SiteWatch()
for key, value in self.status_plc.items():
if self.isInside(key):
inside.setAttribute(key, value)
inside.setGlobalStatus()
inside.save()
def saveWeather(self):
outside = WeatherWatch()
for sensor in self.plc_checker.sensors_weather.keys():
value = self.plc_checker.get_sensor(sensor)
print(sensor, value)
outside.setAttribute(sensor, value)
outside.setGlobalStatus()
outside.save()
def parseNewStatus(self,status_plc ):
# """ PM 20181009 parse new status for config
if status_plc.find('PLC_STATUS') >= 0:
self.plc_checker.chk_config(status_plc)
return True
'''
Function called by the main loop to handle the plc status
'''
def handleStatus(self):
# Reset timer total duration
self.timers["timer_status"] = self.timer_status
status_plc = self.plcController.getStatus()
# PM 20181009 parse new status for config
if self.parseNewStatus(status_plc):
self.saveWeather()
#self.saveSite()
# Error while READING status ?
if (self.plcController.isError(status_plc)):
if (settings.DEBUG and DEBUG_FILE):
log.info("Invalid PLC status returned (while reading) : " + str(status_plc))
Log.objects.create(message="Invalid PLC status returned (while reading) : ", agent="Monitoring")
# EP Non car 1 = true
#return (1)
return False
# (EP) if parseStatus() = THERE WAS AN ERROR !!!
# Error while PARSING status ?
if self.parseStatus(status_plc):
if (settings.DEBUG and DEBUG_FILE):
log.info("Invalid PLC status returned (while parsing) : " + str(status_plc))
Log.objects.create(message="Invalid PLC status returned (while parsing) : ", agent="Monitoring")
# EP Non car 1 = true
#return (1)
return False
print("Status received from PLC (read and parsed ok):")
print(status_plc)
#return self.saveStatus()
#print(datetime.datetime.now())
Log.objects.create(message="Status received from PLC (read and parsed ok):", agent="Monitoring")
#self.saveStatus()
return True
'''
Main loop
'''
def loop(self):
i = 0
while (self.state != "SHUTDOWN"):
print("-")
print("-")
print("-")
print ("AGENT Monitoring (ENV): iteration "+str(i)+", (my state is " + self.state+") :")
minimal_timer = min(self.timers, key=self.timers.get)
time.sleep(self.timers[minimal_timer])
self.timers = {key: value - self.timers[minimal_timer] for key, value in self.timers.items()}
for timer_name, timer_value in self.timers.items():
if (timer_value <= 0):
if (timer_name in self.functions):
# Handle the timer function
self.functions[timer_name]()
if (settings.DEBUG and DEBUG_FILE):
log.info("Timer : " + str(timer_name) + " executed by monitoring")
else:
if (settings.DEBUG and DEBUG_FILE):
log.info("Timer : " + str(timer_name) + "is not known by the monitoring")
self.logDB("Timer " + str(timer_name) + " unknown")
# EP : pas au bon endroit !!!
#if (settings.DEBUG and DEBUG_FILE):
#log.info("Timer : " + str(timer_name) + " executed by monitoring")
i+=1
return (0)
if (__name__ == "__main__"):
m = Monitoring()
m.run()