LSST Applications 26.0.0,g0265f82a02+6660c170cc,g07994bdeae+30b05a742e,g0a0026dc87+17526d298f,g0a60f58ba1+17526d298f,g0e4bf8285c+96dd2c2ea9,g0ecae5effc+c266a536c8,g1e7d6db67d+6f7cb1f4bb,g26482f50c6+6346c0633c,g2bbee38e9b+6660c170cc,g2cc88a2952+0a4e78cd49,g3273194fdb+f6908454ef,g337abbeb29+6660c170cc,g337c41fc51+9a8f8f0815,g37c6e7c3d5+7bbafe9d37,g44018dc512+6660c170cc,g4a941329ef+4f7594a38e,g4c90b7bd52+5145c320d2,g58be5f913a+bea990ba40,g635b316a6c+8d6b3a3e56,g67924a670a+bfead8c487,g6ae5381d9b+81bc2a20b4,g93c4d6e787+26b17396bd,g98cecbdb62+ed2cb6d659,g98ffbb4407+81bc2a20b4,g9ddcbc5298+7f7571301f,ga1e77700b3+99e9273977,gae46bcf261+6660c170cc,gb2715bf1a1+17526d298f,gc86a011abf+17526d298f,gcf0d15dbbd+96dd2c2ea9,gdaeeff99f8+0d8dbea60f,gdb4ec4c597+6660c170cc,ge23793e450+96dd2c2ea9,gf041782ebf+171108ac67
LSST Data Management Base Package
Loading...
Searching...
No Matches
SchemaImpl.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2#ifndef AFW_TABLE_DETAIL_SchemaImpl_h_INCLUDED
3#define AFW_TABLE_DETAIL_SchemaImpl_h_INCLUDED
4
5#include <vector>
6#include <algorithm>
7#include <map>
8#include <variant>
9
10namespace lsst {
11namespace afw {
12namespace table {
13
14class Schema;
15class SubSchema;
16
21template <typename T>
22struct SchemaItem final {
25
26 SchemaItem(Key<T> const& key_, Field<T> const& field_) : key(key_), field(field_) {}
27};
28
29namespace detail {
30
31class Access;
32
46private:
49 template <typename ...E>
50 static std::variant<SchemaItem<E>...> makeItemVariantType(TypeList<E...>);
51public:
52 static int const VERSION = 3;
53
55 using ItemVariant = decltype(makeItemVariantType(FieldTypes{}));
64
66 std::size_t getRecordSize() const { return _recordSize; }
67
69 std::size_t getFieldCount() const { return _names.size(); }
70
72 std::size_t getFlagFieldCount() const { return _flags.size(); }
73
75 std::size_t getNonFlagFieldCount() const { return _offsets.size(); }
76
78 template <typename T>
79 SchemaItem<T> find(std::string const& name) const;
80
82 template <typename T>
83 SchemaItem<T> find(Key<T> const& key) const;
84
86 SchemaItem<Flag> find(Key<Flag> const& key) const;
87
89 template <typename F>
90 decltype(auto) findAndApply(std::string const& name, F&& func) const {
91 auto iter = _names.find(name);
92 if (iter == _names.end()) {
94 (boost::format("Field with name '%s' not found") % name).str());
95 }
96 return std::visit(std::forward<F>(func), _items[iter->second]);
97 }
98
100 std::set<std::string> getNames(bool topOnly) const;
101
103 std::set<std::string> getNames(bool topOnly, std::string const& prefix) const;
104
105 template <typename T>
106 int contains(SchemaItem<T> const& item, int flags) const;
107
109 template <typename T>
110 Key<T> addField(Field<T> const& field, bool doReplace = false);
111
113 Key<Flag> addField(Field<Flag> const& field, bool doReplace = false);
114
116 template <typename T>
117 Key<Array<T> > addField(Field<Array<T> > const& field, bool doReplace = false);
118
120 Key<std::string> addField(Field<std::string> const& field, bool doReplace = false);
121
123 template <typename T>
124 void replaceField(Key<T> const& key, Field<T> const& field);
125
133 ItemContainer const& getItems() const { return _items; }
134
136 SchemaImpl() : _recordSize(0), _lastFlagField(0), _lastFlagBit(0), _items(), _initFlag(false) {}
137
138private:
139 friend class detail::Access;
140
141 template <typename T>
142 Key<T> addFieldImpl(std::size_t elementSize, std::size_t elementCount, Field<T> const& field, bool doReplace);
143
144 std::size_t _recordSize; // Size of a record in bytes.
145 std::size_t _lastFlagField; // Offset of the last flag field in bytes.
146 std::size_t _lastFlagBit; // Bit of the last flag field.
147 ItemContainer _items; // Vector of variants of SchemaItem<T>.
148 NameMap _names; // Field name to vector-index map.
149 OffsetMap _offsets; // Offset to vector-index map for regular fields.
150 FlagMap _flags; // Offset to vector-index map for flags.
151 bool _initFlag; // Indicates if record is valid
152};
153} // namespace detail
154} // namespace table
155} // namespace afw
156} // namespace lsst
157
158#endif // !AFW_TABLE_DETAIL_SchemaImpl_h_INCLUDED
table::Key< std::string > name
Definition Amplifier.cc:116
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
std::string prefix
Tag types used to declare specialized field types.
Definition misc.h:31
A class used as a handle to a particular field in a table.
Definition Key.h:53
A private implementation class to hide the messy details of Schema.
Definition SchemaImpl.h:45
std::set< std::string > getNames(bool topOnly) const
Return a set of field names (used to implement Schema::getNames).
Definition Schema.cc:251
SchemaImpl()
Default constructor.
Definition SchemaImpl.h:136
Key< T > addField(Field< T > const &field, bool doReplace=false)
Add a field to the schema (used to implement Schema::addField).
Definition Schema.cc:314
int contains(SchemaItem< T > const &item, int flags) const
Definition Schema.cc:225
decltype(auto) findAndApply(std::string const &name, F &&func) const
Find an item by name and run the given functor on it.
Definition SchemaImpl.h:90
std::size_t getRecordSize() const
The size of a record in bytes.
Definition SchemaImpl.h:66
void replaceField(Key< T > const &key, Field< T > const &field)
Replace the Field in an existing SchemaItem without changing the Key.
Definition Schema.cc:193
std::size_t getFlagFieldCount() const
The number of Flag fields.
Definition SchemaImpl.h:72
std::size_t getNonFlagFieldCount() const
The number of non-Flag fields.
Definition SchemaImpl.h:75
SchemaItem< T > find(std::string const &name) const
Find an item by name (used to implement Schema::find).
Definition Schema.cc:92
ItemContainer const & getItems() const
Return the vector of SchemaItem variants.
Definition SchemaImpl.h:133
std::size_t getFieldCount() const
The total number of fields.
Definition SchemaImpl.h:69
decltype(makeItemVariantType(FieldTypes{})) ItemVariant
A Boost.Variant type that can hold any one of the allowed SchemaItem types.
Definition SchemaImpl.h:55
Reports attempts to access elements using an invalid key.
Definition Runtime.h:151
T end(T... args)
T find(T... args)
T size(T... args)
A description of a field in a table.
Definition Field.h:24
A simple pair-like struct for mapping a Field (name and description) with a Key (used for actual data...
Definition SchemaImpl.h:22
SchemaItem(Key< T > const &key_, Field< T > const &field_)
Definition SchemaImpl.h:26