Skip to content
Snippets Groups Projects
Commit fd3e215a authored by David Hutchcroft's avatar David Hutchcroft
Browse files

Merge branch 'hevclient_pickleFix' into 'master'

Added protection against missing data in mmap file

See merge request hev-sw/hev-sw!49
parents e1d68a1a 28561c5a
Branches
No related merge requests found
......@@ -40,6 +40,9 @@ class HEVClient(object):
self._mmFile = open(mmFileName, "x+b")
self._mmFile.write(b'0' * 10000) # ~10kb is enough I hope for one event
self._mmMap = mmap.mmap(self._mmFile.fileno(), 0) # Map to in memory object
self._mmMap.seek(0)
self._mmMap.write(pickle.dumps('Data not yet set')) # ensure no old or unset data in file
self._mmMap.flush()
# start polling in another thread unless told otherwise
if self._polling:
......@@ -168,11 +171,15 @@ class HEVClient(object):
def get_values(self) -> Dict:
# get sensor values from db
self._mmFile.seek(0)
fastdata = pickle.load(self._mmFile)
try:
fastdata = pickle.load(self._mmFile)
except pickle.UnpicklingError as e:
logging.warning(f"Unpicking error {e}")
return None
if(type(fastdata) is dict):
return fastdata
else:
logging.warning("Missing/wrong data in mmMap")
logging.warning("Missing fastdata")
return None
def get_readback(self) -> Dict:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment