Skip to content

Commit 16920db

Browse files
committed
Revert "http: align with stream.Writable"
This reverts commit e2f5bb7. Reverted as it caused a significant performance regression. See: #37937 PR-URL: #37963 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Beth Griggs <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 82bc5c3 commit 16920db

8 files changed

+232
-245
lines changed

lib/_http_client.js

+20-32
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const Agent = require('_http_agent');
5858
const { Buffer } = require('buffer');
5959
const { defaultTriggerAsyncIdScope } = require('internal/async_hooks');
6060
const { URL, urlToHttpOptions, searchParamsSymbol } = require('internal/url');
61-
const { kOutHeaders } = require('internal/http');
61+
const { kOutHeaders, kNeedDrain } = require('internal/http');
6262
const { connResetException, codes } = require('internal/errors');
6363
const {
6464
ERR_HTTP_HEADERS_SENT,
@@ -98,7 +98,7 @@ class HTTPClientAsyncResource {
9898
}
9999

100100
function ClientRequest(input, options, cb) {
101-
FunctionPrototypeCall(OutgoingMessage, this, { autoDestroy: false });
101+
FunctionPrototypeCall(OutgoingMessage, this);
102102

103103
if (typeof input === 'string') {
104104
const urlStr = input;
@@ -304,7 +304,7 @@ function ClientRequest(input, options, cb) {
304304
if (typeof optsWithoutSignal.createConnection === 'function') {
305305
const oncreate = once((err, socket) => {
306306
if (err) {
307-
process.nextTick(() => emitError(this, err));
307+
process.nextTick(() => this.emit('error', err));
308308
} else {
309309
this.onSocket(socket);
310310
}
@@ -373,8 +373,8 @@ function emitAbortNT(req) {
373373

374374
function ondrain() {
375375
const msg = this._httpMessage;
376-
if (msg && !msg.finished && msg._writableState.needDrain) {
377-
msg._writableState.needDrain = false;
376+
if (msg && !msg.finished && msg[kNeedDrain]) {
377+
msg[kNeedDrain] = false;
378378
msg.emit('drain');
379379
}
380380
}
@@ -400,7 +400,8 @@ function socketCloseListener() {
400400
if (!res.complete) {
401401
res.destroy(connResetException('aborted'));
402402
}
403-
emitClose(req);
403+
req._closed = true;
404+
req.emit('close');
404405
if (!res.aborted && res.readable) {
405406
res.push(null);
406407
}
@@ -410,9 +411,10 @@ function socketCloseListener() {
410411
// receive a response. The error needs to
411412
// fire on the request.
412413
req.socket._hadError = true;
413-
emitError(req, connResetException('socket hang up'));
414+
req.emit('error', connResetException('socket hang up'));
414415
}
415-
emitClose(req);
416+
req._closed = true;
417+
req.emit('close');
416418
}
417419

418420
// Too bad. That output wasn't getting written.
@@ -436,7 +438,7 @@ function socketErrorListener(err) {
436438
// For Safety. Some additional errors might fire later on
437439
// and we need to make sure we don't double-fire the error event.
438440
req.socket._hadError = true;
439-
emitError(req, err);
441+
req.emit('error', err);
440442
}
441443

442444
const parser = socket.parser;
@@ -460,7 +462,7 @@ function socketOnEnd() {
460462
// If we don't have a response then we know that the socket
461463
// ended prematurely and we need to emit an error on the request.
462464
req.socket._hadError = true;
463-
emitError(req, connResetException('socket hang up'));
465+
req.emit('error', connResetException('socket hang up'));
464466
}
465467
if (parser) {
466468
parser.finish();
@@ -483,7 +485,7 @@ function socketOnData(d) {
483485
freeParser(parser, req, socket);
484486
socket.destroy();
485487
req.socket._hadError = true;
486-
emitError(req, ret);
488+
req.emit('error', ret);
487489
} else if (parser.incoming && parser.incoming.upgrade) {
488490
// Upgrade (if status code 101) or CONNECT
489491
const bytesParsed = ret;
@@ -515,7 +517,9 @@ function socketOnData(d) {
515517
socket.readableFlowing = null;
516518

517519
req.emit(eventName, res, socket, bodyHead);
518-
emitClose(req);
520+
req.destroyed = true;
521+
req._closed = true;
522+
req.emit('close');
519523
} else {
520524
// Requested Upgrade or used CONNECT method, but have no handler.
521525
socket.destroy();
@@ -700,7 +704,8 @@ function requestOnPrefinish() {
700704
}
701705

702706
function emitFreeNT(req) {
703-
emitClose(req);
707+
req._closed = true;
708+
req.emit('close');
704709
if (req.socket) {
705710
req.socket.emit('free');
706711
}
@@ -781,10 +786,10 @@ function onSocketNT(req, socket, err) {
781786
err = connResetException('socket hang up');
782787
}
783788
if (err) {
784-
emitError(req, err);
789+
req.emit('error', err);
785790
}
786791
req._closed = true;
787-
emitClose(req);
792+
req.emit('close');
788793
}
789794

790795
if (socket) {
@@ -864,23 +869,6 @@ function setSocketTimeout(sock, msecs) {
864869
}
865870
}
866871

867-
function emitError(req, err) {
868-
req.destroyed = true;
869-
req._writableState.errored = err;
870-
// Avoid V8 leak, https://github.com/nodejs/node/pull/34103#issuecomment-652002364
871-
err.stack; // eslint-disable-line no-unused-expressions
872-
req._writableState.errorEmitted = true;
873-
req.emit('error', err);
874-
}
875-
876-
function emitClose(req) {
877-
req.destroyed = true;
878-
req._closed = true;
879-
req._writableState.closed = true;
880-
req._writableState.closeEmitted = true;
881-
req.emit('close');
882-
}
883-
884872
ClientRequest.prototype.setNoDelay = function setNoDelay(noDelay) {
885873
this._deferToConnect('setNoDelay', [noDelay]);
886874
};

0 commit comments

Comments
 (0)