Boost.Iostreams is a C++ framework for defining streams, stream buffers and I/O filters.

learn more… | top users | synonyms

8
votes
1answer
8k views

C++ “hello world” Boost tee example program

The Boost C++ library has Function Template tee The class templates tee_filter and tee_device provide two ways to split an output sequence so that all data is directed simultaneously to two ...
4
votes
2answers
2k views

Using boost::iostreams::tee_device?

Can someone help me? I am trying to do something like the following: #include <boost/iostreams/tee.hpp> #include <boost/iostreams/stream.hpp> #include <sstream> #include ...
16
votes
2answers
5k views

How to hook up Boost serialization & iostreams to serialize & gzip an object to string?

I've been using the Boost serialization library, which is actually pretty nice, and lets me make simple wrappers to save my serializable objects to strings, like so: namespace bar = boost::archive; ...
6
votes
4answers
3k views

Does Boost.Serialization serialize differently on different platforms?

I use Boost.Serialization to serialize a std::map. The code looks like this void Dictionary::serialize(std::string & buffer) { try { std::stringstream ss; ...
2
votes
1answer
294 views

How can I decompress a vector of deflated data with Boost?

I have a vector that contains zlib-compressed (deflated) data. I would like to decompress it with Boost's filtering_istream. There is only one example on their site, which operates on a stream of data ...
6
votes
1answer
4k views

Can someone provide an example of seeking, reading, and writing a >4GB file using boost iostreams

I have read that boost iostreams supposedly supports 64 bit access to large files semi-portable way. Their FAQ mentions 64 bit offset functions, but there is no examples on how to use them. Has ...
4
votes
1answer
267 views

Boost IO Stream and ZLib speed up

I have a large file of data I have compressed with Zlib using boost IOStreams and filtering stream buffers: boost::iostreams::array_source uncompressedArray( reinterpret_cast< const char* >( ...
1
vote
1answer
337 views

compile error for boost::iostream::filtering_streambuf

Just trying to compress a string with bzip2 so that I can send it over a pipe with ReadFile. The following line earns me the following compile error. in.push(uncompressed_string); Error 6 error ...
0
votes
0answers
64 views

IOStream - expose MemoryInputStream buffer and it's size

I want to implement a boost iostream MemoryInputStream like this: class MemoryInputDevice : public boost::iostreams::source { public: MemoryInputDevice(char* buffer, size_t size): ...