]> git.saurik.com Git - wxWidgets.git/blob - src/common/zstream.cpp
fixed memory leak in wxDocManager::CreateDocument (patch 494842)
[wxWidgets.git] / src / common / zstream.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: zstream.cpp
3 // Purpose: Compressed stream classes
4 // Author: Guilhem Lavaux
5 // Modified by:
6 // Created: 11/07/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "zstream.h"
14 #endif
15
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #if wxUSE_ZLIB && wxUSE_STREAMS
24
25 #include "wx/zstream.h"
26 #include "wx/utils.h"
27 #include "wx/intl.h"
28 #include "wx/log.h"
29
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"
36 #else
37 #include "zlib.h"
38 #endif
39
40 #define ZSTREAM_BUFFER_SIZE 1024
41
42 //////////////////////
43 // wxZlibInputStream
44 //////////////////////
45
46 wxZlibInputStream::wxZlibInputStream(wxInputStream& stream)
47 : wxFilterInputStream(stream)
48 {
49 // I need a private stream buffer.
50 m_inflate = new z_stream_s;
51
52 m_inflate->zalloc = (alloc_func)0;
53 m_inflate->zfree = (free_func)0;
54 m_inflate->opaque = (voidpf)0;
55
56 int err = inflateInit(m_inflate);
57 if (err != Z_OK) {
58 inflateEnd(m_inflate);
59 delete m_inflate;
60 return;
61 }
62
63 m_z_buffer = new unsigned char[ZSTREAM_BUFFER_SIZE];
64 m_z_size = ZSTREAM_BUFFER_SIZE;
65
66 m_inflate->avail_in = 0;
67 m_inflate->next_in = NULL;
68 }
69
70 wxZlibInputStream::~wxZlibInputStream()
71 {
72 inflateEnd(m_inflate);
73 delete m_inflate;
74
75 delete [] m_z_buffer;
76 }
77
78 size_t wxZlibInputStream::OnSysRead(void *buffer, size_t size)
79 {
80 int err;
81
82 m_inflate->next_out = (unsigned char *)buffer;
83 m_inflate->avail_out = size;
84
85 while (m_inflate->avail_out > 0) {
86 if (m_inflate->avail_in == 0) {
87
88 m_parent_i_stream->Read(m_z_buffer, wxMin(m_z_size, size));
89 m_inflate->next_in = m_z_buffer;
90 m_inflate->avail_in = m_parent_i_stream->LastRead();
91
92 if (m_parent_i_stream->LastError() != wxStream_NOERROR &&
93 m_parent_i_stream->LastError() != wxStream_EOF)
94 {
95 m_lasterror = m_parent_i_stream->LastError();
96 return 0; // failed to read anything
97 }
98
99 if ( m_inflate->avail_in == 0 )
100 {
101 // EOF
102 m_lasterror = wxStream_EOF;
103 break;
104 }
105 }
106 err = inflate(m_inflate, Z_FINISH);
107 if (err == Z_STREAM_END)
108 return (size - m_inflate->avail_out);
109 }
110
111 return size-m_inflate->avail_out;
112 }
113
114 //////////////////////
115 // wxZlibOutputStream
116 //////////////////////
117
118 wxZlibOutputStream::wxZlibOutputStream(wxOutputStream& stream, int level)
119 : wxFilterOutputStream(stream)
120 {
121 int err;
122
123 m_deflate = new z_stream_s;
124
125 m_deflate->zalloc = (alloc_func)0;
126 m_deflate->zfree = (free_func)0;
127 m_deflate->opaque = (voidpf)0;
128
129 if (level == -1) level = Z_DEFAULT_COMPRESSION;
130 wxASSERT_MSG(level >= 0 && level <= 9, wxT("wxZlibOutputStream compression level must be between 0 and 9!"));
131
132 err = deflateInit(m_deflate, level);
133 if (err != Z_OK) {
134 deflateEnd(m_deflate);
135 return;
136 }
137
138 m_z_buffer = new unsigned char[ZSTREAM_BUFFER_SIZE];
139 m_z_size = ZSTREAM_BUFFER_SIZE;
140
141 m_deflate->avail_in = 0;
142 m_deflate->next_out = m_z_buffer;
143 m_deflate->avail_out = m_z_size;
144 }
145
146 wxZlibOutputStream::~wxZlibOutputStream()
147 {
148 int err;
149
150 Sync();
151
152 err = deflate(m_deflate, Z_FINISH);
153 if (err != Z_STREAM_END)
154 {
155 wxLogDebug( wxT("wxZlibOutputStream: an error occured while closing the stream.\n") );
156 return;
157 }
158
159 deflateEnd(m_deflate);
160 delete m_deflate;
161
162 delete[] m_z_buffer;
163 }
164
165 void wxZlibOutputStream::Sync()
166 {
167 int err;
168
169 m_parent_o_stream->Write(m_z_buffer, m_z_size-m_deflate->avail_out);
170 m_deflate->next_out = m_z_buffer;
171 m_deflate->avail_out = m_z_size;
172
173 err = deflate(m_deflate, Z_FULL_FLUSH);
174 if (err != Z_OK) {
175 return;
176 }
177
178 // Fixed by "Stefan Csomor" <csomor@advancedconcepts.ch>
179 while( m_deflate->avail_out == 0 )
180 {
181 m_parent_o_stream->Write(m_z_buffer, m_z_size );
182 m_deflate->next_out = m_z_buffer;
183 m_deflate->avail_out = m_z_size;
184 err = deflate(m_deflate, Z_FULL_FLUSH);
185 if (err != Z_OK) {
186 return;
187 }
188 }
189 // End
190
191 m_parent_o_stream->Write(m_z_buffer, m_z_size-m_deflate->avail_out);
192 m_deflate->next_out = m_z_buffer;
193 m_deflate->avail_out = m_z_size;
194 }
195
196 size_t wxZlibOutputStream::OnSysWrite(const void *buffer, size_t size)
197 {
198 int err;
199
200 m_deflate->next_in = (unsigned char *)buffer;
201 m_deflate->avail_in = size;
202
203 while (m_deflate->avail_in > 0) {
204
205 if (m_deflate->avail_out == 0) {
206 m_parent_o_stream->Write(m_z_buffer, m_z_size);
207 if (m_parent_o_stream->LastError() != wxStream_NOERROR)
208 return (size - m_deflate->avail_in);
209
210 m_deflate->next_out = m_z_buffer;
211 m_deflate->avail_out = m_z_size;
212 }
213
214 err = deflate(m_deflate, Z_NO_FLUSH);
215 if (err != Z_OK)
216 return (size - m_deflate->avail_in);
217 }
218 return size;
219 }
220
221 #endif
222 // wxUSE_ZLIB && wxUSE_STREAMS
223