LSST Applications g02d81e74bb+86cf3d8bc9,g180d380827+7a4e862ed4,g2079a07aa2+86d27d4dc4,g2305ad1205+e1ca1c66fa,g29320951ab+012e1474a1,g295015adf3+341ea1ce94,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+c429d67c83,g48712c4677+f88676dd22,g487adcacf7+27e1e21933,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+b41db86c35,g5a732f18d5+53520f316c,g64a986408d+86cf3d8bc9,g858d7b2824+86cf3d8bc9,g8a8a8dda67+585e252eca,g99cad8db69+84912a7fdc,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+a2b54eae19,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+6681f309db,gc120e1dc64+f0fcc2f6d8,gc28159a63d+0e5473021a,gcf0d15dbbd+c429d67c83,gdaeeff99f8+f9a426f77a,ge6526c86ff+0433e6603d,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+86cf3d8bc9,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Static Protected Member Functions | Friends | List of all members
lsst::afw::table::Key< T > Class Template Reference

A class used as a handle to a particular field in a table. More...

#include <Key.h>

Inheritance diagram for lsst::afw::table::Key< T >:
lsst::afw::table::KeyBase< T > lsst::afw::table::FieldBase< T >

Public Types

using Value = T
 the type returned by BaseRecord::get
 
using Reference = T &
 the type returned by BaseRecord::operator[] (non-const)
 
using ConstReference = const T &
 the type returned by BaseRecord::operator[] (const)
 
using Element = T
 the type of subfields (the same as the type itself for scalars)
 

Public Member Functions

template<typename OtherT >
bool operator== (Key< OtherT > const &other) const noexcept
 Equality comparison.
 
template<typename OtherT >
bool operator!= (Key< OtherT > const &other) const noexcept
 
bool operator== (Key const &other) const noexcept
 
bool operator!= (Key const &other) const noexcept
 
std::size_t hash_value () const noexcept
 Return a hash of this object.
 
std::size_t getOffset () const noexcept
 Return the offset (in bytes) of this field within a record.
 
bool isValid () const noexcept
 Return true if the key was initialized to valid offset.
 
 Key () noexcept
 Default construct a field.
 
 Key (Key const &) noexcept=default
 
 Key (Key &&) noexcept=default
 
Keyoperator= (Key const &) noexcept=default
 
Keyoperator= (Key &&) noexcept=default
 
 ~Key () noexcept=default
 
std::size_t getElementCount () const noexcept
 Return the number of subfield elements (always one for scalars).
 

Static Public Member Functions

static std::string getTypeString ()
 Return a string description of the field type.
 

Static Public Attributes

static bool const HAS_NAMED_SUBFIELDS = false
 

Protected Member Functions

void stream (std::ostream &os) const
 Defines how Fields are printed.
 
Reference getReference (Element *p, ndarray::Manager::Ptr const &) const
 Used to implement BaseRecord::operator[] (non-const).
 
ConstReference getConstReference (Element const *p, ndarray::Manager::Ptr const &) const
 Used to implement BaseRecord::operator[] (const).
 
Value getValue (Element const *p, ndarray::Manager::Ptr const &) const
 Used to implement BaseRecord::get.
 
void setValue (Element *p, ndarray::Manager::Ptr const &, Value v) const
 Used to implement BaseRecord::set.
 

Static Protected Member Functions

static FieldBase makeDefault () noexcept
 Needed to allow Keys to be default-constructed.
 

Friends

class detail::Access
 
class BaseRecord
 
std::ostreamoperator<< (std::ostream &os, Key< T > const &key)
 Stringification.
 

Detailed Description

template<typename T>
class lsst::afw::table::Key< T >

A class used as a handle to a particular field in a table.

All access to table data ultimately goes through Key objects, which know (via an internal offset) how to address and cast the internal data buffer of a record or table.

Keys can be obtained from a Schema by name:

schema.find("myfield").key

and are also returned when a new field is added. Compound and array keys also provide accessors to retrieve scalar keys to their elements (see the documentation for the KeyBase specializations), even though these element keys do not correspond to a field that exists in any Schema. For example:

