]> git.saurik.com Git - wxWidgets.git/blame - src/common/zstream.cpp
Committing in .
[wxWidgets.git] / src / common / zstream.cpp
CommitLineData
0915d0b2 1//////////////////////////////////////////////////////////////////////////////
79c3e0e1
GL
2// Name: zstream.cpp
3// Purpose: Compressed stream classes
4// Author: Guilhem Lavaux
0915d0b2 5// Modified by: Mike Wetherell
79c3e0e1
GL
6// Created: 11/07/98
7// RCS-ID: $Id$
8// Copyright: (c) Guilhem Lavaux
65571936 9// Licence: wxWindows licence
79c3e0e1 10/////////////////////////////////////////////////////////////////////////////
ce4169a4 11
79c3e0e1
GL
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
ac57418f 14
ce4169a4
RR
15#ifdef __BORLANDC__
16 #pragma hdrstop
17#endif
18
ce4169a4 19#if wxUSE_ZLIB && wxUSE_STREAMS
ac57418f 20
ce4169a4 21#include "wx/zstream.h"
ac57418f
RR
22#include "wx/utils.h"
23#include "wx/intl.h"
3069ac4e 24#include "wx/log.h"
d1af991f 25
f6bcfd97
BP
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)
31e78e0c 31 #include "../zlib/zlib.h"
d1af991f 32#else
ac2834ab 33 #include "zlib.h"
d1af991f 34#endif
79c3e0e1 35
0915d0b2 36enum {
4c68a102
VS
37 ZSTREAM_BUFFER_SIZE = 16384,
38 ZSTREAM_GZIP = 0x10, // gzip header
39 ZSTREAM_AUTO = 0x20 // auto detect between gzip and zlib
0915d0b2 40};
6d44bf31 41
79c3e0e1
GL
42//////////////////////
43// wxZlibInputStream
44//////////////////////
45
0915d0b2 46wxZlibInputStream::wxZlibInputStream(wxInputStream& stream, int flags)
79c3e0e1
GL
47 : wxFilterInputStream(stream)
48{
0915d0b2
VZ
49 m_inflate = NULL;
50 m_z_buffer = new unsigned char[ZSTREAM_BUFFER_SIZE];
51 m_z_size = ZSTREAM_BUFFER_SIZE;
52 m_pos = 0;
6d44bf31 53
4c68a102 54#if WXWIN_COMPATIBILITY_2_4
3103e8a9 55 // treat compatibility mode as auto
4c68a102
VS
56 m_24compatibilty = flags == wxZLIB_24COMPATIBLE;
57 if (m_24compatibilty)
58 flags = wxZLIB_AUTO;
59#endif
60
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
65 flags = wxZLIB_ZLIB;
66 }
67 else {
68 wxLogError(_("Gzip not supported by this version of zlib"));
69 m_lasterror = wxSTREAM_READ_ERROR;
70 return;
71 }
72 }
73
0915d0b2
VZ
74 if (m_z_buffer) {
75 m_inflate = new z_stream_s;
79c3e0e1 76
0915d0b2 77 if (m_inflate) {
5fc01d13 78 memset(m_inflate, 0, sizeof(z_stream_s));
79c3e0e1 79
4c68a102
VS
80 // see zlib.h for documentation on windowBits
81 int windowBits = MAX_WBITS;
82 switch (flags) {
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"));
88 }
6d44bf31 89
4c68a102 90 if (inflateInit2(m_inflate, windowBits) == Z_OK)
0915d0b2
VZ
91 return;
92 }
93 }
94
95 wxLogError(_("Can't initialize zlib inflate stream."));
96 m_lasterror = wxSTREAM_READ_ERROR;
79c3e0e1
GL
97}
98
99wxZlibInputStream::~wxZlibInputStream()
100{
856d2e52
GL
101 inflateEnd(m_inflate);
102 delete m_inflate;
45805ba3
VZ
103
104 delete [] m_z_buffer;
79c3e0e1
GL
105}
106
75ed1d15 107size_t wxZlibInputStream::OnSysRead(void *buffer, size_t size)
79c3e0e1 108{
0915d0b2
VZ
109 wxASSERT_MSG(m_inflate && m_z_buffer, wxT("Inflate stream not open"));
110
111 if (!m_inflate || !m_z_buffer)
112 m_lasterror = wxSTREAM_READ_ERROR;
113 if (!IsOk() || !size)
114 return 0;
79c3e0e1 115
0915d0b2 116 int err = Z_OK;
856d2e52
GL
117 m_inflate->next_out = (unsigned char *)buffer;
118 m_inflate->avail_out = size;
79c3e0e1 119
0915d0b2 120 while (err == Z_OK && m_inflate->avail_out > 0) {
4c68a102 121 if (m_inflate->avail_in == 0 && m_parent_i_stream->IsOk()) {
0915d0b2 122 m_parent_i_stream->Read(m_z_buffer, m_z_size);
856d2e52
GL
123 m_inflate->next_in = m_z_buffer;
124 m_inflate->avail_in = m_parent_i_stream->LastRead();
4c68a102
VS
125 }
126 err = inflate(m_inflate, Z_SYNC_FLUSH);
127 }
6d44bf31 128
4c68a102
VS
129 switch (err) {
130 case Z_OK:
0915d0b2 131 break;
4c68a102
VS
132
133 case Z_STREAM_END:
8e50d1ad
MW
134 if (m_inflate->avail_out) {
135 // Unread any data taken from past the end of the deflate stream, so that
136 // any additional data can be read from the underlying stream (the crc
137 // in a gzip for example)
138 if (m_inflate->avail_in) {
139 m_parent_i_stream->Ungetch(m_inflate->next_in, m_inflate->avail_in);
140 m_inflate->avail_in = 0;
141 }
142 m_lasterror = wxSTREAM_EOF;
777fd647 143 }
4c68a102 144 break;
f6bcfd97 145
4c68a102
VS
146 case Z_BUF_ERROR:
147 // Indicates that zlib was expecting more data, but the parent stream
148 // has none. Other than Eof the error will have been already reported
149 // by the parent strean,
150 m_lasterror = wxSTREAM_READ_ERROR;
151 if (m_parent_i_stream->Eof())
152#if WXWIN_COMPATIBILITY_2_4
153 if (m_24compatibilty)
154 m_lasterror = wxSTREAM_EOF;
155 else
156#endif
157 wxLogError(_("Can't read inflate stream: unexpected EOF in underlying stream."));
158 break;
159
160 default:
161 wxString msg(m_inflate->msg, *wxConvCurrent);
162 if (!msg)
2a1f999f 163 msg = wxString::Format(_("zlib error %d"), err);
4c68a102
VS
164 wxLogError(_("Can't read from inflate stream: %s"), msg.c_str());
165 m_lasterror = wxSTREAM_READ_ERROR;
79c3e0e1
GL
166 }
167
0915d0b2
VZ
168 size -= m_inflate->avail_out;
169 m_pos += size;
170 return size;
79c3e0e1
GL
171}
172
4c68a102
VS
173/* static */ bool wxZlibInputStream::CanHandleGZip()
174{
175 const char *dot = strchr(zlibVersion(), '.');
176 int major = atoi(zlibVersion());
177 int minor = dot ? atoi(dot + 1) : 0;
178 return major > 1 || (major == 1 && minor >= 2);
179}
180
181
79c3e0e1
GL
182//////////////////////
183// wxZlibOutputStream
184//////////////////////
185
0915d0b2
VZ
186wxZlibOutputStream::wxZlibOutputStream(wxOutputStream& stream,
187 int level,
188 int flags)
79c3e0e1
GL
189 : wxFilterOutputStream(stream)
190{
0915d0b2
VZ
191 m_deflate = NULL;
192 m_z_buffer = new unsigned char[ZSTREAM_BUFFER_SIZE];
193 m_z_size = ZSTREAM_BUFFER_SIZE;
194 m_pos = 0;
79c3e0e1 195
af850422
VZ
196 if ( level == -1 )
197 {
0915d0b2 198 level = Z_DEFAULT_COMPRESSION;
af850422
VZ
199 }
200 else
201 {
202 wxASSERT_MSG(level >= 0 && level <= 9, wxT("wxZlibOutputStream compression level must be between 0 and 9!"));
203 }
5824f314 204
4c68a102
VS
205 // if gzip is asked for but not supported...
206 if (flags == wxZLIB_GZIP && !CanHandleGZip()) {
207 wxLogError(_("Gzip not supported by this version of zlib"));
208 m_lasterror = wxSTREAM_WRITE_ERROR;
209 return;
210 }
6d44bf31 211
4c68a102
VS
212 if (m_z_buffer) {
213 m_deflate = new z_stream_s;
0915d0b2 214
4c68a102
VS
215 if (m_deflate) {
216 memset(m_deflate, 0, sizeof(z_stream_s));
217 m_deflate->next_out = m_z_buffer;
218 m_deflate->avail_out = m_z_size;
cab1a605 219
4c68a102
VS
220 // see zlib.h for documentation on windowBits
221 int windowBits = MAX_WBITS;
222 switch (flags) {
223 case wxZLIB_NO_HEADER: windowBits = -MAX_WBITS; break;
224 case wxZLIB_ZLIB: windowBits = MAX_WBITS; break;
225 case wxZLIB_GZIP: windowBits = MAX_WBITS | ZSTREAM_GZIP; break;
226 default: wxFAIL_MSG(wxT("Invalid zlib flag"));
227 }
228
cab1a605 229 if (deflateInit2(m_deflate, level, Z_DEFLATED, windowBits,
4c68a102
VS
230 8, Z_DEFAULT_STRATEGY) == Z_OK)
231 return;
232 }
0915d0b2
VZ
233 }
234
235 wxLogError(_("Can't initialize zlib deflate stream."));
236 m_lasterror = wxSTREAM_WRITE_ERROR;
79c3e0e1
GL
237}
238
8f0ff178
RN
239bool wxZlibOutputStream::Close()
240 {
241 DoFlush(true);
242 deflateEnd(m_deflate);
243 delete m_deflate;
6d44bf31 244
8f0ff178
RN
245 m_deflate = NULL;
246 delete[] m_z_buffer;
247 m_z_buffer = NULL;
248 return IsOk();
249 }
79c3e0e1 250
0915d0b2 251void wxZlibOutputStream::DoFlush(bool final)
6d44bf31 252{
0915d0b2
VZ
253 if (!m_deflate || !m_z_buffer)
254 m_lasterror = wxSTREAM_WRITE_ERROR;
255 if (!IsOk())
6d44bf31 256 return;
6d44bf31 257
0915d0b2
VZ
258 int err = Z_OK;
259 bool done = false;
babd4308 260
0915d0b2
VZ
261 while (err == Z_OK || err == Z_STREAM_END) {
262 size_t len = m_z_size - m_deflate->avail_out;
263 if (len) {
264 if (m_parent_o_stream->Write(m_z_buffer, len).LastWrite() != len) {
265 m_lasterror = wxSTREAM_WRITE_ERROR;
266 wxLogDebug(wxT("wxZlibOutputStream: Error writing to underlying stream"));
267 break;
268 }
269 m_deflate->next_out = m_z_buffer;
270 m_deflate->avail_out = m_z_size;
271 }
272
273 if (done)
274 break;
275 err = deflate(m_deflate, final ? Z_FINISH : Z_FULL_FLUSH);
276 done = m_deflate->avail_out != 0 || err == Z_STREAM_END;
277 }
6d44bf31
GL
278}
279
75ed1d15 280size_t wxZlibOutputStream::OnSysWrite(const void *buffer, size_t size)
79c3e0e1 281{
0915d0b2 282 wxASSERT_MSG(m_deflate && m_z_buffer, wxT("Deflate stream not open"));
79c3e0e1 283
0915d0b2
VZ
284 if (!m_deflate || !m_z_buffer)
285 m_lasterror = wxSTREAM_WRITE_ERROR;
286 if (!IsOk() || !size)
287 return 0;
288
289 int err = Z_OK;
856d2e52
GL
290 m_deflate->next_in = (unsigned char *)buffer;
291 m_deflate->avail_in = size;
79c3e0e1 292
0915d0b2 293 while (err == Z_OK && m_deflate->avail_in > 0) {
856d2e52 294 if (m_deflate->avail_out == 0) {
6d44bf31 295 m_parent_o_stream->Write(m_z_buffer, m_z_size);
0915d0b2
VZ
296 if (m_parent_o_stream->LastWrite() != m_z_size) {
297 m_lasterror = wxSTREAM_WRITE_ERROR;
298 wxLogDebug(wxT("wxZlibOutputStream: Error writing to underlying stream"));
299 break;
300 }
6d44bf31 301
856d2e52
GL
302 m_deflate->next_out = m_z_buffer;
303 m_deflate->avail_out = m_z_size;
79c3e0e1 304 }
6d44bf31 305
856d2e52 306 err = deflate(m_deflate, Z_NO_FLUSH);
79c3e0e1 307 }
0915d0b2
VZ
308
309 if (err != Z_OK) {
310 m_lasterror = wxSTREAM_WRITE_ERROR;
301deecc
RN
311 wxString msg(m_deflate->msg, *wxConvCurrent);
312 if (!msg)
2a1f999f 313 msg = wxString::Format(_("zlib error %d"), err);
4c68a102 314 wxLogError(_("Can't write to deflate stream: %s"), msg.c_str());
0915d0b2
VZ
315 }
316
317 size -= m_deflate->avail_in;
318 m_pos += size;
6d44bf31 319 return size;
79c3e0e1 320}
ac57418f 321
4c68a102 322/* static */ bool wxZlibOutputStream::CanHandleGZip()
cab1a605 323{
4c68a102
VS
324 return wxZlibInputStream::CanHandleGZip();
325}
326
ac57418f 327#endif
ce4169a4 328 // wxUSE_ZLIB && wxUSE_STREAMS
cab1a605 329