http: added aborted property to request

PR-URL: https://github.com/nodejs/node/pull/20094
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Robert Nagy 2018-04-17 11:37:50 +02:00 коммит произвёл Myles Borins
Родитель 375994f940
Коммит 1385ffcccf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 933B01F40B5CA946
8 изменённых файлов: 89 добавлений и 2 удалений

Просмотреть файл

@ -1483,7 +1483,7 @@ following additional events, methods, and properties.
added: v0.3.8
-->
Emitted when the request has been aborted and the network socket has closed.
Emitted when the request has been aborted.
### Event: 'close'
<!-- YAML
@ -1493,6 +1493,16 @@ added: v0.4.2
Indicates that the underlying connection was closed.
Just like `'end'`, this event occurs only once per response.
### message.aborted
<!-- YAML
added: REPLACEME
-->
* {boolean}
The `message.aborted` property will be `true` if the request has
been aborted.
### message.destroy([error])
<!-- YAML
added: v0.3.0

Просмотреть файл

@ -2417,6 +2417,16 @@ added: v8.4.0
Indicates that the underlying [`Http2Stream`][] was closed.
Just like `'end'`, this event occurs only once per response.
#### request.aborted
<!-- YAML
added: REPLACEME
-->
* {boolean}
The `request.aborted` property will be `true` if the request has
been aborted.
#### request.destroy([error])
<!-- YAML
added: v8.4.0

Просмотреть файл

@ -279,6 +279,7 @@ ClientRequest.prototype.abort = function abort() {
if (!this.aborted) {
process.nextTick(emitAbortNT.bind(this));
}
// Mark as aborting so we can avoid sending queued request data
// This is used as a truthy flag elsewhere. The use of Date.now is for
// debugging purposes only.
@ -330,7 +331,10 @@ function socketCloseListener() {
var parser = socket.parser;
if (req.res && req.res.readable) {
// Socket closed before we emitted 'end' below.
if (!req.res.complete) req.res.emit('aborted');
if (!req.res.complete) {
req.res.aborted = true;
req.res.emit('aborted');
}
var res = req.res;
res.on('end', function() {
res.emit('close');

Просмотреть файл

@ -54,6 +54,8 @@ function IncomingMessage(socket) {
this.readable = true;
this.aborted = false;
this.upgrade = null;
// request (server) only

Просмотреть файл

@ -440,6 +440,7 @@ function socketOnClose(socket, state) {
function abortIncoming(incoming) {
while (incoming.length) {
var req = incoming.shift();
req.aborted = true;
req.emit('aborted');
req.emit('close');
}

Просмотреть файл

@ -31,6 +31,7 @@ const kTrailers = Symbol('trailers');
const kRawTrailers = Symbol('rawTrailers');
const kProxySocket = Symbol('proxySocket');
const kSetHeader = Symbol('setHeader');
const kAborted = Symbol('aborted');
const {
HTTP2_HEADER_AUTHORITY,
@ -137,6 +138,7 @@ function onStreamDrain() {
function onStreamAbortedRequest() {
const request = this[kRequest];
if (request !== undefined && request[kState].closed === false) {
request[kAborted] = true;
request.emit('aborted');
}
}
@ -233,6 +235,7 @@ class Http2ServerRequest extends Readable {
this[kTrailers] = {};
this[kRawTrailers] = [];
this[kStream] = stream;
this[kAborted] = false;
stream[kProxySocket] = null;
stream[kRequest] = this;
@ -248,6 +251,10 @@ class Http2ServerRequest extends Readable {
this.on('resume', onRequestResume);
}
get aborted() {
return this[kAborted];
}
get complete() {
return this._readableState.ended ||
this[kState].closed ||

Просмотреть файл

@ -0,0 +1,26 @@
'use strict';
const common = require('../common');
const http = require('http');
const assert = require('assert');
const server = http.createServer(common.mustCall(function(req, res) {
req.on('aborted', common.mustCall(function() {
assert.strictEqual(this.aborted, true);
server.close();
}));
assert.strictEqual(req.aborted, false);
res.write('hello');
}));
server.listen(0, common.mustCall(() => {
const req = http.get({
port: server.address().port,
headers: { connection: 'keep-alive' }
}, common.mustCall((res) => {
res.on('aborted', common.mustCall(() => {
assert.strictEqual(res.aborted, true);
}));
req.abort();
}));
}));

Просмотреть файл

@ -0,0 +1,27 @@
'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const h2 = require('http2');
const assert = require('assert');
const server = h2.createServer(common.mustCall(function(req, res) {
req.on('aborted', common.mustCall(function() {
assert.strictEqual(this.aborted, true);
}));
assert.strictEqual(req.aborted, false);
res.write('hello');
server.close();
}));
server.listen(0, common.mustCall(function() {
const url = `http://localhost:${server.address().port}`;
const client = h2.connect(url, common.mustCall(() => {
const request = client.request();
request.on('data', common.mustCall((chunk) => {
client.destroy();
}));
}));
}));