Skip to content

Commit 6ca23d7

Browse files
committed
Revert "stream: add readableDidRead"
This reverts commit 8306051. PR-URL: #39589 Refs: nodejs/undici#907 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
1 parent 45f98fc commit 6ca23d7

File tree

5 files changed

+112
-19
lines changed

5 files changed

+112
-19
lines changed

doc/api/stream.md

+11
Original file line numberDiff line numberDiff line change
@@ -1261,6 +1261,17 @@ added: v11.4.0
12611261
Is `true` if it is safe to call [`readable.read()`][stream-read], which means
12621262
the stream has not been destroyed or emitted `'error'` or `'end'`.
12631263

1264+
##### `readable.readableDidRead`
1265+
<!-- YAML
1266+
added: REPLACEME
1267+
-->
1268+
1269+
* {boolean}
1270+
1271+
Allows determining if the stream has been or is about to be read.
1272+
Returns true if `'data'`, `'end'`, `'error'` or `'close'` has been
1273+
emitted.
1274+
12641275
##### `readable.readableEncoding`
12651276
<!-- YAML
12661277
added: v12.7.0

lib/_http_incoming.js

-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ function IncomingMessage(socket) {
8787
this.statusMessage = null;
8888
this.client = socket;
8989

90-
// TODO: Deprecate and remove.
9190
this._consuming = false;
9291
// Flag for when we decide that this message cannot possibly be
9392
// read by the user, so there's no point continuing to handle it.

lib/_http_server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ function resOnFinish(req, res, socket, state, server) {
802802
// If the user never called req.read(), and didn't pipe() or
803803
// .resume() or .on('data'), then we call req._dump() so that the
804804
// bytes will be pulled off the wire.
805-
if (!req.readableDidRead)
805+
if (!req._consuming && !req._readableState.resumeScheduled)
806806
req._dump();
807807

808808
// Make sure the requestTimeout is cleared before finishing.

lib/internal/streams/readable.js

+11-8
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ function ReadableState(options, stream, isDuplex) {
171171
// If true, a maybeReadMore has been scheduled.
172172
this.readingMore = false;
173173

174-
this.didRead = false;
174+
this.dataEmitted = false;
175175

176176
this.decoder = null;
177177
this.encoding = null;
@@ -316,6 +316,7 @@ function addChunk(stream, state, chunk, addToFront) {
316316
} else {
317317
state.awaitDrainWriters = null;
318318
}
319+
state.dataEmitted = true;
319320
stream.emit('data', chunk);
320321
} else {
321322
// Update the buffer info.
@@ -541,10 +542,10 @@ Readable.prototype.read = function(n) {
541542
endReadable(this);
542543
}
543544

544-
if (ret !== null)
545+
if (ret !== null) {
546+
state.dataEmitted = true;
545547
this.emit('data', ret);
546-
547-
state.didRead = true;
548+
}
548549

549550
return ret;
550551
};
@@ -849,9 +850,7 @@ function pipeOnDrain(src, dest) {
849850

850851
if ((!state.awaitDrainWriters || state.awaitDrainWriters.size === 0) &&
851852
EE.listenerCount(src, 'data')) {
852-
// TODO(ronag): Call resume() instead?
853853
state.flowing = true;
854-
state.didRead = true;
855854
flow(src);
856855
}
857856
};
@@ -999,7 +998,6 @@ Readable.prototype.resume = function() {
999998
function resume(stream, state) {
1000999
if (!state.resumeScheduled) {
10011000
state.resumeScheduled = true;
1002-
state.didRead = true;
10031001
process.nextTick(resume_, stream, state);
10041002
}
10051003
}
@@ -1187,7 +1185,12 @@ ObjectDefineProperties(Readable.prototype, {
11871185
readableDidRead: {
11881186
enumerable: false,
11891187
get: function() {
1190-
return this._readableState.didRead;
1188+
return (
1189+
this._readableState.dataEmitted ||
1190+
this._readableState.endEmitted ||
1191+
this._readableState.errorEmitted ||
1192+
this._readableState.closeEmitted
1193+
);
11911194
}
11921195
},
11931196

+89-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,104 @@
11
'use strict';
2-
require('../common');
2+
const common = require('../common');
33
const assert = require('assert');
44
const Readable = require('stream').Readable;
55

6+
function noop() {}
7+
8+
function check(readable, data, fn) {
9+
assert.strictEqual(readable.readableDidRead, false);
10+
if (data === -1) {
11+
readable.on('error', common.mustCall());
12+
readable.on('data', common.mustNotCall());
13+
readable.on('end', common.mustNotCall());
14+
} else {
15+
readable.on('error', common.mustNotCall());
16+
if (data === -2) {
17+
readable.on('end', common.mustNotCall());
18+
} else {
19+
readable.on('end', common.mustCall());
20+
}
21+
if (data > 0) {
22+
readable.on('data', common.mustCallAtLeast(data));
23+
} else {
24+
readable.on('data', common.mustNotCall());
25+
}
26+
}
27+
readable.on('close', common.mustCall());
28+
fn();
29+
setImmediate(() => {
30+
assert.strictEqual(readable.readableDidRead, true);
31+
});
32+
}
33+
634
{
735
const readable = new Readable({
8-
read: () => {}
36+
read() {
37+
this.push(null);
38+
}
939
});
40+
check(readable, 0, () => {
41+
readable.read();
42+
});
43+
}
1044

11-
assert.strictEqual(readable.readableDidRead, false);
12-
readable.read();
13-
assert.strictEqual(readable.readableDidRead, true);
45+
{
46+
const readable = new Readable({
47+
read() {
48+
this.push(null);
49+
}
50+
});
51+
check(readable, 0, () => {
52+
readable.resume();
53+
});
1454
}
1555

1656
{
1757
const readable = new Readable({
18-
read: () => {}
58+
read() {
59+
this.push(null);
60+
}
61+
});
62+
check(readable, -2, () => {
63+
readable.destroy();
1964
});
65+
}
2066

21-
assert.strictEqual(readable.readableDidRead, false);
22-
readable.resume();
23-
assert.strictEqual(readable.readableDidRead, true);
67+
{
68+
const readable = new Readable({
69+
read() {
70+
this.push(null);
71+
}
72+
});
73+
74+
check(readable, -1, () => {
75+
readable.destroy(new Error());
76+
});
77+
}
78+
79+
{
80+
const readable = new Readable({
81+
read() {
82+
this.push('data');
83+
this.push(null);
84+
}
85+
});
86+
87+
check(readable, 1, () => {
88+
readable.on('data', noop);
89+
});
90+
}
91+
92+
{
93+
const readable = new Readable({
94+
read() {
95+
this.push('data');
96+
this.push(null);
97+
}
98+
});
99+
100+
check(readable, 1, () => {
101+
readable.on('data', noop);
102+
readable.off('data', noop);
103+
});
24104
}

0 commit comments

Comments
 (0)