]>
Commit | Line | Data |
---|---|---|
79c3e0e1 GL |
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 | ///////////////////////////////////////////////////////////////////////////// | |
ce4169a4 | 11 | |
79c3e0e1 GL |
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" | |
ac57418f | 18 | |
ce4169a4 RR |
19 | #ifdef __BORLANDC__ |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
ce4169a4 | 23 | #if wxUSE_ZLIB && wxUSE_STREAMS |
ac57418f | 24 | |
ce4169a4 | 25 | #include "wx/zstream.h" |
ac57418f RR |
26 | #include "wx/utils.h" |
27 | #include "wx/intl.h" | |
3069ac4e | 28 | #include "wx/log.h" |
d1af991f | 29 | |
f6bcfd97 BP |
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) | |
31e78e0c | 35 | #include "../zlib/zlib.h" |
03e11df5 | 36 | #elif defined(__WXMAC__) && defined(__UNIX__) |
5fde6fcc | 37 | #include <Kernel/net/zlib.h> |
d1af991f | 38 | #else |
f6bcfd97 | 39 | #include <zlib.h> |
d1af991f | 40 | #endif |
79c3e0e1 | 41 | |
6d44bf31 GL |
42 | #define ZSTREAM_BUFFER_SIZE 1024 |
43 | ||
79c3e0e1 GL |
44 | ////////////////////// |
45 | // wxZlibInputStream | |
46 | ////////////////////// | |
47 | ||
48 | wxZlibInputStream::wxZlibInputStream(wxInputStream& stream) | |
49 | : wxFilterInputStream(stream) | |
50 | { | |
6d44bf31 | 51 | // I need a private stream buffer. |
856d2e52 | 52 | m_inflate = new z_stream_s; |
6d44bf31 | 53 | |
856d2e52 GL |
54 | m_inflate->zalloc = (alloc_func)0; |
55 | m_inflate->zfree = (free_func)0; | |
56 | m_inflate->opaque = (voidpf)0; | |
79c3e0e1 | 57 | |
45805ba3 | 58 | int err = inflateInit(m_inflate); |
79c3e0e1 | 59 | if (err != Z_OK) { |
856d2e52 GL |
60 | inflateEnd(m_inflate); |
61 | delete m_inflate; | |
79c3e0e1 GL |
62 | return; |
63 | } | |
64 | ||
6d44bf31 GL |
65 | m_z_buffer = new unsigned char[ZSTREAM_BUFFER_SIZE]; |
66 | m_z_size = ZSTREAM_BUFFER_SIZE; | |
67 | ||
856d2e52 GL |
68 | m_inflate->avail_in = 0; |
69 | m_inflate->next_in = NULL; | |
79c3e0e1 GL |
70 | } |
71 | ||
72 | wxZlibInputStream::~wxZlibInputStream() | |
73 | { | |
856d2e52 GL |
74 | inflateEnd(m_inflate); |
75 | delete m_inflate; | |
45805ba3 VZ |
76 | |
77 | delete [] m_z_buffer; | |
79c3e0e1 GL |
78 | } |
79 | ||
75ed1d15 | 80 | size_t wxZlibInputStream::OnSysRead(void *buffer, size_t size) |
79c3e0e1 GL |
81 | { |
82 | int err; | |
83 | ||
856d2e52 GL |
84 | m_inflate->next_out = (unsigned char *)buffer; |
85 | m_inflate->avail_out = size; | |
79c3e0e1 | 86 | |
856d2e52 GL |
87 | while (m_inflate->avail_out > 0) { |
88 | if (m_inflate->avail_in == 0) { | |
6d44bf31 | 89 | |
f6bcfd97 | 90 | m_parent_i_stream->Read(m_z_buffer, wxMin(m_z_size, size)); |
856d2e52 GL |
91 | m_inflate->next_in = m_z_buffer; |
92 | m_inflate->avail_in = m_parent_i_stream->LastRead(); | |
6d44bf31 | 93 | |
777fd647 VS |
94 | if (m_parent_i_stream->LastError() != wxStream_NOERROR && |
95 | m_parent_i_stream->LastError() != wxStream_EOF) | |
96 | { | |
97 | m_lasterror = m_parent_i_stream->LastError(); | |
98 | return 0; // failed to read anything | |
99 | } | |
f6bcfd97 BP |
100 | |
101 | if ( m_inflate->avail_in == 0 ) | |
102 | { | |
103 | // EOF | |
104 | m_lasterror = wxStream_EOF; | |
105 | break; | |
106 | } | |
79c3e0e1 | 107 | } |
856d2e52 | 108 | err = inflate(m_inflate, Z_FINISH); |
6d44bf31 | 109 | if (err == Z_STREAM_END) |
777fd647 | 110 | return (size - m_inflate->avail_out); |
79c3e0e1 GL |
111 | } |
112 | ||
777fd647 | 113 | return size-m_inflate->avail_out; |
79c3e0e1 GL |
114 | } |
115 | ||
79c3e0e1 GL |
116 | ////////////////////// |
117 | // wxZlibOutputStream | |
118 | ////////////////////// | |
119 | ||
5824f314 | 120 | wxZlibOutputStream::wxZlibOutputStream(wxOutputStream& stream, int level) |
79c3e0e1 GL |
121 | : wxFilterOutputStream(stream) |
122 | { | |
123 | int err; | |
124 | ||
856d2e52 | 125 | m_deflate = new z_stream_s; |
6d44bf31 | 126 | |
856d2e52 GL |
127 | m_deflate->zalloc = (alloc_func)0; |
128 | m_deflate->zfree = (free_func)0; | |
129 | m_deflate->opaque = (voidpf)0; | |
79c3e0e1 | 130 | |
5824f314 VS |
131 | if (level == -1) level = Z_DEFAULT_COMPRESSION; |
132 | wxASSERT_MSG(level >= 0 && level <= 9, wxT("wxZlibOutputStream compression level must be between 0 and 9!")); | |
133 | ||
134 | err = deflateInit(m_deflate, level); | |
79c3e0e1 | 135 | if (err != Z_OK) { |
856d2e52 | 136 | deflateEnd(m_deflate); |
79c3e0e1 GL |
137 | return; |
138 | } | |
6d44bf31 GL |
139 | |
140 | m_z_buffer = new unsigned char[ZSTREAM_BUFFER_SIZE]; | |
141 | m_z_size = ZSTREAM_BUFFER_SIZE; | |
142 | ||
856d2e52 GL |
143 | m_deflate->avail_in = 0; |
144 | m_deflate->next_out = m_z_buffer; | |
145 | m_deflate->avail_out = m_z_size; | |
79c3e0e1 GL |
146 | } |
147 | ||
148 | wxZlibOutputStream::~wxZlibOutputStream() | |
149 | { | |
150 | int err; | |
151 | ||
6d44bf31 GL |
152 | Sync(); |
153 | ||
856d2e52 | 154 | err = deflate(m_deflate, Z_FINISH); |
3069ac4e RR |
155 | if (err != Z_STREAM_END) |
156 | { | |
223d09f6 | 157 | wxLogDebug( wxT("wxZlibOutputStream: an error occured while closing the stream.\n") ); |
6d44bf31 | 158 | return; |
79c3e0e1 | 159 | } |
79c3e0e1 | 160 | |
856d2e52 | 161 | deflateEnd(m_deflate); |
778d618a | 162 | delete m_deflate; |
6d44bf31 GL |
163 | |
164 | delete[] m_z_buffer; | |
79c3e0e1 GL |
165 | } |
166 | ||
6d44bf31 GL |
167 | void wxZlibOutputStream::Sync() |
168 | { | |
169 | int err; | |
170 | ||
856d2e52 GL |
171 | m_parent_o_stream->Write(m_z_buffer, m_z_size-m_deflate->avail_out); |
172 | m_deflate->next_out = m_z_buffer; | |
173 | m_deflate->avail_out = m_z_size; | |
6d44bf31 | 174 | |
856d2e52 | 175 | err = deflate(m_deflate, Z_FULL_FLUSH); |
6d44bf31 | 176 | if (err != Z_OK) { |
6d44bf31 GL |
177 | return; |
178 | } | |
179 | ||
babd4308 GL |
180 | // Fixed by "Stefan Csomor" <csomor@advancedconcepts.ch> |
181 | while( m_deflate->avail_out == 0 ) | |
182 | { | |
183 | m_parent_o_stream->Write(m_z_buffer, m_z_size ); | |
184 | m_deflate->next_out = m_z_buffer; | |
185 | m_deflate->avail_out = m_z_size; | |
186 | err = deflate(m_deflate, Z_FULL_FLUSH); | |
187 | if (err != Z_OK) { | |
188 | return; | |
189 | } | |
190 | } | |
191 | // End | |
192 | ||
856d2e52 GL |
193 | m_parent_o_stream->Write(m_z_buffer, m_z_size-m_deflate->avail_out); |
194 | m_deflate->next_out = m_z_buffer; | |
195 | m_deflate->avail_out = m_z_size; | |
6d44bf31 GL |
196 | } |
197 | ||
75ed1d15 | 198 | size_t wxZlibOutputStream::OnSysWrite(const void *buffer, size_t size) |
79c3e0e1 GL |
199 | { |
200 | int err; | |
201 | ||
856d2e52 GL |
202 | m_deflate->next_in = (unsigned char *)buffer; |
203 | m_deflate->avail_in = size; | |
79c3e0e1 | 204 | |
856d2e52 | 205 | while (m_deflate->avail_in > 0) { |
6d44bf31 | 206 | |
856d2e52 | 207 | if (m_deflate->avail_out == 0) { |
6d44bf31 | 208 | m_parent_o_stream->Write(m_z_buffer, m_z_size); |
75ed1d15 | 209 | if (m_parent_o_stream->LastError() != wxStream_NOERROR) |
856d2e52 | 210 | return (size - m_deflate->avail_in); |
6d44bf31 | 211 | |
856d2e52 GL |
212 | m_deflate->next_out = m_z_buffer; |
213 | m_deflate->avail_out = m_z_size; | |
79c3e0e1 | 214 | } |
6d44bf31 | 215 | |
856d2e52 | 216 | err = deflate(m_deflate, Z_NO_FLUSH); |
6d44bf31 | 217 | if (err != Z_OK) |
856d2e52 | 218 | return (size - m_deflate->avail_in); |
79c3e0e1 | 219 | } |
6d44bf31 | 220 | return size; |
79c3e0e1 | 221 | } |
ac57418f RR |
222 | |
223 | #endif | |
ce4169a4 | 224 | // wxUSE_ZLIB && wxUSE_STREAMS |
ac57418f | 225 |