5fb1c6ff1f
public and private API (still far from ideal, but a start): * moved several HPKG-classes into the public namespace BPackageKit::HPKG * added fImpl-wrappers around PackageReader and PackageWriter to hide most of the gory details * adjusted 'package'-binary and packagefs accordingly git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40320 a95241bf-73f2-0310-859d-f6bbb57e9c96
56 lines
1.0 KiB
C++
56 lines
1.0 KiB
C++
/*
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _PACKAGE__HPKG__PRIVATE__ZLIB_DECOMPRESSOR_H_
|
|
#define _PACKAGE__HPKG__PRIVATE__ZLIB_DECOMPRESSOR_H_
|
|
|
|
|
|
#include <zlib.h>
|
|
|
|
#include <package/hpkg/ZlibCompressionBase.h>
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
namespace BHPKG {
|
|
|
|
|
|
class BDataOutput;
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
|
class ZlibDecompressor : public ZlibCompressionBase {
|
|
public:
|
|
ZlibDecompressor(BDataOutput* output);
|
|
~ZlibDecompressor();
|
|
|
|
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,
|
|
size_t& _uncompressedSize);
|
|
|
|
private:
|
|
z_stream fStream;
|
|
BDataOutput* fOutput;
|
|
bool fStreamInitialized;
|
|
bool fFinished;
|
|
};
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
} // namespace BHPKG
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__HPKG__PRIVATE__ZLIB_DECOMPRESSOR_H_
|