2017-01-03 21:16:48 +00:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2014-11-22 15:59:48 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-02-27 13:55:32 +00:00
|
|
|
const {
|
|
|
|
ERR_BUFFER_TOO_LARGE,
|
|
|
|
ERR_INVALID_ARG_TYPE,
|
|
|
|
ERR_OUT_OF_RANGE,
|
|
|
|
ERR_ZLIB_INITIALIZATION_FAILED
|
|
|
|
} = require('internal/errors').codes;
|
2015-01-21 16:36:59 +00:00
|
|
|
const Transform = require('_stream_transform');
|
2018-03-25 23:57:50 +00:00
|
|
|
const {
|
|
|
|
_extend,
|
2018-05-31 21:27:22 +00:00
|
|
|
inherits,
|
2018-03-25 23:57:50 +00:00
|
|
|
types: {
|
|
|
|
isAnyArrayBuffer,
|
|
|
|
isArrayBufferView
|
|
|
|
}
|
|
|
|
} = require('util');
|
2015-01-21 16:36:59 +00:00
|
|
|
const binding = process.binding('zlib');
|
|
|
|
const assert = require('assert').ok;
|
2017-09-25 23:48:57 +00:00
|
|
|
const {
|
|
|
|
Buffer,
|
|
|
|
kMaxLength
|
|
|
|
} = require('buffer');
|
2018-10-01 01:08:12 +00:00
|
|
|
const { owner_symbol } = require('internal/async_hooks').symbols;
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2016-06-07 21:38:00 +00:00
|
|
|
const constants = process.binding('constants').zlib;
|
2017-05-30 16:56:09 +00:00
|
|
|
const {
|
2017-07-28 11:39:04 +00:00
|
|
|
Z_NO_FLUSH, Z_BLOCK, Z_PARTIAL_FLUSH, 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
|
2017-05-30 16:56:09 +00:00
|
|
|
} = constants;
|
2016-06-07 21:38:00 +00:00
|
|
|
|
2012-04-01 04:01:55 +00:00
|
|
|
// translation table for return codes.
|
2015-04-07 05:48:52 +00:00
|
|
|
const codes = {
|
2016-06-07 21:38:00 +00:00
|
|
|
Z_OK: constants.Z_OK,
|
|
|
|
Z_STREAM_END: constants.Z_STREAM_END,
|
|
|
|
Z_NEED_DICT: constants.Z_NEED_DICT,
|
|
|
|
Z_ERRNO: constants.Z_ERRNO,
|
|
|
|
Z_STREAM_ERROR: constants.Z_STREAM_ERROR,
|
|
|
|
Z_DATA_ERROR: constants.Z_DATA_ERROR,
|
|
|
|
Z_MEM_ERROR: constants.Z_MEM_ERROR,
|
|
|
|
Z_BUF_ERROR: constants.Z_BUF_ERROR,
|
|
|
|
Z_VERSION_ERROR: constants.Z_VERSION_ERROR
|
2012-04-01 04:01:55 +00:00
|
|
|
};
|
|
|
|
|
2015-04-07 05:48:52 +00:00
|
|
|
const ckeys = Object.keys(codes);
|
2014-08-14 03:15:24 +00:00
|
|
|
for (var ck = 0; ck < ckeys.length; ck++) {
|
|
|
|
var ckey = ckeys[ck];
|
2015-04-07 05:48:52 +00:00
|
|
|
codes[codes[ckey]] = ckey;
|
2014-08-14 03:15:24 +00:00
|
|
|
}
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2014-02-03 07:55:47 +00:00
|
|
|
function zlibBuffer(engine, buffer, callback) {
|
2017-04-04 01:15:13 +00:00
|
|
|
// Streams do not support non-Buffer ArrayBufferViews yet. Convert it to a
|
2017-03-23 02:45:03 +00:00
|
|
|
// Buffer without copying.
|
2017-09-28 07:16:41 +00:00
|
|
|
if (isArrayBufferView(buffer) &&
|
2017-03-23 02:45:03 +00:00
|
|
|
Object.getPrototypeOf(buffer) !== Buffer.prototype) {
|
|
|
|
buffer = Buffer.from(buffer.buffer, buffer.byteOffset, buffer.byteLength);
|
2017-10-06 19:19:33 +00:00
|
|
|
} else if (isAnyArrayBuffer(buffer)) {
|
|
|
|
buffer = Buffer.from(buffer);
|
2017-03-23 02:45:03 +00:00
|
|
|
}
|
2017-05-30 16:56:09 +00:00
|
|
|
engine.buffers = null;
|
|
|
|
engine.nread = 0;
|
|
|
|
engine.cb = callback;
|
|
|
|
engine.on('data', zlibBufferOnData);
|
|
|
|
engine.on('error', zlibBufferOnError);
|
|
|
|
engine.on('end', zlibBufferOnEnd);
|
2012-10-02 23:15:39 +00:00
|
|
|
engine.end(buffer);
|
2017-05-30 16:56:09 +00:00
|
|
|
}
|
2011-10-24 16:29:24 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
function zlibBufferOnData(chunk) {
|
|
|
|
if (!this.buffers)
|
|
|
|
this.buffers = [chunk];
|
|
|
|
else
|
|
|
|
this.buffers.push(chunk);
|
|
|
|
this.nread += chunk.length;
|
|
|
|
}
|
2015-05-27 11:21:56 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
function zlibBufferOnError(err) {
|
|
|
|
this.removeAllListeners('end');
|
|
|
|
this.cb(err);
|
|
|
|
}
|
2015-05-27 11:21:56 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
function zlibBufferOnEnd() {
|
|
|
|
var buf;
|
|
|
|
var err;
|
|
|
|
if (this.nread >= kMaxLength) {
|
2018-02-27 13:55:32 +00:00
|
|
|
err = new ERR_BUFFER_TOO_LARGE();
|
2017-11-15 11:13:43 +00:00
|
|
|
} else if (this.nread === 0) {
|
|
|
|
buf = Buffer.alloc(0);
|
2017-05-30 16:56:09 +00:00
|
|
|
} else {
|
|
|
|
var bufs = this.buffers;
|
|
|
|
buf = (bufs.length === 1 ? bufs[0] : Buffer.concat(bufs, this.nread));
|
2012-01-20 14:36:28 +00:00
|
|
|
}
|
2017-05-30 16:56:09 +00:00
|
|
|
this.close();
|
|
|
|
if (err)
|
|
|
|
this.cb(err);
|
|
|
|
else if (this._info)
|
|
|
|
this.cb(null, { buffer: buf, engine: this });
|
|
|
|
else
|
|
|
|
this.cb(null, buf);
|
2011-10-24 16:29:24 +00:00
|
|
|
}
|
|
|
|
|
2014-02-03 07:55:47 +00:00
|
|
|
function zlibBufferSync(engine, buffer) {
|
2017-05-30 16:56:09 +00:00
|
|
|
if (typeof buffer === 'string') {
|
2016-01-25 23:00:06 +00:00
|
|
|
buffer = Buffer.from(buffer);
|
2017-09-28 07:16:41 +00:00
|
|
|
} else if (!isArrayBufferView(buffer)) {
|
2017-10-06 19:19:33 +00:00
|
|
|
if (isAnyArrayBuffer(buffer)) {
|
|
|
|
buffer = Buffer.from(buffer);
|
|
|
|
} else {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_ARG_TYPE(
|
|
|
|
'buffer',
|
2018-03-19 12:33:46 +00:00
|
|
|
['string', 'Buffer', 'TypedArray', 'DataView', 'ArrayBuffer'],
|
|
|
|
buffer
|
2018-02-27 13:55:32 +00:00
|
|
|
);
|
2017-10-06 19:19:33 +00:00
|
|
|
}
|
2017-05-30 16:56:09 +00:00
|
|
|
}
|
|
|
|
buffer = processChunkSync(engine, buffer, engine._finishFlushFlag);
|
|
|
|
if (engine._info)
|
|
|
|
return { buffer, engine };
|
2017-11-15 19:50:03 +00:00
|
|
|
return buffer;
|
2014-01-28 17:35:51 +00:00
|
|
|
}
|
2011-10-24 16:29:24 +00:00
|
|
|
|
2018-10-07 00:26:02 +00:00
|
|
|
function zlibOnError(message, errno, code) {
|
2018-10-01 01:08:12 +00:00
|
|
|
var self = this[owner_symbol];
|
2017-02-15 01:36:12 +00:00
|
|
|
// there is no way to cleanly recover.
|
|
|
|
// continuing only obscures problems.
|
2017-05-30 16:56:09 +00:00
|
|
|
_close(self);
|
|
|
|
self._hadError = true;
|
2017-02-15 01:36:12 +00:00
|
|
|
|
2018-03-15 13:22:43 +00:00
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
2017-09-25 23:48:57 +00:00
|
|
|
const error = new Error(message);
|
2017-02-15 01:36:12 +00:00
|
|
|
error.errno = errno;
|
2018-10-07 00:26:02 +00:00
|
|
|
error.code = code;
|
2017-05-30 16:56:09 +00:00
|
|
|
self.emit('error', error);
|
2011-09-06 23:13:05 +00:00
|
|
|
}
|
|
|
|
|
2018-02-08 16:26:59 +00:00
|
|
|
// 1. Returns false for undefined and NaN
|
|
|
|
// 2. Returns true for finite numbers
|
|
|
|
// 3. Throws ERR_INVALID_ARG_TYPE for non-numbers
|
|
|
|
// 4. Throws ERR_OUT_OF_RANGE for infinite numbers
|
|
|
|
function checkFiniteNumber(number, name) {
|
|
|
|
// Common case
|
2018-03-19 12:43:24 +00:00
|
|
|
if (number === undefined) {
|
2018-02-08 16:26:59 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Number.isFinite(number)) {
|
2018-03-19 12:43:24 +00:00
|
|
|
return true; // Is a valid number
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Number.isNaN(number)) {
|
|
|
|
return false;
|
2018-02-08 16:26:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Other non-numbers
|
|
|
|
if (typeof number !== 'number') {
|
2018-02-27 13:55:32 +00:00
|
|
|
const err = new ERR_INVALID_ARG_TYPE(name, 'number', number);
|
2018-02-08 16:26:59 +00:00
|
|
|
Error.captureStackTrace(err, checkFiniteNumber);
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Infinite numbers
|
2018-02-27 13:55:32 +00:00
|
|
|
const err = new ERR_OUT_OF_RANGE(name, 'a finite number', number);
|
2018-02-08 16:26:59 +00:00
|
|
|
Error.captureStackTrace(err, checkFiniteNumber);
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
|
2018-08-04 01:16:22 +00:00
|
|
|
// 1. Returns def for number when it's undefined or NaN
|
2018-02-08 16:26:59 +00:00
|
|
|
// 2. Returns number for finite numbers >= lower and <= upper
|
|
|
|
// 3. Throws ERR_INVALID_ARG_TYPE for non-numbers
|
|
|
|
// 4. Throws ERR_OUT_OF_RANGE for infinite numbers or numbers > upper or < lower
|
|
|
|
function checkRangesOrGetDefault(number, name, lower, upper, def) {
|
2018-08-04 01:16:22 +00:00
|
|
|
if (!checkFiniteNumber(number, name)) {
|
2018-02-08 16:26:59 +00:00
|
|
|
return def;
|
|
|
|
}
|
|
|
|
if (number < lower || number > upper) {
|
2018-02-27 13:55:32 +00:00
|
|
|
const err = new ERR_OUT_OF_RANGE(name,
|
|
|
|
`>= ${lower} and <= ${upper}`, number);
|
2018-02-08 16:26:59 +00:00
|
|
|
Error.captureStackTrace(err, checkRangesOrGetDefault);
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
return number;
|
|
|
|
}
|
|
|
|
|
2017-02-15 01:36:12 +00:00
|
|
|
// the Zlib class they all inherit from
|
|
|
|
// This thing manages the queue of requests, and returns
|
|
|
|
// true or false if there is anything in the queue when
|
|
|
|
// you call the .write() method.
|
2017-06-01 18:23:59 +00:00
|
|
|
function Zlib(opts, mode) {
|
2017-05-30 16:56:09 +00:00
|
|
|
var chunkSize = Z_DEFAULT_CHUNK;
|
|
|
|
var flush = Z_NO_FLUSH;
|
|
|
|
var finishFlush = Z_FINISH;
|
|
|
|
var windowBits = Z_DEFAULT_WINDOWBITS;
|
|
|
|
var level = Z_DEFAULT_COMPRESSION;
|
|
|
|
var memLevel = Z_DEFAULT_MEMLEVEL;
|
|
|
|
var strategy = Z_DEFAULT_STRATEGY;
|
|
|
|
var dictionary;
|
2017-10-27 00:09:30 +00:00
|
|
|
|
2018-02-08 16:26:59 +00:00
|
|
|
// The Zlib class is not exported to user land, the mode should only be
|
|
|
|
// passed in by us.
|
|
|
|
assert(typeof mode === 'number');
|
|
|
|
assert(mode >= DEFLATE && mode <= UNZIP);
|
2017-10-27 00:09:30 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
if (opts) {
|
|
|
|
chunkSize = opts.chunkSize;
|
2018-02-08 16:26:59 +00:00
|
|
|
if (!checkFiniteNumber(chunkSize, 'options.chunkSize')) {
|
2017-05-30 16:56:09 +00:00
|
|
|
chunkSize = Z_DEFAULT_CHUNK;
|
2018-02-08 16:26:59 +00:00
|
|
|
} else if (chunkSize < Z_MIN_CHUNK) {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_OUT_OF_RANGE('options.chunkSize',
|
|
|
|
`>= ${Z_MIN_CHUNK}`, chunkSize);
|
2017-05-30 16:56:09 +00:00
|
|
|
}
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2018-02-08 16:26:59 +00:00
|
|
|
flush = checkRangesOrGetDefault(
|
|
|
|
opts.flush, 'options.flush',
|
|
|
|
Z_NO_FLUSH, Z_BLOCK, Z_NO_FLUSH);
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2018-02-08 16:26:59 +00:00
|
|
|
finishFlush = checkRangesOrGetDefault(
|
|
|
|
opts.finishFlush, 'options.finishFlush',
|
|
|
|
Z_NO_FLUSH, Z_BLOCK, Z_FINISH);
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2018-03-29 22:07:44 +00:00
|
|
|
// windowBits is special. On the compression side, 0 is an invalid value.
|
|
|
|
// But on the decompression side, a value of 0 for windowBits tells zlib
|
|
|
|
// to use the window size in the zlib header of the compressed stream.
|
|
|
|
if ((opts.windowBits == null || opts.windowBits === 0) &&
|
|
|
|
(mode === INFLATE ||
|
|
|
|
mode === GUNZIP ||
|
|
|
|
mode === UNZIP)) {
|
|
|
|
windowBits = 0;
|
|
|
|
} else {
|
|
|
|
windowBits = checkRangesOrGetDefault(
|
|
|
|
opts.windowBits, 'options.windowBits',
|
|
|
|
Z_MIN_WINDOWBITS, Z_MAX_WINDOWBITS, Z_DEFAULT_WINDOWBITS);
|
|
|
|
}
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2018-02-08 16:26:59 +00:00
|
|
|
level = checkRangesOrGetDefault(
|
|
|
|
opts.level, 'options.level',
|
|
|
|
Z_MIN_LEVEL, Z_MAX_LEVEL, Z_DEFAULT_COMPRESSION);
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2018-02-08 16:26:59 +00:00
|
|
|
memLevel = checkRangesOrGetDefault(
|
|
|
|
opts.memLevel, 'options.memLevel',
|
|
|
|
Z_MIN_MEMLEVEL, Z_MAX_MEMLEVEL, Z_DEFAULT_MEMLEVEL);
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2018-02-08 16:26:59 +00:00
|
|
|
strategy = checkRangesOrGetDefault(
|
|
|
|
opts.strategy, 'options.strategy',
|
|
|
|
Z_DEFAULT_STRATEGY, Z_FIXED, Z_DEFAULT_STRATEGY);
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
dictionary = opts.dictionary;
|
2017-09-28 07:16:41 +00:00
|
|
|
if (dictionary !== undefined && !isArrayBufferView(dictionary)) {
|
2017-10-06 19:19:33 +00:00
|
|
|
if (isAnyArrayBuffer(dictionary)) {
|
|
|
|
dictionary = Buffer.from(dictionary);
|
|
|
|
} else {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_ARG_TYPE(
|
|
|
|
'options.dictionary',
|
2018-02-08 16:26:59 +00:00
|
|
|
['Buffer', 'TypedArray', 'DataView', 'ArrayBuffer'],
|
2018-02-27 13:55:32 +00:00
|
|
|
dictionary
|
|
|
|
);
|
2017-10-06 19:19:33 +00:00
|
|
|
}
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-01-21 05:54:56 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
if (opts.encoding || opts.objectMode || opts.writableObjectMode) {
|
|
|
|
opts = _extend({}, opts);
|
|
|
|
opts.encoding = null;
|
|
|
|
opts.objectMode = false;
|
|
|
|
opts.writableObjectMode = false;
|
|
|
|
}
|
|
|
|
}
|
2017-11-12 07:30:34 +00:00
|
|
|
Transform.call(this, opts);
|
2018-03-17 15:59:54 +00:00
|
|
|
this.bytesWritten = 0;
|
2017-06-01 18:23:59 +00:00
|
|
|
this._handle = new binding.Zlib(mode);
|
2018-10-01 01:08:12 +00:00
|
|
|
// Used by processCallback() and zlibOnError()
|
|
|
|
this._handle[owner_symbol] = this;
|
2017-05-30 16:56:09 +00:00
|
|
|
this._handle.onerror = zlibOnError;
|
2017-06-01 18:23:59 +00:00
|
|
|
this._hadError = false;
|
2017-05-30 16:56:09 +00:00
|
|
|
this._writeState = new Uint32Array(2);
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2017-10-27 00:09:30 +00:00
|
|
|
if (!this._handle.init(windowBits,
|
|
|
|
level,
|
|
|
|
memLevel,
|
|
|
|
strategy,
|
|
|
|
this._writeState,
|
|
|
|
processCallback,
|
|
|
|
dictionary)) {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_ZLIB_INITIALIZATION_FAILED();
|
2017-10-27 00:09:30 +00:00
|
|
|
}
|
2012-10-02 23:15:39 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
this._outBuffer = Buffer.allocUnsafe(chunkSize);
|
|
|
|
this._outOffset = 0;
|
2017-06-01 18:23:59 +00:00
|
|
|
this._level = level;
|
|
|
|
this._strategy = strategy;
|
2017-05-30 16:56:09 +00:00
|
|
|
this._chunkSize = chunkSize;
|
2018-09-30 20:13:07 +00:00
|
|
|
this._defaultFlushFlag = flush;
|
2017-05-30 16:56:09 +00:00
|
|
|
this._finishFlushFlag = finishFlush;
|
2018-09-30 20:13:07 +00:00
|
|
|
this._nextFlush = -1;
|
2017-05-30 16:56:09 +00:00
|
|
|
this._info = opts && opts.info;
|
2017-06-01 18:23:59 +00:00
|
|
|
this.once('end', this.close);
|
|
|
|
}
|
|
|
|
inherits(Zlib, Transform);
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
Object.defineProperty(Zlib.prototype, '_closed', {
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true,
|
|
|
|
get() {
|
2017-02-15 01:36:12 +00:00
|
|
|
return !this._handle;
|
2011-09-06 23:13:05 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
});
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2018-03-17 15:59:54 +00:00
|
|
|
// `bytesRead` made sense as a name when looking from the zlib engine's
|
|
|
|
// perspective, but it is inconsistent with all other streams exposed by Node.js
|
|
|
|
// that have this concept, where it stands for the number of bytes read
|
|
|
|
// *from* the stream (that is, net.Socket/tls.Socket & file system streams).
|
|
|
|
Object.defineProperty(Zlib.prototype, 'bytesRead', {
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true,
|
|
|
|
get() {
|
|
|
|
return this.bytesWritten;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.bytesWritten = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-09-30 20:24:36 +00:00
|
|
|
// This callback is used by `.params()` to wait until a full flush happened
|
|
|
|
// before adjusting the parameters. In particular, the call to the native
|
|
|
|
// `params()` function should not happen while a write is currently in progress
|
|
|
|
// on the threadpool.
|
|
|
|
function paramsAfterFlushCallback(level, strategy, callback) {
|
|
|
|
if (!this._handle)
|
|
|
|
assert(false, 'zlib binding closed');
|
|
|
|
this._handle.params(level, strategy);
|
|
|
|
if (!this._hadError) {
|
|
|
|
this._level = level;
|
|
|
|
this._strategy = strategy;
|
|
|
|
if (callback) callback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
Zlib.prototype.params = function params(level, strategy, callback) {
|
2018-02-08 16:26:59 +00:00
|
|
|
checkRangesOrGetDefault(level, 'level', Z_MIN_LEVEL, Z_MAX_LEVEL);
|
|
|
|
checkRangesOrGetDefault(strategy, 'strategy', Z_DEFAULT_STRATEGY, Z_FIXED);
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
if (this._level !== level || this._strategy !== strategy) {
|
2017-05-30 16:56:09 +00:00
|
|
|
this.flush(Z_SYNC_FLUSH,
|
2018-09-30 20:24:36 +00:00
|
|
|
paramsAfterFlushCallback.bind(this, level, strategy, callback));
|
2017-06-01 18:23:59 +00:00
|
|
|
} else {
|
|
|
|
process.nextTick(callback);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
};
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
Zlib.prototype.reset = function reset() {
|
2017-05-30 16:56:09 +00:00
|
|
|
if (!this._handle)
|
|
|
|
assert(false, 'zlib binding closed');
|
2017-06-01 18:23:59 +00:00
|
|
|
return this._handle.reset();
|
|
|
|
};
|
2011-12-02 07:53:56 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
// This is the _flush function called by the transform class,
|
|
|
|
// internally, when the last chunk has been written.
|
|
|
|
Zlib.prototype._flush = function _flush(callback) {
|
|
|
|
this._transform(Buffer.alloc(0), '', callback);
|
|
|
|
};
|
2012-04-01 04:01:55 +00:00
|
|
|
|
2017-07-28 11:39:04 +00:00
|
|
|
// If a flush is scheduled while another flush is still pending, a way to figure
|
|
|
|
// out which one is the "stronger" flush is needed.
|
|
|
|
// Roughly, the following holds:
|
|
|
|
// Z_NO_FLUSH (< Z_TREES) < Z_BLOCK < Z_PARTIAL_FLUSH <
|
|
|
|
// Z_SYNC_FLUSH < Z_FULL_FLUSH < Z_FINISH
|
|
|
|
const flushiness = [];
|
|
|
|
let i = 0;
|
|
|
|
for (const flushFlag of [Z_NO_FLUSH, Z_BLOCK, Z_PARTIAL_FLUSH,
|
|
|
|
Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH]) {
|
|
|
|
flushiness[flushFlag] = i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
function maxFlush(a, b) {
|
|
|
|
return flushiness[a] > flushiness[b] ? a : b;
|
|
|
|
}
|
|
|
|
|
2018-09-30 20:13:07 +00:00
|
|
|
const flushBuffer = Buffer.alloc(0);
|
2017-06-01 18:23:59 +00:00
|
|
|
Zlib.prototype.flush = function flush(kind, callback) {
|
|
|
|
var ws = this._writableState;
|
2012-04-01 04:01:55 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
if (typeof kind === 'function' || (kind === undefined && !callback)) {
|
|
|
|
callback = kind;
|
2017-05-30 16:56:09 +00:00
|
|
|
kind = Z_FULL_FLUSH;
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2012-04-01 04:01:55 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
if (ws.ended) {
|
|
|
|
if (callback)
|
|
|
|
process.nextTick(callback);
|
|
|
|
} else if (ws.ending) {
|
|
|
|
if (callback)
|
|
|
|
this.once('end', callback);
|
2018-09-30 20:13:07 +00:00
|
|
|
} else if (this._nextFlush !== -1) {
|
|
|
|
// This means that there is a flush currently in the write queue.
|
|
|
|
// We currently coalesce this flush into the pending one.
|
|
|
|
this._nextFlush = maxFlush(this._nextFlush, kind);
|
2017-06-01 18:23:59 +00:00
|
|
|
} else {
|
2018-09-30 20:13:07 +00:00
|
|
|
this._nextFlush = kind;
|
|
|
|
this.write(flushBuffer, '', callback);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
};
|
2013-07-01 09:42:19 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
Zlib.prototype.close = function close(callback) {
|
|
|
|
_close(this, callback);
|
2018-01-29 18:32:34 +00:00
|
|
|
this.destroy();
|
2017-06-01 18:23:59 +00:00
|
|
|
};
|
2013-07-01 09:42:19 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
Zlib.prototype._transform = function _transform(chunk, encoding, cb) {
|
2018-09-30 20:13:07 +00:00
|
|
|
var flushFlag = this._defaultFlushFlag;
|
|
|
|
// We use a 'fake' zero-length chunk to carry information about flushes from
|
|
|
|
// the public API to the actual stream implementation.
|
|
|
|
if (chunk === flushBuffer) {
|
|
|
|
flushFlag = this._nextFlush;
|
|
|
|
this._nextFlush = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For the last chunk, also apply `_finishFlushFlag`.
|
2017-05-30 16:56:09 +00:00
|
|
|
var ws = this._writableState;
|
|
|
|
if ((ws.ending || ws.ended) && ws.length === chunk.byteLength) {
|
2018-09-30 20:13:07 +00:00
|
|
|
flushFlag = maxFlush(flushFlag, this._finishFlushFlag);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-05-30 16:56:09 +00:00
|
|
|
processChunk(this, chunk, flushFlag, cb);
|
2017-06-01 18:23:59 +00:00
|
|
|
};
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
Zlib.prototype._processChunk = function _processChunk(chunk, flushFlag, cb) {
|
2017-05-30 16:56:09 +00:00
|
|
|
// _processChunk() is left for backwards compatibility
|
|
|
|
if (typeof cb === 'function')
|
|
|
|
processChunk(this, chunk, flushFlag, cb);
|
|
|
|
else
|
|
|
|
return processChunkSync(this, chunk, flushFlag);
|
|
|
|
};
|
2017-06-01 18:23:59 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
function processChunkSync(self, chunk, flushFlag) {
|
|
|
|
var availInBefore = chunk.byteLength;
|
|
|
|
var availOutBefore = self._chunkSize - self._outOffset;
|
|
|
|
var inOff = 0;
|
|
|
|
var availOutAfter;
|
|
|
|
var availInAfter;
|
2017-02-15 01:36:12 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
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 error;
|
2018-07-14 13:22:49 +00:00
|
|
|
self.on('error', function onError(er) {
|
2017-05-30 16:56:09 +00:00
|
|
|
error = er;
|
|
|
|
});
|
2017-06-01 18:23:59 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
while (true) {
|
|
|
|
handle.writeSync(flushFlag,
|
|
|
|
chunk, // in
|
|
|
|
inOff, // in_off
|
|
|
|
availInBefore, // in_len
|
|
|
|
buffer, // out
|
|
|
|
offset, // out_off
|
|
|
|
availOutBefore); // out_len
|
|
|
|
if (error)
|
2017-06-01 18:23:59 +00:00
|
|
|
throw error;
|
2017-02-15 01:36:12 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
availOutAfter = state[0];
|
|
|
|
availInAfter = state[1];
|
2017-02-15 01:36:12 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
var inDelta = (availInBefore - availInAfter);
|
|
|
|
inputRead += inDelta;
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
var have = availOutBefore - availOutAfter;
|
|
|
|
if (have > 0) {
|
2017-05-30 16:56:09 +00:00
|
|
|
var out = buffer.slice(offset, offset + have);
|
|
|
|
offset += have;
|
|
|
|
if (!buffers)
|
|
|
|
buffers = [out];
|
|
|
|
else
|
2017-06-01 18:23:59 +00:00
|
|
|
buffers.push(out);
|
2017-05-30 16:56:09 +00:00
|
|
|
nread += out.byteLength;
|
|
|
|
} else if (have < 0) {
|
|
|
|
assert(false, 'have should not go down');
|
2017-06-01 18:23:59 +00:00
|
|
|
}
|
2012-04-01 04:01:55 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
// exhausted the output buffer, or used all the input create a new one.
|
2017-05-30 16:56:09 +00:00
|
|
|
if (availOutAfter === 0 || offset >= chunkSize) {
|
|
|
|
availOutBefore = chunkSize;
|
|
|
|
offset = 0;
|
|
|
|
buffer = Buffer.allocUnsafe(chunkSize);
|
2017-06-01 18:23:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (availOutAfter === 0) {
|
2017-05-30 16:56:09 +00:00
|
|
|
// Not actually done. Need to reprocess.
|
2017-06-01 18:23:59 +00:00
|
|
|
// 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.
|
2017-05-30 16:56:09 +00:00
|
|
|
inOff += inDelta;
|
2017-06-01 18:23:59 +00:00
|
|
|
availInBefore = availInAfter;
|
2017-05-30 16:56:09 +00:00
|
|
|
} else {
|
|
|
|
break;
|
2015-10-26 21:40:56 +00:00
|
|
|
}
|
2017-05-30 16:56:09 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
|
2018-03-17 15:59:54 +00:00
|
|
|
self.bytesWritten = inputRead;
|
2018-09-11 03:55:03 +00:00
|
|
|
_close(self);
|
2017-06-01 18:23:59 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
if (nread >= kMaxLength) {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_BUFFER_TOO_LARGE();
|
2017-05-30 16:56:09 +00:00
|
|
|
}
|
|
|
|
|
2017-11-15 11:13:43 +00:00
|
|
|
if (nread === 0)
|
|
|
|
return Buffer.alloc(0);
|
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
return (buffers.length === 1 ? buffers[0] : Buffer.concat(buffers, nread));
|
|
|
|
}
|
|
|
|
|
|
|
|
function processChunk(self, chunk, flushFlag, cb) {
|
|
|
|
var handle = self._handle;
|
|
|
|
if (!handle)
|
2018-01-29 18:32:34 +00:00
|
|
|
assert(false, 'zlib binding closed');
|
2017-05-30 16:56:09 +00:00
|
|
|
|
|
|
|
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) {
|
2017-07-17 17:25:21 +00:00
|
|
|
this.buffer = null;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self.destroyed) {
|
2017-05-30 16:56:09 +00:00
|
|
|
this.buffer = null;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var availOutAfter = state[0];
|
|
|
|
var availInAfter = state[1];
|
|
|
|
|
2018-03-17 15:59:54 +00:00
|
|
|
const inDelta = handle.availInBefore - availInAfter;
|
|
|
|
self.bytesWritten += inDelta;
|
2017-05-30 16:56:09 +00:00
|
|
|
|
|
|
|
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');
|
2013-03-08 15:55:45 +00:00
|
|
|
}
|
2017-05-30 16:56:09 +00:00
|
|
|
|
|
|
|
// 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();
|
|
|
|
}
|
2016-03-15 00:11:07 +00:00
|
|
|
|
|
|
|
function _close(engine, callback) {
|
2012-10-30 17:16:28 +00:00
|
|
|
if (callback)
|
|
|
|
process.nextTick(callback);
|
|
|
|
|
2016-05-04 19:18:21 +00:00
|
|
|
// Caller may invoke .close after a zlib error (which will null _handle).
|
|
|
|
if (!engine._handle)
|
2012-10-30 17:16:28 +00:00
|
|
|
return;
|
|
|
|
|
2016-05-04 19:18:21 +00:00
|
|
|
engine._handle.close();
|
|
|
|
engine._handle = null;
|
2016-03-15 00:11:07 +00:00
|
|
|
}
|
zlib: reduce memory consumption, release early
In zlibBuffer(), don't wait for the garbage collector to reclaim the zlib memory
but release it manually. Reduces memory consumption by a factor of 10 or more
with some workloads.
Test case:
function f() {
require('zlib').deflate('xxx', g);
}
function g() {
setTimeout(f, 5);
}
f();
Observe RSS memory usage with and without this commit. After 10,000 iterations,
RSS stabilizes at ~35 MB with this commit. Without, RSS is over 300 MB and keeps
growing.
Cause: whenever the JS object heap hits the high-water mark, the V8 GC sweeps
it clean, then tries to grow it in order to avoid more sweeps in the near
future. Rule of thumb: the bigger the JS heap, the lazier the GC can be.
A side effect of a bigger heap is that objects now live longer. This is harmless
in general but it affects zlib context objects because those are tied to large
buffers that live outside the JS heap, on the order of 16K per context object.
Ergo, don't wait for the GC to reclaim the memory - it may take a long time.
Fixes #4172.
2012-10-30 00:19:01 +00:00
|
|
|
|
2017-02-15 01:36:12 +00:00
|
|
|
// generic zlib
|
|
|
|
// minimal 2-byte header
|
2017-06-01 18:23:59 +00:00
|
|
|
function Deflate(opts) {
|
|
|
|
if (!(this instanceof Deflate))
|
|
|
|
return new Deflate(opts);
|
2017-05-30 16:56:09 +00:00
|
|
|
Zlib.call(this, opts, DEFLATE);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
inherits(Deflate, Zlib);
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
function Inflate(opts) {
|
|
|
|
if (!(this instanceof Inflate))
|
|
|
|
return new Inflate(opts);
|
2017-05-30 16:56:09 +00:00
|
|
|
Zlib.call(this, opts, INFLATE);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
inherits(Inflate, Zlib);
|
2014-01-28 17:35:51 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
function Gzip(opts) {
|
|
|
|
if (!(this instanceof Gzip))
|
|
|
|
return new Gzip(opts);
|
2017-05-30 16:56:09 +00:00
|
|
|
Zlib.call(this, opts, GZIP);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
inherits(Gzip, Zlib);
|
2014-01-28 17:35:51 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
function Gunzip(opts) {
|
|
|
|
if (!(this instanceof Gunzip))
|
|
|
|
return new Gunzip(opts);
|
2017-05-30 16:56:09 +00:00
|
|
|
Zlib.call(this, opts, GUNZIP);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
inherits(Gunzip, Zlib);
|
2015-05-27 11:21:56 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
function DeflateRaw(opts) {
|
2017-10-13 05:10:44 +00:00
|
|
|
if (opts && opts.windowBits === 8) opts.windowBits = 9;
|
2017-06-01 18:23:59 +00:00
|
|
|
if (!(this instanceof DeflateRaw))
|
|
|
|
return new DeflateRaw(opts);
|
2017-05-30 16:56:09 +00:00
|
|
|
Zlib.call(this, opts, DEFLATERAW);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
inherits(DeflateRaw, Zlib);
|
2014-01-28 17:35:51 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
function InflateRaw(opts) {
|
|
|
|
if (!(this instanceof InflateRaw))
|
|
|
|
return new InflateRaw(opts);
|
2017-05-30 16:56:09 +00:00
|
|
|
Zlib.call(this, opts, INFLATERAW);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
inherits(InflateRaw, Zlib);
|
2014-01-28 17:35:51 +00:00
|
|
|
|
2017-06-01 18:23:59 +00:00
|
|
|
function Unzip(opts) {
|
|
|
|
if (!(this instanceof Unzip))
|
|
|
|
return new Unzip(opts);
|
2017-05-30 16:56:09 +00:00
|
|
|
Zlib.call(this, opts, UNZIP);
|
2017-02-15 01:36:12 +00:00
|
|
|
}
|
2017-06-01 18:23:59 +00:00
|
|
|
inherits(Unzip, Zlib);
|
2016-05-24 15:27:00 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
function createConvenienceMethod(ctor, sync) {
|
2017-02-15 01:36:12 +00:00
|
|
|
if (sync) {
|
2018-07-14 13:22:49 +00:00
|
|
|
return function syncBufferWrapper(buffer, opts) {
|
2017-05-30 16:56:09 +00:00
|
|
|
return zlibBufferSync(new ctor(opts), buffer);
|
2017-02-15 01:36:12 +00:00
|
|
|
};
|
|
|
|
} else {
|
2018-07-14 13:22:49 +00:00
|
|
|
return function asyncBufferWrapper(buffer, opts, callback) {
|
2017-02-15 01:36:12 +00:00
|
|
|
if (typeof opts === 'function') {
|
|
|
|
callback = opts;
|
|
|
|
opts = {};
|
2014-01-28 17:35:51 +00:00
|
|
|
}
|
2017-05-30 16:56:09 +00:00
|
|
|
return zlibBuffer(new ctor(opts), buffer, callback);
|
2017-02-15 01:36:12 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2011-10-13 23:37:49 +00:00
|
|
|
|
2017-05-30 16:56:09 +00:00
|
|
|
function createProperty(ctor) {
|
2017-02-15 01:36:12 +00:00
|
|
|
return {
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true,
|
2017-05-30 16:56:09 +00:00
|
|
|
value: function(options) {
|
|
|
|
return new ctor(options);
|
|
|
|
}
|
2017-02-15 01:36:12 +00:00
|
|
|
};
|
|
|
|
}
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2018-10-01 01:08:12 +00:00
|
|
|
// Legacy alias on the C++ wrapper object. This is not public API, so we may
|
|
|
|
// want to runtime-deprecate it at some point. There's no hurry, though.
|
|
|
|
Object.defineProperty(binding.Zlib.prototype, 'jsref', {
|
|
|
|
get() { return this[owner_symbol]; },
|
|
|
|
set(v) { return this[owner_symbol] = v; }
|
|
|
|
});
|
|
|
|
|
2017-02-15 01:36:12 +00:00
|
|
|
module.exports = {
|
2017-06-01 18:23:59 +00:00
|
|
|
Deflate,
|
|
|
|
Inflate,
|
|
|
|
Gzip,
|
|
|
|
Gunzip,
|
|
|
|
DeflateRaw,
|
|
|
|
InflateRaw,
|
|
|
|
Unzip,
|
2017-02-15 01:36:12 +00:00
|
|
|
|
|
|
|
// Convenience methods.
|
|
|
|
// compress/decompress a string or buffer in one step.
|
|
|
|
deflate: createConvenienceMethod(Deflate, false),
|
|
|
|
deflateSync: createConvenienceMethod(Deflate, true),
|
|
|
|
gzip: createConvenienceMethod(Gzip, false),
|
|
|
|
gzipSync: createConvenienceMethod(Gzip, true),
|
|
|
|
deflateRaw: createConvenienceMethod(DeflateRaw, false),
|
|
|
|
deflateRawSync: createConvenienceMethod(DeflateRaw, true),
|
|
|
|
unzip: createConvenienceMethod(Unzip, false),
|
|
|
|
unzipSync: createConvenienceMethod(Unzip, true),
|
|
|
|
inflate: createConvenienceMethod(Inflate, false),
|
|
|
|
inflateSync: createConvenienceMethod(Inflate, true),
|
|
|
|
gunzip: createConvenienceMethod(Gunzip, false),
|
|
|
|
gunzipSync: createConvenienceMethod(Gunzip, true),
|
|
|
|
inflateRaw: createConvenienceMethod(InflateRaw, false),
|
|
|
|
inflateRawSync: createConvenienceMethod(InflateRaw, true)
|
|
|
|
};
|
2014-01-28 17:35:51 +00:00
|
|
|
|
2017-02-15 01:36:12 +00:00
|
|
|
Object.defineProperties(module.exports, {
|
2017-05-30 16:56:09 +00:00
|
|
|
createDeflate: createProperty(Deflate),
|
|
|
|
createInflate: createProperty(Inflate),
|
|
|
|
createDeflateRaw: createProperty(DeflateRaw),
|
|
|
|
createInflateRaw: createProperty(InflateRaw),
|
|
|
|
createGzip: createProperty(Gzip),
|
|
|
|
createGunzip: createProperty(Gunzip),
|
|
|
|
createUnzip: createProperty(Unzip),
|
2017-02-15 01:36:12 +00:00
|
|
|
constants: {
|
|
|
|
configurable: false,
|
|
|
|
enumerable: true,
|
|
|
|
value: constants
|
|
|
|
},
|
|
|
|
codes: {
|
|
|
|
enumerable: true,
|
|
|
|
writable: false,
|
|
|
|
value: Object.freeze(codes)
|
2011-09-06 23:13:05 +00:00
|
|
|
}
|
2017-02-15 01:36:12 +00:00
|
|
|
});
|
2011-09-06 23:13:05 +00:00
|
|
|
|
2017-02-15 01:36:12 +00:00
|
|
|
// These should be considered deprecated
|
|
|
|
// expose all the zlib constants
|
|
|
|
const bkeys = Object.keys(constants);
|
|
|
|
for (var bk = 0; bk < bkeys.length; bk++) {
|
|
|
|
var bkey = bkeys[bk];
|
|
|
|
Object.defineProperty(module.exports, bkey, {
|
|
|
|
enumerable: true, value: constants[bkey], writable: false
|
|
|
|
});
|
|
|
|
}
|