LSST Applications 26.0.0,g0265f82a02+6660c170cc,g07994bdeae+30b05a742e,g0a0026dc87+17526d298f,g0a60f58ba1+17526d298f,g0e4bf8285c+96dd2c2ea9,g0ecae5effc+c266a536c8,g1e7d6db67d+6f7cb1f4bb,g26482f50c6+6346c0633c,g2bbee38e9b+6660c170cc,g2cc88a2952+0a4e78cd49,g3273194fdb+f6908454ef,g337abbeb29+6660c170cc,g337c41fc51+9a8f8f0815,g37c6e7c3d5+7bbafe9d37,g44018dc512+6660c170cc,g4a941329ef+4f7594a38e,g4c90b7bd52+5145c320d2,g58be5f913a+bea990ba40,g635b316a6c+8d6b3a3e56,g67924a670a+bfead8c487,g6ae5381d9b+81bc2a20b4,g93c4d6e787+26b17396bd,g98cecbdb62+ed2cb6d659,g98ffbb4407+81bc2a20b4,g9ddcbc5298+7f7571301f,ga1e77700b3+99e9273977,gae46bcf261+6660c170cc,gb2715bf1a1+17526d298f,gc86a011abf+17526d298f,gcf0d15dbbd+96dd2c2ea9,gdaeeff99f8+0d8dbea60f,gdb4ec4c597+6660c170cc,ge23793e450+96dd2c2ea9,gf041782ebf+171108ac67
LSST Data Management Base Package
Loading...
Searching...
No Matches
_configurableActionField.py
Go to the documentation of this file.
1# This file is part of pex_config.
2#
3# Developed for the LSST Data Management System.
4# This product includes software developed by the LSST Project
5# (https://www.lsst.org).
6# See the COPYRIGHT file at the top-level directory of this distribution
7# for details of code ownership.
8#
9# This program is free software: you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation, either version 3 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program. If not, see <https://www.gnu.org/licenses/>.
21from __future__ import annotations
22
23__all__ = ("ConfigurableActionField",)
24
25from typing import Any, overload
26
27from lsst.pex.config import Config, ConfigField, FieldValidationError
28from lsst.pex.config.callStack import getCallStack
29from lsst.pex.config.config import _joinNamePath, _typeStr
30
31from . import ActionTypeVar, ConfigurableAction
32
33
35 """`ConfigurableActionField` is a subclass of `~lsst.pex.config.Field` that
36 allows a single `ConfigurableAction` (or a subclass) to be assigned to it.
37 The `ConfigurableAction` is then accessed through this field for further
38 configuration.
39
40 Any configuration of this field that is done prior to having a new
41 `ConfigurableAction` assigned to it is forgotten.
42 """
43
44 # These attributes are dynamically assigned when constructing the base
45 # classes
46 name: str
47
49 self,
50 instance: Config,
51 value: ActionTypeVar | type[ActionTypeVar],
52 at: Any = None,
53 label: str = "assignment",
54 ) -> None:
55 if instance._frozen:
56 raise FieldValidationError(self, instance, "Cannot modify a frozen Config")
57 name = _joinNamePath(prefix=instance._name, name=self.namenamenamename)
58
59 if not isinstance(value, self.dtypedtypedtype) and not issubclass(value, self.dtypedtypedtype):
60 msg = f"Value {value} is of incorrect type {_typeStr(value)}. Expected {_typeStr(self.dtype)}"
61 raise FieldValidationError(self, instance, msg)
62
63 if at is None:
64 at = getCallStack()
65
66 if isinstance(value, self.dtypedtypedtype):
67 instance._storage[self.namenamenamename] = type(value)(__name=name, __at=at, __label=label, **value._storage)
68 else:
69 instance._storage[self.namenamenamename] = value(__name=name, __at=at, __label=label)
70 history = instance._history.setdefault(self.namenamenamename, [])
71 history.append(("config value set", at, label))
72
73 @overload
75 self, instance: None, owner: Any = None, at: Any = None, label: str = "default"
76 ) -> ConfigurableActionField[ActionTypeVar]:
77 ...
78
79 @overload
80 def __get__(self, instance: Config, owner: Any = None, at: Any = None, label: str = "default") -> Any:
81 ...
82
83 def __get__(self, instance, owner=None, at=None, label="default"):
84 result = super().__get__(instance, owner)
85 if instance is not None:
86 # ignore is due to typing resolved in overloads not translating to
87 # type checker not knowing this is not a Field
88 result.identity = self.namenamenamename # type: ignore
89 return result
90
91 def save(self, outfile, instance):
92 # docstring inherited from parent
93 # This is different that the parent class in that this field must
94 # serialize which config class is assigned to this field prior to
95 # serializing any assignments to that config class's fields.
97 fullname = _joinNamePath(instance._name, self.namenamenamename)
98 outfile.write(f"{fullname}={_typeStr(value)}\n")
99 super().save(outfile, instance)
100
101 def __init__(self, doc, dtype=ConfigurableAction, default=None, check=None, deprecated=None):
102 if not issubclass(dtype, ConfigurableAction):
103 raise ValueError("dtype must be a subclass of ConfigurableAction")
104 super().__init__(doc=doc, dtype=dtype, default=default, check=check, deprecated=deprecated)
table::Key< int > type
Definition Detector.cc:163
__get__(self, instance, owner=None, at=None, label="default")
Definition config.py:720
FieldTypeVar __get__(self, Config instance, Any owner=None, Any at=None, str label="default")
Definition config.py:717
Field[FieldTypeVar] __get__(self, None instance, Any owner=None, Any at=None, str label="default")
Definition config.py:711
__get__(self, instance, owner=None, at=None, label="default")
"ConfigField[FieldTypeVar]" __get__(self, None instance, Any owner=None, Any at=None, str label="default")
FieldTypeVar __get__(self, Config instance, Any owner=None, Any at=None, str label="default")
ConfigurableActionField[ActionTypeVar] __get__(self, None instance, Any owner=None, Any at=None, str label="default")
None __set__(self, Config instance, ActionTypeVar|type[ActionTypeVar] value, Any at=None, str label="assignment")
__init__(self, doc, dtype=ConfigurableAction, default=None, check=None, deprecated=None)
Any __get__(self, Config instance, Any owner=None, Any at=None, str label="default")