-
Notifications
You must be signed in to change notification settings - Fork 30.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
101 additions
and
92 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 |
---|---|---|
@@ -0,0 +1,91 @@ | ||
'use strict'; | ||
|
||
module.exports = function(Stream) { | ||
// old-style streams. Note that the pipe method (the only relevant | ||
// part of this class) is overridden in the Readable class. | ||
|
||
Stream.prototype.pipe = function(dest, options) { | ||
var source = this; | ||
|
||
function ondata(chunk) { | ||
if (dest.writable) { | ||
if (false === dest.write(chunk) && source.pause) { | ||
source.pause(); | ||
} | ||
} | ||
} | ||
|
||
source.on('data', ondata); | ||
|
||
function ondrain() { | ||
if (source.readable && source.resume) { | ||
source.resume(); | ||
} | ||
} | ||
|
||
dest.on('drain', ondrain); | ||
|
||
// If the 'end' option is not supplied, dest.end() will be called when | ||
// source gets the 'end' or 'close' events. Only dest.end() once. | ||
if (!dest._isStdio && (!options || options.end !== false)) { | ||
source.on('end', onend); | ||
source.on('close', onclose); | ||
} | ||
|
||
var didOnEnd = false; | ||
function onend() { | ||
if (didOnEnd) return; | ||
didOnEnd = true; | ||
|
||
dest.end(); | ||
} | ||
|
||
|
||
function onclose() { | ||
if (didOnEnd) return; | ||
didOnEnd = true; | ||
|
||
if (typeof dest.destroy === 'function') dest.destroy(); | ||
} | ||
|
||
// don't leave dangling pipes when there are errors. | ||
function onerror(er) { | ||
cleanup(); | ||
if (EE.listenerCount(this, 'error') === 0) { | ||
throw er; // Unhandled stream error in pipe. | ||
} | ||
} | ||
|
||
source.on('error', onerror); | ||
dest.on('error', onerror); | ||
|
||
// remove all the event listeners that were added. | ||
function cleanup() { | ||
source.removeListener('data', ondata); | ||
dest.removeListener('drain', ondrain); | ||
|
||
source.removeListener('end', onend); | ||
source.removeListener('close', onclose); | ||
|
||
source.removeListener('error', onerror); | ||
dest.removeListener('error', onerror); | ||
|
||
source.removeListener('end', cleanup); | ||
source.removeListener('close', cleanup); | ||
|
||
dest.removeListener('close', cleanup); | ||
} | ||
|
||
source.on('end', cleanup); | ||
source.on('close', cleanup); | ||
|
||
dest.on('close', cleanup); | ||
|
||
dest.emit('pipe', source); | ||
|
||
// Allow for unix-like usage: A.pipe(B).pipe(C) | ||
return dest; | ||
}; | ||
|
||
return Stream; | ||
}; |
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