LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
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 <fwd.h>

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

Public Types

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

Public Member Functions

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

Static Public Member Functions

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

Static Public Attributes

static bool const HAS_NAMED_SUBFIELDS = false
 

Protected Member Functions

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

Static Protected Member Functions

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

Friends

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

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 45 of file fwd.h.

Member Typedef Documentation

◆ ConstReference

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

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

Definition at line 46 of file FieldBase.h.

◆ Element

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

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

Definition at line 47 of file FieldBase.h.

◆ Reference

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

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

Definition at line 45 of file FieldBase.h.

◆ Value

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

the type returned by BaseRecord::get

Definition at line 44 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(-1) {}
static FieldBase makeDefault() noexcept
Needed to allow Keys to be default-constructed.
Definition: FieldBase.h:71

◆ 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 80 of file FieldBase.h.

80 { return *p; }

◆ getElementCount()

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

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

Definition at line 50 of file FieldBase.h.

50 { return 1; }

◆ getOffset()

template<typename T>
int 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 77 of file FieldBase.h.

77 { 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 83 of file FieldBase.h.

83 { 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  }
int getElementCount() const noexcept
Return the number of subfield elements (always one for scalars).
Definition: FieldBase.h:50
std::size_t hashCombine(std::size_t seed) noexcept
Combine hashes.
Definition: hashCombine.h:35

◆ 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 _offset >= 0; }

◆ makeDefault()

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

Needed to allow Keys to be default-constructed.

Definition at line 71 of file FieldBase.h.

71 { return FieldBase(); }

◆ operator!=() [1/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 70 of file Key.h.

70  {
71  return true;
72  }

◆ operator!=() [2/2]

template<typename T>
bool lsst::afw::table::Key< T >::operator!= ( Key< T > 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 77 of file Key.h.

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

◆ operator=() [1/2]

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

◆ operator=() [2/2]

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

◆ operator==() [1/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  }

◆ operator==() [2/2]

template<typename T>
bool lsst::afw::table::Key< T >::operator== ( Key< T > 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 74 of file Key.h.

74  {
75  return _offset == other._offset && this->getElementCount() == other.getElementCount();
76  }
ItemVariant const * other
Definition: Schema.cc:56
int getElementCount() const noexcept
Return the number of subfield elements (always one for scalars).
Definition: FieldBase.h:50

◆ 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 86 of file FieldBase.h.

86 { *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 74 of file FieldBase.h.

74 {}

Friends And Related Function 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  }
Key< U > key
Definition: Schema.cc:281
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: