95d84e4176
* added my own copyright to a couple of files that I changed git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40321 a95241bf-73f2-0310-859d-f6bbb57e9c96
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
/*
|
|
* Copyright 2009,2011, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _PACKAGE__HPKG__PACKAGE_DATA_H_
|
|
#define _PACKAGE__HPKG__PACKAGE_DATA_H_
|
|
|
|
|
|
#include <package/hpkg/HPKGDefs.h>
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
namespace BHPKG {
|
|
|
|
|
|
class BPackageData {
|
|
public:
|
|
BPackageData();
|
|
|
|
uint64 CompressedSize() const
|
|
{ return fCompressedSize; }
|
|
uint64 UncompressedSize() const
|
|
{ return fUncompressedSize; }
|
|
uint64 Offset() const
|
|
{ return fEncodedInline ? 0 : fOffset; }
|
|
uint32 Compression() const { return fCompression; }
|
|
uint32 ChunkSize() const { return fChunkSize; }
|
|
|
|
bool IsEncodedInline() const
|
|
{ return fEncodedInline; }
|
|
const uint8* InlineData() const { return fInlineData; }
|
|
|
|
void SetData(uint64 size, uint64 offset);
|
|
void SetData(uint8 size, const void* data);
|
|
|
|
void SetCompression(uint32 compression)
|
|
{ fCompression = compression; }
|
|
void SetUncompressedSize(uint64 size)
|
|
{ fUncompressedSize = size; }
|
|
void SetChunkSize(uint32 size)
|
|
{ fChunkSize = size; }
|
|
|
|
private:
|
|
uint64 fCompressedSize;
|
|
uint64 fUncompressedSize;
|
|
union {
|
|
uint64 fOffset;
|
|
uint8 fInlineData[B_HPKG_MAX_INLINE_DATA_SIZE];
|
|
};
|
|
uint32 fChunkSize;
|
|
uint32 fCompression;
|
|
bool fEncodedInline;
|
|
};
|
|
|
|
|
|
} // namespace BHPKG
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__HPKG__PACKAGE_DATA_H_
|