LSST Applications 27.0.0,g0265f82a02+469cd937ee,g02d81e74bb+21ad69e7e1,g1470d8bcf6+cbe83ee85a,g2079a07aa2+e67c6346a6,g212a7c68fe+04a9158687,g2305ad1205+94392ce272,g295015adf3+81dd352a9d,g2bbee38e9b+469cd937ee,g337abbeb29+469cd937ee,g3939d97d7f+72a9f7b576,g487adcacf7+71499e7cba,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+df404f777f,g5a732f18d5+be83d3ecdb,g64a986408d+21ad69e7e1,g858d7b2824+21ad69e7e1,g8a8a8dda67+a6fc98d2e7,g99cad8db69+f62e5b0af5,g9ddcbc5298+d4bad12328,ga1e77700b3+9c366c4306,ga8c6da7877+71e4819109,gb0e22166c9+25ba2f69a1,gb6a65358fc+469cd937ee,gbb8dafda3b+69d3c0e320,gc07e1c2157+a98bf949bb,gc120e1dc64+615ec43309,gc28159a63d+469cd937ee,gcf0d15dbbd+72a9f7b576,gdaeeff99f8+a38ce5ea23,ge6526c86ff+3a7c1ac5f1,ge79ae78c31+469cd937ee,gee10cc3b42+a6fc98d2e7,gf1cff7945b+21ad69e7e1,gfbcc870c63+9a11dc8c8f
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Static Protected Member Functions | List of all members
lsst::afw::table::FieldBase< Array< U > > Struct Template Reference

Field base class specialization for arrays. More...

#include <FieldBase.h>

Public Types

using Value = ndarray::Array<const U, 1, 1>
 the type returned by BaseRecord::get
 
using Reference = ndarray::ArrayRef<U, 1, 1>
 the type returned by BaseRecord::operator[]
 
using ConstReference = ndarray::ArrayRef<const U, 1, 1>
 the type returned by BaseRecord::operator[] (const)
 
using Element = U
 the type of subfields and array elements
 

Public Member Functions

 FieldBase (size_t size=0)
 Construct a FieldBase with the given size.
 
 FieldBase (FieldBase const &) noexcept=default
 
 FieldBase (FieldBase &&) noexcept=default
 
FieldBaseoperator= (FieldBase const &) noexcept=default
 
FieldBaseoperator= (FieldBase &&) noexcept=default
 
 ~FieldBase () noexcept=default
 
std::size_t getElementCount () const noexcept
 Return the number of subfield elements (equal to the size of the array), or 0 for a variable-length array.
 
std::size_t getSize () const noexcept
 Return the size of the array (equal to the number of subfield elements), or 0 for a variable-length array.
 
bool isVariableLength () const noexcept
 Return true if the field is variable-length (each record can have a different size array).
 

Static Public Member Functions

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

Protected Member Functions

void stream (std::ostream &os) const
 Defines how Fields are printed.
 
Reference getReference (Element *p, ndarray::Manager::Ptr const &m) const
 Used to implement BaseRecord::operator[] (non-const).
 
ConstReference getConstReference (Element const *p, ndarray::Manager::Ptr const &m) const
 Used to implement BaseRecord::operator[] (const).
 
Value getValue (Element const *p, ndarray::Manager::Ptr const &m) const
 Used to implement BaseRecord::get.
 
void setValue (Element *p, ndarray::Manager::Ptr const &, ndarray::Array< Element, 1, 1 > const &value) const
 Used to implement BaseRecord::set; accepts only non-const arrays of the right type.
 
template<typename Derived >
void setValue (Element *p, ndarray::Manager::Ptr const &, ndarray::ExpressionBase< Derived > const &value) const
 Used to implement BaseRecord::set; accepts any ndarray expression.
 

Static Protected Member Functions

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

Detailed Description

template<typename U>
struct lsst::afw::table::FieldBase< Array< U > >

Field base class specialization for arrays.

