LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+f5613e8b4f,g1470d8bcf6+190ad2ba91,g14a832a312+311607e4ab,g2079a07aa2+86d27d4dc4,g2305ad1205+a8e3196225,g295015adf3+b67ee847e5,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+a761f810f3,g487adcacf7+17c8fdbcbd,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+65b5bd823e,g5a732f18d5+53520f316c,g64a986408d+f5613e8b4f,g6c1bc301e9+51106c2951,g858d7b2824+f5613e8b4f,g8a8a8dda67+585e252eca,g99cad8db69+6729933424,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+ef4e3a5875,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e9bba80f27,gc120e1dc64+eee469a5e5,gc28159a63d+0e5473021a,gcf0d15dbbd+a761f810f3,gdaeeff99f8+f9a426f77a,ge6526c86ff+d4c1d4bfef,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf1cff7945b+f5613e8b4f,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Classes | Public Member Functions | Friends | List of all members
lsst::afw::table::io::OutputArchive Class Referencefinal

A multi-catalog archive object used to save table::io::Persistable objects. More...

#include <OutputArchive.h>

Classes

class  Impl
 

Public Member Functions

 OutputArchive ()
 Construct an empty OutputArchive containing no objects.
 
 OutputArchive (OutputArchive const &other)
 Copy-construct an OutputArchive. Saved objects are not deep-copied.
 
 OutputArchive (OutputArchive &&other)
 
OutputArchiveoperator= (OutputArchive const &other)
 Assign from another OutputArchive. Saved objects are not deep-copied.
 
OutputArchiveoperator= (OutputArchive &&other)
 
 ~OutputArchive ()
 
BaseCatalog constgetIndexCatalog () const
 Return the index catalog that specifies where objects are stored in the data catalogs.
 
BaseCatalog constgetCatalog (int n) const
 Return the nth catalog. Catalog 0 is always the index catalog.
 
std::size_t countCatalogs () const
 Return the total number of catalogs, including the index.
 
void writeFits (fits::Fits &fitsfile) const
 Write the archive to an already-open FITS object.
 
int put (std::shared_ptr< Persistable const > obj, bool permissive=false)
 Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArchive.
 
int put (Persistable const *obj, bool permissive=false)
 Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArchive.
 
int put (Persistable const &obj, bool permissive=false)
 Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArchive.
 

Friends

class OutputArchiveHandle
 

Detailed Description

A multi-catalog archive object used to save table::io::Persistable objects.

OutputArchive should generally be used directly only by objects that do not themselves inherit from Persistable, but contain many objects that do (such as Exposure). It provides an interface for adding objects to the archive (put()), transforming them into catalogs that can be retrieved directly or written to a FITS file. The first catalog is an index that indicates which rows of the subsequent catalogs correspond to each object.

See getIndexCatalog() for a more detailed description of the index.

Definition at line 34 of file OutputArchive.h.

Constructor & Destructor Documentation

◆ OutputArchive() [1/3]

lsst::afw::table::io::OutputArchive::OutputArchive ( )

Construct an empty OutputArchive containing no objects.

Definition at line 160 of file OutputArchive.cc.

160: _impl(new Impl()) {}

◆ OutputArchive() [2/3]

lsst::afw::table::io::OutputArchive::OutputArchive ( OutputArchive const & other)
default

Copy-construct an OutputArchive. Saved objects are not deep-copied.

◆ OutputArchive() [3/3]

lsst::afw::table::io::OutputArchive::OutputArchive ( OutputArchive && other)

Definition at line 164 of file OutputArchive.cc.

164: OutputArchive(other) {}
OutputArchive()
Construct an empty OutputArchive containing no objects.

◆ ~OutputArchive()

lsst::afw::table::io::OutputArchive::~OutputArchive ( )
default

Member Function Documentation

◆ countCatalogs()

std::size_t lsst::afw::table::io::OutputArchive::countCatalogs ( ) const

Return the total number of catalogs, including the index.

Definition at line 201 of file OutputArchive.cc.

201{ return _impl->_catalogs.size() + 1; }
T size(T... args)

◆ getCatalog()

BaseCatalog const & lsst::afw::table::io::OutputArchive::getCatalog ( int n) const

Return the nth catalog. Catalog 0 is always the index catalog.

Definition at line 190 of file OutputArchive.cc.

190 {
191 if (n == 0) return _impl->_index;
192 if (std::size_t(n) > _impl->_catalogs.size() || n < 0) {
193 throw LSST_EXCEPT(
194 pex::exceptions::LengthError,
195 (boost::format("Catalog number %d is out of range [0,%d]") % n % _impl->_catalogs.size())
196 .str());
197 }
198 return _impl->_catalogs[n - 1];
199}
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48

◆ getIndexCatalog()

