stream: add stream bit printing object
Allows one to print a given number of bits from an integral value easily using streams.
This commit is contained in:
parent
d78df821bf
commit
67d567b5c3
49
stream.cpp
49
stream.cpp
@ -19,18 +19,57 @@
|
|||||||
|
|
||||||
#include "stream.hpp"
|
#include "stream.hpp"
|
||||||
|
|
||||||
|
#include "debug.hpp"
|
||||||
|
|
||||||
|
using util::stream::null;
|
||||||
|
using util::stream::bits;
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
std::ostream&
|
std::ostream&
|
||||||
nullstream::put (char)
|
null::put (char)
|
||||||
{ return *this; }
|
{ return *this; }
|
||||||
|
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
bool
|
bool
|
||||||
nullstream::good (void) const
|
null::good (void) const
|
||||||
{ return !bad () && !eof () && !fail (); }
|
{ return !bad () && !eof () && !fail (); }
|
||||||
|
|
||||||
|
|
||||||
bool nullstream::bad (void) const { return false; }
|
//-----------------------------------------------------------------------------
|
||||||
bool nullstream::eof (void) const { return false; }
|
bool null::bad (void) const { return false; }
|
||||||
bool nullstream::fail (void) const { return false; }
|
bool null::eof (void) const { return false; }
|
||||||
|
bool null::fail (void) const { return false; }
|
||||||
|
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
bits::bits (uintmax_t _value, unsigned _count):
|
||||||
|
value (_value),
|
||||||
|
count (_count)
|
||||||
|
{
|
||||||
|
CHECK_LE (count, sizeof(value) * 8);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
std::ostream&
|
||||||
|
operator<< (std::ostream &os, util::stream::bits b) {
|
||||||
|
char digits[sizeof (b.value) * 8 + 1] = { 0 };
|
||||||
|
char *cursor = std::end (digits) - 1;
|
||||||
|
|
||||||
|
uintmax_t bits = b.value;
|
||||||
|
unsigned count = b.count;
|
||||||
|
|
||||||
|
while (count) {
|
||||||
|
CHECK_GE (cursor, digits);
|
||||||
|
|
||||||
|
--cursor;
|
||||||
|
*cursor = (bits & 0x01) ? '1' : '0';
|
||||||
|
|
||||||
|
bits >>= 1;
|
||||||
|
count -= 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
os << cursor << "/" << b.count;
|
||||||
|
return os;
|
||||||
|
}
|
||||||
|
18
stream.hpp
18
stream.hpp
@ -22,8 +22,10 @@
|
|||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
namespace util {
|
||||||
class nullstream : public std::ostream {
|
namespace stream {
|
||||||
|
//---------------------------------------------------------------------
|
||||||
|
class null : public std::ostream {
|
||||||
public:
|
public:
|
||||||
std::ostream & put (char c);
|
std::ostream & put (char c);
|
||||||
std::ostream & write (const char *s, std::streamsize n);
|
std::ostream & write (const char *s, std::streamsize n);
|
||||||
@ -43,4 +45,16 @@ class nullstream : public std::ostream {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------
|
||||||
|
struct bits {
|
||||||
|
bits (uintmax_t value, unsigned count);
|
||||||
|
|
||||||
|
uintmax_t value;
|
||||||
|
unsigned count;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::ostream& operator<< (std::ostream&, util::stream::bits);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user