The Array tag is used for both fixed-length (same size in every record, accessible via ColumnView) and variable-length arrays; variable-length arrays are initialized with a size of 0. Ideally, we'd use complete different tag classes for those two very different types, but this was limited in the original (pre-C++11) implementation and now it would be an API change.

Definition at line 96 of file FieldBase.h.

Member Typedef Documentation

◆ ConstReference

template<typename U >
using lsst::afw::table::FieldBase< Array< U > >::ConstReference = ndarray::ArrayRef<const U, 1, 1>

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

Definition at line 103 of file FieldBase.h.

◆ Element

template<typename U >
using lsst::afw::table::FieldBase< Array< U > >::Element = U

the type of subfields and array elements

Definition at line 105 of file FieldBase.h.

◆ Reference

template<typename U >
using lsst::afw::table::FieldBase< Array< U > >::Reference = ndarray::ArrayRef<U, 1, 1>

the type returned by BaseRecord::operator[]

Definition at line 100 of file FieldBase.h.

◆ Value

template<typename U >
using lsst::afw::table::FieldBase< Array< U > >::Value = ndarray::Array<const U, 1, 1>

the type returned by BaseRecord::get

Definition at line 97 of file FieldBase.h.

Constructor & Destructor Documentation

◆ FieldBase() [1/3]

template<typename U >
lsst::afw::table::FieldBase< Array< U > >::FieldBase ( size_t size = 0)
inline

Construct a FieldBase with the given size.

A size == 0 indicates a variable-length array. Negative sizes are not permitted.

This constructor is implicit with a default so it can be used in the Field constructor (as if it were an int argument) without specializing Field. In other words, it allows one to construct a 25-element array field like this:

Field< Array<float> >("name", "documentation", 25);

...even though the third argument to the Field constructor takes a FieldBase, not an int.

Definition at line 120 of file FieldBase.h.

120 : _size(size) {
121 }

◆ FieldBase() [2/3]

template<typename U >
lsst::afw::table::FieldBase< Array< U > >::FieldBase ( FieldBase< Array< U > > const & )
defaultnoexcept

◆ FieldBase() [3/3]

template<typename U >
lsst::afw::table::FieldBase< Array< U > >::FieldBase ( FieldBase< Array< U > > && )
defaultnoexcept

◆ ~FieldBase()

template<typename U >
lsst::afw::table::FieldBase< Array< U > >::~FieldBase ( )
defaultnoexcept

Member Function Documentation

◆ getConstReference()

template<typename U >
ConstReference lsst::afw::table::FieldBase< Array< U > >::getConstReference ( Element const * p,
ndarray::Manager::Ptr const & m ) const
inlineprotected

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

Definition at line 159 of file FieldBase.h.

159 {
160 if (isVariableLength()) {
161 return reinterpret_cast<ndarray::Array<Element, 1, 1> const *>(p)->deep();
162 }
163 return ndarray::external(p, ndarray::makeVector(_size), ndarray::ROW_MAJOR, m);
164 }
int m
Definition SpanSet.cc:48
bool isVariableLength() const noexcept
Return true if the field is variable-length (each record can have a different size array).
Definition FieldBase.h:141

◆ getElementCount()

template<typename U >
std::size_t lsst::afw::table::FieldBase< Array< U > >::getElementCount ( ) const
inlinenoexcept

Return the number of subfield elements (equal to the size of the array), or 0 for a variable-length array.

Definition at line 134 of file FieldBase.h.

134{ return _size; }

◆ getReference()

template<typename U >
Reference lsst::afw::table::FieldBase< Array< U > >::getReference ( Element * p,
ndarray::Manager::Ptr const & m ) const
inlineprotected

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

Definition at line 151 of file FieldBase.h.

151 {
152 if (isVariableLength()) {
153 return reinterpret_cast<ndarray::Array<Element, 1, 1> *>(p)->deep();
154 }
155 return ndarray::external(p, ndarray::makeVector(_size), ndarray::ROW_MAJOR, m);
156 }

◆ getSize()

template<typename U >
std::size_t lsst::afw::table::FieldBase< Array< U > >::getSize ( ) const
inlinenoexcept

