blob: 0c5a2cd73c9b3d7b24be16245f4ac0ab5dcaa137 (
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
|
#include "http.h"
#include <zlib.h>
namespace NHttp {
TString THttpOutgoingResponse::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;
}
}
|