]>
git.saurik.com Git - wxWidgets.git/blob - src/common/zstream.cpp
1 //////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/zstream.cpp
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"
30 // normally, the compiler options should contain -I../zlib, but it is
31 // apparently not the case for all MSW makefiles and so, unless we use
32 // configure (which defines __WX_SETUP_H__) or it is explicitly overridden by
33 // the user (who can define wxUSE_ZLIB_H_IN_PATH), we hardcode the path here
34 #if defined(__WXMSW__) && !defined(__WX_SETUP_H__) && !defined(wxUSE_ZLIB_H_IN_PATH)
35 #include "../zlib/zlib.h"
41 ZSTREAM_BUFFER_SIZE
= 16384,
42 ZSTREAM_GZIP
= 0x10, // gzip header
43 ZSTREAM_AUTO
= 0x20 // auto detect between gzip and zlib
46 //////////////////////
48 //////////////////////
50 wxZlibInputStream::wxZlibInputStream(wxInputStream
& stream
, int flags
)
51 : wxFilterInputStream(stream
)
54 m_z_buffer
= new unsigned char[ZSTREAM_BUFFER_SIZE
];
55 m_z_size
= ZSTREAM_BUFFER_SIZE
;
58 #if WXWIN_COMPATIBILITY_2_4
59 // treat compatibility mode as auto
60 m_24compatibilty
= flags
== wxZLIB_24COMPATIBLE
;
65 // if gzip is asked for but not supported...
66 if ((flags
== wxZLIB_GZIP
|| flags
== wxZLIB_AUTO
) && !CanHandleGZip()) {
67 if (flags
== wxZLIB_AUTO
) {
68 // an error will come later if the input turns out not to be a zlib
72 wxLogError(_("Gzip not supported by this version of zlib"));
73 m_lasterror
= wxSTREAM_READ_ERROR
;
79 m_inflate
= new z_stream_s
;
82 memset(m_inflate
, 0, sizeof(z_stream_s
));
84 // see zlib.h for documentation on windowBits
85 int windowBits
= MAX_WBITS
;
87 case wxZLIB_NO_HEADER
: windowBits
= -MAX_WBITS
; break;
88 case wxZLIB_ZLIB
: windowBits
= MAX_WBITS
; break;
89 case wxZLIB_GZIP
: windowBits
= MAX_WBITS
| ZSTREAM_GZIP
; break;
90 case wxZLIB_AUTO
: windowBits
= MAX_WBITS
| ZSTREAM_AUTO
; break;
91 default: wxFAIL_MSG(wxT("Invalid zlib flag"));
94 if (inflateInit2(m_inflate
, windowBits
) == Z_OK
)
99 wxLogError(_("Can't initialize zlib inflate stream."));
100 m_lasterror
= wxSTREAM_READ_ERROR
;
103 wxZlibInputStream::~wxZlibInputStream()
105 inflateEnd(m_inflate
);
108 delete [] m_z_buffer
;
111 size_t wxZlibInputStream::OnSysRead(void *buffer
, size_t size
)
113 wxASSERT_MSG(m_inflate
&& m_z_buffer
, wxT("Inflate stream not open"));
115 if (!m_inflate
|| !m_z_buffer
)
116 m_lasterror
= wxSTREAM_READ_ERROR
;
117 if (!IsOk() || !size
)
121 m_inflate
->next_out
= (unsigned char *)buffer
;
122 m_inflate
->avail_out
= size
;
124 while (err
== Z_OK
&& m_inflate
->avail_out
> 0) {
125 if (m_inflate
->avail_in
== 0 && m_parent_i_stream
->IsOk()) {
126 m_parent_i_stream
->Read(m_z_buffer
, m_z_size
);
127 m_inflate
->next_in
= m_z_buffer
;
128 m_inflate
->avail_in
= m_parent_i_stream
->LastRead();
130 err
= inflate(m_inflate
, Z_SYNC_FLUSH
);
138 if (m_inflate
->avail_out
) {
139 // Unread any data taken from past the end of the deflate stream, so that
140 // any additional data can be read from the underlying stream (the crc
141 // in a gzip for example)
142 if (m_inflate
->avail_in
) {
143 m_parent_i_stream
->Reset();
144 m_parent_i_stream
->Ungetch(m_inflate
->next_in
, m_inflate
->avail_in
);
145 m_inflate
->avail_in
= 0;
147 m_lasterror
= wxSTREAM_EOF
;
152 // Indicates that zlib was expecting more data, but the parent stream
153 // has none. Other than Eof the error will have been already reported
154 // by the parent strean,
155 m_lasterror
= wxSTREAM_READ_ERROR
;
156 if (m_parent_i_stream
->Eof())
157 #if WXWIN_COMPATIBILITY_2_4
158 if (m_24compatibilty
)
159 m_lasterror
= wxSTREAM_EOF
;
162 wxLogError(_("Can't read inflate stream: unexpected EOF in underlying stream."));
166 wxString
msg(m_inflate
->msg
, *wxConvCurrent
);
168 msg
= wxString::Format(_("zlib error %d"), err
);
169 wxLogError(_("Can't read from inflate stream: %s"), msg
.c_str());
170 m_lasterror
= wxSTREAM_READ_ERROR
;
173 size
-= m_inflate
->avail_out
;
178 /* static */ bool wxZlibInputStream::CanHandleGZip()
180 const char *dot
= strchr(zlibVersion(), '.');
181 int major
= atoi(zlibVersion());
182 int minor
= dot
? atoi(dot
+ 1) : 0;
183 return major
> 1 || (major
== 1 && minor
>= 2);
187 //////////////////////
188 // wxZlibOutputStream
189 //////////////////////
191 wxZlibOutputStream::wxZlibOutputStream(wxOutputStream
& stream
,
194 : wxFilterOutputStream(stream
)
197 m_z_buffer
= new unsigned char[ZSTREAM_BUFFER_SIZE
];
198 m_z_size
= ZSTREAM_BUFFER_SIZE
;
203 level
= Z_DEFAULT_COMPRESSION
;
207 wxASSERT_MSG(level
>= 0 && level
<= 9, wxT("wxZlibOutputStream compression level must be between 0 and 9!"));
210 // if gzip is asked for but not supported...
211 if (flags
== wxZLIB_GZIP
&& !CanHandleGZip()) {
212 wxLogError(_("Gzip not supported by this version of zlib"));
213 m_lasterror
= wxSTREAM_WRITE_ERROR
;
218 m_deflate
= new z_stream_s
;
221 memset(m_deflate
, 0, sizeof(z_stream_s
));
222 m_deflate
->next_out
= m_z_buffer
;
223 m_deflate
->avail_out
= m_z_size
;
225 // see zlib.h for documentation on windowBits
226 int windowBits
= MAX_WBITS
;
228 case wxZLIB_NO_HEADER
: windowBits
= -MAX_WBITS
; break;
229 case wxZLIB_ZLIB
: windowBits
= MAX_WBITS
; break;
230 case wxZLIB_GZIP
: windowBits
= MAX_WBITS
| ZSTREAM_GZIP
; break;
231 default: wxFAIL_MSG(wxT("Invalid zlib flag"));
234 if (deflateInit2(m_deflate
, level
, Z_DEFLATED
, windowBits
,
235 8, Z_DEFAULT_STRATEGY
) == Z_OK
)
240 wxLogError(_("Can't initialize zlib deflate stream."));
241 m_lasterror
= wxSTREAM_WRITE_ERROR
;
244 bool wxZlibOutputStream::Close()
247 deflateEnd(m_deflate
);
256 void wxZlibOutputStream::DoFlush(bool final
)
258 if (!m_deflate
|| !m_z_buffer
)
259 m_lasterror
= wxSTREAM_WRITE_ERROR
;
266 while (err
== Z_OK
|| err
== Z_STREAM_END
) {
267 size_t len
= m_z_size
- m_deflate
->avail_out
;
269 if (m_parent_o_stream
->Write(m_z_buffer
, len
).LastWrite() != len
) {
270 m_lasterror
= wxSTREAM_WRITE_ERROR
;
271 wxLogDebug(wxT("wxZlibOutputStream: Error writing to underlying stream"));
274 m_deflate
->next_out
= m_z_buffer
;
275 m_deflate
->avail_out
= m_z_size
;
280 err
= deflate(m_deflate
, final
? Z_FINISH
: Z_FULL_FLUSH
);
281 done
= m_deflate
->avail_out
!= 0 || err
== Z_STREAM_END
;
285 size_t wxZlibOutputStream::OnSysWrite(const void *buffer
, size_t size
)
287 wxASSERT_MSG(m_deflate
&& m_z_buffer
, wxT("Deflate stream not open"));
289 if (!m_deflate
|| !m_z_buffer
)
291 // notice that this will make IsOk() test just below return false
292 m_lasterror
= wxSTREAM_WRITE_ERROR
;
295 if (!IsOk() || !size
)
299 m_deflate
->next_in
= (unsigned char *)buffer
;
300 m_deflate
->avail_in
= size
;
302 while (err
== Z_OK
&& m_deflate
->avail_in
> 0) {
303 if (m_deflate
->avail_out
== 0) {
304 m_parent_o_stream
->Write(m_z_buffer
, m_z_size
);
305 if (m_parent_o_stream
->LastWrite() != m_z_size
) {
306 m_lasterror
= wxSTREAM_WRITE_ERROR
;
307 wxLogDebug(wxT("wxZlibOutputStream: Error writing to underlying stream"));
311 m_deflate
->next_out
= m_z_buffer
;
312 m_deflate
->avail_out
= m_z_size
;
315 err
= deflate(m_deflate
, Z_NO_FLUSH
);
319 m_lasterror
= wxSTREAM_WRITE_ERROR
;
320 wxString
msg(m_deflate
->msg
, *wxConvCurrent
);
322 msg
= wxString::Format(_("zlib error %d"), err
);
323 wxLogError(_("Can't write to deflate stream: %s"), msg
.c_str());
326 size
-= m_deflate
->avail_in
;
331 /* static */ bool wxZlibOutputStream::CanHandleGZip()
333 return wxZlibInputStream::CanHandleGZip();
337 // wxUSE_ZLIB && wxUSE_STREAMS