2 * Used by System.IO.Compression.DeflateStream
5 * Gonzalo Paniagua Javier (gonzalo@novell.com)
7 * (c) Copyright 2009 Novell, Inc.
10 #if defined (HAVE_ZLIB)
25 #define BUFFER_SIZE 4096
26 #define ARGUMENT_ERROR -10
29 typedef gint (*read_write_func
) (guchar
*buffer
, gint length
, void *gchandle
);
38 typedef struct _ZStream ZStream
;
40 ZStream
*CreateZStream (gint compress
, guchar gzip
, read_write_func func
, void *gchandle
);
41 gint
CloseZStream (ZStream
*zstream
);
42 gint
Flush (ZStream
*stream
);
43 gint
ReadZStream (ZStream
*stream
, guchar
*buffer
, gint length
);
44 gint
WriteZStream (ZStream
*stream
, guchar
*buffer
, gint length
);
45 static gint
flush_internal (ZStream
*stream
, gboolean is_final
);
48 z_alloc (void *opaque
, gsize nitems
, gsize item_size
)
50 return g_malloc0 (nitems
* item_size
);
54 z_free (void *opaque
, void *ptr
)
60 CreateZStream (gint compress
, guchar gzip
, read_write_func func
, void *gchandle
)
69 #if !defined(ZLIB_VERNUM) || (ZLIB_VERNUM < 0x1204)
70 /* Older versions of zlib do not support raw deflate or gzip */
74 z
= g_new0 (z_stream
, 1);
76 retval
= deflateInit2 (z
, Z_DEFAULT_COMPRESSION
, Z_DEFLATED
, gzip
? 31 : -15, 8, Z_DEFAULT_STRATEGY
);
78 retval
= inflateInit2 (z
, gzip
? 31 : -15);
87 result
= g_new0 (ZStream
, 1);
90 result
->gchandle
= gchandle
;
91 result
->compress
= compress
;
92 result
->buffer
= g_new (guchar
, BUFFER_SIZE
);
97 CloseZStream (ZStream
*zstream
)
103 return ARGUMENT_ERROR
;
106 if (zstream
->compress
) {
107 if (zstream
->stream
->total_in
> 0) {
109 status
= deflate (zstream
->stream
, Z_FINISH
);
110 flush_status
= flush_internal (zstream
, TRUE
);
111 } while (status
== Z_OK
); /* We want Z_STREAM_END or error here here */
112 if (status
== Z_STREAM_END
)
113 status
= flush_status
;
115 deflateEnd (zstream
->stream
);
117 inflateEnd (zstream
->stream
);
119 g_free (zstream
->buffer
);
120 g_free (zstream
->stream
);
121 memset (zstream
, 0, sizeof (ZStream
));
127 write_to_managed (ZStream
*stream
)
133 if (zs
->avail_out
!= BUFFER_SIZE
) {
134 n
= stream
->func (stream
->buffer
, BUFFER_SIZE
- zs
->avail_out
, stream
->gchandle
);
135 zs
->next_out
= stream
->buffer
;
136 zs
->avail_out
= BUFFER_SIZE
;
144 flush_internal (ZStream
*stream
, gboolean is_final
)
148 if (!stream
->compress
)
152 status
= deflate (stream
->stream
, Z_PARTIAL_FLUSH
);
153 if (status
!= Z_OK
&& status
!= Z_STREAM_END
)
156 return write_to_managed (stream
);
160 Flush (ZStream
*stream
)
162 return flush_internal (stream
, FALSE
);
166 ReadZStream (ZStream
*stream
, guchar
*buffer
, gint length
)
172 if (stream
== NULL
|| buffer
== NULL
|| length
< 0)
173 return ARGUMENT_ERROR
;
179 zs
->next_out
= buffer
;
180 zs
->avail_out
= length
;
181 while (zs
->avail_out
> 0) {
182 if (zs
->avail_in
== 0) {
183 n
= stream
->func (stream
->buffer
, BUFFER_SIZE
, stream
->gchandle
);
188 zs
->next_in
= stream
->buffer
;
192 status
= inflate (stream
->stream
, Z_SYNC_FLUSH
);
193 if (status
== Z_STREAM_END
) {
196 } else if (status
!= Z_OK
) {
200 return length
- zs
->avail_out
;
204 WriteZStream (ZStream
*stream
, guchar
*buffer
, gint length
)
210 if (stream
== NULL
|| buffer
== NULL
|| length
< 0)
211 return ARGUMENT_ERROR
;
217 zs
->next_in
= buffer
;
218 zs
->avail_in
= length
;
219 while (zs
->avail_in
> 0) {
220 if (zs
->avail_out
== 0) {
221 zs
->next_out
= stream
->buffer
;
222 zs
->avail_out
= BUFFER_SIZE
;
224 status
= deflate (stream
->stream
, Z_NO_FLUSH
);
225 if (status
!= Z_OK
&& status
!= Z_STREAM_END
)
228 if (zs
->avail_out
== 0) {
229 n
= write_to_managed (stream
);