| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 | 
							- "use strict";
 
- /**
 
-  * A document source skipper
 
-  * @class SkipDocumentSource
 
-  * @namespace mungedb-aggregate.pipeline.documentSources
 
-  * @module mungedb-aggregate
 
-  * @constructor
 
-  * @param [ctx] {ExpressionContext}
 
-  **/
 
- var SkipDocumentSource = module.exports = function SkipDocumentSource(ctx){
 
- 	if (arguments.length > 1) throw new Error("up to one arg expected");
 
- 	base.call(this, ctx);
 
- 	this.skip = 0;
 
- 	this.count = 0;
 
- }, klass = SkipDocumentSource, base = require('./DocumentSource'), proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}});
 
- klass.skipName = "$skip";
 
- proto.getSourceName = function getSourceName(){
 
- 	return klass.skipName;
 
- };
 
- /**
 
-  * Coalesce skips together
 
-  * @param {Object} nextSource the next source
 
-  * @return {bool} return whether we can coalese together
 
-  **/
 
- proto.coalesce = function coalesce(nextSource) {
 
- 	var nextSkip =	nextSource.constructor === SkipDocumentSource?nextSource:null;
 
- 	// if it's not another $skip, we can't coalesce
 
- 	if (!nextSkip) return false;
 
- 	// we need to skip over the sum of the two consecutive $skips
 
- 	this.skip += nextSkip.skip;
 
- 	return true;
 
- };
 
- proto.skipper = function skipper() {
 
- 	if (this.count === 0) {
 
- 		while (!this.source.eof() && this.count++ < this.skip) {
 
- 			this.source.advance();
 
- 		}
 
- 	}
 
- 	if (this.source.eof()) {
 
- 		this.current = null;
 
- 		return;
 
- 	}
 
- 	this.current = this.source.getCurrent();
 
- };
 
- /**
 
-  * Is the source at EOF?
 
-  * @method	eof
 
-  **/
 
- proto.eof = function eof() {
 
- 	this.skipper();
 
- 	return this.source.eof();
 
- };
 
- /**
 
-  * some implementations do the equivalent of verify(!eof()) so check eof() first
 
-  * @method	getCurrent
 
-  * @returns	{Document}	the current Document without advancing
 
-  **/
 
- proto.getCurrent = function getCurrent() {
 
- 	this.skipper();
 
- 	return this.source.getCurrent();
 
- };
 
- /**
 
-  * Advance the state of the DocumentSource so that it will return the next Document.
 
-  * The default implementation returns false, after checking for interrupts.
 
-  * Derived classes can call the default implementation in their own implementations in order to check for interrupts.
 
-  *
 
-  * @method	advance
 
-  * @returns	{Boolean}	whether there is another document to fetch, i.e., whether or not getCurrent() will succeed.  This default implementation always returns false.
 
-  **/
 
- proto.advance = function advance() {
 
- 	base.prototype.advance.call(this); // check for interrupts
 
- 	if (this.eof()) {
 
- 		this.current = null;
 
- 		return false;
 
- 	}
 
- 	this.current = this.source.getCurrent();
 
- 	return this.source.advance();
 
- };
 
- /**
 
-  * Create an object that represents the document source.  The object
 
-  * will have a single field whose name is the source's name.  This
 
-  * will be used by the default implementation of addToJsonArray()
 
-  * to add this object to a pipeline being represented in JSON.
 
-  *
 
-  * @method	sourceToJson
 
-  * @param	{Object} builder	JSONObjBuilder: a blank object builder to write to
 
-  * @param	{Boolean}	explain	create explain output
 
-  **/
 
- proto.sourceToJson = function sourceToJson(builder, explain) {
 
- 	builder.$skip = this.skip;
 
- };
 
- /**
 
-  * Creates a new SkipDocumentSource with the input number as the skip
 
-  *
 
-  * @param {Number} JsonElement this thing is *called* Json, but it expects a number
 
-  **/
 
- klass.createFromJson = function createFromJson(jsonElement, ctx) {
 
- 	if (typeof jsonElement !== "number") throw new Error("code 15972; the value to skip must be a number");
 
- 	var nextSkip = new SkipDocumentSource(ctx);
 
- 	nextSkip.skip = jsonElement;
 
- 	if (nextSkip.skip < 0 || isNaN(nextSkip.skip)) throw new Error("code 15956; the number to skip cannot be negative");
 
- 	return nextSkip;
 
- };
 
 
  |