From 5d2a0059a0ef156e40d8d87cabe0535a8e706337 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Sun, 1 Apr 2018 20:56:11 +0200 Subject: [PATCH] net,http2: merge write error handling & property names Merge error handling for `net.Socket`s and `Http2Stream`s, and align the callback property names as `callback`. Refs: https://github.com/nodejs/node/issues/19060 --- lib/internal/http2/core.js | 2 -- lib/internal/stream_base_commons.js | 15 ++++++++++++--- lib/net.js | 24 +++++++----------------- 3 files changed, 19 insertions(+), 22 deletions(-) diff --git a/lib/internal/http2/core.js b/lib/internal/http2/core.js index 8005d7941a6df3..768a2c21c5dc0e 100644 --- a/lib/internal/http2/core.js +++ b/lib/internal/http2/core.js @@ -1657,7 +1657,6 @@ class Http2Stream extends Duplex { const req = createWriteWrap(this[kHandle], afterDoStreamWrite); req.stream = this[kID]; - req.callback = cb; writeGeneric(this, req, data, encoding, cb); @@ -1690,7 +1689,6 @@ class Http2Stream extends Duplex { var req = createWriteWrap(this[kHandle], afterDoStreamWrite); req.stream = this[kID]; - req.callback = cb; writevGeneric(this, req, data, cb); diff --git a/lib/internal/stream_base_commons.js b/lib/internal/stream_base_commons.js index d902a501524791..b252b1d8ff7670 100644 --- a/lib/internal/stream_base_commons.js +++ b/lib/internal/stream_base_commons.js @@ -61,15 +61,24 @@ function writevGeneric(self, req, data, cb) { // Retain chunks if (err === 0) req._chunks = chunks; - if (err) - return self.destroy(errnoException(err, 'write', req.error), cb); + afterWriteDispatched(self, req, err, cb); } function writeGeneric(self, req, data, encoding, cb) { var err = handleWriteReq(req, data, encoding); - if (err) + afterWriteDispatched(self, req, err, cb); +} + +function afterWriteDispatched(self, req, err, cb) { + if (err !== 0) return self.destroy(errnoException(err, 'write', req.error), cb); + + if (!req.async) { + cb(); + } else { + req.callback = cb; + } } module.exports = { diff --git a/lib/net.js b/lib/net.js index 5b460befa49374..2374d66a75c2a6 100644 --- a/lib/net.js +++ b/lib/net.js @@ -758,23 +758,13 @@ Socket.prototype._writeGeneric = function(writev, data, encoding, cb) { return false; } - var ret; var req = createWriteWrap(this._handle, afterWrite); if (writev) - ret = writevGeneric(this, req, data, cb); + writevGeneric(this, req, data, cb); else - ret = writeGeneric(this, req, data, encoding, cb); - - // Bail out if handle.write* returned an error - if (ret) return ret; - - if (!req.async) { - cb(); - return; - } - - req.cb = cb; - this[kLastWriteQueueSize] = req.bytes; + writeGeneric(this, req, data, encoding, cb); + if (req.async) + this[kLastWriteQueueSize] = req.bytes; }; @@ -849,7 +839,7 @@ function afterWrite(status, handle, err) { if (status < 0) { var ex = errnoException(status, 'write', this.error); debug('write failure', ex); - self.destroy(ex, this.cb); + self.destroy(ex, this.callback); return; } @@ -858,8 +848,8 @@ function afterWrite(status, handle, err) { if (self !== process.stderr && self !== process.stdout) debug('afterWrite call cb'); - if (this.cb) - this.cb.call(undefined); + if (this.callback) + this.callback.call(undefined); }