BaseCatalog const & lsst::afw::table::io::OutputArchive::getIndexCatalog ( ) const

Return the index catalog that specifies where objects are stored in the data catalogs.

Definition at line 188 of file OutputArchive.cc.

188{ return _impl->_index; }

◆ operator=() [1/2]

OutputArchive & lsst::afw::table::io::OutputArchive::operator= ( OutputArchive && other)

Definition at line 168 of file OutputArchive.cc.

168{ return *this = other; }

◆ operator=() [2/2]

OutputArchive & lsst::afw::table::io::OutputArchive::operator= ( OutputArchive const & other)
default

Assign from another OutputArchive. Saved objects are not deep-copied.

◆ put() [1/3]

int lsst::afw::table::io::OutputArchive::put ( Persistable const & obj,
bool permissive = false )
inline

Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArchive.

If permissive is true and obj->isPersistable() is false, the object will not be saved but 0 will be returned instead of throwing an exception.

If the given pointer is null, the returned ID is always 0, which may be used to retrieve null pointers from an InputArchive.

It is expected that the shared_ptr form will usually be used, as Persistables are typically held by shared_ptr. We also provide a const reference overload for temporaries as well as a const raw pointer overload for temporaries that may be null.

If the shared_ptr form is used and the given pointer has already been saved, it will not be written again and the same ID will be returned as the first time it was saved.

Exception Safety
Provides no exception safety for the archive itself - if the object being saved (or any nested object) throws an exception, the archive may be in an inconsistent state and should not be saved. The objects being saved are never modified during persistence, even when exceptions are thrown.

Definition at line 82 of file OutputArchive.h.

82{ return put(&obj, permissive); }
int put(std::shared_ptr< Persistable const > obj, bool permissive=false)
Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArc...

◆ put() [2/3]

int lsst::afw::table::io::OutputArchive::put ( Persistable const * obj,
bool permissive = false )

Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArchive.

If permissive is true and obj->isPersistable() is false, the object will not be saved but 0 will be returned instead of throwing an exception.

If the given pointer is null, the returned ID is always 0, which may be used to retrieve null pointers from an InputArchive.

It is expected that the shared_ptr form will usually be used, as Persistables are typically held by shared_ptr. We also provide a const reference overload for temporaries as well as a const raw pointer overload for temporaries that may be null.

If the shared_ptr form is used and the given pointer has already been saved, it will not be written again and the same ID will be returned as the first time it was saved.

Exception Safety
Provides no exception safety for the archive itself - if the object being saved (or any nested object) throws an exception, the archive may be in an inconsistent state and should not be saved. The objects being saved are never modified during persistence, even when exceptions are thrown.

Definition at line 172 of file OutputArchive.cc.

172 {
173 if (!_impl.unique()) { // copy on write
174 std::shared_ptr<Impl> tmp(new Impl(*_impl));
175 _impl.swap(tmp);
176 }
177 return _impl->put(obj, _impl, permissive);
178}
int put(Persistable const *obj, std::shared_ptr< Impl > const &self, bool permissive)
T swap(T... args)
T unique(T... args)

◆ put() [3/3]

int lsst::afw::table::io::OutputArchive::put ( std::shared_ptr< Persistable const > obj,
bool permissive = false )

Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArchive.

If permissive is true and obj->isPersistable() is false, the object will not be saved but 0 will be returned instead of throwing an exception.

If the given pointer is null, the returned ID is always 0, which may be used to retrieve null pointers from an InputArchive.

It is expected that the shared_ptr form will usually be used, as Persistables are typically held by shared_ptr. We also provide a const reference overload for temporaries as well as a const raw pointer overload for temporaries that may be null.

If the shared_ptr form is used and the given pointer has already been saved, it will not be written again and the same ID will be returned as the first time it was saved.

Exception Safety
Provides no exception safety for the archive itself - if the object being saved (or any nested object) throws an exception, the archive may be in an inconsistent state and should not be saved. The objects being saved are never modified during persistence, even when exceptions are thrown.

Definition at line 180 of file OutputArchive.cc.

180 {
181 if (!_impl.unique()) { // copy on write
182 std::shared_ptr<Impl> tmp(new Impl(*_impl));
183 _impl.swap(tmp);
184 }
185 return _impl->put(std::move(obj), _impl, permissive);
186}
T move(T... args)

◆ writeFits()

void lsst::afw::table::io::OutputArchive::writeFits ( fits::Fits & fitsfile) const

Write the archive to an already-open FITS object.

Always appends new HDUs.

Parameters
[in]fitsfileOpen FITS object to write to.

Definition at line 203 of file OutputArchive.cc.

203{ _impl->writeFits(fitsfile); }

Friends And Related Symbol Documentation

◆ OutputArchiveHandle

Definition at line 36 of file OutputArchive.h.


The documentation for this class was generated from the following files: