libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::BitMask< ENUM > Class Template Reference

A typesafe bit mask representation using class enums. More...

#include <BitMask.hxx>

Classes

struct  All
 Helper type for setting all bits during construction time of BitMask. More...
 

Public Types

using EnumBaseType = typename std::underlying_type<ENUM>::type
 

Public Member Functions

constexpr BitMask ()
 Sets all bits to zero.
 
 BitMask (const All a)
 Sets all bits to one.
 
constexpr BitMask (const std::initializer_list< ENUM > &init_list)
 Sets only the flags found in the given initializer list.
 
constexpr BitMask (const ENUM val)
 Sets exactly the given value to one.
 
constexpr BitMask (const EnumBaseType value)
 Sets exactly the given primitive type bitmask.
 
EnumBaseType raw () const
 Returns the raw bitfield integer.
 
 operator std::string () const
 Return a string representation of the bit mask.
 
bool operator[] (const ENUM flag) const
 Returns a boolean value for the given value,.
 
std::string toString () const
 
BitMaskset (const All)
 Sets all bits it the set.
 
BitMaskset (const ENUM val, bool on_off=true)
 Set or unset the given value.
 
BitMaskset (const std::initializer_list< ENUM > &flags)
 
BitMaskset (const BitMask other)
 Sets all the bits that are also set in other.
 
BitMaskreset ()
 Sets all bits to zero.
 
BitMaskreset (const ENUM val)
 Zeroes the given value.
 
BitMaskreset (const std::initializer_list< ENUM > &flags)
 Zeroes all of the given values.
 
BitMaskreset (const BitMask other)
 
BitMask reset (const BitMask other) const
 
BitMasklimit (const std::initializer_list< ENUM > &flags)
 Sets all bits to zero except the given flags.
 
BitMasklimit (const ENUM flag)
 Sets all bits to zero except the given flag.
 
BitMasklimit (const BitMask other)
 Sets all bits to zero except the bits in the given mask.
 
BitMask limit (const BitMask other) const
 
BitMaskflip ()
 Flip every bit in the bit mask.
 
BitMaskflip (const ENUM val)
 Flips the given value.
 
size_t count () const
 Returns the number of set bits.
 
constexpr size_t size () const
 Returns the maximum number of bits that can be stored in the bit mask.
 
bool test (const ENUM val) const
 Returns whether the given value is set.
 
bool testAny (const ENUM val) const
 Returns whether any of the bits of val are set.
 
bool only (const ENUM val) const
 Returns whether this is the only value set.
 
bool any () const
 Returns whether any bit in the bitset is set.
 
bool allOf (const std::initializer_list< ENUM > &flags) const
 Tests whether all of the given values are set.
 
bool allOf (const BitMask other) const
 
bool anyOf (const std::initializer_list< ENUM > &flags) const
 Returns whether any of the given values is set.
 
bool anyOf (const BitMask other) const
 
bool none () const
 Returns whether no bit in the bitset is set.
 
bool operator== (const BitMask &other) const
 
bool operator!= (const BitMask &other) const
 
bool operator& (const ENUM val) const
 Checks whether any bit of the given value is set,.
 
ENUM operator& (const BitMask &other) const
 returns an ENUM value containing only the values found in both masks.
 
BitMask operator~ () const
 

Static Public Attributes

static constexpr All all {}
 

Protected Attributes

EnumBaseType m_flags = 0
 

Friends

BitMask operator- (const BitMask &first, const BitMask &second)
 Returns an object containing all the bits found in first without the bits found inc second.
 
BitMask operator- (const BitMask &first, const ENUM val)
 Returns an object containing all the bits found in first without val.
 
BitMask operator+ (const BitMask &first, const BitMask &second)
 Returns an object containing all the bits found in first and second.
 
BitMask operator+ (const BitMask &first, const ENUM val)
 Returns an object containing all the bits found in first and /also val.
 

