-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsilvia-pi.py
executable file
·265 lines (207 loc) · 6.86 KB
/
silvia-pi.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
#!/usr/bin/python
import time
import logging
from threading import Timer
from datetime import datetime
from bottle import route, run, get, post, request, static_file, abort
from subprocess import call
from urllib2 import urlopen
import RPi.GPIO as GPIO
import Adafruit_GPIO.SPI as SPI
import Adafruit_MAX31855.MAX31855 as MAX31855
import PID as PID
import config as conf
import os
logging.basicConfig(filename='scheduler.log', level=logging.INFO)
def log_to_file(filename, message):
with open(filename, 'a') as log_file:
log_file.write(message + '\n')
def c_to_f(c):
return c * 9.0 / 5.0 + 32.0
def delayed_function():
# Code to be executed after the specified time
pass
def initialize_gpio():
GPIO.setmode(GPIO.BCM)
GPIO.setup(conf.he_pin, GPIO.OUT)
GPIO.output(conf.he_pin, 0)
def cleanup_gpio():
GPIO.output(conf.he_pin, 0)
GPIO.cleanup()
def scheduler(dummy, state):
log_to_file("scheduler.log", "Starting scheduler thread ...")
last_wake = 0
last_sleep = 0
last_sched_switch = 0
while True:
if (last_wake != state['wake_time'] or
last_sleep != state['sleep_time'] or
last_sched_switch != state['sched_enabled']):
# Clear the schedule
schedule.clear()
if state['sched_enabled']:
schedule.every().day.at(state['sleep_time']).do(gotosleep, 1, state)
schedule.every().day.at(state['wake_time']).do(wakeup, 1, state)
# Additional logic to handle the case when wake_time is greater than sleep_time
else:
wakeup(1, state)
last_wake = state['wake_time']
last_sleep = state['sleep_time']
last_sched_switch = state['sched_enabled']
schedule.run_pending()
time.sleep(1)
def wakeup(dummy, state):
state['is_awake'] = True
def gotosleep(dummy, state):
state['is_awake'] = False
def he_control_loop(dummy, state):
initialize_gpio()
heating = False
try:
while True:
avg_pid = state['avgpid']
if not state['is_awake']:
state['heating'] = False
GPIO.output(conf.he_pin, 0)
time.sleep(1)
else:
# Additional logic for heating control
pass
finally:
cleanup_gpio()
def pid_loop(dummy, state):
# PID loop implementation
pass
def rest_server(dummy, state):
# REST server implementation
pass
if __name__ == '__main__':
from multiprocessing import Process, Manager
from time import sleep
manager = Manager()
pidstate = manager.dict()
pidstate['is_awake'] = True
pidstate['sched_enabled'] = conf.sched_enabled
pidstate['sleep_time'] = conf.sleep_time
pidstate['wake_time'] = conf.wake_time
pidstate['i'] = 0
pidstate['settemp'] = conf.set_temp
pidstate['avgpid'] = 0.
processes = []
# Start Scheduler thread
s = Process(target=scheduler, args=(1, pidstate))
s.daemon = True
s.start()
processes.append(s)
# Start PID thread
p = Process(target=pid_loop, args=(1, pidstate))
p.daemon = True
p.start()
processes.append(p)
# Start HE Control thread
h = Process(target=he_control_loop, args=(1, pidstate))
h.daemon = True
h.start()
processes.append(h)
# Start REST Server thread
r = Process(target=rest_server, args=(1, pidstate))
r.daemon = True
r.start()
processes.append(r)
# Start Watchdog loop
processes.append(Process(target=watchdog, args=(1, pidstate, processes)))
processes[-1].start()
# Additional logic to keep the main process alive
try:
while all(process.is_alive() for process in processes):
sleep(1)
except KeyboardInterrupt:
pass
finally:
for process in processes:
process.terminate()
process.join()
def watchdog(dummy, state, processes):
# Watchdog loop implementation
pass
def watchdog(dummy, state, processes):
url_healthcheck = 'http://localhost:' + str(conf.port) + '/healthcheck'
pid_err = 0
web_err = 0
web_err_flag = 0
last_i = pidstate['i']
sleep(1)
while all(process.is_alive() for process in processes):
cur_i = pidstate['i']
if cur_i == last_i:
pid_err += 1
else:
pid_err = 0
last_i = cur_i
if pid_err > 9:
log_to_file("watchdog.log", 'ERROR IN PID THREAD, RESTARTING')
processes[1].terminate()
try:
health_check = urlopen(url_healthcheck, timeout=2)
except:
web_err_flag = 1
else:
if health_check.getcode() != 200:
web_err_flag = 1
if web_err_flag != 0:
web_err += 1
if web_err > 9:
log_to_file("watchdog.log", 'ERROR IN WEB SERVER THREAD, RESTARTING')
processes[3].terminate()
web_err_flag = 0
sleep(1)
if __name__ == '__main__':
from multiprocessing import Process, Manager
manager = Manager()
pidstate = manager.dict()
pidstate['is_awake'] = True
pidstate['sched_enabled'] = conf.sched_enabled
pidstate['sleep_time'] = conf.sleep_time
pidstate['wake_time'] = conf.wake_time
pidstate['i'] = 0
pidstate['settemp'] = conf.set_temp
pidstate['avgpid'] = 0.
processes = []
# Starting Scheduler thread
print("Starting Scheduler thread...")
s = Process(target=scheduler, args=(1, pidstate))
s.daemon = True
s.start()
processes.append(s)
# Starting PID thread
print("Starting PID thread...")
p = Process(target=pid_loop, args=(1, pidstate))
p.daemon = True
p.start()
processes.append(p)
# Starting HE Control thread
print("Starting HE Control thread...")
h = Process(target=he_control_loop, args=(1, pidstate))
h.daemon = True
h.start()
processes.append(h)
# Starting REST Server thread
print("Starting REST Server thread...")
r = Process(target=rest_server, args=(1, pidstate))
r.daemon = True
r.start()
processes.append(r)
# Start Watchdog loop
print("Starting Watchdog...")
w = Process(target=watchdog, args=(1, pidstate, processes))
w.daemon = True
w.start()
processes.append(w)
try:
for process in processes:
process.join()
except KeyboardInterrupt:
print("\nTerminating processes...")
for process in processes:
process.terminate()
process.join()