I have binary data in a byte sequence described by const unsigned char *p and size_t len. I want to be able to pass this data to a function that expects a std::istream *.
I think I should be able to do this without copying the data, unsafe casts or writing a new stream class. But so far I'm failing. Can anyone help?
Update
Thanks all for the comments. This would seem to be an unanswerable question because std::istream operates with char and conversion would at some point require at least an integer cast from unsigned char.
The pragmatic approach is to do this:
std::string s(reinterpret_cast<const char*>(p), len);
std::istringstream i(s);
and pass &i to the function expecting std::istream *.
unsigned char*tochar*is unsafe, is because of the hypothetical existence of non-2's-complement implementations. On 1s' complement or sign-magnitude,*(signed char*)p != (signed char)*p;, wherepis anunsigned char*and the referand has the top bit set. If you want to avoid this "unsafe" reinterpretation, you have to perform an unsigned-signed conversion elsewhere. To avoid a copy as well, I think that would mean writing a stream, since AFAIK there isn't anything in the standard libraries that reads from anunsigned char*. – Steve Jessop Jul 19 '11 at 15:05unsigned chartocharis itself slightly "unsafe" because of those same implementations - ifcharis signed neither one of them can represent-128(assumingCHAR_BIT == 8), so how is the unsigned value128going to be converted to signed? The standard leaves the result of converting values greater thanCHAR_MAXimplementation-defined. – Steve Jessop Jul 19 '11 at 15:11