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_SetResultFormatted(interp
, "buffer size must be 0 to %#s", Jim_NewIntObj(interp
, INT_MAX
));
53 static int Jim_Crc32(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
60 init
= crc32(0L, Z_NULL
, 0);
62 if (Jim_GetLong(interp
, argv
[1], &init
) != JIM_OK
) {
67 in
= Jim_GetString(argv
[0], &len
);
68 Jim_SetResultInt(interp
, crc32((uLong
)init
, (const Bytef
*)in
, (uInt
)len
) & 0xFFFFFFFF);
73 static int Jim_Compress(Jim_Interp
*interp
, const char *in
, int len
, long level
, int wbits
)
78 if ((level
!= Z_DEFAULT_COMPRESSION
) && ((level
< Z_NO_COMPRESSION
) || (level
> Z_BEST_COMPRESSION
))) {
79 Jim_SetResultString(interp
, "level must be 0 to 9", -1);
83 if (deflateInit2(&strm
, level
, Z_DEFLATED
, wbits
, MAX_MEM_LEVEL
, Z_DEFAULT_STRATEGY
) != Z_OK
) {
87 strm
.avail_out
= deflateBound(&strm
, (uLong
)len
);
89 /* Some compression methods may need a little more space */
90 strm
.avail_out
+= 100;
92 if (strm
.avail_out
> INT_MAX
) {
96 buf
= (Bytef
*)Jim_Alloc((int)strm
.avail_out
);
98 strm
.next_in
= (Bytef
*)in
;
99 strm
.avail_in
= (uInt
)len
;
101 /* always compress in one pass - the return value holds the entire
102 * decompressed data anyway, so there's no reason to do chunked
104 if (deflate(&strm
, Z_FINISH
) != Z_STREAM_END
) {
107 Jim_SetResultString(interp
, "not enough output space", -1);
113 if (strm
.total_out
> INT_MAX
) {
115 Jim_SetResultString(interp
, "too much output", -1);
119 Jim_SetResult(interp
, Jim_NewStringObjNoAlloc(interp
, (char *)buf
, (int)strm
.total_out
));
123 static int Jim_Deflate(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
125 long level
= Z_DEFAULT_COMPRESSION
;
130 if (Jim_GetLong(interp
, argv
[1], &level
) != JIM_OK
) {
135 in
= Jim_GetString(argv
[0], &len
);
136 return Jim_Compress(interp
, in
, len
, level
, -MAX_WBITS
);
139 static int Jim_Gzip(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
141 long level
= Z_DEFAULT_COMPRESSION
;
146 if (!Jim_CompareStringImmediate(interp
, argv
[1], "-level")) {
150 if (Jim_GetLong(interp
, argv
[2], &level
) != JIM_OK
) {
155 else if (argc
!= 1) {
159 in
= Jim_GetString(argv
[0], &len
);
160 return Jim_Compress(interp
, in
, len
, level
, WBITS_GZIP
);
163 static int Jim_Decompress(Jim_Interp
*interp
, const char *in
, int len
, long bufsiz
, int wbits
)
170 if (JimZlibCheckBufSize(interp
, bufsiz
)) {
174 if (inflateInit2(&strm
, wbits
) != Z_OK
) {
178 /* allocate a buffer - decompression is done in chunks, into this buffer;
179 * when the decompressed data size is given, decompression is faster because
180 * it's done in one pass, with less memcpy() overhead */
181 buf
= Jim_Alloc((int)bufsiz
);
183 out
= Jim_NewEmptyStringObj(interp
);
184 Jim_IncrRefCount(out
);
186 strm
.next_in
= (Bytef
*)in
;
187 strm
.avail_in
= (uInt
)len
;
191 strm
.avail_out
= (uInt
)bufsiz
;
193 ret
= inflate(&strm
, Z_NO_FLUSH
);
197 /* append each chunk to the output object */
198 Jim_AppendString(interp
, out
, buf
, (int)(bufsiz
- (long)strm
.avail_out
));
202 Jim_DecrRefCount(interp
, out
);
205 if (strm
.msg
!= NULL
)
206 Jim_SetResultString(interp
, strm
.msg
, -1);
209 } while (strm
.avail_out
== 0);
210 } while (ret
!= Z_STREAM_END
);
212 /* free memory used for decompression before we assign the return value */
216 Jim_SetResult(interp
, out
);
217 Jim_DecrRefCount(interp
, out
);
222 static int Jim_Inflate(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
224 long bufsiz
= DEF_DECOMPRESS_BUFSIZ
;
229 if (Jim_GetLong(interp
, argv
[1], &bufsiz
) != JIM_OK
) {
233 if (JimZlibCheckBufSize(interp
, bufsiz
)) {
238 in
= Jim_GetString(argv
[0], &len
);
239 return Jim_Decompress(interp
, in
, len
, bufsiz
, -MAX_WBITS
);
242 static int Jim_Gunzip(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
244 long bufsiz
= DEF_DECOMPRESS_BUFSIZ
;
249 if (!Jim_CompareStringImmediate(interp
, argv
[1], "-buffersize")) {
253 if (Jim_GetLong(interp
, argv
[2], &bufsiz
) != JIM_OK
) {
258 else if (argc
!= 1) {
262 in
= Jim_GetString(argv
[0], &len
);
263 return Jim_Decompress(interp
, in
, len
, bufsiz
, WBITS_GZIP
);
266 static const jim_subcmd_type zlib_command_table
[] = {
272 /* Description: Calculates the CRC32 checksum of a string */
279 /* Description: Compresses a string and outputs a raw, zlib-compressed stream */
282 "data ?-level level?",
286 /* Description: Compresses a string and outputs a gzip-compressed stream */
293 /* Description: Decompresses a raw, zlib-compressed stream */
296 "data ?-buffersize size?",
300 /* Description: Decompresses a gzip-compressed stream */
305 static int JimZlibCmd(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
307 return Jim_CallSubCmd(interp
, Jim_ParseSubCmd(interp
, zlib_command_table
, argc
, argv
), argc
, argv
);
310 int Jim_zlibInit(Jim_Interp
*interp
)
312 if (Jim_PackageProvide(interp
, "zlib", "1.0", JIM_ERRMSG
)) {
316 Jim_CreateCommand(interp
, "zlib", JimZlibCmd
, 0, 0);