]>
git.saurik.com Git - wxWidgets.git/blob - src/common/zstream.cpp
1 //////////////////////////////////////////////////////////////////////////////
3 // Purpose: Compressed stream classes
4 // Author: Guilhem Lavaux
5 // Modified by: Mike Wetherell
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
19 #if wxUSE_ZLIB && wxUSE_STREAMS
21 #include "wx/zstream.h"
26 // normally, the compiler options should contain -I../zlib, but it is
27 // apparently not the case for all MSW makefiles and so, unless we use
28 // configure (which defines __WX_SETUP_H__) or it is explicitly overridden by
29 // the user (who can define wxUSE_ZLIB_H_IN_PATH), we hardcode the path here
30 #if defined(__WXMSW__) && !defined(__WX_SETUP_H__) && !defined(wxUSE_ZLIB_H_IN_PATH)
31 #include "../zlib/zlib.h"
37 ZSTREAM_BUFFER_SIZE
= 16384,
38 ZSTREAM_GZIP
= 0x10, // gzip header
39 ZSTREAM_AUTO
= 0x20 // auto detect between gzip and zlib
42 //////////////////////
44 //////////////////////
46 wxZlibInputStream::wxZlibInputStream(wxInputStream
& stream
, int flags
)
47 : wxFilterInputStream(stream
)
50 m_z_buffer
= new unsigned char[ZSTREAM_BUFFER_SIZE
];
51 m_z_size
= ZSTREAM_BUFFER_SIZE
;
54 #if WXWIN_COMPATIBILITY_2_4
55 // treat compatibility mode as auto
56 m_24compatibilty
= flags
== wxZLIB_24COMPATIBLE
;
61 // if gzip is asked for but not supported...
62 if ((flags
== wxZLIB_GZIP
|| flags
== wxZLIB_AUTO
) && !CanHandleGZip()) {
63 if (flags
== wxZLIB_AUTO
) {
64 // an error will come later if the input turns out not to be a zlib
68 wxLogError(_("Gzip not supported by this version of zlib"));
69 m_lasterror
= wxSTREAM_READ_ERROR
;
75 m_inflate
= new z_stream_s
;
78 memset(m_inflate
, 0, sizeof(z_stream_s
));
80 // see zlib.h for documentation on windowBits
81 int windowBits
= MAX_WBITS
;
83 case wxZLIB_NO_HEADER
: windowBits
= -MAX_WBITS
; break;
84 case wxZLIB_ZLIB
: windowBits
= MAX_WBITS
; break;
85 case wxZLIB_GZIP
: windowBits
= MAX_WBITS
| ZSTREAM_GZIP
; break;
86 case wxZLIB_AUTO
: windowBits
= MAX_WBITS
| ZSTREAM_AUTO
; break;
87 default: wxFAIL_MSG(wxT("Invalid zlib flag"));
90 if (inflateInit2(m_inflate
, windowBits
) == Z_OK
)
95 wxLogError(_("Can't initialize zlib inflate stream."));
96 m_lasterror
= wxSTREAM_READ_ERROR
;
99 wxZlibInputStream::~wxZlibInputStream()
101 inflateEnd(m_inflate
);
104 delete [] m_z_buffer
;
107 size_t wxZlibInputStream::OnSysRead(void *buffer
, size_t size
)
109 wxASSERT_MSG(m_inflate
&& m_z_buffer
, wxT("Inflate stream not open"));
111 if (!m_inflate
|| !m_z_buffer
)
112 m_lasterror
= wxSTREAM_READ_ERROR
;
113 if (!IsOk() || !size
)
117 m_inflate
->next_out
= (unsigned char *)buffer
;
118 m_inflate
->avail_out
= size
;
120 while (err
== Z_OK
&& m_inflate
->avail_out
> 0) {
121 if (m_inflate
->avail_in
== 0 && m_parent_i_stream
->IsOk()) {
122 m_parent_i_stream
->Read(m_z_buffer
, m_z_size
);
123 m_inflate
->next_in
= m_z_buffer
;
124 m_inflate
->avail_in
= m_parent_i_stream
->LastRead();
126 err
= inflate(m_inflate
, Z_SYNC_FLUSH
);
134 // Unread any data taken from past the end of the deflate stream, so that
135 // any additional data can be read from the underlying stream (the crc
136 // in a gzip for example)
137 if (m_inflate
->avail_in
) {
138 m_parent_i_stream
->Ungetch(m_inflate
->next_in
, m_inflate
->avail_in
);
139 m_inflate
->avail_in
= 0;
141 m_lasterror
= wxSTREAM_EOF
;
145 // Indicates that zlib was expecting more data, but the parent stream
146 // has none. Other than Eof the error will have been already reported
147 // by the parent strean,
148 m_lasterror
= wxSTREAM_READ_ERROR
;
149 if (m_parent_i_stream
->Eof())
150 #if WXWIN_COMPATIBILITY_2_4
151 if (m_24compatibilty
)
152 m_lasterror
= wxSTREAM_EOF
;
155 wxLogError(_("Can't read inflate stream: unexpected EOF in underlying stream."));
159 wxString
msg(m_inflate
->msg
, *wxConvCurrent
);
161 msg
= wxString::Format(_("zlib error %d"), err
);
162 wxLogError(_("Can't read from inflate stream: %s"), msg
.c_str());
163 m_lasterror
= wxSTREAM_READ_ERROR
;
166 size
-= m_inflate
->avail_out
;
171 /* static */ bool wxZlibInputStream::CanHandleGZip()
173 const char *dot
= strchr(zlibVersion(), '.');
174 int major
= atoi(zlibVersion());
175 int minor
= dot
? atoi(dot
+ 1) : 0;
176 return major
> 1 || (major
== 1 && minor
>= 2);
180 //////////////////////
181 // wxZlibOutputStream
182 //////////////////////
184 wxZlibOutputStream::wxZlibOutputStream(wxOutputStream
& stream
,
187 : wxFilterOutputStream(stream
)
190 m_z_buffer
= new unsigned char[ZSTREAM_BUFFER_SIZE
];
191 m_z_size
= ZSTREAM_BUFFER_SIZE
;
196 level
= Z_DEFAULT_COMPRESSION
;
200 wxASSERT_MSG(level
>= 0 && level
<= 9, wxT("wxZlibOutputStream compression level must be between 0 and 9!"));
203 // if gzip is asked for but not supported...
204 if (flags
== wxZLIB_GZIP
&& !CanHandleGZip()) {
205 wxLogError(_("Gzip not supported by this version of zlib"));
206 m_lasterror
= wxSTREAM_WRITE_ERROR
;
211 m_deflate
= new z_stream_s
;
214 memset(m_deflate
, 0, sizeof(z_stream_s
));
215 m_deflate
->next_out
= m_z_buffer
;
216 m_deflate
->avail_out
= m_z_size
;
218 // see zlib.h for documentation on windowBits
219 int windowBits
= MAX_WBITS
;
221 case wxZLIB_NO_HEADER
: windowBits
= -MAX_WBITS
; break;
222 case wxZLIB_ZLIB
: windowBits
= MAX_WBITS
; break;
223 case wxZLIB_GZIP
: windowBits
= MAX_WBITS
| ZSTREAM_GZIP
; break;
224 default: wxFAIL_MSG(wxT("Invalid zlib flag"));
227 if (deflateInit2(m_deflate
, level
, Z_DEFLATED
, windowBits
,
228 8, Z_DEFAULT_STRATEGY
) == Z_OK
)
233 wxLogError(_("Can't initialize zlib deflate stream."));
234 m_lasterror
= wxSTREAM_WRITE_ERROR
;
237 bool wxZlibOutputStream::Close()
240 deflateEnd(m_deflate
);
249 void wxZlibOutputStream::DoFlush(bool final
)
251 if (!m_deflate
|| !m_z_buffer
)
252 m_lasterror
= wxSTREAM_WRITE_ERROR
;
259 while (err
== Z_OK
|| err
== Z_STREAM_END
) {
260 size_t len
= m_z_size
- m_deflate
->avail_out
;
262 if (m_parent_o_stream
->Write(m_z_buffer
, len
).LastWrite() != len
) {
263 m_lasterror
= wxSTREAM_WRITE_ERROR
;
264 wxLogDebug(wxT("wxZlibOutputStream: Error writing to underlying stream"));
267 m_deflate
->next_out
= m_z_buffer
;
268 m_deflate
->avail_out
= m_z_size
;
273 err
= deflate(m_deflate
, final
? Z_FINISH
: Z_FULL_FLUSH
);
274 done
= m_deflate
->avail_out
!= 0 || err
== Z_STREAM_END
;
278 size_t wxZlibOutputStream::OnSysWrite(const void *buffer
, size_t size
)
280 wxASSERT_MSG(m_deflate
&& m_z_buffer
, wxT("Deflate stream not open"));
282 if (!m_deflate
|| !m_z_buffer
)
283 m_lasterror
= wxSTREAM_WRITE_ERROR
;
284 if (!IsOk() || !size
)
288 m_deflate
->next_in
= (unsigned char *)buffer
;
289 m_deflate
->avail_in
= size
;
291 while (err
== Z_OK
&& m_deflate
->avail_in
> 0) {
292 if (m_deflate
->avail_out
== 0) {
293 m_parent_o_stream
->Write(m_z_buffer
, m_z_size
);
294 if (m_parent_o_stream
->LastWrite() != m_z_size
) {
295 m_lasterror
= wxSTREAM_WRITE_ERROR
;
296 wxLogDebug(wxT("wxZlibOutputStream: Error writing to underlying stream"));
300 m_deflate
->next_out
= m_z_buffer
;
301 m_deflate
->avail_out
= m_z_size
;
304 err
= deflate(m_deflate
, Z_NO_FLUSH
);
308 m_lasterror
= wxSTREAM_WRITE_ERROR
;
309 wxString
msg(m_deflate
->msg
, *wxConvCurrent
);
311 msg
= wxString::Format(_("zlib error %d"), err
);
312 wxLogError(_("Can't write to deflate stream: %s"), msg
.c_str());
315 size
-= m_deflate
->avail_in
;
320 /* static */ bool wxZlibOutputStream::CanHandleGZip()
322 return wxZlibInputStream::CanHandleGZip();
326 // wxUSE_ZLIB && wxUSE_STREAMS