Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 6dd6db3

Browse files
committed
feat(connection-spy): add class for monitoring active connections
This gives us more control over the process of monitoring active and removed connections in a given topology. This also allows for an event-driven approach to cleanup, whereas in the past we have depended upon timeouts. NODE-1132
1 parent ab3b70b commit 6dd6db3

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

test/tests/functional/shared.js

+33
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
'use strict';
2+
const EventEmitter = require('events');
23

34
function executeCommand(configuration, db, cmd, options, cb) {
45
var Pool = require('../../../lib/connection/pool'),
@@ -104,6 +105,38 @@ const delay = function(timeout) {
104105
});
105106
};
106107

108+
class ConnectionSpy extends EventEmitter {
109+
constructor() {
110+
super();
111+
this.connections = {};
112+
}
113+
114+
addConnection(id, connection) {
115+
// console.log(`=== added connection ${id} :: ${connection.port}`);
116+
117+
this.connections[id] = connection;
118+
this.emit('connectionAdded');
119+
}
120+
121+
deleteConnection(id) {
122+
// console.log(
123+
// `=== deleted connection ${id} :: ${this.connections[id] ? this.connections[id].port : ''}`
124+
// );
125+
126+
delete this.connections[id];
127+
this.emit('connectionRemoved');
128+
129+
if (this.connectionCount() === 0) {
130+
this.emit('drained');
131+
}
132+
}
133+
134+
connectionCount() {
135+
return Object.keys(this.connections).length;
136+
}
137+
}
138+
107139
module.exports.executeCommand = executeCommand;
108140
module.exports.locateAuthMethod = locateAuthMethod;
109141
module.exports.delay = delay;
142+
module.exports.ConnectionSpy = ConnectionSpy;

0 commit comments

Comments
 (0)