X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12028905135250524409f1e7b9bfa9c55e5ce16b..74f4dabba9bdf86dd176cad53855248bc57f0d83:/include/wx/zstream.h diff --git a/include/wx/zstream.h b/include/wx/zstream.h index 165ea240d2..de88e07b56 100644 --- a/include/wx/zstream.h +++ b/include/wx/zstream.h @@ -2,7 +2,7 @@ // Name: zstream.h // Purpose: Memory stream classes // Author: Guilhem Lavaux -// Modified by: +// Modified by: Mike Wetherell // Created: 11/07/98 // RCS-ID: $Id$ // Copyright: (c) Guilhem Lavaux @@ -21,36 +21,61 @@ #include "wx/stream.h" +// Compression level +enum { + wxZ_DEFAULT_COMPRESSION = -1, + wxZ_NO_COMPRESSION = 0, + wxZ_BEST_SPEED = 1, + wxZ_BEST_COMPRESSION = 9 +}; + +// Flags +enum { + wxZLIB_NO_HEADER = 0, // raw deflate stream, no header or checksum + wxZLIB_ZLIB = 1, // zlib header and checksum + wxZLIB_GZIP = 2 // gzip header and checksum, requires zlib 1.2+ +}; + class WXDLLIMPEXP_BASE wxZlibInputStream: public wxFilterInputStream { public: - wxZlibInputStream(wxInputStream& stream); + wxZlibInputStream(wxInputStream& stream, int flags = wxZLIB_ZLIB | wxZLIB_GZIP); virtual ~wxZlibInputStream(); + char Peek() { return wxInputStream::Peek(); } + size_t GetSize() const { return wxInputStream::GetSize(); } + protected: size_t OnSysRead(void *buffer, size_t size); + off_t OnSysTell() const { return m_pos; } protected: size_t m_z_size; unsigned char *m_z_buffer; struct z_stream_s *m_inflate; + off_t m_pos; DECLARE_NO_COPY_CLASS(wxZlibInputStream) }; class WXDLLIMPEXP_BASE wxZlibOutputStream: public wxFilterOutputStream { public: - wxZlibOutputStream(wxOutputStream& stream, int level = -1); + wxZlibOutputStream(wxOutputStream& stream, int level = -1, int flags = wxZLIB_ZLIB); virtual ~wxZlibOutputStream(); - void Sync(); + void Sync() { DoFlush(false); } + size_t GetSize() const { return (size_t)m_pos; } protected: size_t OnSysWrite(const void *buffer, size_t size); + off_t OnSysTell() const { return m_pos; } + + virtual void DoFlush(bool final); protected: size_t m_z_size; unsigned char *m_z_buffer; struct z_stream_s *m_deflate; + off_t m_pos; DECLARE_NO_COPY_CLASS(wxZlibOutputStream) };