Skip to content

factory_service

django_spire.metric.visual.services.factory_service

VisualFactoryService

Bases: BaseDjangoModelService['Visual']

Source code in django_spire/contrib/constructor/constructor.py
def __init__(self, obj: Any = None):
    self._obj_type_name: str = str(next(iter(self.__class__.__annotations__.values()))).split(
        '.'
    )[-1]

    if obj is None:
        return

    self._obj_mro_type_names = [cls.__name__ for cls in obj.__class__.__mro__]

    if self._obj_type_name not in self._obj_mro_type_names:
        message = f'{self.__class__.__name__} was instantiated with obj type "{obj.__class__.__name__}" and failed as it was expecting "{self._obj_type_name}".'
        raise ConstructorError(message)

    self._obj_type: type[TypeAny] = obj.__class__

    if self._obj_type is None or self._obj_type is ...:
        message = f'{self.__class__.__name__} top class attribute must have an annotated type.'
        raise ConstructorError(message)

    self.obj: TypeAny = obj

    if ABC not in self.__class__.__bases__:
        if not self._obj_is_valid:
            message = f'{self._obj_type_name} failed to validate on {self.__class__.__name__}'
            raise ConstructorError(message)

    self.__post_init__()

obj instance-attribute

create_default_conditions

Source code in django_spire/metric/visual/services/factory_service.py
def create_default_conditions(
    self, target: Decimal = Decimal(100), tolerance: Decimal = Decimal(10)
) -> None:
    self.obj.conditions.all().delete()

    self.obj.conditions.create(
        state=VisualConditionStateChoices.GREEN,
        operator=VisualConditionOperatorChoices.GT,
        target=target,
        order=0,
    )
    self.obj.conditions.create(
        state=VisualConditionStateChoices.YELLOW,
        operator=VisualConditionOperatorChoices.BETWEEN,
        target=target,
        tolerance=tolerance,
        order=1,
    )
    self.obj.conditions.create(
        state=VisualConditionStateChoices.RED,
        operator=VisualConditionOperatorChoices.LT,
        target=target,
        order=2,
    )

VisualConditionFactoryService

Bases: BaseDjangoModelService['VisualCondition']

Source code in django_spire/contrib/constructor/constructor.py
def __init__(self, obj: Any = None):
    self._obj_type_name: str = str(next(iter(self.__class__.__annotations__.values()))).split(
        '.'
    )[-1]

    if obj is None:
        return

    self._obj_mro_type_names = [cls.__name__ for cls in obj.__class__.__mro__]

    if self._obj_type_name not in self._obj_mro_type_names:
        message = f'{self.__class__.__name__} was instantiated with obj type "{obj.__class__.__name__}" and failed as it was expecting "{self._obj_type_name}".'
        raise ConstructorError(message)

    self._obj_type: type[TypeAny] = obj.__class__

    if self._obj_type is None or self._obj_type is ...:
        message = f'{self.__class__.__name__} top class attribute must have an annotated type.'
        raise ConstructorError(message)

    self.obj: TypeAny = obj

    if ABC not in self.__class__.__bases__:
        if not self._obj_is_valid:
            message = f'{self._obj_type_name} failed to validate on {self.__class__.__name__}'
            raise ConstructorError(message)

    self.__post_init__()

obj instance-attribute