aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/http/http_compress.cpp
blob: b6593fe99d086242473ff44c1d91de759e22cd79 (plain) (blame)
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
#include "http.h"

#include <zlib.h>

namespace NHttp {

TString CompressDeflate(TStringBuf source) {
    int compressionlevel = Z_BEST_COMPRESSION;
    z_stream zs = {};

    if (deflateInit(&zs, compressionlevel) != Z_OK) {
        throw yexception() << "deflateInit failed while compressing";
    }

    zs.next_in = (Bytef*)source.data();
    zs.avail_in = source.size();

    int ret;
    char outbuffer[32768];
    TString result;

    // retrieve the compressed bytes blockwise
    do {
        zs.next_out = reinterpret_cast<Bytef*>(outbuffer);
        zs.avail_out = sizeof(outbuffer);

        ret = deflate(&zs, Z_FINISH);

        if (result.size() < zs.total_out) {
            result.append(outbuffer, zs.total_out - result.size());
        }
    } while (ret == Z_OK);

    deflateEnd(&zs);

    if (ret != Z_STREAM_END) {
        throw yexception() << "Exception during zlib compression: (" << ret << ") " << zs.msg;
    }
    return result;
}

TString DecompressDeflate(TStringBuf source) {
    z_stream zs = {};

    if (inflateInit(&zs) != Z_OK) {
        throw yexception() << "inflateInit failed while decompressing";
    }

    zs.next_in = (Bytef*)source.data();
    zs.avail_in = source.size();

    int ret;
    char outbuffer[32768];
    TString result;

    // retrieve the decompressed bytes blockwise
    do {
        zs.next_out = reinterpret_cast<Bytef*>(outbuffer);
        zs.avail_out = sizeof(outbuffer);

        ret = inflate(&zs, Z_NO_FLUSH);

        if (result.size() < zs.total_out) {
            result.append(outbuffer, zs.total_out - result.size());
        }
    } while (ret == Z_OK);

    inflateEnd(&zs);

    if (ret != Z_STREAM_END) {
        throw yexception() << "Exception during zlib decompression: (" << ret << ") " << zs.msg;
    }
    return result;
}

}