LSSTApplications  19.0.0-14-gb0260a2+72efe9b372,20.0.0+7927753e06,20.0.0+8829bf0056,20.0.0+995114c5d2,20.0.0+b6f4b2abd1,20.0.0+bddc4f4cbe,20.0.0-1-g253301a+8829bf0056,20.0.0-1-g2b7511a+0d71a2d77f,20.0.0-1-g5b95a8c+7461dd0434,20.0.0-12-g321c96ea+23efe4bbff,20.0.0-16-gfab17e72e+fdf35455f6,20.0.0-2-g0070d88+ba3ffc8f0b,20.0.0-2-g4dae9ad+ee58a624b3,20.0.0-2-g61b8584+5d3db074ba,20.0.0-2-gb780d76+d529cf1a41,20.0.0-2-ged6426c+226a441f5f,20.0.0-2-gf072044+8829bf0056,20.0.0-2-gf1f7952+ee58a624b3,20.0.0-20-geae50cf+e37fec0aee,20.0.0-25-g3dcad98+544a109665,20.0.0-25-g5eafb0f+ee58a624b3,20.0.0-27-g64178ef+f1f297b00a,20.0.0-3-g4cc78c6+e0676b0dc8,20.0.0-3-g8f21e14+4fd2c12c9a,20.0.0-3-gbd60e8c+187b78b4b8,20.0.0-3-gbecbe05+48431fa087,20.0.0-38-ge4adf513+a12e1f8e37,20.0.0-4-g97dc21a+544a109665,20.0.0-4-gb4befbc+087873070b,20.0.0-4-gf910f65+5d3db074ba,20.0.0-5-gdfe0fee+199202a608,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-g64f541c+d529cf1a41,20.0.0-6-g9a5b7a1+a1cd37312e,20.0.0-68-ga3f3dda+5fca18c6a4,20.0.0-9-g4aef684+e18322736b,w.2020.45
LSSTDataManagementBasePackage
KeyBase.cc
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 
3 #include "boost/preprocessor/seq/for_each.hpp"
4 #include "boost/preprocessor/tuple/to_seq.hpp"
5 
8 #include "lsst/afw/table/Flag.h"
10 
11 namespace lsst {
12 namespace afw {
13 namespace table {
14 
16  return detail::Access::extractElement(*this, 0);
17 }
18 
20 
21 template <typename T>
23 
24 template <typename U>
25 bool const KeyBase<Array<U>>::HAS_NAMED_SUBFIELDS;
26 
27 template <typename U>
28 std::vector<U> KeyBase<Array<U>>::extractVector(BaseRecord const &record) const {
29  Key<Array<U>> const *self = static_cast<Key<Array<U>> const *>(this);
30  std::vector<U> result(self->getSize());
31  typename Key<Array<U>>::ConstReference array = record[*self];
32  std::copy(array.begin(), array.end(), result.begin());
33  return result;
34 }
35 
36 template <typename U>
37 void KeyBase<Array<U>>::assignVector(BaseRecord &record, std::vector<U> const &values) const {
38  Key<Array<U>> const *self = static_cast<Key<Array<U>> const *>(this);
39  std::copy(values.begin(), values.end(), record[*self].begin());
40 }
41 
42 template <typename U>
43 Key<U> KeyBase<Array<U>>::operator[](int i) const {
44  Key<Array<U>> const *self = static_cast<Key<Array<U>> const *>(this);
45  if (self->isVariableLength()) {
47  "Cannot get Keys to elements of variable-length arrays.");
48  }
49  if (i >= self->getSize() || i < 0) {
50  throw LSST_EXCEPT(lsst::pex::exceptions::LengthError, "Array key index out of range.");
51  }
52  return detail::Access::extractElement(*this, i);
53 }
54 
55 template <typename U>
56 Key<Array<U>> KeyBase<Array<U>>::slice(int begin, int end) const {
57  Key<Array<U>> const *self = static_cast<Key<Array<U>> const *>(this);
58  if (self->isVariableLength()) {
60  "Cannot get Keys to slices of variable-length arrays.");
61  }
62  if (begin > self->getSize() || begin < 0) {
63  throw LSST_EXCEPT(lsst::pex::exceptions::LengthError, "Array key begin index out of range.");
64  }
65  if (end > self->getSize() || end < 0) {
66  throw LSST_EXCEPT(lsst::pex::exceptions::LengthError, "Array key end index out of range.");
67  }
68  return detail::Access::extractRange(*this, begin, end);
69 }
70 
71 //----- Explicit instantiation ------------------------------------------------------------------------------
72 
73 #define INSTANTIATE_KEY(r, data, elem) template class KeyBase<elem>;
74 
76  BOOST_PP_TUPLE_TO_SEQ(AFW_TABLE_FIELD_TYPE_N, AFW_TABLE_FIELD_TYPE_TUPLE))
77 } // namespace table
78 } // namespace afw
79 } // namespace lsst
std::vector
STL class.
INSTANTIATE_KEY
#define INSTANTIATE_KEY(r, data, elem)
Definition: KeyBase.cc:73
lsst::afw::table::KeyBase
A base class for Key that allows subfield keys to be extracted for some field types.
Definition: KeyBase.h:20
lsst::afw
Definition: imageAlgorithm.dox:1
end
int end
Definition: BoundedField.cc:105
BaseRecord.h
lsst::afw::table::detail::Access::extractRange
static Key< Array< T > > extractRange(KeyBase< Array< T > > const &kb, int begin, int end)
Definition: Access.h:51
lsst.pex::exceptions::LengthError
Reports attempts to exceed implementation-defined length limits for some classes.
Definition: Runtime.h:76
lsst::afw::table::BaseRecord
Base class for all records.
Definition: BaseRecord.h:31
lsst.pex::exceptions::LogicError
Reports errors in the logical structure of the program.
Definition: Runtime.h:46
lsst::afw::table::Key
A class used as a handle to a particular field in a table.
Definition: fwd.h:45
lsst::afw::table::_
_
Definition: BaseColumnView.cc:188
std::copy
T copy(T... args)
result
py::object result
Definition: _schema.cc:429
AFW_TABLE_FIELD_TYPE_TUPLE
#define AFW_TABLE_FIELD_TYPE_TUPLE
Definition: types.h:44
lsst::afw::table::BOOST_PP_SEQ_FOR_EACH
BOOST_PP_SEQ_FOR_EACH(INSTANTIATE_COLUMNVIEW_SCALAR, _, BOOST_PP_TUPLE_TO_SEQ(AFW_TABLE_SCALAR_FIELD_TYPE_N, AFW_TABLE_SCALAR_FIELD_TYPE_TUPLE)) BOOST_PP_SEQ_FOR_EACH(INSTANTIATE_COLUMNVIEW_ARRAY
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
LSST_EXCEPT
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
lsst::afw::table::detail::Access::extractElement
static Key< typename Key< T >::Element > extractElement(KeyBase< T > const &kb, int n)
Definition: Access.h:35
std::vector::begin
T begin(T... args)
KeyBase.h
std::vector::end
T end(T... args)
AFW_TABLE_FIELD_TYPE_N
#define AFW_TABLE_FIELD_TYPE_N
Definition: types.h:39
Access.h
Flag.h