Enable validation for all Things and pick correct branch

This commit updates the branch to use Thing._class_settings instead of FEATURE_FLAGS for a safer way to implement new features.
This commit is contained in:
Richard Bowman 2026-04-22 00:28:10 +01:00 committed by Julian Stirling
parent 05f92b9b33
commit 622fa17634
11 changed files with 20 additions and 4 deletions

View file

@ -9,10 +9,6 @@ from typing import Optional, Self
import labthings_fastapi as lt
# To ensure consistency, we enable the feature flags we want here. This means
# they will be enabled in any code that imports a `Thing` from this package.
lt.FEATURE_FLAGS.validate_properties_on_set = True
class OFMThing(lt.Thing):
"""A custom LabThings Thing class for the OpenFlexure Microscope."""

View file

@ -405,6 +405,7 @@ class AutofocusThing(lt.Thing):
field of view to assess focus (autofocus and testing the success of a z-stack)
"""
_class_settings = {"validate_properties_on_set": True}
_cam: BaseCamera = lt.thing_slot()
_stage: BaseStage = lt.thing_slot()

View file

@ -38,6 +38,8 @@ class ChannelBlankError(lt.exceptions.InvocationError):
class BackgroundDetectAlgorithm(lt.Thing):
"""The base class for defining background detect algorithms."""
_class_settings = {"validate_properties_on_set": True}
display_name: str = lt.property(default="Base Detector", readonly=True)
def __init__(self, thing_server_interface: lt.ThingServerInterface) -> None:

View file

@ -172,6 +172,8 @@ class BaseCamera(OFMThing):
``__init__`` method of the subclass.
"""
_class_settings = {"validate_properties_on_set": True}
_all_background_detectors: Mapping[str, BackgroundDetectAlgorithm] = lt.thing_slot()
mjpeg_stream = lt.outputs.MJPEGStreamDescriptor()

View file

@ -119,6 +119,8 @@ class CameraStageMapper(lt.Thing):
override the ``get_xyz_position()`` and ``move_to_xyz_position()`` methods.
"""
_class_settings = {"validate_properties_on_set": True}
_cam: BaseCamera = lt.thing_slot()
_stage: BaseStage = lt.thing_slot()

View file

@ -12,6 +12,8 @@ from .stage.sangaboard import SangaboardThing
class Illumination(lt.Thing):
"""Base class for an illumination controller."""
_class_settings = {"validate_properties_on_set": True}
@lt.action
def set_led(self, led_on: bool = True) -> None:
"""Set the LED to on or off."""

View file

@ -62,6 +62,8 @@ class ScanWorkflow(Generic[SettingModelType], lt.Thing):
scan planning, acquisition routine.
"""
_class_settings = {"validate_properties_on_set": True}
display_name: str = lt.property(default="Base Workflow", readonly=True)
ui_blurb: str = lt.property(
default="If you see this message, something is wrong.", readonly=True
@ -327,6 +329,8 @@ class SmartStackCompatibleSettings(Protocol):
class SmartStackMixin:
"""A mixin for scan workflows that use smart stacking."""
_class_settings = {"validate_properties_on_set": True}
stack_images_to_save: int = lt.setting(default=1, ge=1, le=9)
"""The number of images to save in a stack.

View file

@ -119,6 +119,8 @@ class SmartScanThing(OFMThing):
past scans.
"""
_class_settings = {"validate_properties_on_set": True}
_cam: BaseCamera = lt.thing_slot()
_stage: BaseStage = lt.thing_slot()
_all_workflows: Mapping[str, ScanWorkflow] = lt.thing_slot()

View file

@ -106,6 +106,7 @@ class BaseStage(lt.Thing):
"""
_axis_names = ("x", "y", "z")
_class_settings = {"validate_properties_on_set": True}
def __init__(self, thing_server_interface: lt.ThingServerInterface) -> None:
"""Initialise the stage.

View file

@ -117,6 +117,8 @@ class ParasiticMotionError(lt.exceptions.InvocationError):
class RangeofMotionThing(lt.Thing):
"""A class used to measure the range of motion of the stage in X and Y."""
_class_settings = {"validate_properties_on_set": True}
_autofocus: AutofocusThing = lt.thing_slot()
_cam: BaseCamera = lt.thing_slot()
_csm: CameraStageMapper = lt.thing_slot()

View file

@ -46,6 +46,8 @@ class OpenFlexureSystem(lt.Thing):
of the system.
"""
_class_settings = {"validate_properties_on_set": True}
_microscope_id: Optional[str] = None
@lt.setting