28 __all__ = (
"Config",
"ConfigMeta",
"Field",
"FieldValidationError")
50 from .comparison
import getComparisonName, compareScalars, compareConfigs
51 from .callStack
import getStackFrame, getCallStack
54 YamlLoaders = (yaml.Loader, yaml.FullLoader, yaml.SafeLoader, yaml.UnsafeLoader)
58 from yaml
import CLoader
59 YamlLoaders += (CLoader,)
64 def _joinNamePath(prefix=None, name=None, index=None):
65 """Generate nested configuration names.
67 if not prefix
and not name:
68 raise ValueError(
"Invalid name: cannot be None")
72 name = prefix +
"." + name
75 return "%s[%r]" % (name, index)
80 def _autocast(x, dtype):
81 """Cast a value to a type, if appropriate.
88 Data type, such as `float`, `int`, or `str`.
93 If appropriate, the returned value is ``x`` cast to the given type
94 ``dtype``. If the cast cannot be performed the original value of
97 if dtype == float
and isinstance(x, int):
103 """Generate a fully-qualified type name.
108 Fully-qualified type name.
112 This function is used primarily for writing config files to be executed
113 later upon with the 'load' function.
115 if hasattr(x,
'__module__')
and hasattr(x,
'__name__'):
119 if (sys.version_info.major <= 2
and xtype.__module__ ==
'__builtin__')
or xtype.__module__ ==
'builtins':
120 return xtype.__name__
122 return "%s.%s" % (xtype.__module__, xtype.__name__)
126 def _yaml_config_representer(dumper, data):
127 """Represent a Config object in a form suitable for YAML.
129 Stores the serialized stream as a scalar block string.
131 stream = io.StringIO()
132 data.saveToStream(stream)
133 config_py = stream.getvalue()
137 config_py = config_py.rstrip() +
"\n"
141 config_py = re.sub(
r"\s+$",
"\n", config_py, flags=re.MULTILINE)
144 return dumper.represent_scalar(
"lsst.pex.config.Config", config_py, style=
"|")
146 def _yaml_config_constructor(loader, node):
147 """Construct a config from YAML"""
148 config_py = loader.construct_scalar(node)
149 return Config._fromPython(config_py)
153 for loader
in YamlLoaders:
154 yaml.add_constructor(
"lsst.pex.config.Config", _yaml_config_constructor, Loader=loader)
158 """A metaclass for `lsst.pex.config.Config`.
162 ``ConfigMeta`` adds a dictionary containing all `~lsst.pex.config.Field`
163 class attributes as a class attribute called ``_fields``, and adds
164 the name of each field as an instance variable of the field itself (so you
165 don't have to pass the name of the field to the field constructor).
169 type.__init__(cls, name, bases, dict_)
173 def getFields(classtype):
175 bases =
list(classtype.__bases__)
178 fields.update(getFields(b))
180 for k, v
in classtype.__dict__.items():
181 if isinstance(v, Field):
185 fields = getFields(cls)
186 for k, v
in fields.items():
187 setattr(cls, k, copy.deepcopy(v))
190 if isinstance(value, Field):
192 cls.
_fields_fields[name] = value
193 type.__setattr__(cls, name, value)
197 """Raised when a ``~lsst.pex.config.Field`` is not valid in a
198 particular ``~lsst.pex.config.Config``.
202 field : `lsst.pex.config.Field`
203 The field that was not valid.
204 config : `lsst.pex.config.Config`
205 The config containing the invalid field.
207 Text describing why the field was not valid.
212 """Type of the `~lsst.pex.config.Field` that incurred the error.
216 """Name of the `~lsst.pex.config.Field` instance that incurred the
221 lsst.pex.config.Field.name
224 self.
fullnamefullname = _joinNamePath(config._name, field.name)
225 """Fully-qualified name of the `~lsst.pex.config.Field` instance
229 self.
historyhistory = config.history.setdefault(field.name, [])
230 """Full history of all changes to the `~lsst.pex.config.Field`
235 """File and line number of the `~lsst.pex.config.Field` definition.
239 error =
"%s '%s' failed validation: %s\n"\
240 "For more information see the Field definition at:\n%s"\
241 " and the Config definition at:\n%s" % \
248 """A field in a `~lsst.pex.config.Config` that supports `int`, `float`,
249 `complex`, `bool`, and `str` data types.
254 A description of the field for users.
256 The field's data type. ``Field`` only supports basic data types:
257 `int`, `float`, `complex`, `bool`, and `str`. See
258 `Field.supportedTypes`.
259 default : object, optional
260 The field's default value.
261 check : callable, optional
262 A callable that is called with the field's value. This callable should
263 return `False` if the value is invalid. More complex inter-field
264 validation can be written as part of the
265 `lsst.pex.config.Config.validate` method.
266 optional : `bool`, optional
267 This sets whether the field is considered optional, and therefore
268 doesn't need to be set by the user. When `False`,
269 `lsst.pex.config.Config.validate` fails if the field's value is `None`.
270 deprecated : None or `str`, optional
271 A description of why this Field is deprecated, including removal date.
272 If not None, the string is appended to the docstring for this Field.
277 Raised when the ``dtype`` parameter is not one of the supported types
278 (see `Field.supportedTypes`).
294 ``Field`` instances (including those of any subclass of ``Field``) are used
295 as class attributes of `~lsst.pex.config.Config` subclasses (see the
296 example, below). ``Field`` attributes work like the `property` attributes
297 of classes that implement custom setters and getters. `Field` attributes
298 belong to the class, but operate on the instance. Formally speaking,
299 `Field` attributes are `descriptors
300 <https://docs.python.org/3/howto/descriptor.html>`_.
302 When you access a `Field` attribute on a `Config` instance, you don't
303 get the `Field` instance itself. Instead, you get the value of that field,
304 which might be a simple type (`int`, `float`, `str`, `bool`) or a custom
305 container type (like a `lsst.pex.config.List`) depending on the field's
306 type. See the example, below.
310 Instances of ``Field`` should be used as class attributes of
311 `lsst.pex.config.Config` subclasses:
313 >>> from lsst.pex.config import Config, Field
314 >>> class Example(Config):
315 ... myInt = Field("An integer field.", int, default=0)
317 >>> print(config.myInt)
320 >>> print(config.myInt)
324 supportedTypes =
set((str, bool, float, int, complex))
325 """Supported data types for field values (`set` of types).
328 def __init__(self, doc, dtype, default=None, check=None, optional=False, deprecated=None):
330 raise ValueError(
"Unsupported Field dtype %s" % _typeStr(dtype))
333 self.
_setup_setup(doc=doc, dtype=dtype, default=default, check=check, optional=optional, source=source,
334 deprecated=deprecated)
336 def _setup(self, doc, dtype, default, check, optional, source, deprecated):
337 """Set attributes, usually during initialization.
340 """Data type for the field.
344 if deprecated
is not None:
345 doc = f
"{doc} Deprecated: {deprecated}"
347 """A description of the field (`str`).
351 """If not None, a description of why this field is deprecated (`str`).
354 self.
__doc____doc__ = f
"{doc} (`{dtype.__name__}`"
355 if optional
or default
is not None:
356 self.
__doc____doc__ += f
", default ``{default!r}``"
360 """Default value for this field.
364 """A user-defined function that validates the value of the field.
368 """Flag that determines if the field is required to be set (`bool`).
370 When `False`, `lsst.pex.config.Config.validate` will fail if the
371 field's value is `None`.
375 """The stack frame where this field is defined (`list` of
376 `lsst.pex.config.callStack.StackFrame`).
380 """Rename the field in a `~lsst.pex.config.Config` (for internal use
385 instance : `lsst.pex.config.Config`
386 The config instance that contains this field.
390 This method is invoked by the `lsst.pex.config.Config` object that
391 contains this field and should not be called directly.
393 Renaming is only relevant for `~lsst.pex.config.Field` instances that
394 hold subconfigs. `~lsst.pex.config.Fields` that hold subconfigs should
395 rename each subconfig with the full field name as generated by
396 `lsst.pex.config.config._joinNamePath`.
401 """Validate the field (for internal use only).
405 instance : `lsst.pex.config.Config`
406 The config instance that contains this field.
410 lsst.pex.config.FieldValidationError
411 Raised if verification fails.
415 This method provides basic validation:
417 - Ensures that the value is not `None` if the field is not optional.
418 - Ensures type correctness.
419 - Ensures that the user-provided ``check`` function is valid.
421 Most `~lsst.pex.config.Field` subclasses should call
422 `lsst.pex.config.field.Field.validate` if they re-implement
423 `~lsst.pex.config.field.Field.validate`.
425 value = self.__get__(instance)
426 if not self.optional
and value
is None:
427 raise FieldValidationError(self, instance,
"Required value cannot be None")
430 """Make this field read-only (for internal use only).
434 instance : `lsst.pex.config.Config`
435 The config instance that contains this field.
439 Freezing is only relevant for fields that hold subconfigs. Fields which
440 hold subconfigs should freeze each subconfig.
442 **Subclasses should implement this method.**
446 def _validateValue(self, value):
452 The value being validated.
457 Raised if the value's type is incompatible with the field's
460 Raised if the value is rejected by the ``check`` method.
465 if not isinstance(value, self.dtype):
466 msg =
"Value %s is of incorrect type %s. Expected type %s" % \
467 (value, _typeStr(value), _typeStr(self.dtype))
469 if self.check
is not None and not self.check(value):
470 msg =
"Value %s is not a valid value" % str(value)
471 raise ValueError(msg)
473 def _collectImports(self, instance, imports):
474 """This function should call the _collectImports method on all config
475 objects the field may own, and union them with the supplied imports
480 instance : instance or subclass of `lsst.pex.config.Config`
481 A config object that has this field defined on it
483 Set of python modules that need imported after persistence
487 def save(self, outfile, instance):
488 """Save this field to a file (for internal use only).
492 outfile : file-like object
493 A writeable field handle.
495 The `Config` instance that contains this field.
499 This method is invoked by the `~lsst.pex.config.Config` object that
500 contains this field and should not be called directly.
502 The output consists of the documentation string
503 (`lsst.pex.config.Field.doc`) formatted as a Python comment. The second
504 line is formatted as an assignment: ``{fullname}={value}``.
506 This output can be executed with Python.
508 value = self.__get__(instance)
509 fullname = _joinNamePath(instance._name, self.name)
511 if self.deprecated
and value == self.default:
516 doc =
"# " + str(self.doc).replace(
"\n",
"\n# ")
517 if isinstance(value, float)
and not math.isfinite(value):
519 outfile.write(
u"{}\n{}=float('{!r}')\n\n".
format(doc, fullname, value))
521 outfile.write(
u"{}\n{}={!r}\n\n".
format(doc, fullname, value))
524 """Convert the field value so that it can be set as the value of an
525 item in a `dict` (for internal use only).
530 The `Config` that contains this field.
535 The field's value. See *Notes*.
539 This method invoked by the owning `~lsst.pex.config.Config` object and
540 should not be called directly.
542 Simple values are passed through. Complex data structures must be
543 manipulated. For example, a `~lsst.pex.config.Field` holding a
544 subconfig should, instead of the subconfig object, return a `dict`
545 where the keys are the field names in the subconfig, and the values are
546 the field values in the subconfig.
548 return self.
__get____get__(instance)
550 def __get__(self, instance, owner=None, at=None, label="default"):
551 """Define how attribute access should occur on the Config instance
552 This is invoked by the owning config object and should not be called
555 When the field attribute is accessed on a Config class object, it
556 returns the field object itself in order to allow inspection of
559 When the field attribute is access on a config instance, the actual
560 value described by the field (and held by the Config instance) is
563 if instance
is None or not isinstance(instance, Config):
566 return instance._storage[self.name]
568 def __set__(self, instance, value, at=None, label='assignment'):
569 """Set an attribute on the config instance.
573 instance : `lsst.pex.config.Config`
574 The config instance that contains this field.
576 Value to set on this field.
577 at : `list` of `lsst.pex.config.callStack.StackFrame`
578 The call stack (created by
579 `lsst.pex.config.callStack.getCallStack`).
580 label : `str`, optional
581 Event label for the history.
585 This method is invoked by the owning `lsst.pex.config.Config` object
586 and should not be called directly.
588 Derived `~lsst.pex.config.Field` classes may need to override the
589 behavior. When overriding ``__set__``, `~lsst.pex.config.Field` authors
590 should follow the following rules:
592 - Do not allow modification of frozen configs.
593 - Validate the new value **before** modifying the field. Except if the
594 new value is `None`. `None` is special and no attempt should be made
595 to validate it until `lsst.pex.config.Config.validate` is called.
596 - Do not modify the `~lsst.pex.config.Config` instance to contain
598 - If the field is modified, update the history of the
599 `lsst.pex.config.field.Field` to reflect the changes.
601 In order to decrease the need to implement this method in derived
602 `~lsst.pex.config.Field` types, value validation is performed in the
603 `lsst.pex.config.Field._validateValue`. If only the validation step
604 differs in the derived `~lsst.pex.config.Field`, it is simpler to
605 implement `lsst.pex.config.Field._validateValue` than to reimplement
606 ``__set__``. More complicated behavior, however, may require
612 history = instance._history.setdefault(self.name, [])
613 if value
is not None:
614 value = _autocast(value, self.
dtypedtype)
617 except BaseException
as e:
620 instance._storage[self.name] = value
623 history.append((value, at, label))
626 """Delete an attribute from a `lsst.pex.config.Config` instance.
630 instance : `lsst.pex.config.Config`
631 The config instance that contains this field.
632 at : `list` of `lsst.pex.config.callStack.StackFrame`
633 The call stack (created by
634 `lsst.pex.config.callStack.getCallStack`).
635 label : `str`, optional
636 Event label for the history.
640 This is invoked by the owning `~lsst.pex.config.Config` object and
641 should not be called directly.
645 self.
__set____set__(instance,
None, at=at, label=label)
647 def _compare(self, instance1, instance2, shortcut, rtol, atol, output):
648 """Compare a field (named `Field.name`) in two
649 `~lsst.pex.config.Config` instances for equality.
653 instance1 : `lsst.pex.config.Config`
654 Left-hand side `Config` instance to compare.
655 instance2 : `lsst.pex.config.Config`
656 Right-hand side `Config` instance to compare.
657 shortcut : `bool`, optional
659 rtol : `float`, optional
660 Relative tolerance for floating point comparisons.
661 atol : `float`, optional
662 Absolute tolerance for floating point comparisons.
663 output : callable, optional
664 A callable that takes a string, used (possibly repeatedly) to
669 This method must be overridden by more complex `Field` subclasses.
673 lsst.pex.config.compareScalars
675 v1 = getattr(instance1, self.name)
676 v2 = getattr(instance2, self.name)
678 _joinNamePath(instance1._name, self.name),
679 _joinNamePath(instance2._name, self.name)
681 return compareScalars(name, v1, v2, dtype=self.
dtypedtype, rtol=rtol, atol=atol, output=output)
685 """Importer (for `sys.meta_path`) that records which modules are being
688 *This class does not do any importing itself.*
692 Use this class as a context manager to ensure it is properly uninstalled
695 >>> with RecordingImporter() as importer:
697 ... import numpy as np
698 ... print("Imported: " + importer.getModules())
706 sys.meta_path = [self] + sys.meta_path
714 """Uninstall the importer.
719 """Called as part of the ``import`` chain of events.
726 """Get the set of modules that were imported.
730 modules : `set` of `str`
731 Set of imported module names.
737 """Base class for configuration (*config*) objects.
741 A ``Config`` object will usually have several `~lsst.pex.config.Field`
742 instances as class attributes. These are used to define most of the base
745 ``Config`` implements a mapping API that provides many `dict`-like methods,
746 such as `keys`, `values`, `items`, `iteritems`, `iterkeys`, and
747 `itervalues`. ``Config`` instances also support the ``in`` operator to
748 test if a field is in the config. Unlike a `dict`, ``Config`` classes are
749 not subscriptable. Instead, access individual fields as attributes of the
750 configuration instance.
754 Config classes are subclasses of ``Config`` that have
755 `~lsst.pex.config.Field` instances (or instances of
756 `~lsst.pex.config.Field` subclasses) as class attributes:
758 >>> from lsst.pex.config import Config, Field, ListField
759 >>> class DemoConfig(Config):
760 ... intField = Field(doc="An integer field", dtype=int, default=42)
761 ... listField = ListField(doc="List of favorite beverages.", dtype=str,
762 ... default=['coffee', 'green tea', 'water'])
764 >>> config = DemoConfig()
766 Configs support many `dict`-like APIs:
769 ['intField', 'listField']
770 >>> 'intField' in config
773 Individual fields can be accessed as attributes of the configuration:
777 >>> config.listField.append('earl grey tea')
778 >>> print(config.listField)
779 ['coffee', 'green tea', 'water', 'earl grey tea']
783 """Iterate over fields.
793 List of `lsst.pex.config.Field` names.
797 lsst.pex.config.Config.iterkeys
807 List of field values.
811 lsst.pex.config.Config.itervalues
816 """Get configurations as ``(field name, field value)`` pairs.
821 List of tuples for each configuration. Tuple items are:
828 lsst.pex.config.Config.iteritems
833 """Iterate over (field name, field value) pairs.
845 lsst.pex.config.Config.items
850 """Iterate over field values.
859 lsst.pex.config.Config.values
864 """Iterate over field names
869 A field's key (attribute name).
873 lsst.pex.config.Config.values
878 """!Return True if the specified field exists in this config
880 @param[in] name field name to test for
885 """Allocate a new `lsst.pex.config.Config` object.
887 In order to ensure that all Config object are always in a proper state
888 when handed to users or to derived `~lsst.pex.config.Config` classes,
889 some attributes are handled at allocation time rather than at
892 This ensures that even if a derived `~lsst.pex.config.Config` class
893 implements ``__init__``, its author does not need to be concerned about
894 when or even the base ``Config.__init__`` should be called.
896 name = kw.pop(
"__name",
None)
899 kw.pop(
"__label",
"default")
901 instance = object.__new__(cls)
902 instance._frozen =
False
903 instance._name = name
904 instance._storage = {}
905 instance._history = {}
906 instance._imports =
set()
908 for field
in instance._fields.values():
909 instance._history[field.name] = []
910 field.__set__(instance, field.default, at=at + [field.source], label=
"default")
912 instance.setDefaults()
914 instance.update(__at=at, **kw)
918 """Reduction for pickling (function with arguments to reproduce).
920 We need to condense and reconstitute the `~lsst.pex.config.Config`,
921 since it may contain lambdas (as the ``check`` elements) that cannot
926 stream = io.StringIO()
928 return (unreduceConfig, (self.__class__, stream.getvalue().
encode()))
931 """Subclass hook for computing defaults.
935 Derived `~lsst.pex.config.Config` classes that must compute defaults
936 rather than using the `~lsst.pex.config.Field` instances's defaults
937 should do so here. To correctly use inherited defaults,
938 implementations of ``setDefaults`` must call their base class's
944 """Update values of fields specified by the keyword arguments.
949 Keywords are configuration field names. Values are configuration
954 The ``__at`` and ``__label`` keyword arguments are special internal
955 keywords. They are used to strip out any internal steps from the
956 history tracebacks of the config. Do not modify these keywords to
957 subvert a `~lsst.pex.config.Config` instance's history.
961 This is a config with three fields:
963 >>> from lsst.pex.config import Config, Field
964 >>> class DemoConfig(Config):
965 ... fieldA = Field(doc='Field A', dtype=int, default=42)
966 ... fieldB = Field(doc='Field B', dtype=bool, default=True)
967 ... fieldC = Field(doc='Field C', dtype=str, default='Hello world')
969 >>> config = DemoConfig()
971 These are the default values of each field:
973 >>> for name, value in config.iteritems():
974 ... print(f"{name}: {value}")
978 fieldC: 'Hello world'
980 Using this method to update ``fieldA`` and ``fieldC``:
982 >>> config.update(fieldA=13, fieldC='Updated!')
984 Now the values of each field are:
986 >>> for name, value in config.iteritems():
987 ... print(f"{name}: {value}")
994 label = kw.pop(
"__label",
"update")
996 for name, value
in kw.items():
998 field = self._fields[name]
999 field.__set__(self, value, at=at, label=label)
1001 raise KeyError(
"No field of name %s exists in config type %s" % (name, _typeStr(self)))
1003 def load(self, filename, root="config"):
1004 """Modify this config in place by executing the Python code in a
1010 Name of the configuration file. A configuration file is Python
1012 root : `str`, optional
1013 Name of the variable in file that refers to the config being
1016 For example, the value of root is ``"config"`` and the file
1021 Then this config's field ``myField`` is set to ``5``.
1023 **Deprecated:** For backwards compatibility, older config files
1024 that use ``root="root"`` instead of ``root="config"`` will be
1025 loaded with a warning printed to `sys.stderr`. This feature will be
1026 removed at some point.
1030 lsst.pex.config.Config.loadFromStream
1031 lsst.pex.config.Config.save
1032 lsst.pex.config.Config.saveFromStream
1034 with open(filename,
"r")
as f:
1035 code = compile(f.read(), filename=filename, mode=
"exec")
1036 self.
loadFromStreamloadFromStream(stream=code, root=root, filename=filename)
1039 """Modify this Config in place by executing the Python code in the
1044 stream : file-like object, `str`, or compiled string
1045 Stream containing configuration override code.
1046 root : `str`, optional
1047 Name of the variable in file that refers to the config being
1050 For example, the value of root is ``"config"`` and the file
1055 Then this config's field ``myField`` is set to ``5``.
1057 **Deprecated:** For backwards compatibility, older config files
1058 that use ``root="root"`` instead of ``root="config"`` will be
1059 loaded with a warning printed to `sys.stderr`. This feature will be
1060 removed at some point.
1061 filename : `str`, optional
1062 Name of the configuration file, or `None` if unknown or contained
1063 in the stream. Used for error reporting.
1067 lsst.pex.config.Config.load
1068 lsst.pex.config.Config.save
1069 lsst.pex.config.Config.saveFromStream
1072 globals = {
"__file__": filename}
1074 local = {root: self}
1075 exec(stream, globals, local)
1076 except NameError
as e:
1077 if root ==
"config" and "root" in e.args[0]:
1078 if filename
is None:
1082 filename = getattr(stream,
"co_filename",
None)
1083 if filename
is None:
1084 filename = getattr(stream,
"name",
"?")
1085 print(f
"Config override file {filename!r}"
1086 " appears to use 'root' instead of 'config'; trying with 'root'", file=sys.stderr)
1087 local = {
"root": self}
1088 exec(stream, globals, local)
1092 self._imports.
update(importer.getModules())
1094 def save(self, filename, root="config"):
1095 """Save a Python script to the named file, which, when loaded,
1096 reproduces this config.
1101 Desination filename of this configuration.
1102 root : `str`, optional
1103 Name to use for the root config variable. The same value must be
1104 used when loading (see `lsst.pex.config.Config.load`).
1108 lsst.pex.config.Config.saveToStream
1109 lsst.pex.config.Config.load
1110 lsst.pex.config.Config.loadFromStream
1112 d = os.path.dirname(filename)
1113 with tempfile.NamedTemporaryFile(mode=
"w", delete=
False, dir=d)
as outfile:
1118 umask = os.umask(0o077)
1120 os.chmod(outfile.name, (~umask & 0o666))
1124 shutil.move(outfile.name, filename)
1127 """Save a configuration file to a stream, which, when loaded,
1128 reproduces this config.
1132 outfile : file-like object
1133 Destination file object write the config into. Accepts strings not
1136 Name to use for the root config variable. The same value must be
1137 used when loading (see `lsst.pex.config.Config.load`).
1138 skipImports : `bool`, optional
1139 If `True` then do not include ``import`` statements in output,
1140 this is to support human-oriented output from ``pipetask`` where
1141 additional clutter is not useful.
1145 lsst.pex.config.Config.save
1146 lsst.pex.config.Config.load
1147 lsst.pex.config.Config.loadFromStream
1149 tmp = self.
_name_name
1155 self._imports.remove(self.__module__)
1156 configType =
type(self)
1157 typeString = _typeStr(configType)
1158 outfile.write(f
"import {configType.__module__}\n")
1159 outfile.write(f
"assert type({root})=={typeString}, 'config is of type %s.%s instead of "
1160 f
"{typeString}' % (type({root}).__module__, type({root}).__name__)\n")
1161 for imp
in self._imports:
1162 if imp
in sys.modules
and sys.modules[imp]
is not None:
1163 outfile.write(
u"import {}\n".
format(imp))
1164 self.
_save_save(outfile)
1169 """Make this config, and all subconfigs, read-only.
1175 def _save(self, outfile):
1176 """Save this config to an open stream object.
1180 outfile : file-like object
1181 Destination file object write the config into. Accepts strings not
1185 field.save(outfile, self)
1187 def _collectImports(self):
1188 """Adds module containing self to the list of things to import and
1189 then loops over all the fields in the config calling a corresponding
1190 collect method. The field method will call _collectImports on any
1191 configs it may own and return the set of things to import. This
1192 returned set will be merged with the set of imports for this config
1195 self._imports.add(self.__module__)
1197 field._collectImports(self, self._imports)
1200 """Make a dictionary of field names and their values.
1205 Dictionary with keys that are `~lsst.pex.config.Field` names.
1206 Values are `~lsst.pex.config.Field` values.
1210 lsst.pex.config.Field.toDict
1214 This method uses the `~lsst.pex.config.Field.toDict` method of
1215 individual fields. Subclasses of `~lsst.pex.config.Field` may need to
1216 implement a ``toDict`` method for *this* method to work.
1220 dict_[name] = field.toDict(self)
1224 """Get all the field names in the config, recursively.
1228 names : `list` of `str`
1235 with io.StringIO()
as strFd:
1237 contents = strFd.getvalue()
1243 for line
in contents.split(
"\n"):
1244 if re.search(
r"^((assert|import)\s+|\s*$|#)", line):
1247 mat = re.search(
r"^(?:config\.)?([^=]+)\s*=\s*.*", line)
1249 keys.append(mat.group(1))
1253 def _rename(self, name):
1254 """Rename this config object in its parent `~lsst.pex.config.Config`.
1259 New name for this config in its parent `~lsst.pex.config.Config`.
1263 This method uses the `~lsst.pex.config.Field.rename` method of
1264 individual `lsst.pex.config.Field` instances.
1265 `lsst.pex.config.Field` subclasses may need to implement a ``rename``
1266 method for *this* method to work.
1270 lsst.pex.config.Field.rename
1272 self.
_name_name = name
1277 """Validate the Config, raising an exception if invalid.
1281 lsst.pex.config.FieldValidationError
1282 Raised if verification fails.
1286 The base class implementation performs type checks on all fields by
1287 calling their `~lsst.pex.config.Field.validate` methods.
1289 Complex single-field validation can be defined by deriving new Field
1290 types. For convenience, some derived `lsst.pex.config.Field`-types
1291 (`~lsst.pex.config.ConfigField` and
1292 `~lsst.pex.config.ConfigChoiceField`) are defined in `lsst.pex.config`
1293 that handle recursing into subconfigs.
1295 Inter-field relationships should only be checked in derived
1296 `~lsst.pex.config.Config` classes after calling this method, and base
1297 validation is complete.
1300 field.validate(self)
1303 """Format a configuration field's history to a human-readable format.
1308 Name of a `~lsst.pex.config.Field` in this config.
1310 Keyword arguments passed to `lsst.pex.config.history.format`.
1315 A string containing the formatted history.
1319 lsst.pex.config.history.format
1322 return pexHist.format(self, name, **kwargs)
1324 history = property(
lambda x: x._history)
1325 """Read-only history.
1329 """Set an attribute (such as a field's value).
1333 Unlike normal Python objects, `~lsst.pex.config.Config` objects are
1334 locked such that no additional attributes nor properties may be added
1335 to them dynamically.
1337 Although this is not the standard Python behavior, it helps to protect
1338 users from accidentally mispelling a field name, or trying to set a
1341 if attr
in self.
_fields_fields:
1342 if self.
_fields_fields[attr].deprecated
is not None:
1343 fullname = _joinNamePath(self.
_name_name, self.
_fields_fields[attr].name)
1344 warnings.warn(f
"Config field {fullname} is deprecated: {self._fields[attr].deprecated}",
1345 FutureWarning, stacklevel=2)
1349 self.
_fields_fields[attr].__set__(self, value, at=at, label=label)
1350 elif hasattr(getattr(self.__class__, attr,
None),
'__set__'):
1352 return object.__setattr__(self, attr, value)
1353 elif attr
in self.__dict__
or attr
in (
"_name",
"_history",
"_storage",
"_frozen",
"_imports"):
1355 self.__dict__[attr] = value
1358 raise AttributeError(
"%s has no attribute %s" % (_typeStr(self), attr))
1361 if attr
in self.
_fields_fields:
1364 self.
_fields_fields[attr].__delete__(self, at=at, label=label)
1366 object.__delattr__(self, attr)
1370 for name
in self.
_fields_fields:
1371 thisValue = getattr(self, name)
1372 otherValue = getattr(other, name)
1373 if isinstance(thisValue, float)
and math.isnan(thisValue):
1374 if not math.isnan(otherValue):
1376 elif thisValue != otherValue:
1382 return not self.
__eq____eq__(other)
1385 return str(self.
toDicttoDict())
1390 ", ".join(
"%s=%r" % (k, v)
for k, v
in self.
toDicttoDict().
items()
if v
is not None)
1393 def compare(self, other, shortcut=True, rtol=1E-8, atol=1E-8, output=None):
1394 """Compare this configuration to another `~lsst.pex.config.Config` for
1399 other : `lsst.pex.config.Config`
1400 Other `~lsst.pex.config.Config` object to compare against this
1402 shortcut : `bool`, optional
1403 If `True`, return as soon as an inequality is found. Default is
1405 rtol : `float`, optional
1406 Relative tolerance for floating point comparisons.
1407 atol : `float`, optional
1408 Absolute tolerance for floating point comparisons.
1409 output : callable, optional
1410 A callable that takes a string, used (possibly repeatedly) to
1411 report inequalities.
1416 `True` when the two `lsst.pex.config.Config` instances are equal.
1417 `False` if there is an inequality.
1421 lsst.pex.config.compareConfigs
1425 Unselected targets of `~lsst.pex.config.RegistryField` fields and
1426 unselected choices of `~lsst.pex.config.ConfigChoiceField` fields
1427 are not considered by this method.
1429 Floating point comparisons are performed by `numpy.allclose`.
1431 name1 = self.
_name_name
if self.
_name_name
is not None else "config"
1432 name2 = other._name
if other._name
is not None else "config"
1435 rtol=rtol, atol=atol, output=output)
1439 """Run initialization for every subclass.
1441 Specifically registers the subclass with a YAML representer
1442 and YAML constructor (if pyyaml is available)
1449 yaml.add_representer(cls, _yaml_config_representer)
1452 def _fromPython(cls, config_py):
1453 """Instantiate a `Config`-subclass from serialized Python form.
1458 A serialized form of the Config as created by
1459 `Config.saveToStream`.
1464 Reconstructed `Config` instant.
1466 cls = _classFromPython(config_py)
1470 def _classFromPython(config_py):
1471 """Return the Config subclass required by this Config serialization.
1476 A serialized form of the Config as created by
1477 `Config.saveToStream`.
1482 The `Config` subclass associated with this config.
1491 matches = re.search(
r"^import ([\w.]+)\nassert .*==(.*?),", config_py)
1494 first_line, second_line, _ = config_py.split(
"\n", 2)
1495 raise ValueError(
"First two lines did not match expected form. Got:\n"
1496 f
" - {first_line}\n"
1497 f
" - {second_line}")
1499 module_name = matches.group(1)
1500 module = importlib.import_module(module_name)
1503 full_name = matches.group(2)
1506 if not full_name.startswith(module_name):
1507 raise ValueError(f
"Module name ({module_name}) inconsistent with full name ({full_name})")
1512 remainder = full_name[len(module_name)+1:]
1513 components = remainder.split(
".")
1515 for component
in components:
1516 pytype = getattr(pytype, component)
1521 """Create a `~lsst.pex.config.Config` from a stream.
1525 cls : `lsst.pex.config.Config`-type
1526 A `lsst.pex.config.Config` type (not an instance) that is instantiated
1527 with configurations in the ``stream``.
1528 stream : file-like object, `str`, or compiled string
1529 Stream containing configuration override code.
1533 config : `lsst.pex.config.Config`
1538 lsst.pex.config.Config.loadFromStream
1541 config.loadFromStream(stream)
def compare(self, other, shortcut=True, rtol=1E-8, atol=1E-8, output=None)
def __init_subclass__(cls, **kwargs)
def __delattr__(self, attr, at=None, label="deletion")
def __new__(cls, *args, **kw)
def loadFromStream(self, stream, root="config", filename=None)
def saveToStream(self, outfile, root="config", skipImports=False)
def __contains__(self, name)
Return True if the specified field exists in this config.
def load(self, filename, root="config")
def __setattr__(self, attr, value, at=None, label="assignment")
def formatHistory(self, name, **kwargs)
def _collectImports(self)
def save(self, filename, root="config")
def __delete__(self, instance, at=None, label='deletion')
def _validateValue(self, value)
def rename(self, instance)
def __get__(self, instance, owner=None, at=None, label="default")
def freeze(self, instance)
def __set__(self, instance, value, at=None, label='assignment')
def validate(self, instance)
def save(self, outfile, instance)
def __init__(self, doc, dtype, default=None, check=None, optional=False, deprecated=None)
def _setup(self, doc, dtype, default, check, optional, source, deprecated)
def toDict(self, instance)
def __init__(self, field, config, msg)
def __exit__(self, *args)
def find_module(self, fullname, path=None)
daf::base::PropertyList * list
daf::base::PropertySet * set
def getStackFrame(relative=0)
def compareConfigs(name, c1, c2, shortcut=True, rtol=1E-8, atol=1E-8, output=None)
def compareScalars(name, v1, v2, output, rtol=1E-8, atol=1E-8, dtype=None)
def getComparisonName(name1, name2)
def unreduceConfig(cls, stream)
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
pybind11::bytes encode(Region const &self)
Encode a Region as a pybind11 bytes object.