4
votes
1answer
270 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* >( ...
0
votes
1answer
273 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. ...
1
vote
1answer
356 views

Run-time error reading a .gz file using boost::iostreams and zlib

I am trying to read a .gz file and print the text content on screen by using boost::iostreams. This is just a simple experiment to learn about this library, and I am using the "directors.list.gz" file ...
2
votes
1answer
296 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 ...
4
votes
1answer
1k views

boost gzip decompress byte array

I implemented the gzip/zlib decompression of files as shown in their examples on the boost site. void CompressionUtils::Inflate(std::ifstream& inputFile, ...
0
votes
1answer
272 views

Compiling Boost.Iostream on Linux with custom compiled zlib causes multiple jam errors

So I try to create a script for automated compilation of Boost with Iostream with Zlib support on linux. Currently I have this: #!/bin/bash BOOST_DISTRO_SITE=surfnet.dl.sourceforge.net ...
0
votes
1answer
476 views

How to get around building Boost.Iostreams separatly with zip (gz) support on Windows?

I want to compile such simple code: #include <iostream> #include <fstream> #include <string> #include <zlib.h> #include <boost/iostreams/filtering_streambuf.hpp> ...
3
votes
1answer
1k views

boost::filtering_streambuf with gzip_decompressor(), how to access line by line from file

I wrote a Logparser Application and now I want to implement decompression of .gz files. I tried it with boost::iostreams and zlib which seems to work, but I don't know how to handle the input I get ...
2
votes
2answers
819 views

boost::iostreams::zlib::default_noheader seems to be ignored

I'm having trouble getting boost::iostreams's zlib filter to ignore gzip headers ... It seems that setting zlib_param's default_noheader to true and then calling zlib_decompressor() produces the ...
3
votes
2answers
826 views

Zlib compression in boost::iostreams not compatible with zlib.NET

I want to send compressed data between my C# to a C++ application in ZLIB format. In C++, I use the zlib_compressor/zlib_decompressor available in boost::iostreams. In C#, I am currently using the ...
3
votes
1answer
827 views

Flushing a boost::iostreams::zlib_compressor. How to obtain a “sync flush”?

Is there some magic required to obtain a "zlib sync flush" when using boost::iostreams::zlib_compressor ? Just invoking flush on the filter, or strict_sync on a filtering_ostream containing it ...