libcosmos
Linux C++ System Programming Library
|
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 |
BitMask & | set (const All) |
Sets all bits it the set. | |
BitMask & | set (const ENUM val, bool on_off=true) |
Set or unset the given value. | |
BitMask & | set (const std::initializer_list< ENUM > &flags) |
BitMask & | set (const BitMask other) |
Sets all the bits that are also set in other . | |
BitMask & | reset () |
Sets all bits to zero. | |
BitMask & | reset (const ENUM val) |
Zeroes the given value. | |
BitMask & | reset (const std::initializer_list< ENUM > &flags) |
Zeroes all of the given values. | |
BitMask & | reset (const BitMask other) |
BitMask | reset (const BitMask other) const |
BitMask & | limit (const std::initializer_list< ENUM > &flags) |
Sets all bits to zero except the given flags. | |
BitMask & | limit (const ENUM flag) |
Sets all bits to zero except the given flag. | |
BitMask & | limit (const BitMask other) |
Sets all bits to zero except the bits in the given mask. | |
BitMask | limit (const BitMask other) const |
BitMask & | flip () |
Flip every bit in the bit mask. | |
BitMask & | flip (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 . | |
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.
using cosmos::BitMask< ENUM >::EnumBaseType = typename std::underlying_type<ENUM>::type |
Definition at line 26 of file BitMask.hxx.
|
inlineconstexpr |
|
inlineexplicit |
|
inlineconstexpr |
Sets only the flags found in the given initializer list.
Definition at line 39 of file BitMask.hxx.
|
inlineexplicitconstexpr |
Sets exactly the given value to one.
Definition at line 46 of file BitMask.hxx.
|
inlineexplicitconstexpr |
Sets exactly the given primitive type bitmask.
Definition at line 51 of file BitMask.hxx.
|
inline |
Definition at line 232 of file BitMask.hxx.
|
inline |
Tests whether all of the given values are set.
Definition at line 223 of file BitMask.hxx.
|
inline |
Returns whether any bit in the bitset is set.
Definition at line 218 of file BitMask.hxx.
|
inline |
Definition at line 246 of file BitMask.hxx.
|
inline |
Returns whether any of the given values is set.
Definition at line 237 of file BitMask.hxx.
|
inline |
Returns the number of set bits.
Definition at line 172 of file BitMask.hxx.
|
inline |
Flip every bit in the bit mask.
Definition at line 160 of file BitMask.hxx.
|
inline |
Flips the given value.
Definition at line 166 of file BitMask.hxx.
|
inline |
Sets all bits to zero except the bits in the given mask.
Definition at line 149 of file BitMask.hxx.
|
inline |
Definition at line 154 of file BitMask.hxx.
|
inline |
Sets all bits to zero except the given flag.
Definition at line 144 of file BitMask.hxx.
|
inline |
Sets all bits to zero except the given flags.
Definition at line 133 of file BitMask.hxx.
|
inline |
Returns whether no bit in the bitset is set.
Definition at line 251 of file BitMask.hxx.
|
inline |
Returns whether this is the only value set.
Definition at line 213 of file BitMask.hxx.
|
inlineexplicit |
Return a string representation of the bit mask.
Definition at line 59 of file BitMask.hxx.
|
inline |
Definition at line 259 of file BitMask.hxx.
|
inline |
returns an ENUM value containing only the values found in both masks.
Definition at line 269 of file BitMask.hxx.
|
inline |
Checks whether any bit of the given value is set,.
Definition at line 264 of file BitMask.hxx.
|
inline |
Definition at line 255 of file BitMask.hxx.
|
inline |
Returns a boolean value for the given value,.
Definition at line 62 of file BitMask.hxx.
|
inline |
Definition at line 273 of file BitMask.hxx.
|
inline |
|
inline |
Sets all bits to zero.
Definition at line 103 of file BitMask.hxx.
|
inline |
Definition at line 122 of file BitMask.hxx.
|
inline |
Definition at line 127 of file BitMask.hxx.
|
inline |
Zeroes the given value.
Definition at line 109 of file BitMask.hxx.
|
inline |
Zeroes all of the given values.
Definition at line 115 of file BitMask.hxx.
|
inline |
Sets all bits it the set.
Definition at line 77 of file BitMask.hxx.
|
inline |
Sets all the bits that are also set in other
.
Definition at line 97 of file BitMask.hxx.
|
inline |
Set or unset the given value.
Definition at line 83 of file BitMask.hxx.
|
inline |
Definition at line 89 of file BitMask.hxx.
|
inlineconstexpr |
Returns the maximum number of bits that can be stored in the bit mask.
Definition at line 185 of file BitMask.hxx.
|
inline |
Returns whether the given value is set.
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.
|
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.
|
inline |
Definition at line 64 of file BitMask.hxx.
|
friend |
Returns an object containing all the bits found in first
and second
.
Definition at line 290 of file BitMask.hxx.
Returns an object containing all the bits found in first
and /also val
.
Definition at line 296 of file BitMask.hxx.
|
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.
Returns an object containing all the bits found in first
without val
.
Definition at line 284 of file BitMask.hxx.
|
staticconstexpr |
Definition at line 24 of file BitMask.hxx.
|
protected |
Definition at line 303 of file BitMask.hxx.