// shardconnection.cpp
/**
* Copyright (C) 2008 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 .
*/
#include "pch.h"
#include "shard.h"
#include "config.h"
#include "request.h"
#include
namespace mongo {
/**
* holds all the actual db connections for a client to various servers
* 1 pre thread, so don't have to worry about thread safety
*/
class ClientConnections : boost::noncopyable {
public:
struct Status : boost::noncopyable {
Status() : created(0), avail(0){}
long long created;
DBClientBase* avail;
};
Nullstream& debug( Status * s = 0 , const string& addr = "" ){
static int ll = 9;
if ( logLevel < ll )
return nullstream;
Nullstream& l = log(ll);
l << "ClientConnections DEBUG " << this << " ";
if ( s ){
l << "s: " << s << " addr: " << addr << " ";
}
return l;
}
ClientConnections() : _mutex("ClientConnections") {
debug() << " NEW " << endl;
}
~ClientConnections(){
debug() << " KILLING " << endl;
for ( map::iterator i=_hosts.begin(); i!=_hosts.end(); ++i ){
string addr = i->first;
Status* ss = i->second;
assert( ss );
if ( ss->avail ){
/* if we're shutting down, don't want to initiate release mechanism as it is slow,
and isn't needed since all connections will be closed anyway */
if ( inShutdown() )
delete ss->avail;
else
release( addr , ss->avail );
ss->avail = 0;
}
delete ss;
}
_hosts.clear();
}
DBClientBase * get( const string& addr , const string& ns ){
_check( ns );
scoped_lock lk( _mutex );
Status* &s = _hosts[addr];
if ( ! s )
s = new Status();
debug( s , addr ) << "WANT ONE pool avail: " << s->avail << endl;
if ( s->avail ){
DBClientBase* c = s->avail;
s->avail = 0;
debug( s , addr ) << "GOT " << c << endl;
pool.onHandedOut( c );
return c;
}
debug() << "CREATING NEW CONNECTION" << endl;
s->created++;
return pool.get( addr );
}
void done( const string& addr , DBClientBase* conn ){
scoped_lock lk( _mutex );
Status* s = _hosts[addr];
assert( s );
if ( s->avail ){
debug( s , addr ) << "DONE WITH TEMP" << endl;
release( addr , conn );
return;
}
s->avail = conn;
debug( s , addr ) << "PUSHING: " << conn << endl;
}
void sync(){
scoped_lock lk( _mutex );
for ( map::iterator i=_hosts.begin(); i!=_hosts.end(); ++i ){
string addr = i->first;
Status* ss = i->second;
if ( ss->avail ){
ss->avail->getLastError();
release( addr , ss->avail );
ss->avail = 0;
}
delete ss;
}
_hosts.clear();
}
void checkVersions( const string& ns ){
vector all;
Shard::getAllShards( all );
scoped_lock lk( _mutex );
for ( unsigned i=0; i::iterator i=_hosts.begin(); i!=_hosts.end(); ++i ){
if ( ! Shard::isAShard( i->first ) )
continue;
Status* ss = i->second;
assert( ss );
if ( ! ss->avail )
ss->avail = pool.get( i->first );
checkShardVersion( *ss->avail , ns );
}
}
void release( const string& addr , DBClientBase * conn ){
resetShardVersion( conn );
BSONObj res;
try {
if ( conn->simpleCommand( "admin" , &res , "unsetSharding" ) ){
pool.release( addr , conn );
}
else {
log(LL_ERROR) << " couldn't unset sharding :( " << res << endl;
delete conn;
}
}
catch ( std::exception& e ){
log(LL_ERROR) << "couldn't unsert sharding : " << e.what() << endl;
delete conn;
}
}
void _check( const string& ns ){
if ( ns.size() == 0 || _seenNS.count( ns ) )
return;
_seenNS.insert( ns );
checkVersions( ns );
}
map _hosts;
mongo::mutex _mutex;
set _seenNS;
// -----
static thread_specific_ptr _perThread;
static ClientConnections* get(){
ClientConnections* cc = _perThread.get();
if ( ! cc ){
cc = new ClientConnections();
_perThread.reset( cc );
}
return cc;
}
};
thread_specific_ptr ClientConnections::_perThread;
ShardConnection::ShardConnection( const Shard * s , const string& ns )
: _addr( s->getConnString() ) , _ns( ns ) {
_init();
}
ShardConnection::ShardConnection( const Shard& s , const string& ns )
: _addr( s.getConnString() ) , _ns( ns ) {
_init();
}
ShardConnection::ShardConnection( const string& addr , const string& ns )
: _addr( addr ) , _ns( ns ) {
_init();
}
void ShardConnection::_init(){
assert( _addr.size() );
_conn = ClientConnections::get()->get( _addr , _ns );
_finishedInit = false;
}
void ShardConnection::_finishInit(){
if ( _finishedInit )
return;
_finishedInit = true;
if ( _ns.size() ){
_setVersion = checkShardVersion( *_conn , _ns );
}
else {
_setVersion = false;
}
}
void ShardConnection::done(){
if ( _conn ){
ClientConnections::get()->done( _addr , _conn );
_conn = 0;
_finishedInit = true;
}
}
void ShardConnection::kill(){
if ( _conn ){
delete _conn;
_conn = 0;
_finishedInit = true;
}
}
void ShardConnection::sync(){
ClientConnections::get()->sync();
}
bool ShardConnection::runCommand( const string& db , const BSONObj& cmd , BSONObj& res ){
assert( _conn );
bool ok = _conn->runCommand( db , cmd , res );
if ( ! ok ){
if ( res["code"].numberInt() == StaleConfigInContextCode ){
string big = res["errmsg"].String();
string ns,raw;
massert( 13409 , (string)"can't parse ns from: " + big , StaleConfigException::parse( big , ns , raw ) );
done();
throw StaleConfigException( ns , raw );
}
}
return ok;
}
void ShardConnection::checkMyConnectionVersions( const string & ns ){
ClientConnections::get()->checkVersions( ns );
}
ShardConnection::~ShardConnection() {
if ( _conn ){
if ( ! _conn->isFailed() ) {
/* see done() comments above for why we log this line */
log() << "~ScopedDBConnection: _conn != null" << endl;
}
kill();
}
}
}