OpaqueTableStorageManager

class lsst.daf.butler.registry.interfaces.OpaqueTableStorageManager(*, registry_schema_version: VersionTuple | None = None)

Bases: VersionedExtension

An interface that manages the opaque tables in a Registry.

OpaqueTableStorageManager primarily serves as a container and factory for OpaqueTableStorage instances, which each provide access to the records for a different (logical) opaque table.

Parameters:
registry_schema_versionVersionTuple or None, optional

Version of registry schema.

Notes

Opaque tables are primarily used by Datastore instances to manage their internal data in the same database that hold the Registry, but are not limited to this.

While an opaque table in a multi-layer Registry may in fact be the union of multiple tables in different layers, we expect this to be rare, as Registry layers will typically correspond to different leaf Datastore instances (each with their own opaque table) in a ChainedDatastore.

Methods Summary

clone(db)

Make an independent copy of this manager instance bound to a new Database instance.

get(name)

Return an object that provides access to the records associated with an opaque logical table.

initialize(db, context[, ...])

Construct an instance of the manager.

register(name, spec)

Ensure that this layer can hold records for the given opaque logical table, creating new tables as necessary.

Methods Documentation

abstract clone(db: Database) OpaqueTableStorageManager

Make an independent copy of this manager instance bound to a new Database instance.

Parameters:
dbDatabase

New Database object to use when instantiating the manager.

Returns:
instanceOpaqueTableStorageManager

New manager instance with the same configuration as this instance, but bound to a new Database object.

abstract get(name: str) OpaqueTableStorage | None

Return an object that provides access to the records associated with an opaque logical table.

Parameters:
namestr

Name of the logical table.

Returns:
recordsOpaqueTableStorage or None

The object representing the records for the given table in this layer, or None if there are no records for that table in this layer.

Notes

Opaque tables must be registered with the layer (see register) by the same client before they can safely be retrieved with get. Unlike most other manager classes, the set of opaque tables cannot be obtained from an existing data repository.

abstract classmethod initialize(db: Database, context: StaticTablesContext, registry_schema_version: VersionTuple | None = None) OpaqueTableStorageManager

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_versionVersionTuple or None

Schema version of this extension as defined in registry.

Returns:
managerOpaqueTableStorageManager

An instance of a concrete OpaqueTableStorageManager subclass.

abstract register(name: str, spec: TableSpec) OpaqueTableStorage

Ensure that this layer can hold records for the given opaque logical table, creating new tables as necessary.

Parameters:
namestr

Name of the logical table.

specTableSpec

Schema specification for the table to be created.

Returns:
recordsOpaqueTableStorage

The object representing the records for the given element in this layer.

Notes

This operation may not be invoked within a transaction context block.