LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
Loading...
Searching...
No Matches
AliasMap.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2#ifndef AFW_TABLE_AliasMap_h_INCLUDED
3#define AFW_TABLE_AliasMap_h_INCLUDED
4
5#include <map>
6#include <string>
7
8namespace lsst {
9namespace afw {
10namespace table {
11
12class BaseTable;
13
36class AliasMap final {
38
39public:
40 // Create an empty AliasMap
41 AliasMap() : _internal(), _table(nullptr) {}
42
48 AliasMap(AliasMap const& other) : _internal(other._internal), _table(nullptr) {}
49 // Delegate to copy-constructor for backwards compatibility
50 AliasMap(AliasMap&& other) : AliasMap(other) {}
51
52 AliasMap& operator=(AliasMap const&) = default;
54 ~AliasMap() = default;
55
58
60 Iterator begin() const { return _internal.begin(); }
61
63 Iterator end() const { return _internal.end(); }
64
66 std::size_t size() const { return _internal.size(); }
67
69 bool empty() const { return _internal.empty(); }
70
86 std::string apply(std::string const& name) const;
87
95 std::string get(std::string const& alias) const;
96
98 void set(std::string const& alias, std::string const& target);
99
105 bool erase(std::string const& alias);
106
108
111 bool operator==(AliasMap const& other) const;
112 bool operator!=(AliasMap const& other) const { return !(other == *this); }
114
116 std::size_t hash_value() const noexcept;
117
119 bool contains(AliasMap const& other) const;
120
121private:
122 friend class Schema;
123 friend class SubSchema;
124 friend class BaseTable;
125
126 // Internal in-place implementation of apply()
127 void _apply(std::string& name) const;
128
129 Internal _internal;
130
131 // Table to notify of any changes. We can't use a shared_ptr here because the Table needs to set
132 // this in its own constructor, but the Table does guarantee that this pointer is either valid or
133 // null.
134 BaseTable* _table;
135};
136} // namespace table
137} // namespace afw
138} // namespace lsst
139
140namespace std {
141template <>
142struct hash<lsst::afw::table::AliasMap> {
145 size_t operator()(argument_type const& obj) const noexcept { return obj.hash_value(); }
146};
147} // namespace std
148
149#endif // !AFW_TABLE_AliasMap_h_INCLUDED
table::Key< std::string > name
Definition: Amplifier.cc:116
Key< Flag > const & target
T begin(T... args)
Mapping class that holds aliases for a Schema.
Definition: AliasMap.h:36
bool contains(AliasMap const &other) const
Return true if all aliases in this are also in other (with the same targets).
Definition: AliasMap.cc:109
bool operator!=(AliasMap const &other) const
Definition: AliasMap.h:112
AliasMap(AliasMap &&other)
Definition: AliasMap.h:50
std::string apply(std::string const &name) const
Apply any aliases that match the given field name and return a de-aliased name.
Definition: AliasMap.cc:67
AliasMap(AliasMap const &other)
Deep-copy an AliasMap.
Definition: AliasMap.h:48
std::size_t size() const
Return the number of aliases.
Definition: AliasMap.h:66
Iterator begin() const
Return a iterator to the beginning of the map.
Definition: AliasMap.h:60
std::map< std::string, std::string >::const_iterator Iterator
An iterator over alias->target pairs.
Definition: AliasMap.h:57
bool erase(std::string const &alias)
Remove an alias from the schema if it is present.
Definition: AliasMap.cc:89
AliasMap & operator=(AliasMap const &)=default
bool empty() const
Return the true if there are no aliases.
Definition: AliasMap.h:69
std::string get(std::string const &alias) const
Return the target of the given alias.
Definition: AliasMap.cc:73
std::size_t hash_value() const noexcept
Return a hash of this object.
Definition: AliasMap.cc:99
AliasMap & operator=(AliasMap &&)=default
bool operator==(AliasMap const &other) const
Equality comparison.
Definition: AliasMap.cc:97
Iterator end() const
Return a iterator to one past the end of the map.
Definition: AliasMap.h:63
Base class for all tables.
Definition: BaseTable.h:61
Defines the fields and offsets for a table.
Definition: Schema.h:51
A proxy type for name lookups in a Schema.
Definition: Schema.h:367
T empty(T... args)
T end(T... args)
daf::base::PropertySet * set
Definition: fits.cc:927
STL namespace.
T size(T... args)
size_t operator()(argument_type const &obj) const noexcept
Definition: AliasMap.h:145