2014-11-22 16:59:48 +01:00
|
|
|
'use strict';
|
|
|
|
|
2012-10-03 00:44:50 +02:00
|
|
|
module.exports = Stream;
|
|
|
|
|
2015-09-17 00:45:29 +02:00
|
|
|
const EE = require('events');
|
2015-01-21 17:36:59 +01:00
|
|
|
const util = require('util');
|
2010-10-11 02:21:36 +02:00
|
|
|
|
2013-02-14 09:48:11 +01:00
|
|
|
util.inherits(Stream, EE);
|
2012-10-03 00:44:50 +02:00
|
|
|
Stream.Readable = require('_stream_readable');
|
|
|
|
Stream.Writable = require('_stream_writable');
|
|
|
|
Stream.Duplex = require('_stream_duplex');
|
|
|
|
Stream.Transform = require('_stream_transform');
|
|
|
|
Stream.PassThrough = require('_stream_passthrough');
|
|
|
|
|
2011-10-24 23:52:10 +02:00
|
|
|
// Backwards-compat with node 0.4.x
|
|
|
|
Stream.Stream = Stream;
|
2010-10-11 02:21:36 +02:00
|
|
|
|
2012-10-03 00:44:50 +02:00
|
|
|
|
|
|
|
// old-style streams. Note that the pipe method (the only relevant
|
|
|
|
// part of this class) is overridden in the Readable class.
|
|
|
|
|
|
|
|
function Stream() {
|
2013-02-14 09:48:11 +01:00
|
|
|
EE.call(this);
|
2012-10-03 00:44:50 +02:00
|
|
|
}
|
|
|
|
|
2011-01-02 01:41:39 +01:00
|
|
|
Stream.prototype.pipe = function(dest, options) {
|
2010-10-11 02:21:36 +02:00
|
|
|
var source = this;
|
|
|
|
|
2010-12-02 05:59:06 +01:00
|
|
|
function ondata(chunk) {
|
2010-11-24 03:30:52 +01:00
|
|
|
if (dest.writable) {
|
2011-10-24 20:55:02 +02:00
|
|
|
if (false === dest.write(chunk) && source.pause) {
|
|
|
|
source.pause();
|
|
|
|
}
|
2010-11-24 03:30:52 +01:00
|
|
|
}
|
2010-11-21 08:08:45 +01:00
|
|
|
}
|
|
|
|
|
2011-01-02 01:41:39 +01:00
|
|
|
source.on('data', ondata);
|
2010-10-11 02:21:36 +02:00
|
|
|
|
2010-12-02 05:59:06 +01:00
|
|
|
function ondrain() {
|
2011-10-24 20:55:02 +02:00
|
|
|
if (source.readable && source.resume) {
|
|
|
|
source.resume();
|
|
|
|
}
|
2010-11-21 08:08:45 +01:00
|
|
|
}
|
|
|
|
|
2010-12-02 05:59:06 +01:00
|
|
|
dest.on('drain', ondrain);
|
2010-10-11 02:21:36 +02:00
|
|
|
|
2011-04-27 20:10:10 +02:00
|
|
|
// If the 'end' option is not supplied, dest.end() will be called when
|
2011-11-21 22:57:33 +01:00
|
|
|
// source gets the 'end' or 'close' events. Only dest.end() once.
|
2011-11-10 23:51:16 +01:00
|
|
|
if (!dest._isStdio && (!options || options.end !== false)) {
|
2011-04-27 20:10:10 +02:00
|
|
|
source.on('end', onend);
|
2011-05-02 21:13:06 +02:00
|
|
|
source.on('close', onclose);
|
2011-04-27 20:10:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var didOnEnd = false;
|
|
|
|
function onend() {
|
|
|
|
if (didOnEnd) return;
|
|
|
|
didOnEnd = true;
|
|
|
|
|
|
|
|
dest.end();
|
|
|
|
}
|
|
|
|
|
2011-05-02 21:13:06 +02:00
|
|
|
|
|
|
|
function onclose() {
|
|
|
|
if (didOnEnd) return;
|
|
|
|
didOnEnd = true;
|
|
|
|
|
2015-01-29 02:05:53 +01:00
|
|
|
if (typeof dest.destroy === 'function') dest.destroy();
|
2011-05-02 21:13:06 +02:00
|
|
|
}
|
|
|
|
|
2011-04-27 20:10:10 +02:00
|
|
|
// don't leave dangling pipes when there are errors.
|
|
|
|
function onerror(er) {
|
|
|
|
cleanup();
|
2015-09-02 18:23:49 +02:00
|
|
|
if (EE.listenerCount(this, 'error') === 0) {
|
2011-04-27 20:10:10 +02:00
|
|
|
throw er; // Unhandled stream error in pipe.
|
|
|
|
}
|
2010-10-11 02:21:36 +02:00
|
|
|
}
|
|
|
|
|
2011-04-27 20:10:10 +02:00
|
|
|
source.on('error', onerror);
|
|
|
|
dest.on('error', onerror);
|
2010-10-11 02:21:36 +02:00
|
|
|
|
2011-04-27 20:10:10 +02:00
|
|
|
// remove all the event listeners that were added.
|
|
|
|
function cleanup() {
|
2011-03-28 20:19:44 +02:00
|
|
|
source.removeListener('data', ondata);
|
|
|
|
dest.removeListener('drain', ondrain);
|
2011-04-27 20:10:10 +02:00
|
|
|
|
2011-03-28 20:19:44 +02:00
|
|
|
source.removeListener('end', onend);
|
2011-05-02 21:13:06 +02:00
|
|
|
source.removeListener('close', onclose);
|
2011-04-14 20:33:54 +02:00
|
|
|
|
2011-04-27 20:10:10 +02:00
|
|
|
source.removeListener('error', onerror);
|
|
|
|
dest.removeListener('error', onerror);
|
|
|
|
|
2011-03-28 20:19:44 +02:00
|
|
|
source.removeListener('end', cleanup);
|
|
|
|
source.removeListener('close', cleanup);
|
2011-04-14 20:33:54 +02:00
|
|
|
|
2011-03-28 20:19:44 +02:00
|
|
|
dest.removeListener('close', cleanup);
|
|
|
|
}
|
2011-04-14 20:33:54 +02:00
|
|
|
|
2011-03-28 20:19:44 +02:00
|
|
|
source.on('end', cleanup);
|
|
|
|
source.on('close', cleanup);
|
|
|
|
|
|
|
|
dest.on('close', cleanup);
|
2011-02-10 08:02:51 +01:00
|
|
|
|
|
|
|
dest.emit('pipe', source);
|
2011-07-11 07:35:25 +02:00
|
|
|
|
|
|
|
// Allow for unix-like usage: A.pipe(B).pipe(C)
|
|
|
|
return dest;
|
2010-10-11 02:21:36 +02:00
|
|
|
};
|