LSST Applications g0f08755f38+82efc23009,g12f32b3c4e+e7bdf1200e,g1653933729+a8ce1bb630,g1a0ca8cf93+50eff2b06f,g28da252d5a+52db39f6a5,g2bbee38e9b+37c5a29d61,g2bc492864f+37c5a29d61,g2cdde0e794+c05ff076ad,g3156d2b45e+41e33cbcdc,g347aa1857d+37c5a29d61,g35bb328faa+a8ce1bb630,g3a166c0a6a+37c5a29d61,g3e281a1b8c+fb992f5633,g414038480c+7f03dfc1b0,g41af890bb2+11b950c980,g5fbc88fb19+17cd334064,g6b1c1869cb+12dd639c9a,g781aacb6e4+a8ce1bb630,g80478fca09+72e9651da0,g82479be7b0+04c31367b4,g858d7b2824+82efc23009,g9125e01d80+a8ce1bb630,g9726552aa6+8047e3811d,ga5288a1d22+e532dc0a0b,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gc28159a63d+37c5a29d61,gcf0d15dbbd+2acd6d4d48,gd7358e8bfb+778a810b6e,gda3e153d99+82efc23009,gda6a2b7d83+2acd6d4d48,gdaeeff99f8+1711a396fd,ge2409df99d+6b12de1076,ge79ae78c31+37c5a29d61,gf0baf85859+d0a5978c5a,gf3967379c6+4954f8c433,gfb92a5be7c+82efc23009,gfec2e1e490+2aaed99252,w.2024.46
LSST Data Management Base Package
Loading...
Searching...
No Matches
SchemaMapper.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2#ifndef AFW_TABLE_SchemaMapper_h_INCLUDED
3#define AFW_TABLE_SchemaMapper_h_INCLUDED
4
5#include <memory>
6
8
9namespace lsst {
10namespace afw {
11namespace table {
12
13class BaseRecord;
14
22public:
24 Schema const getInputSchema() const { return _impl->_input; }
25
27 Schema const getOutputSchema() const { return _impl->_output; }
28
30 Schema& editOutputSchema() { return _impl->_output; }
31
33 template <typename T>
34 Key<T> addOutputField(Field<T> const& newField, bool doReplace = false) {
35 return _impl->_output.addField(newField, doReplace);
36 }
37
48 template <typename T>
49 Key<T> addMapping(Key<T> const& inputKey, bool doReplace = false);
50
61 template <typename T>
62 Key<T> addMapping(Key<T> const& inputKey, Field<T> const& outputField, bool doReplace = false);
63
74 template <typename T>
75 Key<T> addMapping(Key<T> const& inputKey, std::string const& outputName, bool doReplace = true);
76
82 template <typename T>
83 Key<T> addMapping(Key<T> const& inputKey, char const* outputName, bool doReplace = true) = delete;
84
97 template <typename Predicate>
98 void addMappingsWhere(Predicate predicate, bool doReplace = true);
99
110 void addMinimalSchema(Schema const& minimal, bool doMap = true);
111
122 static SchemaMapper removeMinimalSchema(Schema const& input, Schema const& minimal);
123
125 void invert();
126
128 template <typename T>
129 bool isMapped(Key<T> const& inputKey) const;
130
132 template <typename T>
133 Key<T> getMapping(Key<T> const& inputKey) const;
134
136
149 template <typename F>
150 void forEach(F& func) const {
151 for (auto const & item : _impl->_map) {
152 std::visit([&func](auto const & pair) { func(pair.first, pair.second); }, item);
153 }
154 }
155 template <typename F>
156 void forEach(F const& func) const {
157 for (auto const & item : _impl->_map) {
158 std::visit([&func](auto const & pair) { func(pair.first, pair.second); }, item);
159 }
160 }
162
164 explicit SchemaMapper();
165
181 explicit SchemaMapper(Schema const& input, Schema const& output);
182
200 explicit SchemaMapper(Schema const& input, bool shareAliasMap = false);
201
203 SchemaMapper(SchemaMapper const& other);
204 SchemaMapper(SchemaMapper&& other);
205
207 SchemaMapper& operator=(SchemaMapper const& other);
209
211
222 std::vector<Schema> const& inputs,
224
225private:
226 template <typename Predicate>
227 struct AddMappingsWhere {
228 template <typename T>
229 void operator()(SchemaItem<T> const& item) const {
230 if (predicate(item)) mapper->addMapping(item.key, doReplace);
231 }
232
233 AddMappingsWhere(SchemaMapper* mapper_, Predicate predicate_, bool doReplace_)
234 : mapper(mapper_), predicate(predicate_), doReplace(doReplace_) {}
235
236 SchemaMapper* mapper;
237 Predicate predicate;
238 bool doReplace;
239 };
240
241 using Impl = detail::SchemaMapperImpl;
242
244};
245
246template <typename Predicate>
247void SchemaMapper::addMappingsWhere(Predicate predicate, bool doReplace) {
248 _impl->_input.forEach(AddMappingsWhere<Predicate>(this, predicate, doReplace));
249}
250} // namespace table
251} // namespace afw
252} // namespace lsst
253
254#endif // !AFW_TABLE_SchemaMapper_h_INCLUDED
Schema minimal
Tag types used to declare specialized field types.
Definition misc.h:31
Defines the fields and offsets for a table.
Definition Schema.h:51
void forEach(F &func) const
Apply a functor to each SchemaItem in the Schema.
Definition Schema.h:214
Key< T > addField(Field< T > const &field, bool doReplace=false)
Add a new field to the Schema, and return the associated Key.
Definition Schema.cc:479
A mapping between the keys of two Schemas, used to copy data between them.
Schema const getOutputSchema() const
Return the output schema (copy-on-write).
SchemaMapper()
Construct an empty mapper; useless unless you assign a fully-constructed one to it.
SchemaMapper & operator=(SchemaMapper const &other)
Assignment (copy-on-write).
Key< T > addMapping(Key< T > const &inputKey, char const *outputName, bool doReplace=true)=delete
This deliberately deleted overload ensures we don't accidentally cast string literals to bool.
void forEach(F &func) const
Call the given functor for each key pair in the mapper.
Key< T > addOutputField(Field< T > const &newField, bool doReplace=false)
Add a new field to the output Schema that is not connected to the input Schema.
Key< T > addMapping(Key< T > const &inputKey, bool doReplace=false)
Add a new field to the output Schema that is a copy of a field in the input Schema.
static SchemaMapper removeMinimalSchema(Schema const &input, Schema const &minimal)
Create a mapper by removing fields from the front of a schema.
static std::vector< SchemaMapper > join(std::vector< Schema > const &inputs, std::vector< std::string > const &prefixes=std::vector< std::string >())
Combine a sequence of schemas into one, creating a SchemaMapper for each.
void forEach(F const &func) const
Schema & editOutputSchema()
Return a reference to the output schema that allows it to be modified in place.
Key< T > getMapping(Key< T > const &inputKey) const
Return the output Key corresponding to the given input Key, or raise NotFoundError.
bool isMapped(Key< T > const &inputKey) const
Return true if the given input Key is mapped to an output Key.
void addMinimalSchema(Schema const &minimal, bool doMap=true)
Add the given minimal schema to the output schema.
void invert()
Swap the input and output schemas in-place.
Schema const getInputSchema() const
Return the input schema (copy-on-write).
void addMappingsWhere(Predicate predicate, bool doReplace=true)
Add mappings for all fields that match criteria defined by a predicate.