-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBicycleSensor.py
217 lines (172 loc) · 6.33 KB
/
BicycleSensor.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
import argparse
import logging
import os
import shutil
import signal
import sys
import threading
import time
import traceback
from abc import ABC, abstractmethod
from collections import deque
from datetime import datetime
from logging.handlers import RotatingFileHandler
import requests
def configure(filename: str, stdout: bool = True, rotating: bool = False, loglevel: str = 'INFO') -> None:
'''Configure logging.'''
log_dir = 'log'
# Ensure the log directory exists
if not os.path.isdir(log_dir):
try:
os.makedirs(log_dir)
except OSError:
raise Exception(f'Creation of the log directory "{log_dir}" failed')
if not filename.endswith('.log'):
filename += '.log'
log_exists = os.path.isfile(os.path.join(log_dir, filename))
log_file = os.path.join(log_dir, filename)
# Formatter for logs
log_format = '%(asctime)s: %(levelname)s [%(name)s] %(message)s'
formatter = logging.Formatter(log_format)
# Set up the appropriate log handler
if rotating:
handler = RotatingFileHandler(
filename=log_file,
mode='a',
maxBytes=5 * 1024 * 1024, # 5 MB
backupCount=2
)
handler.setFormatter(formatter)
# Roll over if the file already exists
if log_exists:
handler.doRollover()
logging.getLogger().addHandler(handler)
else:
logging.basicConfig(
filename=log_file,
level=logging.INFO,
format=log_format
)
# Optionally, log to stdout
if stdout:
stream_handler = logging.StreamHandler()
stream_handler.setFormatter(formatter)
logging.getLogger().addHandler(stream_handler)
# Convert log level string to numeric level
numeric_level = getattr(logging, loglevel.upper(), None)
if not isinstance(numeric_level, int):
raise ValueError(f"Invalid log level: {loglevel}")
# Set the logging level for the root logger
logging.getLogger().setLevel(numeric_level)
# Log the command-line arguments
logging.getLogger().info(f'Command-line arguments: {sys.argv[1:]}')
class BicycleSensor(ABC):
def __init__(self, name, hash, measurement_frequency, upload_interval, use_worker_thread: bool):
self._name = name
self._hash = hash
self._measurement_frequency = measurement_frequency
self._upload_interval = upload_interval
self._alive = True
# Create necessary directories
os.makedirs('pending', exist_ok=True)
os.makedirs('uploaded', exist_ok=True)
# Initialize the upload queue
self._upload_queue = deque(sorted([os.path.join('pending', f) for f in os.listdir('pending') if os.path.isfile(os.path.join('pending', f))]))
self._file = None
self.upload_event = threading.Event()
self.upload_thread = threading.Thread(target=self._upload_data_loop)
self.upload_thread.start()
# Handle termination signals
signal.signal(signal.SIGTERM, self._handle_shutdown)
signal.signal(signal.SIGINT, self._handle_shutdown)
self.trigger_upload()
if use_worker_thread:
self.worker_thread = threading.Thread(target=self.worker_main)
self.worker_thread.daemon = True
self.worker_thread.start()
@abstractmethod
def write_header(self):
'''Abstract method to write the header to the CSV file.'''
pass
@abstractmethod
def write_measurement(self):
'''Abstract method to write measurement data to the CSV file.'''
pass
def worker_main(self):
'''Abstract method for a worker thread.'''
pass
def write_to_file(self, data: str):
'''Helper method to write data to the file.'''
if self._file:
self._file.write(data)
self._file.write('\n')
def _handle_shutdown(self, signum, frame):
'''Gracefully handle shutdown signals.'''
self._alive = False
self.upload_event.set() # Ensure thread wakes up to check _alive flag
logging.warning(f'Shutdown due to signal {signum}')
def trigger_upload(self):
'''Trigger the upload event.'''
if self._file:
self._file.close()
self._file = None
self._upload_queue.append(self._filename)
self._filename = os.path.join('pending', datetime.now().strftime('%Y%m%d_%H%M%S.csv'))
if self._alive:
try:
self._file = open(self._filename, 'w')
self.write_header()
logging.info(f"New file '{self._filename}' created")
except IOError as e:
logging.error(f"Error opening file '{self._filename}': {e}")
self._file = None
self.upload_event.set()
def _upload_data_loop(self):
'''The main loop that runs in a separate thread to handle data uploads.'''
while self._alive:
self.upload_event.wait() # Wait until the event is set
self._upload_data() # Perform the upload
self.upload_event.clear() # Reset the event to pause the thread
# Final upload after shutdown
logging.warning('Upload thread stopped - final upload attempt')
self.trigger_upload()
self._upload_data()
logging.warning('Upload thread stopped')
def _upload_data(self):
'''Perform the data upload to the server.'''
try:
while self._upload_queue:
filename = self._upload_queue[0]
with open(filename, 'r') as file:
csv_data = file.readlines()
r = requests.post('https://bicycledata.vti.se/api/sensor/update', json={'hash': self._hash, 'sensor': self._name, 'csv_data': csv_data}, timeout=10)
logging.info(f'{r.status_code}: {filename}')
if r.status_code == 200:
shutil.move(filename, 'uploaded')
self._upload_queue.popleft()
else:
logging.info(r.text.strip())
break
except Exception as e:
logging.error("Something went wrong during the upload process")
logging.error(traceback.format_exc())
def main(self):
'''Main loop for handling sensor measurements and triggering uploads.'''
_time = time.time()
while self._alive:
try:
self.write_measurement()
current_time = time.time()
if current_time - _time >= self._upload_interval:
_time = current_time
self.trigger_upload()
time.sleep(1.0 / self._measurement_frequency)
except Exception as e:
logging.error(f"Error during main loop: {e}")
logging.error(traceback.format_exc())
# Trigger final upload and clean up
if self._file:
self.trigger_upload()
# Wait for the upload thread to finish
self.upload_thread.join()
logging.warning('Process stopped')