Refactor updating
This commit is contained in:
parent
3c754669c3
commit
75159e9dbd
@ -26,12 +26,13 @@ class LedScriptUpdateHandler(FileSystemEventHandler):
|
|||||||
super().__init__()
|
super().__init__()
|
||||||
self.led_script = led_script
|
self.led_script = led_script
|
||||||
self.verbose = verbose
|
self.verbose = verbose
|
||||||
|
|
||||||
def on_modified(self, event):
|
def on_modified(self, event):
|
||||||
if self.verbose:
|
|
||||||
print("File modified: ", event.src_path)
|
|
||||||
filename = os.path.basename(self.led_script.filepath)
|
filename = os.path.basename(self.led_script.filepath)
|
||||||
|
# print(event.event_type, event.src_path, os.path.basename(event.src_path), filename)
|
||||||
if os.path.basename(event.src_path) == filename:
|
if os.path.basename(event.src_path) == filename:
|
||||||
|
if self.verbose:
|
||||||
|
print("File modified: ", event.src_path)
|
||||||
try:
|
try:
|
||||||
self.led_script.update_from_file()
|
self.led_script.update_from_file()
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
@ -43,7 +44,7 @@ class LedScript:
|
|||||||
Class representing a script to control the state of a LED
|
Class representing a script to control the state of a LED
|
||||||
"""
|
"""
|
||||||
ARRAY_DTYPE = [("dt", "f8"), ("dtsum", "f8"), ("led", "i4"), ("line", "i4")]
|
ARRAY_DTYPE = [("dt", "f8"), ("dtsum", "f8"), ("led", "i4"), ("line", "i4")]
|
||||||
def __init__(self, script:np.ndarray|str|int=0, auto_update=False, on_update_callback:Callable[[], None]|None=None, verbose=False):
|
def __init__(self, script:np.ndarray|str|int=0, auto_update=False, verbose=False):
|
||||||
"""
|
"""
|
||||||
Parameters
|
Parameters
|
||||||
----------
|
----------
|
||||||
@ -81,11 +82,24 @@ class LedScript:
|
|||||||
raise ValueError("Invalid value for script: Muse be int, np.ndarray or str")
|
raise ValueError("Invalid value for script: Muse be int, np.ndarray or str")
|
||||||
self.observer = None
|
self.observer = None
|
||||||
if self.auto_update:
|
if self.auto_update:
|
||||||
self.start_updating()
|
self.start_updating()
|
||||||
self.current_dt = 0
|
self.current_dt = 0
|
||||||
assert(self.script.shape[0] > 0)
|
assert(self.script.shape[0] > 0)
|
||||||
self.on_update_callback = on_update_callback
|
self.is_updated = False
|
||||||
|
|
||||||
|
def has_updated(self) -> True:
|
||||||
|
"""
|
||||||
|
This is a workaround for when the update needs to be propagated to a QT thread for cpdctrl-gui
|
||||||
|
Returns
|
||||||
|
-------
|
||||||
|
True if the script was updated since the last call to this method
|
||||||
|
"""
|
||||||
|
if self.is_updated:
|
||||||
|
self.is_updated = False
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
self.stop_updating()
|
self.stop_updating()
|
||||||
|
|
||||||
@ -214,9 +228,9 @@ class LedScript:
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
if self.observer is not None:
|
if self.observer is not None:
|
||||||
raise ValueError("Already watching for updates")
|
raise RuntimeError("Already watching for updates")
|
||||||
if self.filepath is None:
|
if self.filepath is None:
|
||||||
raise ValueError("Can not watch for updates if the LedScript was not initialized with a file path")
|
raise RuntimeError("Can not watch for updates if the LedScript was not initialized with a file path")
|
||||||
# event_handler = LoggingEventHandler()
|
# event_handler = LoggingEventHandler()
|
||||||
event_handler = LedScriptUpdateHandler(self) #, verbose=True)
|
event_handler = LedScriptUpdateHandler(self) #, verbose=True)
|
||||||
self.observer = Observer()
|
self.observer = Observer()
|
||||||
@ -255,8 +269,8 @@ class LedScript:
|
|||||||
if idx != newidx:
|
if idx != newidx:
|
||||||
raise ValueError(f"The duration of the current step {idx+1} in line {newscript['line'][idx]} in the new script is too short TODO")
|
raise ValueError(f"The duration of the current step {idx+1} in line {newscript['line'][idx]} in the new script is too short TODO")
|
||||||
self.script = newscript
|
self.script = newscript
|
||||||
if self.on_update_callback is not None: self.on_update_callback()
|
self.is_updated = True
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def parse_script(filepath: str, ignore_errors:bool=False) -> np.ndarray|tuple[np.ndarray, list[InvalidScript]]:
|
def parse_script(filepath: str, ignore_errors:bool=False) -> np.ndarray|tuple[np.ndarray, list[InvalidScript]]:
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user