This repository has been archived by the owner on Dec 12, 2022. It is now read-only.
forked from bjoernhoefer/igrill
-
Notifications
You must be signed in to change notification settings - Fork 38
/
utils.py
131 lines (107 loc) · 4.38 KB
/
utils.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
from builtins import range
from config import strip_config
from igrill import IGrillMiniPeripheral, IGrillV2Peripheral, IGrillV3Peripheral, Pulse2000Peripheral, DeviceThread
import logging
import paho.mqtt.client as mqtt
config_requirements = {
'specs': {
'required_entries': {'devices': list, 'mqtt': dict},
},
'children': {
'devices': {
'specs': {
'required_entries': {'name': str, 'type': str, 'address': str, 'topic': str, 'interval': int},
'optional_entries': {'publish_missing_probes': bool, 'missing_probe_value': str},
'list_type': dict
}
},
'mqtt': {
'specs': {
'required_entries': {'host': str},
'optional_entries': {'port': int,
'keepalive': int,
'auth': dict,
'tls': dict}
},
'children': {
'auth': {
'specs': {
'required_entries': {'username': str},
'optional_entries': {'password': str}
}
},
'tls': {
'specs': {
'optional_entries': {'ca_certs': str,
'certfile': str,
'keyfile': str,
'cert_reqs': str,
'tls_version': str,
'ciphers': str}
}
}
}
}
}
}
config_defaults = {
'mqtt': {
'host': 'localhost'
}
}
def log_setup(log_level, logfile):
"""Setup application logging"""
numeric_level = logging.getLevelName(log_level.upper())
if not isinstance(numeric_level, int):
raise TypeError("Invalid log level: {0}".format(log_level))
if logfile != '':
logging.info("Logging redirected to: ".format(logfile))
# Need to replace the current handler on the root logger:
file_handler = logging.FileHandler(logfile, 'a')
formatter = logging.Formatter('%(asctime)s %(threadName)s %(levelname)s: %(message)s')
file_handler.setFormatter(formatter)
log = logging.getLogger() # root logger
for handler in log.handlers: # remove all old handlers
log.removeHandler(handler)
log.addHandler(file_handler)
else:
logging.basicConfig(format='%(asctime)s %(threadName)s %(levelname)s: %(message)s')
logging.getLogger().setLevel(numeric_level)
logging.info("log_level set to: {0}".format(log_level))
def mqtt_init(mqtt_config):
"""Setup mqtt connection"""
mqtt_client = mqtt.Client()
if 'auth' in mqtt_config:
auth = mqtt_config['auth']
mqtt_client.username_pw_set(**auth)
if 'tls' in mqtt_config:
if mqtt_config['tls']:
tls_config = mqtt_config['tls']
mqtt_client.tls_set(**tls_config)
else:
mqtt_client.tls_set()
mqtt_client.connect(**strip_config(mqtt_config, ['host', 'port', 'keepalive']))
return mqtt_client
def publish(temperatures, battery, heating_element, client, base_topic, device_name):
for i in range(1, 5):
if temperatures[i]:
client.publish("{0}/{1}/probe{2}".format(base_topic, device_name, i), temperatures[i])
if battery:
client.publish("{0}/{1}/battery".format(base_topic, device_name), battery)
if heating_element:
client.publish("{0}/{1}/heating_element".format(base_topic, device_name), heating_element)
def get_devices(device_config):
if device_config is None:
logging.warn('No devices in config')
return {}
device_types = {'igrill_mini': IGrillMiniPeripheral,
'igrill_v2': IGrillV2Peripheral,
'igrill_v3': IGrillV3Peripheral,
'pulse_2000': Pulse2000Peripheral}
return [device_types[d['type']](**strip_config(d, ['address', 'name'])) for d in device_config]
def get_device_threads(device_config, mqtt_config, run_event):
if device_config is None:
logging.warn('No devices in config')
return {}
return [DeviceThread(ind, mqtt_config, run_event, **d) for ind, d in
enumerate(device_config)]