Expression.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. "use strict";
  2. /**
  3. * A base class for all pipeline expressions; Performs common expressions within an Op.
  4. *
  5. * NOTE: An object expression can take any of the following forms:
  6. *
  7. * f0: {f1: ..., f2: ..., f3: ...}
  8. * f0: {$operator:[operand1, operand2, ...]}
  9. *
  10. * @class Expression
  11. * @namespace mungedb-aggregate.pipeline.expressions
  12. * @module mungedb-aggregate
  13. * @constructor
  14. **/
  15. var Expression = module.exports = function Expression() {
  16. if (arguments.length !== 0) throw new Error("zero args expected");
  17. }, klass = Expression,
  18. base = Object,
  19. proto = klass.prototype = Object.create(base.prototype, {
  20. constructor: {
  21. value: klass
  22. }
  23. });
  24. // DEPENDENCIES
  25. var Document = require("../Document");
  26. var ObjectExpression = require("./ObjectExpression");
  27. var FieldPathExpression;
  28. var ConstantExpression;
  29. var kinds;
  30. function fn(){
  31. return;
  32. }
  33. // NESTED CLASSES
  34. /**
  35. * Reference to the `mungedb-aggregate.pipeline.expressions.Expression.ObjectCtx` class
  36. * @static
  37. * @property ObjectCtx
  38. **/
  39. var ObjectCtx = Expression.ObjectCtx = (function() {
  40. // CONSTRUCTOR
  41. /**
  42. * Utility class for parseObject() below. isDocumentOk indicates that it is OK to use a Document in the current context.
  43. *
  44. * NOTE: deviation from Mongo code: accepts an `Object` of settings rather than a bitmask to help simplify the interface a little bit
  45. *
  46. * @class ObjectCtx
  47. * @namespace mungedb-aggregate.pipeline.expressions.Expression
  48. * @module mungedb-aggregate
  49. * @constructor
  50. * @param opts
  51. * @param [opts.isDocumentOk] {Boolean}
  52. * @param [opts.isTopLevel] {Boolean}
  53. * @param [opts.isInclusionOk] {Boolean}
  54. **/
  55. var klass = function ObjectCtx(opts /*= {isDocumentOk:..., isTopLevel:..., isInclusionOk:...}*/ ) {
  56. if (!(opts instanceof Object && opts.constructor == Object)) throw new Error("opts is required and must be an Object containing named args");
  57. for (var k in opts) { // assign all given opts to self so long as they were part of klass.prototype as undefined properties
  58. if (opts.hasOwnProperty(k) && proto.hasOwnProperty(k) && proto[k] === undefined) this[k] = opts[k];
  59. }
  60. }, base = Object,
  61. proto = klass.prototype = Object.create(base.prototype, {
  62. constructor: {
  63. value: klass
  64. }
  65. });
  66. // PROTOTYPE MEMBERS
  67. proto.isDocumentOk =
  68. proto.isTopLevel =
  69. proto.isInclusionOk = undefined;
  70. return klass;
  71. })();
  72. proto.removeFieldPrefix = function removeFieldPrefix(prefixedField) {
  73. if (prefixedField.indexOf("\0") !== -1) {
  74. // field path must not contain embedded null characters - 16419
  75. }
  76. if (prefixedField[0] !== '$') {
  77. // "field path references must be prefixed with a '$'"
  78. }
  79. return prefixedField.slice(1);
  80. };
  81. var KIND_UNKNOWN = 0,
  82. KIND_NOTOPERATOR = 1,
  83. KIND_OPERATOR = 2;
  84. /**
  85. * Parse an Object. The object could represent a functional expression or a Document expression.
  86. *
  87. * An object expression can take any of the following forms:
  88. *
  89. * f0: {f1: ..., f2: ..., f3: ...}
  90. * f0: {$operator:[operand1, operand2, ...]}
  91. *
  92. * @static
  93. * @method parseObject
  94. * @param obj the element representing the object
  95. * @param ctx a MiniCtx representing the options above
  96. * @returns the parsed Expression
  97. **/
  98. klass.parseObject = function parseObject(obj, ctx, vps) {
  99. if (!(ctx instanceof ObjectCtx)) throw new Error("ctx must be ObjectCtx");
  100. var kind = KIND_UNKNOWN,
  101. pExpression, // the result
  102. pExpressionObject; // the alt result
  103. if (obj === undefined || obj == {}) return new ObjectExpression();
  104. var fieldNames = Object.keys(obj);
  105. if (fieldNames.length === 0) { //NOTE: Added this for mongo 2.5 port of document sources. Should reconsider when porting the expressions themselves
  106. return new ObjectExpression();
  107. }
  108. for (var fieldCount = 0, n = fieldNames.length; fieldCount < n; ++fieldCount) {
  109. var pFieldName = fieldNames[fieldCount];
  110. if (pFieldName[0] === "$") {
  111. if (fieldCount !== 0)
  112. throw new Error("the operator must be the only field in a pipeline object (at '" + pFieldName + "'.; code 16410");
  113. if (ctx.isTopLevel)
  114. throw new Error("$expressions are not allowed at the top-level of $project; code 16404");
  115. kind = KIND_OPERATOR; //we've determined this "object" is an operator expression
  116. pExpression = Expression.parseExpression(pFieldName, obj[pFieldName], vps);
  117. } else {
  118. if (kind === KIND_OPERATOR)
  119. throw new Error("this object is already an operator expression, and can't be used as a document expression (at '" + pFieldName + "'.; code 15990");
  120. if (!ctx.isTopLevel && pFieldName.indexOf(".") != -1)
  121. throw new Error("dotted field names are only allowed at the top level; code 16405");
  122. if (pExpression === undefined) { // if it's our first time, create the document expression
  123. if (!ctx.isDocumentOk)
  124. throw new Error("document not allowed in this context"); // CW TODO error: document not allowed in this context
  125. pExpression = pExpressionObject = new ObjectExpression(); //check for top level?
  126. kind = KIND_NOTOPERATOR; //this "object" is not an operator expression
  127. }
  128. var fieldValue = obj[pFieldName];
  129. switch (typeof(fieldValue)) {
  130. case "object":
  131. // it's a nested document
  132. var subCtx = new ObjectCtx({
  133. isDocumentOk: ctx.isDocumentOk,
  134. isInclusionOk: ctx.isInclusionOk
  135. });
  136. pExpressionObject.addField(pFieldName, Expression.parseObject(fieldValue, subCtx, vps));
  137. break;
  138. case "string":
  139. // it's a renamed field // CW TODO could also be a constant
  140. var pathExpr = new FieldPathExpression.parse(fieldValue);
  141. pExpressionObject.addField(pFieldName, pathExpr);
  142. break;
  143. case "boolean":
  144. case "number":
  145. // it's an inclusion specification
  146. if (fieldValue) {
  147. if (!ctx.isInclusionOk)
  148. throw new Error("field inclusion is not allowed inside of $expressions; code 16420");
  149. pExpressionObject.includePath(pFieldName);
  150. } else {
  151. if (!(ctx.isTopLevel && fn == Document.ID_PROPERTY_NAME))
  152. throw new Error("The top-level " + Document.ID_PROPERTY_NAME + " field is the only field currently supported for exclusion; code 16406");
  153. pExpressionObject.excludeId = true;
  154. }
  155. break;
  156. default:
  157. throw new Error("disallowed field type " + (fieldValue ? fieldValue.constructor.name + ":" : "") + typeof(fieldValue) + " in object expression (at '" + pFieldName + "')");
  158. }
  159. }
  160. }
  161. return pExpression;
  162. };
  163. klass.expressionParserMap = {};
  164. klass.registerExpression = function registerExpression(key, parserFunc) {
  165. if (key in klass.expressionParserMap) {
  166. throw new Error("Duplicate expression registrarion for " + key);
  167. }
  168. klass.expressionParserMap[key] = parserFunc;
  169. return 0; // Should
  170. };
  171. /**
  172. * Parse a BSONElement Object which has already been determined to be functional expression.
  173. *
  174. * @static
  175. * @method parseExpression
  176. * @param opName the name of the (prefix) operator
  177. * @param obj the BSONElement to parse
  178. * @returns the parsed Expression
  179. **/
  180. klass.parseExpression = function parseExpression(exprKey, exprValue, vps) {
  181. if (!(exprKey in Expression.expressionParserMap)) {
  182. throw new Error("Invalid operator : " + exprKey);
  183. }
  184. return Expression.expressionParserMap[exprKey](exprValue, vps);
  185. };
  186. /**
  187. * Parse a BSONElement which is an operand in an Expression.
  188. *
  189. * @static
  190. * @param pBsonElement the expected operand's BSONElement
  191. * @returns the parsed operand, as an Expression
  192. **/
  193. klass.parseOperand = function parseOperand(exprElement, vps) {
  194. var t = typeof(exprElement);
  195. if (t === "string" && exprElement[0] == "$") { //if we got here, this is a field path expression
  196. return new FieldPathExpression.parse(exprElement, vps);
  197. } else
  198. if (t === "object" && exprElement && exprElement.constructor === Object)
  199. return Expression.parseObject(exprElement, new ObjectCtx({
  200. isDocumentOk: true
  201. }), vps);
  202. else return ConstantExpression.parse(exprElement, vps);
  203. };
  204. /**
  205. * Produce a field path string with the field prefix removed.
  206. * Throws an error if the field prefix is not present.
  207. *
  208. * @static
  209. * @param prefixedField the prefixed field
  210. * @returns the field path with the prefix removed
  211. **/
  212. klass.removeFieldPrefix = function removeFieldPrefix(prefixedField) {
  213. if (prefixedField.indexOf("\0") != -1) throw new Error("field path must not contain embedded null characters; code 16419");
  214. if (prefixedField[0] !== "$") throw new Error("field path references must be prefixed with a '$' ('" + prefixedField + "'); code 15982");
  215. return prefixedField.substr(1);
  216. };
  217. // PROTOTYPE MEMBERS
  218. /**
  219. * Evaluate the Expression using the given document as input.
  220. *
  221. * @method evaluate
  222. * @returns the computed value
  223. **/
  224. proto.evaluate = function evaluate(obj) {
  225. throw new Error("WAS NOT IMPLEMENTED BY INHERITOR!");
  226. };
  227. /**
  228. * Optimize the Expression.
  229. *
  230. * This provides an opportunity to do constant folding, or to collapse nested
  231. * operators that have the same precedence, such as $add, $and, or $or.
  232. *
  233. * The Expression should be replaced with the return value, which may or may
  234. * not be the same object. In the case of constant folding, a computed
  235. * expression may be replaced by a constant.
  236. *
  237. * @method optimize
  238. * @returns the optimized Expression
  239. **/
  240. proto.optimize = function optimize() {
  241. throw new Error("WAS NOT IMPLEMENTED BY INHERITOR!");
  242. };
  243. /**
  244. * Add this expression's field dependencies to the set Expressions are trees, so this is often recursive.
  245. *
  246. * Top-level ExpressionObject gets pointer to empty vector.
  247. * If any other Expression is an ancestor, or in other cases where {a:1} inclusion objects aren't allowed, they get NULL.
  248. *
  249. * @method addDependencies
  250. * @param deps output parameter
  251. * @param path path to self if all ancestors are ExpressionObjects.
  252. **/
  253. proto.addDependencies = function addDependencies(deps, path) {
  254. throw new Error("WAS NOT IMPLEMENTED BY INHERITOR!");
  255. };
  256. /**
  257. * simple expressions are just inclusion exclusion as supported by ExpressionObject
  258. * @method getIsSimple
  259. **/
  260. proto.getIsSimple = function getIsSimple() {
  261. return false;
  262. };
  263. proto.toMatcherBson = function toMatcherBson() {
  264. throw new Error("WAS NOT IMPLEMENTED BY INHERITOR!"); //verify(false && "Expression::toMatcherBson()");
  265. };