forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
- Loading branch information
Showing
2 changed files
with
108 additions
and
0 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,106 @@ | ||
'use strict'; | ||
|
||
const pipeline = require('internal/streams/pipeline'); | ||
const Duplex = require('internal/streams/duplex'); | ||
const { destroyer } = require('internal/streams/destroy'); | ||
|
||
module.exports = function pipe(...streams) { | ||
let ondrain; | ||
let onfinish; | ||
let onreadable; | ||
let onclose; | ||
let ret; | ||
|
||
const r = pipeline(streams, function(err) { | ||
if (onclose) { | ||
const cb = onclose; | ||
onclose = null; | ||
cb(err); | ||
} else { | ||
ret.destroy(err); | ||
} | ||
}); | ||
const w = streams[0]; | ||
|
||
const writable = w.writable; | ||
const readable = r.readable; | ||
const objectMode = w.readableObjectMode; | ||
|
||
ret = new Duplex({ | ||
writable, | ||
readable, | ||
objectMode, | ||
highWaterMark: 1 | ||
}); | ||
|
||
if (writable) { | ||
ret._write = function(chunk, encoding, callback) { | ||
if (w.write(chunk, encoding)) { | ||
callback(); | ||
} else { | ||
ondrain = callback; | ||
} | ||
}; | ||
|
||
ret._final = function(callback) { | ||
w.end(); | ||
onfinish = callback; | ||
}; | ||
|
||
ret.on('drain', function() { | ||
if (ondrain) { | ||
const cb = ondrain; | ||
ondrain = null; | ||
cb(); | ||
} | ||
}); | ||
|
||
ret.on('finish', function() { | ||
if (onfinish) { | ||
const cb = onfinish; | ||
onfinish = null; | ||
cb(); | ||
} | ||
}); | ||
|
||
// Writable.write unfortunately checks buffering before | ||
// writing, and not after due to https://github.com/nodejs/node/pull/35941. | ||
// We need to override this in order to avoid buffering overhead. | ||
ret.write = function write (chunk, encoding, cb) { | ||
return Duplex.prototype.write.call(ret, chunk, encoding, cb) && !ondrain; | ||
} | ||
} | ||
|
||
if (readable) { | ||
r.on('readable', function() { | ||
if (onreadable) { | ||
const cb = onreadable; | ||
onreadable = null; | ||
cb(); | ||
} | ||
}); | ||
|
||
ret._read = function() { | ||
while (true) { | ||
const buf = r.read(); | ||
|
||
if (buf === null) { | ||
onreadable = ret._read; | ||
return; | ||
} | ||
|
||
if (!ret.push(buf)) { | ||
return; | ||
} | ||
} | ||
}; | ||
} | ||
|
||
ret._destroy = function(err, callback) { | ||
onclose = callback; | ||
onreadable = null; | ||
ondrain = null; | ||
onfinish = null; | ||
destroyer(r, err); | ||
}; | ||
}; |
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