ButlerAttributeManager¶
- class lsst.daf.butler.registry.interfaces.ButlerAttributeManager(*, registry_schema_version: VersionTuple | None = None)¶
- Bases: - VersionedExtension- An interface for managing butler attributes in a - Registry.- Parameters:
- registry_schema_versionVersionTupleorNone, optional
- Version of registry schema. 
 
- registry_schema_version
 - Notes - Attributes are represented in registry as a set of name-value pairs, both have string type. Any non-string data types (e.g. integers) need to be converted to/from strings on client side. Attribute names can be arbitrary strings, no particular structure is enforced by this interface. Attribute names are globally unique, to avoid potential collision clients should follow some common convention for attribute names, e.g. dot-separated components ( - config.managers.opaque).- One of the critical pieces of information that will be stored as attribute is the version of database schema which needs to be known before registry can do any operations on database. For that reasons it is likely there will be only one implementation of this interface which uses database table with a stable schema. - Methods Summary - checkCompatibility(registry_schema_version, ...)- Check that schema version defined in registry is compatible with current implementation. - checkNewSchemaVersion(schema_version)- Verify that requested schema version can be created by an extension. - clone(db)- Make an independent copy of this manager instance bound to a new - Databaseinstance.- clsNewSchemaVersion(schema_version)- Class method which returns schema version to use for newly created registry database. - Return schema version(s) supported by this extension class. - delete(name)- Delete an attribute. - empty()- Check whether attributes set is empty. - Return full name of the extension. - get(name[, default])- Retrieve value of a given attribute. - initialize(db, context[, ...])- Construct an instance of the manager. - items()- Iterate over attributes and yield their names and values. - Return schema version for newly created registry. - set(name, value, *[, force])- Set value for a given attribute. - Methods Documentation - classmethod checkCompatibility(registry_schema_version: VersionTuple, update: bool) None¶
- Check that schema version defined in registry is compatible with current implementation. - Parameters:
- registry_schema_versionVersionTuple
- Schema version that exists in registry or defined in a configuration for a registry to be created. 
- updatebool
- If True then read-write access is expected. 
 
- registry_schema_version
- Raises:
- IncompatibleVersionError
- Raised if schema version is not supported by implementation. 
 
 - Notes - Default implementation uses - VersionTuple.checkCompatibilityon the versions returned from- currentVersionsmethod. Subclasses that support different compatibility model will overwrite this method.
 - classmethod checkNewSchemaVersion(schema_version: VersionTuple) None¶
- Verify that requested schema version can be created by an extension. - Parameters:
- schema_versionVersionTuple
- Schema version that this extension is asked to create. 
 
- schema_version
 - Notes - This method may be used only occasionally when a specific schema version is given in a regisitry config file. This can be used with an extension that supports multiple schem versions to make it create new schema with a non-default version number. Default implementation compares requested version with one of the version returned from - currentVersions.
 - abstract clone(db: Database) ButlerAttributeManager¶
- Make an independent copy of this manager instance bound to a new - Databaseinstance.- Parameters:
- Returns:
- instanceButlerAttributeManager
- New manager instance with the same configuration as this instance, but bound to a new Database object. 
 
- instance
 
 - classmethod clsNewSchemaVersion(schema_version: VersionTuple | None) VersionTuple | None¶
- Class method which returns schema version to use for newly created registry database. - Parameters:
- schema_versionVersionTupleorNone
- Configured schema version or - Noneif default schema version should be created. If not- Nonethen it is guaranteed to be compatible with- currentVersions.
 
- schema_version
- Returns:
- versionVersionTupleorNone
- Schema version created by this extension. - Noneis returned if an extension does not require its version to be saved or checked.
 
- version
 - Notes - Default implementation of this method can work in simple cases. If the extension only supports single schema version than that version is returned. If the extension supports multiple schema versions and - schema_versionis not- Nonethen- schema_versionis returned. If the extension supports multiple schema versions, but- schema_versionis- Noneit calls- _newDefaultSchemaVersionmethod which needs to be reimplemented in a subsclass.
 - abstract classmethod currentVersions() list[lsst.daf.butler.registry.interfaces._versioning.VersionTuple]¶
- Return schema version(s) supported by this extension class. - Returns:
- versionlist[VersionTuple]
- Schema versions for this extension. Empty list is returned if an extension does not require its version to be saved or checked. 
 
- version
 
 - abstract empty() bool¶
- Check whether attributes set is empty. - Returns:
- emptybool
- True if there are no any attributes defined. 
 
- empty
 
 - classmethod extensionName() str¶
- Return full name of the extension. - This name should match the name defined in registry configuration. It is also stored in registry attributes. Default implementation returns full class name. - Returns:
- namestr
- Full extension name. 
 
- name
 
 - abstract get(name: str, default: str | None = None) str | None¶
- Retrieve value of a given attribute. 
 - abstract classmethod initialize(db: Database, context: StaticTablesContext, registry_schema_version: VersionTuple | None = None) ButlerAttributeManager¶
- Construct an instance of the manager. - Parameters:
- dbDatabase
- Interface to the underlying database engine and namespace. 
- contextStaticTablesContext
- Context object obtained from - Database.declareStaticTables; used to declare any tables that should always be present in a layer implemented with this manager.
- registry_schema_versionVersionTupleorNone
- Schema version of this extension as defined in registry. 
 
- db
- Returns:
- managerButlerAttributeManager
- An instance of - ButlerAttributeManager.
 
- manager
 
 - abstract items() Iterable[tuple[str, str]]¶
- Iterate over attributes and yield their names and values. 
 - newSchemaVersion() VersionTuple | None¶
- Return schema version for newly created registry. - Returns:
- versionVersionTupleorNone
- Schema version created by this extension. - Noneis returned if an extension does not require its version to be saved or checked.
 
- version
 - Notes - Extension classes that support multiple schema versions need to override - _newDefaultSchemaVersionmethod.
 - abstract set(name: str, value: str, *, force: bool = False) None¶
- Set value for a given attribute. - Parameters:
- namestr
- Attribute name, arbitrary non-empty string. 
- valuestr
- New value for an attribute, an arbitrary string. Due to deficiencies of some database engines we are not allowing empty strings to be stored in the database, and - valuecannot be an empty string.
- forcebool, optional
- Controls handling of existing attributes. With default - Falsevalue an exception is raised if attribute- namealready exists, if- Trueis passed then value of the existing attribute will be updated.
 
- name
- Raises:
- ButlerAttributeExistsError
- Raised if attribute already exists but - forceoption is false.
- ValueError
- Raised if name or value parameters are empty.