1 """Non-doable elements of ProcessStep/Todo chains."""
2 from __future__ import annotations
4 from sqlite3 import Row
5 from plomtask.db import DatabaseConnection, BaseModel
6 from plomtask.misc import VersionedAttribute
7 from plomtask.exceptions import NotFoundException
10 class Condition(BaseModel[int]):
11 """Non Process-dependency for ProcessSteps and Todos."""
12 table_name = 'conditions'
13 to_save = ['is_active']
15 def __init__(self, id_: int | None, is_active: bool = False) -> None:
17 self.is_active = is_active
18 self.title = VersionedAttribute(self, 'condition_titles', 'UNNAMED')
19 self.description = VersionedAttribute(self, 'condition_descriptions',
23 def from_table_row(cls, db_conn: DatabaseConnection,
24 row: Row | list[Any]) -> Condition:
25 """Build condition from row, including VersionedAttributes."""
26 condition = super().from_table_row(db_conn, row)
27 for name in ('title', 'description'):
28 table_name = f'condition_{name}s'
29 for row_ in db_conn.row_where(table_name, 'parent', row[0]):
30 getattr(condition, name).history_from_row(row_)
34 def by_id(cls, db_conn: DatabaseConnection, id_: int | None,
35 create: bool = False) -> Condition:
36 """Collect (or create) Condition and its VersionedAttributes."""
39 condition, _ = super()._by_id(db_conn, id_)
42 raise NotFoundException(f'Condition not found of id: {id_}')
43 condition = cls(id_, False)
44 condition.save(db_conn)
47 def save(self, db_conn: DatabaseConnection) -> None:
48 """Save self and its VersionedAttributes to DB and cache."""
49 self.save_core(db_conn)
50 self.title.save(db_conn)
51 self.description.save(db_conn)
54 class ConditionsRelations:
55 """Methods for handling relations to Conditions, for Todo and Process."""
57 def set_conditions(self, db_conn: DatabaseConnection, ids: list[int],
58 target: str = 'conditions') -> None:
59 """Set self.[target] to Conditions identified by ids."""
60 target_list = getattr(self, target)
61 while len(target_list) > 0:
64 target_list += [Condition.by_id(db_conn, id_)]
66 def set_enables(self, db_conn: DatabaseConnection,
67 ids: list[int]) -> None:
68 """Set self.enables to Conditions identified by ids."""
69 self.set_conditions(db_conn, ids, 'enables')
71 def set_disables(self, db_conn: DatabaseConnection,
72 ids: list[int]) -> None:
73 """Set self.disables to Conditions identified by ids."""
74 self.set_conditions(db_conn, ids, 'disables')