Schema schema;
Key< Array<float> > arrayKey = schema.addField< Array<float> >("array", "docs for array", 5);
Key< Point<int> > pointKey = schema.addField< Point<int> >("point", "docs for point");
Key<float> elementKey = arrayKey[3];
Key<int> xKey = pointKey.getX();
std::shared_ptr<BaseTable> table = BaseTable::make(schema);
std::shared_ptr<BaseRecord> record = table.makeRecord();
assert(&record[arrayKey][3] == &record[elementKey3]);
assert(record.get(pointKey).getX() == record[xKey]);

Key inherits from FieldBase to allow a key for a dynamically-sized field to know its size without needing to specialize Key itself or hold a full Field object.

Definition at line 53 of file Key.h.

Member Typedef Documentation

◆ ConstReference

template<typename T >
using lsst::afw::table::FieldBase< T >::ConstReference = const T &
inherited

the type returned by BaseRecord::operator[] (const)

Definition at line 44 of file FieldBase.h.

◆ Element

template<typename T >
using lsst::afw::table::FieldBase< T >::Element = T
inherited

the type of subfields (the same as the type itself for scalars)

Definition at line 45 of file FieldBase.h.

◆ Reference

template<typename T >
using lsst::afw::table::FieldBase< T >::Reference = T &
inherited

the type returned by BaseRecord::operator[] (non-const)

Definition at line 43 of file FieldBase.h.

◆ Value

template<typename T >
using lsst::afw::table::FieldBase< T >::Value = T
inherited

the type returned by BaseRecord::get

Definition at line 42 of file FieldBase.h.

Constructor & Destructor Documentation

◆ Key() [1/3]

template<typename T >
lsst::afw::table::Key< T >::Key ( )
inlinenoexcept

Default construct a field.

The new field will be invalid until a valid Key is assigned to it.

Definition at line 104 of file Key.h.

104: FieldBase<T>(FieldBase<T>::makeDefault()), _offset(0), _valid(false) {}
static FieldBase makeDefault() noexcept
Needed to allow Keys to be default-constructed.
Definition FieldBase.h:69

◆ Key() [2/3]

template<typename T >
lsst::afw::table::Key< T >::Key ( Key< T > const & )
defaultnoexcept

◆ Key() [3/3]

template<typename T >
lsst::afw::table::Key< T >::Key ( Key< T > && )
defaultnoexcept

◆ ~Key()

template<typename T >
lsst::afw::table::Key< T >::~Key ( )
defaultnoexcept

Member Function Documentation

◆ getConstReference()

template<typename T >
ConstReference lsst::afw::table::FieldBase< T >::getConstReference ( Element const * p,
ndarray::Manager::Ptr const &  ) const
inlineprotectedinherited

Used to implement BaseRecord::operator[] (const).

Definition at line 78 of file FieldBase.h.

78{ return *p; }

◆ getElementCount()

template<typename T >
std::size_t lsst::afw::table::FieldBase< T >::getElementCount ( ) const
inlinenoexceptinherited

Return the number of subfield elements (always one for scalars).

Definition at line 48 of file FieldBase.h.

48{ return 1; }

◆ getOffset()

template<typename T >
std::size_t lsst::afw::table::Key< T >::getOffset ( ) const
inlinenoexcept

Return the offset (in bytes) of this field within a record.

Definition at line 87 of file Key.h.

87{ return _offset; }

◆ getReference()

template<typename T >
Reference lsst::afw::table::FieldBase< T >::getReference ( Element * p,
ndarray::Manager::Ptr const &  ) const
inlineprotectedinherited

Used to implement BaseRecord::operator[] (non-const).

Definition at line 75 of file FieldBase.h.

75{ return *p; }

◆ getTypeString()

template<typename T >
std::string lsst::afw::table::FieldBase< T >::getTypeString ( )
staticinherited

Return a string description of the field type.

Definition at line 56 of file FieldBase.cc.

56 {
57 return TypeTraits<T>::getName();
58}

◆ getValue()

template<typename T >
Value lsst::afw::table::FieldBase< T >::getValue ( Element const * p,
ndarray::Manager::Ptr const &  ) const
inlineprotectedinherited

Used to implement BaseRecord::get.

Definition at line 81 of file FieldBase.h.

81{ return *p; }

◆ hash_value()

template<typename T >
std::size_t lsst::afw::table::Key< T >::hash_value ( ) const
inlinenoexcept

Return a hash of this object.

Definition at line 81 of file Key.h.

