R
Rennie deGraaf
Hello,
I would like to write a function that reads a sequence of unsigned
shorts from /any/ container, converts them to pairs of unsigned chars,
and writes them to /any/ container. In other words, something like this:
That code works with the test driver provided. However, it /also/
compiles and executes if the input container holds something other than
unsigned short or if the output container takes something other than
unsigned char for which implicit conversions are defined. For instance,
getBytes() will compile with inputs from an std::set<double>, despite
the conversion only working properly for unsigned short.
The work-around that I'm currently using is to use BOOST_STATIC_ASSERT
to verify that the types are of the correct sizes in the beginning of
getBytes():
and only works with container classes for which value_type is defined.
What I would like would be a way to define getBytes() to take iterators
to unsigned short and unsigned char but allow the container to vary.
I'd like it to support both STL containers and arrays. Does anyone have
any ideas on how to accomplish this?
Thanks,
Rennie deGraaf
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)
iD8DBQFGQVgNIvU5mZP08HERAt44AKCSYkKH27p6cz2gpfkG5IQFYeMR7ACfRVys
cxcfS/A13OPDaQAlFTNKvjU=
=1qP+
-----END PGP SIGNATURE-----
I would like to write a function that reads a sequence of unsigned
shorts from /any/ container, converts them to pairs of unsigned chars,
and writes them to /any/ container. In other words, something like this:
#include <iterator>
#include <vector>
#include <iostream>
#include <cassert>
template <typename InIt, typename Out>
void
getBytes(const InIt& begin, const InIt& end, const typename std::back_insert_iterator<Out>& o)
{
typename std::back_insert_iterator<Out> out = o;
union
{
unsigned short u16;
unsigned char u8[2];
} elmt;
for (InIt i=begin; i!=end; ++i)
{
elmt.u16 = *i; // disregard endianness for now
out = std::copy(elmt.u8, elmt.u8+2, out);
}
}
int main()
{
std::vector<unsigned short> vec;
std::vector<unsigned char> bytes;
vec.push_back(0x0123);
vec.push_back(0x4567);
vec.push_back(0x89ab);
getBytes(vec.begin(), vec.end(), std::back_inserter(bytes));
return 0;
}
That code works with the test driver provided. However, it /also/
compiles and executes if the input container holds something other than
unsigned short or if the output container takes something other than
unsigned char for which implicit conversions are defined. For instance,
getBytes() will compile with inputs from an std::set<double>, despite
the conversion only working properly for unsigned short.
The work-around that I'm currently using is to use BOOST_STATIC_ASSERT
to verify that the types are of the correct sizes in the beginning of
getBytes():
However, this is non-standard, makes assumptions which may not be safe,BOOST_STATIC_ASSERT(sizeof(typename Out::value_type) == sizeof(unsigned char));
BOOST_STATIC_ASSERT(sizeof(typename InIt::value_type) == sizeof(unsigned short));
and only works with container classes for which value_type is defined.
What I would like would be a way to define getBytes() to take iterators
to unsigned short and unsigned char but allow the container to vary.
I'd like it to support both STL containers and arrays. Does anyone have
any ideas on how to accomplish this?
Thanks,
Rennie deGraaf
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)
iD8DBQFGQVgNIvU5mZP08HERAt44AKCSYkKH27p6cz2gpfkG5IQFYeMR7ACfRVys
cxcfS/A13OPDaQAlFTNKvjU=
=1qP+
-----END PGP SIGNATURE-----