forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stream: defer readable and flow when sync
PR-URL: nodejs#18515 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
1 parent
360abc8
commit e0c9d43
Showing
3 changed files
with
119 additions
and
5 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
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,67 @@ | ||
'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()); | ||
} |
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,40 @@ | ||
'use strict'; | ||
|
||
const { Readable } = require('stream'); | ||
const common = require('../common'); | ||
|
||
let ticks = 18; | ||
let expectedData = 19; | ||
|
||
const rs = new Readable({ | ||
objectMode: true, | ||
read: () => { | ||
if (ticks-- > 0) | ||
return process.nextTick(() => rs.push({})); | ||
rs.push({}); | ||
rs.push(null); | ||
} | ||
}); | ||
|
||
rs.on('end', common.mustCall()); | ||
readAndPause(); | ||
|
||
function readAndPause() { | ||
// Does a on(data) -> pause -> wait -> resume -> on(data) ... loop. | ||
// Expects on(data) to never fire if the stream is paused. | ||
const ondata = common.mustCall((data) => { | ||
rs.pause(); | ||
|
||
expectedData--; | ||
if (expectedData <= 0) | ||
return; | ||
|
||
setImmediate(function() { | ||
rs.removeListener('data', ondata); | ||
readAndPause(); | ||
rs.resume(); | ||
}); | ||
}, 1); // only call ondata once | ||
|
||
rs.on('data', ondata); | ||
} |