Return the size of the array (equal to the number of subfield elements), or 0 for a variable-length array.

Definition at line 138 of file FieldBase.h.

138{ return _size; }

◆ getTypeString()

template<typename U >
std::string lsst::afw::table::FieldBase< Array< U > >::getTypeString ( )
static

Return a string description of the field type.

Definition at line 63 of file FieldBase.cc.

63 {
64 return (boost::format("Array%s") % TypeTraits<U>::getName()).str();
65}

◆ getValue()

template<typename U >
Value lsst::afw::table::FieldBase< Array< U > >::getValue ( Element const * p,
ndarray::Manager::Ptr const & m ) const
inlineprotected

Used to implement BaseRecord::get.

Definition at line 167 of file FieldBase.h.

167 {
168 if (isVariableLength()) {
169 return *reinterpret_cast<ndarray::Array<Element, 1, 1> const *>(p);
170 }
171 return ndarray::external(p, ndarray::makeVector(_size), ndarray::ROW_MAJOR, m);
172 }

◆ isVariableLength()

template<typename U >
bool lsst::afw::table::FieldBase< Array< U > >::isVariableLength ( ) const
inlinenoexcept

Return true if the field is variable-length (each record can have a different size array).

Definition at line 141 of file FieldBase.h.

141{ return _size == 0; }

◆ makeDefault()

template<typename U >
static FieldBase lsst::afw::table::FieldBase< Array< U > >::makeDefault ( )
inlinestaticprotectednoexcept

Needed to allow Keys to be default-constructed.

Definition at line 145 of file FieldBase.h.

145{ return FieldBase(0); }
FieldBase(size_t size=0)
Construct a FieldBase with the given size.
Definition FieldBase.h:120

◆ operator=() [1/2]

template<typename U >
FieldBase & lsst::afw::table::FieldBase< Array< U > >::operator= ( FieldBase< Array< U > > && )
defaultnoexcept

◆ operator=() [2/2]

template<typename U >
FieldBase & lsst::afw::table::FieldBase< Array< U > >::operator= ( FieldBase< Array< U > > const & )
defaultnoexcept

◆ setValue() [1/2]

template<typename U >
void lsst::afw::table::FieldBase< Array< U > >::setValue ( Element * p,
ndarray::Manager::Ptr const & ,
ndarray::Array< Element, 1, 1 > const & value ) const
inlineprotected

Used to implement BaseRecord::set; accepts only non-const arrays of the right type.

Fixed-length arrays are handled by copying the data from value to p through p + _size. Variable-length arrays are handled by setting p to the address of value, an ndarray, hence a shallow copy (ndarray arrays are reference-counted so this will not leak memory). If you want deep assignment of variable-length data, use operator[] to get a reference and assign to that.

Definition at line 180 of file FieldBase.h.

181 {
182 if (isVariableLength()) {
183 *reinterpret_cast<ndarray::Array<Element, 1, 1> *>(p) = value;
184 } else {
185 setValueDeep(p, value);
186 }
187 }

◆ setValue() [2/2]

template<typename U >
template<typename Derived >
void lsst::afw::table::FieldBase< Array< U > >::setValue ( Element * p,
ndarray::Manager::Ptr const & ,
ndarray::ExpressionBase< Derived > const & value ) const
inlineprotected

Used to implement BaseRecord::set; accepts any ndarray expression.

Definition at line 191 of file FieldBase.h.

192 {
193 if (isVariableLength()) {
194 throw LSST_EXCEPT(
196 "Assignment to a variable-length array must use a non-const array of the correct type.");
197 }
198 setValueDeep(p, value);
199 }
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
Reports errors in the logical structure of the program.
Definition Runtime.h:46

◆ stream()

template<typename U >
void lsst::afw::table::FieldBase< Array< U > >::stream ( std::ostream & os) const
inlineprotected

Defines how Fields are printed.

Definition at line 148 of file FieldBase.h.

148{ os << ", size=" << _size; }

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