-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshot_manager.py
260 lines (212 loc) · 8.55 KB
/
shot_manager.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
import json
import os
from named_thread import NamedThread
import time
import traceback
import uuid
from datetime import datetime
from pathlib import Path
import zstandard as zstd
from esp_serial.connection.emulation_data import EmulationData
from esp_serial.data import SensorData, ShotData
from log import MeticulousLogger
from shot_database import ShotDataBase, SearchParams, SearchOrder
logger = MeticulousLogger.getLogger(__name__)
HISTORY_PATH = os.getenv("HISTORY_PATH", "/meticulous-user/history")
SHOT_FOLDER = "shots"
SHOT_PATH = Path(HISTORY_PATH).joinpath(SHOT_FOLDER)
class Shot:
def __init__(self) -> None:
self.shotData = []
self.profile = None
self.profile_name = None
self.startTime = time.time()
self.id = str(uuid.uuid4())
def addSensorData(self, sensorData: SensorData):
if len(self.shotData) > 0:
# Append onto the last shotData
self.shotData[-1]["sensors"] = dict(sensorData.__dict__)
def addShotData(self, shotData: ShotData):
from profiles import ProfileManager
from machine import Machine
if self.profile_name is None and shotData.profile is not None:
# Special case the emulation case
if (
Machine.emulated
and shotData.profile == EmulationData.PROFILE_PLACEHOLDER
and ProfileManager.get_last_profile() is not None
):
self.profile_name = ProfileManager.get_last_profile()["profile"]["name"]
else:
self.profile_name = shotData.profile
if self.profile is None:
last_profile = ProfileManager.get_last_profile()
if (
last_profile is not None
and last_profile.get("profile", None) is not None
and last_profile["profile"]["name"] == self.profile_name
):
self.profile = last_profile["profile"]
else:
self.profile = {}
# Shotdata is not json serialziable and we dont need the profile entry multiple times
formated_data = {
"shot": {
"pressure": shotData.pressure,
"flow": shotData.flow,
"weight": shotData.weight,
"gravimetric_flow": shotData.gravimetric_flow,
"setpoints": shotData.to_sio().get("setpoints", {}),
},
"time": shotData.time,
"status": shotData.status,
}
self.shotData.append(formated_data)
def to_json(self):
shot_dict = {
"time": self.startTime,
"profile_name": self.profile_name,
"data": self.shotData,
"id": self.id,
}
# empty dictionary evaluate to false
if bool(self.profile):
shot_dict["profile"] = self.profile
return shot_dict
class ShotManager:
_last_shot: Shot = None
_current_shot: Shot = None
# The ShotDatabase is required to work once we use the ShotManager.
# We therefore initialize it here
@staticmethod
def init():
ShotDataBase.init()
logger = MeticulousLogger.getLogger(__name__)
logger.info("ShotManager initialized successfully")
@staticmethod
def start():
ShotManager._current_shot = Shot()
@staticmethod
def handleSensorData(sensoData: SensorData):
if sensoData is not None and ShotManager._current_shot is not None:
ShotManager._current_shot.addSensorData(sensoData)
@staticmethod
def handleShotData(shotData: ShotData):
if shotData is not None and ShotManager._current_shot is not None:
ShotManager._current_shot.addShotData(shotData)
@staticmethod
def _timestampToFilePaths(timestamp: float):
start = datetime.fromtimestamp(timestamp)
folder_name = Path(start.strftime("%Y-%m-%d"))
formatted_time = start.strftime("%H:%M:%S")
file_name = f"{formatted_time}.shot.json.zst"
file_path = folder_name.joinpath(file_name)
return (folder_name, file_path)
@staticmethod
def getCurrentShot():
if not ShotManager._current_shot:
return None
formated_profile = {
"db_key": None,
}
if ShotManager._current_shot.profile:
profile = ShotManager._current_shot.profile
formated_profile = {**formated_profile, **profile}
(_folder_name, file_path) = ShotManager._timestampToFilePaths(
ShotManager._current_shot.startTime
)
current_formated_shot = {
"db_key": None,
"file": str(file_path),
**ShotManager._current_shot.to_json(),
"profile": formated_profile,
}
return current_formated_shot
@staticmethod
def getLastShot():
if not ShotManager._last_shot:
results = ShotDataBase.search_history(
SearchParams(sort=SearchOrder.descending, max_results=1)
)
if len(results) > 0:
ShotManager._last_shot = results[0]
return ShotManager._last_shot
@staticmethod
def stop():
if ShotManager._current_shot is not None:
shot_data = ShotManager._current_shot.to_json()
if shot_data.get("profile") is None:
from profiles import ProfileManager
last_profile = ProfileManager.get_last_profile()
if last_profile is not None:
shot_data["profile"] = last_profile.get("profile")
def write_current_shot(shot_data):
# Determine the paths based on the shot start
(folder_name, file_path) = ShotManager._timestampToFilePaths(
shot_data["time"]
)
# Compress and write the shot to disk
logger.info("Writing and compressing shot file")
start = time.time()
try:
# Create the folder if it does not exist
os.makedirs(SHOT_PATH.joinpath(folder_name), exist_ok=True)
data_json = json.dumps(shot_data, ensure_ascii=False)
with open(SHOT_PATH.joinpath(file_path), "wb") as file:
cctx = zstd.ZstdCompressor(level=22)
with cctx.stream_writer(file) as compressor:
compressor.write(data_json.encode("utf-8"))
data_json = None
except Exception as e:
logger.error(f"Failed to write shotfile to disk: {e}")
logger.error(traceback.format_exc())
shot_data = None
return
else:
time_ms = (time.time() - start) * 1000
logger.info(f"Writing json to disc took {time_ms} ms")
# Add to SQLite database, it will compress automatically
logger.info("Adding shot to sqlite database")
start = time.time()
try:
dbEntry = shot_data
dbEntry["file"] = str(file_path)
ShotDataBase.insert_history(shot_data)
ShotManager._last_shot = None
ShotManager.getLastShot()
except Exception as e:
logger.error(f"Failed to insert shot into sqlite: {e}")
logger.error(traceback.format_exc())
else:
time_ms = (time.time() - start) * 1000
logger.info(f"Ingesting shot into sqlite took {time_ms} ms")
shot_data = None
compresson_thread = NamedThread(
"ShotCompr",
target=write_current_shot,
args=(shot_data,),
)
compresson_thread.start()
# Shift and clear shot handles after saving
ShotManager._current_shot.profile = None
ShotManager._current_shot = None
def test():
ShotManager.init()
ShotManager.start()
from profiles import ProfileManager
dummyShotData = ShotData(
pressure=0.0,
flow=1.0,
weight=2.0,
temperature=3.0,
status="closing valve",
time=100,
state="brewing",
profile=ProfileManager.get_last_profile()["profile"]["name"],
is_extracting=True,
)
ShotManager.handleShotData(dummyShotData)
logger.info(json.dumps(ShotManager._current_shot.to_json()))
ShotManager.stop()
if __name__ == "__main__":
test()