LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
Classes | Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Friends | List of all members
lsst::afw::table::ExposureTable Class Reference

Table class used to store exposure metadata. More...

#include <Exposure.h>

Inheritance diagram for lsst::afw::table::ExposureTable:
lsst::afw::table::BaseTable std::enable_shared_from_this< BaseTable >

Public Types

using Record = ExposureRecord
 
using ColumnView = ColumnViewT< ExposureRecord >
 
using Catalog = ExposureCatalogT< Record >
 
using ConstCatalog = ExposureCatalogT< const Record >
 

Public Member Functions

std::shared_ptr< ExposureTableclone () const
 Return a polymorphic deep copy of the table. More...
 
std::shared_ptr< ExposureRecordmakeRecord ()
 Default-construct an associated record. More...
 
std::shared_ptr< ExposureRecordcopyRecord (BaseRecord const &other)
 Deep-copy a record, requiring that it have the same schema as this table. More...
 
std::shared_ptr< ExposureRecordcopyRecord (BaseRecord const &other, SchemaMapper const &mapper)
 Deep-copy a record, requiring that it have the same schema as this table. More...
 
ExposureTableoperator= (ExposureTable const &)=delete
 
ExposureTableoperator= (ExposureTable &&)=delete
 
 ~ExposureTable () override
 
std::shared_ptr< daf::base::PropertyListgetMetadata () const
 Return the flexible metadata associated with the table. May be null. More...
 
void setMetadata (std::shared_ptr< daf::base::PropertyList > const &metadata)
 Set the flexible metadata associated with the table. May be null. More...
 
std::shared_ptr< daf::base::PropertyListpopMetadata ()
 Return the metadata and set the internal metadata to a null pointer. More...
 
Schema getSchema () const
 Return the table's schema. More...
 
void preallocate (std::size_t nRecords)
 Allocate contiguous space for new records in advance. More...
 
std::size_t getBufferSize () const
 Return the number of additional records space has been already been allocated for. More...
 
shared_from_this (T... args)
 

Static Public Member Functions

static std::shared_ptr< ExposureTablemake (Schema const &schema)
 Construct a new table. More...
 
static Schema makeMinimalSchema ()
 Return a minimal schema for Exposure tables and records. More...
 
static bool checkSchema (Schema const &other)
 Return true if the given schema is a valid ExposureTable schema. More...
 
static Key< RecordIdgetIdKey ()
 Get keys for standard fields shared by all references. More...
 
static PointKey< int > getBBoxMinKey ()
 Key for the minimum point of the bbox. More...
 
static PointKey< int > getBBoxMaxKey ()
 Key for the maximum point of the bbox. More...
 
static Box2IKey getBBoxKey ()
 Key for the full bbox. More...
 

Static Public Attributes

static int nRecordsPerBlock = 100
 Number of records in each memory block. More...
 

Protected Member Functions

 ExposureTable (Schema const &schema)
 
 ExposureTable (ExposureTable const &other)
 
 ExposureTable (ExposureTable &&other)
 
std::shared_ptr< BaseTable_clone () const override
 Clone implementation with noncovariant return types. More...
 
std::shared_ptr< BaseRecord_makeRecord () override
 Default-construct an associated record (protected implementation). More...
 
template<typename RecordT , typename ... Args>
std::shared_ptr< RecordT > constructRecord (Args &&...args)
 Helper function that must be used by all _makeRecord overrides to actually construct records. More...
 
virtual void handleAliasChange (std::string const &alias)
 

Friends

class io::FitsWriter
 
template<typename RecordT >
class ExposureCatalogT
 

Detailed Description

Table class used to store exposure metadata.

Definition at line 195 of file Exposure.h.

Member Typedef Documentation

◆ Catalog

Definition at line 199 of file Exposure.h.

◆ ColumnView

Definition at line 198 of file Exposure.h.

◆ ConstCatalog

Definition at line 200 of file Exposure.h.

◆ Record

Definition at line 197 of file Exposure.h.

