1998-07-14 12:06:50 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: zstream.h
|
|
|
|
// Purpose: Memory stream classes
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 11/07/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Guilhem Lavaux
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_WXZSTREAM_H__
|
|
|
|
#define _WX_WXZSTREAM_H__
|
1998-07-14 12:06:50 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
1999-01-04 18:34:42 +00:00
|
|
|
#include "wx/defs.h"
|
1999-01-04 13:52:06 +00:00
|
|
|
|
1999-06-15 20:21:59 +00:00
|
|
|
#if wxUSE_ZLIB && wxUSE_STREAMS
|
1999-01-04 13:52:06 +00:00
|
|
|
|
1999-08-20 22:52:21 +00:00
|
|
|
#include "wx/stream.h"
|
1998-07-14 12:06:50 +00:00
|
|
|
|
1998-11-16 11:48:53 +00:00
|
|
|
class WXDLLEXPORT wxZlibInputStream: public wxFilterInputStream {
|
1998-07-14 12:06:50 +00:00
|
|
|
public:
|
|
|
|
wxZlibInputStream(wxInputStream& stream);
|
|
|
|
virtual ~wxZlibInputStream();
|
|
|
|
|
|
|
|
protected:
|
1998-10-14 17:36:50 +00:00
|
|
|
size_t OnSysRead(void *buffer, size_t size);
|
1998-07-24 17:13:47 +00:00
|
|
|
|
|
|
|
protected:
|
1998-07-14 12:06:50 +00:00
|
|
|
size_t m_z_size;
|
|
|
|
unsigned char *m_z_buffer;
|
1998-09-17 17:30:13 +00:00
|
|
|
struct z_stream_s *m_inflate;
|
1998-07-14 12:06:50 +00:00
|
|
|
};
|
|
|
|
|
1998-11-16 11:48:53 +00:00
|
|
|
class WXDLLEXPORT wxZlibOutputStream: public wxFilterOutputStream {
|
1998-07-14 12:06:50 +00:00
|
|
|
public:
|
|
|
|
wxZlibOutputStream(wxOutputStream& stream);
|
|
|
|
virtual ~wxZlibOutputStream();
|
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
void Sync();
|
1998-07-14 12:06:50 +00:00
|
|
|
|
|
|
|
protected:
|
1998-10-14 17:36:50 +00:00
|
|
|
size_t OnSysWrite(const void *buffer, size_t size);
|
1998-07-24 17:13:47 +00:00
|
|
|
|
|
|
|
protected:
|
1998-07-14 12:06:50 +00:00
|
|
|
size_t m_z_size;
|
|
|
|
unsigned char *m_z_buffer;
|
1998-09-17 17:30:13 +00:00
|
|
|
struct z_stream_s *m_deflate;
|
1998-07-14 12:06:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1999-06-15 20:21:59 +00:00
|
|
|
// wxUSE_ZLIB && wxUSE_STREAMS
|
1999-01-04 13:52:06 +00:00
|
|
|
|
|
|
|
#endif
|
1999-07-09 15:30:31 +00:00
|
|
|
// _WX_WXZSTREAM_H__
|
|
|
|
|