123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- 'use strict';
- const EventEmitter = require('events');
- const MongoError = require('../error').MongoError;
- const Pool = require('../connection/pool');
- const relayEvents = require('../utils').relayEvents;
- const wireProtocol = require('../wireprotocol');
- const BSON = require('../connection/utils').retrieveBSON();
- const createClientInfo = require('../topologies/shared').createClientInfo;
- const Logger = require('../connection/logger');
- const ServerDescription = require('./server_description').ServerDescription;
- const ReadPreference = require('../topologies/read_preference');
- const monitorServer = require('./monitoring').monitorServer;
- const MongoParseError = require('../error').MongoParseError;
- const MongoNetworkError = require('../error').MongoNetworkError;
- const collationNotSupported = require('../utils').collationNotSupported;
- const debugOptions = require('../connection/utils').debugOptions;
- // Used for filtering out fields for logging
- const DEBUG_FIELDS = [
- 'reconnect',
- 'reconnectTries',
- 'reconnectInterval',
- 'emitError',
- 'cursorFactory',
- 'host',
- 'port',
- 'size',
- 'keepAlive',
- 'keepAliveInitialDelay',
- 'noDelay',
- 'connectionTimeout',
- 'checkServerIdentity',
- 'socketTimeout',
- 'ssl',
- 'ca',
- 'crl',
- 'cert',
- 'key',
- 'rejectUnauthorized',
- 'promoteLongs',
- 'promoteValues',
- 'promoteBuffers',
- 'servername'
- ];
- const STATE_DISCONNECTED = 0;
- const STATE_CONNECTING = 1;
- const STATE_CONNECTED = 2;
- /**
- *
- * @fires Server#serverHeartbeatStarted
- * @fires Server#serverHeartbeatSucceeded
- * @fires Server#serverHeartbeatFailed
- */
- class Server extends EventEmitter {
- /**
- * Create a server
- *
- * @param {ServerDescription} description
- * @param {Object} options
- */
- constructor(description, options, topology) {
- super();
- this.s = {
- // the server description
- description,
- // a saved copy of the incoming options
- options,
- // the server logger
- logger: Logger('Server', options),
- // the bson parser
- bson: options.bson || new BSON(),
- // client metadata for the initial handshake
- clientInfo: createClientInfo(options),
- // state variable to determine if there is an active server check in progress
- monitoring: false,
- // the implementation of the monitoring method
- monitorFunction: options.monitorFunction || monitorServer,
- // the connection pool
- pool: null,
- // the server state
- state: STATE_DISCONNECTED,
- credentials: options.credentials,
- topology
- };
- }
- get description() {
- return this.s.description;
- }
- get name() {
- return this.s.description.address;
- }
- /**
- * Initiate server connect
- */
- connect(options) {
- options = options || {};
- // do not allow connect to be called on anything that's not disconnected
- if (this.s.pool && !this.s.pool.isDisconnected() && !this.s.pool.isDestroyed()) {
- throw new MongoError(`Server instance in invalid state ${this.s.pool.state}`);
- }
- // create a pool
- const addressParts = this.description.address.split(':');
- const poolOptions = Object.assign(
- { host: addressParts[0], port: parseInt(addressParts[1], 10) },
- this.s.options,
- options,
- { bson: this.s.bson }
- );
- // NOTE: this should only be the case if we are connecting to a single server
- poolOptions.reconnect = true;
- this.s.pool = new Pool(this, poolOptions);
- // setup listeners
- this.s.pool.on('connect', connectEventHandler(this));
- this.s.pool.on('close', errorEventHandler(this));
- this.s.pool.on('error', errorEventHandler(this));
- this.s.pool.on('parseError', parseErrorEventHandler(this));
- // it is unclear whether consumers should even know about these events
- // this.s.pool.on('timeout', timeoutEventHandler(this));
- // this.s.pool.on('reconnect', reconnectEventHandler(this));
- // this.s.pool.on('reconnectFailed', errorEventHandler(this));
- // relay all command monitoring events
- relayEvents(this.s.pool, this, ['commandStarted', 'commandSucceeded', 'commandFailed']);
- this.s.state = STATE_CONNECTING;
- // If auth settings have been provided, use them
- if (options.auth) {
- this.s.pool.connect.apply(this.s.pool, options.auth);
- return;
- }
- this.s.pool.connect();
- }
- /**
- * Destroy the server connection
- *
- * @param {Boolean} [options.force=false] Force destroy the pool
- */
- destroy(options, callback) {
- if (typeof options === 'function') (callback = options), (options = {});
- options = Object.assign({}, { force: false }, options);
- if (!this.s.pool) {
- this.s.state = STATE_DISCONNECTED;
- if (typeof callback === 'function') {
- callback(null, null);
- }
- return;
- }
- ['close', 'error', 'timeout', 'parseError', 'connect'].forEach(event => {
- this.s.pool.removeAllListeners(event);
- });
- if (this.s.monitorId) {
- clearTimeout(this.s.monitorId);
- }
- this.s.pool.destroy(options.force, err => {
- this.s.state = STATE_DISCONNECTED;
- callback(err);
- });
- }
- /**
- * Immediately schedule monitoring of this server. If there already an attempt being made
- * this will be a no-op.
- */
- monitor(options) {
- options = options || {};
- if (this.s.state !== STATE_CONNECTED || this.s.monitoring) return;
- if (this.s.monitorId) clearTimeout(this.s.monitorId);
- this.s.monitorFunction(this, options);
- }
- /**
- * Execute a command
- *
- * @param {string} ns The MongoDB fully qualified namespace (ex: db1.collection1)
- * @param {object} cmd The command hash
- * @param {ReadPreference} [options.readPreference] Specify read preference if command supports it
- * @param {Boolean} [options.serializeFunctions=false] Specify if functions on an object should be serialized.
- * @param {Boolean} [options.checkKeys=false] Specify if the bson parser should validate keys.
- * @param {Boolean} [options.ignoreUndefined=false] Specify if the BSON serializer should ignore undefined fields.
- * @param {Boolean} [options.fullResult=false] Return the full envelope instead of just the result document.
- * @param {ClientSession} [options.session=null] Session to use for the operation
- * @param {opResultCallback} callback A callback function
- */
- command(ns, cmd, options, callback) {
- if (typeof options === 'function') {
- (callback = options), (options = {}), (options = options || {});
- }
- const error = basicReadValidations(this, options);
- if (error) {
- return callback(error, null);
- }
- // Clone the options
- options = Object.assign({}, options, { wireProtocolCommand: false });
- // Debug log
- if (this.s.logger.isDebug()) {
- this.s.logger.debug(
- `executing command [${JSON.stringify({
- ns,
- cmd,
- options: debugOptions(DEBUG_FIELDS, options)
- })}] against ${this.name}`
- );
- }
- // error if collation not supported
- if (collationNotSupported(this, cmd)) {
- callback(new MongoError(`server ${this.name} does not support collation`));
- return;
- }
- wireProtocol.command(this, ns, cmd, options, callback);
- }
- /**
- * Insert one or more documents
- * @method
- * @param {string} ns The MongoDB fully qualified namespace (ex: db1.collection1)
- * @param {array} ops An array of documents to insert
- * @param {boolean} [options.ordered=true] Execute in order or out of order
- * @param {object} [options.writeConcern={}] Write concern for the operation
- * @param {Boolean} [options.serializeFunctions=false] Specify if functions on an object should be serialized.
- * @param {Boolean} [options.ignoreUndefined=false] Specify if the BSON serializer should ignore undefined fields.
- * @param {ClientSession} [options.session=null] Session to use for the operation
- * @param {opResultCallback} callback A callback function
- */
- insert(ns, ops, options, callback) {
- executeWriteOperation({ server: this, op: 'insert', ns, ops }, options, callback);
- }
- /**
- * Perform one or more update operations
- * @method
- * @param {string} ns The MongoDB fully qualified namespace (ex: db1.collection1)
- * @param {array} ops An array of updates
- * @param {boolean} [options.ordered=true] Execute in order or out of order
- * @param {object} [options.writeConcern={}] Write concern for the operation
- * @param {Boolean} [options.serializeFunctions=false] Specify if functions on an object should be serialized.
- * @param {Boolean} [options.ignoreUndefined=false] Specify if the BSON serializer should ignore undefined fields.
- * @param {ClientSession} [options.session=null] Session to use for the operation
- * @param {opResultCallback} callback A callback function
- */
- update(ns, ops, options, callback) {
- executeWriteOperation({ server: this, op: 'update', ns, ops }, options, callback);
- }
- /**
- * Perform one or more remove operations
- * @method
- * @param {string} ns The MongoDB fully qualified namespace (ex: db1.collection1)
- * @param {array} ops An array of removes
- * @param {boolean} [options.ordered=true] Execute in order or out of order
- * @param {object} [options.writeConcern={}] Write concern for the operation
- * @param {Boolean} [options.serializeFunctions=false] Specify if functions on an object should be serialized.
- * @param {Boolean} [options.ignoreUndefined=false] Specify if the BSON serializer should ignore undefined fields.
- * @param {ClientSession} [options.session=null] Session to use for the operation
- * @param {opResultCallback} callback A callback function
- */
- remove(ns, ops, options, callback) {
- executeWriteOperation({ server: this, op: 'remove', ns, ops }, options, callback);
- }
- }
- Object.defineProperty(Server.prototype, 'clusterTime', {
- get: function() {
- return this.s.topology.clusterTime;
- },
- set: function(clusterTime) {
- this.s.topology.clusterTime = clusterTime;
- }
- });
- function basicWriteValidations(server) {
- if (!server.s.pool) {
- return new MongoError('server instance is not connected');
- }
- if (server.s.pool.isDestroyed()) {
- return new MongoError('server instance pool was destroyed');
- }
- return null;
- }
- function basicReadValidations(server, options) {
- const error = basicWriteValidations(server, options);
- if (error) {
- return error;
- }
- if (options.readPreference && !(options.readPreference instanceof ReadPreference)) {
- return new MongoError('readPreference must be an instance of ReadPreference');
- }
- }
- function executeWriteOperation(args, options, callback) {
- if (typeof options === 'function') (callback = options), (options = {});
- options = options || {};
- // TODO: once we drop Node 4, use destructuring either here or in arguments.
- const server = args.server;
- const op = args.op;
- const ns = args.ns;
- const ops = Array.isArray(args.ops) ? args.ops : [args.ops];
- const error = basicWriteValidations(server, options);
- if (error) {
- callback(error, null);
- return;
- }
- if (collationNotSupported(server, options)) {
- callback(new MongoError(`server ${this.name} does not support collation`));
- return;
- }
- return wireProtocol[op](server, ns, ops, options, callback);
- }
- function connectEventHandler(server) {
- return function(pool, conn) {
- const ismaster = conn.ismaster;
- server.s.lastIsMasterMS = conn.lastIsMasterMS;
- if (conn.agreedCompressor) {
- server.s.pool.options.agreedCompressor = conn.agreedCompressor;
- }
- if (conn.zlibCompressionLevel) {
- server.s.pool.options.zlibCompressionLevel = conn.zlibCompressionLevel;
- }
- if (conn.ismaster.$clusterTime) {
- const $clusterTime = conn.ismaster.$clusterTime;
- server.s.sclusterTime = $clusterTime;
- }
- // log the connection event if requested
- if (server.s.logger.isInfo()) {
- server.s.logger.info(
- `server ${server.name} connected with ismaster [${JSON.stringify(ismaster)}]`
- );
- }
- // emit an event indicating that our description has changed
- server.emit('descriptionReceived', new ServerDescription(server.description.address, ismaster));
- // we are connected and handshaked (guaranteed by the pool)
- server.s.state = STATE_CONNECTED;
- server.emit('connect', server);
- };
- }
- function errorEventHandler(server) {
- return function(err) {
- if (err) {
- server.emit('error', new MongoNetworkError(err));
- }
- server.emit('close');
- };
- }
- function parseErrorEventHandler(server) {
- return function(err) {
- server.s.state = STATE_DISCONNECTED;
- server.emit('error', new MongoParseError(err));
- };
- }
- module.exports = Server;
|