-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stream: move legacy to lib/internal dir
Improve readability of lib/stream.js by moving the legacy abstract Stream into lib/internal/streams/legacy.js. PR-URL: nodejs/node#8197 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
- Loading branch information
Showing
3 changed files
with
97 additions
and
96 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,93 @@ | ||
'use strict'; | ||
|
||
const EE = require('events'); | ||
const util = require('util'); | ||
|
||
function Stream() { | ||
EE.call(this); | ||
} | ||
util.inherits(Stream, EE); | ||
|
||
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; | ||
}; | ||
|
||
module.exports = 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