Add option to save as pkl

This commit is contained in:
CPD 2025-03-17 08:35:38 +01:00
parent c78e132dce
commit 374360150f

View File

@ -359,14 +359,33 @@ class MainWindow(QMainWindow):
""" """
if self.data_collector is None: if self.data_collector is None:
raise RuntimeError("Can not save, not data collector initialized") raise RuntimeError("Can not save, not data collector initialized")
csv = self.data_collector.to_csv() # if not loaded already, this will load the data into memory, which might take a while
# open file dialog # this should be done before the dialog
filename = self.data_collector.dirname + ".csv" self.data_collector.get_data()
file_name, _ = QFileDialog.getSaveFileName(self, "Save File", filename, "CSV Files (*.csv)") # open file dialog with previous in directory with previous file extension
if file_name: last_dir = AppConfig.MAIN_CFG.get_or("tmp_last_measurement_save_dir", "")
with open(file_name, "w") as f: ext = AppConfig.MAIN_CFG.get_or("tmp_last_measurement_save_ext", "csv")
f.write(csv) if ext not in ["csv", "pkl"]:
self.set_status(f"Saved data to {file_name}") ext = "csv"
# data_collector.dirname gets the name, not path
init_path = os.path.join(last_dir, self.data_collector.dirname + "." + ext)
file_path, _ = QFileDialog.getOpenFileName(self, "Save File", init_path, "CSV Files (*.csv);;Pickle Files (*.pkl)")
if file_path:
AppConfig.MAIN_CFG.set("tmp_last_measurement_load_dir", os.path.dirname(file_path))
if file_path.endswith(".csv"):
AppConfig.MAIN_CFG.set("tmp_last_measurement_save_ext", "csv")
csv = self.data_collector.to_csv()
with open(file_path, "w") as f:
f.write(csv)
elif file_path.endswith(".pkl"):
AppConfig.MAIN_CFG.set("tmp_last_measurement_save_ext", "pkl")
data = self.data_collector.get_data()
import pickle
with open(file_path, "wb") as f:
pickle.dump(data, f)
else:
raise ValueError(f"Unknown file extension in path: '{file_path}'")
self.set_status(f"Saved data to {file_path}")
else: else:
self.set_status(f"Aborted saving data, no file selected") self.set_status(f"Aborted saving data, no file selected")