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
|
|
|
|
|
2010-04-27 21:27:52 +02:00
|
|
|
#include "../pch.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:
|
2010-07-23 05:05:02 +02:00
|
|
|
void doWrite( int op , Request& r , const Shard& shard , bool checkVersion = true );
|
2010-04-27 18:32:59 +02:00
|
|
|
void doQuery( Request& r , const Shard& shard );
|
2009-02-23 20:14:03 +01:00
|
|
|
|
2010-04-27 18:32:59 +02:00
|
|
|
void insert( const Shard& shard , const char * ns , const BSONObj& obj );
|
2009-02-23 19:56:54 +01:00
|
|
|
|
|
|
|
};
|
2009-03-25 22:35:38 +01:00
|
|
|
|
2009-04-03 20:21:00 +02:00
|
|
|
extern Strategy * SINGLE;
|
|
|
|
extern Strategy * SHARDED;
|
|
|
|
|
2009-02-23 19:56:54 +01:00
|
|
|
}
|
|
|
|
|