2010-01-19 17:36:01 -05:00
|
|
|
// syncclusterconnection.h
|
2010-02-09 16:48:21 -05:00
|
|
|
/*
|
|
|
|
|
* Copyright 2010 10gen Inc.
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2009-11-13 17:23:41 -05:00
|
|
|
|
|
|
|
|
#include "../stdafx.h"
|
|
|
|
|
#include "dbclient.h"
|
|
|
|
|
|
|
|
|
|
namespace mongo {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* this is a connection to a cluster of servers that operate as one
|
|
|
|
|
* for super high durability
|
|
|
|
|
*/
|
2010-03-22 09:51:06 -04:00
|
|
|
class SyncClusterConnection : public DBClientBase {
|
2009-11-13 17:23:41 -05:00
|
|
|
public:
|
2009-12-16 16:26:49 -05:00
|
|
|
/**
|
|
|
|
|
* @param commaSeperated should be 3 hosts comma seperated
|
|
|
|
|
*/
|
2010-01-20 14:34:53 -05:00
|
|
|
SyncClusterConnection( string commaSeperated );
|
|
|
|
|
SyncClusterConnection( string a , string b , string c );
|
|
|
|
|
~SyncClusterConnection();
|
2009-11-13 17:23:41 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return true if all servers are up and ready for writes
|
|
|
|
|
*/
|
|
|
|
|
bool prepare( string& errmsg );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* runs fsync on all servers
|
|
|
|
|
*/
|
|
|
|
|
bool fsync( string& errmsg );
|
2009-12-16 16:26:49 -05:00
|
|
|
|
|
|
|
|
// --- from DBClientInterface
|
|
|
|
|
|
|
|
|
|
virtual auto_ptr<DBClientCursor> query(const string &ns, Query query, int nToReturn, int nToSkip,
|
2010-02-27 11:16:26 -05:00
|
|
|
const BSONObj *fieldsToReturn, int queryOptions, int batchSize );
|
2009-12-16 16:26:49 -05:00
|
|
|
|
|
|
|
|
virtual auto_ptr<DBClientCursor> getMore( const string &ns, long long cursorId, int nToReturn, int options );
|
2009-11-13 17:23:41 -05:00
|
|
|
|
2009-12-16 16:26:49 -05:00
|
|
|
virtual void insert( const string &ns, BSONObj obj );
|
|
|
|
|
|
|
|
|
|
virtual void insert( const string &ns, const vector< BSONObj >& v );
|
|
|
|
|
|
|
|
|
|
virtual void remove( const string &ns , Query query, bool justOne );
|
|
|
|
|
|
|
|
|
|
virtual void update( const string &ns , Query query , BSONObj obj , bool upsert , bool multi );
|
|
|
|
|
|
2010-03-22 09:51:06 -04:00
|
|
|
virtual string toString(){
|
|
|
|
|
return _toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual bool call( Message &toSend, Message &response, bool assertOk );
|
|
|
|
|
virtual void say( Message &toSend );
|
|
|
|
|
virtual void sayPiggyBack( Message &toSend );
|
|
|
|
|
|
2010-03-22 11:47:37 -04:00
|
|
|
virtual string getServerAddress() const { return _address; }
|
2010-03-22 09:51:06 -04:00
|
|
|
|
|
|
|
|
virtual bool isFailed() const {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2010-03-11 11:20:20 -05:00
|
|
|
|
2010-03-22 09:51:06 -04:00
|
|
|
private:
|
|
|
|
|
|
2010-03-22 11:47:37 -04:00
|
|
|
SyncClusterConnection( SyncClusterConnection& prev );
|
|
|
|
|
|
2010-03-22 09:51:06 -04:00
|
|
|
string _toString() const;
|
|
|
|
|
|
2010-03-11 11:20:20 -05:00
|
|
|
bool _commandOnActive(const string &dbname, const BSONObj& cmd, BSONObj &info, int options=0);
|
|
|
|
|
|
|
|
|
|
auto_ptr<DBClientCursor> _queryOnActive(const string &ns, Query query, int nToReturn, int nToSkip,
|
|
|
|
|
const BSONObj *fieldsToReturn, int queryOptions, int batchSize );
|
2009-11-13 17:23:41 -05:00
|
|
|
|
2010-03-11 11:20:20 -05:00
|
|
|
bool _isReadOnly( const string& name );
|
|
|
|
|
|
2009-12-17 16:55:13 -05:00
|
|
|
void _checkLast();
|
|
|
|
|
|
2009-11-13 17:23:41 -05:00
|
|
|
void _connect( string host );
|
2010-03-22 11:47:37 -04:00
|
|
|
|
|
|
|
|
string _address;
|
2009-11-13 17:23:41 -05:00
|
|
|
vector<DBClientConnection*> _conns;
|
2010-03-11 11:20:20 -05:00
|
|
|
map<string,int> _lockTypes;
|
2009-11-13 17:23:41 -05:00
|
|
|
};
|
2009-12-16 16:26:49 -05:00
|
|
|
|
2009-11-13 17:23:41 -05:00
|
|
|
|
|
|
|
|
};
|