I have the following code
std::ostringstream compressedstream;
// Contains the source data to compress
boost::interprocess::obufferstream bufferstream((char*)bin.data(), bin.size());
boost::iostreams::filtering_stream<boost::iostreams::input> in;
in.push(boost::iostreams::gzip_compressor());
in.push(bufferstream); // The bufferstream is the 'device'
boost::iostreams::copy(in, compressedstream);
auto compresseddata = compressedstream.str();
fileContents = &std::vector<uint8_t>(compresseddata.begin(), compresseddata.end());
Which I expect to compress one std::vector<uint8_t>
into another (that's the API, using files etc is not an option).
However, this fails with the following
Error C2668 'boost::iostreams::detail::chain_client<Chain>::push': ambiguous call to overloaded function
could be 'void boost::iostreams::detail::chain_client<Chain>::push<char,std::char_traits<char>>(std::basic_ostream<char,std::char_traits<char>> &,std::streamsize,std::streamsize)'
or 'void boost::iostreams::detail::chain_client<Chain>::push<char,std::char_traits<char>>(std::basic_streambuf<char,std::char_traits<char>> &,std::streamsize,std::streamsize)'
I understand the error, that obufferstream
is being seen as a basic_streambuf
, and a basic_ostream
, but don't know what to do about it. It's not like I can remove one of the superclasses!
What's the correct way to feed a bufferstream
into a filtering_stream
?
A possible way would be to disambiguate, e.g. using
That said, there seems to be a lot of unnecessary steps/complexity. If you wanted to implement this:
I'd do it without
bufferstream
(and the interprocess library) in the first place:This sadly requires a copy because
back_insert_device
would default char_type touint8_t
forData
. That's a shame. We can "trivially" work around it by defining an adhoc converting output "device", like so:See it Live On Coliru
Printing