Detailed Description

template<typename ENUM>
class cosmos::BitMask< ENUM >

A typesafe bit mask representation using class enums.

Instead of using a plain integer type and preprocessor constants to denote certain bit positions, this type provides a type safe implementation of a bitset with named bits based on a strongly typed enum class.

The interface is kept similar to that of std::bitset.

Definition at line 19 of file BitMask.hxx.

Member Typedef Documentation

◆ EnumBaseType

template<typename ENUM >
using cosmos::BitMask< ENUM >::EnumBaseType = typename std::underlying_type<ENUM>::type

Definition at line 26 of file BitMask.hxx.

Constructor & Destructor Documentation

◆ BitMask() [1/5]

template<typename ENUM >
cosmos::BitMask< ENUM >::BitMask ( )
inlineconstexpr

Sets all bits to zero.

Definition at line 31 of file BitMask.hxx.

31{}

◆ BitMask() [2/5]

template<typename ENUM >
cosmos::BitMask< ENUM >::BitMask ( const All a)
inlineexplicit

Sets all bits to one.

Definition at line 34 of file BitMask.hxx.

34 {
35 set(a);
36 }
BitMask & set(const All)
Sets all bits it the set.
Definition BitMask.hxx:77

◆ BitMask() [3/5]

template<typename ENUM >
cosmos::BitMask< ENUM >::BitMask ( const std::initializer_list< ENUM > & init_list)
inlineconstexpr

Sets only the flags found in the given initializer list.

Definition at line 39 of file BitMask.hxx.

39 {
40 for (auto val: init_list) {
41 m_flags |= static_cast<EnumBaseType>(val);
42 }
43 }

◆ BitMask() [4/5]

template<typename ENUM >
cosmos::BitMask< ENUM >::BitMask ( const ENUM val)
inlineexplicitconstexpr

Sets exactly the given value to one.

Definition at line 46 of file BitMask.hxx.

46 :
47 m_flags{static_cast<EnumBaseType>(val)}
48 {}

◆ BitMask() [5/5]

template<typename ENUM >
cosmos::BitMask< ENUM >::BitMask ( const EnumBaseType value)
inlineexplicitconstexpr

Sets exactly the given primitive type bitmask.

Definition at line 51 of file BitMask.hxx.

51 :
52 m_flags{value}
53 {}

Member Function Documentation

◆ allOf() [1/2]

template<typename ENUM >
bool cosmos::BitMask< ENUM >::allOf ( const BitMask< ENUM > other) const
inline

Definition at line 232 of file BitMask.hxx.

232 {
233 return (m_flags & other.m_flags) == other.m_flags;
234 }

◆ allOf() [2/2]

template<typename ENUM >
bool cosmos::BitMask< ENUM >::allOf ( const std::initializer_list< ENUM > & flags) const
inline

Tests whether all of the given values are set.

Definition at line 223 of file BitMask.hxx.

223 {
224 for (auto val: flags) {
225 if (!test(val))
226 return false;
227 }
228
229 return true;
230 }
bool test(const ENUM val) const
Returns whether the given value is set.
Definition BitMask.hxx:194

◆ any()

template<typename ENUM >
bool cosmos::BitMask< ENUM >::any ( ) const
inline

Returns whether any bit in the bitset is set.

Definition at line 218 of file BitMask.hxx.

218 {
219 return m_flags != 0;
220 }

◆ anyOf() [1/2]

template<typename ENUM >
bool cosmos::BitMask< ENUM >::anyOf ( const BitMask< ENUM > other) const
inline

Definition at line 246 of file BitMask.hxx.

246 {
247 return (m_flags & other.m_flags) != 0;
248 }

◆ anyOf() [2/2]

template<typename ENUM >
bool cosmos::BitMask< ENUM >::anyOf ( const std::initializer_list< ENUM > & flags) const
inline

Returns whether any of the given values is set.