Constructor & Destructor Documentation

◆ ~ExposureTable()

lsst::afw::table::ExposureTable::~ExposureTable ( )
overridedefault

◆ ExposureTable() [1/3]

lsst::afw::table::ExposureTable::ExposureTable ( Schema const &  schema)
explicitprotected

Definition at line 403 of file Exposure.cc.

403 : BaseTable(schema) {}
BaseTable(Schema const &schema)
Construct from a schema.
Definition: BaseTable.cc:152
Schema schema
Definition: Exposure.cc:63

◆ ExposureTable() [2/3]

lsst::afw::table::ExposureTable::ExposureTable ( ExposureTable const &  other)
protecteddefault

◆ ExposureTable() [3/3]

lsst::afw::table::ExposureTable::ExposureTable ( ExposureTable &&  other)
protected

Definition at line 407 of file Exposure.cc.

407 : ExposureTable(other) {}
ExposureTable(Schema const &schema)
Definition: Exposure.cc:403

Member Function Documentation

◆ _clone()

std::shared_ptr< BaseTable > lsst::afw::table::ExposureTable::_clone ( ) const
overrideprotectedvirtual

Clone implementation with noncovariant return types.

Reimplemented from lsst::afw::table::BaseTable.

Definition at line 431 of file Exposure.cc.

431  {
433 }

◆ _makeRecord()

std::shared_ptr< BaseRecord > lsst::afw::table::ExposureTable::_makeRecord ( )
overrideprotectedvirtual

Default-construct an associated record (protected implementation).

Reimplemented from lsst::afw::table::BaseTable.

Definition at line 435 of file Exposure.cc.

435  {
436  return constructRecord<ExposureRecord>();
437 }

◆ checkSchema()

static bool lsst::afw::table::ExposureTable::checkSchema ( Schema const &  other)
inlinestatic

Return true if the given schema is a valid ExposureTable schema.

This will always be true if the given schema was originally constructed using makeMinimalSchema(), and will rarely be true otherwise.

Definition at line 228 of file Exposure.h.

228 { return other.contains(getMinimalSchema().schema); }
table::Schema schema
Definition: python.h:134

◆ clone()

std::shared_ptr<ExposureTable> lsst::afw::table::ExposureTable::clone ( ) const
inline

Return a polymorphic deep copy of the table.

Derived classes should reimplement by static-casting the output of _clone to a pointer-to-derived to simulate covariant return types.

Cloning a table does not clone its associated records; the new table produced by clone() does not have any associated records.

Definition at line 247 of file Exposure.h.

247 { return std::static_pointer_cast<ExposureTable>(_clone()); }
std::shared_ptr< BaseTable > _clone() const override
Clone implementation with noncovariant return types.
Definition: Exposure.cc:431

◆ constructRecord()

template<typename RecordT , typename ... Args>
std::shared_ptr< RecordT > lsst::afw::table::BaseTable::constructRecord ( Args &&...  args)
protectedinherited

Helper function that must be used by all _makeRecord overrides to actually construct records.

Use of this function is enforced by the fact that Record::ConstructionToken can only be created by BaseTable, and is only ever constructed inside this method.

This function expects Record subclasses to have a constructor signature of the form

Record(ConstructionToken const &, detail::RecordData &&, Args && ...);

Definition at line 227 of file BaseRecord.h.

227  {
228  return std::make_shared<RecordT>(BaseRecord::ConstructionToken(0), _makeNewRecordData(),
229  std::forward<Args>(args)...);
230 }

◆ copyRecord() [1/2]

std::shared_ptr<ExposureRecord> lsst::afw::table::ExposureTable::copyRecord ( BaseRecord const &  other)
inline

Deep-copy a record, requiring that it have the same schema as this table.

Regardless of the type or associated table of the input record, the type of the output record will be the type associated with this table and the record instance will be associated with this table.

Allowing derived-class records to be constructed from base-class records could be considered a form of type-slicing, but because we already demand that all records be constructable from nothing but a table, this isn't anything new.

