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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stream: Throw on 'error' if listeners removed
In this situation: writable.on('error', handler); readable.pipe(writable); writable.removeListener('error', handler); writable.emit('error', new Error('boom')); there is actually no error handler, but it doesn't throw, because of the fix for stream.once('error', handler), in 23d92ec. Note that simply reverting that change is not valid either, because otherwise this will emit twice, being handled the first time, and then throwing the second: writable.once('error', handler); readable.pipe(writable); writable.emit('error', new Error('boom')); Fix this with a horrible hack to make the stream pipe onerror handler added before any other userland handlers, so that our handler is not affected by adding or removing any userland handlers. Closes #6007.
- Loading branch information
Showing
2 changed files
with
85 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -511,14 +511,22 @@ Readable.prototype.pipe = function(dest, pipeOpts) { | |
|
||
// if the dest has an error, then stop piping into it. | ||
// however, don't suppress the throwing behavior for this. | ||
// check for listeners before emit removes one-time listeners. | ||
var errListeners = EE.listenerCount(dest, 'error'); | ||
function onerror(er) { | ||
unpipe(); | ||
if (errListeners === 0 && EE.listenerCount(dest, 'error') === 0) | ||
dest.removeListener('error', onerror); | ||
if (EE.listenerCount(dest, 'error') === 0) | ||
dest.emit('error', er); | ||
} | ||
dest.once('error', onerror); | ||
// This is a brutally ugly hack to make sure that our error handler | ||
// is attached before any userland ones. NEVER DO THIS. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
othiym23
|
||
if (!dest._events.error) | ||
dest.on('error', onerror); | ||
else if (Array.isArray(dest._events.error)) | ||
dest._events.error.unshift(onerror); | ||
else | ||
dest._events.error = [onerror, dest._events.error]; | ||
|
||
|
||
|
||
// Both close and finish should trigger unpipe, but only once. | ||
function onclose() { | ||
|
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 is clever as it is ugly.