2009-02-23 20:14:03 +01:00
|
|
|
// strategy.h
|
2010-02-09 22:48:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-02-23 19:56:54 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2009-04-15 16:29:17 +02:00
|
|
|
#include "../stdafx.h"
|
2009-08-31 22:31:50 +02:00
|
|
|
#include "chunk.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-08-31 22:31:50 +02:00
|
|
|
bool setShardVersion( DBClientBase & conn , const string& ns , ShardChunkVersion version , bool authoritative , BSONObj& result );
|
2009-03-27 21:55:26 +01:00
|
|
|
|
2009-04-03 20:21:00 +02:00
|
|
|
bool lockNamespaceOnServer( const string& server , const string& ns );
|
|
|
|
bool lockNamespaceOnServer( DBClientBase& conn , const string& ns );
|
2009-04-17 23:11:32 +02:00
|
|
|
|
2009-02-23 19:56:54 +01:00
|
|
|
}
|
|
|
|
|