4 * Copyright 2015, 2016 Dima Krasner <dima@dimakrasner.com>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials
15 * provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE JIM TCL PROJECT ``AS IS'' AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
19 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21 * JIM TCL PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * The views and conclusions contained in the software and documentation
31 * are those of the authors and should not be interpreted as representing
32 * official policies, either expressed or implied, of the Jim Tcl Project.
38 #include <jim-subcmd.h>
40 #define WBITS_GZIP (MAX_WBITS | 16)
41 /* use small 64K chunks if no size was specified during decompression, to reduce memory consumption */
42 #define DEF_DECOMPRESS_BUFSIZ (64 * 1024)
44 static int JimZlibCheckBufSize(Jim_Interp
*interp
, jim_wide bufsiz
)
46 if ((bufsiz
<= 0) || (bufsiz
> INT_MAX
)) {
47 Jim_SetResultString(interp
, "buffer size must be 0 to ", -1);
48 Jim_AppendObj(interp
, Jim_GetResult(interp
), Jim_NewIntObj(interp
, INT_MAX
));
54 static int Jim_Crc32(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
61 init
= crc32(0L, Z_NULL
, 0);
63 if (Jim_GetLong(interp
, argv
[1], &init
) != JIM_OK
) {
68 in
= Jim_GetString(argv
[0], &len
);
69 Jim_SetResultInt(interp
, crc32((uLong
)init
, (const Bytef
*)in
, (uInt
)len
) & 0xFFFFFFFF);
74 static int Jim_Compress(Jim_Interp
*interp
, const char *in
, int len
, long level
, int wbits
)
79 if ((level
!= Z_DEFAULT_COMPRESSION
) && ((level
< Z_NO_COMPRESSION
) || (level
> Z_BEST_COMPRESSION
))) {
80 Jim_SetResultString(interp
, "level must be 0 to 9", -1);
84 if (deflateInit2(&strm
, level
, Z_DEFLATED
, wbits
, MAX_MEM_LEVEL
, Z_DEFAULT_STRATEGY
) != Z_OK
) {
88 strm
.avail_out
= deflateBound(&strm
, (uLong
)len
);
89 if (strm
.avail_out
> INT_MAX
) {
93 buf
= (Bytef
*)Jim_Alloc((int)strm
.avail_out
);
95 strm
.next_in
= (Bytef
*)in
;
96 strm
.avail_in
= (uInt
)len
;
98 /* always compress in one pass - the return value holds the entire
99 * decompressed data anyway, so there's no reason to do chunked
101 if (deflate(&strm
, Z_FINISH
) != Z_STREAM_END
) {
102 Jim_Free(strm
.next_out
);
109 if (strm
.total_out
> INT_MAX
) {
110 Jim_Free(strm
.next_out
);
114 Jim_SetResult(interp
, Jim_NewStringObjNoAlloc(interp
, (char *)buf
, (int)strm
.total_out
));
118 static int Jim_Deflate(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
120 long level
= Z_DEFAULT_COMPRESSION
;
125 if (Jim_GetLong(interp
, argv
[1], &level
) != JIM_OK
) {
130 in
= Jim_GetString(argv
[0], &len
);
131 return Jim_Compress(interp
, in
, len
, level
, -MAX_WBITS
);
134 static int Jim_Gzip(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
136 long level
= Z_DEFAULT_COMPRESSION
;
141 if (!Jim_CompareStringImmediate(interp
, argv
[1], "-level")) {
145 if (Jim_GetLong(interp
, argv
[2], &level
) != JIM_OK
) {
150 else if (argc
!= 1) {
154 in
= Jim_GetString(argv
[0], &len
);
155 return Jim_Compress(interp
, in
, len
, level
, WBITS_GZIP
);
158 static int Jim_Decompress(Jim_Interp
*interp
, const char *in
, int len
, long bufsiz
, int wbits
)
165 if (JimZlibCheckBufSize(interp
, bufsiz
)) {
169 if (inflateInit2(&strm
, wbits
) != Z_OK
) {
173 /* allocate a buffer - decompression is done in chunks, into this buffer;
174 * when the decompressed data size is given, decompression is faster because
175 * it's done in one pass, with less memcpy() overhead */
176 buf
= Jim_Alloc((int)bufsiz
);
178 out
= Jim_NewEmptyStringObj(interp
);
179 Jim_IncrRefCount(out
);
181 strm
.next_in
= (Bytef
*)in
;
182 strm
.avail_in
= (uInt
)len
;
186 strm
.avail_out
= (uInt
)bufsiz
;
188 ret
= inflate(&strm
, Z_NO_FLUSH
);
192 /* append each chunk to the output object */
193 Jim_AppendString(interp
, out
, buf
, (int)(bufsiz
- (long)strm
.avail_out
));
197 Jim_DecrRefCount(interp
, out
);
200 if (strm
.msg
!= NULL
)
201 Jim_SetResultString(interp
, strm
.msg
, -1);
204 } while (strm
.avail_out
== 0);
205 } while (ret
!= Z_STREAM_END
);
207 /* free memory used for decompression before we assign the return value */
211 Jim_SetResult(interp
, out
);
212 Jim_DecrRefCount(interp
, out
);
217 static int Jim_Inflate(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
219 long bufsiz
= DEF_DECOMPRESS_BUFSIZ
;
224 if (Jim_GetLong(interp
, argv
[1], &bufsiz
) != JIM_OK
) {
228 if (JimZlibCheckBufSize(interp
, bufsiz
)) {
233 in
= Jim_GetString(argv
[0], &len
);
234 return Jim_Decompress(interp
, in
, len
, bufsiz
, -MAX_WBITS
);
237 static int Jim_Gunzip(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
239 long bufsiz
= DEF_DECOMPRESS_BUFSIZ
;
244 if (!Jim_CompareStringImmediate(interp
, argv
[1], "-buffersize")) {
248 if (Jim_GetLong(interp
, argv
[2], &bufsiz
) != JIM_OK
) {
253 else if (argc
!= 1) {
257 in
= Jim_GetString(argv
[0], &len
);
258 return Jim_Decompress(interp
, in
, len
, bufsiz
, WBITS_GZIP
);
261 static const jim_subcmd_type zlib_command_table
[] = {
267 /* Description: Calculates the CRC32 checksum of a string */
274 /* Description: Compresses a string and outputs a raw, zlib-compressed stream */
277 "data ?-level level?",
281 /* Description: Compresses a string and outputs a gzip-compressed stream */
288 /* Description: Decompresses a raw, zlib-compressed stream */
291 "data ?-buffersize size?",
295 /* Description: Decompresses a gzip-compressed stream */
300 static int JimZlibCmd(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
302 return Jim_CallSubCmd(interp
, Jim_ParseSubCmd(interp
, zlib_command_table
, argc
, argv
), argc
, argv
);
305 int Jim_zlibInit(Jim_Interp
*interp
)
307 if (Jim_PackageProvide(interp
, "zlib", "1.0", JIM_ERRMSG
)) {
311 Jim_CreateCommand(interp
, "zlib", JimZlibCmd
, 0, 0);