Definition at line 237 of file BitMask.hxx.

237 {
238 for (auto val: flags) {
239 if (test(val))
240 return true;
241 }
242
243 return false;
244 }

◆ count()

template<typename ENUM >
size_t cosmos::BitMask< ENUM >::count ( ) const
inline

Returns the number of set bits.

Definition at line 172 of file BitMask.hxx.

172 {
173 size_t ret = 0;
174
175 for (size_t bit = 0; bit < size(); bit++) {
176 auto val = 1 << bit;
177 if (this->test(static_cast<ENUM>(val)))
178 ret++;
179 }
180
181 return ret;
182 }
constexpr size_t size() const
Returns the maximum number of bits that can be stored in the bit mask.
Definition BitMask.hxx:185

◆ flip() [1/2]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::flip ( )
inline

Flip every bit in the bit mask.

Definition at line 160 of file BitMask.hxx.

160 {
161 m_flags = ~m_flags;
162 return *this;
163 }

◆ flip() [2/2]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::flip ( const ENUM val)
inline

Flips the given value.

Definition at line 166 of file BitMask.hxx.

166 {
167 m_flags ^= static_cast<EnumBaseType>(val);
168 return *this;
169 }

◆ limit() [1/4]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::limit ( const BitMask< ENUM > other)
inline

Sets all bits to zero except the bits in the given mask.

Definition at line 149 of file BitMask.hxx.

149 {
150 m_flags &= other.raw();
151 return *this;
152 }

◆ limit() [2/4]

template<typename ENUM >
BitMask cosmos::BitMask< ENUM >::limit ( const BitMask< ENUM > other) const
inline

Definition at line 154 of file BitMask.hxx.

154 {
155 auto ret = *this;
156 return ret.limit(other);
157 }

◆ limit() [3/4]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::limit ( const ENUM flag)
inline

Sets all bits to zero except the given flag.

Definition at line 144 of file BitMask.hxx.

144 {
145 return limit({flag});
146 }
BitMask & limit(const std::initializer_list< ENUM > &flags)
Sets all bits to zero except the given flags.
Definition BitMask.hxx:133

◆ limit() [4/4]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::limit ( const std::initializer_list< ENUM > & flags)
inline

Sets all bits to zero except the given flags.

Definition at line 133 of file BitMask.hxx.

133 {
134 EnumBaseType mask = 0;
135 for (auto val: flags) {
136 mask |= static_cast<EnumBaseType>(val);
137 }
138
139 m_flags &= mask;
140 return *this;
141 }

◆ none()

template<typename ENUM >
bool cosmos::BitMask< ENUM >::none ( ) const
inline

Returns whether no bit in the bitset is set.

Definition at line 251 of file BitMask.hxx.

251 {
252 return !this->any();
253 }
bool any() const
Returns whether any bit in the bitset is set.
Definition BitMask.hxx:218

◆ only()

template<typename ENUM >
bool cosmos::BitMask< ENUM >::only ( const ENUM val) const
inline

Returns whether this is the only value set.

Definition at line 213 of file BitMask.hxx.

213 {
214 return m_flags == static_cast<EnumBaseType>(val);
215 }

◆ operator std::string()

template<typename ENUM >
cosmos::BitMask< ENUM >::operator std::string ( ) const
inlineexplicit

Return a string representation of the bit mask.

Definition at line 59 of file BitMask.hxx.

59{ return toString(); }

◆ operator!=()

template<typename ENUM >
bool cosmos::BitMask< ENUM >::operator!= ( const BitMask< ENUM > & other) const
inline

Definition at line 259 of file BitMask.hxx.

259 {
260 return !(*this == other);
261 }

◆ operator&() [1/2]

template<typename ENUM >
ENUM cosmos::BitMask< ENUM >::operator& ( const BitMask< ENUM > & other) const
inline

returns an ENUM value containing only the values found in both masks.

