Skip to content

Commit ea86656

Browse files
committed
net: use _final instead of on('finish')
Shutting down the connection is what `_final` is there for. PR-URL: nodejs#18608 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
1 parent aec66c6 commit ea86656

File tree

4 files changed

+39
-17
lines changed

4 files changed

+39
-17
lines changed

lib/internal/streams/destroy.js

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ function undestroy() {
5555
this._writableState.destroyed = false;
5656
this._writableState.ended = false;
5757
this._writableState.ending = false;
58+
this._writableState.finalCalled = false;
59+
this._writableState.prefinished = false;
5860
this._writableState.finished = false;
5961
this._writableState.errorEmitted = false;
6062
}

lib/net.js

+16-12
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,6 @@ function Socket(options) {
236236
}
237237

238238
// shut down the socket when we're finished with it.
239-
this.on('finish', onSocketFinish);
240239
this.on('_socketEnd', onSocketEnd);
241240

242241
initSocketHandle(this);
@@ -280,39 +279,42 @@ Socket.prototype._unrefTimer = function _unrefTimer() {
280279

281280
function shutdownSocket(self, callback) {
282281
var req = new ShutdownWrap();
283-
req.oncomplete = callback;
282+
req.oncomplete = afterShutdown;
284283
req.handle = self._handle;
284+
req.callback = callback;
285285
return self._handle.shutdown(req);
286286
}
287287

288288
// the user has called .end(), and all the bytes have been
289289
// sent out to the other side.
290-
function onSocketFinish() {
291-
// If still connecting - defer handling 'finish' until 'connect' will happen
290+
Socket.prototype._final = function(cb) {
291+
// If still connecting - defer handling `_final` until 'connect' will happen
292292
if (this.connecting) {
293-
debug('osF: not yet connected');
294-
return this.once('connect', onSocketFinish);
293+
debug('_final: not yet connected');
294+
return this.once('connect', () => this._final(cb));
295295
}
296296

297-
debug('onSocketFinish');
298297
if (!this.readable || this._readableState.ended) {
299-
debug('oSF: ended, destroy', this._readableState);
298+
debug('_final: ended, destroy', this._readableState);
299+
cb();
300300
return this.destroy();
301301
}
302302

303-
debug('oSF: not ended, call shutdown()');
303+
debug('_final: not ended, call shutdown()');
304304

305305
// otherwise, just shutdown, or destroy() if not possible
306-
if (!this._handle || !this._handle.shutdown)
306+
if (!this._handle || !this._handle.shutdown) {
307+
cb();
307308
return this.destroy();
309+
}
308310

309311
var err = defaultTriggerAsyncIdScope(
310-
this[async_id_symbol], shutdownSocket, this, afterShutdown
312+
this[async_id_symbol], shutdownSocket, this, cb
311313
);
312314

313315
if (err)
314316
return this.destroy(errnoException(err, 'shutdown'));
315-
}
317+
};
316318

317319

318320
function afterShutdown(status, handle, req) {
@@ -321,6 +323,8 @@ function afterShutdown(status, handle, req) {
321323
debug('afterShutdown destroyed=%j', self.destroyed,
322324
self._readableState);
323325

326+
this.callback();
327+
324328
// callback may come after call to destroy.
325329
if (self.destroyed)
326330
return;

test/async-hooks/test-shutdownwrap.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ let endedConnection = false;
2424
function onconnection(c) {
2525
assert.strictEqual(hooks.activitiesOfTypes('SHUTDOWNWRAP').length, 0);
2626
c.end();
27-
endedConnection = true;
28-
const as = hooks.activitiesOfTypes('SHUTDOWNWRAP');
29-
assert.strictEqual(as.length, 1);
30-
checkInvocations(as[0], { init: 1 }, 'after ending client connection');
31-
this.close(onserverClosed);
27+
process.nextTick(() => {
28+
endedConnection = true;
29+
const as = hooks.activitiesOfTypes('SHUTDOWNWRAP');
30+
assert.strictEqual(as.length, 1);
31+
checkInvocations(as[0], { init: 1 }, 'after ending client connection');
32+
this.close(onserverClosed);
33+
});
3234
}
3335

3436
function onconnected() {

test/parallel/test-stream-writable-destroy.js

+14
Original file line numberDiff line numberDiff line change
@@ -185,3 +185,17 @@ const { inherits } = require('util');
185185
assert.strictEqual(expected, err);
186186
}));
187187
}
188+
189+
{
190+
// Checks that `._undestroy()` restores the state so that `final` will be
191+
// called again.
192+
const write = new Writable({
193+
write: common.mustNotCall(),
194+
final: common.mustCall((cb) => cb(), 2)
195+
});
196+
197+
write.end();
198+
write.destroy();
199+
write._undestroy();
200+
write.end();
201+
}

0 commit comments

Comments
 (0)