pyh0n/pyhon/parameter/program.py

46 lines
1.4 KiB
Python
Raw Normal View History

2023-04-17 04:07:19 +05:30
from typing import List, TYPE_CHECKING, Dict
2023-04-16 05:13:37 +05:30
from pyhon.parameter.enum import HonParameterEnum
if TYPE_CHECKING:
from pyhon.commands import HonCommand
class HonParameterProgram(HonParameterEnum):
_FILTER = ["iot_recipe", "iot_guided"]
2023-05-06 19:37:28 +05:30
def __init__(self, key: str, command: "HonCommand", group: str) -> None:
super().__init__(key, {}, group)
2023-04-16 05:13:37 +05:30
self._command = command
2023-05-07 04:17:08 +05:30
if "PROGRAM" in command.category:
2023-05-07 04:18:42 +05:30
self._value = command.category.split(".")[-1].lower()
2023-05-07 04:17:08 +05:30
else:
2023-05-07 04:18:42 +05:30
self._value = command.category
2023-05-06 19:37:28 +05:30
self._programs: Dict[str, "HonCommand"] = command.categories
2023-04-16 05:13:37 +05:30
self._typology: str = "enum"
@property
def value(self) -> str | float:
return self._value
@value.setter
def value(self, value: str) -> None:
if value in self.values:
2023-05-06 23:30:13 +05:30
self._command.category = value
2023-04-16 05:13:37 +05:30
else:
2023-04-17 04:07:19 +05:30
raise ValueError(f"Allowed values {self.values}")
2023-04-16 05:13:37 +05:30
@property
def values(self) -> List[str]:
2023-04-17 04:07:19 +05:30
values = [v for v in self._programs if all(f not in v for f in self._FILTER)]
2023-04-16 05:13:37 +05:30
return sorted(values)
2023-04-24 01:12:44 +05:30
@property
def ids(self):
values = {
int(p.parameters["prCode"].value): n
for i, (n, p) in enumerate(self._programs.items())
if "iot_" not in n and p.parameters.get("prCode")
}
return dict(sorted(values.items()))