152 lines
3.8 KiB
C++
152 lines
3.8 KiB
C++
// distlock.h
|
|
|
|
/* 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.
|
|
*/
|
|
|
|
|
|
/**
|
|
* distribuetd locking mechanism
|
|
*/
|
|
|
|
#include "../pch.h"
|
|
#include "dbclient.h"
|
|
#include "redef_macros.h"
|
|
|
|
namespace mongo {
|
|
|
|
extern string ourHostname;
|
|
|
|
class DistributedLock {
|
|
public:
|
|
|
|
DistributedLock( const ConnectionString& conn , const string& name )
|
|
: _conn(conn),_name(name),_myid(""){
|
|
_id = BSON( "_id" << name );
|
|
_ns = "config.locks";
|
|
}
|
|
|
|
int getState(){
|
|
return _state.get();
|
|
}
|
|
|
|
bool isLocked(){
|
|
return _state.get() != 0;
|
|
}
|
|
|
|
bool lock_try( string why , BSONObj * other = 0 ){
|
|
// recursive
|
|
if ( getState() > 0 )
|
|
return true;
|
|
|
|
ScopedDbConnection conn( _conn );
|
|
|
|
{ // make sure its there so we can use simple update logic below
|
|
BSONObj o = conn->findOne( _ns , _id );
|
|
if ( o.isEmpty() ){
|
|
try {
|
|
conn->insert( _ns , BSON( "_id" << _name << "state" << 0 << "who" << "" ) );
|
|
}
|
|
catch ( UserException& ){
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
BSONObjBuilder b;
|
|
b.appendElements( _id );
|
|
b.append( "state" , 0 );
|
|
|
|
conn->update( _ns , b.obj() , BSON( "$set" << BSON( "state" << 1 << "who" << myid() << "when" << DATENOW << "why" << why ) ) );
|
|
BSONObj o = conn->getLastErrorDetailed();
|
|
BSONObj now = conn->findOne( _ns , _id );
|
|
|
|
conn.done();
|
|
|
|
log() << "dist_lock lock getLastErrorDetailed: " << o << " now: " << now << endl;
|
|
|
|
|
|
if ( o["n"].numberInt() == 0 ){
|
|
if ( other )
|
|
*other = now;
|
|
return false;
|
|
}
|
|
|
|
_state.set( 1 );
|
|
return true;
|
|
}
|
|
|
|
void unlock(){
|
|
ScopedDbConnection conn( _conn );
|
|
conn->update( _ns , _id, BSON( "$set" << BSON( "state" << 0 ) ) );
|
|
log() << "dist_lock unlock: " << conn->findOne( _ns , _id ) << endl;
|
|
conn.done();
|
|
|
|
_state.set( 0 );
|
|
}
|
|
|
|
string myid(){
|
|
string s = _myid.get();
|
|
if ( s.empty() ){
|
|
stringstream ss;
|
|
ss << ourHostname << ":" << time(0) << ":" << rand();
|
|
s = ss.str();
|
|
_myid.set( s );
|
|
}
|
|
|
|
return s;
|
|
}
|
|
|
|
private:
|
|
ConnectionString _conn;
|
|
string _ns;
|
|
string _name;
|
|
BSONObj _id;
|
|
|
|
ThreadLocalValue<int> _state;
|
|
ThreadLocalValue<string> _myid;
|
|
};
|
|
|
|
class dist_lock_try {
|
|
public:
|
|
|
|
dist_lock_try( DistributedLock * lock , string why )
|
|
: _lock(lock){
|
|
_got = _lock->lock_try( why , &_other );
|
|
}
|
|
|
|
~dist_lock_try(){
|
|
if ( _got ){
|
|
_lock->unlock();
|
|
}
|
|
}
|
|
|
|
bool got() const {
|
|
return _got;
|
|
}
|
|
|
|
BSONObj other() const {
|
|
return _other;
|
|
}
|
|
|
|
private:
|
|
DistributedLock * _lock;
|
|
bool _got;
|
|
BSONObj _other;
|
|
|
|
};
|
|
|
|
}
|
|
|