From ca1374eb05490d51362364d3de366918ea700454 Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Sun, 13 Apr 2014 13:45:12 +0400 Subject: [PATCH] Moved utilities to separate folder --- .../deflate-pako-string/index.js | 2 +- .../deflate-pako-untyped/index.js | 2 +- .../inflate-pako-untyped/index.js | 2 +- index.js | 2 +- lib/deflate.js | 7 +- lib/inflate.js | 7 +- lib/utils/common.js | 104 +++++++++++++++++ lib/{zlib/utils.js => utils/strings.js} | 108 +----------------- lib/zlib/deflate.js | 2 +- lib/zlib/inflate.js | 2 +- lib/zlib/inftrees.js | 2 +- lib/zlib/trees.js | 2 +- test/chunks.js | 2 +- test/gzip_specials.js | 2 +- test/helpers.js | 2 +- test/strings.js | 3 +- 16 files changed, 129 insertions(+), 122 deletions(-) create mode 100644 lib/utils/common.js rename lib/{zlib/utils.js => utils/strings.js} (59%) diff --git a/benchmark/implementations/deflate-pako-string/index.js b/benchmark/implementations/deflate-pako-string/index.js index e91743d..e94bfd7 100644 --- a/benchmark/implementations/deflate-pako-string/index.js +++ b/benchmark/implementations/deflate-pako-string/index.js @@ -1,7 +1,7 @@ 'use strict' var pako = require('../../../'); -var utils = require('../../../lib/zlib/utils'); +var utils = require('../../../lib/utils/common'); exports.run = function(data, level) { pako.deflate(data.string, { diff --git a/benchmark/implementations/deflate-pako-untyped/index.js b/benchmark/implementations/deflate-pako-untyped/index.js index 4fd5455..986c3fb 100644 --- a/benchmark/implementations/deflate-pako-untyped/index.js +++ b/benchmark/implementations/deflate-pako-untyped/index.js @@ -1,7 +1,7 @@ 'use strict' var pako = require('../../../'); -var utils = require('../../../lib/zlib/utils'); +var utils = require('../../../lib/utils/common'); exports.run = function(data, level) { utils.setTyped(false); diff --git a/benchmark/implementations/inflate-pako-untyped/index.js b/benchmark/implementations/inflate-pako-untyped/index.js index bd1b157..5d160de 100644 --- a/benchmark/implementations/inflate-pako-untyped/index.js +++ b/benchmark/implementations/inflate-pako-untyped/index.js @@ -1,7 +1,7 @@ 'use strict' var pako = require('../../../'); -var utils = require('../../../lib/zlib/utils'); +var utils = require('../../../lib/utils/common'); exports.run = function(data, level) { utils.setTyped(false); diff --git a/index.js b/index.js index 189f577..46cf736 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,7 @@ // Top level file is just a mixin of submodules & constants 'use strict'; -var assign = require('./lib/zlib/utils').assign; +var assign = require('./lib/utils/common').assign; var deflate = require('./lib/deflate'); var inflate = require('./lib/inflate'); diff --git a/lib/deflate.js b/lib/deflate.js index d437ebb..b5364fc 100644 --- a/lib/deflate.js +++ b/lib/deflate.js @@ -2,7 +2,8 @@ var zlib_deflate = require('./zlib/deflate.js'); -var utils = require('./zlib/utils'); +var utils = require('./utils/common'); +var strings = require('./utils/strings'); var msg = require('./zlib/messages'); var zstream = require('./zlib/zstream'); @@ -187,7 +188,7 @@ Deflate.prototype.push = function(data, mode) { // Convert data if needed if (typeof data === 'string') { // If we need to compress text, change encoding to utf8. - strm.next_in = utils.string2buf(data); + strm.next_in = strings.string2buf(data); } else { strm.next_in = data; } @@ -210,7 +211,7 @@ Deflate.prototype.push = function(data, mode) { } if (strm.avail_out === 0 || (strm.avail_in === 0 && _mode === Z_FINISH)) { if (this.options.to === 'string') { - this.onData(utils.buf2binstring(utils.shrinkBuf(strm.next_out, strm.next_out_index))); + this.onData(strings.buf2binstring(utils.shrinkBuf(strm.next_out, strm.next_out_index))); } else { this.onData(utils.shrinkBuf(strm.next_out, strm.next_out_index)); } diff --git a/lib/inflate.js b/lib/inflate.js index d75ea0a..a9dfeb5 100644 --- a/lib/inflate.js +++ b/lib/inflate.js @@ -2,7 +2,8 @@ var zlib_inflate = require('./zlib/inflate.js'); -var utils = require('./zlib/utils'); +var utils = require('./utils/common'); +var strings = require('./utils/strings'); var c = require('./zlib/constants'); var msg = require('./zlib/messages'); var zstream = require('./zlib/zstream'); @@ -187,7 +188,7 @@ Inflate.prototype.push = function(data, mode) { // Convert data if needed if (typeof data === 'string') { // Only binary strings can be decompressed on practice - strm.next_in = utils.binstring2buf(data); + strm.next_in = strings.binstring2buf(data); } else { strm.next_in = data; } @@ -231,7 +232,7 @@ Inflate.prototype.push = function(data, mode) { tail = 0; } - utf8str = utils.buf2string(strm.next_out, next_out_utf8_index); + utf8str = strings.buf2string(strm.next_out, next_out_utf8_index); // move tail strm.next_out_index = tail; diff --git a/lib/utils/common.js b/lib/utils/common.js new file mode 100644 index 0000000..6aab672 --- /dev/null +++ b/lib/utils/common.js @@ -0,0 +1,104 @@ +'use strict'; + + +var TYPED_OK = (typeof Uint8Array !== 'undefined') && + (typeof Uint16Array !== 'undefined') && + (typeof Int32Array !== 'undefined'); + + +exports.assign = function (obj /*from1, from2, from3, ...*/) { + var sources = Array.prototype.slice.call(arguments, 1); + while (sources.length) { + var source = sources.shift(); + if (!source) { continue; } + + if (typeof(source) !== 'object') { + throw new TypeError(source + 'must be non-object'); + } + + for (var p in source) { + if (source.hasOwnProperty(p)) { + obj[p] = source[p]; + } + } + } + + return obj; +}; + + +// reduce buffer size, avoiding mem copy +exports.shrinkBuf = function (buf, size) { + if (buf.length === size) { return buf; } + if (buf.subarray) { return buf.subarray(0, size); } + buf.length = size; + return buf; +}; + + +var fnTyped = { + arraySet: function (dest, src, src_offs, len, dest_offs) { + // Suppose, that with typed array support destination is + // always typed - don't check it + if (src.subarray) { + dest.set(src.subarray(src_offs, src_offs+len), dest_offs); + return; + } + // Fallback to ordinary array + for(var i=0; i