Expression.js 11 KB

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