0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/s/strategy.h

48 lines
1.3 KiB
C
Raw Normal View History

2009-02-23 20:14:03 +01:00
// strategy.h
/*
* 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"
#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 , const Shard& shard , bool checkVersion = true );
void doQuery( Request& r , const Shard& shard );
2009-02-23 20:14:03 +01: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
}