0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/s/strategy_single.cpp

132 lines
4.7 KiB
C++
Raw Normal View History

// strategy_simple.cpp
2009-02-06 20:25:06 +01:00
#include "stdafx.h"
#include "request.h"
#include "../client/connpool.h"
#include "../db/commands.h"
namespace mongo {
2009-02-06 20:25:06 +01:00
class SingleStrategy : public Strategy {
2009-09-10 19:09:26 +02:00
public:
SingleStrategy(){
_commandsSafeToPass.insert( "$eval" );
_commandsSafeToPass.insert( "create" );
}
2009-09-10 19:09:26 +02:00
private:
virtual void queryOp( Request& r ){
QueryMessage q( r.d() );
bool lateAssert = false;
2009-04-21 20:31:30 +02:00
log(3) << "single query: " << q.ns << " " << q.query << " ntoreturn: " << q.ntoreturn << endl;
try {
2009-04-21 20:31:30 +02:00
if ( ( q.ntoreturn == -1 || q.ntoreturn == 1 ) && strstr(q.ns, ".$cmd") ) {
BSONObjBuilder builder;
bool ok = runCommandAgainstRegistered(q.ns, q.query, builder);
if ( ok ) {
BSONObj x = builder.done();
replyToQuery(0, r.p(), r.m(), x);
return;
}
2009-04-07 19:22:12 +02:00
string commandName = q.query.firstElement().fieldName();
2009-09-10 19:09:26 +02:00
if ( ! _commandsSafeToPass.count( commandName ) )
log() << "passing through unknown command: " << commandName << " " << q.query << endl;
}
2009-04-07 19:22:12 +02:00
lateAssert = true;
doQuery( r , r.singleServerName() );
}
catch ( AssertionException& e ) {
assert( !lateAssert );
BSONObjBuilder err;
err.append("$err", string("mongos: ") + (e.msg.empty() ? "assertion during query" : e.msg));
BSONObj errObj = err.done();
replyToQuery(QueryResult::ResultFlag_ErrSet, r.p() , r.m() , errObj);
return;
}
}
virtual void getMore( Request& r ){
const char *ns = r.getns();
log(3) << "single getmore: " << ns << endl;
2009-02-17 17:41:34 +01:00
ScopedDbConnection dbcon( r.singleServerName() );
2009-02-07 15:21:29 +01:00
DBClientBase& _c = dbcon.conn();
2009-02-17 17:41:34 +01:00
// TODO
2009-02-07 15:21:29 +01:00
DBClientConnection &c = dynamic_cast<DBClientConnection&>(_c);
Message response;
bool ok = c.port().call( r.m() , response);
uassert( 10204 , "dbgrid: getmore: error calling db", ok);
r.reply( response );
dbcon.done();
}
void handleIndexWrite( int op , Request& r ){
DbMessage& d = r.d();
if ( op == dbInsert ){
while( d.moreJSObjs() ){
BSONObj o = d.nextJsObj();
const char * ns = o["ns"].valuestr();
if ( r.getConfig()->isSharded( ns ) ){
uassert( 10205 , (string)"can't use unique indexes with sharding ns:" + ns +
" key: " + o["key"].embeddedObjectUserCheck().toString() ,
IndexDetails::isIdIndexPattern( o["key"].embeddedObjectUserCheck() ) ||
! o["unique"].trueValue() );
ChunkManager * cm = r.getConfig()->getChunkManager( ns );
assert( cm );
for ( int i=0; i<cm->numChunks();i++)
doWrite( op , r , cm->getChunk(i)->getShard() );
}
else {
doWrite( op , r , r.singleServerName() );
}
}
}
else if ( op == dbUpdate ){
throw UserException( 8050 , "can't update system.indexes" );
}
else if ( op == dbDelete ){
// TODO
throw UserException( 8051 , "can't delete indexes on sharded collection yet" );
}
else {
log() << "handleIndexWrite invalid write op: " << op << endl;
throw UserException( 8052 , "handleIndexWrite invalid write op" );
}
}
virtual void writeOp( int op , Request& r ){
const char *ns = r.getns();
if ( r.isShardingEnabled() &&
strstr( ns , ".system.indexes" ) == strstr( ns , "." ) &&
strstr( ns , "." ) ){
log(1) << " .system.indexes write for: " << ns << endl;
handleIndexWrite( op , r );
return;
}
log(3) << "single write: " << ns << endl;
2009-02-20 16:46:42 +01:00
doWrite( op , r , r.singleServerName() );
}
2009-09-10 19:09:26 +02:00
set<string> _commandsSafeToPass;
};
2009-02-06 20:25:06 +01:00
Strategy * SINGLE = new SingleStrategy();
}