zlib: improve performance
PR-URL: https://github.com/nodejs/node/pull/13322 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
This commit is contained in:
parent
e5dc934ef6
commit
add4b0ab8c
32
benchmark/zlib/creation.js
Normal file
32
benchmark/zlib/creation.js
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
'use strict';
|
||||||
|
var common = require('../common.js');
|
||||||
|
var zlib = require('zlib');
|
||||||
|
|
||||||
|
var bench = common.createBenchmark(main, {
|
||||||
|
type: [
|
||||||
|
'Deflate', 'DeflateRaw', 'Inflate', 'InflateRaw', 'Gzip', 'Gunzip', 'Unzip'
|
||||||
|
],
|
||||||
|
options: ['true', 'false'],
|
||||||
|
n: [5e5]
|
||||||
|
});
|
||||||
|
|
||||||
|
function main(conf) {
|
||||||
|
var n = +conf.n;
|
||||||
|
var fn = zlib['create' + conf.type];
|
||||||
|
if (typeof fn !== 'function')
|
||||||
|
throw new Error('Invalid zlib type');
|
||||||
|
var i = 0;
|
||||||
|
|
||||||
|
if (conf.options === 'true') {
|
||||||
|
var opts = {};
|
||||||
|
bench.start();
|
||||||
|
for (; i < n; ++i)
|
||||||
|
fn(opts);
|
||||||
|
bench.end(n);
|
||||||
|
} else {
|
||||||
|
bench.start();
|
||||||
|
for (; i < n; ++i)
|
||||||
|
fn();
|
||||||
|
bench.end(n);
|
||||||
|
}
|
||||||
|
}
|
54
benchmark/zlib/deflate.js
Normal file
54
benchmark/zlib/deflate.js
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
'use strict';
|
||||||
|
var common = require('../common.js');
|
||||||
|
var zlib = require('zlib');
|
||||||
|
|
||||||
|
var bench = common.createBenchmark(main, {
|
||||||
|
method: ['createDeflate', 'deflate', 'deflateSync'],
|
||||||
|
inputLen: [1024],
|
||||||
|
n: [4e5]
|
||||||
|
});
|
||||||
|
|
||||||
|
function main(conf) {
|
||||||
|
var n = +conf.n;
|
||||||
|
var method = conf.method;
|
||||||
|
var chunk = Buffer.alloc(+conf.inputLen, 'a');
|
||||||
|
|
||||||
|
var i = 0;
|
||||||
|
switch (method) {
|
||||||
|
// Performs `n` writes for a single deflate stream
|
||||||
|
case 'createDeflate':
|
||||||
|
var deflater = zlib.createDeflate();
|
||||||
|
deflater.resume();
|
||||||
|
deflater.on('finish', () => {
|
||||||
|
bench.end(n);
|
||||||
|
});
|
||||||
|
|
||||||
|
bench.start();
|
||||||
|
(function next() {
|
||||||
|
if (i++ === n)
|
||||||
|
return deflater.end();
|
||||||
|
deflater.write(chunk, next);
|
||||||
|
})();
|
||||||
|
break;
|
||||||
|
// Performs `n` single deflate operations
|
||||||
|
case 'deflate':
|
||||||
|
var deflate = zlib.deflate;
|
||||||
|
bench.start();
|
||||||
|
(function next(err, result) {
|
||||||
|
if (i++ === n)
|
||||||
|
return bench.end(n);
|
||||||
|
deflate(chunk, next);
|
||||||
|
})();
|
||||||
|
break;
|
||||||
|
// Performs `n` single deflateSync operations
|
||||||
|
case 'deflateSync':
|
||||||
|
var deflateSync = zlib.deflateSync;
|
||||||
|
bench.start();
|
||||||
|
for (; i < n; ++i)
|
||||||
|
deflateSync(chunk);
|
||||||
|
bench.end(n);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error('Unsupported deflate method');
|
||||||
|
}
|
||||||
|
}
|
623
lib/zlib.js
623
lib/zlib.js
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
const Buffer = require('buffer').Buffer;
|
const Buffer = require('buffer').Buffer;
|
||||||
const Transform = require('_stream_transform');
|
const Transform = require('_stream_transform');
|
||||||
|
const { _extend } = require('util');
|
||||||
const binding = process.binding('zlib');
|
const binding = process.binding('zlib');
|
||||||
const assert = require('assert').ok;
|
const assert = require('assert').ok;
|
||||||
const kMaxLength = require('buffer').kMaxLength;
|
const kMaxLength = require('buffer').kMaxLength;
|
||||||
@ -30,6 +31,13 @@ const kRangeErrorMessage = 'Cannot create final Buffer. It would be larger ' +
|
|||||||
`than 0x${kMaxLength.toString(16)} bytes`;
|
`than 0x${kMaxLength.toString(16)} bytes`;
|
||||||
|
|
||||||
const constants = process.binding('constants').zlib;
|
const constants = process.binding('constants').zlib;
|
||||||
|
const {
|
||||||
|
Z_NO_FLUSH, Z_BLOCK, Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH, Z_MIN_CHUNK,
|
||||||
|
Z_MIN_WINDOWBITS, Z_MAX_WINDOWBITS, Z_MIN_LEVEL, Z_MAX_LEVEL, Z_MIN_MEMLEVEL,
|
||||||
|
Z_MAX_MEMLEVEL, Z_DEFAULT_CHUNK, Z_DEFAULT_COMPRESSION, Z_DEFAULT_STRATEGY,
|
||||||
|
Z_DEFAULT_WINDOWBITS, Z_DEFAULT_MEMLEVEL, Z_FIXED, DEFLATE, DEFLATERAW,
|
||||||
|
INFLATE, INFLATERAW, GZIP, GUNZIP, UNZIP
|
||||||
|
} = constants;
|
||||||
const { inherits } = require('util');
|
const { inherits } = require('util');
|
||||||
|
|
||||||
// translation table for return codes.
|
// translation table for return codes.
|
||||||
@ -51,38 +59,6 @@ for (var ck = 0; ck < ckeys.length; ck++) {
|
|||||||
codes[codes[ckey]] = ckey;
|
codes[codes[ckey]] = ckey;
|
||||||
}
|
}
|
||||||
|
|
||||||
function isInvalidFlushFlag(flag) {
|
|
||||||
return typeof flag !== 'number' ||
|
|
||||||
flag < constants.Z_NO_FLUSH ||
|
|
||||||
flag > constants.Z_BLOCK;
|
|
||||||
|
|
||||||
// Covers: constants.Z_NO_FLUSH (0),
|
|
||||||
// constants.Z_PARTIAL_FLUSH (1),
|
|
||||||
// constants.Z_SYNC_FLUSH (2),
|
|
||||||
// constants.Z_FULL_FLUSH (3),
|
|
||||||
// constants.Z_FINISH (4), and
|
|
||||||
// constants.Z_BLOCK (5)
|
|
||||||
}
|
|
||||||
|
|
||||||
function isInvalidStrategy(strategy) {
|
|
||||||
return typeof strategy !== 'number' ||
|
|
||||||
strategy < constants.Z_DEFAULT_STRATEGY ||
|
|
||||||
strategy > constants.Z_FIXED;
|
|
||||||
|
|
||||||
// Covers: constants.Z_FILTERED, (1)
|
|
||||||
// constants.Z_HUFFMAN_ONLY (2),
|
|
||||||
// constants.Z_RLE (3),
|
|
||||||
// constants.Z_FIXED (4), and
|
|
||||||
// constants.Z_DEFAULT_STRATEGY (0)
|
|
||||||
}
|
|
||||||
|
|
||||||
function responseData(engine, buffer) {
|
|
||||||
if (engine._opts.info) {
|
|
||||||
return { buffer, engine };
|
|
||||||
}
|
|
||||||
return buffer;
|
|
||||||
}
|
|
||||||
|
|
||||||
function zlibBuffer(engine, buffer, callback) {
|
function zlibBuffer(engine, buffer, callback) {
|
||||||
// Streams do not support non-Buffer ArrayBufferViews yet. Convert it to a
|
// Streams do not support non-Buffer ArrayBufferViews yet. Convert it to a
|
||||||
// Buffer without copying.
|
// Buffer without copying.
|
||||||
@ -90,73 +66,76 @@ function zlibBuffer(engine, buffer, callback) {
|
|||||||
Object.getPrototypeOf(buffer) !== Buffer.prototype) {
|
Object.getPrototypeOf(buffer) !== Buffer.prototype) {
|
||||||
buffer = Buffer.from(buffer.buffer, buffer.byteOffset, buffer.byteLength);
|
buffer = Buffer.from(buffer.buffer, buffer.byteOffset, buffer.byteLength);
|
||||||
}
|
}
|
||||||
|
engine.buffers = null;
|
||||||
var buffers = [];
|
engine.nread = 0;
|
||||||
var nread = 0;
|
engine.cb = callback;
|
||||||
|
engine.on('data', zlibBufferOnData);
|
||||||
engine.on('error', onError);
|
engine.on('error', zlibBufferOnError);
|
||||||
engine.on('end', onEnd);
|
engine.on('end', zlibBufferOnEnd);
|
||||||
|
|
||||||
engine.end(buffer);
|
engine.end(buffer);
|
||||||
flow();
|
}
|
||||||
|
|
||||||
function flow() {
|
function zlibBufferOnData(chunk) {
|
||||||
var chunk;
|
if (!this.buffers)
|
||||||
while (null !== (chunk = engine.read())) {
|
this.buffers = [chunk];
|
||||||
buffers.push(chunk);
|
else
|
||||||
nread += chunk.byteLength;
|
this.buffers.push(chunk);
|
||||||
}
|
this.nread += chunk.length;
|
||||||
engine.once('readable', flow);
|
}
|
||||||
}
|
|
||||||
|
function zlibBufferOnError(err) {
|
||||||
function onError(err) {
|
this.removeAllListeners('end');
|
||||||
engine.removeListener('end', onEnd);
|
this.cb(err);
|
||||||
engine.removeListener('readable', flow);
|
}
|
||||||
callback(err);
|
|
||||||
}
|
function zlibBufferOnEnd() {
|
||||||
|
var buf;
|
||||||
function onEnd() {
|
var err;
|
||||||
var buf;
|
if (this.nread >= kMaxLength) {
|
||||||
var err = null;
|
err = new RangeError(kRangeErrorMessage);
|
||||||
|
} else {
|
||||||
if (nread >= kMaxLength) {
|
var bufs = this.buffers;
|
||||||
err = new RangeError(kRangeErrorMessage);
|
buf = (bufs.length === 1 ? bufs[0] : Buffer.concat(bufs, this.nread));
|
||||||
} else {
|
|
||||||
buf = Buffer.concat(buffers, nread);
|
|
||||||
}
|
|
||||||
|
|
||||||
buffers = [];
|
|
||||||
engine.close();
|
|
||||||
callback(err, responseData(engine, buf));
|
|
||||||
}
|
}
|
||||||
|
this.close();
|
||||||
|
if (err)
|
||||||
|
this.cb(err);
|
||||||
|
else if (this._info)
|
||||||
|
this.cb(null, { buffer: buf, engine: this });
|
||||||
|
else
|
||||||
|
this.cb(null, buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
function zlibBufferSync(engine, buffer) {
|
function zlibBufferSync(engine, buffer) {
|
||||||
if (typeof buffer === 'string')
|
if (typeof buffer === 'string') {
|
||||||
buffer = Buffer.from(buffer);
|
buffer = Buffer.from(buffer);
|
||||||
else if (!ArrayBuffer.isView(buffer))
|
} else if (!ArrayBuffer.isView(buffer)) {
|
||||||
throw new TypeError('"buffer" argument must be a string, Buffer, ' +
|
throw new TypeError('"buffer" argument must be a string, Buffer, ' +
|
||||||
'TypedArray, or DataView');
|
'TypedArray, or DataView');
|
||||||
|
}
|
||||||
var flushFlag = engine._finishFlushFlag;
|
buffer = processChunkSync(engine, buffer, engine._finishFlushFlag);
|
||||||
|
if (engine._info)
|
||||||
return responseData(engine, engine._processChunk(buffer, flushFlag));
|
return { buffer, engine };
|
||||||
|
else
|
||||||
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
function zlibOnError(message, errno) {
|
function zlibOnError(message, errno) {
|
||||||
|
var self = this.jsref;
|
||||||
// there is no way to cleanly recover.
|
// there is no way to cleanly recover.
|
||||||
// continuing only obscures problems.
|
// continuing only obscures problems.
|
||||||
_close(this);
|
_close(self);
|
||||||
this._hadError = true;
|
self._hadError = true;
|
||||||
|
|
||||||
var error = new Error(message);
|
var error = new Error(message);
|
||||||
error.errno = errno;
|
error.errno = errno;
|
||||||
error.code = codes[errno];
|
error.code = codes[errno];
|
||||||
this.emit('error', error);
|
self.emit('error', error);
|
||||||
}
|
}
|
||||||
|
|
||||||
function flushCallback(level, strategy, callback) {
|
function flushCallback(level, strategy, callback) {
|
||||||
assert(this._handle, 'zlib binding closed');
|
if (!this._handle)
|
||||||
|
assert(false, 'zlib binding closed');
|
||||||
this._handle.params(level, strategy);
|
this._handle.params(level, strategy);
|
||||||
if (!this._hadError) {
|
if (!this._hadError) {
|
||||||
this._level = level;
|
this._level = level;
|
||||||
@ -170,97 +149,114 @@ function flushCallback(level, strategy, callback) {
|
|||||||
// true or false if there is anything in the queue when
|
// true or false if there is anything in the queue when
|
||||||
// you call the .write() method.
|
// you call the .write() method.
|
||||||
function Zlib(opts, mode) {
|
function Zlib(opts, mode) {
|
||||||
opts = opts || {};
|
|
||||||
Transform.call(this, opts);
|
Transform.call(this, opts);
|
||||||
|
var chunkSize = Z_DEFAULT_CHUNK;
|
||||||
this.bytesRead = 0;
|
var flush = Z_NO_FLUSH;
|
||||||
|
var finishFlush = Z_FINISH;
|
||||||
this._opts = opts;
|
var windowBits = Z_DEFAULT_WINDOWBITS;
|
||||||
this._chunkSize = opts.chunkSize || constants.Z_DEFAULT_CHUNK;
|
var level = Z_DEFAULT_COMPRESSION;
|
||||||
|
var memLevel = Z_DEFAULT_MEMLEVEL;
|
||||||
if (opts.flush && isInvalidFlushFlag(opts.flush)) {
|
var strategy = Z_DEFAULT_STRATEGY;
|
||||||
throw new RangeError('Invalid flush flag: ' + opts.flush);
|
var dictionary;
|
||||||
}
|
if (opts) {
|
||||||
if (opts.finishFlush && isInvalidFlushFlag(opts.finishFlush)) {
|
chunkSize = opts.chunkSize;
|
||||||
throw new RangeError('Invalid flush flag: ' + opts.finishFlush);
|
if (chunkSize !== undefined && chunkSize === chunkSize) {
|
||||||
}
|
if (chunkSize < Z_MIN_CHUNK || !Number.isFinite(chunkSize))
|
||||||
|
throw new RangeError('Invalid chunk size: ' + chunkSize);
|
||||||
this._flushFlag = opts.flush || constants.Z_NO_FLUSH;
|
} else {
|
||||||
this._finishFlushFlag = opts.finishFlush !== undefined ?
|
chunkSize = Z_DEFAULT_CHUNK;
|
||||||
opts.finishFlush : constants.Z_FINISH;
|
|
||||||
|
|
||||||
if (opts.chunkSize !== undefined) {
|
|
||||||
if (opts.chunkSize < constants.Z_MIN_CHUNK) {
|
|
||||||
throw new RangeError('Invalid chunk size: ' + opts.chunkSize);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (opts.windowBits !== undefined) {
|
flush = opts.flush;
|
||||||
if (opts.windowBits < constants.Z_MIN_WINDOWBITS ||
|
if (flush !== undefined && flush === flush) {
|
||||||
opts.windowBits > constants.Z_MAX_WINDOWBITS) {
|
if (flush < Z_NO_FLUSH || flush > Z_BLOCK || !Number.isFinite(flush))
|
||||||
throw new RangeError('Invalid windowBits: ' + opts.windowBits);
|
throw new RangeError('Invalid flush flag: ' + flush);
|
||||||
|
} else {
|
||||||
|
flush = Z_NO_FLUSH;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (opts.level !== undefined) {
|
finishFlush = opts.finishFlush;
|
||||||
if (opts.level < constants.Z_MIN_LEVEL ||
|
if (finishFlush !== undefined && finishFlush === finishFlush) {
|
||||||
opts.level > constants.Z_MAX_LEVEL) {
|
if (finishFlush < Z_NO_FLUSH || finishFlush > Z_BLOCK ||
|
||||||
throw new RangeError('Invalid compression level: ' + opts.level);
|
!Number.isFinite(finishFlush)) {
|
||||||
|
throw new RangeError('Invalid flush flag: ' + finishFlush);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
finishFlush = Z_FINISH;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (opts.memLevel !== undefined) {
|
windowBits = opts.windowBits;
|
||||||
if (opts.memLevel < constants.Z_MIN_MEMLEVEL ||
|
if (windowBits !== undefined && windowBits === windowBits) {
|
||||||
opts.memLevel > constants.Z_MAX_MEMLEVEL) {
|
if (windowBits < Z_MIN_WINDOWBITS || windowBits > Z_MAX_WINDOWBITS ||
|
||||||
throw new RangeError('Invalid memLevel: ' + opts.memLevel);
|
!Number.isFinite(windowBits)) {
|
||||||
|
throw new RangeError('Invalid windowBits: ' + windowBits);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
windowBits = Z_DEFAULT_WINDOWBITS;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (opts.strategy !== undefined && isInvalidStrategy(opts.strategy))
|
level = opts.level;
|
||||||
throw new TypeError('Invalid strategy: ' + opts.strategy);
|
if (level !== undefined && level === level) {
|
||||||
|
if (level < Z_MIN_LEVEL || level > Z_MAX_LEVEL ||
|
||||||
|
!Number.isFinite(level)) {
|
||||||
|
throw new RangeError('Invalid compression level: ' + level);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
level = Z_DEFAULT_COMPRESSION;
|
||||||
|
}
|
||||||
|
|
||||||
if (opts.dictionary !== undefined) {
|
memLevel = opts.memLevel;
|
||||||
if (!ArrayBuffer.isView(opts.dictionary)) {
|
if (memLevel !== undefined && memLevel === memLevel) {
|
||||||
|
if (memLevel < Z_MIN_MEMLEVEL || memLevel > Z_MAX_MEMLEVEL ||
|
||||||
|
!Number.isFinite(memLevel)) {
|
||||||
|
throw new RangeError('Invalid memLevel: ' + memLevel);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
memLevel = Z_DEFAULT_MEMLEVEL;
|
||||||
|
}
|
||||||
|
|
||||||
|
strategy = opts.strategy;
|
||||||
|
if (strategy !== undefined && strategy === strategy) {
|
||||||
|
if (strategy < Z_DEFAULT_STRATEGY || strategy > Z_FIXED ||
|
||||||
|
!Number.isFinite(strategy)) {
|
||||||
|
throw new TypeError('Invalid strategy: ' + strategy);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
strategy = Z_DEFAULT_STRATEGY;
|
||||||
|
}
|
||||||
|
|
||||||
|
dictionary = opts.dictionary;
|
||||||
|
if (dictionary !== undefined && !ArrayBuffer.isView(dictionary)) {
|
||||||
throw new TypeError(
|
throw new TypeError(
|
||||||
'Invalid dictionary: it should be a Buffer, TypedArray, or DataView');
|
'Invalid dictionary: it should be a Buffer, TypedArray, or DataView');
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
if (opts.encoding || opts.objectMode || opts.writableObjectMode) {
|
||||||
|
opts = _extend({}, opts);
|
||||||
|
opts.encoding = null;
|
||||||
|
opts.objectMode = false;
|
||||||
|
opts.writableObjectMode = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.bytesRead = 0;
|
||||||
this._handle = new binding.Zlib(mode);
|
this._handle = new binding.Zlib(mode);
|
||||||
this._handle.onerror = zlibOnError.bind(this);
|
this._handle.jsref = this; // Used by processCallback() and zlibOnError()
|
||||||
|
this._handle.onerror = zlibOnError;
|
||||||
this._hadError = false;
|
this._hadError = false;
|
||||||
|
this._writeState = new Uint32Array(2);
|
||||||
|
|
||||||
var level = constants.Z_DEFAULT_COMPRESSION;
|
this._handle.init(windowBits, level, memLevel, strategy, this._writeState,
|
||||||
if (Number.isFinite(opts.level)) {
|
processCallback, dictionary);
|
||||||
level = opts.level;
|
|
||||||
}
|
|
||||||
|
|
||||||
var strategy = constants.Z_DEFAULT_STRATEGY;
|
this._outBuffer = Buffer.allocUnsafe(chunkSize);
|
||||||
if (Number.isFinite(opts.strategy)) {
|
this._outOffset = 0;
|
||||||
strategy = opts.strategy;
|
|
||||||
}
|
|
||||||
|
|
||||||
var windowBits = constants.Z_DEFAULT_WINDOWBITS;
|
|
||||||
if (Number.isFinite(opts.windowBits)) {
|
|
||||||
windowBits = opts.windowBits;
|
|
||||||
}
|
|
||||||
|
|
||||||
var memLevel = constants.Z_DEFAULT_MEMLEVEL;
|
|
||||||
if (Number.isFinite(opts.memLevel)) {
|
|
||||||
memLevel = opts.memLevel;
|
|
||||||
}
|
|
||||||
|
|
||||||
this._handle.init(windowBits,
|
|
||||||
level,
|
|
||||||
memLevel,
|
|
||||||
strategy,
|
|
||||||
opts.dictionary);
|
|
||||||
|
|
||||||
this._buffer = Buffer.allocUnsafe(this._chunkSize);
|
|
||||||
this._offset = 0;
|
|
||||||
this._level = level;
|
this._level = level;
|
||||||
this._strategy = strategy;
|
this._strategy = strategy;
|
||||||
|
this._chunkSize = chunkSize;
|
||||||
|
this._flushFlag = flush;
|
||||||
|
this._origFlushFlag = flush;
|
||||||
|
this._finishFlushFlag = finishFlush;
|
||||||
|
this._info = opts && opts.info;
|
||||||
this.once('end', this.close);
|
this.once('end', this.close);
|
||||||
}
|
}
|
||||||
inherits(Zlib, Transform);
|
inherits(Zlib, Transform);
|
||||||
@ -274,15 +270,17 @@ Object.defineProperty(Zlib.prototype, '_closed', {
|
|||||||
});
|
});
|
||||||
|
|
||||||
Zlib.prototype.params = function params(level, strategy, callback) {
|
Zlib.prototype.params = function params(level, strategy, callback) {
|
||||||
if (level < constants.Z_MIN_LEVEL ||
|
if (level < Z_MIN_LEVEL || level > Z_MAX_LEVEL)
|
||||||
level > constants.Z_MAX_LEVEL) {
|
|
||||||
throw new RangeError('Invalid compression level: ' + level);
|
throw new RangeError('Invalid compression level: ' + level);
|
||||||
}
|
|
||||||
if (isInvalidStrategy(strategy))
|
if (strategy !== undefined &&
|
||||||
|
(strategy < Z_DEFAULT_STRATEGY || strategy > Z_FIXED ||
|
||||||
|
!Number.isFinite(strategy))) {
|
||||||
throw new TypeError('Invalid strategy: ' + strategy);
|
throw new TypeError('Invalid strategy: ' + strategy);
|
||||||
|
}
|
||||||
|
|
||||||
if (this._level !== level || this._strategy !== strategy) {
|
if (this._level !== level || this._strategy !== strategy) {
|
||||||
this.flush(constants.Z_SYNC_FLUSH,
|
this.flush(Z_SYNC_FLUSH,
|
||||||
flushCallback.bind(this, level, strategy, callback));
|
flushCallback.bind(this, level, strategy, callback));
|
||||||
} else {
|
} else {
|
||||||
process.nextTick(callback);
|
process.nextTick(callback);
|
||||||
@ -290,7 +288,8 @@ Zlib.prototype.params = function params(level, strategy, callback) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
Zlib.prototype.reset = function reset() {
|
Zlib.prototype.reset = function reset() {
|
||||||
assert(this._handle, 'zlib binding closed');
|
if (!this._handle)
|
||||||
|
assert(false, 'zlib binding closed');
|
||||||
return this._handle.reset();
|
return this._handle.reset();
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -305,7 +304,7 @@ Zlib.prototype.flush = function flush(kind, callback) {
|
|||||||
|
|
||||||
if (typeof kind === 'function' || (kind === undefined && !callback)) {
|
if (typeof kind === 'function' || (kind === undefined && !callback)) {
|
||||||
callback = kind;
|
callback = kind;
|
||||||
kind = constants.Z_FULL_FLUSH;
|
kind = Z_FULL_FLUSH;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ws.ended) {
|
if (ws.ended) {
|
||||||
@ -331,160 +330,192 @@ Zlib.prototype.close = function close(callback) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
Zlib.prototype._transform = function _transform(chunk, encoding, cb) {
|
Zlib.prototype._transform = function _transform(chunk, encoding, cb) {
|
||||||
var flushFlag;
|
|
||||||
var ws = this._writableState;
|
|
||||||
var ending = ws.ending || ws.ended;
|
|
||||||
var last = ending && (!chunk || ws.length === chunk.byteLength);
|
|
||||||
|
|
||||||
if (chunk !== null && !ArrayBuffer.isView(chunk))
|
|
||||||
return cb(new TypeError('invalid input'));
|
|
||||||
|
|
||||||
if (!this._handle)
|
|
||||||
return cb(new Error('zlib binding closed'));
|
|
||||||
|
|
||||||
// If it's the last chunk, or a final flush, we use the Z_FINISH flush flag
|
// If it's the last chunk, or a final flush, we use the Z_FINISH flush flag
|
||||||
// (or whatever flag was provided using opts.finishFlush).
|
// (or whatever flag was provided using opts.finishFlush).
|
||||||
// If it's explicitly flushing at some other time, then we use
|
// If it's explicitly flushing at some other time, then we use
|
||||||
// Z_FULL_FLUSH. Otherwise, use Z_NO_FLUSH for maximum compression
|
// Z_FULL_FLUSH. Otherwise, use the original opts.flush flag.
|
||||||
// goodness.
|
var flushFlag;
|
||||||
if (last)
|
var ws = this._writableState;
|
||||||
|
if ((ws.ending || ws.ended) && ws.length === chunk.byteLength) {
|
||||||
flushFlag = this._finishFlushFlag;
|
flushFlag = this._finishFlushFlag;
|
||||||
else {
|
} else {
|
||||||
flushFlag = this._flushFlag;
|
flushFlag = this._flushFlag;
|
||||||
// once we've flushed the last of the queue, stop flushing and
|
// once we've flushed the last of the queue, stop flushing and
|
||||||
// go back to the normal behavior.
|
// go back to the normal behavior.
|
||||||
if (chunk.byteLength >= ws.length) {
|
if (chunk.byteLength >= ws.length)
|
||||||
this._flushFlag = this._opts.flush || constants.Z_NO_FLUSH;
|
this._flushFlag = this._origFlushFlag;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
processChunk(this, chunk, flushFlag, cb);
|
||||||
this._processChunk(chunk, flushFlag, cb);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Zlib.prototype._processChunk = function _processChunk(chunk, flushFlag, cb) {
|
Zlib.prototype._processChunk = function _processChunk(chunk, flushFlag, cb) {
|
||||||
var availInBefore = chunk && chunk.byteLength;
|
// _processChunk() is left for backwards compatibility
|
||||||
var availOutBefore = this._chunkSize - this._offset;
|
if (typeof cb === 'function')
|
||||||
|
processChunk(this, chunk, flushFlag, cb);
|
||||||
|
else
|
||||||
|
return processChunkSync(this, chunk, flushFlag);
|
||||||
|
};
|
||||||
|
|
||||||
|
function processChunkSync(self, chunk, flushFlag) {
|
||||||
|
var availInBefore = chunk.byteLength;
|
||||||
|
var availOutBefore = self._chunkSize - self._outOffset;
|
||||||
var inOff = 0;
|
var inOff = 0;
|
||||||
|
var availOutAfter;
|
||||||
|
var availInAfter;
|
||||||
|
|
||||||
var self = this;
|
var buffers = null;
|
||||||
|
var nread = 0;
|
||||||
|
var inputRead = 0;
|
||||||
|
var state = self._writeState;
|
||||||
|
var handle = self._handle;
|
||||||
|
var buffer = self._outBuffer;
|
||||||
|
var offset = self._outOffset;
|
||||||
|
var chunkSize = self._chunkSize;
|
||||||
|
|
||||||
var async = typeof cb === 'function';
|
var error;
|
||||||
|
self.on('error', function(er) {
|
||||||
|
error = er;
|
||||||
|
});
|
||||||
|
|
||||||
if (!async) {
|
while (true) {
|
||||||
var buffers = [];
|
handle.writeSync(flushFlag,
|
||||||
var nread = 0;
|
chunk, // in
|
||||||
|
inOff, // in_off
|
||||||
var error;
|
availInBefore, // in_len
|
||||||
this.on('error', function(er) {
|
buffer, // out
|
||||||
error = er;
|
offset, // out_off
|
||||||
});
|
availOutBefore); // out_len
|
||||||
|
if (error)
|
||||||
assert(this._handle, 'zlib binding closed');
|
|
||||||
do {
|
|
||||||
var res = this._handle.writeSync(flushFlag,
|
|
||||||
chunk, // in
|
|
||||||
inOff, // in_off
|
|
||||||
availInBefore, // in_len
|
|
||||||
this._buffer, // out
|
|
||||||
this._offset, //out_off
|
|
||||||
availOutBefore); // out_len
|
|
||||||
} while (!this._hadError && callback(res[0], res[1]));
|
|
||||||
|
|
||||||
if (this._hadError) {
|
|
||||||
throw error;
|
throw error;
|
||||||
}
|
|
||||||
|
|
||||||
if (nread >= kMaxLength) {
|
availOutAfter = state[0];
|
||||||
_close(this);
|
availInAfter = state[1];
|
||||||
throw new RangeError(kRangeErrorMessage);
|
|
||||||
}
|
|
||||||
|
|
||||||
var buf = Buffer.concat(buffers, nread);
|
var inDelta = (availInBefore - availInAfter);
|
||||||
_close(this);
|
inputRead += inDelta;
|
||||||
|
|
||||||
return buf;
|
|
||||||
}
|
|
||||||
|
|
||||||
assert(this._handle, 'zlib binding closed');
|
|
||||||
var req = this._handle.write(flushFlag,
|
|
||||||
chunk, // in
|
|
||||||
inOff, // in_off
|
|
||||||
availInBefore, // in_len
|
|
||||||
this._buffer, // out
|
|
||||||
this._offset, //out_off
|
|
||||||
availOutBefore); // out_len
|
|
||||||
|
|
||||||
req.buffer = chunk;
|
|
||||||
req.callback = callback;
|
|
||||||
|
|
||||||
function callback(availInAfter, availOutAfter) {
|
|
||||||
// When the callback is used in an async write, the callback's
|
|
||||||
// context is the `req` object that was created. The req object
|
|
||||||
// is === this._handle, and that's why it's important to null
|
|
||||||
// out the values after they are done being used. `this._handle`
|
|
||||||
// can stay in memory longer than the callback and buffer are needed.
|
|
||||||
if (this) {
|
|
||||||
this.buffer = null;
|
|
||||||
this.callback = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (self._hadError)
|
|
||||||
return;
|
|
||||||
|
|
||||||
var have = availOutBefore - availOutAfter;
|
var have = availOutBefore - availOutAfter;
|
||||||
assert(have >= 0, 'have should not go down');
|
|
||||||
|
|
||||||
self.bytesRead += availInBefore - availInAfter;
|
|
||||||
|
|
||||||
if (have > 0) {
|
if (have > 0) {
|
||||||
var out = self._buffer.slice(self._offset, self._offset + have);
|
var out = buffer.slice(offset, offset + have);
|
||||||
self._offset += have;
|
offset += have;
|
||||||
// serve some output to the consumer.
|
if (!buffers)
|
||||||
if (async) {
|
buffers = [out];
|
||||||
self.push(out);
|
else
|
||||||
} else {
|
|
||||||
buffers.push(out);
|
buffers.push(out);
|
||||||
nread += out.byteLength;
|
nread += out.byteLength;
|
||||||
}
|
} else if (have < 0) {
|
||||||
|
assert(false, 'have should not go down');
|
||||||
}
|
}
|
||||||
|
|
||||||
// exhausted the output buffer, or used all the input create a new one.
|
// exhausted the output buffer, or used all the input create a new one.
|
||||||
if (availOutAfter === 0 || self._offset >= self._chunkSize) {
|
if (availOutAfter === 0 || offset >= chunkSize) {
|
||||||
availOutBefore = self._chunkSize;
|
availOutBefore = chunkSize;
|
||||||
self._offset = 0;
|
offset = 0;
|
||||||
self._buffer = Buffer.allocUnsafe(self._chunkSize);
|
buffer = Buffer.allocUnsafe(chunkSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (availOutAfter === 0) {
|
if (availOutAfter === 0) {
|
||||||
// Not actually done. Need to reprocess.
|
// Not actually done. Need to reprocess.
|
||||||
// Also, update the availInBefore to the availInAfter value,
|
// Also, update the availInBefore to the availInAfter value,
|
||||||
// so that if we have to hit it a third (fourth, etc.) time,
|
// so that if we have to hit it a third (fourth, etc.) time,
|
||||||
// it'll have the correct byte counts.
|
// it'll have the correct byte counts.
|
||||||
inOff += (availInBefore - availInAfter);
|
inOff += inDelta;
|
||||||
availInBefore = availInAfter;
|
availInBefore = availInAfter;
|
||||||
|
} else {
|
||||||
if (!async)
|
break;
|
||||||
return true;
|
|
||||||
|
|
||||||
var newReq = self._handle.write(flushFlag,
|
|
||||||
chunk,
|
|
||||||
inOff,
|
|
||||||
availInBefore,
|
|
||||||
self._buffer,
|
|
||||||
self._offset,
|
|
||||||
self._chunkSize);
|
|
||||||
newReq.callback = callback; // this same function
|
|
||||||
newReq.buffer = chunk;
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!async)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
// finished with the chunk.
|
|
||||||
cb();
|
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
self.bytesRead = inputRead;
|
||||||
|
|
||||||
|
if (nread >= kMaxLength) {
|
||||||
|
_close(self);
|
||||||
|
throw new RangeError(kRangeErrorMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
_close(self);
|
||||||
|
|
||||||
|
return (buffers.length === 1 ? buffers[0] : Buffer.concat(buffers, nread));
|
||||||
|
}
|
||||||
|
|
||||||
|
function processChunk(self, chunk, flushFlag, cb) {
|
||||||
|
var handle = self._handle;
|
||||||
|
if (!handle)
|
||||||
|
return cb(new Error('zlib binding closed'));
|
||||||
|
|
||||||
|
handle.buffer = chunk;
|
||||||
|
handle.cb = cb;
|
||||||
|
handle.availOutBefore = self._chunkSize - self._outOffset;
|
||||||
|
handle.availInBefore = chunk.byteLength;
|
||||||
|
handle.inOff = 0;
|
||||||
|
handle.flushFlag = flushFlag;
|
||||||
|
|
||||||
|
handle.write(flushFlag,
|
||||||
|
chunk, // in
|
||||||
|
0, // in_off
|
||||||
|
handle.availInBefore, // in_len
|
||||||
|
self._outBuffer, // out
|
||||||
|
self._outOffset, // out_off
|
||||||
|
handle.availOutBefore); // out_len
|
||||||
|
}
|
||||||
|
|
||||||
|
function processCallback() {
|
||||||
|
// This callback's context (`this`) is the `_handle` (ZCtx) object. It is
|
||||||
|
// important to null out the values once they are no longer needed since
|
||||||
|
// `_handle` can stay in memory long after the buffer is needed.
|
||||||
|
var handle = this;
|
||||||
|
var self = this.jsref;
|
||||||
|
var state = self._writeState;
|
||||||
|
|
||||||
|
if (self._hadError) {
|
||||||
|
this.buffer = null;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var availOutAfter = state[0];
|
||||||
|
var availInAfter = state[1];
|
||||||
|
|
||||||
|
var inDelta = (handle.availInBefore - availInAfter);
|
||||||
|
self.bytesRead += inDelta;
|
||||||
|
|
||||||
|
var have = handle.availOutBefore - availOutAfter;
|
||||||
|
if (have > 0) {
|
||||||
|
var out = self._outBuffer.slice(self._outOffset, self._outOffset + have);
|
||||||
|
self._outOffset += have;
|
||||||
|
self.push(out);
|
||||||
|
} else if (have < 0) {
|
||||||
|
assert(false, 'have should not go down');
|
||||||
|
}
|
||||||
|
|
||||||
|
// exhausted the output buffer, or used all the input create a new one.
|
||||||
|
if (availOutAfter === 0 || self._outOffset >= self._chunkSize) {
|
||||||
|
handle.availOutBefore = self._chunkSize;
|
||||||
|
self._outOffset = 0;
|
||||||
|
self._outBuffer = Buffer.allocUnsafe(self._chunkSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (availOutAfter === 0) {
|
||||||
|
// Not actually done. Need to reprocess.
|
||||||
|
// Also, update the availInBefore to the availInAfter value,
|
||||||
|
// so that if we have to hit it a third (fourth, etc.) time,
|
||||||
|
// it'll have the correct byte counts.
|
||||||
|
handle.inOff += inDelta;
|
||||||
|
handle.availInBefore = availInAfter;
|
||||||
|
|
||||||
|
this.write(handle.flushFlag,
|
||||||
|
this.buffer, // in
|
||||||
|
handle.inOff, // in_off
|
||||||
|
handle.availInBefore, // in_len
|
||||||
|
self._outBuffer, // out
|
||||||
|
self._outOffset, // out_off
|
||||||
|
self._chunkSize); // out_len
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// finished with the chunk.
|
||||||
|
this.buffer = null;
|
||||||
|
this.cb();
|
||||||
|
}
|
||||||
|
|
||||||
function _close(engine, callback) {
|
function _close(engine, callback) {
|
||||||
if (callback)
|
if (callback)
|
||||||
@ -507,56 +538,56 @@ function emitCloseNT(self) {
|
|||||||
function Deflate(opts) {
|
function Deflate(opts) {
|
||||||
if (!(this instanceof Deflate))
|
if (!(this instanceof Deflate))
|
||||||
return new Deflate(opts);
|
return new Deflate(opts);
|
||||||
Zlib.call(this, opts, constants.DEFLATE);
|
Zlib.call(this, opts, DEFLATE);
|
||||||
}
|
}
|
||||||
inherits(Deflate, Zlib);
|
inherits(Deflate, Zlib);
|
||||||
|
|
||||||
function Inflate(opts) {
|
function Inflate(opts) {
|
||||||
if (!(this instanceof Inflate))
|
if (!(this instanceof Inflate))
|
||||||
return new Inflate(opts);
|
return new Inflate(opts);
|
||||||
Zlib.call(this, opts, constants.INFLATE);
|
Zlib.call(this, opts, INFLATE);
|
||||||
}
|
}
|
||||||
inherits(Inflate, Zlib);
|
inherits(Inflate, Zlib);
|
||||||
|
|
||||||
function Gzip(opts) {
|
function Gzip(opts) {
|
||||||
if (!(this instanceof Gzip))
|
if (!(this instanceof Gzip))
|
||||||
return new Gzip(opts);
|
return new Gzip(opts);
|
||||||
Zlib.call(this, opts, constants.GZIP);
|
Zlib.call(this, opts, GZIP);
|
||||||
}
|
}
|
||||||
inherits(Gzip, Zlib);
|
inherits(Gzip, Zlib);
|
||||||
|
|
||||||
function Gunzip(opts) {
|
function Gunzip(opts) {
|
||||||
if (!(this instanceof Gunzip))
|
if (!(this instanceof Gunzip))
|
||||||
return new Gunzip(opts);
|
return new Gunzip(opts);
|
||||||
Zlib.call(this, opts, constants.GUNZIP);
|
Zlib.call(this, opts, GUNZIP);
|
||||||
}
|
}
|
||||||
inherits(Gunzip, Zlib);
|
inherits(Gunzip, Zlib);
|
||||||
|
|
||||||
function DeflateRaw(opts) {
|
function DeflateRaw(opts) {
|
||||||
if (!(this instanceof DeflateRaw))
|
if (!(this instanceof DeflateRaw))
|
||||||
return new DeflateRaw(opts);
|
return new DeflateRaw(opts);
|
||||||
Zlib.call(this, opts, constants.DEFLATERAW);
|
Zlib.call(this, opts, DEFLATERAW);
|
||||||
}
|
}
|
||||||
inherits(DeflateRaw, Zlib);
|
inherits(DeflateRaw, Zlib);
|
||||||
|
|
||||||
function InflateRaw(opts) {
|
function InflateRaw(opts) {
|
||||||
if (!(this instanceof InflateRaw))
|
if (!(this instanceof InflateRaw))
|
||||||
return new InflateRaw(opts);
|
return new InflateRaw(opts);
|
||||||
Zlib.call(this, opts, constants.INFLATERAW);
|
Zlib.call(this, opts, INFLATERAW);
|
||||||
}
|
}
|
||||||
inherits(InflateRaw, Zlib);
|
inherits(InflateRaw, Zlib);
|
||||||
|
|
||||||
function Unzip(opts) {
|
function Unzip(opts) {
|
||||||
if (!(this instanceof Unzip))
|
if (!(this instanceof Unzip))
|
||||||
return new Unzip(opts);
|
return new Unzip(opts);
|
||||||
Zlib.call(this, opts, constants.UNZIP);
|
Zlib.call(this, opts, UNZIP);
|
||||||
}
|
}
|
||||||
inherits(Unzip, Zlib);
|
inherits(Unzip, Zlib);
|
||||||
|
|
||||||
function createConvenienceMethod(type, sync) {
|
function createConvenienceMethod(ctor, sync) {
|
||||||
if (sync) {
|
if (sync) {
|
||||||
return function(buffer, opts) {
|
return function(buffer, opts) {
|
||||||
return zlibBufferSync(new type(opts), buffer);
|
return zlibBufferSync(new ctor(opts), buffer);
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return function(buffer, opts, callback) {
|
return function(buffer, opts, callback) {
|
||||||
@ -564,16 +595,18 @@ function createConvenienceMethod(type, sync) {
|
|||||||
callback = opts;
|
callback = opts;
|
||||||
opts = {};
|
opts = {};
|
||||||
}
|
}
|
||||||
return zlibBuffer(new type(opts), buffer, callback);
|
return zlibBuffer(new ctor(opts), buffer, callback);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function createProperty(type) {
|
function createProperty(ctor) {
|
||||||
return {
|
return {
|
||||||
configurable: true,
|
configurable: true,
|
||||||
enumerable: true,
|
enumerable: true,
|
||||||
value: type
|
value: function(options) {
|
||||||
|
return new ctor(options);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -605,13 +638,13 @@ module.exports = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
Object.defineProperties(module.exports, {
|
Object.defineProperties(module.exports, {
|
||||||
createDeflate: createProperty(module.exports.Deflate),
|
createDeflate: createProperty(Deflate),
|
||||||
createInflate: createProperty(module.exports.Inflate),
|
createInflate: createProperty(Inflate),
|
||||||
createDeflateRaw: createProperty(module.exports.DeflateRaw),
|
createDeflateRaw: createProperty(DeflateRaw),
|
||||||
createInflateRaw: createProperty(module.exports.InflateRaw),
|
createInflateRaw: createProperty(InflateRaw),
|
||||||
createGzip: createProperty(module.exports.Gzip),
|
createGzip: createProperty(Gzip),
|
||||||
createGunzip: createProperty(module.exports.Gunzip),
|
createGunzip: createProperty(Gunzip),
|
||||||
createUnzip: createProperty(module.exports.Unzip),
|
createUnzip: createProperty(Unzip),
|
||||||
constants: {
|
constants: {
|
||||||
configurable: false,
|
configurable: false,
|
||||||
enumerable: true,
|
enumerable: true,
|
||||||
|
@ -1228,22 +1228,6 @@ void DefineZlibConstants(Local<Object> target) {
|
|||||||
NODE_DEFINE_CONSTANT(target, INFLATERAW);
|
NODE_DEFINE_CONSTANT(target, INFLATERAW);
|
||||||
NODE_DEFINE_CONSTANT(target, UNZIP);
|
NODE_DEFINE_CONSTANT(target, UNZIP);
|
||||||
|
|
||||||
#define Z_MIN_WINDOWBITS 8
|
|
||||||
#define Z_MAX_WINDOWBITS 15
|
|
||||||
#define Z_DEFAULT_WINDOWBITS 15
|
|
||||||
// Fewer than 64 bytes per chunk is not recommended.
|
|
||||||
// Technically it could work with as few as 8, but even 64 bytes
|
|
||||||
// is low. Usually a MB or more is best.
|
|
||||||
#define Z_MIN_CHUNK 64
|
|
||||||
#define Z_MAX_CHUNK std::numeric_limits<double>::infinity()
|
|
||||||
#define Z_DEFAULT_CHUNK (16 * 1024)
|
|
||||||
#define Z_MIN_MEMLEVEL 1
|
|
||||||
#define Z_MAX_MEMLEVEL 9
|
|
||||||
#define Z_DEFAULT_MEMLEVEL 8
|
|
||||||
#define Z_MIN_LEVEL -1
|
|
||||||
#define Z_MAX_LEVEL 9
|
|
||||||
#define Z_DEFAULT_LEVEL Z_DEFAULT_COMPRESSION
|
|
||||||
|
|
||||||
NODE_DEFINE_CONSTANT(target, Z_MIN_WINDOWBITS);
|
NODE_DEFINE_CONSTANT(target, Z_MIN_WINDOWBITS);
|
||||||
NODE_DEFINE_CONSTANT(target, Z_MAX_WINDOWBITS);
|
NODE_DEFINE_CONSTANT(target, Z_MAX_WINDOWBITS);
|
||||||
NODE_DEFINE_CONSTANT(target, Z_DEFAULT_WINDOWBITS);
|
NODE_DEFINE_CONSTANT(target, Z_DEFAULT_WINDOWBITS);
|
||||||
|
@ -36,6 +36,23 @@
|
|||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
// Custom constants used by both node_constants.cc and node_zlib.cc
|
||||||
|
#define Z_MIN_WINDOWBITS 8
|
||||||
|
#define Z_MAX_WINDOWBITS 15
|
||||||
|
#define Z_DEFAULT_WINDOWBITS 15
|
||||||
|
// Fewer than 64 bytes per chunk is not recommended.
|
||||||
|
// Technically it could work with as few as 8, but even 64 bytes
|
||||||
|
// is low. Usually a MB or more is best.
|
||||||
|
#define Z_MIN_CHUNK 64
|
||||||
|
#define Z_MAX_CHUNK std::numeric_limits<double>::infinity()
|
||||||
|
#define Z_DEFAULT_CHUNK (16 * 1024)
|
||||||
|
#define Z_MIN_MEMLEVEL 1
|
||||||
|
#define Z_MAX_MEMLEVEL 9
|
||||||
|
#define Z_DEFAULT_MEMLEVEL 8
|
||||||
|
#define Z_MIN_LEVEL -1
|
||||||
|
#define Z_MAX_LEVEL 9
|
||||||
|
#define Z_DEFAULT_LEVEL Z_DEFAULT_COMPRESSION
|
||||||
|
|
||||||
struct sockaddr;
|
struct sockaddr;
|
||||||
|
|
||||||
// Variation on NODE_DEFINE_CONSTANT that sets a String value.
|
// Variation on NODE_DEFINE_CONSTANT that sets a String value.
|
||||||
|
106
src/node_zlib.cc
106
src/node_zlib.cc
@ -40,14 +40,17 @@
|
|||||||
namespace node {
|
namespace node {
|
||||||
|
|
||||||
using v8::Array;
|
using v8::Array;
|
||||||
|
using v8::ArrayBuffer;
|
||||||
using v8::Context;
|
using v8::Context;
|
||||||
|
using v8::Function;
|
||||||
using v8::FunctionCallbackInfo;
|
using v8::FunctionCallbackInfo;
|
||||||
using v8::FunctionTemplate;
|
using v8::FunctionTemplate;
|
||||||
using v8::HandleScope;
|
using v8::HandleScope;
|
||||||
using v8::Integer;
|
|
||||||
using v8::Local;
|
using v8::Local;
|
||||||
using v8::Number;
|
using v8::Number;
|
||||||
using v8::Object;
|
using v8::Object;
|
||||||
|
using v8::Persistent;
|
||||||
|
using v8::Uint32Array;
|
||||||
using v8::Value;
|
using v8::Value;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
@ -86,7 +89,8 @@ class ZCtx : public AsyncWrap {
|
|||||||
write_in_progress_(false),
|
write_in_progress_(false),
|
||||||
pending_close_(false),
|
pending_close_(false),
|
||||||
refs_(0),
|
refs_(0),
|
||||||
gzip_id_bytes_read_(0) {
|
gzip_id_bytes_read_(0),
|
||||||
|
write_result_(nullptr) {
|
||||||
MakeWeak<ZCtx>(this);
|
MakeWeak<ZCtx>(this);
|
||||||
Wrap(wrap, this);
|
Wrap(wrap, this);
|
||||||
}
|
}
|
||||||
@ -200,38 +204,19 @@ class ZCtx : public AsyncWrap {
|
|||||||
|
|
||||||
if (!async) {
|
if (!async) {
|
||||||
// sync version
|
// sync version
|
||||||
ctx->env()->PrintSyncTrace();
|
env->PrintSyncTrace();
|
||||||
Process(work_req);
|
Process(work_req);
|
||||||
if (CheckError(ctx))
|
if (CheckError(ctx)) {
|
||||||
AfterSync(ctx, args);
|
ctx->write_result_[0] = ctx->strm_.avail_out;
|
||||||
|
ctx->write_result_[1] = ctx->strm_.avail_in;
|
||||||
|
ctx->write_in_progress_ = false;
|
||||||
|
ctx->Unref();
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// async version
|
// async version
|
||||||
uv_queue_work(ctx->env()->event_loop(),
|
uv_queue_work(env->event_loop(), work_req, ZCtx::Process, ZCtx::After);
|
||||||
work_req,
|
|
||||||
ZCtx::Process,
|
|
||||||
ZCtx::After);
|
|
||||||
|
|
||||||
args.GetReturnValue().Set(ctx->object());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void AfterSync(ZCtx* ctx, const FunctionCallbackInfo<Value>& args) {
|
|
||||||
Environment* env = ctx->env();
|
|
||||||
Local<Integer> avail_out = Integer::New(env->isolate(),
|
|
||||||
ctx->strm_.avail_out);
|
|
||||||
Local<Integer> avail_in = Integer::New(env->isolate(),
|
|
||||||
ctx->strm_.avail_in);
|
|
||||||
|
|
||||||
ctx->write_in_progress_ = false;
|
|
||||||
|
|
||||||
Local<Array> result = Array::New(env->isolate(), 2);
|
|
||||||
result->Set(0, avail_in);
|
|
||||||
result->Set(1, avail_out);
|
|
||||||
args.GetReturnValue().Set(result);
|
|
||||||
|
|
||||||
ctx->Unref();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -389,16 +374,14 @@ class ZCtx : public AsyncWrap {
|
|||||||
if (!CheckError(ctx))
|
if (!CheckError(ctx))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Local<Integer> avail_out = Integer::New(env->isolate(),
|
ctx->write_result_[0] = ctx->strm_.avail_out;
|
||||||
ctx->strm_.avail_out);
|
ctx->write_result_[1] = ctx->strm_.avail_in;
|
||||||
Local<Integer> avail_in = Integer::New(env->isolate(),
|
|
||||||
ctx->strm_.avail_in);
|
|
||||||
|
|
||||||
ctx->write_in_progress_ = false;
|
ctx->write_in_progress_ = false;
|
||||||
|
|
||||||
// call the write() cb
|
// call the write() cb
|
||||||
Local<Value> args[2] = { avail_in, avail_out };
|
Local<Function> cb = PersistentToLocal(env->isolate(),
|
||||||
ctx->MakeCallback(env->callback_string(), arraysize(args), args);
|
ctx->write_js_callback_);
|
||||||
|
ctx->MakeCallback(cb, 0, nullptr);
|
||||||
|
|
||||||
ctx->Unref();
|
ctx->Unref();
|
||||||
if (ctx->pending_close_)
|
if (ctx->pending_close_)
|
||||||
@ -447,41 +430,51 @@ class ZCtx : public AsyncWrap {
|
|||||||
|
|
||||||
// just pull the ints out of the args and call the other Init
|
// just pull the ints out of the args and call the other Init
|
||||||
static void Init(const FunctionCallbackInfo<Value>& args) {
|
static void Init(const FunctionCallbackInfo<Value>& args) {
|
||||||
CHECK((args.Length() == 4 || args.Length() == 5) &&
|
CHECK(args.Length() == 7 &&
|
||||||
"init(windowBits, level, memLevel, strategy, [dictionary])");
|
"init(windowBits, level, memLevel, strategy, writeResult, writeCallback,"
|
||||||
|
" dictionary)");
|
||||||
|
|
||||||
ZCtx* ctx;
|
ZCtx* ctx;
|
||||||
ASSIGN_OR_RETURN_UNWRAP(&ctx, args.Holder());
|
ASSIGN_OR_RETURN_UNWRAP(&ctx, args.Holder());
|
||||||
|
|
||||||
int windowBits = args[0]->Uint32Value();
|
int windowBits = args[0]->Uint32Value();
|
||||||
CHECK((windowBits >= 8 && windowBits <= 15) && "invalid windowBits");
|
CHECK((windowBits >= Z_MIN_WINDOWBITS && windowBits <= Z_MAX_WINDOWBITS) &&
|
||||||
|
"invalid windowBits");
|
||||||
|
|
||||||
int level = args[1]->Int32Value();
|
int level = args[1]->Int32Value();
|
||||||
CHECK((level >= -1 && level <= 9) && "invalid compression level");
|
CHECK((level >= Z_MIN_LEVEL && level <= Z_MAX_LEVEL) &&
|
||||||
|
"invalid compression level");
|
||||||
|
|
||||||
int memLevel = args[2]->Uint32Value();
|
int memLevel = args[2]->Uint32Value();
|
||||||
CHECK((memLevel >= 1 && memLevel <= 9) && "invalid memlevel");
|
CHECK((memLevel >= Z_MIN_MEMLEVEL && memLevel <= Z_MAX_MEMLEVEL) &&
|
||||||
|
"invalid memlevel");
|
||||||
|
|
||||||
int strategy = args[3]->Uint32Value();
|
int strategy = args[3]->Uint32Value();
|
||||||
CHECK((strategy == Z_FILTERED ||
|
CHECK((strategy == Z_FILTERED ||
|
||||||
strategy == Z_HUFFMAN_ONLY ||
|
strategy == Z_HUFFMAN_ONLY ||
|
||||||
strategy == Z_RLE ||
|
strategy == Z_RLE ||
|
||||||
strategy == Z_FIXED ||
|
strategy == Z_FIXED ||
|
||||||
strategy == Z_DEFAULT_STRATEGY) && "invalid strategy");
|
strategy == Z_DEFAULT_STRATEGY) && "invalid strategy");
|
||||||
|
|
||||||
|
CHECK(args[4]->IsUint32Array());
|
||||||
|
Local<Uint32Array> array = args[4].As<Uint32Array>();
|
||||||
|
Local<ArrayBuffer> ab = array->Buffer();
|
||||||
|
uint32_t* write_result = static_cast<uint32_t*>(ab->GetContents().Data());
|
||||||
|
|
||||||
|
Local<Function> write_js_callback = args[5].As<Function>();
|
||||||
|
|
||||||
char* dictionary = nullptr;
|
char* dictionary = nullptr;
|
||||||
size_t dictionary_len = 0;
|
size_t dictionary_len = 0;
|
||||||
if (args.Length() >= 5 && Buffer::HasInstance(args[4])) {
|
if (Buffer::HasInstance(args[6])) {
|
||||||
Local<Object> dictionary_ = args[4]->ToObject(args.GetIsolate());
|
const char* dictionary_ = Buffer::Data(args[6]);
|
||||||
|
dictionary_len = Buffer::Length(args[6]);
|
||||||
|
|
||||||
dictionary_len = Buffer::Length(dictionary_);
|
|
||||||
dictionary = new char[dictionary_len];
|
dictionary = new char[dictionary_len];
|
||||||
|
memcpy(dictionary, dictionary_, dictionary_len);
|
||||||
memcpy(dictionary, Buffer::Data(dictionary_), dictionary_len);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Init(ctx, level, windowBits, memLevel, strategy,
|
Init(ctx, level, windowBits, memLevel, strategy, write_result,
|
||||||
dictionary, dictionary_len);
|
write_js_callback, dictionary, dictionary_len);
|
||||||
SetDictionary(ctx);
|
SetDictionary(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -500,7 +493,9 @@ class ZCtx : public AsyncWrap {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void Init(ZCtx *ctx, int level, int windowBits, int memLevel,
|
static void Init(ZCtx *ctx, int level, int windowBits, int memLevel,
|
||||||
int strategy, char* dictionary, size_t dictionary_len) {
|
int strategy, uint32_t* write_result,
|
||||||
|
Local<Function> write_js_callback, char* dictionary,
|
||||||
|
size_t dictionary_len) {
|
||||||
ctx->level_ = level;
|
ctx->level_ = level;
|
||||||
ctx->windowBits_ = windowBits;
|
ctx->windowBits_ = windowBits;
|
||||||
ctx->memLevel_ = memLevel;
|
ctx->memLevel_ = memLevel;
|
||||||
@ -564,6 +559,9 @@ class ZCtx : public AsyncWrap {
|
|||||||
}
|
}
|
||||||
ctx->env()->ThrowError("Init error");
|
ctx->env()->ThrowError("Init error");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ctx->write_result_ = write_result;
|
||||||
|
ctx->write_js_callback_.Reset(ctx->env()->isolate(), write_js_callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void SetDictionary(ZCtx* ctx) {
|
static void SetDictionary(ZCtx* ctx) {
|
||||||
@ -670,6 +668,8 @@ class ZCtx : public AsyncWrap {
|
|||||||
bool pending_close_;
|
bool pending_close_;
|
||||||
unsigned int refs_;
|
unsigned int refs_;
|
||||||
unsigned int gzip_id_bytes_read_;
|
unsigned int gzip_id_bytes_read_;
|
||||||
|
uint32_t* write_result_;
|
||||||
|
Persistent<Function> write_js_callback_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -26,6 +26,8 @@ handle.init(
|
|||||||
constants.Z_MIN_LEVEL,
|
constants.Z_MIN_LEVEL,
|
||||||
constants.Z_DEFAULT_MEMLEVEL,
|
constants.Z_DEFAULT_MEMLEVEL,
|
||||||
constants.Z_DEFAULT_STRATEGY,
|
constants.Z_DEFAULT_STRATEGY,
|
||||||
|
new Uint32Array(2),
|
||||||
|
function processCallback() { this.cb(); },
|
||||||
Buffer.from('')
|
Buffer.from('')
|
||||||
);
|
);
|
||||||
checkInvocations(hdl, { init: 1 }, 'when initialized handle');
|
checkInvocations(hdl, { init: 1 }, 'when initialized handle');
|
||||||
@ -34,7 +36,7 @@ const inBuf = Buffer.from('x');
|
|||||||
const outBuf = Buffer.allocUnsafe(1);
|
const outBuf = Buffer.allocUnsafe(1);
|
||||||
|
|
||||||
let count = 2;
|
let count = 2;
|
||||||
handle.callback = common.mustCall(onwritten, 2);
|
handle.cb = common.mustCall(onwritten, 2);
|
||||||
handle.write(true, inBuf, 0, 1, outBuf, 0, 1);
|
handle.write(true, inBuf, 0, 1, outBuf, 0, 1);
|
||||||
checkInvocations(hdl, { init: 1 }, 'when invoked write() on handle');
|
checkInvocations(hdl, { init: 1 }, 'when invoked write() on handle');
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user