1#include "boost/preprocessor/seq/for_each.hpp"
2#include "boost/preprocessor/tuple/to_seq.hpp"
16 bool operator()(SchemaItem<Flag>
const &item)
const {
return item.key ==
target; }
18 explicit MatchKey(Key<Flag>
const &t) :
target(t) {}
24 bool operator()(SchemaItem<Flag>
const &item)
const {
return item.field.getName() ==
target; }
34 SizeT r =
std::find_if(_items.begin(), _items.end(), MatchKey(key)) - _items.begin();
37 (boost::format(
"'%s' not found in BitsColumn") % key).
str());
46 (boost::format(
"'%s' not found in BitsColumn") %
name).
str());
62 ndarray::Manager::Ptr
const &manager_)
75 "Key is not valid (if this is a SourceCatalog, make sure slot aliases have been set up).");
77 return ndarray::external(
reinterpret_cast<T *
>(
reinterpret_cast<char *
>(_impl->
buf) + key.
getOffset()),
79 ndarray::makeVector(_impl->
table->getSchema().getRecordSize() /
sizeof(T)),
88 "Key is not valid (if this is a SourceCatalog, make sure slot aliases have been set up).");
90 if (key.isVariableLength()) {
93 return ndarray::external(
94 reinterpret_cast<T *
>(
reinterpret_cast<char *
>(_impl->
buf) + key.getOffset()),
95 ndarray::makeVector(_impl->
recordCount, key.getSize()),
96 ndarray::makeVector(_impl->
table->getSchema().getRecordSize() /
sizeof(T),
std::size_t(1)),
100ndarray::result_of::vectorize<detail::FlagExtractor, ndarray::Array<Field<Flag>::Element
const, 1> >
::type
105 "Key is not valid (if this is a SourceCatalog, make sure slot aliases have been set up).");
110 reinterpret_cast<char *
>(_impl->
buf) + key.
getOffset()),
112 ndarray::makeVector(_impl->
table->getSchema().getRecordSize() /
119 ndarray::ArrayRef<BitsColumn::SizeT, 1, 1> array =
result._array.deep();
122 (boost::format(
"Too many keys passed to getBits(); %d > %d.") % keys.size() %
136struct ExtractFlagItems {
137 template <
typename T>
140 void operator()(SchemaItem<Flag>
const &item)
const {
items->push_back(item); }
149 ExtractFlagItems func = {&
result._items};
153 (boost::format(
"Too many Flag keys in schema; %d > %d.") %
result._items.size() %
157 ndarray::ArrayRef<BitsColumn::SizeT, 1, 1> array =
result._array.deep();
174 ndarray::Manager::Ptr
const &manager)
175 : _impl(
std::make_shared<
Impl>(table, recordCount, buf, manager)) {}
179#define INSTANTIATE_COLUMNVIEW_SCALAR(r, data, elem) \
180 template ndarray::ArrayRef<elem, 1> const BaseColumnView::operator[](Key<elem> const &) const;
185#define INSTANTIATE_COLUMNVIEW_ARRAY(r, data, elem) \
186 template ndarray::ArrayRef<elem, 2, 1> const BaseColumnView::operator[](Key<Array<elem> > const &) const;
table::Key< std::string > name
#define INSTANTIATE_COLUMNVIEW_SCALAR(r, data, elem)
Key< Flag > const & target
#define INSTANTIATE_COLUMNVIEW_ARRAY(r, data, elem)
std::vector< SchemaItem< Flag > > * items
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Tag types used to declare specialized field types.
Column-wise view into a sequence of records that have been allocated contiguously.
BaseColumnView & operator=(BaseColumnView const &)
BitsColumn getBits(std::vector< Key< Flag > > const &keys) const
Return an integer array with the given Flag fields repacked into individual bits.
Schema getSchema() const
Return the schema that defines the fields.
BaseColumnView(BaseColumnView const &)
BitsColumn getAllBits() const
Return an integer array with all Flag fields repacked into individual bits.
std::shared_ptr< BaseTable > getTable() const
Return the table that owns the records.
ndarray::ArrayRef< T, 1 > const operator[](Key< T > const &key) const
Return a 1-d array corresponding to a scalar field (or subfield).
A packed representation of a collection of Flag field columns.
SizeT getBit(Key< Flag > const &key) const
A class used as a handle to a particular field in a table.
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.
void forEach(F &func) const
Apply a functor to each SchemaItem in the Schema.
SchemaItem< T > find(std::string const &name) const
Find a SchemaItem in the Schema by name.
Reports attempts to exceed implementation-defined length limits for some classes.
Reports errors in the logical structure of the program.
Reports attempts to access elements using an invalid key.
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
std::shared_ptr< BaseTable > table
Impl(std::shared_ptr< BaseTable > const &table_, size_t recordCount_, void *buf_, ndarray::Manager::Ptr const &manager_)
ndarray::Manager::Ptr manager
typename FieldBase< T >::Element Element
Type used to store field data in the table (a field may have multiple elements).
A simple pair-like struct for mapping a Field (name and description) with a Key (used for actual data...
#define AFW_TABLE_ARRAY_FIELD_TYPE_TUPLE
#define AFW_TABLE_ARRAY_FIELD_TYPE_N
#define AFW_TABLE_SCALAR_FIELD_TYPE_TUPLE
#define AFW_TABLE_SCALAR_FIELD_TYPE_N