summaryrefslogtreecommitdiff
path: root/include/gzip_helper.hpp
blob: be138092369109679f07863bd4d9a74dcd1e8677 (plain)
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
#pragma once

#include <zlib.h>

#include <cstring>
#include <string>

inline bool gzipInflate(const std::string& compressedBytes,
                        std::string& uncompressedBytes)
{
    if (compressedBytes.empty())
    {
        uncompressedBytes = compressedBytes;
        return true;
    }

    uncompressedBytes.clear();

    unsigned half_length = compressedBytes.size() / 2;

    z_stream strm{};

    // The following line is nolint because we're declaring away constness.
    // It's not clear why the input buffers on zlib aren't const, so this is a
    // bit of a cheat for the moment
    strm.next_in = (Bytef*)compressedBytes.data(); // NOLINT
    strm.avail_in = compressedBytes.size();
    strm.total_out = 0;
    strm.zalloc = Z_NULL;
    strm.zfree = Z_NULL;

    bool done = false;

    if (inflateInit2(&strm, (16 + MAX_WBITS)) != Z_OK)
    {
        return false;
    }

    while (!done)
    {
        // If our output buffer is too small
        if (strm.total_out >= uncompressedBytes.size())
        {
            uncompressedBytes.resize(uncompressedBytes.size() + half_length);
        }

        strm.next_out =
            (Bytef*)(uncompressedBytes.data() + strm.total_out); // NOLINT
        strm.avail_out =
            ((uLong)uncompressedBytes.size() - strm.total_out); // NOLINT

        // Inflate another chunk.
        int err = inflate(&strm, Z_SYNC_FLUSH);
        if (err == Z_STREAM_END)
        {
            done = true;
        }
        else if (err != Z_OK)
        {
            break;
        }
    }

    return inflateEnd(&strm) == Z_OK;
}