Definition at line 269 of file BitMask.hxx.

269 {
270 return ENUM{other.raw() & this->raw()};
271 }
EnumBaseType raw() const
Returns the raw bitfield integer.
Definition BitMask.hxx:56

◆ operator&() [2/2]

template<typename ENUM >
bool cosmos::BitMask< ENUM >::operator& ( const ENUM val) const
inline

Checks whether any bit of the given value is set,.

See also
testAny().

Definition at line 264 of file BitMask.hxx.

264 {
265 return testAny(val);
266 }
bool testAny(const ENUM val) const
Returns whether any of the bits of val are set.
Definition BitMask.hxx:207

◆ operator==()

template<typename ENUM >
bool cosmos::BitMask< ENUM >::operator== ( const BitMask< ENUM > & other) const
inline

Definition at line 255 of file BitMask.hxx.

255 {
256 return m_flags == other.m_flags;
257 }

◆ operator[]()

template<typename ENUM >
bool cosmos::BitMask< ENUM >::operator[] ( const ENUM flag) const
inline

Returns a boolean value for the given value,.

See also
test().

Definition at line 62 of file BitMask.hxx.

62{ return test(flag); }

◆ operator~()

template<typename ENUM >
BitMask cosmos::BitMask< ENUM >::operator~ ( ) const
inline

Definition at line 273 of file BitMask.hxx.

273 {
274 return BitMask{~m_flags};
275 }
constexpr BitMask()
Sets all bits to zero.
Definition BitMask.hxx:31

◆ raw()

template<typename ENUM >
EnumBaseType cosmos::BitMask< ENUM >::raw ( ) const
inline

Returns the raw bitfield integer.

Definition at line 56 of file BitMask.hxx.

56{ return m_flags; }

◆ reset() [1/5]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::reset ( )
inline

Sets all bits to zero.

Definition at line 103 of file BitMask.hxx.

103 {
104 m_flags = EnumBaseType{0};
105 return *this;
106 }

◆ reset() [2/5]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::reset ( const BitMask< ENUM > other)
inline

Definition at line 122 of file BitMask.hxx.

122 {
123 m_flags &= ~(other.raw());
124 return *this;
125 }

◆ reset() [3/5]

template<typename ENUM >
BitMask cosmos::BitMask< ENUM >::reset ( const BitMask< ENUM > other) const
inline

Definition at line 127 of file BitMask.hxx.

127 {
128 auto ret = *this;
129 return ret.reset(other);
130 }

◆ reset() [4/5]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::reset ( const ENUM val)
inline

Zeroes the given value.

Definition at line 109 of file BitMask.hxx.

109 {
110 reset({val});
111 return *this;
112 }
BitMask & reset()
Sets all bits to zero.
Definition BitMask.hxx:103

◆ reset() [5/5]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::reset ( const std::initializer_list< ENUM > & flags)
inline

Zeroes all of the given values.

Definition at line 115 of file BitMask.hxx.

115 {
116 for (auto val: flags) {
117 m_flags &= ~static_cast<EnumBaseType>(val);
118 }
119 return *this;
120 }

◆ set() [1/4]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::set ( const All )
inline

Sets all bits it the set.

Definition at line 77 of file BitMask.hxx.

77 {
78 m_flags = ~EnumBaseType(0);
79 return *this;
80 }

◆ set() [2/4]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::set ( const BitMask< ENUM > other)
inline

Sets all the bits that are also set in other.

Definition at line 97 of file BitMask.hxx.

97 {
98 m_flags |= other.m_flags;
99 return *this;
100 }

◆ set() [3/4]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::set ( const ENUM val,
bool on_off = true )
inline

Set or unset the given value.

Definition at line 83 of file BitMask.hxx.

83 {
84 const auto bitval = static_cast<EnumBaseType>(val);
85 m_flags = (on_off ? (m_flags|bitval) : (m_flags & ~bitval));
86 return *this;
87 }

