RegistryConfig¶
- class lsst.daf.butler.RegistryConfig(other=None, validate=True, mergeDefaults=True, searchPaths=None)¶
Bases:
ConfigSubset
Attributes Summary
Component to use from supplied config.
Return the connection string to the underlying database (
sqlalchemy.engine.url.URL
).Name of the file containing defaults for this config class.
Key used to indicate that another config should be included at this part of the hierarchy.
Keys that are required to be specified in the configuration.
Package to search for default configuration data.
Methods Summary
asArray
(name)Get a value as an array.
clear
()copy
()Read environment to determine search paths to use.
dump
([output, format])Write the config to an output stream.
dumpToUri
(uri[, updateFile, ...])Write the config to location pointed to by given URI.
fromString
(string[, format])Create a new Config instance from a serialized string.
fromYaml
(string)Create a new Config instance from a YAML string.
get
(k[,d])Returns the
Database
class targeted by configuration values.Parses the
db
key of the config and returns the database dialect.items
()keys
()makeDefaultDatabaseUri
(root)Return a default 'db' URI for the registry configured here that is appropriate for a new empty repository with the given root.
merge
(other)Merge another Config into this one.
nameTuples
([topLevelOnly])Get tuples representing the name hierarchies of all keys.
names
([topLevelOnly, delimiter])Get a delimited name of all the keys in the hierarchy.
pop
(k[,d])If key is not found, d is returned if given, otherwise KeyError is raised.
popitem
()as a 2-tuple; but raise KeyError if D is empty.
ppprint
()Return config as formatted readable string.
replaceRoot
(root)Replace any occurrences of
BUTLER_ROOT_TAG
in the connection with the given root directory.setdefault
(k[,d])toDict
()update
(other)updateParameters
(configType, config, full[, ...])Update specific config parameters.
validate
()Check that mandatory keys are present in this configuration.
values
()Attributes Documentation
- component: ClassVar[str | None] = 'registry'¶
Component to use from supplied config. Can be None. If specified the key is not required. Can be a full dot-separated path to a component.
- connectionString¶
Return the connection string to the underlying database (
sqlalchemy.engine.url.URL
).
- defaultConfigFile: ClassVar[str | None] = 'registry.yaml'¶
Name of the file containing defaults for this config class.
- includeKey: ClassVar[str] = 'includeConfigs'¶
Key used to indicate that another config should be included at this part of the hierarchy.
- requiredKeys: ClassVar[Sequence[str]] = ('db',)¶
Keys that are required to be specified in the configuration.
- resourcesPackage: str = 'lsst.daf.butler'¶
Package to search for default configuration data. The resources themselves will be within a
configs
resource hierarchy.
Methods Documentation
- asArray(name)¶
Get a value as an array.
May contain one or more elements.
- Parameters:
- name
str
Key to use to retrieve value.
- name
- Returns:
- array
collections.abc.Sequence
The value corresponding to name, but guaranteed to be returned as a list with at least one element. If the value is a
Sequence
(and not astr
) the value itself will be returned, else the value will be the first element.
- array
- clear() None. Remove all items from D. ¶
- copy()¶
- classmethod defaultSearchPaths() list[lsst.resources._resourcePath.ResourcePath | str] ¶
Read environment to determine search paths to use.
Global defaults, at lowest priority, are found in the
config
directory of the butler source tree. Additional defaults can be defined using the environment variable$DAF_BUTLER_CONFIG_PATHS
which is a PATH-like variable where paths at the front of the list have priority over those later.- Returns:
- paths
list
Returns a list of paths to search. The returned order is in priority with the highest priority paths first. The butler config configuration resources will not be included here but will always be searched last.
- paths
Notes
The environment variable is split on the standard
:
path separator. This currently makes it incompatible with usage of URIs.
- dump(output: IO | None = None, format: str = 'yaml') str | None ¶
Write the config to an output stream.
- Parameters:
- Returns:
- dumpToUri(uri: str | ParseResult | ResourcePath | Path, updateFile: bool = True, defaultFileName: str = 'butler.yaml', overwrite: bool = True) None ¶
Write the config to location pointed to by given URI.
Currently supports ‘s3’ and ‘file’ URI schemes.
- Parameters:
- uri: `lsst.resources.ResourcePathExpression`
URI of location where the Config will be written.
- updateFilebool, optional
If True and uri does not end on a filename with extension, will append
defaultFileName
to the target uri. True by default.- defaultFileNamebool, optional
The file name that will be appended to target uri if updateFile is True and uri does not end on a file with an extension.
- overwritebool, optional
If True the configuration will be written even if it already exists at that location.
- classmethod fromString(string: str, format: str = 'yaml') Config ¶
Create a new Config instance from a serialized string.
- get(k[, d]) D[k] if k in D, else d. d defaults to None. ¶
- getDatabaseClass() Type[Database] ¶
Returns the
Database
class targeted by configuration values.The appropriate class is determined by parsing the
db
key to extract the dialect, and then looking that up under theengines
key of the registry config.
- getDialect() str ¶
Parses the
db
key of the config and returns the database dialect.- Returns:
- dialect
str
Dialect found in the connection string.
- dialect
- items() a set-like object providing a view on D's items ¶
- keys() a set-like object providing a view on D's keys ¶
- makeDefaultDatabaseUri(root: str) str | None ¶
Return a default ‘db’ URI for the registry configured here that is appropriate for a new empty repository with the given root.
- Parameters:
- root
str
Filesystem path to the root of the data repository.
- root
- Returns:
- uri
str
URI usable as the ‘db’ string in a
RegistryConfig
.
- uri
- merge(other)¶
Merge another Config into this one.
Like
Config.update()
, but will add keys & values from other that DO NOT EXIST in self.Keys and values that already exist in self will NOT be overwritten.
- nameTuples(topLevelOnly: bool = False) list[tuple[str, ...]] ¶
Get tuples representing the name hierarchies of all keys.
The tuples returned from this method are guaranteed to be usable to access items in the configuration object.
- names(topLevelOnly=False, delimiter=None)¶
Get a delimited name of all the keys in the hierarchy.
The values returned from this method are guaranteed to be usable to access items in the configuration object.
- Parameters:
- topLevelOnly
bool
, optional If False, the default, a full hierarchy of names is returned. If True, only the top level are returned.
- delimiter
str
, optional Delimiter to use when forming the keys. If the delimiter is present in any of the keys, it will be escaped in the returned names. If
None
given a delimiter will be automatically provided. The delimiter can not be alphanumeric.
- topLevelOnly
- Returns:
- Raises:
- ValueError:
The supplied delimiter is alphanumeric.
Notes
This is different than the built-in method
dict.keys
, which will return only the first level keys.
- pop(k[, d]) v, remove specified key and return the corresponding value. ¶
If key is not found, d is returned if given, otherwise KeyError is raised.
- popitem() (k, v), remove and return some (key, value) pair ¶
as a 2-tuple; but raise KeyError if D is empty.
- ppprint()¶
Return config as formatted readable string.
- Returns:
- s
str
A prettyprint formatted string representing the config
- s
Examples
use:
pdb> print(myConfigObject.ppprint())
- replaceRoot(root: ResourcePathExpression | None) None ¶
Replace any occurrences of
BUTLER_ROOT_TAG
in the connection with the given root directory.- Parameters:
- root
lsst.resources.ResourcePathExpression
, orNone
String to substitute for
BUTLER_ROOT_TAG
. PassingNone
here is allowed only as a convenient way to raise an exception (ValueError
).
- root
- Raises:
- ValueError
Raised if
root
is not set but a value is required.
- setdefault(k[, d]) D.get(k,d), also set D[k]=d if k not in D ¶
- toDict()¶
Convert a
Config
to a standalone hierarchicaldict
.- Returns:
Notes
This can be useful when passing a Config to some code that expects native Python types.
- update(other)¶
Update config from other
Config
ordict
.Like
dict.update()
, but will add or modify keys in nested dicts, instead of overwriting the nested dict entirely.Examples
>>> c = Config({"a": {"b": 1}}) >>> c.update({"a": {"c": 2}}) >>> print(c) {'a': {'b': 1, 'c': 2}}
>>> foo = {"a": {"b": 1}} >>> foo.update({"a": {"c": 2}}) >>> print(foo) {'a': {'c': 2}}
- static updateParameters(configType, config, full, toUpdate=None, toCopy=None, overwrite=True, toMerge=None)¶
Update specific config parameters.
Allows for named parameters to be set to new values in bulk, and for other values to be set by copying from a reference config.
Assumes that the supplied config is compatible with
configType
and will attach the updated values to the supplied config by looking for the related component key. It is assumed thatconfig
andfull
are from the same part of the configuration hierarchy.- Parameters:
- configType
ConfigSubset
Config type to use to extract relevant items from
config
.- config
Config
A
Config
to update. Only the subset understood by the suppliedConfigSubset
will be modified. Default values will not be inserted and the content will not be validated since mandatory keys are allowed to be missing until populated later by merging.- full
Config
A complete config with all defaults expanded that can be converted to a
configType
. Read-only and will not be modified by this method. Values are read from here iftoCopy
is defined.Repository-specific options that should not be obtained from defaults when Butler instances are constructed should be copied from
full
toconfig
.- toUpdate
dict
, optional A
dict
defining the keys to update and the new value to use. The keys and values can be any supported byConfig
assignment.- toCopy
tuple
, optional tuple
of keys whose values should be copied fromfull
intoconfig
.- overwrite
bool
, optional If
False
, do not modify a value inconfig
if the key already exists. Default is always to overwrite.- toMerge
tuple
, optional Keys to merge content from full to config without overwriting pre-existing values. Only works if the key refers to a hierarchy. The
overwrite
flag is ignored.
- configType
- Raises:
- ValueError
Neither
toUpdate
,toCopy
nortoMerge
were defined.
- validate()¶
Check that mandatory keys are present in this configuration.
Ignored if
requiredKeys
is empty.
- values() an object providing a view on D's values ¶