1999-07-07 22:04:58 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: zipstream.h
|
|
|
|
// Purpose: wxZipInputStream for reading files from ZIP archive
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Copyright: (c) 1999 Vaclav Slavik
|
|
|
|
// Licence: wxWindows Licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __ZIPSTREAM_H__
|
|
|
|
#define __ZIPSTREAM_H__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-08-08 13:58:24 +00:00
|
|
|
#pragma interface "zipstrm.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
#endif
|
|
|
|
|
1999-07-11 15:56:57 +00:00
|
|
|
#include "wx/defs.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
|
1999-07-11 15:56:57 +00:00
|
|
|
#if wxUSE_STREAMS && wxUSE_ZIPSTREAM && wxUSE_ZLIB
|
|
|
|
|
|
|
|
#include "wx/stream.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
// wxZipInputStream
|
|
|
|
// This class is input stream from ZIP archive. The archive
|
|
|
|
// must be local file (accessible via FILE*)
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxZipInputStream : public wxInputStream
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
size_t m_Size;
|
|
|
|
off_t m_Pos;
|
|
|
|
void *m_Archive;
|
|
|
|
// this void* is handle of archive .
|
|
|
|
// I'm sorry it is void and not proper type but I don't want
|
|
|
|
// to make unzip.h header public.
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxZipInputStream(const wxString& archive, const wxString& file);
|
|
|
|
// archive is name of .zip archive, file is name of file to be extracted.
|
|
|
|
// Remember that archive must be local file accesible via fopen, fread functions!
|
|
|
|
~wxZipInputStream();
|
|
|
|
|
|
|
|
protected:
|
1999-08-04 12:30:06 +00:00
|
|
|
virtual size_t GetSize() const {return m_Size;}
|
1999-07-07 22:04:58 +00:00
|
|
|
virtual size_t OnSysRead(void *buffer, size_t bufsize);
|
|
|
|
virtual off_t OnSysSeek(off_t seek, wxSeekMode mode);
|
|
|
|
virtual off_t OnSysTell() const {return m_Pos;}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-07-11 15:56:57 +00:00
|
|
|
#endif
|
|
|
|
// wxUSE_STREAMS && wxUSE_ZIPSTREAM && wxUSE_ZLIB
|
1999-07-07 22:04:58 +00:00
|
|
|
|
1999-07-11 15:56:57 +00:00
|
|
|
#endif
|
|
|
|
// __ZIPSTREAM_H__
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|