added governor control code

This commit is contained in:
2024-12-20 17:28:35 +01:00
parent 2233a0181a
commit 2a1cfa9f72
6 changed files with 69 additions and 26 deletions
+16 -1
View File
@@ -1,12 +1,21 @@
from app_class import AppClass
from config import Config, TriggerTuple
from exceptions import MissingConfig, TriggerImportError
from governor import Governor, _governor_list
from functools import cached_property
class Trigger(AppClass):
def __init__(self, _config: Config) -> None:
super().__init__(_config)
self.active: bool = False
def __hash__(self):
return super().__hash__(hash(self.name))
@property
def trigger_state(self) -> str:
return "active" if self.active else "not active"
@property
def name(self) -> str:
@@ -24,6 +33,13 @@ class Trigger(AppClass):
raise MissingConfig(f"Trigger {self.name} hasn't been properly configured")
return _config
@cached_property
def governor(self) -> Governor:
_governor = next((gov for gov in _governor_list if self.config.governor == gov.name), None)
if _governor is None:
raise ValueError("unknown governor: %s", _governor)
return _governor
def run(self) -> None:
# this is the main function of the trigger class and has to stay active by using a while True loop
@@ -39,4 +55,3 @@ class Trigger(AppClass):
raise TriggerImportError(
"the Trigger class can't used directly, but must be inherited in a trigger specific class"
)