summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline
diff options
context:
space:
mode:
authormatt dannenberg <matt.dannenberg@10gen.com>2013-07-25 17:23:33 -0400
committermatt dannenberg <matt.dannenberg@10gen.com>2013-08-09 17:45:17 -0400
commitaf6828e05aaea88e181cad598cc1274e2838d25a (patch)
treeb7c139a5dfcad51e6a79c9b349e0da6419657c91 /src/mongo/db/pipeline
parenta3ac5c0d4548a259b55aae11440ade070bc66195 (diff)
downloadmongo-af6828e05aaea88e181cad598cc1274e2838d25a.tar.gz
all, any, and none expressions added to agg
also compile fixes from the previous commit..
Diffstat (limited to 'src/mongo/db/pipeline')
-rw-r--r--src/mongo/db/pipeline/expression.cpp95
-rw-r--r--src/mongo/db/pipeline/expression.h42
2 files changed, 125 insertions, 12 deletions
diff --git a/src/mongo/db/pipeline/expression.cpp b/src/mongo/db/pipeline/expression.cpp
index 9fa60525634..d121b99c4e0 100644
--- a/src/mongo/db/pipeline/expression.cpp
+++ b/src/mongo/db/pipeline/expression.cpp
@@ -256,7 +256,9 @@ namespace mongo {
*/
static const OpDesc OpTable[] = {
{"$add", ExpressionAdd::create, 0},
+ {"$all", ExpressionAll::create, OpDesc::FIXED_COUNT, 1},
{"$and", ExpressionAnd::create, 0},
+ {"$any", ExpressionAny::create, OpDesc::FIXED_COUNT, 1},
{"$cmp", ExpressionCompare::createCmp, OpDesc::FIXED_COUNT, 2},
{"$concat", ExpressionConcat::create, 0},
{"$cond", ExpressionCond::create, OpDesc::FIXED_COUNT, 3},
@@ -280,6 +282,7 @@ namespace mongo {
{"$month", ExpressionMonth::create, OpDesc::FIXED_COUNT, 1},
{"$multiply", ExpressionMultiply::create, 0},
{"$ne", ExpressionCompare::createNe, OpDesc::FIXED_COUNT, 2},
+ {"$none", ExpressionNone::create, OpDesc::FIXED_COUNT, 1},
{"$not", ExpressionNot::create, OpDesc::FIXED_COUNT, 1},
{"$or", ExpressionOr::create, 0},
{"$second", ExpressionSecond::create, OpDesc::FIXED_COUNT, 1},
@@ -467,6 +470,30 @@ namespace mongo {
return ExpressionAdd::create;
}
+ /* ------------------------- ExpressionAll -------------------------- */
+
+ intrusive_ptr<ExpressionNary> ExpressionAll::create() {
+ return new ExpressionAll();
+ }
+
+ Value ExpressionAll::evaluateInternal(const Variables& vars) const {
+ const Value arr = vpOperand[0]->evaluateInternal(vars);
+ uassert(17040, str::stream() << getOpName() << "'s argument must be an array, but is "
+ << typeName(arr.getType()),
+ arr.getType() == Array);
+ const vector<Value>& array = arr.getArray();
+ for (vector<Value>::const_iterator it = array.begin(); it != array.end(); ++it) {
+ if (!it->coerceToBool()) {
+ return Value(false);
+ }
+ }
+ return Value(true);
+ }
+
+ const char *ExpressionAll::getOpName() const {
+ return "$all";
+ }
+
/* ------------------------- ExpressionAnd ----------------------------- */
intrusive_ptr<ExpressionNary> ExpressionAnd::create() {
@@ -562,6 +589,30 @@ namespace mongo {
return ExpressionAnd::create;
}
+ /* ------------------------- ExpressionAny -------------------------- */
+
+ intrusive_ptr<ExpressionNary> ExpressionAny::create() {
+ return new ExpressionAny();
+ }
+
+ Value ExpressionAny::evaluateInternal(const Variables& vars) const {
+ const Value arr = vpOperand[0]->evaluateInternal(vars);
+ uassert(17041, str::stream() << getOpName() << "'s argument must be an array, but is "
+ << typeName(arr.getType()),
+ arr.getType() == Array);
+ const vector<Value>& array = arr.getArray();
+ for (vector<Value>::const_iterator it = array.begin(); it != array.end(); ++it) {
+ if (it->coerceToBool()) {
+ return Value(true);
+ }
+ }
+ return Value(false);
+ }
+
+ const char *ExpressionAny::getOpName() const {
+ return "$any";
+ }
+
/* -------------------- ExpressionCoerceToBool ------------------------- */
intrusive_ptr<ExpressionCoerceToBool> ExpressionCoerceToBool::create(
@@ -2196,6 +2247,30 @@ namespace mongo {
return Value(DOC(getOpName() << array));
}
+ /* ------------------------- ExpressionNone -------------------------- */
+
+ intrusive_ptr<ExpressionNary> ExpressionNone::create() {
+ return new ExpressionNone();
+ }
+
+ Value ExpressionNone::evaluateInternal(const Variables& vars) const {
+ const Value arr = vpOperand[0]->evaluateInternal(vars);
+ uassert(16964, str::stream() << getOpName() << "'s argument must be an array, but is "
+ << typeName(arr.getType()),
+ arr.getType() == Array);
+ const vector<Value>& array = arr.getArray();
+ for (vector<Value>::const_iterator it = array.begin(); it != array.end(); ++it) {
+ if (it->coerceToBool()) {
+ return Value(false);
+ }
+ }
+ return Value(true);
+ }
+
+ const char *ExpressionNone::getOpName() const {
+ return "$none";
+ }
+
/* ------------------------- ExpressionNot ----------------------------- */
intrusive_ptr<ExpressionNary> ExpressionNot::create() {
@@ -2336,12 +2411,10 @@ namespace mongo {
}
void ExpressionSetDifference::addOperand(const intrusive_ptr<Expression> &pExpression) {
- checkArgLimit(2);
ExpressionNary::addOperand(pExpression);
}
Value ExpressionSetDifference::evaluateInternal(const Variables& vars) const {
- checkArgCount(2);
const Value lhs = vpOperand[0]->evaluateInternal(vars);
const Value rhs = vpOperand[1]->evaluateInternal(vars);
@@ -2349,10 +2422,10 @@ namespace mongo {
return Value(BSONNULL);
}
- uassert(16962, str::stream() << "both operands of $setDifference must be arrays. First "
+ uassert(17048, str::stream() << "both operands of $setDifference must be arrays. First "
<< "argument is of type: " << lhs.getType(),
lhs.getType() == Array);
- uassert(16963, str::stream() << "both operands of $setDifference must be arrays. Second "
+ uassert(17049, str::stream() << "both operands of $setDifference must be arrays. Second "
<< "argument is of type: " << rhs.getType(),
rhs.getType() == Array);
@@ -2380,13 +2453,13 @@ namespace mongo {
Value ExpressionSetEquals::evaluateInternal(const Variables& vars) const {
const size_t n = vpOperand.size();
- uassert(16974, str::stream() << "$setEquals needs at least two arguments had: " << n,
+ uassert(17045, str::stream() << "$setEquals needs at least two arguments had: " << n,
n >= 2);
std::set<Value> lhs;
for (size_t i = 0; i < n; i++) {
const Value nextEntry = vpOperand[i]->evaluateInternal(vars);
- uassert(16971, str::stream() << "All operands of $setIntersection must be arrays. One "
+ uassert(17044, str::stream() << "All operands of $setIntersection must be arrays. One "
<< "argument is of type: " << nextEntry.getType(),
nextEntry.getType() == Array);
@@ -2421,7 +2494,7 @@ namespace mongo {
if (nextEntry.nullish()) {
return Value(BSONNULL);
}
- uassert(16966, str::stream() << "All operands of $setIntersection must be arrays. One "
+ uassert(17047, str::stream() << "All operands of $setIntersection must be arrays. One "
<< "argument is of type: " << nextEntry.getType(),
nextEntry.getType() == Array);
@@ -2467,19 +2540,17 @@ namespace mongo {
}
void ExpressionSetIsSubset::addOperand(const intrusive_ptr<Expression> &pExpression) {
- checkArgLimit(2);
ExpressionNary::addOperand(pExpression);
}
Value ExpressionSetIsSubset::evaluateInternal(const Variables& vars) const {
- checkArgCount(2);
const Value lhs = vpOperand[0]->evaluateInternal(vars);
const Value rhs = vpOperand[1]->evaluateInternal(vars);
- uassert(16968, str::stream() << "both operands of $setIsSubset must be arrays. First "
+ uassert(17046, str::stream() << "both operands of $setIsSubset must be arrays. First "
<< "argument is of type: " << lhs.getType(),
lhs.getType() == Array);
- uassert(16969, str::stream() << "both operands of $setIsSubset must be arrays. Second "
+ uassert(17042, str::stream() << "both operands of $setIsSubset must be arrays. Second "
<< "argument is of type: " << rhs.getType(),
rhs.getType() == Array);
@@ -2515,7 +2586,7 @@ namespace mongo {
if (newEntries.nullish()) {
return Value(BSONNULL);
}
- uassert(16970, str::stream() << "All operands of $setUnion must be arrays. One argument"
+ uassert(17043, str::stream() << "All operands of $setUnion must be arrays. One argument"
<< " is of type: " << newEntries.getType(),
newEntries.getType() == Array);
diff --git a/src/mongo/db/pipeline/expression.h b/src/mongo/db/pipeline/expression.h
index 13dc3cc5245..9b68c4a2ddf 100644
--- a/src/mongo/db/pipeline/expression.h
+++ b/src/mongo/db/pipeline/expression.h
@@ -283,6 +283,20 @@ namespace mongo {
};
+ class ExpressionAll :
+ public ExpressionNary {
+ public:
+ // virtuals from ExpressionNary
+ virtual Value evaluateInternal(const Variables& vars) const;
+ virtual const char *getOpName() const;
+
+ static intrusive_ptr<ExpressionNary> create();
+
+ private:
+ ExpressionAll() {}
+ };
+
+
class ExpressionAnd :
public ExpressionNary {
public:
@@ -311,6 +325,20 @@ namespace mongo {
};
+ class ExpressionAny :
+ public ExpressionNary {
+ public:
+ // virtuals from ExpressionNary
+ virtual Value evaluateInternal(const Variables& vars) const;
+ virtual const char *getOpName() const;
+
+ static intrusive_ptr<ExpressionNary> create();
+
+ private:
+ ExpressionAny() {};
+ };
+
+
class ExpressionCoerceToBool :
public Expression {
public:
@@ -754,6 +782,20 @@ namespace mongo {
};
+ class ExpressionNone :
+ public ExpressionNary {
+ public:
+ // virtuals from ExpressionNary
+ virtual Value evaluateInternal(const Variables& vars) const;
+ virtual const char *getOpName() const;
+
+ static intrusive_ptr<ExpressionNary> create();
+
+ private:
+ ExpressionNone() {}
+ };
+
+
class ExpressionNot :
public ExpressionNary {
public: