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

Commit a02d5bb

Browse files
committed
refactor(wire-protocol): flatten wire protocol handler hierarchy
See the ticket for more details, but this generally removes the class-based module design for wire protocol handling, removing needless allocations, and focusing more on the meat of the methods hung off those classes. NODE-1835
1 parent 31922d6 commit a02d5bb

14 files changed

+641
-758
lines changed

lib/cursor.js

+5-12
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const MongoNetworkError = require('./error').MongoNetworkError;
77
const mongoErrorContextSymbol = require('./error').mongoErrorContextSymbol;
88
const f = require('util').format;
99
const collationNotSupported = require('./utils').collationNotSupported;
10-
10+
const wireProtocol = require('./wireprotocol');
1111
const BSON = retrieveBSON();
1212
const Long = BSON.Long;
1313

@@ -223,14 +223,7 @@ Cursor.prototype._getmore = function(callback) {
223223
batchSize = this.cursorState.limit - this.cursorState.currentLimit;
224224
}
225225

226-
this.server.wireProtocolHandler.getMore(
227-
this.server,
228-
this.ns,
229-
this.cursorState,
230-
batchSize,
231-
this.options,
232-
callback
233-
);
226+
wireProtocol.getMore(this.server, this.ns, this.cursorState, batchSize, this.options, callback);
234227
};
235228