Derived classes should reimplement by static-casting the output of BaseTable::copyRecord to the appropriate BaseRecord subclass.

This is implemented using makeRecord and calling record.assign on the results; override those to change the behavior.

Definition at line 255 of file Exposure.h.

255  {
256  return std::static_pointer_cast<ExposureRecord>(BaseTable::copyRecord(other));
257  }
std::shared_ptr< BaseRecord > copyRecord(BaseRecord const &input)
Deep-copy a record, requiring that it have the same schema as this table.
Definition: BaseTable.cc:128

◆ copyRecord() [2/2]

std::shared_ptr<ExposureRecord> lsst::afw::table::ExposureTable::copyRecord ( BaseRecord const &  other,
SchemaMapper const &  mapper 
)
inline

Deep-copy a record, requiring that it have the same schema as this table.

Regardless of the type or associated table of the input record, the type of the output record will be the type associated with this table and the record instance will be associated with this table.

Allowing derived-class records to be constructed from base-class records could be considered a form of type-slicing, but because we already demand that all records be constructable from nothing but a table, this isn't anything new.

Derived classes should reimplement by static-casting the output of BaseTable::copyRecord to the appropriate BaseRecord subclass.

This is implemented using makeRecord and calling record.assign on the results; override those to change the behavior.

Definition at line 260 of file Exposure.h.

260  {
261  return std::static_pointer_cast<ExposureRecord>(BaseTable::copyRecord(other, mapper));
262  }
SchemaMapper * mapper
Definition: SchemaMapper.cc:71

◆ getBBoxKey()

static Box2IKey lsst::afw::table::ExposureTable::getBBoxKey ( )
inlinestatic

Key for the full bbox.

Definition at line 243 of file Exposure.h.

243 { return getMinimalSchema().bbox; }

◆ getBBoxMaxKey()

static PointKey<int> lsst::afw::table::ExposureTable::getBBoxMaxKey ( )
inlinestatic

Key for the maximum point of the bbox.

Definition at line 241 of file Exposure.h.

241 { return getMinimalSchema().bbox.getMax(); }

◆ getBBoxMinKey()

static PointKey<int> lsst::afw::table::ExposureTable::getBBoxMinKey ( )
inlinestatic

Key for the minimum point of the bbox.

Definition at line 239 of file Exposure.h.

239 { return getMinimalSchema().bbox.getMin(); }

◆ getBufferSize()

std::size_t lsst::afw::table::BaseTable::getBufferSize ( ) const
inherited

Return the number of additional records space has been already been allocated for.

Unlike std::vector::capacity, this does not factor in existing records in any way.

Definition at line 112 of file BaseTable.cc.

112  {
113  if (_manager) {
114  return Block::getBufferSize(_schema.getRecordSize(), _manager);
115  } else {
116  return 0;
117  }
118 }
std::size_t getRecordSize() const
Return the raw size of a record in bytes.
Definition: Schema.h:149

◆ getIdKey()

static Key<RecordId> lsst::afw::table::ExposureTable::getIdKey ( )
inlinestatic

Get keys for standard fields shared by all references.

These keys are used to implement getters and setters on ExposureRecord. Key for the unique ID.

Definition at line 237 of file Exposure.h.

237 { return getMinimalSchema().id; }

◆ getMetadata()

std::shared_ptr<daf::base::PropertyList> lsst::afw::table::BaseTable::getMetadata ( ) const
inlineinherited

Return the flexible metadata associated with the table. May be null.

Definition at line 79 of file BaseTable.h.

79 { return _metadata; }

◆ getSchema()

Schema lsst::afw::table::BaseTable::getSchema ( ) const
inlineinherited

Return the table's schema.

Definition at line 137 of file BaseTable.h.

137 { return _schema; }

◆ handleAliasChange()

virtual void lsst::afw::table::BaseTable::handleAliasChange ( std::string const &  alias)
inlineprotectedvirtualinherited

