Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stream: try to wait for flush to complete before 'finish' #34314

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 20 additions & 2 deletions lib/_stream_transform.js
Expand Up @@ -106,24 +106,42 @@ function Transform(options) {
this.on('prefinish', prefinish);
}

function prefinish() {
function final(cb) {
if (typeof this._flush === 'function' && !this.destroyed) {
this._flush((er, data) => {
if (er) {
this.destroy(er);
if (cb) {
cb(er);
} else {
this.destroy(er);
}
return;
}

if (data != null) {
this.push(data);
}
this.push(null);
if (cb) {
cb();
}
});
} else {
this.push(null);
if (cb) {
cb();
}
}
}

function prefinish() {
if (this._final !== final) {
final.call(this);
}
}

Transform.prototype._final = final;

Transform.prototype._transform = function(chunk, encoding, callback) {
throw new ERR_METHOD_NOT_IMPLEMENTED('_transform()');
};
Expand Down
5 changes: 5 additions & 0 deletions lib/zlib.js
Expand Up @@ -323,6 +323,11 @@ ZlibBase.prototype._flush = function(callback) {
this._transform(Buffer.alloc(0), '', callback);
};

// Force Transform compat behavior.
ZlibBase.prototype._final = function(callback) {
callback();
ronag marked this conversation as resolved.
Show resolved Hide resolved
};

// If a flush is scheduled while another flush is still pending, a way to figure
// out which one is the "stronger" flush is needed.
// This is currently only used to figure out which flush flag to use for the
Expand Down
24 changes: 24 additions & 0 deletions test/parallel/test-stream-pipeline.js
Expand Up @@ -1231,3 +1231,27 @@ const net = require('net');
assert.strictEqual(res, 'helloworld');
}));
}

{
let flushed = false;
const makeStream = () =>
new Transform({
transform: (chunk, enc, cb) => cb(null, chunk),
flush: (cb) =>
setTimeout(() => {
flushed = true;
cb(null);
}, 1),
});

const input = new Readable();
input.push(null);

pipeline(
input,
makeStream(),
common.mustCall(() => {
assert.strictEqual(flushed, true);
}),
);
}