Tagged Questions
0
votes
1answer
272 views
How to write binary data to a compressed file
I have some financial data that I am processing in C++. I am storing it in a simple binary format because it requires fewer resources and is fast, however I would like to add compression to the file. ...
4
votes
1answer
779 views
boost iostreams with bzip2 built from source on windows
Recently, I spent some time working on getting boost version 1.44.0 built on windows with both iostreams support for both zlib & bzip2 compression filters. For a variety of reasons, it was decided ...
1
vote
2answers
799 views
exceptions from boost::iostreams::copy()
In the below code, I have a corrupt "hello.bz2" which has stray characters beyond the EOF.
Is there a way to make the boost::iostreams::copy() call to throw ?
#include <fstream>
#include ...
5
votes
1answer
1k views
BOOST.IOstreams: trouble to write to bzip2
Hello I am would like to store my data in to bzip2 file using Boost.IOstreams.
void test_bzip()
{
namespace BI = boost::iostreams;
{
string fname="test.bz2";
{
...