File: zlib_streambuf.h

package info (click to toggle)
prismlauncher 10.0.5-2
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 16,244 kB
  • sloc: cpp: 83,598; java: 1,293; python: 114; sh: 78; xml: 9; makefile: 7
file content (46 lines) | stat: -rw-r--r-- 973 bytes parent folder | download
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
#ifndef ZLIB_STREAMBUF_H_INCLUDED
#define ZLIB_STREAMBUF_H_INCLUDED

#include <stdexcept>
#include <streambuf>
#include <vector>
#include <zlib.h>
#include "nbt_export.h"

namespace zlib
{

///Exception thrown in case zlib encounters a problem
class NBT_EXPORT zlib_error : public std::runtime_error
{
public:
    const int errcode;

    zlib_error(const char* msg, int errcode):
        std::runtime_error(msg
                         ? std::string(zError(errcode)) + ": " + msg
                         : zError(errcode)),
        errcode(errcode)
    {}
};

///Base class for deflate_streambuf and inflate_streambuf
class zlib_streambuf : public std::streambuf
{
protected:
    std::vector<char> in;
    std::vector<char> out;
    z_stream zstr;

    explicit zlib_streambuf(size_t bufsize):
        in(bufsize), out(bufsize)
    {
        zstr.zalloc = Z_NULL;
        zstr.zfree = Z_NULL;
        zstr.opaque = Z_NULL;
    }
};

}

#endif // ZLIB_STREAMBUF_H_INCLUDED