2011-09-07 01:13:05 +02:00
|
|
|
## Zlib
|
|
|
|
|
|
|
|
You can access this module with:
|
|
|
|
|
|
|
|
var zlib = require('zlib');
|
2011-10-14 18:20:05 +02:00
|
|
|
|
|
|
|
This provides bindings to Gzip/Gunzip, Deflate/Inflate, and
|
|
|
|
DeflateRaw/InflateRaw classes. Each class takes the same options, and
|
|
|
|
is a readable/writable Stream.
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
Compressing or decompressing a file can be done by piping an
|
|
|
|
fs.ReadStream into a zlib stream, then into an fs.WriteStream.
|
|
|
|
|
2011-09-07 01:13:05 +02:00
|
|
|
var gzip = zlib.createGzip();
|
|
|
|
var fs = require('fs');
|
|
|
|
var inp = fs.createReadStream('input.txt');
|
|
|
|
var out = fs.createWriteStream('input.txt.gz');
|
|
|
|
|
|
|
|
inp.pipe(gzip).pipe(out);
|
|
|
|
|
2011-10-24 18:29:24 +02:00
|
|
|
Compressing or decompressing data in one step can be done by using
|
|
|
|
the convenience methods.
|
|
|
|
|
|
|
|
var input = '.................................';
|
|
|
|
zlib.deflate(input, function(err, buffer) {
|
|
|
|
if (!err) {
|
|
|
|
console.log(buffer.toString('base64'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var buffer = new Buffer('eJzT0yMAAGTvBe8=', 'base64');
|
|
|
|
zlib.unzip(buffer, function(err, buffer) {
|
|
|
|
if (!err) {
|
|
|
|
console.log(buffer.toString());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2011-10-14 18:20:05 +02:00
|
|
|
To use this module in an HTTP client or server, use the
|
|
|
|
[accept-encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3)
|
|
|
|
on requests, and the
|
|
|
|
[content-encoding](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11)
|
|
|
|
header on responses.
|
|
|
|
|
|
|
|
**Note: these examples are drastically simplified to show
|
|
|
|
the basic concept.** Zlib encoding can be expensive, and the results
|
2011-11-05 11:08:15 +01:00
|
|
|
ought to be cached. See [Memory Usage Tuning](#memory_Usage_Tuning)
|
|
|
|
below for more information on the speed/memory/compression
|
2011-10-14 18:20:05 +02:00
|
|
|
tradeoffs involved in zlib usage.
|
|
|
|
|
|
|
|
// client request example
|
|
|
|
var zlib = require('zlib');
|
|
|
|
var http = require('http');
|
|
|
|
var fs = require('fs');
|
|
|
|
var request = http.get({ host: 'izs.me',
|
|
|
|
path: '/',
|
|
|
|
port: 80,
|
|
|
|
headers: { 'accept-encoding': 'gzip,deflate' } });
|
|
|
|
request.on('response', function(response) {
|
|
|
|
var output = fs.createWriteStream('izs.me_index.html');
|
|
|
|
|
|
|
|
switch (response.headers['content-encoding']) {
|
|
|
|
// or, just use zlib.createUnzip() to handle both cases
|
|
|
|
case 'gzip':
|
|
|
|
response.pipe(zlib.createGunzip()).pipe(output);
|
|
|
|
break;
|
|
|
|
case 'deflate':
|
|
|
|
response.pipe(zlib.createInflate()).pipe(output);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
response.pipe(output);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// server example
|
|
|
|
// Running a gzip operation on every request is quite expensive.
|
|
|
|
// It would be much more efficient to cache the compressed buffer.
|
|
|
|
var zlib = require('zlib');
|
|
|
|
var http = require('http');
|
|
|
|
var fs = require('fs');
|
|
|
|
http.createServer(function(request, response) {
|
|
|
|
var raw = fs.createReadStream('index.html');
|
|
|
|
var acceptEncoding = request.headers['accept-encoding'];
|
|
|
|
if (!acceptEncoding) {
|
|
|
|
acceptEncoding = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note: this is not a conformant accept-encoding parser.
|
|
|
|
// See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
|
|
|
|
if (acceptEncoding.match(/\bdeflate\b/)) {
|
|
|
|
response.writeHead(200, { 'content-encoding': 'deflate' });
|
|
|
|
raw.pipe(zlib.createDeflate()).pipe(response);
|
|
|
|
} else if (acceptEncoding.match(/\bgzip\b/)) {
|
|
|
|
response.writeHead(200, { 'content-encoding': 'gzip' });
|
|
|
|
raw.pipe(zlib.createGzip()).pipe(response);
|
|
|
|
} else {
|
|
|
|
response.writeHead(200, {});
|
|
|
|
raw.pipe(response);
|
|
|
|
}
|
|
|
|
}).listen(1337);
|
2011-09-07 01:13:05 +02:00
|
|
|
|
|
|
|
### Constants
|
|
|
|
|
|
|
|
All of the constants defined in zlib.h are also defined on
|
|
|
|
`require('zlib')`. They are described in more detail in the zlib
|
|
|
|
documentation. See <http://zlib.net/manual.html#Constants>
|
|
|
|
for more details.
|
|
|
|
|
2011-10-26 08:10:42 +02:00
|
|
|
### zlib.createGzip([options])
|
|
|
|
|
|
|
|
Returns a new [Gzip](#zlib.Gzip) object with an [options](#options).
|
|
|
|
|
|
|
|
### zlib.createGunzip([options])
|
|
|
|
|
|
|
|
Returns a new [Gunzip](#zlib.Gunzip) object with an [options](#options).
|
|
|
|
|
|
|
|
### zlib.createDeflate([options])
|
|
|
|
|
|
|
|
Returns a new [Deflate](#zlib.Deflate) object with an [options](#options).
|
|
|
|
|
|
|
|
### zlib.createInflate([options])
|
|
|
|
|
|
|
|
Returns a new [Inflate](#zlib.Inflate) object with an [options](#options).
|
|
|
|
|
|
|
|
### zlib.createDeflateRaw([options])
|
|
|
|
|
|
|
|
Returns a new [DeflateRaw](#zlib.DeflateRaw) object with an [options](#options).
|
|
|
|
|
|
|
|
### zlib.createInflateRaw([options])
|
|
|
|
|
|
|
|
Returns a new [InflateRaw](#zlib.InflateRaw) object with an [options](#options).
|
|
|
|
|
|
|
|
### zlib.createUnzip([options])
|
|
|
|
|
|
|
|
Returns a new [Unzip](#zlib.Unzip) object with an [options](#options).
|
|
|
|
|
|
|
|
|
2011-09-07 01:13:05 +02:00
|
|
|
### zlib.Gzip
|
|
|
|
|
|
|
|
Compress data using gzip.
|
|
|
|
|
|
|
|
### zlib.Gunzip
|
|
|
|
|
|
|
|
Decompress a gzip stream.
|
|
|
|
|
|
|
|
### zlib.Deflate
|
|
|
|
|
|
|
|
Compress data using deflate.
|
|
|
|
|
|
|
|
### zlib.Inflate
|
|
|
|
|
|
|
|
Decompress a deflate stream.
|
|
|
|
|
|
|
|
### zlib.DeflateRaw
|
|
|
|
|
|
|
|
Compress data using deflate, and do not append a zlib header.
|
|
|
|
|
|
|
|
### zlib.InflateRaw
|
|
|
|
|
|
|
|
Decompress a raw deflate stream.
|
|
|
|
|
|
|
|
### zlib.Unzip
|
|
|
|
|
|
|
|
Decompress either a Gzip- or Deflate-compressed stream by auto-detecting
|
|
|
|
the header.
|
|
|
|
|
2011-10-24 18:29:24 +02:00
|
|
|
## Convenience Methods
|
|
|
|
|
|
|
|
All of these take a string or buffer as the first argument, and call the
|
|
|
|
supplied callback with `callback(error, result)`. The
|
|
|
|
compression/decompression engine is created using the default settings
|
|
|
|
in all convenience methods. To supply different options, use the
|
|
|
|
zlib classes directly.
|
|
|
|
|
|
|
|
### zlib.deflate(buf, callback)
|
|
|
|
|
|
|
|
Compress a string with Deflate.
|
|
|
|
|
|
|
|
### zlib.deflateRaw(buf, callback)
|
|
|
|
|
|
|
|
Compress a string with DeflateRaw.
|
|
|
|
|
|
|
|
### zlib.gzip(buf, callback)
|
|
|
|
|
|
|
|
Compress a string with Gzip.
|
|
|
|
|
|
|
|
### zlib.gunzip(buf, callback)
|
|
|
|
|
|
|
|
Decompress a raw Buffer with Gunzip.
|
|
|
|
|
|
|
|
### zlib.inflate(buf, callback)
|
|
|
|
|
|
|
|
Decompress a raw Buffer with Inflate.
|
|
|
|
|
|
|
|
### zlib.inflateRaw(buf, callback)
|
|
|
|
|
|
|
|
Decompress a raw Buffer with InflateRaw.
|
|
|
|
|
|
|
|
### zlib.unzip(buf, callback)
|
|
|
|
|
|
|
|
Decompress a raw Buffer with Unzip.
|
|
|
|
|
|
|
|
## Options
|
2011-09-07 01:13:05 +02:00
|
|
|
|
2011-10-24 18:29:24 +02:00
|
|
|
Each class takes an options object. All options are optional. (The
|
|
|
|
convenience methods use the default settings for all options.)
|
2011-09-07 01:13:05 +02:00
|
|
|
|
|
|
|
Note that some options are only
|
|
|
|
relevant when compressing, and are ignored by the decompression classes.
|
|
|
|
|
|
|
|
* chunkSize (default: 16*1024)
|
|
|
|
* windowBits
|
|
|
|
* level (compression only)
|
|
|
|
* memLevel (compression only)
|
|
|
|
* strategy (compression only)
|
|
|
|
|
|
|
|
See the description of `deflateInit2` and `inflateInit2` at
|
|
|
|
<http://zlib.net/manual.html#Advanced> for more information on these.
|
|
|
|
|
|
|
|
### Memory Usage Tuning
|
|
|
|
|
|
|
|
From `zlib/zconf.h`, modified to node's usage:
|
|
|
|
|
|
|
|
The memory requirements for deflate are (in bytes):
|
|
|
|
|
|
|
|
(1 << (windowBits+2)) + (1 << (memLevel+9))
|
|
|
|
|
|
|
|
that is: 128K for windowBits=15 + 128K for memLevel = 8
|
|
|
|
(default values) plus a few kilobytes for small objects.
|
|
|
|
|
|
|
|
For example, if you want to reduce
|
|
|
|
the default memory requirements from 256K to 128K, set the options to:
|
|
|
|
|
|
|
|
{ windowBits: 14, memLevel: 7 }
|
|
|
|
|
|
|
|
Of course this will generally degrade compression (there's no free lunch).
|
|
|
|
|
|
|
|
The memory requirements for inflate are (in bytes)
|
|
|
|
|
|
|
|
1 << windowBits
|
|
|
|
|
|
|
|
that is, 32K for windowBits=15 (default value) plus a few kilobytes
|
|
|
|
for small objects.
|
|
|
|
|
|
|
|
This is in addition to a single internal output slab buffer of size
|
|
|
|
`chunkSize`, which defaults to 16K.
|
2011-10-14 18:20:05 +02:00
|
|
|
|
|
|
|
The speed of zlib compression is affected most dramatically by the
|
|
|
|
`level` setting. A higher level will result in better compression, but
|
|
|
|
will take longer to complete. A lower level will result in less
|
|
|
|
compression, but will be much faster.
|
|
|
|
|
|
|
|
In general, greater memory usage options will mean that node has to make
|
|
|
|
fewer calls to zlib, since it'll be able to process more data in a
|
|
|
|
single `write` operation. So, this is another factor that affects the
|
|
|
|
speed, at the cost of memory usage.
|