0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/db/query.cpp
2007-12-06 19:03:23 -05:00

379 lines
9.5 KiB
C++

// query.cpp
#include "stdafx.h"
#include "query.h"
#include "pdfile.h"
#include "jsobj.h"
#include "../util/builder.h"
#include <time.h>
#include "introspect.h"
#include "btree.h"
int nextCursorId = 1;
JSObj emptyObj;
/* todo: _ cache query plans
_ use index on partial match with the query
*/
auto_ptr<Cursor> getIndexCursor(const char *ns, JSObj& query, JSObj& order) {
NamespaceDetails *d = namespaceIndex.details(ns);
if( d == 0 ) return auto_ptr<Cursor>();
set<string> queryFields;
query.getFieldNames(queryFields);
if( !order.isEmpty() ) {
set<string> orderFields;
order.getFieldNames(orderFields);
// order by
for(int i = 0; i < d->nIndexes; i++ ) {
JSObj idxInfo = d->indexes[i].info.obj();
assert( strcmp(ns, idxInfo.getStringField("ns")) == 0 );
JSObj idxKey = idxInfo.getObjectField("key");
set<string> keyFields;
idxKey.getFieldNames(keyFields);
if( keyFields == orderFields ) {
bool reverse =
order.firstElement().type() == Number &&
order.firstElement().number() < 0;
JSObjBuilder b;
#if defined(_WIN32)
cout<< "TEMP FULLVALIDATE" << endl;
d->indexes[i].head.btree()->fullValidate(d->indexes[i].head);
{
stringstream ss;
d->indexes[i].head.btree()->shape(ss);
cout << ss.str() << endl;
}
#endif
return auto_ptr<Cursor>(new BtreeCursor(d->indexes[i].head, reverse ? maxKey : emptyObj, reverse ? -1 : 1, false));
}
}
}
// where/query
for(int i = 0; i < d->nIndexes; i++ ) {
JSObj idxInfo = d->indexes[i].info.obj();
JSObj idxKey = idxInfo.getObjectField("key");
set<string> keyFields;
idxKey.getFieldNames(keyFields);
if( keyFields == queryFields ) {
JSObjBuilder b;
JSObj q = query.extractFields(idxKey, b);
/* regexp: only supported if form is /^text/ */
JSObjBuilder b2;
JSElemIter it(q);
while( it.more() ) {
Element e = it.next();
if( e.eoo() )
break;
if( e.type() == RegEx ) {
if( *e.regexFlags() )
goto fail;
const char *re = e.regex();
const char *p = re;
if( *p++ != '^' ) goto fail;
while( *p ) {
if( *p == ' ' || (*p>='0'&&*p<='9') || (*p>='@'&&*p<='Z') || (*p>='a'&&*p<='z') )
;
else
goto fail;
p++;
}
if( it.more() && !it.next().eoo() ) // we must be the last part of the key (for now until we are smarter)
goto fail;
// ok!
b2.append(e.fieldName(), re+1);
break;
}
else
b2.append(e);
}
JSObj q2 = b2.done();
// cout << "\nquery old: " << q.toString() << " new:" << q2.toString() << endl;
return auto_ptr<Cursor>(
new BtreeCursor(d->indexes[i].head, q2, 1, true));
}
}
fail:
return auto_ptr<Cursor>();
}
void deleteObjects(const char *ns, JSObj pattern, bool justOne) {
// cout << "delete ns:" << ns << " queryobjsize:" <<
// pattern.objsize() << endl;
if( strncmp(ns, "system.", 7) == 0 ) {
cout << "ERROR: attempt to delete in system namespace " << ns << endl;
return;
}
JSMatcher matcher(pattern);
JSObj order;
auto_ptr<Cursor> c = getIndexCursor(ns, pattern, order);
if( c.get() == 0 )
c = theDataFileMgr.findAll(ns);
while( c->ok() ) {
Record *r = c->_current();
DiskLoc rloc = c->currLoc();
c->advance(); // must advance before deleting as the next ptr will die
JSObj js(r);
bool deep;
if( !matcher.matches(js, &deep) ) {
if( c->tempStopOnMiss() )
break;
}
else {
assert( !deep || !c->dup(rloc) ); // can't be a dup, we deleted it!
// cout << " found match to delete" << endl;
if( !justOne )
c->noteLocation();
theDataFileMgr.deleteRecord(ns, r, rloc);
if( justOne )
return;
c->checkLocation();
}
}
}
void updateObjects(const char *ns, JSObj updateobj, JSObj pattern, bool upsert) {
// cout << "update ns:" << ns << " objsize:" << updateobj.objsize() << " queryobjsize:" <<
// pattern.objsize();
if( strncmp(ns, "system.", 7) == 0 ) {
cout << "\nERROR: attempt to update in system namespace " << ns << endl;
return;
}
{
JSMatcher matcher(pattern);
JSObj order;
auto_ptr<Cursor> c = getIndexCursor(ns, pattern, order);
if( c.get() == 0 )
c = theDataFileMgr.findAll(ns);
while( c->ok() ) {
Record *r = c->_current();
JSObj js(r);
if( !matcher.matches(js) ) {
if( c->tempStopOnMiss() )
break;
}
else {
/* 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.
*/
// cout << " found match to update" << endl;
theDataFileMgr.update(ns, r, c->currLoc(), updateobj.objdata(), updateobj.objsize());
return;
}
c->advance();
}
}
// cout << " no match ";
// if( upsert )
// cout << "- upsert.";
// cout << endl;
if( upsert )
theDataFileMgr.insert(ns, (void*) updateobj.objdata(), updateobj.objsize());
}
int queryTraceLevel = 0;
int otherTraceLevel = 0;
inline void runCommands(const char *ns, JSObj& jsobj, stringstream& ss) {
if( strcmp(ns, "system.$cmd") != 0 )
return;
ss << "\n $cmd: " << jsobj.toString();
Element e = jsobj.firstElement();
if( e.eoo() ) return;
if( e.type() == Number ) {
if( strcmp(e.fieldName(),"queryTraceLevel") == 0 )
queryTraceLevel = (int) e.number();
else if( strcmp(e.fieldName(),"traceAll") == 0 ) {
queryTraceLevel = (int) e.number();
otherTraceLevel = (int) e.number();
}
}
}
QueryResult* runQuery(const char *ns, int ntoreturn, JSObj jsobj,
auto_ptr< set<string> > filter, stringstream& ss) {
ss << "query:" << ns << " ntoreturn:" << ntoreturn;
if( jsobj.objsize() > 100 )
ss << " querysz:" << jsobj.objsize();
if( queryTraceLevel >= 1 )
cout << "query: " << jsobj.toString() << endl;
BufBuilder b(32768);
runCommands(ns, jsobj, ss);
JSObj query = jsobj.getObjectField("query");
JSObj order = jsobj.getObjectField("orderby");
if( query.isEmpty() && order.isEmpty() )
query = jsobj;
auto_ptr<JSMatcher> matcher(new JSMatcher(query));
QueryResult *qr = 0;
b.skip(sizeof(QueryResult));
int n = 0;
int aa = 123;
auto_ptr<Cursor> c = getSpecialCursor(ns);
int bb = 456;
if( c.get() == 0 ) {
c = getIndexCursor(ns, query, order);
}
if( c.get() == 0 ) {
c = theDataFileMgr.findAll(ns);
if( queryTraceLevel >= 1 )
cout << " basiccursor" << endl;
}
int nscanned = 0;
long long cursorid = 0;
while( c->ok() ) {
JSObj js = c->current();
// cout << js.toString() << endl;
nscanned++;
bool deep;
if( !matcher->matches(js, &deep) ) {
if( c->tempStopOnMiss() )
break;
}
else if( !deep || !c->dup(c->currLoc()) ) {
bool ok = true;
if( filter.get() ) {
JSObj x;
ok = x.addFields(js, *filter) > 0;
if( ok )
b.append((void*) x.objdata(), x.objsize());
}
else {
b.append((void*) js.objdata(), js.objsize());
}
if( ok ) {
n++;
if( (ntoreturn>0 && (n >= ntoreturn || b.len() > 16*1024*1024)) ||
(ntoreturn==0 && b.len()>1*1024*1024) ) {
// more...so save a cursor
ClientCursor *cc = new ClientCursor();
cc->c = c;
cursorid = allocCursorId();
cc->cursorid = cursorid;
cc->matcher = matcher;
cc->ns = ns;
cc->pos = n;
ClientCursor::add(cc);
cc->updateLocation();
cc->filter = filter;
break;
}
}
}
c->advance();
}
if( queryTraceLevel >=2 )
cout << " nscanned:" << nscanned << "\n ";
qr = (QueryResult *) b.buf();
qr->_data[0] = 0;
qr->_data[1] = 0;
qr->_data[2] = 0;
qr->_data[3] = 0;
qr->len = b.len();
ss << " resLen:" << b.len();
// qr->channel = 0;
qr->operation = opReply;
qr->cursorId = cursorid;
qr->startingFrom = 0;
qr->nReturned = n;
b.decouple();
ss << " nReturned:" << n;
return qr;
}
QueryResult* getMore(const char *ns, int ntoreturn, long long cursorid) {
// cout << "getMore ns:" << ns << " ntoreturn:" << ntoreturn << " cursorid:" <<
// cursorid << endl;
BufBuilder b(32768);
ClientCursor *cc = 0;
CCMap::iterator it = clientCursors.find(cursorid);
if( it == clientCursors.end() ) {
cout << "Cursor not found in map. cursorid: " << cursorid << endl;
}
else {
cc = it->second;
}
b.skip(sizeof(QueryResult));
int start = 0;
int n = 0;
if( cc ) {
start = cc->pos;
Cursor *c = cc->c.get();
while( 1 ) {
if( !c->ok() ) {
done:
// done! kill cursor.
cursorid = 0;
clientCursors.erase(it);
delete cc;
cc = 0;
break;
}
JSObj js = c->current();
bool deep;
if( !cc->matcher->matches(js, &deep) ) {
if( c->tempStopOnMiss() )
goto done;
}
else if( !deep || !c->dup(c->currLoc()) ) {
bool ok = true;
if( cc->filter.get() ) {
JSObj x;
ok = x.addFields(js, *cc->filter) > 0;
if( ok )
b.append((void*) x.objdata(), x.objsize());
}
else {
b.append((void*) js.objdata(), js.objsize());
}
if( ok ) {
n++;
if( (ntoreturn>0 && (n >= ntoreturn || b.len() > 16*1024*1024)) ||
(ntoreturn==0 && b.len()>1*1024*1024) ) {
cc->pos += n;
cc->updateLocation();
break;
}
}
}
c->advance();
}
}
QueryResult *qr = (QueryResult *) b.buf();
qr->cursorId = cursorid;
qr->startingFrom = start;
qr->len = b.len();
// qr->reserved = 0;
qr->operation = opReply;
qr->nReturned = n;
b.decouple();
return qr;
}