// query.cpp /** * Copyright (C) 2008 10gen Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ #include "stdafx.h" #include "query.h" #include "pdfile.h" #include "jsobjmanipulator.h" #include "../util/builder.h" #include #include "introspect.h" #include "btree.h" #include "../util/lruishmap.h" #include "javajs.h" #include "json.h" #include "repl.h" #include "replset.h" #include "scanandorder.h" #include "security.h" #include "curop.h" #include "commands.h" #include "queryoptimizer.h" namespace mongo { /* We cut off further objects once we cross this threshold; thus, you might get a little bit more than this, it is a threshold rather than a limit. */ const int MaxBytesToReturnToClientAtOnce = 4 * 1024 * 1024; //ns->query->DiskLoc LRUishMap lrutest(123); extern bool useCursors; // Just try to identify best plan. class DeleteOp : public QueryOp { public: DeleteOp( bool justOne, int& bestCount ) : justOne_( justOne ), count_(), bestCount_( bestCount ), nScanned_() { } virtual void init() { c_ = qp().newCursor(); matcher_.reset( new JSMatcher( qp().query() ) ); } virtual void next() { if ( !c_->ok() ) { setComplete(); return; } Record *r = c_->_current(); DiskLoc rloc = c_->currLoc(); BSONObj js(r); bool deep; if ( matcher_->matches(js, &deep) ) { if ( !deep || !c_->getsetdup(rloc) ) ++count_; } c_->advance(); ++nScanned_; if ( count_ > bestCount_ ) bestCount_ = count_; if ( count_ > 0 ) { if ( justOne_ ) setComplete(); else if ( nScanned_ >= 100 && count_ == bestCount_ ) setComplete(); } } virtual bool mayRecordPlan() const { return !justOne_; } virtual QueryOp *clone() const { return new DeleteOp( justOne_, bestCount_ ); } auto_ptr< Cursor > newCursor() const { return qp().newCursor(); } private: bool justOne_; int count_; int &bestCount_; int nScanned_; auto_ptr< Cursor > c_; auto_ptr< JSMatcher > matcher_; }; /* ns: namespace, e.g. . pattern: the "where" clause / criteria justOne: stop after 1 match */ int deleteObjects(const char *ns, BSONObj pattern, bool justOne, BSONObj *deletedId, bool god) { if ( strstr(ns, ".system.") && !god ) { /* note a delete from system.indexes would corrupt the db if done here, as there are pointers into those objects in NamespaceDetails. */ if( strstr(ns, ".system.users") ) ; else { out() << "ERROR: attempt to delete in system namespace " << ns << endl; return -1; } } int nDeleted = 0; QueryPlanSet s( ns, pattern, emptyObj ); int best = 0; DeleteOp original( justOne, best ); shared_ptr< DeleteOp > bestOp = s.runOp( original ); auto_ptr< Cursor > c = bestOp->newCursor(); if( !c->ok() ) return nDeleted; JSMatcher matcher(pattern); do { Record *r = c->_current(); DiskLoc rloc = c->currLoc(); BSONObj js(r); bool deep; if ( !matcher.matches(js, &deep) ) { c->advance(); // advance must be after noMoreMatches() because it uses currKey() } else { c->advance(); // must advance before deleting as the next ptr will die assert( !deep || !c->getsetdup(rloc) ); // can't be a dup, we deleted it! if ( !justOne ) c->noteLocation(); theDataFileMgr.deleteRecord(ns, r, rloc); nDeleted++; if ( justOne ) { if ( deletedId ) { BSONElement e; if( js.getObjectID( e ) ) { BSONObjBuilder b; b.append( e ); *deletedId = b.obj(); } } break; } c->checkLocation(); } } while ( c->ok() ); return nDeleted; } struct Mod { enum Op { INC, SET } op; const char *fieldName; double *ndouble; int *nint; void setn(double n) { if ( ndouble ) *ndouble = n; else *nint = (int) n; } double getn() { return ndouble ? *ndouble : *nint; } int type; static void getMods(vector& mods, BSONObj from); static void applyMods(vector& mods, BSONObj obj); }; void Mod::applyMods(vector& mods, BSONObj obj) { for ( vector::iterator i = mods.begin(); i != mods.end(); i++ ) { Mod& m = *i; BSONElement e = obj.getFieldDotted(m.fieldName); if ( e.isNumber() ) { if ( m.op == INC ) { BSONElementManipulator( e ).setNumber( e.number() + m.getn() ); m.setn( e.number() ); // *m.n = e.number() += *m.n; } else { BSONElementManipulator( e ).setNumber( m.getn() ); // $set or $SET } } } } /* get special operations like $inc { $inc: { a:1, b:1 } } { $set: { a:77 } } NOTE: MODIFIES source from object! */ void Mod::getMods(vector& mods, BSONObj from) { BSONObjIterator it(from); while ( it.more() ) { BSONElement e = it.next(); if ( e.eoo() ) break; const char *fn = e.fieldName(); uassert( "Invalid modifier specified", *fn == '$' && e.type() == Object && fn[4] == 0 ); BSONObj j = e.embeddedObject(); BSONObjIterator jt(j); Op op = Mod::SET; if ( strcmp("$inc",fn) == 0 ) { op = Mod::INC; strcpy((char *) fn, "$set"); } else { uassert( "Invalid modifier specified", strcmp("$set",fn ) == 0 ); } while ( jt.more() ) { BSONElement f = jt.next(); if ( f.eoo() ) break; Mod m; m.op = op; m.fieldName = f.fieldName(); uassert( "Mod on _id not allowed", strcmp( m.fieldName, "_id" ) != 0 ); for ( vector::iterator i = mods.begin(); i != mods.end(); i++ ) { uassert( "Field name duplication not allowed with modifiers", strcmp( m.fieldName, i->fieldName ) != 0 ); } uassert( "Modifiers allowed for numbers only", f.isNumber() ); if ( f.type() == NumberDouble ) { m.ndouble = (double *) f.value(); m.nint = 0; } else { m.ndouble = 0; m.nint = (int *) f.value(); } mods.push_back( m ); } } } void checkNoMods( BSONObj o ) { BSONObjIterator i( o ); while( i.more() ) { BSONElement e = i.next(); if ( e.eoo() ) break; massert( "Modifiers and non-modifiers cannot be mixed", e.fieldName()[ 0 ] != '$' ); } } class UpdateOp : public QueryOp { public: UpdateOp() : nscanned_() {} virtual void init() { BSONObj pattern = qp().query(); c_ = qp().newCursor(); if ( !c_->ok() ) setComplete(); else matcher_.reset( new JSMatcher( pattern ) ); } virtual void next() { if ( !c_->ok() ) { setComplete(); return; } Record *r = c_->_current(); nscanned_++; BSONObj js(r); if ( matcher_->matches(js) ) { setComplete(); return; } c_->advance(); } virtual bool mayRecordPlan() const { return false; } virtual QueryOp *clone() const { return new UpdateOp(); } auto_ptr< Cursor > c() { return c_; } int nscanned() const { return nscanned_; } private: auto_ptr< Cursor > c_; int nscanned_; auto_ptr< JSMatcher > matcher_; }; int __updateObjects(const char *ns, BSONObj updateobj, BSONObj &pattern, bool upsert, stringstream& ss, bool logop=false) { int profile = database->profile; if ( strstr(ns, ".system.") ) { if( strstr(ns, ".system.users") ) ; else { out() << "\nERROR: attempt to update in system namespace " << ns << endl; ss << " can't update system namespace "; return 0; } } QueryPlanSet qps( ns, pattern, emptyObj ); UpdateOp original; shared_ptr< UpdateOp > u = qps.runOp( original ); massert( u->exceptionMessage(), u->complete() ); auto_ptr< Cursor > c = u->c(); if ( c->ok() ) { Record *r = c->_current(); BSONObj js(r); if ( logop ) { BSONObjBuilder idPattern; BSONElement id; // NOTE: If the matching object lacks an id, we'll log // with the original pattern. This isn't replay-safe. // It might make sense to suppress the log instead // if there's no id. if ( js.getObjectID( id ) ) { idPattern.append( id ); pattern = idPattern.obj(); } } /* note: we only update one row and quit. if you do multiple later, be careful or multikeys in arrays could break things badly. best to only allow updating a single row with a multikey lookup. */ if ( profile ) ss << " nscanned:" << u->nscanned(); /* look for $inc etc. note as listed here, all fields to inc must be this type, you can't set some regular ones at the moment. */ const char *firstField = updateobj.firstElement().fieldName(); if ( firstField[0] == '$' ) { vector mods; Mod::getMods(mods, updateobj); NamespaceDetailsTransient& ndt = NamespaceDetailsTransient::get(ns); set& idxKeys = ndt.indexKeys(); for ( vector::iterator i = mods.begin(); i != mods.end(); i++ ) { if ( idxKeys.count(i->fieldName) ) { uassert("can't $inc/$set an indexed field", false); } } Mod::applyMods(mods, c->currLoc().obj()); if ( profile ) ss << " fastmod "; if ( logop ) { if ( mods.size() ) { logOp("u", ns, updateobj, &pattern, &upsert); return 5; } } return 2; } else { BSONElementManipulator::lookForTimestamps( updateobj ); checkNoMods( updateobj ); } theDataFileMgr.update(ns, r, c->currLoc(), updateobj.objdata(), updateobj.objsize(), ss); return 1; } if ( profile ) ss << " nscanned:" << u->nscanned(); if ( upsert ) { if ( updateobj.firstElement().fieldName()[0] == '$' ) { /* upsert of an $inc. build a default */ vector mods; Mod::getMods(mods, updateobj); BSONObjBuilder b; BSONObjIterator i( pattern ); while( i.more() ) { BSONElement e = i.next(); if ( e.eoo() ) break; // Presumably the number of mods is small, so this loop isn't too expensive. for( vector::iterator i = mods.begin(); i != mods.end(); ++i ) { if ( strcmp( e.fieldName(), i->fieldName ) == 0 ) continue; b.append( e ); } } for ( vector::iterator i = mods.begin(); i != mods.end(); i++ ) b.append(i->fieldName, i->getn()); BSONObj obj = b.done(); theDataFileMgr.insert(ns, obj); if ( profile ) ss << " fastmodinsert "; if ( logop ) logOp( "i", ns, obj ); return 3; } if ( profile ) ss << " upsert "; theDataFileMgr.insert(ns, updateobj); if ( logop ) logOp( "i", ns, updateobj ); return 4; } return 0; } /* todo: _ smart requery find record immediately returns: 2: we did applyMods() but didn't logOp() 5: we did applyMods() and did logOp() (so don't do it again) (clean these up later...) */ int _updateObjects(const char *ns, BSONObj updateobj, BSONObj pattern, bool upsert, stringstream& ss, bool logop=false) { return __updateObjects( ns, updateobj, pattern, upsert, ss, logop ); } void updateObjects(const char *ns, BSONObj updateobj, BSONObj pattern, bool upsert, stringstream& ss) { int rc = __updateObjects(ns, updateobj, pattern, upsert, ss, true); if ( rc != 5 && rc != 0 && rc != 4 && rc != 3 ) logOp("u", ns, updateobj, &pattern, &upsert); } int queryTraceLevel = 0; int otherTraceLevel = 0; int initialExtentSize(int len); bool runCommands(const char *ns, BSONObj& jsobj, stringstream& ss, BufBuilder &b, BSONObjBuilder& anObjBuilder, bool fromRepl, int queryOptions) { try { return _runCommands(ns, jsobj, ss, b, anObjBuilder, fromRepl, queryOptions); } catch ( AssertionException e ) { if ( !e.msg.empty() ) anObjBuilder.append("assertion", e.msg); } ss << " assertion "; anObjBuilder.append("errmsg", "db assertion failure"); anObjBuilder.append("ok", 0.0); BSONObj x = anObjBuilder.done(); b.append((void*) x.objdata(), x.objsize()); return true; } int nCaught = 0; void killCursors(int n, long long *ids) { int k = 0; for ( int i = 0; i < n; i++ ) { if ( ClientCursor::erase(ids[i]) ) k++; } log() << "killCursors: found " << k << " of " << n << '\n'; } BSONObj id_obj = fromjson("{\"_id\":ObjectId( \"000000000000000000000000\" )}"); BSONObj empty_obj = fromjson("{}"); /* This is for languages whose "objects" are not well ordered (JSON is well ordered). [ { a : ... } , { b : ... } ] -> { a : ..., b : ... } */ inline BSONObj transformOrderFromArrayFormat(BSONObj order) { /* note: this is slow, but that is ok as order will have very few pieces */ BSONObjBuilder b; char p[2] = "0"; while ( 1 ) { BSONObj j = order.getObjectField(p); if ( j.isEmpty() ) break; BSONElement e = j.firstElement(); uassert("bad order array", !e.eoo()); uassert("bad order array [2]", e.isNumber()); b.append(e); (*p)++; uassert("too many ordering elements", *p <= '9'); } return b.obj(); } //int dump = 0; /* empty result for error conditions */ QueryResult* emptyMoreResult(long long cursorid) { BufBuilder b(32768); b.skip(sizeof(QueryResult)); QueryResult *qr = (QueryResult *) b.buf(); qr->cursorId = 0; // 0 indicates no more data to retrieve. qr->startingFrom = 0; qr->len = b.len(); qr->setOperation(opReply); qr->nReturned = 0; b.decouple(); return qr; } QueryResult* getMore(const char *ns, int ntoreturn, long long cursorid) { BufBuilder b(32768); ClientCursor *cc = ClientCursor::find(cursorid); b.skip(sizeof(QueryResult)); int resultFlags = 0; int start = 0; int n = 0; if ( !cc ) { DEV log() << "getMore: cursorid not found " << ns << " " << cursorid << endl; cursorid = 0; resultFlags = QueryResult::ResultFlag_CursorNotFound; } else { start = cc->pos; Cursor *c = cc->c.get(); c->checkLocation(); c->tailResume(); while ( 1 ) { if ( !c->ok() ) { if ( c->tailing() ) { c->setAtTail(); break; } DEV log() << " getmore: last batch, erasing cursor " << cursorid << endl; bool ok = ClientCursor::erase(cursorid); assert(ok); cursorid = 0; cc = 0; break; } BSONObj js = c->current(); bool deep; if ( !cc->matcher->matches(js, &deep) ) { } else { //out() << "matches " << c->currLoc().toString() << ' ' << deep << '\n'; if ( deep && c->getsetdup(c->currLoc()) ) { //out() << " but it's a dup \n"; } else { bool ok = fillQueryResultFromObj(b, cc->filter.get(), js); if ( ok ) { n++; if ( (ntoreturn>0 && (n >= ntoreturn || b.len() > MaxBytesToReturnToClientAtOnce)) || (ntoreturn==0 && b.len()>1*1024*1024) ) { c->advance(); if ( c->tailing() && !c->ok() ) c->setAtTail(); cc->pos += n; //cc->updateLocation(); break; } } } } c->advance(); } if ( cc ) cc->updateLocation(); } QueryResult *qr = (QueryResult *) b.buf(); qr->len = b.len(); qr->setOperation(opReply); qr->resultFlags() = resultFlags; qr->cursorId = cursorid; qr->startingFrom = start; qr->nReturned = n; b.decouple(); return qr; } class CountOp : public QueryOp { public: CountOp( const BSONObj &spec ) : spec_( spec ), count_(), bc_() {} virtual void init() { query_ = spec_.getObjectField( "query" ); spec_.getObjectField( "fields" ).getFieldNames( fields_ ); c_ = qp().newCursor(); if ( qp().exactKeyMatch() && fields_.empty() ) bc_ = dynamic_cast< BtreeCursor* >( c_.get() ); else matcher_.reset( new KeyValJSMatcher( query_, c_->indexKeyPattern() ) ); } virtual void next() { if ( !c_->ok() ) { setComplete(); return; } if ( bc_ ) { if ( firstMatch_.isEmpty() ) { firstMatch_ = bc_->currKeyNode().key; // if not match if ( query_.woCompare( firstMatch_, BSONObj(), false ) ) { setComplete(); return; } ++count_; } else { if ( !firstMatch_.woEqual( bc_->currKeyNode().key ) ) { setComplete(); return; } ++count_; } } else { bool deep; if ( !matcher_->matches(c_->currKey(), c_->currLoc(), &deep) ) { } else if ( !deep || !c_->getsetdup(c_->currLoc()) ) { // i.e., check for dups on deep items only bool match = true; if ( !fields_.empty() ) { BSONObj js = c_->current(); for( set< string >::iterator i = fields_.begin(); i != fields_.end(); ++i ) { if ( js.getFieldDotted( i->c_str() ).eoo() ) { match = false; break; } } } if ( match ) ++count_; } } c_->advance(); } virtual QueryOp *clone() const { return new CountOp( spec_ ); } int count() const { return count_; } virtual bool mayRecordPlan() const { return true; } private: BSONObj spec_; int count_; auto_ptr< Cursor > c_; BSONObj query_; set< string > fields_; BtreeCursor *bc_; auto_ptr< KeyValJSMatcher > matcher_; BSONObj firstMatch_; }; /* { count: "collectionname"[, query: ] } returns -1 on ns does not exist error. */ int runCount( const char *ns, const BSONObj &cmd, string &err ) { NamespaceDetails *d = nsdetails( ns ); if ( !d ) { err = "ns missing"; return -1; } BSONObj query = cmd.getObjectField("query"); BSONObj fields = cmd.getObjectField("fields"); // count of all objects if ( query.isEmpty() && fields.isEmpty() ) { return d->nrecords; } QueryPlanSet qps( ns, query, emptyObj ); CountOp original( cmd ); shared_ptr< CountOp > res = qps.runOp( original ); if ( !res->complete() ) { log() << "Count with ns: " << ns << " and query: " << query << " failed with exception: " << res->exceptionMessage() << endl; return 0; } return res->count(); } class DoQueryOp : public QueryOp { public: DoQueryOp( int ntoskip, int ntoreturn, const BSONObj &order, bool wantMore, bool explain, set< string > &filter, int queryOptions ) : b_( 32768 ), ntoskip_( ntoskip ), ntoreturn_( ntoreturn ), order_( order ), wantMore_( wantMore ), explain_( explain ), filter_( filter ), ordering_(), nscanned_(), queryOptions_( queryOptions ), n_(), soSize_(), saveClientCursor_() {} virtual void init() { b_.skip( sizeof( QueryResult ) ); c_ = qp().newCursor(); matcher_.reset(new JSMatcher(qp().query())); if ( qp().scanAndOrderRequired() ) { ordering_ = true; so_.reset( new ScanAndOrder( ntoskip_, ntoreturn_, order_ ) ); wantMore_ = false; } } virtual void next() { if ( !c_->ok() ) { finish(); return; } BSONObj js = c_->current(); nscanned_++; bool deep; if ( !matcher_->matches(js, &deep) ) { } else if ( !deep || !c_->getsetdup(c_->currLoc()) ) { // i.e., check for dups on deep items only // got a match. assert( js.objsize() >= 0 ); //defensive for segfaults if ( ordering_ ) { // note: no cursors for non-indexed, ordered results. results must be fairly small. so_->add(js); } else if ( ntoskip_ > 0 ) { ntoskip_--; } else { if ( explain_ ) { n_++; if ( n_ >= ntoreturn_ && !wantMore_ ) { // .limit() was used, show just that much. finish(); return; } } else { bool ok = fillQueryResultFromObj(b_, &filter_, js); if ( ok ) n_++; if ( ok ) { if ( (ntoreturn_>0 && (n_ >= ntoreturn_ || b_.len() > MaxBytesToReturnToClientAtOnce)) || (ntoreturn_==0 && (b_.len()>1*1024*1024 || n_>=101)) ) { /* if ntoreturn is zero, we return up to 101 objects. on the subsequent getmore, there is only a size limit. The idea is that on a find() where one doesn't use much results, we don't return much, but once getmore kicks in, we start pushing significant quantities. The n limit (vs. size) is important when someone fetches only one small field from big objects, which causes massive scanning server-side. */ /* if only 1 requested, no cursor saved for efficiency...we assume it is findOne() */ if ( wantMore_ && ntoreturn_ != 1 ) { if ( useCursors ) { c_->advance(); if ( c_->ok() ) { // more...so save a cursor saveClientCursor_ = true; } } } finish(); return; } } } } } c_->advance(); } void finish() { if ( explain_ ) { n_ = ordering_ ? so_->size() : n_; } else if ( ordering_ ) { so_->fill(b_, &filter_, n_); } else if ( !saveClientCursor_ && (queryOptions_ & Option_CursorTailable) && c_->tailable() ) { c_->setAtTail(); saveClientCursor_ = true; } setComplete(); } virtual bool mayRecordPlan() const { return ntoreturn_ != 1; } virtual QueryOp *clone() const { return new DoQueryOp( ntoskip_, ntoreturn_, order_, wantMore_, explain_, filter_, queryOptions_ ); } BufBuilder &builder() { return b_; } bool scanAndOrderRequired() const { return ordering_; } auto_ptr< Cursor > cursor() { return c_; } auto_ptr< JSMatcher > matcher() { return matcher_; } int n() const { return n_; } int nscanned() const { return nscanned_; } bool saveClientCursor() const { return saveClientCursor_; } private: BufBuilder b_; int ntoskip_; int ntoreturn_; BSONObj order_; bool wantMore_; bool explain_; set< string > &filter_; bool ordering_; auto_ptr< Cursor > c_; int nscanned_; int queryOptions_; auto_ptr< JSMatcher > matcher_; int n_; int soSize_; bool saveClientCursor_; auto_ptr< ScanAndOrder > so_; }; auto_ptr< QueryResult > runQuery(Message& m, stringstream& ss ) { DbMessage d( m ); QueryMessage q( d ); const char *ns = q.ns; int ntoskip = q.ntoskip; int _ntoreturn = q.ntoreturn; BSONObj jsobj = q.query; auto_ptr< set< string > > filter = q.fields; int queryOptions = q.queryOptions; Timer t; log(2) << "runQuery: " << ns << jsobj << endl; int nscanned = 0; bool wantMore = true; int ntoreturn = _ntoreturn; if ( _ntoreturn < 0 ) { /* _ntoreturn greater than zero is simply a hint on how many objects to send back per "cursor batch". A negative number indicates a hard limit. */ ntoreturn = -_ntoreturn; wantMore = false; } ss << "query " << ns << " ntoreturn:" << ntoreturn; { string s = jsobj.toString(); strncpy(currentOp.query, s.c_str(), sizeof(currentOp.query)-1); } BufBuilder bb; BSONObjBuilder cmdResBuf; long long cursorid = 0; bb.skip(sizeof(QueryResult)); auto_ptr< QueryResult > qr; int n = 0; /* we assume you are using findOne() for running a cmd... */ if ( ntoreturn == 1 && runCommands(ns, jsobj, ss, bb, cmdResBuf, false, queryOptions) ) { n = 1; qr.reset( (QueryResult *) bb.buf() ); bb.decouple(); qr->resultFlags() = 0; qr->len = bb.len(); ss << " reslen:" << bb.len(); // qr->channel = 0; qr->setOperation(opReply); qr->cursorId = cursorid; qr->startingFrom = 0; qr->nReturned = n; } else { AuthenticationInfo *ai = authInfo.get(); uassert("unauthorized", ai->isAuthorized(database->name.c_str())); uassert("not master", isMaster() || (queryOptions & Option_SlaveOk)); BSONElement hint; bool explain = false; bool _gotquery = false; BSONObj query;// = jsobj.getObjectField("query"); { BSONElement e = jsobj.findElement("query"); if ( !e.eoo() && (e.type() == Object || e.type() == Array) ) { query = e.embeddedObject(); _gotquery = true; } } BSONObj order; { BSONElement e = jsobj.findElement("orderby"); if ( !e.eoo() ) { order = e.embeddedObjectUserCheck(); if ( e.type() == Array ) order = transformOrderFromArrayFormat(order); } } if ( !_gotquery && order.isEmpty() ) query = jsobj; else { explain = jsobj.getBoolField("$explain"); hint = jsobj.getField("$hint"); } /* The ElemIter will not be happy if this isn't really an object. So throw exception here when that is true. (Which may indicate bad data from appserver?) */ if ( query.objsize() == 0 ) { out() << "Bad query object?\n jsobj:"; out() << jsobj.toString() << "\n query:"; out() << query.toString() << endl; uassert("bad query object", false); } BSONObj oldPlan; if ( explain && hint.eoo() ) { QueryPlanSet qps( ns, query, order ); if ( qps.usingPrerecordedPlan() ) oldPlan = qps.explain(); } QueryPlanSet qps( ns, query, order, &hint, !explain ); DoQueryOp original( ntoskip, ntoreturn, order, wantMore, explain, *filter, queryOptions ); shared_ptr< DoQueryOp > o = qps.runOp( original ); DoQueryOp &dqo = *o; massert( dqo.exceptionMessage(), dqo.complete() ); n = dqo.n(); if ( dqo.scanAndOrderRequired() ) ss << " scanAndOrder "; auto_ptr< Cursor > c = dqo.cursor(); if ( dqo.saveClientCursor() ) { ClientCursor *cc = new ClientCursor(); cc->c = c; cursorid = cc->cursorid; DEV out() << " query has more, cursorid: " << cursorid << endl; cc->matcher = dqo.matcher(); cc->ns = ns; cc->pos = n; cc->filter = filter; cc->originalMessage = m; cc->updateLocation(); if ( cc->c->tailing() ) DEV out() << " query has no more but tailable, cursorid: " << cursorid << endl; else DEV out() << " query has more, cursorid: " << cursorid << endl; } if ( explain ) { BSONObjBuilder builder; builder.append("cursor", c->toString()); builder.append("startKey", c->prettyStartKey()); builder.append("endKey", c->prettyEndKey()); builder.append("nscanned", dqo.nscanned()); builder.append("n", n); if ( dqo.scanAndOrderRequired() ) builder.append("scanAndOrder", true); builder.append("millis", t.millis()); if ( !oldPlan.isEmpty() ) builder.append( "oldPlan", oldPlan.firstElement().embeddedObject().firstElement().embeddedObject() ); if ( hint.eoo() ) builder.appendElements(qps.explain()); BSONObj obj = builder.done(); fillQueryResultFromObj(dqo.builder(), 0, obj); n = 1; } qr.reset( (QueryResult *) dqo.builder().buf() ); dqo.builder().decouple(); qr->cursorId = cursorid; qr->resultFlags() = 0; qr->len = dqo.builder().len(); ss << " reslen:" << qr->len; qr->setOperation(opReply); qr->startingFrom = 0; qr->nReturned = n; } int duration = t.millis(); if ( (database && database->profile) || duration >= 100 ) { ss << " nscanned:" << nscanned << ' '; if ( ntoskip ) ss << " ntoskip:" << ntoskip; if ( database && database->profile ) ss << " \nquery: "; ss << jsobj << ' '; } ss << " nreturned:" << n; return qr; } } // namespace mongo