LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
Loading...
Searching...
No Matches
_configurableActionField.py
Go to the documentation of this file.
1# This file is part of pipe_tasks.
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 ConfigField, FieldValidationError, Config
28from lsst.pex.config.config import _typeStr, _joinNamePath
29from lsst.pex.config.callStack import getCallStack
30
31from . import ConfigurableAction, ActionTypeVar
32
33
35 """`ConfigurableActionField` is a subclass of `~lsst.pex.config.Field` that
36 allows a single `ConfigurableAction` (or a subclass of thus) to be
37 assigned to it. The `ConfigurableAction` is then accessed through this
38 field for further configuration.
39
40 Any configuration that is done prior to reasignment to a new
41 `ConfigurableAction` is forgotten.
42 """
43 # These attributes are dynamically assigned when constructing the base
44 # classes
45 name: str
46
48 self,
49 instance: Config,
50 value: ActionTypeVar | type[ActionTypeVar],
51 at: Any = None,
52 label: str = "assignment"
53 ) -> None:
54 if instance._frozen:
55 raise FieldValidationError(self, instance,
56 "Cannot modify a frozen Config")
57 name = _joinNamePath(prefix=instance._name, name=self.name)
58
59 if not isinstance(value, self.dtype) and not issubclass(value, self.dtype):
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.dtype):
67 instance._storage[self.name] = type(value)(__name=name, __at=at,
68 __label=label, **value._storage)
69 else:
70 instance._storage[self.name] = value(__name=name, __at=at, __label=label)
71 history = instance._history.setdefault(self.name, [])
72 history.append(("config value set", at, label))
73
74 @overload
76 self, instance: None, owner: Any = None, at: Any = None, label: str = "default"
77 ) -> "ConfigurableActionField[ActionTypeVar]":
78 ...
79
80 @overload
82 self, instance: "Config", owner: Any = None, at: Any = None, label: str = "default"
83 ) -> Any:
84 ...
85
86 def __get__(self, instance, owner=None, at=None, label="default"):
87 result = super().__get__(instance, owner)
88 if instance is not None:
89 # ignore is due to typing resolved in overloads not translating to
90 # type checker not knowing this is not a Field
91 result.identity = self.name # type: ignore
92 return result
93
94 def save(self, outfile, instance):
95 # docstring inherited from parent
96 # This is different that the parent class in that this field must
97 # serialize which config class is assigned to this field prior to
98 # serializing any assignments to that config class's fields.
100 fullname = _joinNamePath(instance._name, self.name)
101 outfile.write(f"{fullname}={_typeStr(value)}\n")
102 super().save(outfile, instance)
103
104 def __init__(self, doc, dtype=ConfigurableAction, default=None, check=None, deprecated=None):
105 if not issubclass(dtype, ConfigurableAction):
106 raise ValueError("dtype must be a subclass of ConfigurableAction")
107 super().__init__(doc=doc, dtype=dtype, default=default, check=check, deprecated=deprecated)
table::Key< int > type
Definition: Detector.cc:163
"Field[FieldTypeVar]" __get__(self, None instance, Any owner=None, Any at=None, str label="default")
Definition: config.py:713
def __get__(self, instance, owner=None, at=None, label="default")
Definition: config.py:722
FieldTypeVar __get__(self, "Config" instance, Any owner=None, Any at=None, str label="default")
Definition: config.py:719
"ConfigField[FieldTypeVar]" __get__(self, None instance, Any owner=None, Any at=None, str label="default")
Definition: configField.py:102
FieldTypeVar __get__(self, Config instance, Any owner=None, Any at=None, str label="default")
Definition: configField.py:108
def __get__(self, instance, owner=None, at=None, label="default")
Definition: configField.py:111
"ConfigurableActionField[ActionTypeVar]" __get__(self, None instance, Any owner=None, Any at=None, str label="default")
Any __get__(self, "Config" instance, Any owner=None, Any at=None, str label="default")
def __init__(self, doc, dtype=ConfigurableAction, default=None, check=None, deprecated=None)
None __set__(self, Config instance, ActionTypeVar|type[ActionTypeVar] value, Any at=None, str label="assignment")