Source: lib/bulk/unordered.js

  1. 'use strict';
  2. const common = require('./common');
  3. const utils = require('../utils');
  4. const toError = require('../utils').toError;
  5. const handleCallback = require('../utils').handleCallback;
  6. const shallowClone = utils.shallowClone;
  7. const BulkWriteResult = common.BulkWriteResult;
  8. const ObjectID = require('mongodb-core').BSON.ObjectID;
  9. const BSON = require('mongodb-core').BSON;
  10. const Batch = common.Batch;
  11. const mergeBatchResults = common.mergeBatchResults;
  12. const executeOperation = utils.executeOperation;
  13. const BulkWriteError = require('./common').BulkWriteError;
  14. const applyWriteConcern = utils.applyWriteConcern;
  15. var bson = new BSON([
  16. BSON.Binary,
  17. BSON.Code,
  18. BSON.DBRef,
  19. BSON.Decimal128,
  20. BSON.Double,
  21. BSON.Int32,
  22. BSON.Long,
  23. BSON.Map,
  24. BSON.MaxKey,
  25. BSON.MinKey,
  26. BSON.ObjectId,
  27. BSON.BSONRegExp,
  28. BSON.Symbol,
  29. BSON.Timestamp
  30. ]);
  31. /**
  32. * Create a FindOperatorsUnordered instance (INTERNAL TYPE, do not instantiate directly)
  33. * @class
  34. * @property {number} length Get the number of operations in the bulk.
  35. * @return {FindOperatorsUnordered} a FindOperatorsUnordered instance.
  36. */
  37. var FindOperatorsUnordered = function(self) {
  38. this.s = self.s;
  39. };
  40. /**
  41. * Add a single update document to the bulk operation
  42. *
  43. * @method
  44. * @param {object} updateDocument update operations
  45. * @throws {MongoError}
  46. * @return {FindOperatorsUnordered}
  47. */
  48. FindOperatorsUnordered.prototype.update = function(updateDocument) {
  49. // Perform upsert
  50. var upsert = typeof this.s.currentOp.upsert === 'boolean' ? this.s.currentOp.upsert : false;
  51. // Establish the update command
  52. var document = {
  53. q: this.s.currentOp.selector,
  54. u: updateDocument,
  55. multi: true,
  56. upsert: upsert
  57. };
  58. // Clear out current Op
  59. this.s.currentOp = null;
  60. // Add the update document to the list
  61. return addToOperationsList(this, common.UPDATE, document);
  62. };
  63. /**
  64. * Add a single update one document to the bulk operation
  65. *
  66. * @method
  67. * @param {object} updateDocument update operations
  68. * @throws {MongoError}
  69. * @return {FindOperatorsUnordered}
  70. */
  71. FindOperatorsUnordered.prototype.updateOne = function(updateDocument) {
  72. // Perform upsert
  73. var upsert = typeof this.s.currentOp.upsert === 'boolean' ? this.s.currentOp.upsert : false;
  74. // Establish the update command
  75. var document = {
  76. q: this.s.currentOp.selector,
  77. u: updateDocument,
  78. multi: false,
  79. upsert: upsert
  80. };
  81. // Clear out current Op
  82. this.s.currentOp = null;
  83. // Add the update document to the list
  84. return addToOperationsList(this, common.UPDATE, document);
  85. };
  86. /**
  87. * Add a replace one operation to the bulk operation
  88. *
  89. * @method
  90. * @param {object} updateDocument the new document to replace the existing one with
  91. * @throws {MongoError}
  92. * @return {FindOperatorsUnordered}
  93. */
  94. FindOperatorsUnordered.prototype.replaceOne = function(updateDocument) {
  95. this.updateOne(updateDocument);
  96. };
  97. /**
  98. * Upsert modifier for update bulk operation
  99. *
  100. * @method
  101. * @throws {MongoError}
  102. * @return {FindOperatorsUnordered}
  103. */
  104. FindOperatorsUnordered.prototype.upsert = function() {
  105. this.s.currentOp.upsert = true;
  106. return this;
  107. };
  108. /**
  109. * Add a remove one operation to the bulk operation
  110. *
  111. * @method
  112. * @throws {MongoError}
  113. * @return {FindOperatorsUnordered}
  114. */
  115. FindOperatorsUnordered.prototype.removeOne = function() {
  116. // Establish the update command
  117. var document = {
  118. q: this.s.currentOp.selector,
  119. limit: 1
  120. };
  121. // Clear out current Op
  122. this.s.currentOp = null;
  123. // Add the remove document to the list
  124. return addToOperationsList(this, common.REMOVE, document);
  125. };
  126. /**
  127. * Add a remove operation to the bulk operation
  128. *
  129. * @method
  130. * @throws {MongoError}
  131. * @return {FindOperatorsUnordered}
  132. */
  133. FindOperatorsUnordered.prototype.remove = function() {
  134. // Establish the update command
  135. var document = {
  136. q: this.s.currentOp.selector,
  137. limit: 0
  138. };
  139. // Clear out current Op
  140. this.s.currentOp = null;
  141. // Add the remove document to the list
  142. return addToOperationsList(this, common.REMOVE, document);
  143. };
  144. //
  145. // Add to the operations list
  146. //
  147. var addToOperationsList = function(_self, docType, document) {
  148. // Get the bsonSize
  149. var bsonSize = bson.calculateObjectSize(document, {
  150. checkKeys: false
  151. });
  152. // Throw error if the doc is bigger than the max BSON size
  153. if (bsonSize >= _self.s.maxBatchSizeBytes)
  154. throw toError('document is larger than the maximum size ' + _self.s.maxBatchSizeBytes);
  155. // Holds the current batch
  156. _self.s.currentBatch = null;
  157. // Get the right type of batch
  158. if (docType === common.INSERT) {
  159. _self.s.currentBatch = _self.s.currentInsertBatch;
  160. } else if (docType === common.UPDATE) {
  161. _self.s.currentBatch = _self.s.currentUpdateBatch;
  162. } else if (docType === common.REMOVE) {
  163. _self.s.currentBatch = _self.s.currentRemoveBatch;
  164. }
  165. // Create a new batch object if we don't have a current one
  166. if (_self.s.currentBatch == null) _self.s.currentBatch = new Batch(docType, _self.s.currentIndex);
  167. // Check if we need to create a new batch
  168. if (
  169. _self.s.currentBatch.size + 1 >= _self.s.maxWriteBatchSize ||
  170. _self.s.currentBatch.sizeBytes + bsonSize >= _self.s.maxBatchSizeBytes ||
  171. _self.s.currentBatch.batchType !== docType
  172. ) {
  173. // Save the batch to the execution stack
  174. _self.s.batches.push(_self.s.currentBatch);
  175. // Create a new batch
  176. _self.s.currentBatch = new Batch(docType, _self.s.currentIndex);
  177. }
  178. // We have an array of documents
  179. if (Array.isArray(document)) {
  180. throw toError('operation passed in cannot be an Array');
  181. } else {
  182. _self.s.currentBatch.operations.push(document);
  183. _self.s.currentBatch.originalIndexes.push(_self.s.currentIndex);
  184. _self.s.currentIndex = _self.s.currentIndex + 1;
  185. }
  186. // Save back the current Batch to the right type
  187. if (docType === common.INSERT) {
  188. _self.s.currentInsertBatch = _self.s.currentBatch;
  189. _self.s.bulkResult.insertedIds.push({
  190. index: _self.s.bulkResult.insertedIds.length,
  191. _id: document._id
  192. });
  193. } else if (docType === common.UPDATE) {
  194. _self.s.currentUpdateBatch = _self.s.currentBatch;
  195. } else if (docType === common.REMOVE) {
  196. _self.s.currentRemoveBatch = _self.s.currentBatch;
  197. }
  198. // Update current batch size
  199. _self.s.currentBatch.size = _self.s.currentBatch.size + 1;
  200. _self.s.currentBatch.sizeBytes = _self.s.currentBatch.sizeBytes + bsonSize;
  201. // Return self
  202. return _self;
  203. };
  204. /**
  205. * Create a new UnorderedBulkOperation instance (INTERNAL TYPE, do not instantiate directly)
  206. * @class
  207. * @property {number} length Get the number of operations in the bulk.
  208. * @return {UnorderedBulkOperation} a UnorderedBulkOperation instance.
  209. */
  210. var UnorderedBulkOperation = function(topology, collection, options) {
  211. options = options == null ? {} : options;
  212. // Get the namesspace for the write operations
  213. var namespace = collection.collectionName;
  214. // Used to mark operation as executed
  215. var executed = false;
  216. // Current item
  217. // var currentBatch = null;
  218. var currentOp = null;
  219. // Handle to the bson serializer, used to calculate running sizes
  220. var bson = topology.bson;
  221. // Set max byte size
  222. var maxBatchSizeBytes =
  223. topology.isMasterDoc && topology.isMasterDoc.maxBsonObjectSize
  224. ? topology.isMasterDoc.maxBsonObjectSize
  225. : 1024 * 1025 * 16;
  226. var maxWriteBatchSize =
  227. topology.isMasterDoc && topology.isMasterDoc.maxWriteBatchSize
  228. ? topology.isMasterDoc.maxWriteBatchSize
  229. : 1000;
  230. // Get the write concern
  231. var writeConcern = applyWriteConcern(shallowClone(options), { collection: collection }, options);
  232. writeConcern = writeConcern.writeConcern;
  233. // Get the promiseLibrary
  234. var promiseLibrary = options.promiseLibrary || Promise;
  235. // Final results
  236. var bulkResult = {
  237. ok: 1,
  238. writeErrors: [],
  239. writeConcernErrors: [],
  240. insertedIds: [],
  241. nInserted: 0,
  242. nUpserted: 0,
  243. nMatched: 0,
  244. nModified: 0,
  245. nRemoved: 0,
  246. upserted: []
  247. };
  248. // Internal state
  249. this.s = {
  250. // Final result
  251. bulkResult: bulkResult,
  252. // Current batch state
  253. currentInsertBatch: null,
  254. currentUpdateBatch: null,
  255. currentRemoveBatch: null,
  256. currentBatch: null,
  257. currentIndex: 0,
  258. batches: [],
  259. // Write concern
  260. writeConcern: writeConcern,
  261. // Max batch size options
  262. maxBatchSizeBytes: maxBatchSizeBytes,
  263. maxWriteBatchSize: maxWriteBatchSize,
  264. // Namespace
  265. namespace: namespace,
  266. // BSON
  267. bson: bson,
  268. // Topology
  269. topology: topology,
  270. // Options
  271. options: options,
  272. // Current operation
  273. currentOp: currentOp,
  274. // Executed
  275. executed: executed,
  276. // Collection
  277. collection: collection,
  278. // Promise Library
  279. promiseLibrary: promiseLibrary,
  280. // Bypass validation
  281. bypassDocumentValidation:
  282. typeof options.bypassDocumentValidation === 'boolean'
  283. ? options.bypassDocumentValidation
  284. : false,
  285. // check keys
  286. checkKeys: typeof options.checkKeys === 'boolean' ? options.checkKeys : true
  287. };
  288. };
  289. /**
  290. * Add a single insert document to the bulk operation
  291. *
  292. * @param {object} document the document to insert
  293. * @throws {MongoError}
  294. * @return {UnorderedBulkOperation}
  295. */
  296. UnorderedBulkOperation.prototype.insert = function(document) {
  297. if (this.s.collection.s.db.options.forceServerObjectId !== true && document._id == null)
  298. document._id = new ObjectID();
  299. return addToOperationsList(this, common.INSERT, document);
  300. };
  301. /**
  302. * Initiate a find operation for an update/updateOne/remove/removeOne/replaceOne
  303. *
  304. * @method
  305. * @param {object} selector The selector for the bulk operation.
  306. * @throws {MongoError}
  307. * @return {FindOperatorsUnordered}
  308. */
  309. UnorderedBulkOperation.prototype.find = function(selector) {
  310. if (!selector) {
  311. throw toError('Bulk find operation must specify a selector');
  312. }
  313. // Save a current selector
  314. this.s.currentOp = {
  315. selector: selector
  316. };
  317. return new FindOperatorsUnordered(this);
  318. };
  319. Object.defineProperty(UnorderedBulkOperation.prototype, 'length', {
  320. enumerable: true,
  321. get: function() {
  322. return this.s.currentIndex;
  323. }
  324. });
  325. UnorderedBulkOperation.prototype.raw = function(op) {
  326. var key = Object.keys(op)[0];
  327. // Set up the force server object id
  328. var forceServerObjectId =
  329. typeof this.s.options.forceServerObjectId === 'boolean'
  330. ? this.s.options.forceServerObjectId
  331. : this.s.collection.s.db.options.forceServerObjectId;
  332. // Update operations
  333. if (
  334. (op.updateOne && op.updateOne.q) ||
  335. (op.updateMany && op.updateMany.q) ||
  336. (op.replaceOne && op.replaceOne.q)
  337. ) {
  338. op[key].multi = op.updateOne || op.replaceOne ? false : true;
  339. return addToOperationsList(this, common.UPDATE, op[key]);
  340. }
  341. // Crud spec update format
  342. if (op.updateOne || op.updateMany || op.replaceOne) {
  343. var multi = op.updateOne || op.replaceOne ? false : true;
  344. var operation = { q: op[key].filter, u: op[key].update || op[key].replacement, multi: multi };
  345. if (op[key].upsert) operation.upsert = true;
  346. if (op[key].arrayFilters) operation.arrayFilters = op[key].arrayFilters;
  347. return addToOperationsList(this, common.UPDATE, operation);
  348. }
  349. // Remove operations
  350. if (
  351. op.removeOne ||
  352. op.removeMany ||
  353. (op.deleteOne && op.deleteOne.q) ||
  354. (op.deleteMany && op.deleteMany.q)
  355. ) {
  356. op[key].limit = op.removeOne ? 1 : 0;
  357. return addToOperationsList(this, common.REMOVE, op[key]);
  358. }
  359. // Crud spec delete operations, less efficient
  360. if (op.deleteOne || op.deleteMany) {
  361. var limit = op.deleteOne ? 1 : 0;
  362. operation = { q: op[key].filter, limit: limit };
  363. return addToOperationsList(this, common.REMOVE, operation);
  364. }
  365. // Insert operations
  366. if (op.insertOne && op.insertOne.document == null) {
  367. if (forceServerObjectId !== true && op.insertOne._id == null) op.insertOne._id = new ObjectID();
  368. return addToOperationsList(this, common.INSERT, op.insertOne);
  369. } else if (op.insertOne && op.insertOne.document) {
  370. if (forceServerObjectId !== true && op.insertOne.document._id == null)
  371. op.insertOne.document._id = new ObjectID();
  372. return addToOperationsList(this, common.INSERT, op.insertOne.document);
  373. }
  374. if (op.insertMany) {
  375. for (var i = 0; i < op.insertMany.length; i++) {
  376. if (forceServerObjectId !== true && op.insertMany[i]._id == null)
  377. op.insertMany[i]._id = new ObjectID();
  378. addToOperationsList(this, common.INSERT, op.insertMany[i]);
  379. }
  380. return;
  381. }
  382. // No valid type of operation
  383. throw toError(
  384. 'bulkWrite only supports insertOne, insertMany, updateOne, updateMany, removeOne, removeMany, deleteOne, deleteMany'
  385. );
  386. };
  387. //
  388. // Execute the command
  389. var executeBatch = function(self, batch, options, callback) {
  390. var finalOptions = Object.assign({ ordered: false }, options);
  391. if (self.s.writeConcern != null) {
  392. finalOptions.writeConcern = self.s.writeConcern;
  393. }
  394. var resultHandler = function(err, result) {
  395. // Error is a driver related error not a bulk op error, terminate
  396. if ((err && err.driver) || (err && err.message)) {
  397. return handleCallback(callback, err);
  398. }
  399. // If we have and error
  400. if (err) err.ok = 0;
  401. handleCallback(callback, null, mergeBatchResults(false, batch, self.s.bulkResult, err, result));
  402. };
  403. // Set an operationIf if provided
  404. if (self.operationId) {
  405. resultHandler.operationId = self.operationId;
  406. }
  407. // Serialize functions
  408. if (self.s.options.serializeFunctions) {
  409. finalOptions.serializeFunctions = true;
  410. }
  411. // Ignore undefined
  412. if (self.s.options.ignoreUndefined) {
  413. finalOptions.ignoreUndefined = true;
  414. }
  415. // Is the bypassDocumentValidation options specific
  416. if (self.s.bypassDocumentValidation === true) {
  417. finalOptions.bypassDocumentValidation = true;
  418. }
  419. // Is the checkKeys option disabled
  420. if (self.s.checkKeys === false) {
  421. finalOptions.checkKeys = false;
  422. }
  423. if (finalOptions.retryWrites) {
  424. if (batch.batchType === common.UPDATE) {
  425. finalOptions.retryWrites = finalOptions.retryWrites && !batch.operations.some(op => op.multi);
  426. }
  427. if (batch.batchType === common.REMOVE) {
  428. finalOptions.retryWrites =
  429. finalOptions.retryWrites && !batch.operations.some(op => op.limit === 0);
  430. }
  431. }
  432. try {
  433. if (batch.batchType === common.INSERT) {
  434. self.s.topology.insert(
  435. self.s.collection.namespace,
  436. batch.operations,
  437. finalOptions,
  438. resultHandler
  439. );
  440. } else if (batch.batchType === common.UPDATE) {
  441. self.s.topology.update(
  442. self.s.collection.namespace,
  443. batch.operations,
  444. finalOptions,
  445. resultHandler
  446. );
  447. } else if (batch.batchType === common.REMOVE) {
  448. self.s.topology.remove(
  449. self.s.collection.namespace,
  450. batch.operations,
  451. finalOptions,
  452. resultHandler
  453. );
  454. }
  455. } catch (err) {
  456. // Force top level error
  457. err.ok = 0;
  458. // Merge top level error and return
  459. handleCallback(callback, null, mergeBatchResults(false, batch, self.s.bulkResult, err, null));
  460. }
  461. };
  462. //
  463. // Execute all the commands
  464. var executeBatches = function(self, options, callback) {
  465. var numberOfCommandsToExecute = self.s.batches.length;
  466. // Execute over all the batches
  467. for (var i = 0; i < self.s.batches.length; i++) {
  468. executeBatch(self, self.s.batches[i], options, function(err) {
  469. // Count down the number of commands left to execute
  470. numberOfCommandsToExecute = numberOfCommandsToExecute - 1;
  471. // Execute
  472. if (numberOfCommandsToExecute === 0) {
  473. // Driver level error
  474. if (err) return handleCallback(callback, err);
  475. const writeResult = new BulkWriteResult(self.s.bulkResult);
  476. if (self.s.bulkResult.writeErrors.length > 0) {
  477. if (self.s.bulkResult.writeErrors.length === 1) {
  478. return handleCallback(
  479. callback,
  480. new BulkWriteError(toError(self.s.bulkResult.writeErrors[0]), writeResult),
  481. null
  482. );
  483. }
  484. return handleCallback(
  485. callback,
  486. new BulkWriteError(
  487. toError({
  488. message: 'write operation failed',
  489. code: self.s.bulkResult.writeErrors[0].code,
  490. writeErrors: self.s.bulkResult.writeErrors
  491. }),
  492. writeResult
  493. ),
  494. null
  495. );
  496. } else if (writeResult.getWriteConcernError()) {
  497. return handleCallback(
  498. callback,
  499. new BulkWriteError(toError(writeResult.getWriteConcernError()), writeResult),
  500. null
  501. );
  502. }
  503. return handleCallback(callback, null, writeResult);
  504. }
  505. });
  506. }
  507. };
  508. /**
  509. * The callback format for results
  510. * @callback UnorderedBulkOperation~resultCallback
  511. * @param {MongoError} error An error instance representing the error during the execution.
  512. * @param {BulkWriteResult} result The bulk write result.
  513. */
  514. /**
  515. * Execute the ordered bulk operation
  516. *
  517. * @method
  518. * @param {object} [options=null] Optional settings.
  519. * @param {(number|string)} [options.w=null] The write concern.
  520. * @param {number} [options.wtimeout=null] The write concern timeout.
  521. * @param {boolean} [options.j=false] Specify a journal write concern.
  522. * @param {boolean} [options.fsync=false] Specify a file sync write concern.
  523. * @param {UnorderedBulkOperation~resultCallback} [callback] The result callback
  524. * @throws {MongoError}
  525. * @return {Promise} returns Promise if no callback passed
  526. */
  527. UnorderedBulkOperation.prototype.execute = function(_writeConcern, options, callback) {
  528. if (typeof options === 'function') (callback = options), (options = {});
  529. options = options || {};
  530. if (this.s.executed) {
  531. var executedError = toError('batch cannot be re-executed');
  532. return typeof callback === 'function'
  533. ? callback(executedError, null)
  534. : this.s.promiseLibrary.reject(executedError);
  535. }
  536. if (typeof _writeConcern === 'function') {
  537. callback = _writeConcern;
  538. } else if (_writeConcern && typeof _writeConcern === 'object') {
  539. this.s.writeConcern = _writeConcern;
  540. }
  541. // If we have current batch
  542. if (this.s.currentInsertBatch) this.s.batches.push(this.s.currentInsertBatch);
  543. if (this.s.currentUpdateBatch) this.s.batches.push(this.s.currentUpdateBatch);
  544. if (this.s.currentRemoveBatch) this.s.batches.push(this.s.currentRemoveBatch);
  545. // If we have no operations in the bulk raise an error
  546. if (this.s.batches.length === 0) {
  547. var emptyBatchError = toError('Invalid Operation, no operations specified');
  548. return typeof callback === 'function'
  549. ? callback(emptyBatchError, null)
  550. : this.s.promiseLibrary.reject(emptyBatchError);
  551. }
  552. return executeOperation(this.s.topology, executeBatches, [this, options, callback]);
  553. };
  554. /**
  555. * Returns an unordered batch object
  556. * @ignore
  557. */
  558. var initializeUnorderedBulkOp = function(topology, collection, options) {
  559. return new UnorderedBulkOperation(topology, collection, options);
  560. };
  561. initializeUnorderedBulkOp.UnorderedBulkOperation = UnorderedBulkOperation;
  562. module.exports = initializeUnorderedBulkOp;
  563. module.exports.Bulk = UnorderedBulkOperation;