minetestmapper/ZlibDecompressor.cpp

62 lines
1.1 KiB
C++
Raw Normal View History

2012-09-18 10:43:34 +02:00
#include <zlib.h>
2012-09-18 12:46:15 +02:00
#include <stdint.h>
2012-09-18 10:43:34 +02:00
#include "ZlibDecompressor.h"
2022-02-09 22:46:07 +01:00
ZlibDecompressor::ZlibDecompressor(const u8 *data, size_t size):
2012-09-18 10:43:34 +02:00
m_data(data),
m_seekPos(0),
m_size(size)
{
}
ZlibDecompressor::~ZlibDecompressor()
{
}
2022-02-09 22:46:07 +01:00
void ZlibDecompressor::setSeekPos(size_t seekPos)
2012-09-18 10:43:34 +02:00
{
m_seekPos = seekPos;
}
2022-02-09 22:46:07 +01:00
size_t ZlibDecompressor::seekPos() const
2012-09-18 10:43:34 +02:00
{
return m_seekPos;
}
ustring ZlibDecompressor::decompress()
2012-09-18 10:43:34 +02:00
{
const unsigned char *data = m_data + m_seekPos;
2022-02-09 22:46:07 +01:00
const size_t size = m_size - m_seekPos;
2012-09-18 10:43:34 +02:00
ustring buffer;
constexpr size_t BUFSIZE = 128 * 1024;
unsigned char temp_buffer[BUFSIZE];
2012-09-18 10:43:34 +02:00
z_stream strm;
strm.zalloc = Z_NULL;
strm.zfree = Z_NULL;
strm.opaque = Z_NULL;
strm.next_in = Z_NULL;
strm.avail_in = size;
if (inflateInit(&strm) != Z_OK)
2012-09-18 10:43:34 +02:00
throw DecompressError();
strm.next_in = const_cast<unsigned char *>(data);
int ret = 0;
do {
strm.avail_out = BUFSIZE;
strm.next_out = temp_buffer;
ret = inflate(&strm, Z_NO_FLUSH);
buffer.append(temp_buffer, BUFSIZE - strm.avail_out);
2012-09-18 10:43:34 +02:00
} while (ret == Z_OK);
if (ret != Z_STREAM_END)
2012-09-18 10:43:34 +02:00
throw DecompressError();
2012-09-18 10:43:34 +02:00
m_seekPos += strm.next_in - data;
2022-02-09 22:46:07 +01:00
(void) inflateEnd(&strm);
2012-09-18 10:43:34 +02:00
return buffer;
}