Expression.js 11 KB

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