2009-11-14 21:08:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2014-02-10 18:21:50 +01:00
|
|
|
#ifndef _PRIVATE__ZLIB_DECOMPRESSOR_H_
|
|
|
|
#define _PRIVATE__ZLIB_DECOMPRESSOR_H_
|
2009-11-14 21:08:33 +00:00
|
|
|
|
|
|
|
|
2009-11-15 21:29:53 +00:00
|
|
|
#include <zlib.h>
|
|
|
|
|
2014-02-10 18:21:50 +01:00
|
|
|
#include <ZlibCompressionBase.h>
|
2011-01-27 23:17:03 +00:00
|
|
|
|
|
|
|
|
2014-02-10 18:21:50 +01:00
|
|
|
class BDataIO;
|
2009-11-14 21:08:33 +00:00
|
|
|
|
|
|
|
|
2011-01-30 15:05:38 +00:00
|
|
|
namespace BPrivate {
|
2009-11-15 21:29:53 +00:00
|
|
|
|
|
|
|
|
2009-11-14 21:08:33 +00:00
|
|
|
class ZlibDecompressor : public ZlibCompressionBase {
|
|
|
|
public:
|
2014-02-10 18:21:50 +01:00
|
|
|
ZlibDecompressor(BDataIO* output);
|
2009-11-14 21:08:33 +00:00
|
|
|
~ZlibDecompressor();
|
|
|
|
|
2009-11-15 21:29:53 +00:00
|
|
|
status_t Init();
|
|
|
|
status_t DecompressNext(const void* input,
|
|
|
|
size_t inputSize);
|
|
|
|
status_t Finish();
|
|
|
|
|
|
|
|
static status_t DecompressSingleBuffer(const void* input,
|
|
|
|
size_t inputSize, void* output,
|
|
|
|
size_t outputSize,
|
2009-11-14 21:08:33 +00:00
|
|
|
size_t& _uncompressedSize);
|
2009-11-15 21:29:53 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
z_stream fStream;
|
2014-02-10 18:21:50 +01:00
|
|
|
BDataIO* fOutput;
|
2009-11-15 21:29:53 +00:00
|
|
|
bool fStreamInitialized;
|
|
|
|
bool fFinished;
|
2009-11-14 21:08:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-01-27 23:17:03 +00:00
|
|
|
} // namespace BPrivate
|
|
|
|
|
2011-01-30 15:05:38 +00:00
|
|
|
#endif // _PACKAGE__HPKG__PRIVATE__ZLIB_DECOMPRESSOR_H_
|