2009-11-14 21:08:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef ZLIB_DECOMPRESSOR_H
|
|
|
|
#define ZLIB_DECOMPRESSOR_H
|
|
|
|
|
|
|
|
|
2009-11-15 21:29:53 +00:00
|
|
|
#include <zlib.h>
|
|
|
|
|
2009-11-14 21:08:33 +00:00
|
|
|
#include "ZlibCompressionBase.h"
|
|
|
|
|
|
|
|
|
2009-11-15 21:29:53 +00:00
|
|
|
class DataOutput;
|
|
|
|
|
|
|
|
|
2009-11-14 21:08:33 +00:00
|
|
|
class ZlibDecompressor : public ZlibCompressionBase {
|
|
|
|
public:
|
2009-11-15 21:29:53 +00:00
|
|
|
ZlibDecompressor(DataOutput* 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;
|
|
|
|
DataOutput* fOutput;
|
|
|
|
bool fStreamInitialized;
|
|
|
|
bool fFinished;
|
2009-11-14 21:08:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // ZLIB_DECOMPRESSOR_H
|