LSST Applications g034a557a3c+dd8dd8f11d,g0afe43252f+b86e4b8053,g11f7dcd041+017865fdd3,g1cd03abf6b+8446defddb,g1ce3e0751c+f991eae79d,g28da252d5a+ca8a1a9fb3,g2bbee38e9b+b6588ad223,g2bc492864f+b6588ad223,g2cdde0e794+8523d0dbb4,g347aa1857d+b6588ad223,g35bb328faa+b86e4b8053,g3a166c0a6a+b6588ad223,g461a3dce89+b86e4b8053,g52b1c1532d+b86e4b8053,g7f3b0d46df+ad13c1b82d,g80478fca09+f29c5d6c70,g858d7b2824+293f439f82,g8cd86fa7b1+af721d2595,g965a9036f2+293f439f82,g979bb04a14+51ed57f74c,g9ddcbc5298+f24b38b85a,gae0086650b+b86e4b8053,gbb886bcc26+b97e247655,gc28159a63d+b6588ad223,gc30aee3386+a2f0f6cab9,gcaf7e4fdec+293f439f82,gcd45df26be+293f439f82,gcdd4ae20e8+70b5def7e6,gce08ada175+da9c58a417,gcf0d15dbbd+70b5def7e6,gdaeeff99f8+006e14e809,gdbce86181e+6a170ce272,ge3d4d395c2+224150c836,ge5f7162a3a+bb2241c923,ge6cb8fbbf7+d119aed356,ge79ae78c31+b6588ad223,gf048a9a2f4+40ffced2b8,gf0baf85859+b4cca3d10f,w.2024.30
LSST Data Management Base Package
Loading...
Searching...
No Matches
configField.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# (http://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 software is dual licensed under the GNU General Public License and also
10# under a 3-clause BSD license. Recipients may choose which of these licenses
11# to use; please see the files gpl-3.0.txt and/or bsd_license.txt,
12# respectively. If you choose the GPL option then the following text applies
13# (but note that there is still no warranty even if you opt for BSD instead):
14#
15# This program is free software: you can redistribute it and/or modify
16# it under the terms of the GNU General Public License as published by
17# the Free Software Foundation, either version 3 of the License, or
18# (at your option) any later version.
19#
20# This program is distributed in the hope that it will be useful,
21# but WITHOUT ANY WARRANTY; without even the implied warranty of
22# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23# GNU General Public License for more details.
24#
25# You should have received a copy of the GNU General Public License
26# along with this program. If not, see <http://www.gnu.org/licenses/>.
27
28__all__ = ["ConfigField"]
29
30from typing import Any, overload
31
32from .callStack import getCallStack, getStackFrame
33from .comparison import compareConfigs, getComparisonName
34from .config import Config, Field, FieldTypeVar, FieldValidationError, _joinNamePath, _typeStr
35
36
37class ConfigField(Field[FieldTypeVar]):
38 """A configuration field (`~lsst.pex.config.Field` subclass) that takes a
39 `~lsst.pex.config.Config`-type as a value.
40
41 Parameters
42 ----------
43 doc : `str`
44 A description of the configuration field.
45 dtype : `lsst.pex.config.Config`-type
46 The type of the field, which must be a subclass of
47 `lsst.pex.config.Config`.
48 default : `lsst.pex.config.Config`, optional
49 If default is `None`, the field will default to a default-constructed
50 instance of ``dtype``. Additionally, to allow for fewer deep-copies,
51 assigning an instance of ``ConfigField`` to ``dtype`` itself, is
52 considered equivalent to assigning a default-constructed sub-config.
53 This means that the argument default can be ``dtype``, as well as an
54 instance of ``dtype``.
55 check : callable, optional
56 A callback function that validates the field's value, returning `True`
57 if the value is valid, and `False` otherwise.
58 deprecated : None or `str`, optional
59 A description of why this Field is deprecated, including removal date.
60 If not None, the string is appended to the docstring for this Field.
61
62 See Also
63 --------
64 ChoiceField
65 ConfigChoiceField
66 ConfigDictField
67 ConfigurableField
68 DictField
69 Field
70 ListField
71 RangeField
72 RegistryField
73
74 Notes
75 -----
76 The behavior of this type of field is much like that of the base `Field`
77 type.
78
79 Assigning to ``ConfigField`` will update all of the fields in the
80 configuration.
81 """
82
83 def __init__(self, doc, dtype=None, default=None, check=None, deprecated=None):
84 if dtype is None or not issubclass(dtype, Config):
85 raise ValueError(f"dtype={_typeStr(dtype)} is not a subclass of Config")
86 if default is None:
87 default = dtype
88 source = getStackFrame()
89 self._setup(
90 doc=doc,
91 dtype=dtype,
92 default=default,
93 check=check,
94 optional=False,
95 source=source,
96 deprecated=deprecated,
97 )
98
99 @overload
101 self, instance: None, owner: Any = None, at: Any = None, label: str = "default"
102 ) -> "ConfigField[FieldTypeVar]": ...
103
104 @overload
106 self, instance: Config, owner: Any = None, at: Any = None, label: str = "default"
107 ) -> FieldTypeVar: ...
108
109 def __get__(self, instance, owner=None, at=None, label="default"):
110 if instance is None or not isinstance(instance, Config):
111 return self
112 else:
113 value = instance._storage.get(self.namenamename, None)
114 if value is None:
115 at = getCallStack()
116 at.insert(0, self.sourcesource)
117 self.__set____set__(instance, self.defaultdefault, at=at, label="default")
118 return value
119
121 self, instance: Config, value: FieldTypeVar | None, at: Any = None, label: str = "assignment"
122 ) -> None:
123 if instance._frozen:
124 raise FieldValidationError(self, instance, "Cannot modify a frozen Config")
125 name = _joinNamePath(prefix=instance._name, name=self.namenamename)
126
127 if value != self.dtype and type(value) is not self.dtype:
128 msg = f"Value {value} is of incorrect type {_typeStr(value)}. Expected {_typeStr(self.dtype)}"
129 raise FieldValidationError(self, instance, msg)
130
131 if at is None:
132 at = getCallStack()
133
134 oldValue = instance._storage.get(self.namenamename, None)
135 if oldValue is None:
136 if value == self.dtype:
137 instance._storage[self.namenamename] = self.dtype(__name=name, __at=at, __label=label)
138 else:
139 instance._storage[self.namenamename] = self.dtype(
140 __name=name, __at=at, __label=label, **value._storage
141 )
142 else:
143 if value == self.dtype:
144 value = value()
145 oldValue.update(__at=at, __label=label, **value._storage)
146 history = instance._history.setdefault(self.namenamename, [])
147 history.append(("config value set", at, label))
148
149 def rename(self, instance):
150 r"""Rename the field in a `~lsst.pex.config.Config` (for internal use
151 only).
152
153 Parameters
154 ----------
155 instance : `lsst.pex.config.Config`
156 The config instance that contains this field.
157
158 Notes
159 -----
160 This method is invoked by the `lsst.pex.config.Config` object that
161 contains this field and should not be called directly.
162
163 Renaming is only relevant for `~lsst.pex.config.Field` instances that
164 hold subconfigs. `~lsst.pex.config.Field`\s that hold subconfigs should
165 rename each subconfig with the full field name as generated by
166 `lsst.pex.config.config._joinNamePath`.
167 """
168 value = self.__get____get____get____get____get____get__(instance)
169 value._rename(_joinNamePath(instance._name, self.namenamename))
170
171 def _collectImports(self, instance, imports):
172 value = self.__get____get____get____get____get____get__(instance)
173 value._collectImports()
174 imports |= value._imports
175
176 def save(self, outfile, instance):
177 """Save this field to a file (for internal use only).
178
179 Parameters
180 ----------
181 outfile : file-like object
182 A writeable field handle.
183 instance : `~lsst.pex.config.Config`
184 The `~lsst.pex.config.Config` instance that contains this field.
185
186 Notes
187 -----
188 This method is invoked by the `~lsst.pex.config.Config` object that
189 contains this field and should not be called directly.
190
191 The output consists of the documentation string
192 (`lsst.pex.config.Field.doc`) formatted as a Python comment. The second
193 line is formatted as an assignment: ``{fullname}={value}``.
194
195 This output can be executed with Python.
196 """
197 value = self.__get____get____get____get____get____get__(instance)
198 value._save(outfile)
199
200 def freeze(self, instance):
201 """Make this field read-only.
202
203 Parameters
204 ----------
205 instance : `lsst.pex.config.Config`
206 The config instance that contains this field.
207
208 Notes
209 -----
210 Freezing is only relevant for fields that hold subconfigs. Fields which
211 hold subconfigs should freeze each subconfig.
212
213 **Subclasses should implement this method.**
214 """
215 value = self.__get____get____get____get____get____get__(instance)
216 value.freeze()
217
218 def toDict(self, instance):
219 """Convert the field value so that it can be set as the value of an
220 item in a `dict` (for internal use only).
221
222 Parameters
223 ----------
224 instance : `~lsst.pex.config.Config`
225 The `~lsst.pex.config.Config` that contains this field.
226
227 Returns
228 -------
229 value : object
230 The field's value. See *Notes*.
231
232 Notes
233 -----
234 This method invoked by the owning `~lsst.pex.config.Config` object and
235 should not be called directly.
236
237 Simple values are passed through. Complex data structures must be
238 manipulated. For example, a `~lsst.pex.config.Field` holding a
239 subconfig should, instead of the subconfig object, return a `dict`
240 where the keys are the field names in the subconfig, and the values are
241 the field values in the subconfig.
242 """
243 value = self.__get____get____get____get____get____get__(instance)
244 return value.toDict()
245
246 def validate(self, instance):
247 """Validate the field (for internal use only).
248
249 Parameters
250 ----------
251 instance : `lsst.pex.config.Config`
252 The config instance that contains this field.
253
254 Raises
255 ------
256 lsst.pex.config.FieldValidationError
257 Raised if verification fails.
258
259 Notes
260 -----
261 This method provides basic validation:
262
263 - Ensures that the value is not `None` if the field is not optional.
264 - Ensures type correctness.
265 - Ensures that the user-provided ``check`` function is valid.
266
267 Most `~lsst.pex.config.Field` subclasses should call
268 `lsst.pex.config.Field.validate` if they re-implement
269 `~lsst.pex.config.Field.validate`.
270 """
271 value = self.__get____get____get____get____get____get__(instance)
272 value.validate()
273
274 if self.check is not None and not self.check(value):
275 msg = f"{value} is not a valid value"
276 raise FieldValidationError(self, instance, msg)
277
278 def _compare(self, instance1, instance2, shortcut, rtol, atol, output):
279 """Compare two fields for equality.
280
281 Used by `ConfigField.compare`.
282
283 Parameters
284 ----------
285 instance1 : `lsst.pex.config.Config`
286 Left-hand side config instance to compare.
287 instance2 : `lsst.pex.config.Config`
288 Right-hand side config instance to compare.
289 shortcut : `bool`
290 If `True`, this function returns as soon as an inequality if found.
291 rtol : `float`
292 Relative tolerance for floating point comparisons.
293 atol : `float`
294 Absolute tolerance for floating point comparisons.
295 output : callable
296 A callable that takes a string, used (possibly repeatedly) to
297 report inequalities.
298
299 Returns
300 -------
301 isEqual : bool
302 `True` if the fields are equal, `False` otherwise.
303
304 Notes
305 -----
306 Floating point comparisons are performed by `numpy.allclose`.
307 """
308 c1 = getattr(instance1, self.namenamename)
309 c2 = getattr(instance2, self.namenamename)
310 name = getComparisonName(
311 _joinNamePath(instance1._name, self.namenamename), _joinNamePath(instance2._name, self.namenamename)
312 )
313 return compareConfigs(name, c1, c2, shortcut=shortcut, rtol=rtol, atol=atol, output=output)
__get__(self, instance, owner=None, at=None, label="default")
Definition config.py:707
FieldTypeVar __get__(self, Config instance, Any owner=None, Any at=None, str label="default")
Definition config.py:705
Field[FieldTypeVar] __get__(self, None instance, Any owner=None, Any at=None, str label="default")
Definition config.py:700
None __set__(self, Config instance, FieldTypeVar|None value, Any at=None, str label="assignment")
Definition config.py:736
_setup(self, doc, dtype, default, check, optional, source, deprecated)
Definition config.py:480
__get__(self, instance, owner=None, at=None, label="default")
None __set__(self, Config instance, FieldTypeVar|None value, Any at=None, str label="assignment")
"ConfigField[FieldTypeVar]" __get__(self, None instance, Any owner=None, Any at=None, str label="default")
_compare(self, instance1, instance2, shortcut, rtol, atol, output)
_collectImports(self, instance, imports)
FieldTypeVar __get__(self, Config instance, Any owner=None, Any at=None, str label="default")
__init__(self, doc, dtype=None, default=None, check=None, deprecated=None)