| 'use strict'; |
|
|
| const OriginalAgent = require('http').Agent; |
| const ms = require('humanize-ms'); |
| const debug = require('util').debuglog('agentkeepalive'); |
| const { |
| INIT_SOCKET, |
| CURRENT_ID, |
| CREATE_ID, |
| SOCKET_CREATED_TIME, |
| SOCKET_NAME, |
| SOCKET_REQUEST_COUNT, |
| SOCKET_REQUEST_FINISHED_COUNT, |
| } = require('./constants'); |
|
|
| |
| |
| |
|
|
| |
| let defaultTimeoutListenerCount = 1; |
| const majorVersion = parseInt(process.version.split('.', 1)[0].substring(1)); |
| if (majorVersion >= 11 && majorVersion <= 12) { |
| defaultTimeoutListenerCount = 2; |
| } else if (majorVersion >= 13) { |
| defaultTimeoutListenerCount = 3; |
| } |
|
|
| function deprecate(message) { |
| console.log('[agentkeepalive:deprecated] %s', message); |
| } |
|
|
| class Agent extends OriginalAgent { |
| constructor(options) { |
| options = options || {}; |
| options.keepAlive = options.keepAlive !== false; |
| |
| |
| if (options.freeSocketTimeout === undefined) { |
| options.freeSocketTimeout = 4000; |
| } |
| |
| if (options.keepAliveTimeout) { |
| deprecate('options.keepAliveTimeout is deprecated, please use options.freeSocketTimeout instead'); |
| options.freeSocketTimeout = options.keepAliveTimeout; |
| delete options.keepAliveTimeout; |
| } |
| |
| if (options.freeSocketKeepAliveTimeout) { |
| deprecate('options.freeSocketKeepAliveTimeout is deprecated, please use options.freeSocketTimeout instead'); |
| options.freeSocketTimeout = options.freeSocketKeepAliveTimeout; |
| delete options.freeSocketKeepAliveTimeout; |
| } |
|
|
| |
| |
| if (options.timeout === undefined) { |
| |
| options.timeout = Math.max(options.freeSocketTimeout * 2, 8000); |
| } |
|
|
| |
| options.timeout = ms(options.timeout); |
| options.freeSocketTimeout = ms(options.freeSocketTimeout); |
| options.socketActiveTTL = options.socketActiveTTL ? ms(options.socketActiveTTL) : 0; |
|
|
| super(options); |
|
|
| this[CURRENT_ID] = 0; |
|
|
| |
| this.createSocketCount = 0; |
| this.createSocketCountLastCheck = 0; |
|
|
| this.createSocketErrorCount = 0; |
| this.createSocketErrorCountLastCheck = 0; |
|
|
| this.closeSocketCount = 0; |
| this.closeSocketCountLastCheck = 0; |
|
|
| |
| this.errorSocketCount = 0; |
| this.errorSocketCountLastCheck = 0; |
|
|
| |
| this.requestCount = 0; |
| this.requestCountLastCheck = 0; |
|
|
| |
| this.timeoutSocketCount = 0; |
| this.timeoutSocketCountLastCheck = 0; |
|
|
| this.on('free', socket => { |
| |
| |
| |
| const timeout = this.calcSocketTimeout(socket); |
| if (timeout > 0 && socket.timeout !== timeout) { |
| socket.setTimeout(timeout); |
| } |
| }); |
| } |
|
|
| get freeSocketKeepAliveTimeout() { |
| deprecate('agent.freeSocketKeepAliveTimeout is deprecated, please use agent.options.freeSocketTimeout instead'); |
| return this.options.freeSocketTimeout; |
| } |
|
|
| get timeout() { |
| deprecate('agent.timeout is deprecated, please use agent.options.timeout instead'); |
| return this.options.timeout; |
| } |
|
|
| get socketActiveTTL() { |
| deprecate('agent.socketActiveTTL is deprecated, please use agent.options.socketActiveTTL instead'); |
| return this.options.socketActiveTTL; |
| } |
|
|
| calcSocketTimeout(socket) { |
| |
| |
| |
| |
| |
| let freeSocketTimeout = this.options.freeSocketTimeout; |
| const socketActiveTTL = this.options.socketActiveTTL; |
| if (socketActiveTTL) { |
| |
| const aliveTime = Date.now() - socket[SOCKET_CREATED_TIME]; |
| const diff = socketActiveTTL - aliveTime; |
| if (diff <= 0) { |
| return diff; |
| } |
| if (freeSocketTimeout && diff < freeSocketTimeout) { |
| freeSocketTimeout = diff; |
| } |
| } |
| |
| if (freeSocketTimeout) { |
| |
| |
| |
| const customFreeSocketTimeout = socket.freeSocketTimeout || socket.freeSocketKeepAliveTimeout; |
| return customFreeSocketTimeout || freeSocketTimeout; |
| } |
| } |
|
|
| keepSocketAlive(socket) { |
| const result = super.keepSocketAlive(socket); |
| |
| if (!result) return result; |
|
|
| const customTimeout = this.calcSocketTimeout(socket); |
| if (typeof customTimeout === 'undefined') { |
| return true; |
| } |
| if (customTimeout <= 0) { |
| debug('%s(requests: %s, finished: %s) free but need to destroy by TTL, request count %s, diff is %s', |
| socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], customTimeout); |
| return false; |
| } |
| if (socket.timeout !== customTimeout) { |
| socket.setTimeout(customTimeout); |
| } |
| return true; |
| } |
|
|
| |
| reuseSocket(...args) { |
| |
| super.reuseSocket(...args); |
| const socket = args[0]; |
| const req = args[1]; |
| req.reusedSocket = true; |
| const agentTimeout = this.options.timeout; |
| if (getSocketTimeout(socket) !== agentTimeout) { |
| |
| socket.setTimeout(agentTimeout); |
| debug('%s reset timeout to %sms', socket[SOCKET_NAME], agentTimeout); |
| } |
| socket[SOCKET_REQUEST_COUNT]++; |
| debug('%s(requests: %s, finished: %s) reuse on addRequest, timeout %sms', |
| socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], |
| getSocketTimeout(socket)); |
| } |
|
|
| [CREATE_ID]() { |
| const id = this[CURRENT_ID]++; |
| if (this[CURRENT_ID] === Number.MAX_SAFE_INTEGER) this[CURRENT_ID] = 0; |
| return id; |
| } |
|
|
| [INIT_SOCKET](socket, options) { |
| |
| |
| |
| if (options.timeout) { |
| const timeout = getSocketTimeout(socket); |
| if (!timeout) { |
| socket.setTimeout(options.timeout); |
| } |
| } |
|
|
| if (this.options.keepAlive) { |
| |
| |
| socket.setNoDelay(true); |
| } |
| this.createSocketCount++; |
| if (this.options.socketActiveTTL) { |
| socket[SOCKET_CREATED_TIME] = Date.now(); |
| } |
| |
| socket[SOCKET_NAME] = `sock[${this[CREATE_ID]()}#${options._agentKey}]`.split('-----BEGIN', 1)[0]; |
| socket[SOCKET_REQUEST_COUNT] = 1; |
| socket[SOCKET_REQUEST_FINISHED_COUNT] = 0; |
| installListeners(this, socket, options); |
| } |
|
|
| createConnection(options, oncreate) { |
| let called = false; |
| const onNewCreate = (err, socket) => { |
| if (called) return; |
| called = true; |
|
|
| if (err) { |
| this.createSocketErrorCount++; |
| return oncreate(err); |
| } |
| this[INIT_SOCKET](socket, options); |
| oncreate(err, socket); |
| }; |
|
|
| const newSocket = super.createConnection(options, onNewCreate); |
| if (newSocket) onNewCreate(null, newSocket); |
| return newSocket; |
| } |
|
|
| get statusChanged() { |
| const changed = this.createSocketCount !== this.createSocketCountLastCheck || |
| this.createSocketErrorCount !== this.createSocketErrorCountLastCheck || |
| this.closeSocketCount !== this.closeSocketCountLastCheck || |
| this.errorSocketCount !== this.errorSocketCountLastCheck || |
| this.timeoutSocketCount !== this.timeoutSocketCountLastCheck || |
| this.requestCount !== this.requestCountLastCheck; |
| if (changed) { |
| this.createSocketCountLastCheck = this.createSocketCount; |
| this.createSocketErrorCountLastCheck = this.createSocketErrorCount; |
| this.closeSocketCountLastCheck = this.closeSocketCount; |
| this.errorSocketCountLastCheck = this.errorSocketCount; |
| this.timeoutSocketCountLastCheck = this.timeoutSocketCount; |
| this.requestCountLastCheck = this.requestCount; |
| } |
| return changed; |
| } |
|
|
| getCurrentStatus() { |
| return { |
| createSocketCount: this.createSocketCount, |
| createSocketErrorCount: this.createSocketErrorCount, |
| closeSocketCount: this.closeSocketCount, |
| errorSocketCount: this.errorSocketCount, |
| timeoutSocketCount: this.timeoutSocketCount, |
| requestCount: this.requestCount, |
| freeSockets: inspect(this.freeSockets), |
| sockets: inspect(this.sockets), |
| requests: inspect(this.requests), |
| }; |
| } |
| } |
|
|
| |
| |
| function getSocketTimeout(socket) { |
| return socket.timeout || socket._idleTimeout; |
| } |
|
|
| function installListeners(agent, socket, options) { |
| debug('%s create, timeout %sms', socket[SOCKET_NAME], getSocketTimeout(socket)); |
|
|
| |
| function onFree() { |
| |
| |
| |
| if (!socket._httpMessage && socket[SOCKET_REQUEST_COUNT] === 1) return; |
|
|
| socket[SOCKET_REQUEST_FINISHED_COUNT]++; |
| agent.requestCount++; |
| debug('%s(requests: %s, finished: %s) free', |
| socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT]); |
|
|
| |
| const name = agent.getName(options); |
| if (socket.writable && agent.requests[name] && agent.requests[name].length) { |
| |
| socket[SOCKET_REQUEST_COUNT]++; |
| debug('%s(requests: %s, finished: %s) will be reuse on agent free event', |
| socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT]); |
| } |
| } |
| socket.on('free', onFree); |
|
|
| function onClose(isError) { |
| debug('%s(requests: %s, finished: %s) close, isError: %s', |
| socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], isError); |
| agent.closeSocketCount++; |
| } |
| socket.on('close', onClose); |
|
|
| |
| function onTimeout() { |
| |
| |
| const listenerCount = socket.listeners('timeout').length; |
| |
| |
| |
| |
| |
| const timeout = getSocketTimeout(socket); |
| const req = socket._httpMessage; |
| const reqTimeoutListenerCount = req && req.listeners('timeout').length || 0; |
| debug('%s(requests: %s, finished: %s) timeout after %sms, listeners %s, defaultTimeoutListenerCount %s, hasHttpRequest %s, HttpRequest timeoutListenerCount %s', |
| socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], |
| timeout, listenerCount, defaultTimeoutListenerCount, !!req, reqTimeoutListenerCount); |
| if (debug.enabled) { |
| debug('timeout listeners: %s', socket.listeners('timeout').map(f => f.name).join(', ')); |
| } |
| agent.timeoutSocketCount++; |
| const name = agent.getName(options); |
| if (agent.freeSockets[name] && agent.freeSockets[name].indexOf(socket) !== -1) { |
| |
| socket.destroy(); |
| |
| |
| agent.removeSocket(socket, options); |
| debug('%s is free, destroy quietly', socket[SOCKET_NAME]); |
| } else { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| if (reqTimeoutListenerCount === 0) { |
| const error = new Error('Socket timeout'); |
| error.code = 'ERR_SOCKET_TIMEOUT'; |
| error.timeout = timeout; |
| |
| |
| socket.destroy(error); |
| agent.removeSocket(socket, options); |
| debug('%s destroy with timeout error', socket[SOCKET_NAME]); |
| } |
| } |
| } |
| socket.on('timeout', onTimeout); |
|
|
| function onError(err) { |
| const listenerCount = socket.listeners('error').length; |
| debug('%s(requests: %s, finished: %s) error: %s, listenerCount: %s', |
| socket[SOCKET_NAME], socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT], |
| err, listenerCount); |
| agent.errorSocketCount++; |
| if (listenerCount === 1) { |
| |
| debug('%s emit uncaught error event', socket[SOCKET_NAME]); |
| socket.removeListener('error', onError); |
| socket.emit('error', err); |
| } |
| } |
| socket.on('error', onError); |
|
|
| function onRemove() { |
| debug('%s(requests: %s, finished: %s) agentRemove', |
| socket[SOCKET_NAME], |
| socket[SOCKET_REQUEST_COUNT], socket[SOCKET_REQUEST_FINISHED_COUNT]); |
| |
| |
| |
| socket.removeListener('close', onClose); |
| socket.removeListener('error', onError); |
| socket.removeListener('free', onFree); |
| socket.removeListener('timeout', onTimeout); |
| socket.removeListener('agentRemove', onRemove); |
| } |
| socket.on('agentRemove', onRemove); |
| } |
|
|
| module.exports = Agent; |
|
|
| function inspect(obj) { |
| const res = {}; |
| for (const key in obj) { |
| res[key] = obj[key].length; |
| } |
| return res; |
| } |
|
|