Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions benchmark/streams/finished.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
'use strict';

const common = require('../common');
const { Readable, Writable } = require('stream');
const { finished } = require('stream/promises');

const bench = common.createBenchmark(main, {
n: [1e7],
streamType: ['readable', 'writable'],
});

async function main({ n, streamType }) {
bench.start();

for (let i = 0; i < n; i++) {
let stream;

switch (streamType) {
case 'readable':
stream = new Readable({ read() { this.push(null); } });
stream.resume();
break;
case 'writable':
stream = new Writable({ write(chunk, enc, cb) { cb(); } });
stream.end();
break;
}

await finished(stream);
}

bench.end(n);
}
14 changes: 11 additions & 3 deletions lib/internal/streams/end-of-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ const {
kIsClosedPromise,
} = require('internal/streams/utils');

const { getHookArrays } = require('internal/async_hooks');
const AsyncContextFrame = require('internal/async_context_frame');

// Lazy load
let AsyncResource;
let addAbortListener;
Expand Down Expand Up @@ -74,9 +77,14 @@ function eos(stream, options, callback) {
validateFunction(callback, 'callback');
validateAbortSignal(options.signal, 'options.signal');

// Avoid AsyncResource.bind() because it calls ObjectDefineProperties which
// is a bottleneck here.
callback = once(bindAsyncResource(callback, 'STREAM_END_OF_STREAM'));
if (AsyncContextFrame.current() ||
getHookArrays()[0].length > 0) {
// Avoid AsyncResource.bind() because it calls ObjectDefineProperties which
// is a bottleneck here.
callback = once(bindAsyncResource(callback, 'STREAM_END_OF_STREAM'));
} else {
callback = once(callback);
}

if (isReadableStream(stream) || isWritableStream(stream)) {
return eosWeb(stream, options, callback);
Expand Down
24 changes: 24 additions & 0 deletions test/parallel/test-stream-finished-async-local-storage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Flags: --expose-internals
'use strict';

const common = require('../common');
const { Readable, finished } = require('stream');
const { AsyncLocalStorage } = require('async_hooks');
const { strictEqual } = require('assert');
const AsyncContextFrame = require('internal/async_context_frame');
const internalAsyncHooks = require('internal/async_hooks');

// This test verifies that ALS context is preserved when using stream.finished()

const als = new AsyncLocalStorage();
const readable = new Readable();

als.run('test-context-1', () => {
finished(readable, common.mustCall(() => {
strictEqual(AsyncContextFrame.enabled || internalAsyncHooks.getHookArrays()[0].length > 0,
true, 'One of AsyncContextFrame or async hooks criteria should be met');
strictEqual(als.getStore(), 'test-context-1', 'ALS context should be preserved');
}));
});

readable.destroy();
35 changes: 35 additions & 0 deletions test/parallel/test-stream-finished-bindAsyncResource-path.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// Flags: --expose-internals
'use strict';

const common = require('../common');
const { Readable, finished } = require('stream');
const { createHook, executionAsyncId } = require('async_hooks');
const { strictEqual } = require('assert');
const internalAsyncHooks = require('internal/async_hooks');

// This test verifies that when there are active async hooks, stream.finished() uses
// the bindAsyncResource path

createHook({
init(asyncId, type, triggerAsyncId) {
if (type === 'STREAM_END_OF_STREAM') {
const parentContext = contextMap.get(triggerAsyncId);
contextMap.set(asyncId, parentContext);
}
}
}).enable();

const contextMap = new Map();
const asyncId = executionAsyncId();
contextMap.set(asyncId, 'abc-123');
const readable = new Readable();

finished(readable, common.mustCall(() => {
const currentAsyncId = executionAsyncId();
const ctx = contextMap.get(currentAsyncId);
strictEqual(internalAsyncHooks.getHookArrays()[0].length > 0,
true, 'Should have active user async hook');
strictEqual(ctx, 'abc-123', 'Context should be preserved');
}));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that this does not verify continuation is preserved

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that this does not verify continuation is preserved

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't verify the code path either. It is a copy of the condition and someone might change one of the locations.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I expanded on the test!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mcollina I addressed your comment, thanks!


readable.destroy();
21 changes: 21 additions & 0 deletions test/parallel/test-stream-finished-default-path.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// Flags: --expose-internals --no-async-context-frame
'use strict';

const common = require('../common');
const { Readable, finished } = require('stream');
const { strictEqual } = require('assert');
const AsyncContextFrame = require('internal/async_context_frame');
const internalAsyncHooks = require('internal/async_hooks');

// This test verifies that when there are no active async hooks, stream.finished() uses the default callback path

const readable = new Readable();

finished(readable, common.mustCall(() => {
strictEqual(internalAsyncHooks.getHookArrays()[0].length === 0,
true, 'Should not have active user async hook');
strictEqual(AsyncContextFrame.current() || internalAsyncHooks.getHookArrays()[0].length > 0,
false, 'Default callback path should be used');
}));

readable.destroy();
Loading