◆ set() [4/4]

template<typename ENUM >
BitMask & cosmos::BitMask< ENUM >::set ( const std::initializer_list< ENUM > & flags)
inline

Definition at line 89 of file BitMask.hxx.

89 {
90 for (auto flag: flags) {
91 set(flag);
92 }
93 return *this;
94 }

◆ size()

template<typename ENUM >
size_t cosmos::BitMask< ENUM >::size ( ) const
inlineconstexpr

Returns the maximum number of bits that can be stored in the bit mask.

Definition at line 185 of file BitMask.hxx.

185 {
186 return sizeof(EnumBaseType) * 8;
187 }

◆ test()

template<typename ENUM >
bool cosmos::BitMask< ENUM >::test ( const ENUM val) const
inline

Returns whether the given value is set.

Note
If val consists of multiple bits then this only returns true if all of the bits it represents are set.

Definition at line 194 of file BitMask.hxx.

194 {
195 const auto raw_val = static_cast<EnumBaseType>(val);
196 return (m_flags & raw_val) == raw_val;
197 }

◆ testAny()

template<typename ENUM >
bool cosmos::BitMask< ENUM >::testAny ( const ENUM val) const
inline

Returns whether any of the bits of val are set.

This is only different to test() if the given value consists of multiple bit positions. In this case testAny() will return true even if only some of the bit positions are set in the mask, while test() will only return true if all of the bit positions are set.

Definition at line 207 of file BitMask.hxx.

207 {
208 return ((m_flags & static_cast<EnumBaseType>(val)) != 0);
209 }

◆ toString()

template<typename ENUM >
std::string cosmos::BitMask< ENUM >::toString ( ) const
inline

Definition at line 64 of file BitMask.hxx.

64 {
65 std::string ret;
66
67 // append each bit starting with the highest one
68 for (int bit = size() - 1; bit >= 0; bit--) {
69 const auto val = 1 << bit;
70 ret.push_back(this->test(static_cast<ENUM>(val)) ? '1' : '0');
71 }
72
73 return ret;
74 }

Friends And Related Symbol Documentation

◆ operator+ [1/2]

template<typename ENUM >
BitMask operator+ ( const BitMask< ENUM > & first,
const BitMask< ENUM > & second )
friend

Returns an object containing all the bits found in first and second.

Definition at line 290 of file BitMask.hxx.

290 {
291 BitMask ret{first};
292 return ret.set(second);
293 }

◆ operator+ [2/2]

template<typename ENUM >
BitMask operator+ ( const BitMask< ENUM > & first,
const ENUM val )
friend

Returns an object containing all the bits found in first and /also val.

Definition at line 296 of file BitMask.hxx.

296 {
297 BitMask ret{first};
298 return ret.set(val);
299 }

◆ operator- [1/2]

template<typename ENUM >
BitMask operator- ( const BitMask< ENUM > & first,
const BitMask< ENUM > & second )
friend

Returns an object containing all the bits found in first without the bits found inc second.

Definition at line 278 of file BitMask.hxx.

278 {
279 BitMask ret{first};
280 return ret.reset(second);
281 }

◆ operator- [2/2]

template<typename ENUM >
BitMask operator- ( const BitMask< ENUM > & first,
const ENUM val )
friend

Returns an object containing all the bits found in first without val.

Definition at line 284 of file BitMask.hxx.

284 {
285 BitMask ret{first};
286 return ret.reset(val);
287 }

Member Data Documentation

◆ all

template<typename ENUM >
All cosmos::BitMask< ENUM >::all {}
staticconstexpr

Definition at line 24 of file BitMask.hxx.

24{};

◆ m_flags

template<typename ENUM >
EnumBaseType cosmos::BitMask< ENUM >::m_flags = 0
protected

Definition at line 303 of file BitMask.hxx.


The documentation for this class was generated from the following file: