StorageClassFactory

class lsst.daf.butler.StorageClassFactory(config=None)

Bases: object

Factory for StorageClass instances.

This class is a singleton, with each instance sharing the pool of StorageClasses. Since code can not know whether it is the first time the instance has been created, the constructor takes no arguments. To populate the factory with storage classes, a call to addFromConfig() should be made.

Parameters:
config : StorageClassConfig or str, optional

Load configuration. In a ButlerConfig` the relevant configuration is located in the storageClasses section.

Methods Summary

addFromConfig(config) Add more StorageClass definitions from a config file.
getStorageClass(storageClassName) Get a StorageClass instance associated with the supplied name.
registerStorageClass(storageClass) Store the StorageClass in the factory.

Methods Documentation

addFromConfig(config)

Add more StorageClass definitions from a config file.

Parameters:
config : StorageClassConfig, Config or str

Storage class configuration. Can contain a storageClasses key if part of a global configuration.

getStorageClass(storageClassName)

Get a StorageClass instance associated with the supplied name.

Parameters:
storageClassName : str

Name of the storage class to retrieve.

Returns:
instance : StorageClass

Instance of the correct StorageClass.

registerStorageClass(storageClass)

Store the StorageClass in the factory.

Will be indexed by StorageClass.name and will return instances of the supplied StorageClass.

Parameters:
storageClass : StorageClass

Type of the Python StorageClass to register.

Raises:
ValueError

If a storage class has already been registered with storageClassName and the previous definition differs.