123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- 'use strict';
- const MongoError = require('./core').MongoError;
- const Cursor = require('./cursor');
- const CursorState = require('./core/cursor').CursorState;
- /**
- * @fileOverview The **AggregationCursor** class is an internal class that embodies an aggregation cursor on MongoDB
- * allowing for iteration over the results returned from the underlying query. It supports
- * one by one document iteration, conversion to an array or can be iterated as a Node 4.X
- * or higher stream
- *
- * **AGGREGATIONCURSOR Cannot directly be instantiated**
- * @example
- * const MongoClient = require('mongodb').MongoClient;
- * const test = require('assert');
- * // Connection url
- * const url = 'mongodb://localhost:27017';
- * // Database Name
- * const dbName = 'test';
- * // Connect using MongoClient
- * MongoClient.connect(url, function(err, client) {
- * // Create a collection we want to drop later
- * const col = client.db(dbName).collection('createIndexExample1');
- * // Insert a bunch of documents
- * col.insert([{a:1, b:1}
- * , {a:2, b:2}, {a:3, b:3}
- * , {a:4, b:4}], {w:1}, function(err, result) {
- * test.equal(null, err);
- * // Show that duplicate records got dropped
- * col.aggregation({}, {cursor: {}}).toArray(function(err, items) {
- * test.equal(null, err);
- * test.equal(4, items.length);
- * client.close();
- * });
- * });
- * });
- */
- /**
- * Namespace provided by the browser.
- * @external Readable
- */
- /**
- * Creates a new Aggregation Cursor instance (INTERNAL TYPE, do not instantiate directly)
- * @class AggregationCursor
- * @extends external:Readable
- * @fires AggregationCursor#data
- * @fires AggregationCursor#end
- * @fires AggregationCursor#close
- * @fires AggregationCursor#readable
- * @return {AggregationCursor} an AggregationCursor instance.
- */
- class AggregationCursor extends Cursor {
- constructor(topology, operation, options) {
- super(topology, operation, options);
- }
- /**
- * Set the batch size for the cursor.
- * @method
- * @param {number} value The number of documents to return per batch. See {@link https://docs.mongodb.com/manual/reference/command/aggregate|aggregation documentation}.
- * @throws {MongoError}
- * @return {AggregationCursor}
- */
- batchSize(value) {
- if (this.s.state === CursorState.CLOSED || this.isDead()) {
- throw MongoError.create({ message: 'Cursor is closed', driver: true });
- }
- if (typeof value !== 'number') {
- throw MongoError.create({ message: 'batchSize requires an integer', driver: true });
- }
- this.operation.options.batchSize = value;
- this.setCursorBatchSize(value);
- return this;
- }
- /**
- * Add a geoNear stage to the aggregation pipeline
- * @method
- * @param {object} document The geoNear stage document.
- * @return {AggregationCursor}
- */
- geoNear(document) {
- this.operation.addToPipeline({ $geoNear: document });
- return this;
- }
- /**
- * Add a group stage to the aggregation pipeline
- * @method
- * @param {object} document The group stage document.
- * @return {AggregationCursor}
- */
- group(document) {
- this.operation.addToPipeline({ $group: document });
- return this;
- }
- /**
- * Add a limit stage to the aggregation pipeline
- * @method
- * @param {number} value The state limit value.
- * @return {AggregationCursor}
- */
- limit(value) {
- this.operation.addToPipeline({ $limit: value });
- return this;
- }
- /**
- * Add a match stage to the aggregation pipeline
- * @method
- * @param {object} document The match stage document.
- * @return {AggregationCursor}
- */
- match(document) {
- this.operation.addToPipeline({ $match: document });
- return this;
- }
- /**
- * Add a maxTimeMS stage to the aggregation pipeline
- * @method
- * @param {number} value The state maxTimeMS value.
- * @return {AggregationCursor}
- */
- maxTimeMS(value) {
- this.operation.options.maxTimeMS = value;
- return this;
- }
- /**
- * Add a out stage to the aggregation pipeline
- * @method
- * @param {number} destination The destination name.
- * @return {AggregationCursor}
- */
- out(destination) {
- this.operation.addToPipeline({ $out: destination });
- return this;
- }
- /**
- * Add a project stage to the aggregation pipeline
- * @method
- * @param {object} document The project stage document.
- * @return {AggregationCursor}
- */
- project(document) {
- this.operation.addToPipeline({ $project: document });
- return this;
- }
- /**
- * Add a lookup stage to the aggregation pipeline
- * @method
- * @param {object} document The lookup stage document.
- * @return {AggregationCursor}
- */
- lookup(document) {
- this.operation.addToPipeline({ $lookup: document });
- return this;
- }
- /**
- * Add a redact stage to the aggregation pipeline
- * @method
- * @param {object} document The redact stage document.
- * @return {AggregationCursor}
- */
- redact(document) {
- this.operation.addToPipeline({ $redact: document });
- return this;
- }
- /**
- * Add a skip stage to the aggregation pipeline
- * @method
- * @param {number} value The state skip value.
- * @return {AggregationCursor}
- */
- skip(value) {
- this.operation.addToPipeline({ $skip: value });
- return this;
- }
- /**
- * Add a sort stage to the aggregation pipeline
- * @method
- * @param {object} document The sort stage document.
- * @return {AggregationCursor}
- */
- sort(document) {
- this.operation.addToPipeline({ $sort: document });
- return this;
- }
- /**
- * Add a unwind stage to the aggregation pipeline
- * @method
- * @param {(string|object)} field The unwind field name or stage document.
- * @return {AggregationCursor}
- */
- unwind(field) {
- this.operation.addToPipeline({ $unwind: field });
- return this;
- }
- /**
- * Return the cursor logger
- * @method
- * @return {Logger} return the cursor logger
- * @ignore
- */
- getLogger() {
- return this.logger;
- }
- }
- // aliases
- AggregationCursor.prototype.get = AggregationCursor.prototype.toArray;
- /**
- * AggregationCursor stream data event, fired for each document in the cursor.
- *
- * @event AggregationCursor#data
- * @type {object}
- */
- /**
- * AggregationCursor stream end event
- *
- * @event AggregationCursor#end
- * @type {null}
- */
- /**
- * AggregationCursor stream close event
- *
- * @event AggregationCursor#close
- * @type {null}
- */
- /**
- * AggregationCursor stream readable event
- *
- * @event AggregationCursor#readable
- * @type {null}
- */
- /**
- * Get the next available document from the cursor, returns null if no more documents are available.
- * @function AggregationCursor.prototype.next
- * @param {AggregationCursor~resultCallback} [callback] The result callback.
- * @throws {MongoError}
- * @return {Promise} returns Promise if no callback passed
- */
- /**
- * Check if there is any document still available in the cursor
- * @function AggregationCursor.prototype.hasNext
- * @param {AggregationCursor~resultCallback} [callback] The result callback.
- * @throws {MongoError}
- * @return {Promise} returns Promise if no callback passed
- */
- /**
- * The callback format for results
- * @callback AggregationCursor~toArrayResultCallback
- * @param {MongoError} error An error instance representing the error during the execution.
- * @param {object[]} documents All the documents the satisfy the cursor.
- */
- /**
- * Returns an array of documents. The caller is responsible for making sure that there
- * is enough memory to store the results. Note that the array only contain partial
- * results when this cursor had been previously accessed. In that case,
- * cursor.rewind() can be used to reset the cursor.
- * @method AggregationCursor.prototype.toArray
- * @param {AggregationCursor~toArrayResultCallback} [callback] The result callback.
- * @throws {MongoError}
- * @return {Promise} returns Promise if no callback passed
- */
- /**
- * The callback format for results
- * @callback AggregationCursor~resultCallback
- * @param {MongoError} error An error instance representing the error during the execution.
- * @param {(object|null)} result The result object if the command was executed successfully.
- */
- /**
- * Iterates over all the documents for this cursor. As with **{cursor.toArray}**,
- * not all of the elements will be iterated if this cursor had been previously accessed.
- * In that case, **{cursor.rewind}** can be used to reset the cursor. However, unlike
- * **{cursor.toArray}**, the cursor will only hold a maximum of batch size elements
- * at any given time if batch size is specified. Otherwise, the caller is responsible
- * for making sure that the entire result can fit the memory.
- * @method AggregationCursor.prototype.each
- * @deprecated
- * @param {AggregationCursor~resultCallback} callback The result callback.
- * @throws {MongoError}
- * @return {null}
- */
- /**
- * Close the cursor, sending a AggregationCursor command and emitting close.
- * @method AggregationCursor.prototype.close
- * @param {AggregationCursor~resultCallback} [callback] The result callback.
- * @return {Promise} returns Promise if no callback passed
- */
- /**
- * Is the cursor closed
- * @method AggregationCursor.prototype.isClosed
- * @return {boolean}
- */
- /**
- * Execute the explain for the cursor
- *
- * For backwards compatibility, a verbosity of true is interpreted as "allPlansExecution"
- * and false as "queryPlanner". Prior to server version 3.6, aggregate()
- * ignores the verbosity parameter and executes in "queryPlanner".
- *
- * @method AggregationCursor.prototype.explain
- * @param {'queryPlanner'|'queryPlannerExtended'|'executionStats'|'allPlansExecution'|boolean} [verbosity=true] - An optional mode in which to run the explain.
- * @param {AggregationCursor~resultCallback} [callback] The result callback.
- * @return {Promise} returns Promise if no callback passed
- */
- /**
- * Clone the cursor
- * @function AggregationCursor.prototype.clone
- * @return {AggregationCursor}
- */
- /**
- * Resets the cursor
- * @function AggregationCursor.prototype.rewind
- * @return {AggregationCursor}
- */
- /**
- * The callback format for the forEach iterator method
- * @callback AggregationCursor~iteratorCallback
- * @param {Object} doc An emitted document for the iterator
- */
- /**
- * The callback error format for the forEach iterator method
- * @callback AggregationCursor~endCallback
- * @param {MongoError} error An error instance representing the error during the execution.
- */
- /**
- * Iterates over all the documents for this cursor using the iterator, callback pattern.
- * @method AggregationCursor.prototype.forEach
- * @param {AggregationCursor~iteratorCallback} iterator The iteration callback.
- * @param {AggregationCursor~endCallback} callback The end callback.
- * @throws {MongoError}
- * @return {null}
- */
- module.exports = AggregationCursor;
|