X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/856d2e527d20faf46ce40734e858c7cc92b2f704..a2b9e9520297da0f7d13e4cc2e36acdf2bda105d:/include/wx/zstream.h diff --git a/include/wx/zstream.h b/include/wx/zstream.h index 65fa71c615..66be16c5df 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 @@ -11,48 +11,76 @@ #ifndef _WX_WXZSTREAM_H__ #define _WX_WXZSTREAM_H__ -#ifdef __GNUG__ -#pragma interface +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) +#pragma interface "zstream.h" #endif -#include +#include "wx/defs.h" -class wxZlibInputStream: public wxFilterInputStream { +#if wxUSE_ZLIB && wxUSE_STREAMS + +#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 = 1 // required for use in Gzip and Zip files +}; + +class WXDLLIMPEXP_BASE wxZlibInputStream: public wxFilterInputStream { public: - wxZlibInputStream(wxInputStream& stream); + wxZlibInputStream(wxInputStream& stream, int flags = 0); virtual ~wxZlibInputStream(); - bool Eof() const; + char Peek() { return wxInputStream::Peek(); } + size_t GetSize() const { return wxInputStream::GetSize(); } protected: - size_t DoRead(void *buffer, size_t size); - off_t DoSeekInput(off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode)) { return wxInvalidOffset; } - off_t DoTellInput() const { return wxInvalidOffset; } + 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 wxZlibOutputStream: public wxFilterOutputStream { +class WXDLLIMPEXP_BASE wxZlibOutputStream: public wxFilterOutputStream { public: - wxZlibOutputStream(wxOutputStream& stream); + wxZlibOutputStream(wxOutputStream& stream, int level = -1, int flags = 0); virtual ~wxZlibOutputStream(); - void Sync(); - - bool Bad() const; + void Sync() { DoFlush(false); } + size_t GetSize() const { return (size_t)m_pos; } protected: - size_t DoWrite(const void *buffer, size_t size); - off_t DoSeekOutput(off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode)) { return wxInvalidOffset; } - off_t DoTellOutput() const { return wxInvalidOffset; } + 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) }; #endif + // wxUSE_ZLIB && wxUSE_STREAMS + +#endif + // _WX_WXZSTREAM_H__ +