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 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/*
This file is part of Warzone 2100.
Copyright (C) 2025 Warzone 2100 Project
Warzone 2100 is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Warzone 2100 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Warzone 2100; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
#include "compression_adapter.h"
#if !defined(ZLIB_CONST)
# define ZLIB_CONST
#endif
#include <zlib.h>
/// <summary>
/// Implementation of `ICompressionAdapter` interface, which uses the
/// Zlib library to compress/decompress the data.
/// </summary>
class ZlibCompressionAdapter : public ICompressionAdapter
{
public:
explicit ZlibCompressionAdapter();
virtual ~ZlibCompressionAdapter() override;
virtual net::result<void> initialize() override;
virtual net::result<void> compress(const void* src, size_t size) override;
virtual net::result<void> flushCompressionStream() override;
virtual std::vector<uint8_t>& compressionOutBuffer() override
{
return deflateOutBuf_;
}
virtual const std::vector<uint8_t>& compressionOutBuffer() const override
{
return deflateOutBuf_;
}
virtual net::result<void> decompress(void* dst, size_t size) override;
virtual std::vector<uint8_t>& decompressionInBuffer() override
{
return inflateInBuf_;
}
virtual const std::vector<uint8_t>& decompressionInBuffer() const override
{
return inflateInBuf_;
}
virtual size_t availableSpaceToDecompress() const override;
virtual bool decompressionStreamConsumedAllInput() const override;
virtual bool decompressionNeedInput() const override
{
return inflateNeedInput_;
}
virtual void setDecompressionNeedInput(bool needInput) override
{
inflateNeedInput_ = needInput;
}
virtual void resetDecompressionStreamInputSize(size_t size) override;
private:
void resetCompressionStreamInput(const void* src, size_t size);
void resetDecompressionStreamOutput(void* dst, size_t size);
std::vector<uint8_t> deflateOutBuf_;
std::vector<uint8_t> inflateInBuf_;
z_stream deflateStream_;
z_stream inflateStream_;
bool inflateNeedInput_ = false;
};
|