summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression_array.cpp
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2015-06-20 00:22:50 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2015-06-20 10:56:02 -0400
commit9c2ed42daa8fbbef4a919c21ec564e2db55e8d60 (patch)
tree3814f79c10d7b490948d8cb7b112ac1dd41ceff1 /src/mongo/db/matcher/expression_array.cpp
parent01965cf52bce6976637ecb8f4a622aeb05ab256a (diff)
downloadmongo-9c2ed42daa8fbbef4a919c21ec564e2db55e8d60.tar.gz
SERVER-18579: Clang-Format - reformat code, no comment reflow
Diffstat (limited to 'src/mongo/db/matcher/expression_array.cpp')
-rw-r--r--src/mongo/db/matcher/expression_array.cpp322
1 files changed, 160 insertions, 162 deletions
diff --git a/src/mongo/db/matcher/expression_array.cpp b/src/mongo/db/matcher/expression_array.cpp
index 265ac57956c..4ca68653e3d 100644
--- a/src/mongo/db/matcher/expression_array.cpp
+++ b/src/mongo/db/matcher/expression_array.cpp
@@ -35,224 +35,222 @@
namespace mongo {
- Status ArrayMatchingMatchExpression::initPath( StringData path ) {
- _path = path;
- Status s = _elementPath.init( _path );
- _elementPath.setTraverseLeafArray( false );
- return s;
- }
+Status ArrayMatchingMatchExpression::initPath(StringData path) {
+ _path = path;
+ Status s = _elementPath.init(_path);
+ _elementPath.setTraverseLeafArray(false);
+ return s;
+}
- bool ArrayMatchingMatchExpression::matches( const MatchableDocument* doc, MatchDetails* details ) const {
- MatchableDocument::IteratorHolder cursor( doc, &_elementPath );
+bool ArrayMatchingMatchExpression::matches(const MatchableDocument* doc,
+ MatchDetails* details) const {
+ MatchableDocument::IteratorHolder cursor(doc, &_elementPath);
- while ( cursor->more() ) {
- ElementIterator::Context e = cursor->next();
- if ( e.element().type() != Array )
- continue;
+ while (cursor->more()) {
+ ElementIterator::Context e = cursor->next();
+ if (e.element().type() != Array)
+ continue;
- bool amIRoot = e.arrayOffset().eoo();
+ bool amIRoot = e.arrayOffset().eoo();
- if ( !matchesArray( e.element().Obj(), amIRoot ? details : NULL ) )
- continue;
+ if (!matchesArray(e.element().Obj(), amIRoot ? details : NULL))
+ continue;
- if ( !amIRoot && details && details->needRecord() && !e.arrayOffset().eoo() ) {
- details->setElemMatchKey( e.arrayOffset().fieldName() );
- }
- return true;
+ if (!amIRoot && details && details->needRecord() && !e.arrayOffset().eoo()) {
+ details->setElemMatchKey(e.arrayOffset().fieldName());
}
- return false;
+ return true;
}
+ return false;
+}
- bool ArrayMatchingMatchExpression::matchesSingleElement( const BSONElement& e ) const {
- if ( e.type() != Array )
- return false;
- return matchesArray( e.Obj(), NULL );
- }
+bool ArrayMatchingMatchExpression::matchesSingleElement(const BSONElement& e) const {
+ if (e.type() != Array)
+ return false;
+ return matchesArray(e.Obj(), NULL);
+}
- bool ArrayMatchingMatchExpression::equivalent( const MatchExpression* other ) const {
- if ( matchType() != other->matchType() )
- return false;
+bool ArrayMatchingMatchExpression::equivalent(const MatchExpression* other) const {
+ if (matchType() != other->matchType())
+ return false;
- const ArrayMatchingMatchExpression* realOther =
- static_cast<const ArrayMatchingMatchExpression*>( other );
+ const ArrayMatchingMatchExpression* realOther =
+ static_cast<const ArrayMatchingMatchExpression*>(other);
- if ( _path != realOther->_path )
- return false;
+ if (_path != realOther->_path)
+ return false;
- if ( numChildren() != realOther->numChildren() )
- return false;
+ if (numChildren() != realOther->numChildren())
+ return false;
- for ( unsigned i = 0; i < numChildren(); i++ )
- if ( !getChild(i)->equivalent( realOther->getChild(i) ) )
- return false;
- return true;
- }
+ for (unsigned i = 0; i < numChildren(); i++)
+ if (!getChild(i)->equivalent(realOther->getChild(i)))
+ return false;
+ return true;
+}
- // -------
+// -------
- Status ElemMatchObjectMatchExpression::init( StringData path, MatchExpression* sub ) {
- _sub.reset( sub );
- return initPath( path );
- }
+Status ElemMatchObjectMatchExpression::init(StringData path, MatchExpression* sub) {
+ _sub.reset(sub);
+ return initPath(path);
+}
- bool ElemMatchObjectMatchExpression::matchesArray( const BSONObj& anArray, MatchDetails* details ) const {
- BSONObjIterator i( anArray );
- while ( i.more() ) {
- BSONElement inner = i.next();
- if ( !inner.isABSONObj() )
- continue;
- if ( _sub->matchesBSON( inner.Obj(), NULL ) ) {
- if ( details && details->needRecord() ) {
- details->setElemMatchKey( inner.fieldName() );
- }
- return true;
+bool ElemMatchObjectMatchExpression::matchesArray(const BSONObj& anArray,
+ MatchDetails* details) const {
+ BSONObjIterator i(anArray);
+ while (i.more()) {
+ BSONElement inner = i.next();
+ if (!inner.isABSONObj())
+ continue;
+ if (_sub->matchesBSON(inner.Obj(), NULL)) {
+ if (details && details->needRecord()) {
+ details->setElemMatchKey(inner.fieldName());
}
+ return true;
}
- return false;
}
+ return false;
+}
- void ElemMatchObjectMatchExpression::debugString( StringBuilder& debug, int level ) const {
- _debugAddSpace( debug, level );
- debug << path() << " $elemMatch (obj)";
+void ElemMatchObjectMatchExpression::debugString(StringBuilder& debug, int level) const {
+ _debugAddSpace(debug, level);
+ debug << path() << " $elemMatch (obj)";
- MatchExpression::TagData* td = getTag();
- if (NULL != td) {
- debug << " ";
- td->debugString(&debug);
- }
- debug << "\n";
- _sub->debugString( debug, level + 1 );
+ MatchExpression::TagData* td = getTag();
+ if (NULL != td) {
+ debug << " ";
+ td->debugString(&debug);
}
+ debug << "\n";
+ _sub->debugString(debug, level + 1);
+}
- void ElemMatchObjectMatchExpression::toBSON(BSONObjBuilder* out) const {
- BSONObjBuilder subBob;
- _sub->toBSON(&subBob);
- if (path().empty()) {
- out->append("$elemMatch", subBob.obj());
- }
- else {
- out->append(path(), BSON("$elemMatch" << subBob.obj()));
- }
+void ElemMatchObjectMatchExpression::toBSON(BSONObjBuilder* out) const {
+ BSONObjBuilder subBob;
+ _sub->toBSON(&subBob);
+ if (path().empty()) {
+ out->append("$elemMatch", subBob.obj());
+ } else {
+ out->append(path(), BSON("$elemMatch" << subBob.obj()));
}
+}
- // -------
+// -------
- ElemMatchValueMatchExpression::~ElemMatchValueMatchExpression() {
- for ( unsigned i = 0; i < _subs.size(); i++ )
- delete _subs[i];
- _subs.clear();
- }
+ElemMatchValueMatchExpression::~ElemMatchValueMatchExpression() {
+ for (unsigned i = 0; i < _subs.size(); i++)
+ delete _subs[i];
+ _subs.clear();
+}
- Status ElemMatchValueMatchExpression::init( StringData path, MatchExpression* sub ) {
- init( path );
- add( sub );
- return Status::OK();
- }
+Status ElemMatchValueMatchExpression::init(StringData path, MatchExpression* sub) {
+ init(path);
+ add(sub);
+ return Status::OK();
+}
- Status ElemMatchValueMatchExpression::init( StringData path ) {
- return initPath( path );
- }
+Status ElemMatchValueMatchExpression::init(StringData path) {
+ return initPath(path);
+}
- void ElemMatchValueMatchExpression::add( MatchExpression* sub ) {
- verify( sub );
- _subs.push_back( sub );
- }
+void ElemMatchValueMatchExpression::add(MatchExpression* sub) {
+ verify(sub);
+ _subs.push_back(sub);
+}
- bool ElemMatchValueMatchExpression::matchesArray( const BSONObj& anArray, MatchDetails* details ) const {
- BSONObjIterator i( anArray );
- while ( i.more() ) {
- BSONElement inner = i.next();
+bool ElemMatchValueMatchExpression::matchesArray(const BSONObj& anArray,
+ MatchDetails* details) const {
+ BSONObjIterator i(anArray);
+ while (i.more()) {
+ BSONElement inner = i.next();
- if ( _arrayElementMatchesAll( inner ) ) {
- if ( details && details->needRecord() ) {
- details->setElemMatchKey( inner.fieldName() );
- }
- return true;
+ if (_arrayElementMatchesAll(inner)) {
+ if (details && details->needRecord()) {
+ details->setElemMatchKey(inner.fieldName());
}
+ return true;
}
- return false;
}
+ return false;
+}
- bool ElemMatchValueMatchExpression::_arrayElementMatchesAll( const BSONElement& e ) const {
- for ( unsigned i = 0; i < _subs.size(); i++ ) {
- if ( !_subs[i]->matchesSingleElement( e ) )
- return false;
- }
- return true;
+bool ElemMatchValueMatchExpression::_arrayElementMatchesAll(const BSONElement& e) const {
+ for (unsigned i = 0; i < _subs.size(); i++) {
+ if (!_subs[i]->matchesSingleElement(e))
+ return false;
}
+ return true;
+}
- void ElemMatchValueMatchExpression::debugString( StringBuilder& debug, int level ) const {
- _debugAddSpace( debug, level );
- debug << path() << " $elemMatch (value)";
+void ElemMatchValueMatchExpression::debugString(StringBuilder& debug, int level) const {
+ _debugAddSpace(debug, level);
+ debug << path() << " $elemMatch (value)";
- MatchExpression::TagData* td = getTag();
- if (NULL != td) {
- debug << " ";
- td->debugString(&debug);
- }
- debug << "\n";
- for ( unsigned i = 0; i < _subs.size(); i++ ) {
- _subs[i]->debugString( debug, level + 1 );
- }
+ MatchExpression::TagData* td = getTag();
+ if (NULL != td) {
+ debug << " ";
+ td->debugString(&debug);
}
-
- void ElemMatchValueMatchExpression::toBSON(BSONObjBuilder* out) const {
- BSONObjBuilder emBob;
- for ( unsigned i = 0; i < _subs.size(); i++ ) {
- _subs[i]->toBSON(&emBob);
- }
- if (path().empty()) {
- out->append("$elemMatch", emBob.obj());
- }
- else {
- out->append(path(), BSON("$elemMatch" << emBob.obj()));
- }
+ debug << "\n";
+ for (unsigned i = 0; i < _subs.size(); i++) {
+ _subs[i]->debugString(debug, level + 1);
}
+}
-
- // ---------
-
- Status SizeMatchExpression::init( StringData path, int size ) {
- _size = size;
- return initPath( path );
+void ElemMatchValueMatchExpression::toBSON(BSONObjBuilder* out) const {
+ BSONObjBuilder emBob;
+ for (unsigned i = 0; i < _subs.size(); i++) {
+ _subs[i]->toBSON(&emBob);
}
-
- bool SizeMatchExpression::matchesArray( const BSONObj& anArray, MatchDetails* details ) const {
- if ( _size < 0 )
- return false;
- return anArray.nFields() == _size;
+ if (path().empty()) {
+ out->append("$elemMatch", emBob.obj());
+ } else {
+ out->append(path(), BSON("$elemMatch" << emBob.obj()));
}
+}
- void SizeMatchExpression::debugString( StringBuilder& debug, int level ) const {
- _debugAddSpace( debug, level );
- debug << path() << " $size : " << _size << "\n";
- MatchExpression::TagData* td = getTag();
- if (NULL != td) {
- debug << " ";
- td->debugString(&debug);
- }
- }
+// ---------
- void SizeMatchExpression::toBSON(BSONObjBuilder* out) const {
- out->append(path(), BSON("$size" << _size));
- }
+Status SizeMatchExpression::init(StringData path, int size) {
+ _size = size;
+ return initPath(path);
+}
- bool SizeMatchExpression::equivalent( const MatchExpression* other ) const {
- if ( matchType() != other->matchType() )
- return false;
+bool SizeMatchExpression::matchesArray(const BSONObj& anArray, MatchDetails* details) const {
+ if (_size < 0)
+ return false;
+ return anArray.nFields() == _size;
+}
+
+void SizeMatchExpression::debugString(StringBuilder& debug, int level) const {
+ _debugAddSpace(debug, level);
+ debug << path() << " $size : " << _size << "\n";
- const SizeMatchExpression* realOther = static_cast<const SizeMatchExpression*>( other );
- return path() == realOther->path() && _size == realOther->_size;
+ MatchExpression::TagData* td = getTag();
+ if (NULL != td) {
+ debug << " ";
+ td->debugString(&debug);
}
+}
+void SizeMatchExpression::toBSON(BSONObjBuilder* out) const {
+ out->append(path(), BSON("$size" << _size));
+}
- // ------------------
+bool SizeMatchExpression::equivalent(const MatchExpression* other) const {
+ if (matchType() != other->matchType())
+ return false;
+ const SizeMatchExpression* realOther = static_cast<const SizeMatchExpression*>(other);
+ return path() == realOther->path() && _size == realOther->_size;
+}
+// ------------------
}