-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
zlib: do not coalesce multiple
.flush()
calls
This is an approach to address the issue linked below. Previously, when `.write()` and `.flush()` calls to a zlib stream were interleaved synchronously (i.e. without waiting for these operations to finish), multiple flush calls would have been coalesced into a single flushing operation. This patch changes behaviour so that each `.flush()` all corresponds to one flushing operation on the underlying zlib resource, and the order of operations is as if the `.flush()` call were a `.write()` call. One test had to be removed because it specifically tested the previous behaviour. As a drive-by fix, this also makes sure that all flush callbacks are called. Previously, that was not the case. Fixes: #28478 PR-URL: #28520 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
- Loading branch information
1 parent
ddb5152
commit e8c90bf
Showing
4 changed files
with
79 additions
and
53 deletions.
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 was deleted.
Oops, something went wrong.
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,57 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const { createGzip, createGunzip, Z_PARTIAL_FLUSH } = require('zlib'); | ||
|
||
// Verify that .flush() behaves like .write() in terms of ordering, e.g. in | ||
// a sequence like .write() + .flush() + .write() + .flush() each .flush() call | ||
// only affects the data written before it. | ||
// Refs: https://github.com/nodejs/node/issues/28478 | ||
|
||
const compress = createGzip(); | ||
const decompress = createGunzip(); | ||
decompress.setEncoding('utf8'); | ||
|
||
const events = []; | ||
const compressedChunks = []; | ||
|
||
for (const chunk of ['abc', 'def', 'ghi']) { | ||
compress.write(chunk, common.mustCall(() => events.push({ written: chunk }))); | ||
compress.flush(Z_PARTIAL_FLUSH, common.mustCall(() => { | ||
events.push('flushed'); | ||
const chunk = compress.read(); | ||
if (chunk !== null) | ||
compressedChunks.push(chunk); | ||
})); | ||
} | ||
|
||
compress.end(common.mustCall(() => { | ||
events.push('compress end'); | ||
writeToDecompress(); | ||
})); | ||
|
||
function writeToDecompress() { | ||
// Write the compressed chunks to a decompressor, one by one, in order to | ||
// verify that the flushes actually worked. | ||
const chunk = compressedChunks.shift(); | ||
if (chunk === undefined) return decompress.end(); | ||
decompress.write(chunk, common.mustCall(() => { | ||
events.push({ read: decompress.read() }); | ||
writeToDecompress(); | ||
})); | ||
} | ||
|
||
process.on('exit', () => { | ||
assert.deepStrictEqual(events, [ | ||
{ written: 'abc' }, | ||
'flushed', | ||
{ written: 'def' }, | ||
'flushed', | ||
{ written: 'ghi' }, | ||
'flushed', | ||
'compress end', | ||
{ read: 'abc' }, | ||
{ read: 'def' }, | ||
{ read: 'ghi' } | ||
]); | ||
}); |
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