forked from Iture/max-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
MaxWorker.py
289 lines (250 loc) · 12.7 KB
/
MaxWorker.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
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
import json
import logging
import multiprocessing
import time
from maxcube.connection import MaxCubeConnection
from maxcube.cube import MaxCube
from maxcube.device import \
MAX_THERMOSTAT, \
MAX_THERMOSTAT_PLUS, \
MAX_WALL_THERMOSTAT, \
MAX_WINDOW_SHUTTER
class MaxWorker(multiprocessing.Process):
def __init__(self, messageQ, commandQ, config):
self.logger = logging.getLogger('Max!-MQTT.MaxWorker')
self.logger.info("Starting...")
multiprocessing.Process.__init__(self)
self.__messageQ = messageQ
self.__commandQ = commandQ
self.topology = {}
self.desired_temperatures = {}
self.load_topology()
self.__max_cube_connection = None
self.cube_ip_adress = config['max_cube_ip_adress']
self.topology_refresh_period = config['max_topology_refresh_interval']
self.mqtt_update_period = config['max_mqtt_update_interval']
self.cube_duty_cycle_reset_interval = config['max_cube_duty_cycle_reset_interval']
self.enable_sanity_check = config['max_perform_sanity_check']
self.topology_last_refresh = 0
self.mqtt_last_refresh = 0
self.cube_duty_cycle = 0
self.cube_duty_cycle_reset = 0
def update_timer_elapsed(self):
if time.time() > (self.mqtt_last_refresh + self.mqtt_update_period):
return True
else:
return False
def load_topology(self):
try:
with open('topology.json') as json_data:
d = json.load(json_data)
self.topology = d
self.logger.info("topology initial load suceeded")
except Exception as e:
self.logger.error("Topology initial load failed")
def refresh_topology(self):
time.sleep(0.01)
self.logger.debug('Starting topology refresh')
try:
self.connect()
cube = MaxCube(self.__max_cube_connection)
#TODO report cube values to the broker
# self.__messageQ.put(self.prepare_output('cube', 'free_mem_slots', cube.free_mem_slots))
# self.__messageQ.put(self.prepare_output('cube', 'duty_cycle', cube.duty_cycle))
for device in cube.devices:
device_id = self.update_device(device)
if device.type in (MAX_THERMOSTAT, MAX_THERMOSTAT_PLUS, MAX_WALL_THERMOSTAT )\
and self.enable_sanity_check \
and (device_id in self.desired_temperatures) \
and (self.desired_temperatures[device_id] != device.TargetTemperature):
try:
self.logger.info("Correcting temperature for device :%s (%s/%s) from:%s to:%s" % (
device_id, device.room_name, device.name, device.TargetTemperature,
self.desired_temperatures[device_id]))
cube.set_TargetTemperature(device, self.desired_temperatures[device_id])
self.logger.info("Command result:%s" % cube.command_result)
if cube.command_success:
self.__messageQ.put(self.prepare_output(
device_id, 'TargetTemperature',
self.topology[device_id]['TargetTemperature']))
self.__messageQ.put(self.prepare_output(
'Cube', 'FreeMemSlots', cube.free_mem_slots))
self.__messageQ.put(self.prepare_output(''
'Cube', 'DutyCycle', cube.duty_cycle))
self.cube_duty_cycle = cube.duty_cycle
self.cube_duty_cycle_reset = time.time()
except Exception as e:
self.logger.error("Set error:%s" % (format(e)))
except Exception as e:
self.logger.error(format(e))
self.logger.debug('Finished topology refresh')
if self.update_timer_elapsed():
self.mqtt_last_refresh = time.time()
self.dump_topology()
return (True)
def update_device(self, device):
device_id = device.serial
if not device_id in self.topology:
self.topology[device_id] = {}
self.topology[device_id]['rf_address'] = device.rf_address
self.topology[device_id]['name'] = device.name
self.topology[device_id]['room_id'] = device.room_id
self.topology[device_id]['room_name'] = device.room_name
self.topology[device_id]['type'] = device.device_type_name()
self.topology[device_id]['serial'] = device.serial
self.update_device_metric(device, 'LinkFail')
self.update_device_metric(device, 'BatteryOK')
# metrics available only for specific device types
if device.type in (MAX_THERMOSTAT, MAX_THERMOSTAT_PLUS, MAX_WALL_THERMOSTAT):
self.topology[device_id]['mode'] = device.device_mode_name()
if device.ActualTemperature:
self.update_device_metric(device, 'ActualTemperature')
self.update_device_metric(device, 'TargetTemperature')
self.update_device_metric(device, 'ValvePosition')
# get status of window
if device.type == MAX_WINDOW_SHUTTER:
self.topology[device_id]['mode'] = device.mode;
# send data to MQTT
self.logger.debug("Refreshing data in MQTT for device :%s (%s/%s)" %
(device_id, device.room_name, device.name))
self.__messageQ.put(self.prepare_output(
device_id, 'LinkFail', self.topology[device_id]['LinkFail']))
self.__messageQ.put(self.prepare_output(
device_id, 'BatteryOK', self.topology[device_id]['BatteryOK']))
self.__messageQ.put(self.prepare_output(
device_id, 'Mode', self.topology[device_id]['mode']))
if device.type in (MAX_THERMOSTAT, MAX_THERMOSTAT_PLUS, MAX_WALL_THERMOSTAT):
self.__messageQ.put(self.prepare_output(
device_id, 'ActualTemperature', self.topology[device_id].get('ActualTemperature', None)))
self.__messageQ.put(self.prepare_output(
device_id, 'TargetTemperature', self.topology[device_id]['TargetTemperature']))
self.__messageQ.put(self.prepare_output(
device_id, 'ValvePosition', self.topology[device_id]['ValvePosition']))
return device_id
def dump_topology(self):
try:
with open('topology.json', 'w') as outfile:
json.dump(self.topology, outfile, ensure_ascii=False)
except Exception as e:
self.logger.error(format(e))
def update_device_metric(self, device, param):
device_id = device.serial
try:
if self.topology[device_id].get(param, None) != device.__dict__[param]:
self.topology[device_id][param] = device.__dict__[param]
self.__messageQ.put(self.prepare_output(device_id, param,
self.topology[device_id].get(param, None)))
except Exception as e:
self.logger.error("problem while udating param %s in device %s" % (param, device_id))
def prepare_output(self, device_id, param_name, param_value):
try:
deviceIdR = self.topology[device_id]['room_name'] + '/' + self.topology[device_id]['name']
except Exception as e:
deviceIdR = device_id
out = {
'method': 'publish',
'deviceId': deviceIdR,
'param': param_name,
'payload': param_value,
'qos': 1,
'timestamp': time.time()
}
return out
def connect(self):
if self.__max_cube_connection is None:
try:
self.__max_cube_connection = MaxCubeConnection(self.cube_ip_adress, 62910)
self.logger.info('Connecting to Max!Cube')
except Exception as e:
self.logger.error('Problem opening connection')
def close(self):
if not self.__max_cube_connection is None:
try:
self.__max_cube_connection.disconnect()
except:
self.logger.error('Problem closing connection')
self.__max_cube_connection = None
self.logger.debug('Connection to Max!Cube closed')
def set_temperature(self, cube, room_name, device_name, TargetTemperature):
for device_id in self.topology:
if self.topology[device_id]['name'] == device_name and self.topology[device_id]['room_name'] == room_name:
break
device = self.topology[device_id] #not necessary
self.desired_temperatures[device_id] = float(TargetTemperature)
if device['type'] == 4:
return;
if float(device['TargetTemperature']) != float(TargetTemperature):
rf_id = device['rf_address']
try:
self.logger.debug("Setting temperature for %s (%s/%s) to:%s" %
(device_id, device['room_name'], device['name'],
TargetTemperature))
cube.set_TargetTemperature(cube.device_by_rf(rf_id), float(TargetTemperature))
self.logger.info("Command result:%s" % (cube.command_result))
if cube.command_success:
self.update_cube_stats(cube)
self.__messageQ.put(self.prepare_output(
device_id, 'TargetTemperature', TargetTemperature))
except Exception as ex:
self.logger.error("Send error:%s" % (format(ex)))
return
def update_cube_stats(self, cube):
self.__messageQ.put(self.prepare_output(
'Cube', 'FreeMemSlots', cube.free_mem_slots))
self.__messageQ.put(self.prepare_output(
'Cube', 'DutyCycle', cube.duty_cycle))
def set_mode(self, cube, room_name, device_name, target_mode):
for device_id in self.topology:
if self.topology[device_id]['name'] == device_name and self.topology[device_id]['room_name'] == room_name:
break
modes={'AUTO':0, 'MANUAL':1, 'VACATION':2, 'BOOST':3}
device = self.topology[device_id]
if device['mode'] != target_mode:
rf_id = device['rf_address']
try:
self.logger.debug("Setting mode for %s (%s/%s) to:%s" %
(device_id, device['room_name'], device['name'],
target_mode))
cube.set_mode(cube.device_by_rf(rf_id), modes[target_mode])
self.logger.info("Command result:%s" % (cube.command_result))
if cube.command_success:
self.__messageQ.put(self.prepare_output(
'Cube', 'FreeMemSlots', cube.free_mem_slots))
self.__messageQ.put(self.prepare_output(
'Cube', 'DutyCycle', cube.duty_cycle))
self.__messageQ.put(self.prepare_output(
device_id, 'Mode', target_mode))
except Exception as ex:
self.logger.error("Send error:%s" % (format(ex)))
return
def run(self):
self.refresh_topology()
self.topology_last_refresh = time.time()
while True:
time.sleep(0.01)
# resetting internal duty cycle metric
if time.time() > (self.cube_duty_cycle_reset + self.cube_duty_cycle_reset_interval):
self.cube_duty_cycle = 0
self.cube_duty_cycle_reset = time.time()
self.__messageQ.put(self.prepare_output(
'Cube', 'DutyCycle', self.cube_duty_cycle))
# processing incoming data
if not self.__commandQ.empty():
try:
self.connect()
cube = MaxCube(self.__max_cube_connection)
while not self.__commandQ.empty():
task = self.__commandQ.get()
if task['method'] == 'command':
if task['param'] == 'TargetTemperature':
self.set_temperature(cube,task['roomName'],task['deviceName'],task['payload'])
elif task['param'] == 'Mode':
self.set_mode(cube,task['roomName'],task['deviceName'],task['payload'])
self.logger.debug("Executing command:%s" % (task))
except Exception as e:
self.logger.error(format(e))
# refreshing topology
if self.update_timer_elapsed():
self.refresh_topology()
self.topology_last_refresh = time.time()
self.close()