19 #ifndef OPENVDB_TOOLS_STREAM_COMPRESSION_HAS_BEEN_INCLUDED 20 #define OPENVDB_TOOLS_STREAM_COMPRESSION_HAS_BEEN_INCLUDED 23 #include <tbb/spin_mutex.h> 28 class TestStreamCompression;
33 namespace compression {
61 const size_t bufferBytes,
const char* uncompressedBuffer,
const size_t uncompressedBytes);
72 const size_t uncompressedBytes,
size_t& compressedBytes,
const bool resize =
true);
88 const size_t bufferBytes,
const char* compressedBuffer);
98 const size_t expectedBytes,
const bool resize =
true);
118 std::streamoff filepos;
119 long compressedBytes;
120 long uncompressedBytes;
124 using Ptr = std::shared_ptr<Page>;
133 long uncompressedBytes()
const;
137 const char* buffer(
const int index)
const;
140 void readHeader(std::istream&);
144 void readBuffers(std::istream&,
bool delayed);
147 bool isOutOfCore()
const;
151 void copy(
const std::unique_ptr<
char[]>& temp,
int pageSize);
154 void decompress(
const std::unique_ptr<
char[]>& temp);
159 std::unique_ptr<Info> mInfo = std::unique_ptr<Info>(
new Info);
160 std::unique_ptr<char[]> mData;
161 tbb::spin_mutex mMutex;
170 using Ptr = std::unique_ptr<PageHandle>;
182 int size()
const {
return mSize; }
186 std::unique_ptr<char[]>
read();
192 friend class ::TestStreamCompression;
207 using Ptr = std::shared_ptr<PagedInputStream>;
231 int mUncompressedBytes = 0;
232 std::istream* mIs =
nullptr;
234 bool mSizeOnly =
false;
244 using Ptr = std::shared_ptr<PagedOutputStream>;
267 void compressAndWrite(
const char* buffer,
size_t size);
270 void resize(
size_t size);
272 std::unique_ptr<char[]> mData = std::unique_ptr<char[]>(
new char[
PageSize]);
273 std::unique_ptr<char[]> mCompressedData =
nullptr;
276 std::ostream* mOs =
nullptr;
277 bool mSizeOnly =
false;
285 #endif // OPENVDB_TOOLS_STREAM_COMPRESSION_HAS_BEEN_INCLUDED void setInputStream(std::istream &is)
Definition: StreamCompression.h:219
void setSizeOnly(bool sizeOnly)
Size-only mode tags the stream as only reading size data.
Definition: StreamCompression.h:214
OPENVDB_API size_t bloscCompressedSize(const char *buffer, const size_t uncompressedBytes)
Convenience wrapper to retrieve the compressed size of buffer when compressed.
A Paging wrapper to std::istream that is responsible for reading from a given input stream and creati...
Definition: StreamCompression.h:204
SharedPtr< MappedFile > Ptr
Definition: io.h:136
std::ostream & getOutputStream()
Set and get the output stream.
Definition: StreamCompression.h:255
std::shared_ptr< T > SharedPtr
Definition: Types.h:114
bool sizeOnly() const
Definition: StreamCompression.h:252
static fileSize_t write(std::ostream &os, const GridHandle< BufferT > &handle, Codec codec)
std::shared_ptr< PagedOutputStream > Ptr
Definition: StreamCompression.h:244
void setOutputStream(std::ostream &os)
Definition: StreamCompression.h:256
static void read(std::istream &is, GridHandle< BufferT > &handle, Codec codec)
A Paging wrapper to std::ostream that is responsible for writing from a given output stream at interv...
Definition: StreamCompression.h:241
OPENVDB_API std::unique_ptr< char[]> bloscDecompress(const char *buffer, const size_t expectedBytes, const bool resize=true)
Decompress and return the the heap-allocated uncompressed buffer.
static const int PageSize
Definition: StreamCompression.h:105
Stores a variable-size, compressed, delayed-load Page of data that is loaded into memory when accesse...
Definition: StreamCompression.h:111
A PageHandle holds a unique ptr to a Page and a specific stream pointer to a point within the decompr...
Definition: StreamCompression.h:167
std::shared_ptr< Page > Ptr
Definition: StreamCompression.h:124
OPENVDB_API bool bloscCanCompress()
Returns true if compression is available.
Ptr copy()
Return a copy of this PageHandle.
Definition: StreamCompression.h:189
std::istream & getInputStream()
Definition: StreamCompression.h:218
Definition: Exceptions.h:13
std::shared_ptr< PagedInputStream > Ptr
Definition: StreamCompression.h:207
OPENVDB_API size_t bloscUncompressedSize(const char *buffer)
Retrieves the uncompressed size of buffer when uncompressed.
OPENVDB_API std::unique_ptr< char[]> bloscCompress(const char *buffer, const size_t uncompressedBytes, size_t &compressedBytes, const bool resize=true)
Compress and return the heap-allocated compressed buffer.
bool sizeOnly() const
Definition: StreamCompression.h:215
void setSizeOnly(bool sizeOnly)
Size-only mode tags the stream as only writing size data.
Definition: StreamCompression.h:251
static const int BLOSC_MINIMUM_BYTES
Definition: StreamCompression.h:38
std::unique_ptr< PageHandle > Ptr
Definition: StreamCompression.h:170
int size() const
Return the size of the buffer.
Definition: StreamCompression.h:182
#define OPENVDB_VERSION_NAME
The version namespace name for this library version.
Definition: version.h.in:116
static const int BLOSC_PAD_BYTES
Definition: StreamCompression.h:42
#define OPENVDB_USE_VERSION_NAMESPACE
Definition: version.h.in:202