/usr/include/mongo/util/concurrency/qlock.h is in mongodb-dev 1:2.4.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | // @file qlock.h
/**
* Copyright (C) 2012 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/>.
*/
#pragma once
#include <boost/noncopyable.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/thread/condition.hpp>
#include "../assert_util.h"
#include "../time_support.h"
namespace mongo {
/** "Quad Lock"
we want to be able to do semi-granular locking now, and read/write style locking for that.
if that is all we want we could just have a rwlock per lockable entity, and we are done.
however at times we want to stop-the-world. in addition, sometimes we want to stop the
world *for writing only*.
A hierarchy of locks could achieve this; instead here we've modeled it in one synchronization
object our "QLock". Our possible locked states are:
w - i will write, and i will granularly lock after the qlock acquisition
r - i will read, and i will granularly lock after the qlock acquisition
W - i will write globally. stop the world.
R - i will read globally. stop any writer.
For example there is a point during journal batch commits where we wish to block all writers
but no readers.
Non-recursive.
r w R W X <== lock that was around
r * * * - -
w * * - - - * allowed
R * - * - - - not allowed (blocks)
W - - - - - ! See NOTE(!).
X - ! - - -
^
lock we are requesting
NOTE(!): The "X" state can only be reached from the "w" state. A thread successfully
transitions from "w" to "X" when w_to_X() returns true, and fails to transition to that
state (remaining in "w") when that function returns false. For one thread to successfully
transition, all threads in the "w" state must be blocked in w_to_X(). When all threads in
the "w" state are blocked in w_to_X(), one thread will be released in the X state. The
other threads remain blocked in w_to_X() until the thread in the X state calls X_to_w().
*/
class QLock : boost::noncopyable {
struct Z {
Z() : n(0) { }
boost::condition c;
int n;
};
boost::mutex m;
Z r,w,R,W,U,X;
int numPendingGlobalWrites; // >0 if someone wants to acquire a write lock
long long generationX;
long long generationXExit;
void _lock_W();
void _unlock_R();
bool _areQueueJumpingGlobalWritesPending() const {
return numPendingGlobalWrites > 0;
}
bool W_legal() const { return r.n + w.n + R.n + W.n + X.n == 0; }
bool R_legal_ignore_greed() const { return w.n + W.n + X.n == 0; }
bool r_legal_ignore_greed() const { return W.n + X.n == 0; }
bool w_legal_ignore_greed() const { return R.n + W.n + X.n == 0; }
bool R_legal() const {
return !_areQueueJumpingGlobalWritesPending() && R_legal_ignore_greed();
}
bool w_legal() const {
return !_areQueueJumpingGlobalWritesPending() && w_legal_ignore_greed();
}
bool r_legal() const {
return !_areQueueJumpingGlobalWritesPending() && r_legal_ignore_greed();
}
bool X_legal() const { return w.n + r.n + R.n + W.n == 0; }
void notifyWeUnlocked(char me);
static bool i_block(char me, char them);
public:
QLock() :
numPendingGlobalWrites(0),
generationX(0),
generationXExit(0) {
}
void lock_r();
void lock_w();
void lock_R();
bool lock_R_try(int millis);
void lock_W();
bool lock_W_try(int millis);
void unlock_r();
void unlock_w();
void unlock_R();
void unlock_W();
void W_to_R();
void R_to_W(); // caution see notes below
bool w_to_X();
void X_to_w();
};
inline bool QLock::i_block(char me, char them) {
switch( me ) {
case 'W' : return true;
case 'R' : return them == 'W' || them == 'w' || them == 'X';
case 'w' : return them == 'W' || them == 'R' || them == 'X';
case 'r' : return them == 'W' || them == 'X';
case 'X' : return true;
default : fassertFailed(16200);
}
return false;
}
inline void QLock::notifyWeUnlocked(char me) {
fassert(16201, W.n == 0);
if ( me == 'X' ) {
X.c.notify_all();
}
if( U.n ) {
// U is highest priority
if( (r.n + w.n + W.n + X.n == 0) && (R.n == 1) ) {
U.c.notify_one();
return;
}
}
if ( X_legal() && i_block(me, 'X') ) {
X.c.notify_one();
}
if ( W_legal() && i_block(me, 'W') ) {
W.c.notify_one();
if( _areQueueJumpingGlobalWritesPending() )
return;
}
if ( R_legal_ignore_greed() && i_block(me, 'R') ) {
R.c.notify_all();
}
if ( w_legal_ignore_greed() && i_block(me, 'w') ) {
w.c.notify_all();
}
if ( r_legal_ignore_greed() && i_block(me, 'r') ) {
r.c.notify_all();
}
}
// "i will be reading. i promise to coordinate my activities with w's as i go with more
// granular locks."
inline void QLock::lock_r() {
boost::mutex::scoped_lock lk(m);
while( !r_legal() ) {
r.c.wait(m);
}
r.n++;
}
// "i will be writing. i promise to coordinate my activities with w's and r's as i go with more
// granular locks."
inline void QLock::lock_w() {
boost::mutex::scoped_lock lk(m);
while( !w_legal() ) {
w.c.wait(m);
}
w.n++;
}
// "i will be reading. i will coordinate with no one. you better stop them if they
// are writing."
inline void QLock::lock_R() {
boost::mutex::scoped_lock lk(m);
while( ! R_legal() ) {
R.c.wait(m);
}
R.n++;
}
inline bool QLock::lock_R_try(int millis) {
unsigned long long end = curTimeMillis64() + millis;
boost::mutex::scoped_lock lk(m);
while( !R_legal() && curTimeMillis64() < end ) {
R.c.timed_wait(m, boost::posix_time::milliseconds(millis));
}
if ( R_legal() ) {
R.n++;
return true;
}
return false;
}
inline bool QLock::lock_W_try(int millis) {
unsigned long long end = curTimeMillis64() + millis;
boost::mutex::scoped_lock lk(m);
++numPendingGlobalWrites;
while (!W_legal() && curTimeMillis64() < end) {
W.c.timed_wait(m, boost::posix_time::milliseconds(millis));
}
--numPendingGlobalWrites;
if (W_legal()) {
W.n++;
fassert( 16202, W.n == 1 );
return true;
}
return false;
}
// downgrade from W state to R state
inline void QLock::W_to_R() {
boost::mutex::scoped_lock lk(m);
fassert(16203, W.n == 1);
fassert(16204, R.n == 0);
fassert(16205, U.n == 0);
W.n = 0;
R.n = 1;
notifyWeUnlocked('W');
}
// upgrade from R to W state.
//
// This transition takes precedence over all pending requests by threads to enter
// any state other than '\0'.
//
// there is no "upgradable" state so this is NOT a classic upgrade -
// if two threads try to do this you will deadlock.
//
// NOTE: ONLY CALL THIS FUNCTION ON A THREAD THAT GOT TO R BY CALLING W_to_R(), OR
// YOU MAY DEADLOCK WITH THREADS LEAVING THE X STATE.
inline void QLock::R_to_W() {
boost::mutex::scoped_lock lk(m);
fassert(16206, R.n > 0);
fassert(16207, W.n == 0);
fassert(16208, U.n == 0);
U.n = 1;
++numPendingGlobalWrites;
while( W.n + R.n + w.n + r.n > 1 ) {
U.c.wait(m);
}
--numPendingGlobalWrites;
fassert(16209, R.n == 1);
fassert(16210, W.n == 0);
fassert(16211, U.n == 1);
R.n = 0;
W.n = 1;
U.n = 0;
}
inline bool QLock::w_to_X() {
boost::mutex::scoped_lock lk(m);
fassert( 16212, w.n > 0 );
++X.n;
--w.n;
long long myGeneration = generationX;
while ( !X_legal() && (myGeneration == generationX) )
X.c.wait(m);
if ( myGeneration == generationX ) {
fassert( 16214, X_legal() );
fassert( 16215, w.n == 0 );
++generationX;
notifyWeUnlocked('w');
return true;
}
while ( myGeneration == generationXExit )
X.c.wait(m);
fassert( 16216, R.n == 0 );
fassert( 16217, w.n > 0 );
return false;
}
inline void QLock::X_to_w() {
boost::mutex::scoped_lock lk(m);
fassert( 16219, W.n == 0 );
fassert( 16220, R.n == 0 );
fassert( 16221, w.n == 0 );
fassert( 16222, X.n > 0 );
w.n = X.n;
X.n = 0;
++generationXExit;
notifyWeUnlocked('X');
}
// "i will be writing. i will coordinate with no one. you better stop them all"
inline void QLock::_lock_W() {
++numPendingGlobalWrites;
while( !W_legal() ) {
W.c.wait(m);
}
--numPendingGlobalWrites;
W.n++;
}
inline void QLock::lock_W() {
boost::mutex::scoped_lock lk(m);
_lock_W();
}
inline void QLock::unlock_r() {
boost::mutex::scoped_lock lk(m);
fassert(16137, r.n > 0);
--r.n;
notifyWeUnlocked('r');
}
inline void QLock::unlock_w() {
boost::mutex::scoped_lock lk(m);
fassert(16138, w.n > 0);
--w.n;
notifyWeUnlocked('w');
}
inline void QLock::unlock_R() {
boost::mutex::scoped_lock lk(m);
_unlock_R();
}
inline void QLock::_unlock_R() {
fassert(16139, R.n > 0);
--R.n;
notifyWeUnlocked('R');
}
inline void QLock::unlock_W() {
boost::mutex::scoped_lock lk(m);
fassert(16140, W.n == 1);
--W.n;
notifyWeUnlocked('W');
}
}
|