| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- #include <ctype.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <zlib.h>
- #include "squirrel.h"
- #include "sqstdblobimpl.h"
- SQ_OPT_STRING_STRLEN();
- #define LZ_BUFFER_SIZE 8192
- static int sq_check_result(HSQUIRRELVM v, int result, const z_stream* stream) {
- /* Both of these are "normal" return codes: */
- if ( result == Z_OK || result == Z_STREAM_END ) return SQ_OK;
- switch ( result ) {
- case Z_NEED_DICT:
- return sq_throwerror(v, _SC("RequiresDictionary: input stream requires a dictionary to be deflated (%s)"),
- stream->msg);
- break;
- case Z_STREAM_ERROR:
- return sq_throwerror(v, _SC("InternalError: inconsistent internal zlib stream (%s)"),
- stream->msg);
- break;
- case Z_DATA_ERROR:
- return sq_throwerror(v, _SC("InvalidInput: input string does not conform to zlib format or checksum"));
- break;
- case Z_MEM_ERROR:
- return sq_throwerror(v, _SC("OutOfMemory: not enough memory (%s)"), stream->msg);
- break;
- case Z_BUF_ERROR:
- return sq_throwerror(v, _SC("InternalError: no progress possible (%s)"), stream->msg);
- break;
- case Z_VERSION_ERROR:
- return sq_throwerror(v, _SC("IncompatibleLibrary: built with version %s, but dynamically linked with version %s (%s)"),
- ZLIB_VERSION, zlibVersion(), stream->msg);
- break;
- default:
- return sq_throwerror(v, _SC("ZLibError: unknown code %d (%s)"), result, stream->msg);
- }
- return SQ_OK;
- }
- static SQRESULT sq_zlib_deflate(HSQUIRRELVM v)
- {
- SQ_FUNC_VARS(v);
- SQ_GET_STRING(v, 2, data);
- SQ_OPT_INTEGER(v, 3, level, Z_DEFAULT_COMPRESSION);
- /* Allocate the stream: */
- z_stream stream;
- stream.zalloc = Z_NULL;
- stream.zfree = Z_NULL;
- if(sq_check_result(v, deflateInit(&stream, level), &stream) != SQ_OK) return SQ_ERROR;
- SQBlob b(LZ_BUFFER_SIZE);
- /* Do the actual deflate'ing: */
- stream.next_in = (unsigned char*)data;
- stream.avail_in = data_size;
- if ( ! stream.avail_in ) {
- /* Passed empty string, make it a noop instead of erroring out. */
- sq_pushliteral(v, "");
- return 1;
- }
- int nchunks = 0;
- do {
- stream.next_out = ((unsigned char*)b.GetBuf()) + (LZ_BUFFER_SIZE * nchunks++);
- stream.avail_out = LZ_BUFFER_SIZE;
- int result = deflate(&stream, Z_FINISH);
- if (result == Z_STREAM_END )
- break;
- if (result != Z_OK)
- {
- sq_check_result(v, result, &stream);
- deflateEnd(&stream);
- return SQ_ERROR;
- }
- b.GrowBufOf(LZ_BUFFER_SIZE);
- } while ( stream.avail_out == 0 );
- SQInteger total_out = stream.total_out;
- /* Close the stream: */
- if(sq_check_result(v, deflateEnd(&stream), &stream) == SQ_ERROR) return SQ_ERROR;
- /* Need to do this before we alter the stack: */
- sq_pushstring(v, (const SQChar*)b.GetBuf(), total_out);
- return 1;
- }
- static SQRESULT sq_zlib_inflate(HSQUIRRELVM v)
- {
- SQ_FUNC_VARS(v);
- SQ_GET_STRING(v, 2, data);
- /* By default, we will do gzip header detection w/ max window size */
- SQ_OPT_INTEGER(v, 3, window_size, MAX_WBITS + 32);
- /* Allocate the stream: */
- z_stream stream;
- stream.zalloc = Z_NULL;
- stream.zfree = Z_NULL;
- if(sq_check_result(v, inflateInit2(&stream, window_size), &stream) != SQ_OK) return SQ_ERROR;
- SQBlob b(LZ_BUFFER_SIZE);
- /* Do the actual deflate'ing: */
- stream.next_in = (unsigned char*)data;
- stream.avail_in = data_size;
- if ( ! stream.avail_in ) {
- /* Passed empty string, make it a noop instead of erroring out. */
- sq_pushliteral(v, "");
- return 1;
- }
- int nchunks = 0;
- do {
- stream.next_out = ((unsigned char*)b.GetBuf()) + (LZ_BUFFER_SIZE * nchunks++);
- stream.avail_out = LZ_BUFFER_SIZE;
- int result = inflate(&stream, Z_FINISH);
- if ( Z_BUF_ERROR != result ) {
- /* Ignore Z_BUF_ERROR since that just indicates that we
- * need a larger buffer in order to proceed. Thanks to
- * Tobias Markmann for finding this bug!
- */
- if(sq_check_result(v, result, &stream) == SQ_OK) break;
- else {
- inflateEnd(&stream);
- return SQ_ERROR;
- }
- }
- b.GrowBufOf(LZ_BUFFER_SIZE);
- } while ( stream.avail_out == 0 );
- SQInteger total_out = stream.total_out;
- /* Close the stream: */
- if(sq_check_result(v, inflateEnd(&stream), &stream) == SQ_ERROR) return SQ_ERROR;
- /* Need to do this before we alter the stack: */
- sq_pushstring(v, (const SQChar*)b.GetBuf(), total_out);
- return 1;
- }
- static int sq_zlib_version(HSQUIRRELVM v)
- {
- sq_pushstring(v, zlibVersion(), -1);
- return 1;
- }
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define INT_CONST(v,num) sq_pushstring(v,_SC(#num),-1);sq_pushinteger(v,num);sq_newslot(v,-3,SQTrue);
- SQRESULT sqext_register_sq_zlib(HSQUIRRELVM v)
- {
- sq_pushliteral(v,_SC("zlib"));
- sq_newtable(v);
- INT_CONST(v, Z_DEFAULT_COMPRESSION);
- INT_CONST(v, Z_BEST_SPEED);
- INT_CONST(v, Z_BEST_COMPRESSION);
- sq_insertfunc(v, _SC("version"), sq_zlib_version, 1, _SC("."), SQTrue);
- sq_insertfunc(v, _SC("deflate"), sq_zlib_deflate, -2, _SC(".si"), SQTrue);
- sq_insertfunc(v, _SC("inflate"), sq_zlib_inflate, -2, _SC(".si"), SQTrue);
- sq_newslot(v,-3,SQTrue); //push zlib table
- return 0;
- }
- #ifdef __cplusplus
- }
- #endif
|