81 {
82 // Completely arbitrary seed
83 return utils::hashCombine(17, _offset, this->getElementCount());
84 }
std::size_t hashCombine(std::size_t seed) noexcept
Combine hashes.
Definition hashCombine.h:35
std::size_t getElementCount() const noexcept
Return the number of subfield elements (always one for scalars).
Definition FieldBase.h:48

◆ isValid()

template<typename T >
bool lsst::afw::table::Key< T >::isValid ( ) const
inlinenoexcept

Return true if the key was initialized to valid offset.

This does not guarantee that a key is valid with any particular schema, or even that any schemas still exist in which this key is valid.

A key that is default constructed will always be invalid.

Definition at line 97 of file Key.h.

97{ return _valid; }

◆ makeDefault()

template<typename T >
static FieldBase lsst::afw::table::FieldBase< T >::makeDefault ( )
inlinestaticprotectednoexceptinherited

Needed to allow Keys to be default-constructed.

Definition at line 69 of file FieldBase.h.

69{ return FieldBase(); }

◆ operator!=() [1/2]

template<typename T >
bool lsst::afw::table::Key< T >::operator!= ( Key< T > const & other) const
inlinenoexcept

Definition at line 77 of file Key.h.

77{ return !this->operator==(other); }
bool operator==(Key< OtherT > const &other) const noexcept
Equality comparison.
Definition Key.h:66

◆ operator!=() [2/2]

template<typename T >
template<typename OtherT >
bool lsst::afw::table::Key< T >::operator!= ( Key< OtherT > const & other) const
inlinenoexcept

Definition at line 70 of file Key.h.

70 {
71 return true;
72 }

◆ operator=() [1/2]

template<typename T >
Key & lsst::afw::table::Key< T >::operator= ( Key< T > && )
defaultnoexcept

◆ operator=() [2/2]

template<typename T >
Key & lsst::afw::table::Key< T >::operator= ( Key< T > const & )
defaultnoexcept

◆ operator==() [1/2]

template<typename T >
bool lsst::afw::table::Key< T >::operator== ( Key< T > const & other) const
inlinenoexcept

Definition at line 74 of file Key.h.

74 {
75 return _offset == other._offset && this->getElementCount() == other.getElementCount();
76 }

◆ operator==() [2/2]

template<typename T >
template<typename OtherT >
bool lsst::afw::table::Key< T >::operator== ( Key< OtherT > const & other) const
inlinenoexcept

Equality comparison.

Two keys with different types are never equal. Keys with the same type are equal if they point to the same location in a table, regardless of what Schema they were constructed from (for instance, if a field has a different name in one Schema than another, but is otherwise the same, the two keys will be equal).

Definition at line 66 of file Key.h.

66 {
67 return false;
68 }

◆ setValue()

template<typename T >
void lsst::afw::table::FieldBase< T >::setValue ( Element * p,
ndarray::Manager::Ptr const & ,
Value v ) const
inlineprotectedinherited

Used to implement BaseRecord::set.

Definition at line 84 of file FieldBase.h.

84{ *p = v; }

◆ stream()

template<typename T >
void lsst::afw::table::FieldBase< T >::stream ( std::ostream & os) const
inlineprotectedinherited

Defines how Fields are printed.

Definition at line 72 of file FieldBase.h.

72{}

Friends And Related Symbol Documentation

◆ BaseRecord

template<typename T >
friend class BaseRecord
friend

Definition at line 120 of file Key.h.

◆ detail::Access

template<typename T >
friend class detail::Access
friend

Definition at line 119 of file Key.h.

◆ operator<<

template<typename T >
std::ostream & operator<< ( std::ostream & os,
Key< T > const & key )
friend

Stringification.

Definition at line 113 of file Key.h.

113 {
114 return os << "Key<" << Key<T>::getTypeString() << ">(offset=" << key.getOffset()
115 << ", nElements=" << key.getElementCount() << ")";
116 }
static std::string getTypeString()
Return a string description of the field type.
Definition FieldBase.cc:56

Member Data Documentation

◆ HAS_NAMED_SUBFIELDS

template<typename T >
bool const lsst::afw::table::KeyBase< T >::HAS_NAMED_SUBFIELDS = false
staticinherited

Definition at line 22 of file KeyBase.h.


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