2010-12-17 20:08:07 +01:00
|
|
|
// dbclient.cpp - connect to a Mongo database as a database, from C++
|
|
|
|
|
|
|
|
/* Copyright 2009 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "pch.h"
|
|
|
|
#include "dbclient.h"
|
|
|
|
#include "../bson/util/builder.h"
|
|
|
|
#include "../db/jsobj.h"
|
|
|
|
#include "../db/json.h"
|
|
|
|
#include "connpool.h"
|
2010-12-19 03:38:19 +01:00
|
|
|
#include "dbclient_rs.h"
|
2010-12-17 20:08:07 +01:00
|
|
|
|
|
|
|
namespace mongo {
|
2010-12-19 03:38:19 +01:00
|
|
|
|
|
|
|
// --------------------------------
|
|
|
|
// ----- ReplicaSetMonitor ---------
|
|
|
|
// --------------------------------
|
2010-12-17 20:08:07 +01:00
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
ReplicaSetMonitor::ReplicaSetMonitor( const string& name , const vector<HostAndPort>& servers )
|
|
|
|
: _lock( "ReplicaSetMonitor instance" ) , _name( name ) , _master(-1) {
|
|
|
|
|
|
|
|
string errmsg;
|
2010-12-17 20:08:07 +01:00
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
for ( unsigned i=0; i<servers.size(); i++ ){
|
|
|
|
_nodes.push_back( Node( servers[i] , new DBClientConnection( true ) ) );
|
|
|
|
if ( ! _nodes[i].conn->connect( _nodes[i].addr , errmsg ) ){
|
|
|
|
// this connection failed, but it'll try to reconnect
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
ReplicaSetMonitor::~ReplicaSetMonitor(){
|
|
|
|
for ( unsigned i=0; i<_nodes.size(); i++ )
|
|
|
|
delete _nodes[i].conn;
|
|
|
|
_nodes.clear();
|
|
|
|
_master = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReplicaSetMonitorPtr ReplicaSetMonitor::get( const string& name , const vector<HostAndPort>& servers ){
|
|
|
|
scoped_lock lk( _setsLock );
|
|
|
|
map<string,ReplicaSetMonitorPtr>::iterator i = _sets.find( name );
|
|
|
|
if ( i == _sets.end() )
|
|
|
|
i->second.reset( new ReplicaSetMonitor( name , servers ) );
|
|
|
|
return i->second;
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
string ReplicaSetMonitor::getServerAddress() const {
|
2010-12-17 20:08:07 +01:00
|
|
|
StringBuilder ss;
|
|
|
|
if ( _name.size() )
|
|
|
|
ss << _name << "/";
|
2010-12-19 03:38:19 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
for ( unsigned i=0; i<_nodes.size(); i++ ){
|
|
|
|
if ( i > 0 )
|
|
|
|
ss << ",";
|
|
|
|
ss << _nodes[i].addr.toString();
|
|
|
|
}
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
void ReplicaSetMonitor::notifyFailure( const HostAndPort& server ){
|
|
|
|
if ( _master >= 0 ){
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
if ( server == _nodes[_master].addr )
|
|
|
|
_master = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
HostAndPort ReplicaSetMonitor::getMaster(){
|
|
|
|
if ( _master < 0 )
|
|
|
|
_check();
|
2010-12-17 20:08:07 +01:00
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
uassert( 10009 , str::stream() << "ReplicaSetMonitor no master found for set: " << _name , _master >= 0 );
|
2010-12-17 20:08:07 +01:00
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
scoped_lock lk( _lock );
|
|
|
|
return _nodes[_master].addr;
|
|
|
|
}
|
2010-12-19 05:54:29 +01:00
|
|
|
|
|
|
|
HostAndPort ReplicaSetMonitor::getSlave(){
|
|
|
|
int x = rand() % _nodes.size();
|
|
|
|
{
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
for ( int i=0; i<_nodes.size(); i++ ){
|
|
|
|
int p = ( i + x ) % _nodes.size();
|
|
|
|
if ( p == _master )
|
|
|
|
continue;
|
|
|
|
if ( _nodes[p].ok )
|
|
|
|
return _nodes[p].addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
for ( int i=0; i<_nodes.size(); i++ ){
|
|
|
|
_nodes[i].ok = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
for ( int i=0; i<_nodes.size(); i++ ){
|
|
|
|
int p = ( i + x ) % _nodes.size();
|
|
|
|
if ( p == _master )
|
|
|
|
continue;
|
|
|
|
if ( _nodes[p].ok )
|
|
|
|
return _nodes[p].addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return _nodes[0].addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* notify the monitor that server has faild
|
|
|
|
*/
|
|
|
|
void ReplicaSetMonitor::notifySlaveFailure( const HostAndPort& server ){
|
|
|
|
int x = _find( server );
|
|
|
|
if ( x >= 0 ){
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
_nodes[x].ok = false;
|
|
|
|
}
|
|
|
|
}
|
2010-12-19 03:38:19 +01:00
|
|
|
|
|
|
|
bool ReplicaSetMonitor::_checkConnection( DBClientConnection * c , string& maybePrimary , bool verbose ) {
|
|
|
|
bool good = false;
|
|
|
|
try {
|
|
|
|
BSONObj o;
|
|
|
|
c->isMaster(good, &o);
|
|
|
|
|
|
|
|
log( ! verbose ) << "ReplicaSetMonitor::_checkConnection: " << c->toString() << ' ' << o << '\n';
|
|
|
|
|
|
|
|
// add other nodes
|
|
|
|
string maybePrimary;
|
|
|
|
if ( o["hosts"].type() == Array ){
|
|
|
|
if ( o["primary"].type() == String )
|
|
|
|
maybePrimary = o["primary"].String();
|
|
|
|
|
|
|
|
BSONObjIterator hi(o["hosts"].Obj());
|
|
|
|
while ( hi.more() ){
|
|
|
|
string toCheck = hi.next().String();
|
2010-12-17 20:08:07 +01:00
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
if ( _find( toCheck ) >= 0 )
|
|
|
|
continue;
|
2010-12-17 20:08:07 +01:00
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
HostAndPort h( toCheck );
|
|
|
|
DBClientConnection * newConn = new DBClientConnection( true );
|
|
|
|
string temp;
|
|
|
|
newConn->connect( h , temp );
|
|
|
|
{
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
_nodes.push_back( Node( h , newConn ) );
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
2010-12-19 03:38:19 +01:00
|
|
|
log() << "updated set (" << _name << ") to: " << getServerAddress() << endl;
|
|
|
|
}
|
|
|
|
}
|
2010-12-17 20:08:07 +01:00
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
}
|
|
|
|
catch ( std::exception& e ) {
|
|
|
|
log( ! verbose ) << "ReplicaSetMonitor::_checkConnection: caught exception " << c->toString() << ' ' << e.what() << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return good;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReplicaSetMonitor::_check() {
|
|
|
|
|
|
|
|
bool triedQuickCheck = false;
|
|
|
|
|
|
|
|
LOG(1) << "_check : " << getServerAddress() << endl;
|
|
|
|
|
|
|
|
for ( int retry = 0; retry < 2; retry++ ) {
|
|
|
|
for ( unsigned i=0; i<_nodes.size(); i++ ){
|
|
|
|
DBClientConnection * c;
|
|
|
|
{
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
c = _nodes[i].conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
string maybePrimary;
|
|
|
|
if ( _checkConnection( c , maybePrimary , retry ) ){
|
|
|
|
_master = i;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! triedQuickCheck && maybePrimary.size() ){
|
|
|
|
int x = _find( maybePrimary );
|
|
|
|
if ( x >= 0 ){
|
|
|
|
triedQuickCheck = true;
|
|
|
|
string dummy;
|
|
|
|
DBClientConnection * testConn;
|
|
|
|
{
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
testConn = _nodes[x].conn;
|
|
|
|
}
|
|
|
|
if ( _checkConnection( testConn , dummy , false ) ){
|
|
|
|
_master = x;
|
|
|
|
return;
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-12-19 03:38:19 +01:00
|
|
|
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
|
|
|
sleepsecs(1);
|
|
|
|
}
|
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int ReplicaSetMonitor::_find( const string& server ) const {
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
for ( unsigned i=0; i<_nodes.size(); i++ )
|
|
|
|
if ( _nodes[i].addr == server )
|
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-12-19 05:54:29 +01:00
|
|
|
int ReplicaSetMonitor::_find( const HostAndPort& server ) const {
|
|
|
|
scoped_lock lk( _lock );
|
|
|
|
for ( unsigned i=0; i<_nodes.size(); i++ )
|
|
|
|
if ( _nodes[i].addr == server )
|
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
mongo::mutex ReplicaSetMonitor::_setsLock( "ReplicaSetMonitor" );
|
|
|
|
map<string,ReplicaSetMonitorPtr> ReplicaSetMonitor::_sets;
|
|
|
|
|
|
|
|
// --------------------------------
|
|
|
|
// ----- DBClientReplicaSet ---------
|
|
|
|
// --------------------------------
|
|
|
|
|
|
|
|
DBClientReplicaSet::DBClientReplicaSet( const string& name , const vector<HostAndPort>& servers )
|
|
|
|
: _monitor( ReplicaSetMonitor::get( name , servers ) ){
|
|
|
|
}
|
|
|
|
|
|
|
|
DBClientReplicaSet::~DBClientReplicaSet(){
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DBClientConnection * DBClientReplicaSet::checkMaster() {
|
2010-12-19 03:38:19 +01:00
|
|
|
if ( _master ){
|
2010-12-17 20:08:07 +01:00
|
|
|
// a master is selected. let's just make sure connection didn't die
|
2010-12-19 03:38:19 +01:00
|
|
|
if ( ! _master->isFailed() )
|
|
|
|
return _master.get();
|
|
|
|
_monitor->notifyFailure( _masterHost );
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
2010-12-19 05:54:29 +01:00
|
|
|
|
|
|
|
HostAndPort h = _monitor->getMaster();
|
|
|
|
if ( h != _masterHost ){
|
|
|
|
_masterHost = h;
|
|
|
|
_master.reset( new DBClientConnection( true ) );
|
|
|
|
_master->connect( _masterHost );
|
|
|
|
_auth( _master.get() );
|
|
|
|
}
|
|
|
|
return _master.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
DBClientConnection * DBClientReplicaSet::checkSlave() {
|
|
|
|
if ( _slave ){
|
|
|
|
if ( ! _slave->isFailed() )
|
|
|
|
return _slave.get();
|
|
|
|
_monitor->notifySlaveFailure( _slaveHost );
|
|
|
|
}
|
|
|
|
|
|
|
|
HostAndPort h = _monitor->getSlave();
|
|
|
|
if ( h != _slaveHost ){
|
|
|
|
_slaveHost = h;
|
|
|
|
_slave.reset( new DBClientConnection( true ) );
|
|
|
|
_slave->connect( _slaveHost );
|
|
|
|
_auth( _slave.get() );
|
|
|
|
}
|
|
|
|
return _slave.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DBClientReplicaSet::_auth( DBClientConnection * conn ){
|
2010-12-19 03:38:19 +01:00
|
|
|
for ( list<AuthInfo>::iterator i=_auths.begin(); i!=_auths.end(); ++i ){
|
|
|
|
const AuthInfo& a = *i;
|
|
|
|
string errmsg;
|
2010-12-19 05:54:29 +01:00
|
|
|
if ( ! conn->auth( a.dbname , a.username , a.pwd , errmsg, a.digestPassword ) )
|
2010-12-19 03:38:19 +01:00
|
|
|
warning() << "cached auth failed for set: " << _monitor->setName() << " db: " << a.dbname << " user: " << a.username << endl;
|
2010-12-17 20:08:07 +01:00
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
}
|
|
|
|
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DBClientConnection& DBClientReplicaSet::masterConn(){
|
|
|
|
return *checkMaster();
|
|
|
|
}
|
|
|
|
|
|
|
|
DBClientConnection& DBClientReplicaSet::slaveConn(){
|
2010-12-19 05:54:29 +01:00
|
|
|
return *checkSlave();
|
2010-12-17 20:08:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DBClientReplicaSet::connect(){
|
|
|
|
try {
|
|
|
|
checkMaster();
|
|
|
|
}
|
|
|
|
catch (AssertionException&) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DBClientReplicaSet::auth(const string &dbname, const string &username, const string &pwd, string& errmsg, bool digestPassword ) {
|
|
|
|
DBClientConnection * m = checkMaster();
|
2010-12-19 03:38:19 +01:00
|
|
|
|
|
|
|
// first make sure it actually works
|
|
|
|
if( ! m->auth(dbname, username, pwd, errmsg, digestPassword ) )
|
2010-12-17 20:08:07 +01:00
|
|
|
return false;
|
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
// now that it does, we should save so that for a new node we can auth
|
|
|
|
_auths.push_back( AuthInfo( dbname , username , pwd , digestPassword ) );
|
2010-12-17 20:08:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
// ------------- simple functions -----------------
|
|
|
|
|
|
|
|
void DBClientReplicaSet::insert( const string &ns , BSONObj obj ) {
|
|
|
|
checkMaster()->insert(ns, obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DBClientReplicaSet::insert( const string &ns, const vector< BSONObj >& v ) {
|
|
|
|
checkMaster()->insert(ns, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DBClientReplicaSet::remove( const string &ns , Query obj , bool justOne ) {
|
|
|
|
checkMaster()->remove(ns, obj, justOne);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DBClientReplicaSet::update( const string &ns , Query query , BSONObj obj , bool upsert , bool multi ) {
|
|
|
|
return checkMaster()->update(ns, query, obj, upsert,multi);
|
|
|
|
}
|
|
|
|
|
2010-12-17 20:08:07 +01:00
|
|
|
auto_ptr<DBClientCursor> DBClientReplicaSet::query(const string &a, Query b, int c, int d,
|
|
|
|
const BSONObj *e, int f, int g){
|
|
|
|
// TODO: if slave ok is set go to a slave
|
|
|
|
return checkMaster()->query(a,b,c,d,e,f,g);
|
|
|
|
}
|
|
|
|
|
|
|
|
BSONObj DBClientReplicaSet::findOne(const string &a, const Query& b, const BSONObj *c, int d) {
|
|
|
|
return checkMaster()->findOne(a,b,c,d);
|
|
|
|
}
|
|
|
|
|
2010-12-19 03:38:19 +01:00
|
|
|
void DBClientReplicaSet::killCursor( long long cursorID ){
|
|
|
|
checkMaster()->killCursor( cursorID );
|
|
|
|
}
|
2010-12-17 20:08:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|