#include <senf/Packets/BitsetParser.hh>

Classes | |
| class | reference |
Public Types | |
| typedef std::bitset< N > | value_type |
Public Types inherited from senf::PacketParserBase | |
| typedef detail::packet::iterator | data_iterator |
| Raw data iterator type. More... | |
| typedef detail::packet::size_type | size_type |
| Unsigned integral type. More... | |
| typedef detail::packet::difference_type | difference_type |
| Signed integral type. More... | |
| typedef detail::packet::byte | byte |
| Unsigned 8bit value, the raw value type. More... | |
| typedef PacketData * | state_type |
| Type of the 'state' parameter. More... | |
| typedef PacketParserBase | parser_base_type |
| Base type of the next parser. More... | |
Public Member Functions | |
| BitsetParser (data_iterator i, state_type s) | |
| void | set () |
| void | set (std::size_t pos, bool v=true) |
| void | reset () |
| void | reset (std::size_t pos) |
| void | flip () |
| void | flip (std::size_t pos) |
| bool | any () const |
| bool | none () const |
| bool | all () const |
| bool | test (std::size_t pos) const |
| bool | operator[] (std::size_t pos) const |
| reference | operator[] (std::size_t pos) |
| std::size_t | size () const |
| std::size_t | count () const |
| void | value (value_type const &bset) |
| value_type | value () const |
Public Member Functions inherited from senf::PacketParserBase | |
| data_iterator | i () const |
| Return beginning of data to parse. More... | |
| data_iterator | i (size_type offset) const |
| Return iterator offset bytes from the start. More... | |
| state_type | state () const |
| Return state of this parser. More... | |
| PacketData & | data () const |
| Access the packets raw data container. More... | |
| void | init () const |
| Default implementation. More... | |
Static Public Attributes | |
| static size_type const | fixed_bytes = N/8 + boost::static_unsigned_min<1u, N % 8>::value |
Additional Inherited Members | |
Protected Member Functions inherited from senf::PacketParserBase | |
| ParserProtector | protect () const |
| PacketParserBase (data_iterator i, state_type s) | |
| Standard constructor. More... | |
| PacketParserBase (data_iterator i, state_type s, size_type size) | |
| Size checking constructor. More... | |
| bool | check (size_type size) const |
| Check size of data container. More... | |
| void | validate (size_type size) const |
| Validate size of data container. More... | |
| template<class Parser > | |
| Parser | parse (data_iterator i) const |
| Create sub-parser. More... | |
| template<class Parser , class Arg > | |
| Parser | parse (Arg const &arg, data_iterator i) const |
| Create sub-parser. More... | |
| template<class Parser > | |
| Parser | parse (size_type n) const |
| Create sub-parser. More... | |
| template<class Parser , class Arg > | |
| Parser | parse (Arg const &arg, size_type n) const |
| Create sub-parser. More... | |
| void | defaultInit () const |
| Default implementation. More... | |
| Packet | packet () const |
| Get packet this parser is parsing from. More... | |
| void | resize (size_type oldSize, size_type newSize) |
| Resize data container. More... | |
Definition at line 44 of file BitsetParser.hh.
| typedef std::bitset<N> senf::BitsetParser< N, Endianness >::value_type |
Definition at line 50 of file BitsetParser.hh.
|
inline |
Definition at line 47 of file BitsetParser.hh.
| bool senf::BitsetParser< N, Endianness >::all | ( | ) | const |
| bool senf::BitsetParser< N, Endianness >::any | ( | ) | const |
| std::size_t senf::BitsetParser< N, Endianness >::count | ( | ) | const |
| void senf::BitsetParser< N, Endianness >::flip | ( | ) |
| void senf::BitsetParser< N, Endianness >::flip | ( | std::size_t | pos | ) |
| bool senf::BitsetParser< N, Endianness >::none | ( | ) | const |
| bool senf::BitsetParser< N, Endianness >::operator[] | ( | std::size_t | pos | ) | const |
| reference senf::BitsetParser< N, Endianness >::operator[] | ( | std::size_t | pos | ) |
| void senf::BitsetParser< N, Endianness >::reset | ( | ) |
| void senf::BitsetParser< N, Endianness >::reset | ( | std::size_t | pos | ) |
| void senf::BitsetParser< N, Endianness >::set | ( | ) |
| void senf::BitsetParser< N, Endianness >::set | ( | std::size_t | pos, |
| bool | v = true |
||
| ) |
| std::size_t senf::BitsetParser< N, Endianness >::size | ( | ) | const |
| bool senf::BitsetParser< N, Endianness >::test | ( | std::size_t | pos | ) | const |
| void senf::BitsetParser< N, Endianness >::value | ( | value_type const & | bset | ) |
| value_type senf::BitsetParser< N, Endianness >::value | ( | ) | const |
|
static |
Definition at line 51 of file BitsetParser.hh.