LSSTApplications  20.0.0
LSSTDataManagementBasePackage
Flag.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 #ifndef LSST_AFW_TABLE_Flag_h_INCLUDED
3 #define LSST_AFW_TABLE_Flag_h_INCLUDED
4 
5 #include <cstdint>
6 
8 
9 #include "lsst/afw/table/misc.h"
11 #include "lsst/afw/table/KeyBase.h"
12 
13 namespace lsst {
14 namespace afw {
15 namespace table {
16 
17 namespace detail {
18 
19 class Access;
20 
21 } // namespace detail
22 
32 template <>
33 struct FieldBase<Flag> {
34  typedef bool Value;
36 
38  int getElementCount() const { return 1; }
39 
41  static std::string getTypeString() { return "Flag"; }
42 
43  // Only the first of these constructors is valid for this specializations, but
44  // it's convenient to be able to instantiate both, since the other is used
45  // by other specializations.
46  FieldBase() = default;
47  FieldBase(int) {
49  "Constructor disabled (this Field type is not sized).");
50  }
51 
52  FieldBase(FieldBase const &) = default;
53  FieldBase(FieldBase &&) = default;
54  FieldBase &operator=(FieldBase const &) = default;
55  FieldBase &operator=(FieldBase &&) = default;
56  ~FieldBase() = default;
57 
58 protected:
60  void stream(std::ostream &os) const {}
61 };
62 
66 template <>
67 class KeyBase<Flag> {
68 public:
69  static bool const HAS_NAMED_SUBFIELDS = false;
70 
72  Key<FieldBase<Flag>::Element> getStorage() const;
73 
74  KeyBase() = default;
75  KeyBase(KeyBase const &) = default;
76  KeyBase(KeyBase &&) = default;
77  KeyBase &operator=(KeyBase const &) = default;
78  KeyBase &operator=(KeyBase &&) = default;
79  ~KeyBase() = default;
80 };
81 
93 template <>
94 class Key<Flag> : public KeyBase<Flag>, public FieldBase<Flag> {
95 public:
97 
106  template <typename OtherT>
107  bool operator==(Key<OtherT> const &other) const {
108  return false;
109  }
110  template <typename OtherT>
111  bool operator!=(Key<OtherT> const &other) const {
112  return true;
113  }
114 
115  bool operator==(Key const &other) const { return _offset == other._offset && _bit == other._bit; }
116  bool operator!=(Key const &other) const { return !this->operator==(other); }
118 
120  std::size_t hash_value() const noexcept {
121  // Completely arbitrary seed
122  return utils::hashCombine(17, _offset, _bit);
123  }
124 
126  int getOffset() const { return _offset; }
127 
129  int getBit() const { return _bit; }
130 
139  bool isValid() const { return _offset >= 0; }
140 
146  Key() : FieldBase<Flag>(), _offset(-1), _bit(0) {}
147 
148  Key(Key const &) = default;
149  Key(Key &&) = default;
150  Key &operator=(Key const &) = default;
151  Key &operator=(Key &&) = default;
152  ~Key() = default;
153 
155  inline friend std::ostream &operator<<(std::ostream &os, Key<Flag> const &key) {
156  return os << "Key['" << Key<Flag>::getTypeString() << "'](offset=" << key.getOffset()
157  << ", bit=" << key.getBit() << ")";
158  }
159 
160 private:
161  friend class detail::Access;
162  friend class BaseRecord;
163 
165  Value getValue(Element const *p, ndarray::Manager::Ptr const &) const {
166  return (*p) & (Element(1) << _bit);
167  }
168 
170  void setValue(Element *p, ndarray::Manager::Ptr const &, Value v) const {
171  if (v) {
172  *p |= (Element(1) << _bit);
173  } else {
174  *p &= ~(Element(1) << _bit);
175  }
176  }
177 
178  explicit Key(int offset, int bit) : _offset(offset), _bit(bit) {}
179 
180  int _offset;
181  int _bit;
182 };
183 } // namespace table
184 } // namespace afw
185 } // namespace lsst
186 
187 namespace std {
188 template <>
189 struct hash<lsst::afw::table::Key<lsst::afw::table::Flag>> {
192  size_t operator()(argument_type const &obj) const noexcept { return obj.hash_value(); }
193 };
194 } // namespace std
195 
196 #endif // !LSST_AFW_TABLE_Flag_h_INCLUDED
lsst::afw::table::FieldBase< Flag >::FieldBase
FieldBase(FieldBase const &)=default
lsst::afw::table::FieldBase< Flag >::Element
std::int64_t Element
the actual storage type (shared by multiple flag fields)
Definition: Flag.h:35
lsst::afw::table::Key< Flag >::operator!=
bool operator!=(Key< OtherT > const &other) const
Definition: Flag.h:111
lsst::afw::table::Key< Flag >::~Key
~Key()=default
lsst::afw::table::KeyBase::HAS_NAMED_SUBFIELDS
static bool const HAS_NAMED_SUBFIELDS
Definition: KeyBase.h:22
std::string
STL class.
lsst::afw::table::Key::Key
Key() noexcept
Default construct a field.
Definition: Key.h:104
lsst::afw::table::Key< Flag >::Key
Key()
Default construct a field.
Definition: Flag.h:146
lsst::afw::table::Key< Flag >::operator=
Key & operator=(Key const &)=default
lsst::afw::table::FieldBase< Flag >::operator=
FieldBase & operator=(FieldBase const &)=default
lsst::afw::table::KeyBase
A base class for Key that allows subfield keys to be extracted for some field types.
Definition: KeyBase.h:20
lsst::afw
Definition: imageAlgorithm.dox:1
lsst::afw::table::FieldBase< Flag >::stream
void stream(std::ostream &os) const
Defines how fields are printed.
Definition: Flag.h:60
lsst::afw::table::Key< Flag >::hash_value
std::size_t hash_value() const noexcept
Return a hash of this object.
Definition: Flag.h:120
lsst::afw::table::Key< Flag >::isValid
bool isValid() const
Return true if the key was initialized to valid offset.
Definition: Flag.h:139
lsst::afw::table::FieldBase< Flag >::operator=
FieldBase & operator=(FieldBase &&)=default
lsst::afw::table::FieldBase< Flag >::FieldBase
FieldBase()=default
hashCombine.h
lsst::afw::table::KeyBase< Flag >::~KeyBase
~KeyBase()=default
lsst::afw::table::FieldBase< Flag >::getElementCount
int getElementCount() const
Return the number of subfield elements (always one for scalars).
Definition: Flag.h:38
misc.h
lsst::afw::table::Key< Flag >::operator==
bool operator==(Key const &other) const
Definition: Flag.h:115
lsst::afw::table::FieldBase< Flag >::FieldBase
FieldBase(FieldBase &&)=default
lsst::afw::table::Key< Flag >::operator!=
bool operator!=(Key const &other) const
Definition: Flag.h:116
std::ostream
STL class.
lsst::afw::table::FieldBase< Flag >::FieldBase
FieldBase(int)
Definition: Flag.h:47
other
ItemVariant const * other
Definition: Schema.cc:56
lsst::afw::table::BaseRecord
Base class for all records.
Definition: BaseRecord.h:31
lsst::afw::table::KeyBase< Flag >::KeyBase
KeyBase()=default
lsst::pex::exceptions::LogicError
Reports errors in the logical structure of the program.
Definition: Runtime.h:46
lsst::afw::table::KeyBase< Flag >::KeyBase
KeyBase(KeyBase &&)=default
lsst::afw::table::FieldBase< Flag >::~FieldBase
~FieldBase()=default
lsst::afw::table::Key
A class used as a handle to a particular field in a table.
Definition: fwd.h:45
std::int64_t
lsst::afw::table::Key< Flag >::getBit
int getBit() const
The index of this field's bit within the integer it shares with other Flag fields.
Definition: Flag.h:129
lsst::afw::table::Key< Flag >::operator<<
friend std::ostream & operator<<(std::ostream &os, Key< Flag > const &key)
Stringification.
Definition: Flag.h:155
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
LSST_EXCEPT
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
lsst::afw::table::Key< Flag >::operator==
bool operator==(Key< OtherT > const &other) const
Equality comparison.
Definition: Flag.h:107
os
std::ostream * os
Definition: Schema.cc:746
lsst::utils::hashCombine
std::size_t hashCombine(std::size_t seed) noexcept
Combine hashes.
Definition: hashCombine.h:35
lsst::afw::table::FieldBase
Field base class default implementation (used for numeric scalars and lsst::geom::Angle).
Definition: FieldBase.h:43
lsst::afw::table::Key< Flag >::Key
Key(Key &&)=default
lsst::afw::table::KeyBase< Flag >::operator=
KeyBase & operator=(KeyBase const &)=default
lsst::afw::table::FieldBase< Flag >::getTypeString
static std::string getTypeString()
Return a string description of the field type.
Definition: Flag.h:41
lsst::afw::table::KeyBase< Flag >::operator=
KeyBase & operator=(KeyBase &&)=default
lsst::afw::table::detail::Access
Definition: Access.h:31
std::hash< lsst::afw::table::Key< lsst::afw::table::Flag > >::operator()
size_t operator()(argument_type const &obj) const noexcept
Definition: Flag.h:192
std
STL namespace.
key
Key< U > key
Definition: Schema.cc:281
KeyBase.h
lsst::afw::table::KeyBase< Flag >::KeyBase
KeyBase(KeyBase const &)=default
lsst::afw::table::Key< Flag >::Key
Key(Key const &)=default
std::size_t
lsst::afw::table::Key< Flag >::operator=
Key & operator=(Key &&)=default
lsst::afw::table::FieldBase< Flag >::Value
bool Value
the type returned by BaseRecord::get
Definition: Flag.h:34
lsst::afw::table::Key::operator==
bool operator==(Key< OtherT > const &other) const noexcept
Equality comparison.
Definition: Key.h:66
FieldBase.h
lsst::afw::table::Key< Flag >::getOffset
int getOffset() const
Return the offset in bytes of the integer element that holds this field's bit.
Definition: Flag.h:126
lsst::afw::table::Key< Flag >
Key specialization for Flag.
Definition: Flag.h:94
std::hash