2009-02-23 20:14:03 +01:00
|
|
|
// strategy.h
|
2009-02-23 19:56:54 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2009-04-15 16:29:17 +02:00
|
|
|
#include "../stdafx.h"
|
2009-03-27 21:55:26 +01:00
|
|
|
#include "shard.h"
|
2009-03-30 19:28:49 +02:00
|
|
|
#include "request.h"
|
2009-03-27 21:55:26 +01:00
|
|
|
|
2009-02-23 19:56:54 +01:00
|
|
|
namespace mongo {
|
|
|
|
|
|
|
|
class Strategy {
|
|
|
|
public:
|
|
|
|
Strategy(){}
|
|
|
|
virtual ~Strategy() {}
|
|
|
|
virtual void queryOp( Request& r ) = 0;
|
|
|
|
virtual void getMore( Request& r ) = 0;
|
|
|
|
virtual void writeOp( int op , Request& r ) = 0;
|
2009-02-23 20:14:03 +01:00
|
|
|
|
2009-02-23 19:56:54 +01:00
|
|
|
protected:
|
|
|
|
void doWrite( int op , Request& r , string server );
|
|
|
|
void doQuery( Request& r , string server );
|
2009-02-23 20:14:03 +01:00
|
|
|
|
2009-02-23 19:56:54 +01:00
|
|
|
void insert( string server , const char * ns , const BSONObj& obj );
|
|
|
|
|
|
|
|
};
|
2009-03-25 22:35:38 +01:00
|
|
|
|
2009-04-03 20:21:00 +02:00
|
|
|
extern Strategy * SINGLE;
|
|
|
|
extern Strategy * SHARDED;
|
|
|
|
|
2009-03-27 21:55:26 +01:00
|
|
|
void checkShardVersion( DBClientBase & conn , const string& ns , bool authoritative = false );
|
2009-02-23 19:56:54 +01:00
|
|
|
|
2009-03-27 21:55:26 +01:00
|
|
|
bool setShardVersion( DBClientBase & conn , const string& ns , ServerShardVersion version , bool authoritative , BSONObj& result );
|
|
|
|
|
2009-04-03 20:21:00 +02:00
|
|
|
bool lockNamespaceOnServer( const string& server , const string& ns );
|
|
|
|
bool lockNamespaceOnServer( DBClientBase& conn , const string& ns );
|
2009-02-23 19:56:54 +01:00
|
|
|
}
|
|
|
|
|