An open API service indexing awesome lists of open source software.

https://github.com/kevinoid/inflate-auto

Decompression stream which detects the compression format from the compressed data with minimal buffering. Detects Gzip, Deflate, and DeflateRaw by default.
https://github.com/kevinoid/inflate-auto

decompression deflate gunzip nodejs stream zlib

Last synced: about 2 months ago
JSON representation

Decompression stream which detects the compression format from the compressed data with minimal buffering. Detects Gzip, Deflate, and DeflateRaw by default.

Awesome Lists containing this project

README

          

InflateAuto
===========

[![Build Status](https://img.shields.io/github/actions/workflow/status/kevinoid/inflate-auto/node.js.yml?branch=main&style=flat&label=build)](https://github.com/kevinoid/inflate-auto/actions?query=branch%3Amain)
[![Coverage](https://img.shields.io/codecov/c/github/kevinoid/inflate-auto/main.svg?style=flat)](https://app.codecov.io/gh/kevinoid/inflate-auto/branch/main)
[![Dependency Status](https://img.shields.io/librariesio/release/npm/inflate-auto.svg?style=flat)](https://libraries.io/npm/inflate-auto)
[![Supported Node Version](https://img.shields.io/node/v/inflate-auto.svg?style=flat)](https://www.npmjs.com/package/inflate-auto)
[![Version on NPM](https://img.shields.io/npm/v/inflate-auto.svg?style=flat)](https://www.npmjs.com/package/inflate-auto)

The `InflateAuto` class is designed to function as a drop-in replacement for
`zlib.Gunzip`, `zlib.Inflate`, and `zlib.InflateRaw` when the method of
compression is not known in advance. `InflateAuto` uses the first few bytes
of data to determine the compression method (by checking for a valid gzip or
zlib deflate header) then delegating the decompression work to the
corresponding type.

## Introductory Example

```js
const InflateAuto = require('inflate-auto');
const assert = require('assert');
const zlib = require('zlib');

const testData = new Buffer('example data');
const compressor = Math.random() < 0.33 ? zlib.deflate :
Math.random() < 0.5 ? zlib.deflateRaw :
zlib.gzip;
compressor(testData, (errCompress, compressed) => {
assert.ifError(errCompress);

InflateAuto.inflateAuto(compressed, function(errDecompress, decompressed) {
assert.ifError(errDecompress);
assert.deepStrictEqual(decompressed, testData);
console.log('Data compressed with random format and auto-decompressed.');
});
});
```

## Compatibility

`InflateAuto` should behave identically to any of the `zlib` decompression
types, with the exception of `instanceof` and `.constructor` checks. Using
the class should be as simple as `s/Inflate(Raw)?/InflateAuto/g`
in existing code. If any real-world code requires modification (other
than mentioned above) to work with `InflateAuto` it is considered a bug in
`InflateAuto`. Please [report any such
issues](https://github.com/kevinoid/inflate-auto/issues/new).

## Installation

[This package](https://www.npmjs.com/package/inflate-auto) can be installed
using [npm](https://www.npmjs.com/) by running:

```sh
npm install inflate-auto
```

## Recipes

### Deflate HTTP

The primary use case for which this module was created is decompressing HTTP
responses which declare `Content-Encoding: deflate`. As noted in [Section
4.2.2 of RFC 7230](https://tools.ietf.org/html/rfc7230#section-4.2.2) "Some
non-conformant implementations send the `"deflate"` compressed data without
the zlib wrapper." This has been attributed to [early Microsoft
servers](https://stackoverflow.com/a/9186091) and to [old Apache
mod\_deflate](https://mxr.mozilla.org/mozilla-esr38/source/netwerk/streamconv/converters/nsHTTPCompressConv.cpp#214),
and is an issue in several less common servers. Regardless of the most common
cause, it is observed in real-world behavior and poses a compatibility risk
for HTTP clients which support deflate encoding. Using `InflateAuto` is one
way to address the issue.

Compressed HTTP/HTTPS responses can be supported with code similar to the
following:

```js
const InflateAuto = require('inflate-auto');
const https = require('https');
const url = require('url');
const zlib = require('zlib');

const options = url.parse('https://api.stackexchange.com/2.2/answers?order=desc&sort=activity&site=stackoverflow');
options.headers = {
Accept: 'application/json',
'Accept-Encoding': 'gzip, deflate'
};
https.get(options, function(res) {
const encoding =
(res.headers['content-encoding'] || 'identity').trim().toLowerCase();

// InflateAuto could be used for gzip to accept deflate data declared as gzip
const inflater = encoding === 'deflate' ? new InflateAuto() :
encoding === 'gzip' ? new zlib.Gunzip() :
null;

res.on('error', err => console.error('Response error:', err));

let bodyData;
if (inflater) {
inflater.on('error', err => console.error('Decompression error:', err));
bodyData = res.pipe(inflater);
} else {
bodyData = res;
}

bodyData.pipe(process.stdout, {end: false});
})
.on('error', err => console.error('Request error:', err));
```

### Log Compression Format

To be notified when the compression format is determined, listen for the
`'format'` event as follows:

```js
const InflateAuto = require('inflate-auto');
const inflater = new InflateAuto();
inflater.on(
'format',
decoder => console.log('Compression format: ' + decoder.constructor.name)
);
inflater.write(compressedData);
```

### Inflate Possibly-Compressed Data

By specifying `PassThrough` as the default format, `InflateAuto` can be used
to inflate compressed data and pass through other data unchanged as follows:

```js
const InflateAuto = require('inflate-auto');
const stream = require('stream');
const inflater = new InflateAuto({defaultFormat: stream.PassThrough});
inflater.pipe(process.stdout);
inflater.end(compressedOrUncompressedData);
```

Note that the above code would treat "raw" DEFLATE data as uncompressed since
`InflateRaw` is normally the default format and is overridden with
`PassThrough`. Feel free to [open an
issue](https://github.com/kevinoid/inflate-auto/issues/new) to request support
for detecting "raw" DEFLATE if this is desired.

### Synchronous Inflate

Data can be decompressed while blocking the main thread using
`InflateAuto.inflateAutoSync` (analogously to `zlib.inflateSync`) as follows:

```js
const InflateAuto = require('inflate-auto');
const assert = require('assert');
const zlib = require('zlib');

const compressor = Math.random() < 0.33 ? zlib.deflateSync :
Math.random() < 0.5 ? zlib.deflateRawSync :
zlib.gzipSync;
const testData = new Buffer('example data');
const compressed = compressor(testData);
const decompressed = InflateAuto.inflateAutoSync(compressed);
assert.deepStrictEqual(decompressed, testData);
```

More examples can be found in the [test
specifications](https://kevinoid.github.io/inflate-auto/specs).

## API Docs

For the details of using this module as a library, see the [API
Documentation](https://kevinoid.github.io/inflate-auto/api).

## Contributing

Contributions are appreciated. Contributors agree to abide by the [Contributor
Covenant Code of
Conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html).
If this is your first time contributing to a Free and Open Source Software
project, consider reading [How to Contribute to Open
Source](https://opensource.guide/how-to-contribute/)
in the Open Source Guides.

If the desired change is large, complex, backwards-incompatible, can have
significantly differing implementations, or may not be in scope for this
project, opening an issue before writing the code can avoid frustration and
save a lot of time and effort.

## License

This project is available under the terms of the [MIT License](LICENSE.txt).
See the [summary at TLDRLegal](https://tldrlegal.com/license/mit-license).