#include <wx/zstream.h>
This stream compresses all data written to it.
The compressed output can be in zlib or gzip format. Note that writing the gzip format requires zlib version 1.2.1 or greater (the builtin version does support gzip format).
The stream is not seekable, wxOutputStream::SeekO() returns wxInvalidOffset.
Public Member Functions | |
wxZlibOutputStream (wxOutputStream &stream, int level=-1, int flags=wxZLIB_ZLIB) | |
Creates a new write-only compressed stream. | |
wxZlibOutputStream (wxOutputStream *stream, int level=-1, int flags=wxZLIB_ZLIB) | |
Creates a new write-only compressed stream. | |
bool | SetDictionary (const char *data, const size_t datalen) |
Sets the dictionary to the specified chunk of data. | |
bool | SetDictionary (const wxMemoryBuffer &buf) |
Sets the dictionary to the specified chunk of data. | |
Public Member Functions inherited from wxFilterOutputStream | |
wxFilterOutputStream (wxOutputStream &stream) | |
Initializes a "filter" stream. | |
wxFilterOutputStream (wxOutputStream *stream) | |
Initializes a "filter" stream. | |
Public Member Functions inherited from wxOutputStream | |
wxOutputStream () | |
Creates a dummy wxOutputStream object. | |
virtual | ~wxOutputStream () |
Destructor. | |
virtual bool | Close () |
Closes the stream, returning false if an error occurs. | |
virtual size_t | LastWrite () const |
Returns the number of bytes written during the last Write(). | |
void | PutC (char c) |
Puts the specified character in the output queue and increments the stream position. | |
virtual wxFileOffset | SeekO (wxFileOffset pos, wxSeekMode mode=wxFromStart) |
Changes the stream current position. | |
virtual wxFileOffset | TellO () const |
Returns the current stream position. | |
virtual wxOutputStream & | Write (const void *buffer, size_t size) |
Writes up to the specified amount of bytes using the data of buffer. | |
wxOutputStream & | Write (wxInputStream &stream_in) |
Reads data from the specified input stream and stores them in the current stream. | |
bool | WriteAll (const void *buffer, size_t size) |
Writes exactly the specified number of bytes from the buffer. | |
Public Member Functions inherited from wxStreamBase | |
wxStreamBase () | |
Creates a dummy stream object. | |
virtual | ~wxStreamBase () |
Destructor. | |
wxStreamError | GetLastError () const |
This function returns the last error. | |
virtual wxFileOffset | GetLength () const |
Returns the length of the stream in bytes. | |
virtual size_t | GetSize () const |
This function returns the size of the stream. | |
virtual bool | IsOk () const |
Returns true if no error occurred on the stream. | |
virtual bool | IsSeekable () const |
Returns true if the stream supports seeking to arbitrary offsets. | |
void | Reset (wxStreamError error=wxSTREAM_NO_ERROR) |
Resets the stream state. | |
bool | operator! () const |
Returns the opposite of IsOk(). | |
Static Public Member Functions | |
static bool | CanHandleGZip () |
Returns true if zlib library in use can handle gzip compressed data. | |
Additional Inherited Members | |
Protected Member Functions inherited from wxOutputStream | |
size_t | OnSysWrite (const void *buffer, size_t bufsize) |
Internal function. | |
wxZlibOutputStream::wxZlibOutputStream | ( | wxOutputStream & | stream, |
int | level = -1 , |
||
int | flags = wxZLIB_ZLIB |
||
) |
Creates a new write-only compressed stream.
level means level of compression. It is number between 0 and 9 (including these values) where 0 means no compression and 9 best but slowest compression. -1 is default value (currently equivalent to 6).
If the parent stream is passed as a pointer then the new filter stream takes ownership of it. If it is passed by reference then it does not.
The flags wxZLIB_ZLIB and wxZLIB_GZIP specify whether the output data will be in zlib or gzip format. wxZLIB_ZLIB is the default.
If flags is wxZLIB_NO_HEADER, then a raw deflate stream is output without either zlib or gzip headers. This is a lower level mode, which is not usually used directly. It can be used to embed a raw deflate stream in a higher level protocol.
The values of the wxZlibCompressionLevels and wxZLibFlags enumerations can be used.
wxZlibOutputStream::wxZlibOutputStream | ( | wxOutputStream * | stream, |
int | level = -1 , |
||
int | flags = wxZLIB_ZLIB |
||
) |
Creates a new write-only compressed stream.
level means level of compression. It is number between 0 and 9 (including these values) where 0 means no compression and 9 best but slowest compression. -1 is default value (currently equivalent to 6).
If the parent stream is passed as a pointer then the new filter stream takes ownership of it. If it is passed by reference then it does not.
The flags wxZLIB_ZLIB and wxZLIB_GZIP specify whether the output data will be in zlib or gzip format. wxZLIB_ZLIB is the default.
If flags is wxZLIB_NO_HEADER, then a raw deflate stream is output without either zlib or gzip headers. This is a lower level mode, which is not usually used directly. It can be used to embed a raw deflate stream in a higher level protocol.
The values of the wxZlibCompressionLevels and wxZLibFlags enumerations can be used.
|
static |
Returns true if zlib library in use can handle gzip compressed data.
bool wxZlibOutputStream::SetDictionary | ( | const char * | data, |
const size_t | datalen | ||
) |
Sets the dictionary to the specified chunk of data.
This can improve compression rate but note that the dictionary has to be the same when you deflate the data as when you inflate the data, otherwise you will inflate corrupted data.
Returns true if the dictionary was successfully set.
bool wxZlibOutputStream::SetDictionary | ( | const wxMemoryBuffer & | buf | ) |
Sets the dictionary to the specified chunk of data.
This can improve compression rate but note that the dictionary has to be the same when you deflate the data as when you inflate the data, otherwise you will inflate corrupted data.
Returns true if the dictionary was successfully set.