This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Add support for concatenated gzip files. #6442
Closed
Closed
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
cc0794a
zlib: Add gzip/gunzip modes to reset.
eendeego 31f2b2c
zlib: Have CheckError return an enum instead of a boolean.
eendeego 4782440
zlib: Add support for concatenated gzip streams.
eendeego 918d638
zlib: On error, decompress as much as possible from concatenated gzip…
eendeego 4634e30
zlib: Add require('../common') to multiple gzip stream tests.
eendeego fb973d3
zlib: Fix typo in multiple gzip stream test comments.
eendeego 2a9ec95
zlib: Fix coding style issues on multiple gzip stream tests.
eendeego File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// 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. | ||
|
||
// test unzipping a file that was created by contactenating multiple gzip | ||
// streams. | ||
|
||
var assert = require('assert'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Must always |
||
var zlib = require('zlib'); | ||
|
||
var util = require('util'); | ||
|
||
var gzipBuffer = new Buffer(128); | ||
var gzipOffset = 0; | ||
|
||
var stream1 = '123\n'; | ||
var stream2 = '456\n'; | ||
var stream3 = '789\n'; | ||
|
||
function gzipAppend(data) { | ||
data.copy(gzipBuffer, gzipOffset); | ||
gzipOffset += data.length; | ||
} | ||
|
||
function writeGzipStream(text, cb) { | ||
var gzip = zlib.createGzip(); | ||
gzip.on('data', gzipAppend); | ||
gzip.write(text, function () { | ||
gzip.flush(function () { | ||
gzip.end(function () { | ||
cb(); | ||
}); | ||
}); | ||
}); | ||
} | ||
|
||
function writeGarbageStream(text, cb) { | ||
gzipAppend(new Buffer(text)); | ||
cb(); | ||
} | ||
|
||
writeGzipStream(stream1, function() { | ||
writeGzipStream(stream2, function () { | ||
writeGarbageStream(stream3, function () { | ||
var gunzip = zlib.createGunzip(); | ||
var gunzippedData = new Buffer(2 * 1024); | ||
var gunzippedOffset = 0; | ||
gunzip.on('data', function (data) { | ||
data.copy(gunzippedData, gunzippedOffset); | ||
gunzippedOffset += data.length; | ||
}); | ||
gunzip.on('error', function () { | ||
assert.equal(gunzippedData.toString('utf8', 0, gunzippedOffset), stream1 + stream2); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Style: long line, should wrap at 80 columns. EDIT: Another thing, the house style is to write |
||
}); | ||
gunzip.on('end', function () { | ||
assert.fail('end event not expected'); | ||
}); | ||
|
||
gunzip.write(gzipBuffer.slice(0, gzipOffset), 'binary', function () { | ||
gunzip.end(); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// 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. | ||
|
||
// test unzipping a file that was created by contactenating multiple gzip | ||
// streams. | ||
|
||
var assert = require('assert'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto on |
||
var zlib = require('zlib'); | ||
|
||
var util = require('util'); | ||
|
||
var gzipBuffer = new Buffer(128); | ||
var gzipOffset = 0; | ||
|
||
var stream1 = '123\n'; | ||
var stream2 = '456\n'; | ||
var stream3 = '789\n'; | ||
|
||
function gzipAppend(data) { | ||
data.copy(gzipBuffer, gzipOffset); | ||
gzipOffset += data.length; | ||
} | ||
|
||
function writeGzipStream(text, cb) { | ||
var gzip = zlib.createGzip(); | ||
gzip.on('data', gzipAppend); | ||
gzip.write(text, function () { | ||
gzip.flush(function () { | ||
gzip.end(function () { | ||
cb(); | ||
}); | ||
}); | ||
}); | ||
} | ||
|
||
writeGzipStream(stream1, function() { | ||
writeGzipStream(stream2, function () { | ||
writeGzipStream(stream3, function () { | ||
var gunzip = zlib.createGunzip(); | ||
var gunzippedData = new Buffer(2 * 1024); | ||
var gunzippedOffset = 0; | ||
gunzip.on('data', function (data) { | ||
data.copy(gunzippedData, gunzippedOffset); | ||
gunzippedOffset += data.length; | ||
}); | ||
gunzip.on('end', function () { | ||
assert.equal(gunzippedData.toString('utf8', 0, gunzippedOffset), stream1 + stream2 + stream3); | ||
}); | ||
|
||
gunzip.write(gzipBuffer.slice(0, gzipOffset), 'binary', function () { | ||
gunzip.end(); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// 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. | ||
|
||
// test unzipping a file that was created by contactenating multiple gzip | ||
// streams. | ||
|
||
var assert = require('assert'); | ||
var zlib = require('zlib'); | ||
|
||
var util = require('util'); | ||
|
||
var HUGE = 64 * 1024; | ||
|
||
var originalBuffer = new Buffer(3 * HUGE); | ||
var originalOffset = 0; | ||
|
||
var gzipBuffer = new Buffer(3 * HUGE); | ||
var gzipOffset = 0; | ||
|
||
function getRandomLetter() { | ||
return (Math.random() * (122 - 97)) + 97; | ||
} | ||
|
||
function generateHugeStream() { | ||
var buffer = new Buffer(HUGE); | ||
for (var i = 0; i < HUGE; i++) | ||
buffer.writeUInt8(getRandomLetter(), i); | ||
|
||
buffer.copy(originalBuffer, originalOffset); | ||
originalOffset += HUGE; | ||
|
||
return buffer; | ||
} | ||
|
||
function gzipAppend(data) { | ||
data.copy(gzipBuffer, gzipOffset); | ||
gzipOffset += data.length; | ||
} | ||
|
||
function writeGzipStream(text, cb) { | ||
var gzip = zlib.createGzip(); | ||
gzip.on('data', gzipAppend); | ||
gzip.write(text, function () { | ||
gzip.flush(function () { | ||
gzip.end(function () { | ||
cb(); | ||
}); | ||
}); | ||
}); | ||
} | ||
|
||
writeGzipStream(generateHugeStream(), function() { | ||
writeGzipStream(generateHugeStream(), function () { | ||
writeGzipStream(generateHugeStream(), function () { | ||
var gunzip = zlib.createGunzip(); | ||
var gunzippedData = new Buffer(3 * HUGE); | ||
var gunzippedOffset = 0; | ||
gunzip.on('data', function (data) { | ||
data.copy(gunzippedData, gunzippedOffset); | ||
gunzippedOffset += data.length; | ||
}); | ||
gunzip.on('end', function () { | ||
var gunzippedStr = gunzippedData.toString('utf8', 0, gunzippedOffset); | ||
var originalStr = originalBuffer.toString('utf8', 0, 3 * HUGE); | ||
|
||
assert.equal(gunzippedStr, originalStr); | ||
}); | ||
|
||
gunzip.write(gzipBuffer.slice(0, gzipOffset), 'binary', function () { | ||
gunzip.end(); | ||
}); | ||
}); | ||
}); | ||
}); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo: s/contactenating/concatenating/