0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/lib/stream.js

73 lines
1.3 KiB
JavaScript
Raw Normal View History

2010-10-11 02:21:36 +02:00
var events = require('events');
var util = require('util');
2010-10-11 02:21:36 +02:00
2010-12-02 03:07:20 +01:00
function Stream() {
2010-10-11 02:21:36 +02:00
events.EventEmitter.call(this);
}
util.inherits(Stream, events.EventEmitter);
2010-10-11 02:21:36 +02:00
exports.Stream = Stream;
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) {
if (false === dest.write(chunk)) source.pause();
}
}
source.on('data', ondata);
2010-10-11 02:21:36 +02:00
2010-12-02 05:59:06 +01:00
function ondrain() {
2010-10-11 02:21:36 +02:00
if (source.readable) source.resume();
}
2010-12-02 05:59:06 +01:00
dest.on('drain', ondrain);
2010-10-11 02:21:36 +02:00
/*
* If the 'end' option is not supplied, dest.end() will be called when
* source gets the 'end' event.
*/
2010-10-11 07:05:49 +02:00
if (!options || options.end !== false) {
2010-12-02 05:59:06 +01:00
function onend() {
2010-10-11 02:21:36 +02:00
dest.end();
}
2010-12-02 05:59:06 +01:00
source.on('end', onend);
2010-10-11 02:21:36 +02:00
}
2010-12-02 05:59:06 +01:00
dest.on('close', function() {
2010-11-24 03:30:52 +01:00
source.removeListener('data', ondata);
dest.removeListener('drain', ondrain);
2010-11-24 03:30:52 +01:00
source.removeListener('end', onend);
});
2010-10-11 02:21:36 +02:00
/*
* Questionable:
*/
if (!source.pause) {
2010-12-02 05:59:06 +01:00
source.pause = function() {
source.emit('pause');
2010-10-11 02:21:36 +02:00
};
}
if (!source.resume) {
2010-12-02 05:59:06 +01:00
source.resume = function() {
source.emit('resume');
2010-10-11 02:21:36 +02:00
};
}
2010-12-02 05:59:06 +01:00
dest.on('pause', function() {
2010-10-11 02:21:36 +02:00
source.pause();
});
2010-12-02 05:59:06 +01:00
dest.on('resume', function() {
2010-10-11 02:21:36 +02:00
if (source.readable) source.resume();
});
2011-02-10 08:02:51 +01:00
dest.emit('pipe', source);
2010-10-11 02:21:36 +02:00
};