-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmultithreading2.py
More file actions
337 lines (211 loc) · 9.92 KB
/
multithreading2.py
File metadata and controls
337 lines (211 loc) · 9.92 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from datetime import date
from multiprocessing import Process, Value, Queue, Manager
from typing import NewType
from android import *
from stm32 import *
from config import *
from protocols import *
from ultrasonic import *
import statistics
#Only used android, stm and ultrasonic
class Multithreading:
def __init__(self):
self.stm = STM() #connection to STM32
self.android = Android() #connection to Android
self.manager = Manager() #multiprocessing lib
#message queue
self.message_queue = self.manager.Queue()
self.msg_to_android_queue =self.manager.Queue()
#self.stmIsReady = self.manager.Value(True)
self.stmIsReady = self.manager.Value('i', 1)
self.ultraDist = self.manager.Value('i', 0)
#Processes
self.read_stm_process = Process(target=self._read_stm)
self.read_android_process = Process(target=self._read_android)
self.read_ultra_process = Process(target=self._read_ultra)
self.write_process = Process(target=self._write_target_)
self.write_android_process = Process(target=self._write_android_)
self.status = Status.IDLE
self.dropped_connection = Value('i',0) # 0 - stm, 1 - algorithm
def start(self):
try:
self.stm.connect()
self.android.connect(UUID)
print("Connected to STM and ANDROID")
self.read_stm_process.start()
self.read_android_process.start()
self.write_process.start()
self.write_android_process.start()
self.read_ultra_process.start()
print('Started all processes')
print('Multithreading started')
except Exception as e:
raise e
self._allreconnection()
def disconnect(self):
self.android.disconnect_all()
print('Multithread process has ended')
def _allreconnection(self):
print('You can reconnect to RPI after disconnecting now')
while True:
try:
if not self.read_stm_process.is_alive():
self._reconnect_stm()
if not self.read_android_process.is_alive():
self._reconnect_android()
if not self.write_process.is_alive():
if self.dropped_connection.value == 0:
self._reconnect_stm()
# elif self.dropped_connection.value == 1:
# self._reconnect_algo()
if not self.write_android_process.is_alive():
self._reconnect_android()
except Exception as e:
print('Error while reconnecting %s' % str(e))
raise e
def _reconnect_stm(self):
self.stm.disconnect()
#terminate all processes
self.read_stm_process.terminate()
self.write_process.terminate()
self.write_android_process.terminate()
#reconnect stm
self.stm.connect()
#Recreate all processes
self.read_stm_process = Process(target=self._read_stm)
self.read_stm_process.start()
self.write_process = Process(target=self._write_target_)
self.write_process.start()
self.write_android_process = Process(target=self._write_android_)
self.write_android_process.start()
#Output in terminal
print('Reconnected to STM')
def _reconnect_android(self):
self.android.disconnect()
#terminate all processes
self.read_android_process.terminate()
self.write_process.terminate()
self.write_android_process.terminate()
#reconnect android
self.android.connect()
#Recreate all processes
self.read_android_process = Process(target=self._read_android)
self.read_android_process.start()
self.write_process = Process(target=self._write_target_)
self.write_process.start()
self.write_android_process = Process(target=self._write_android_)
self.write_android_process.start()
#Output in terminal
print('Reconnected to Android')
def _read_ultra(self):
ultrasonic = Ultrasonic()
values = []
while True:
try:
dist = ultrasonic.distance()
values.append(dist)
#once a min of 5 values are in
if len(values) >= 5:
self.ultraDist.value = statistics.median(values)
time.sleep(1)
except KeyboardInterrupt:
ultrasonic.cleanup()
except Exception as e:
print("Error with Ultra: %s" %str(e))
def _read_stm(self):
while True:
try:
raw_msg = self.stm.read().strip()
if raw_msg is None:
continue
message_list = raw_msg.splitlines()
for msg in message_list:
if len(msg) <=0:
continue
print("Read from STM: %s" %msg)
if (msg == 'DONE'):
self.msg_to_android_queue.put_nowait(msg+NEWLINE)
except Exception as e:
print("Process of reading stm failed %s" % str(e))
def _read_android(self):
while True:
try:
raw_msg = self.android.read()
if raw_msg is None:
continue
message_list = raw_msg.splitlines()
for msg in message_list:
#print("Test %s"%msg)
#print(type(msg))
if len(msg) <=0:
continue
elif msg in AndroidToSTM.ALL_MESSAGES: #can change
self.message_queue.put_nowait(self._formatted_(
STM_HEADER, msg))
else:
print(msg[0:3])
if msg[0:3] == 'OBS':
self.message_queue.put_nowait(self._formatted_(ALGORITHM_HEADER,msg+ NEWLINE))
elif msg == AndroidToAlgorithm.DRAW_PATH:
#self.status = Status.FASTEST_PATH
self.message_queue.put_nowait(self._formatted_(ALGORITHM_HEADER, msg + NEWLINE))
elif msg == AndroidToAlgorithm.RESET:
#self.status = Status.FASTEST_PATH
self.message_queue.put_nowait(self._formatted_(ALGORITHM_HEADER, msg + NEWLINE))
elif msg == AndroidToAlgorithm.START_IMGREC:
#self.status = Status.EXPLORING
self.message_queue.put_nowait(self._formatted_(ALGORITHM_HEADER,msg+NEWLINE))
elif msg == AndroidToAlgorithm.START_FASTEST_PATH:
self.status = Status.FASTEST_PATH
# self.message_queue.put_nowait(self._formatted_(STM_HEADER, RPiToSTM.START_FASTEST_PATH + NEWLINE))
if self.ultraDist.value <=50:
distSend = 0
else:
distSend = self.ultraDist.value - 50
self.message_queue.put_nowait(self._formatted_(STM_HEADER,'T%.2f' %distSend))
else:
self.message_queue.put_nowait(self._formatted_(STM_HEADER, msg + NEWLINE))
print("Read from Android: %s" %msg)
#self.message_queue.put_nowait(self._formatted_(STM_HEADER, msg+"\n"))
# """Android has no socket to connect and send to. Will be STM or Algo"""
except Exception as e:
print("Process of reading android failed %s" % str(e))
def _write_target_(self):
while True:
target = None
try:
if not self.message_queue.empty(): #if not empty queue
message = self.message_queue.get_nowait()
target, payload = message['target'],message['payload']
if target == STM_HEADER:
self.stm.write(payload)
print("Write to STM: %s" %payload)
elif target == ALGORITHM_HEADER:
self.algo.write(payload)
print("Write to Algo: %s" %payload)
elif target == 'IMG':
self.imagerec.write(payload)
print('Write to IMGrec %s'%payload)
else:
print('Invalid target', target)
except Exception as e:
print('Process of writing target failed: %s' % str(e))
if target == STM_HEADER:
self.dropped_connection.value = 0
elif target == ALGORITHM_HEADER:
self.dropped_connection.value =1
break
def _write_android_(self):
while True:
try:
if not self.msg_to_android_queue.empty():
msg = self.msg_to_android_queue.get_nowait()
self.android.write(msg)
print("Write to Android: %s"%msg)
except Exception as e:
print("Process of writing to android failed: %s" % str(e))
break
def _formatted_ (self, target, payload):
return{'target':target, 'payload':payload}