| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 | 
							- "use strict";
 
- var DocumentSource = require("./DocumentSource");
 
- /**
 
-  * A document source limiter
 
-  * @class LimitDocumentSource
 
-  * @namespace mungedb-aggregate.pipeline.documentSources
 
-  * @module mungedb-aggregate
 
-  * @constructor
 
-  * @param [ctx] {ExpressionContext}
 
-  **/
 
- var LimitDocumentSource = module.exports = function LimitDocumentSource(ctx, limit){
 
- 	if (arguments.length > 2) throw new Error("up to two args expected");
 
- 	base.call(this, ctx);
 
- 	this.limit = limit;
 
- 	this.count = 0;
 
- }, klass = LimitDocumentSource, base = DocumentSource, proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}}); //jshint ignore:line
 
- klass.limitName = "$limit";
 
- proto.getSourceName = function getSourceName(){
 
- 	return klass.limitName;
 
- };
 
- proto.getFactory = function getFactory(){
 
- 	return klass;	// using the ctor rather than a separate .create() method
 
- };
 
- /**
 
-  * Coalesce limits together
 
-  * @param {Object} nextSource the next source
 
-  * @return {bool} return whether we can coalese together
 
-  **/
 
- proto.coalesce = function coalesce(nextSource) {
 
- 	var nextLimit =	nextSource.constructor === LimitDocumentSource?nextSource:null;
 
- 	// if it's not another $limit, we can't coalesce
 
- 	if (!nextLimit) return false;
 
- 	// we need to limit by the minimum of the two limits
 
- 	if (nextLimit.limit < this.limit) this.limit = nextLimit.limit;
 
- 	return true;
 
- };
 
- /**
 
-  * Returns the next Documnet if there is one or null if at EOF
 
-  * @method getNext
 
-  */
 
- proto.getNext = function getNext() {
 
- 	if (this.expCtx && this.expCtx.checkForInterrupt) this.expCtx.checkForInterrupt();
 
- 	if (++this.count > this.limit) {
 
- 		this.source.dispose();
 
- 		return null;
 
- 	}
 
- 	return this.source.getNext();
 
- };
 
- /**
 
- Create a limiting DocumentSource from JSON.
 
- This is a convenience method that uses the above, and operates on
 
- a JSONElement that has been deteremined to be an Object with an
 
- element named $limit.
 
- @param jsonElement the JSONELement that defines the limit
 
- @param ctx the expression context
 
- @returns the grouping DocumentSource
 
- */
 
- klass.createFromJson = function createFromJson(jsonElement, ctx) {
 
- 	if (typeof jsonElement !== "number") throw new Error("code 15957; the limit must be specified as a number");
 
- 	var limit = jsonElement;
 
- 	return klass.create(ctx, limit);
 
- };
 
- klass.create = function create(ctx, limit){
 
- 	if ((limit <= 0) || isNaN(limit)) throw new Error("code 15958; the limit must be positive");
 
- 	return new LimitDocumentSource(ctx, limit);
 
- };
 
- proto.getLimit = function getLimit(newLimit) {
 
- 	return this.limit;
 
- };
 
- proto.setLimit = function setLimit(newLimit) {
 
- 	this.limit = newLimit;
 
- };
 
- proto.getDependencies = function(deps) {
 
- 	return DocumentSource.GetDepsReturn.SEE_NEXT;
 
- };
 
- proto.serialize = function(explain) {
 
- 	var out = {};
 
- 	out[this.getSourceName()] = this.limit;
 
- 	return out;
 
- };
 
 
  |