236229
/**
@@ -339,7 +332,7 @@ Cursor.prototype.kill = function(callback) {
339332
return;
340333
}
341334

342-
this.server.wireProtocolHandler.killCursor(this.server, this.ns, this.cursorState, callback);
335+
wireProtocol.killCursors(this.server, this.ns, this.cursorState, callback);
343336
};
344337

345338
/**
@@ -732,7 +725,7 @@ function initializeCursor(cursor, callback) {
732725
}
733726

734727
if (cursor.cmd.find != null) {
735-
cursor.server.wireProtocolHandler.query(
728+
wireProtocol.query(
736729
cursor.server,
737730
cursor.ns,
738731
cursor.cmd,
@@ -744,7 +737,7 @@ function initializeCursor(cursor, callback) {
744737
return;
745738
}
746739

747-
cursor.query = cursor.server.wireProtocolHandler.command(
740+
cursor.query = wireProtocol.command(
748741
cursor.server,
749742
cursor.ns,
750743
cursor.cmd,

lib/sdam/server.js

+3-37
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ const MongoError = require('../error').MongoError;
44
const Pool = require('../connection/pool');
55
const relayEvents = require('../utils').relayEvents;
66
const calculateDurationInMs = require('../utils').calculateDurationInMs;
7-
const TwoSixWireProtocolSupport = require('../wireprotocol/2_6_support');
8-
const ThreeTwoWireProtocolSupport = require('../wireprotocol/3_2_support');
7+
const wireProtocol = require('../wireprotocol');
98
const BSON = require('../connection/utils').retrieveBSON();
109
const createClientInfo = require('../topologies/shared').createClientInfo;
1110
const Logger = require('../connection/logger');
@@ -155,27 +154,7 @@ class Server extends EventEmitter {
155154
return;
156155
}
157156

158-
// Create the query object
159-
const query = this.s.wireProtocolHandler.command(this, ns, cmd, {}, options);
160-
// Set slave OK of the query
161-
query.slaveOk = options.readPreference ? options.readPreference.slaveOk() : false;
162-
163-
// write options
164-
const writeOptions = {
165-
raw: typeof options.raw === 'boolean' ? options.raw : false,
166-
promoteLongs: typeof options.promoteLongs === 'boolean' ? options.promoteLongs : true,
167-
promoteValues: typeof options.promoteValues === 'boolean' ? options.promoteValues : true,
168-
promoteBuffers: typeof options.promoteBuffers === 'boolean' ? options.promoteBuffers : false,
169-
command: true,
170-
monitoring: typeof options.monitoring === 'boolean' ? options.monitoring : false,
171-
fullResult: typeof options.fullResult === 'boolean' ? options.fullResult : false,
172-
requestId: query.requestId,
173-
socketTimeout: typeof options.socketTimeout === 'number' ? options.socketTimeout : null,
174-
session: options.session || null
175-
};
176-
177-
// write the operation to the pool
178-
this.s.pool.write(query, writeOptions, callback);
157+
wireProtocol.command(this, ns, cmd, options, callback);
179158
}
180159

181160
/**
@@ -273,7 +252,7 @@ function executeWriteOperation(args, options, callback) {
273252
}
274253

275254
// Execute write
276-
return server.s.wireProtocolHandler[op](server.s.pool, ns, server.s.bson, ops, options, callback);
255+
return wireProtocol[op](server, ns, ops, options, callback);
277256
}
278257

279258
function saslSupportedMechs(options) {
@@ -321,16 +300,6 @@ function executeServerHandshake(server, callback) {
321300
);
322301
}
323302

324-
function configureWireProtocolHandler(ismaster) {
325-
// 3.2 wire protocol handler
326-
if (ismaster.maxWireVersion >= 4) {
327-
return new ThreeTwoWireProtocolSupport();
328-
}
329-
330-
// default to 2.6 wire protocol handler
331-
return new TwoSixWireProtocolSupport();
332-
}
333-
334303
function connectEventHandler(server) {
335304
return function() {
336305
// log information of received information if in info mode
@@ -370,9 +339,6 @@ function connectEventHandler(server) {
370339
}
371340
}
372341

373-
// configure the wire protocol handler
374-
server.s.wireProtocolHandler = configureWireProtocolHandler(isMaster);
375-
376342
// log the connection event if requested
377343
if (server.s.logger.isInfo()) {
378344
server.s.logger.info(

lib/topologies/server.js

+6-21
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ var inherits = require('util').inherits,
1010
Pool = require('../connection/pool'),
1111
MongoError = require('../error').MongoError,
1212
MongoNetworkError = require('../error').MongoNetworkError,
13-
TwoSixWireProtocolSupport = require('../wireprotocol/2_6_support'),
14-
ThreeTwoWireProtocolSupport = require('../wireprotocol/3_2_support'),
13+
wireProtocol = require('../wireprotocol'),
1514
BasicCursor = require('../cursor'),
1615
sdam = require('./shared'),
1716
createClientInfo = require('./shared').createClientInfo,
@@ -224,9 +223,6 @@ var Server = function(options) {
224223
this.monitoringProcessId = null;
225224
// Initial connection
226225
this.initialConnect = true;
227-
// Wire protocol handler, default to oldest known protocol handler
228-
// this gets changed when the first ismaster is called.
229-
this.wireProtocolHandler = new TwoSixWireProtocolSupport();
230226
// Default type
231227
this._type = 'server';
232228
// Set the client info
@@ -306,16 +302,6 @@ function isSupportedServer(response) {
306302
return response && typeof response.maxWireVersion === 'number' && response.maxWireVersion >= 2;
307303
}
308304

309-
function configureWireProtocolHandler(self, ismaster) {
310-
// 3.2 wire protocol handler
311-
if (ismaster.maxWireVersion >= 4) {
312-
return new ThreeTwoWireProtocolSupport();
313-
}
314-
315-
// default to 2.6 wire protocol handler
316-
return new TwoSixWireProtocolSupport();
317-
}
318-
319305
function disconnectHandler(self, type, ns, cmd, options, callback) {
320306
// Topology is not connected, save the call in the provided store to be
321307
// Executed at some point when the handler deems it's reconnected
@@ -451,8 +437,7 @@ var eventHandler = function(self, event) {
451437
if (self.ismaster.msg === 'isdbgrid') {
452438
self._type = 'mongos';
453439
}
454-
// Add the correct wire protocol handler
455-
self.wireProtocolHandler = configureWireProtocolHandler(self, self.ismaster);
440+
456441
// Have we defined self monitoring
457442
if (self.s.monitoring) {
458443
self.monitoringProcessId = setTimeout(
@@ -744,7 +729,7 @@ Server.prototype.command = function(ns, cmd, options, callback) {
744729
return callback(new MongoError(`server ${this.name} does not support collation`));
745730
}
746731

747-
self.wireProtocolHandler.command(self, ns, cmd, options, callback);
732+
wireProtocol.command(self, ns, cmd, options, callback);
748733
};
749734

750735
/**
@@ -775,7 +760,7 @@ Server.prototype.insert = function(ns, ops, options, callback) {
775760
ops = Array.isArray(ops) ? ops : [ops];
776761

777762
// Execute write
778-
return self.wireProtocolHandler.insert(self, ns, ops, options, callback);
763+
return wireProtocol.insert(self, ns, ops, options, callback);
779764
};
780765

781766
/**
@@ -810,7 +795,7 @@ Server.prototype.update = function(ns, ops, options, callback) {
810795
// Setup the docs as an array
811796
ops = Array.isArray(ops) ? ops : [ops];
812797
// Execute write
813-
return self.wireProtocolHandler.update(self, ns, ops, options, callback);
798+
return wireProtocol.update(self, ns, ops, options, callback);
814799
};
815800

816801
/**
@@ -845,7 +830,7 @@ Server.prototype.remove = function(ns, ops, options, callback) {
845830
// Setup the docs as an array
846831
ops = Array.isArray(ops) ? ops : [ops];
847832
// Execute write
848-
return self.wireProtocolHandler.remove(self, ns, ops, options, callback);
833+
return wireProtocol.remove(self, ns, ops, options, callback);
849834
};
850835

851836
/**

lib/utils.js

+22-2
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,25 @@ function retrieveEJSON() {
7575
return EJSON;
7676
}
7777

78+
/**
79+
* A helper function for determining `maxWireVersion` between legacy and new topology
80+
* instances
81+
*
82+
* @private
83+
* @param {(Topology|Server)} topologyOrServer
84+
*/
85+
function maxWireVersion(topologyOrServer) {
86+
if (topologyOrServer.ismaster) {
87+
return topologyOrServer.ismaster.maxWireVersion;
88+
}
89+
90+
if (topologyOrServer.description) {
91+
return topologyOrServer.description.maxWireVersion;
92+
}
93+
94+
return null;
95+
}
96+
7897
/*
7998
* Checks that collation is supported by server.
8099
*
@@ -84,7 +103,7 @@ function retrieveEJSON() {
84103
* @return true if server does not support collation
85104
*/
86105
function collationNotSupported(server, cmd) {
87-
return cmd && cmd.collation && server.ismaster && server.ismaster.maxWireVersion < 5;
106+
return cmd && cmd.collation && maxWireVersion(server) < 5;
88107
}
89108

90109
module.exports = {
@@ -93,5 +112,6 @@ module.exports = {
93112
relayEvents,
94113
collationNotSupported,
95114
retrieveEJSON,
96-
retrieveKerberos
115+
retrieveKerberos,
116+
maxWireVersion
97117
};

0 commit comments

Comments
 (0)