LSSTApplications  17.0+124,17.0+14,17.0+73,18.0.0+37,18.0.0+80,18.0.0-4-g68ffd23+4,18.1.0-1-g0001055+12,18.1.0-1-g03d53ef+5,18.1.0-1-g1349e88+55,18.1.0-1-g2505f39+44,18.1.0-1-g5315e5e+4,18.1.0-1-g5e4b7ea+14,18.1.0-1-g7e8fceb+4,18.1.0-1-g85f8cd4+48,18.1.0-1-g8ff0b9f+4,18.1.0-1-ga2c679d+1,18.1.0-1-gd55f500+35,18.1.0-10-gb58edde+2,18.1.0-11-g0997b02+4,18.1.0-13-gfe4edf0b+12,18.1.0-14-g259bd21+21,18.1.0-19-gdb69f3f+2,18.1.0-2-g5f9922c+24,18.1.0-2-gd3b74e5+11,18.1.0-2-gfbf3545+32,18.1.0-26-g728bddb4+5,18.1.0-27-g6ff7ca9+2,18.1.0-3-g52aa583+25,18.1.0-3-g8ea57af+9,18.1.0-3-gb69f684+42,18.1.0-3-gfcaddf3+6,18.1.0-32-gd8786685a,18.1.0-4-gf3f9b77+6,18.1.0-5-g1dd662b+2,18.1.0-5-g6dbcb01+41,18.1.0-6-gae77429+3,18.1.0-7-g9d75d83+9,18.1.0-7-gae09a6d+30,18.1.0-9-gc381ef5+4,w.2019.45
LSSTDataManagementBasePackage
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 
8 namespace lsst {
9 namespace afw {
10 namespace table {
11 
12 class BaseTable;
13 
36 class AliasMap final {
38 
39 public:
40  // Create an empty AliasMap
41  AliasMap() : _internal(), _table(0) {}
42 
48  AliasMap(AliasMap const& other) : _internal(other._internal), _table(0) {}
49  // Delegate to copy-constructor for backwards compatibility
51 
52  AliasMap& operator=(AliasMap const&) = default;
53  AliasMap& operator=(AliasMap&&) = 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 
121 private:
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 
140 namespace std {
141 template <>
142 struct 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
Defines the fields and offsets for a table.
Definition: Schema.h:50
T empty(T... args)
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
A proxy type for name lookups in a Schema.
Definition: Schema.h:357
std::size_t hash_value() const noexcept
Return a hash of this object.
Definition: AliasMap.cc:99
std::size_t size() const
Return the number of aliases.
Definition: AliasMap.h:66
Key< Flag > const & target
Iterator end() const
Return a iterator to one past the end of the map.
Definition: AliasMap.h:63
AliasMap(AliasMap const &other)
Deep-copy an AliasMap.
Definition: AliasMap.h:48
Mapping class that holds aliases for a Schema.
Definition: AliasMap.h:36
AliasMap & operator=(AliasMap const &)=default
STL namespace.
T end(T... args)
AliasMap(AliasMap &&other)
Definition: AliasMap.h:50
ItemVariant const * other
Definition: Schema.cc:56
STL class.
A base class for image defects.
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
bool operator!=(AliasMap const &other) const
Equality comparison.
Definition: AliasMap.h:112
bool operator==(AliasMap const &other) const
Equality comparison.
Definition: AliasMap.cc:97
bool erase(std::string const &alias)
Remove an alias from the schema if it is present.
Definition: AliasMap.cc:89
T size(T... args)
T begin(T... args)
size_t operator()(argument_type const &obj) const noexcept
Definition: AliasMap.h:145
Iterator begin() const
Return a iterator to the beginning of the map.
Definition: AliasMap.h:60
bool empty() const
Return the true if there are no aliases.
Definition: AliasMap.h:69
std::map< std::string, std::string >::const_iterator Iterator
An iterator over alias->target pairs.
Definition: AliasMap.h:57
Base class for all tables.
Definition: BaseTable.h:61