Reimplemented in lsst::afw::table::SourceTable.

Definition at line 208 of file BaseTable.h.

208 {}

◆ make()

std::shared_ptr< ExposureTable > lsst::afw::table::ExposureTable::make ( Schema const &  schema)
static

Construct a new table.

Parameters
[in]schemaSchema that defines the fields, offsets, and record size for the table.

Definition at line 394 of file Exposure.cc.

394  {
395  if (!checkSchema(schema)) {
396  throw LSST_EXCEPT(
398  "Schema for Exposure must contain at least the keys defined by makeMinimalSchema().");
399  }
401 }
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
static bool checkSchema(Schema const &other)
Return true if the given schema is a valid ExposureTable schema.
Definition: Exposure.h:228
Reports invalid arguments.
Definition: Runtime.h:66

◆ makeMinimalSchema()

static Schema lsst::afw::table::ExposureTable::makeMinimalSchema ( )
inlinestatic

Return a minimal schema for Exposure tables and records.

The returned schema can and generally should be modified further, but many operations on ExposureRecords will assume that at least the fields provided by this routine are present.

Definition at line 216 of file Exposure.h.

216  {
217  Schema r = getMinimalSchema().schema;
218  r.disconnectAliases();
219  return r;
220  }

◆ makeRecord()

std::shared_ptr<ExposureRecord> lsst::afw::table::ExposureTable::makeRecord ( )
inline

Default-construct an associated record.

Derived classes should reimplement by static-casting the output of _makeRecord to the appropriate BaseRecord subclass to simulate covariant return types.

Definition at line 250 of file Exposure.h.

250  {
251  return std::static_pointer_cast<ExposureRecord>(_makeRecord());
252  }
std::shared_ptr< BaseRecord > _makeRecord() override
Default-construct an associated record (protected implementation).
Definition: Exposure.cc:435

◆ operator=() [1/2]

ExposureTable& lsst::afw::table::ExposureTable::operator= ( ExposureTable &&  )
delete

◆ operator=() [2/2]

ExposureTable& lsst::afw::table::ExposureTable::operator= ( ExposureTable const &  )
delete

◆ popMetadata()

std::shared_ptr<daf::base::PropertyList> lsst::afw::table::BaseTable::popMetadata ( )
inlineinherited

Return the metadata and set the internal metadata to a null pointer.

Definition at line 85 of file BaseTable.h.

85  {
87  _metadata.swap(tmp);
88  return tmp;
89  }

◆ preallocate()

void lsst::afw::table::BaseTable::preallocate ( std::size_t  nRecords)
inherited

Allocate contiguous space for new records in advance.

If a contiguous memory block for at least n additional records has already been allocated, this is a no-op. If not, a new block will be allocated, and any remaining space on the old block will go to waste; this ensures the new records will be allocated contiguously. Note that "wasted" memory is not leaked; it will be deallocated along with any records created from that block when those records go out of scope.

Note that unlike std::vector::reserve, this does not factor in existing records in any way; nRecords refers to a number of new records to reserve space for.

Definition at line 110 of file BaseTable.cc.

110 { Block::preallocate(_schema.getRecordSize(), n, _manager); }

◆ setMetadata()

void lsst::afw::table::BaseTable::setMetadata ( std::shared_ptr< daf::base::PropertyList > const &  metadata)
inlineinherited

Set the flexible metadata associated with the table. May be null.

Definition at line 82 of file BaseTable.h.

82 { _metadata = metadata; }

Friends And Related Function Documentation

◆ ExposureCatalogT

template<typename RecordT >
friend class ExposureCatalogT
friend

Definition at line 294 of file Exposure.h.

◆ io::FitsWriter

friend class io::FitsWriter
friend

Definition at line 291 of file Exposure.h.

Member Data Documentation

◆ nRecordsPerBlock

int lsst::afw::table::BaseTable::nRecordsPerBlock = 100
staticinherited

Number of records in each memory block.

Definition at line 76 of file BaseTable.h.


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