From 78bad4dc02aacd56ea7f579c67ce62815ac37025 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 18 Nov 2019 13:39:13 +0100 Subject: dfatool: save preprocessing stats in cache --- lib/dfatool.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/dfatool.py b/lib/dfatool.py index bd210be..d2837ef 100644 --- a/lib/dfatool.py +++ b/lib/dfatool.py @@ -577,7 +577,9 @@ class RawData: def load_cache(self): if os.path.exists(self.cache_file): with open(self.cache_file, 'r') as f: - self.traces = json.load(f) + cache_data = json.load(f) + self.traces = cache_data['traces'] + self.preprocessing_stats = cache_data['preprocessing_stats'] self.preprocessed = True def save_cache(self): @@ -586,7 +588,11 @@ class RawData: except FileExistsError: pass with open(self.cache_file, 'w') as f: - json.dump(self.traces, f) + cache_data = { + 'traces' : self.traces, + 'preprocessing_stats' : self.preprocessing_stats + } + json.dump(cache_data, f) def _state_is_too_short(self, online, offline, state_duration, next_transition): # We cannot control when an interrupt causes a state to be left -- cgit v1.2.3