HTMLify
connection.js
Views: 6 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | 'use strict'; const EventEmitter = require('events'); const MessageStream = require('./message_stream'); const MongoError = require('../core/error').MongoError; const MongoNetworkError = require('../core/error').MongoNetworkError; const MongoWriteConcernError = require('../core/error').MongoWriteConcernError; const CommandResult = require('../core/connection/command_result'); const StreamDescription = require('./stream_description').StreamDescription; const wp = require('../core/wireprotocol'); const apm = require('../core/connection/apm'); const updateSessionFromResponse = require('../core/sessions').updateSessionFromResponse; const uuidV4 = require('../core/utils').uuidV4; const now = require('../utils').now; const calculateDurationInMs = require('../utils').calculateDurationInMs; const kStream = Symbol('stream'); const kQueue = Symbol('queue'); const kMessageStream = Symbol('messageStream'); const kGeneration = Symbol('generation'); const kLastUseTime = Symbol('lastUseTime'); const kClusterTime = Symbol('clusterTime'); const kDescription = Symbol('description'); const kIsMaster = Symbol('ismaster'); const kAutoEncrypter = Symbol('autoEncrypter'); class Connection extends EventEmitter { constructor(stream, options) { super(options); this.id = options.id; this.address = streamIdentifier(stream); this.bson = options.bson; this.socketTimeout = typeof options.socketTimeout === 'number' ? options.socketTimeout : 360000; this.monitorCommands = typeof options.monitorCommands === 'boolean' ? options.monitorCommands : false; this.closed = false; this.destroyed = false; this[kDescription] = new StreamDescription(this.address, options); this[kGeneration] = options.generation; this[kLastUseTime] = now(); // retain a reference to an `AutoEncrypter` if present if (options.autoEncrypter) { this[kAutoEncrypter] = options.autoEncrypter; } // setup parser stream and message handling this[kQueue] = new Map(); this[kMessageStream] = new MessageStream(options); this[kMessageStream].on('message', messageHandler(this)); this[kStream] = stream; stream.on('error', () => { /* ignore errors, listen to `close` instead */ }); stream.on('close', () => { if (this.closed) { return; } this.closed = true; this[kQueue].forEach(op => op.cb(new MongoNetworkError(`connection ${this.id} to ${this.address} closed`)) ); this[kQueue].clear(); this.emit('close'); }); stream.on('timeout', () => { if (this.closed) { return; } stream.destroy(); this.closed = true; this[kQueue].forEach(op => op.cb(new MongoNetworkError(`connection ${this.id} to ${this.address} timed out`)) ); this[kQueue].clear(); this.emit('close'); }); // hook the message stream up to the passed in stream stream.pipe(this[kMessageStream]); this[kMessageStream].pipe(stream); } get description() { return this[kDescription]; } get ismaster() { return this[kIsMaster]; } // the `connect` method stores the result of the handshake ismaster on the connection set ismaster(response) { this[kDescription].receiveResponse(response); // TODO: remove this, and only use the `StreamDescription` in the future this[kIsMaster] = response; } get generation() { return this[kGeneration] || 0; } get idleTime() { return calculateDurationInMs(this[kLastUseTime]); } get clusterTime() { return this[kClusterTime]; } get stream() { return this[kStream]; } markAvailable() { this[kLastUseTime] = now(); } destroy(options, callback) { if (typeof options === 'function') { callback = options; options = {}; } options = Object.assign({ force: false }, options); if (this[kStream] == null || this.destroyed) { this.destroyed = true; if (typeof callback === 'function') { callback(); } return; } if (options.force) { this[kStream].destroy(); this.destroyed = true; if (typeof callback === 'function') { callback(); } return; } this[kStream].end(err => { this.destroyed = true; if (typeof callback === 'function') { callback(err); } }); } // Wire protocol methods command(ns, cmd, options, callback) { wp.command(makeServerTrampoline(this), ns, cmd, options, callback); } query(ns, cmd, cursorState, options, callback) { wp.query(makeServerTrampoline(this), ns, cmd, cursorState, options, callback); } getMore(ns, cursorState, batchSize, options, callback) { wp.getMore(makeServerTrampoline(this), ns, cursorState, batchSize, options, callback); } killCursors(ns, cursorState, callback) { wp.killCursors(makeServerTrampoline(this), ns, cursorState, callback); } insert(ns, ops, options, callback) { wp.insert(makeServerTrampoline(this), ns, ops, options, callback); } update(ns, ops, options, callback) { wp.update(makeServerTrampoline(this), ns, ops, options, callback); } remove(ns, ops, options, callback) { wp.remove(makeServerTrampoline(this), ns, ops, options, callback); } } /// This lets us emulate a legacy `Server` instance so we can work with the existing wire /// protocol methods. Eventually, the operation executor will return a `Connection` to execute /// against. function makeServerTrampoline(connection) { const server = { description: connection.description, clusterTime: connection[kClusterTime], s: { bson: connection.bson, pool: { write: write.bind(connection), isConnected: () => true } } }; if (connection[kAutoEncrypter]) { server.autoEncrypter = connection[kAutoEncrypter]; } return server; } function messageHandler(conn) { return function messageHandler(message) { // always emit the message, in case we are streaming conn.emit('message', message); if (!conn[kQueue].has(message.responseTo)) { return; } const operationDescription = conn[kQueue].get(message.responseTo); // SERVER-45775: For exhaust responses we should be able to use the same requestId to // track response, however the server currently synthetically produces remote requests // making the `responseTo` change on each response conn[kQueue].delete(message.responseTo); if (message.moreToCome) { // requeue the callback for next synthetic request conn[kQueue].set(message.requestId, operationDescription); } const callback = operationDescription.cb; if (operationDescription.socketTimeoutOverride) { conn[kStream].setTimeout(conn.socketTimeout); } try { // Pass in the entire description because it has BSON parsing options message.parse(operationDescription); } catch (err) { callback(new MongoError(err)); return; } if (message.documents[0]) { const document = message.documents[0]; const session = operationDescription.session; if (session) { updateSessionFromResponse(session, document); } if (document.$clusterTime) { conn[kClusterTime] = document.$clusterTime; conn.emit('clusterTimeReceived', document.$clusterTime); } if (operationDescription.command) { if (document.writeConcernError) { callback(new MongoWriteConcernError(document.writeConcernError, document)); return; } if (document.ok === 0 || document.$err || document.errmsg || document.code) { callback(new MongoError(document)); return; } } } // NODE-2382: reenable in our glorious non-leaky abstraction future // callback(null, operationDescription.fullResult ? message : message.documents[0]); callback( undefined, new CommandResult( operationDescription.fullResult ? message : message.documents[0], conn, message ) ); }; } function streamIdentifier(stream) { if (typeof stream.address === 'function') { return `${stream.remoteAddress}:${stream.remotePort}`; } return uuidV4().toString('hex'); } // Not meant to be called directly, the wire protocol methods call this assuming it is a `Pool` instance function write(command, options, callback) { if (typeof options === 'function') { callback = options; } options = options || {}; const operationDescription = { requestId: command.requestId, cb: callback, session: options.session, fullResult: typeof options.fullResult === 'boolean' ? options.fullResult : false, noResponse: typeof options.noResponse === 'boolean' ? options.noResponse : false, documentsReturnedIn: options.documentsReturnedIn, command: !!options.command, // for BSON parsing promoteLongs: typeof options.promoteLongs === 'boolean' ? options.promoteLongs : true, promoteValues: typeof options.promoteValues === 'boolean' ? options.promoteValues : true, promoteBuffers: typeof options.promoteBuffers === 'boolean' ? options.promoteBuffers : false, raw: typeof options.raw === 'boolean' ? options.raw : false }; if (this[kDescription] && this[kDescription].compressor) { operationDescription.agreedCompressor = this[kDescription].compressor; if (this[kDescription].zlibCompressionLevel) { operationDescription.zlibCompressionLevel = this[kDescription].zlibCompressionLevel; } } if (typeof options.socketTimeout === 'number') { operationDescription.socketTimeoutOverride = true; this[kStream].setTimeout(options.socketTimeout); } // if command monitoring is enabled we need to modify the callback here if (this.monitorCommands) { this.emit('commandStarted', new apm.CommandStartedEvent(this, command)); operationDescription.started = now(); operationDescription.cb = (err, reply) => { if (err) { this.emit( 'commandFailed', new apm.CommandFailedEvent(this, command, err, operationDescription.started) ); } else { if (reply && reply.result && (reply.result.ok === 0 || reply.result.$err)) { this.emit( 'commandFailed', new apm.CommandFailedEvent(this, command, reply.result, operationDescription.started) ); } else { this.emit( 'commandSucceeded', new apm.CommandSucceededEvent(this, command, reply, operationDescription.started) ); } } if (typeof callback === 'function') { callback(err, reply); } }; } if (!operationDescription.noResponse) { this[kQueue].set(operationDescription.requestId, operationDescription); } try { this[kMessageStream].writeCommand(command, operationDescription); } catch (e) { if (!operationDescription.noResponse) { this[kQueue].delete(operationDescription.requestId); operationDescription.cb(e); return; } } if (operationDescription.noResponse) { operationDescription.cb(); } } module.exports = { Connection }; |