mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 20:06:58 +00:00

PR-URL: https://github.com/nodejs/node/pull/18515 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
68 lines
1.3 KiB
JavaScript
68 lines
1.3 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const { Readable, Writable, PassThrough } = require('stream');
|
|
|
|
{
|
|
let ticks = 17;
|
|
|
|
const rs = new Readable({
|
|
objectMode: true,
|
|
read: () => {
|
|
if (ticks-- > 0)
|
|
return process.nextTick(() => rs.push({}));
|
|
rs.push({});
|
|
rs.push(null);
|
|
}
|
|
});
|
|
|
|
const ws = new Writable({
|
|
highWaterMark: 0,
|
|
objectMode: true,
|
|
write: (data, end, cb) => setImmediate(cb)
|
|
});
|
|
|
|
rs.on('end', common.mustCall());
|
|
ws.on('finish', common.mustCall());
|
|
rs.pipe(ws);
|
|
}
|
|
|
|
{
|
|
let missing = 8;
|
|
|
|
const rs = new Readable({
|
|
objectMode: true,
|
|
read: () => {
|
|
if (missing--) rs.push({});
|
|
else rs.push(null);
|
|
}
|
|
});
|
|
|
|
const pt = rs
|
|
.pipe(new PassThrough({ objectMode: true, highWaterMark: 2 }))
|
|
.pipe(new PassThrough({ objectMode: true, highWaterMark: 2 }));
|
|
|
|
pt.on('end', function() {
|
|
wrapper.push(null);
|
|
});
|
|
|
|
const wrapper = new Readable({
|
|
objectMode: true,
|
|
read: () => {
|
|
process.nextTick(function() {
|
|
let data = pt.read();
|
|
if (data === null) {
|
|
pt.once('readable', function() {
|
|
data = pt.read();
|
|
if (data !== null) wrapper.push(data);
|
|
});
|
|
} else {
|
|
wrapper.push(data);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
wrapper.resume();
|
|
wrapper.on('end', common.mustCall());
|
|
}
|