This C++ header-only library enables the use of C++ standard iostreams to access ZLib-compressed streams.
For input access (decompression), the compression format is auto-detected, and multiple concatenated compressed streams are decompressed seamlessly.
For output access (compression), the only parameter exposed by this API is the compression level.
Alternatives to this library include:
- The original ZLib, through its C API. This does not interact nicely with C++ iostreams.
- The GZStream library. This library does not auto-detect input compression, and it cannot wrap streams (only files).
- The Boost IOStreams library. The library does not auto-detect input compression (by default, though that can be easily implemented with filters), and more importantly, it is not a header-only Boost library.
For an example usage, see examples/ztxtpipe.cpp and examples/zc.cpp.
For input access, the library seamlessly auto-detects whether the source stream is compressed or not. The following compressed streams are detected:
- GZip header, when stream starts with
1F 8B. See GZip format. - ZLib header, when stream starts with
78 01,78 9C, and78 DA. See answer here.
If none of these formats are detected, the library assumes the input is not compressed, and it produces a plain copy of the source stream.
The package provides 6 classes for accessing ZLib streams:
zstr::istreambufis the core decompression class. This is constructed from an existingstd::streambufthat contains source data. Thezstr::istreambufconstructor accepts explicit settings for the internal buffer size (default: 1 MB) and the auto-detection option (default: on). ZLib errors cause exceptions to be thrown.zstr::ostreambufis the core compression class. This is constructed from an existingstd::streambufthat contains sink data. Thezstr::ostreambufconstructor accepts explicit settings for the internal buffer size (default: 1 MB) and the compression option (default: ZLib default). ZLib errors cause exceptions to be thrown.zstr::istreamis a wrapper for azstr::istreambufthat accesses an externalstd::streambuf. It can be constructed from an existingstd::istream(such asstd::cin) orstd::streambuf.zstr::ostreamis a wrapper for azstr::ostreambufthat accesses an externalstd::streambuf. It can be constructed from an existingstd::ostream(such asstd::cout) orstd::streambuf.zstr::ifstreamis a wrapper for azstr::istreambufthat accesses an internalstd::ifstream. This can be used to open a file and read decompressed data from it.zstr::ofstreamis a wrapper for azstr::ostreambufthat accesses an internalstd::ofstream. This can be used to open a file and write compressed data to it.
For all stream objects, the badbit of their expection mask is turned on in order to propagate exceptions.
Released under the MIT license.