/usr/include/hpptools/zstr.hpp is in libhpptools-dev 1.1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | /// @author Matei David, Ontario Institute for Cancer Research
/// @version 1.0
/// @date 2015
/// @copyright MIT Public License
///
/// C++ libz wrapper.
///
/// Reference:
/// http://stackoverflow.com/questions/14086417/how-to-write-custom-input-stream-in-c
#ifndef __ZSTR_HPP
#define __ZSTR_HPP
#include <cassert>
#include <fstream>
#include <sstream>
#include <zlib.h>
#include "strict_fstream.hpp"
namespace zstr
{
/// Exception class thrown by failed zlib operations.
class Exception
: public std::exception
{
public:
Exception(z_stream * zstrm_p, int ret)
: _msg("zlib: ")
{
switch (ret)
{
case Z_STREAM_ERROR:
_msg += "Z_STREAM_ERROR: ";
break;
case Z_DATA_ERROR:
_msg += "Z_DATA_ERROR: ";
break;
case Z_MEM_ERROR:
_msg += "Z_MEM_ERROR: ";
break;
case Z_VERSION_ERROR:
_msg += "Z_VERSION_ERROR: ";
break;
case Z_BUF_ERROR:
_msg += "Z_BUF_ERROR: ";
break;
default:
std::ostringstream oss;
oss << ret;
_msg += "[" + oss.str() + "]: ";
break;
}
_msg += zstrm_p->msg;
}
Exception(const std::string msg) : _msg(msg) {}
const char * what() const noexcept { return _msg.c_str(); }
private:
std::string _msg;
}; // class Exception
namespace detail
{
class z_stream_wrapper
: public z_stream
{
public:
z_stream_wrapper(bool _is_input = true, int _level = Z_DEFAULT_COMPRESSION)
: is_input(_is_input)
{
this->zalloc = Z_NULL;
this->zfree = Z_NULL;
this->opaque = Z_NULL;
int ret;
if (is_input)
{
this->avail_in = 0;
this->next_in = Z_NULL;
ret = inflateInit2(this, 15+32);
}
else
{
ret = deflateInit2(this, _level, Z_DEFLATED, 15+16, 8, Z_DEFAULT_STRATEGY);
}
if (ret != Z_OK) throw Exception(this, ret);
}
~z_stream_wrapper()
{
if (is_input)
{
inflateEnd(this);
}
else
{
deflateEnd(this);
}
}
private:
bool is_input;
}; // class z_stream_wrapper
} // namespace detail
class istreambuf
: public std::streambuf
{
public:
istreambuf(std::streambuf * _sbuf_p,
std::streamsize _buff_size = default_buff_size, bool _auto_detect = true)
: sbuf_p(_sbuf_p),
zstrm_p(nullptr),
buff_size(_buff_size),
auto_detect(_auto_detect),
auto_detect_run(false),
is_text(false)
{
assert(sbuf_p);
in_buff = new char [buff_size];
in_buff_start = in_buff;
in_buff_end = in_buff;
out_buff = new char [buff_size];
setg(out_buff, out_buff, out_buff);
}
istreambuf(const istreambuf &) = delete;
istreambuf(istreambuf &&) = default;
istreambuf & operator = (const istreambuf &) = delete;
istreambuf & operator = (istreambuf &&) = default;
virtual ~istreambuf()
{
delete [] in_buff;
delete [] out_buff;
if (zstrm_p) delete zstrm_p;
}
virtual std::streambuf::int_type underflow()
{
if (this->gptr() == this->egptr())
{
// pointers for free region in output buffer
char * out_buff_free_start = out_buff;
do
{
// read more input if none available
if (in_buff_start == in_buff_end)
{
// empty input buffer: refill from the start
in_buff_start = in_buff;
std::streamsize sz = sbuf_p->sgetn(in_buff, buff_size);
in_buff_end = in_buff + sz;
if (in_buff_end == in_buff_start) break; // end of input
}
// auto detect if the stream contains text or deflate data
if (auto_detect and not auto_detect_run)
{
auto_detect_run = true;
unsigned char b0 = *reinterpret_cast< unsigned char * >(in_buff_start);
unsigned char b1 = *reinterpret_cast< unsigned char * >(in_buff_start + 1);
// Ref:
// http://en.wikipedia.org/wiki/Gzip
// http://stackoverflow.com/questions/9050260/what-does-a-zlib-header-look-like
is_text = not (in_buff_start + 2 <= in_buff_end
and ((b0 == 0x1F and b1 == 0x8B) // gzip header
or (b0 == 0x78 and (b1 == 0x01 // zlib header
or b1 == 0x9C
or b1 == 0xDA))));
}
if (is_text)
{
// simply swap in_buff and out_buff, and adjust pointers
assert(in_buff_start == in_buff);
std::swap(in_buff, out_buff);
out_buff_free_start = in_buff_end;
in_buff_start = in_buff;
in_buff_end = in_buff;
}
else
{
// run inflate() on input
if (not zstrm_p) zstrm_p = new detail::z_stream_wrapper(true);
zstrm_p->next_in = reinterpret_cast< decltype(zstrm_p->next_in) >(in_buff_start);
zstrm_p->avail_in = in_buff_end - in_buff_start;
zstrm_p->next_out = reinterpret_cast< decltype(zstrm_p->next_out) >(out_buff_free_start);
zstrm_p->avail_out = (out_buff + buff_size) - out_buff_free_start;
int ret = inflate(zstrm_p, Z_NO_FLUSH);
// process return code
if (ret != Z_OK and ret != Z_STREAM_END) throw Exception(zstrm_p, ret);
// update in&out pointers following inflate()
in_buff_start = reinterpret_cast< decltype(in_buff_start) >(zstrm_p->next_in);
in_buff_end = in_buff_start + zstrm_p->avail_in;
out_buff_free_start = reinterpret_cast< decltype(out_buff_free_start) >(zstrm_p->next_out);
assert(out_buff_free_start + zstrm_p->avail_out == out_buff + buff_size);
// if stream ended, deallocate inflator
if (ret == Z_STREAM_END)
{
delete zstrm_p;
zstrm_p = nullptr;
}
}
} while (out_buff_free_start == out_buff);
// 2 exit conditions:
// - end of input: there might or might not be output available
// - out_buff_free_start != out_buff: output available
this->setg(out_buff, out_buff, out_buff_free_start);
}
return this->gptr() == this->egptr()
? traits_type::eof()
: traits_type::to_int_type(*this->gptr());
}
private:
std::streambuf * sbuf_p;
char * in_buff;
char * in_buff_start;
char * in_buff_end;
char * out_buff;
detail::z_stream_wrapper * zstrm_p;
std::streamsize buff_size;
bool auto_detect;
bool auto_detect_run;
bool is_text;
static const std::streamsize default_buff_size = 1 << 20;
}; // class istreambuf
class ostreambuf
: public std::streambuf
{
public:
ostreambuf(std::streambuf * _sbuf_p,
std::streamsize _buff_size = default_buff_size, int _level = Z_DEFAULT_COMPRESSION)
: sbuf_p(_sbuf_p),
zstrm_p(new detail::z_stream_wrapper(false, _level)),
buff_size(_buff_size)
{
assert(sbuf_p);
in_buff = new char [buff_size];
out_buff = new char [buff_size];
setp(in_buff, in_buff + buff_size);
}
ostreambuf(const ostreambuf &) = delete;
ostreambuf(ostreambuf &&) = default;
ostreambuf & operator = (const ostreambuf &) = delete;
ostreambuf & operator = (ostreambuf &&) = default;
int deflate_loop(int flush)
{
while (true)
{
zstrm_p->next_out = reinterpret_cast< decltype(zstrm_p->next_out) >(out_buff);
zstrm_p->avail_out = buff_size;
int ret = deflate(zstrm_p, flush);
if (ret != Z_OK and ret != Z_STREAM_END and ret != Z_BUF_ERROR) throw Exception(zstrm_p, ret);
std::streamsize sz = sbuf_p->sputn(out_buff, reinterpret_cast< decltype(out_buff) >(zstrm_p->next_out) - out_buff);
if (sz != reinterpret_cast< decltype(out_buff) >(zstrm_p->next_out) - out_buff)
{
// there was an error in the sink stream
return -1;
}
if (ret == Z_STREAM_END or ret == Z_BUF_ERROR or sz == 0)
{
break;
}
}
return 0;
}
virtual ~ostreambuf()
{
// flush the zlib stream
if (sync() != 0) throw Exception("~ostreambuf(): error in sink stream");
delete [] in_buff;
delete [] out_buff;
delete zstrm_p;
}
virtual std::streambuf::int_type overflow(std::streambuf::int_type c = traits_type::eof())
{
zstrm_p->next_in = reinterpret_cast< decltype(zstrm_p->next_in) >(pbase());
zstrm_p->avail_in = pptr() - pbase();
while (zstrm_p->avail_in > 0)
{
int r = deflate_loop(Z_NO_FLUSH);
if (r != 0)
{
setp(nullptr, nullptr);
return traits_type::eof();
}
}
setp(in_buff, in_buff + buff_size);
return traits_type::eq_int_type(c, traits_type::eof()) ? traits_type::eof() : sputc(c);
}
virtual int sync()
{
// first, call overflow to clear in_buff
overflow();
if (not pptr()) return -1;
// then, call deflate asking to finish the zlib stream
zstrm_p->next_in = nullptr;
zstrm_p->avail_in = 0;
if (deflate_loop(Z_FINISH) != 0) return -1;
deflateReset(zstrm_p);
return 0;
}
private:
std::streambuf * sbuf_p;
char * in_buff;
char * out_buff;
detail::z_stream_wrapper * zstrm_p;
std::streamsize buff_size;
static const std::streamsize default_buff_size = 1 << 20;
}; // class ostreambuf
class istream
: public std::istream
{
public:
istream(std::istream & is)
: std::istream(new istreambuf(is.rdbuf()))
{
exceptions(std::ios_base::badbit);
}
explicit istream(std::streambuf * sbuf_p)
: std::istream(new istreambuf(sbuf_p))
{
exceptions(std::ios_base::badbit);
}
virtual ~istream()
{
delete rdbuf();
}
}; // class istream
class ostream
: public std::ostream
{
public:
ostream(std::ostream & os)
: std::ostream(new ostreambuf(os.rdbuf()))
{
exceptions(std::ios_base::badbit);
}
explicit ostream(std::streambuf * sbuf_p)
: std::ostream(new ostreambuf(sbuf_p))
{
exceptions(std::ios_base::badbit);
}
virtual ~ostream()
{
delete rdbuf();
}
}; // class ostream
namespace detail
{
template < typename FStream_Type >
struct strict_fstream_holder
{
strict_fstream_holder(const std::string& filename, std::ios_base::openmode mode = std::ios_base::in)
: _fs(filename, mode)
{}
FStream_Type _fs;
}; // class strict_fstream_holder
} // namespace detail
class ifstream
: private detail::strict_fstream_holder< strict_fstream::ifstream >,
public std::istream
{
public:
explicit ifstream(const std::string& filename, std::ios_base::openmode mode = std::ios_base::in)
: detail::strict_fstream_holder< strict_fstream::ifstream >(filename, mode),
std::istream(new istreambuf(_fs.rdbuf()))
{
exceptions(std::ios_base::badbit);
}
virtual ~ifstream()
{
if (rdbuf()) delete rdbuf();
}
}; // class ifstream
class ofstream
: private detail::strict_fstream_holder< strict_fstream::ofstream >,
public std::ostream
{
public:
explicit ofstream(const std::string& filename, std::ios_base::openmode mode = std::ios_base::out)
: detail::strict_fstream_holder< strict_fstream::ofstream >(filename, mode | std::ios_base::binary),
std::ostream(new ostreambuf(_fs.rdbuf()))
{
exceptions(std::ios_base::badbit);
}
virtual ~ofstream()
{
if (rdbuf()) delete rdbuf();
}
}; // class ofstream
} // namespace zstr
#endif
|