/usr/include/wibble/sys/mutex.h is in libwibble-dev 0.1.28-1.
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 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 | #ifndef WIBBLE_SYS_MUTEX_H
#define WIBBLE_SYS_MUTEX_H
/*
* Encapsulated pthread mutex and condition
*
* Copyright (C) 2003--2006 Enrico Zini <enrico@debian.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <wibble/sys/macros.h>
#include <wibble/exception.h>
#ifdef POSIX
#include <pthread.h>
#endif
#ifdef _WIN32
#include <windows.h>
#include <queue>
#include <time.h>
struct timespec
{
time_t tv_sec; /* seconds */
long tv_nsec; /* nanoseconds */
};
#endif
#include <errno.h>
namespace wibble {
namespace sys {
/**
* pthread mutex wrapper; WARNING: the class allows copying and assignment,
* but this is not always safe. You should never copy a locked mutex. It is
* however safe to copy when there is no chance of any of the running threads
* using the mutex.
*/
class Mutex
{
protected:
#ifdef POSIX
pthread_mutex_t mutex;
#endif
#ifdef _WIN32
HANDLE mutex;
bool singlylocking;
#endif
public:
Mutex(bool recursive = false)
{
int res = 0;
#ifdef POSIX
pthread_mutexattr_t attr;
pthread_mutexattr_init( &attr );
if ( recursive ) {
#if (__APPLE__ || __xlC__)
pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
#else
pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE_NP );
#endif
}
res = pthread_mutex_init(&mutex, &attr);
#endif
#ifdef _WIN32
mutex = CreateMutex( NULL, FALSE, NULL );
singlylocking = false;
if (mutex == NULL)
res = (int)GetLastError();
#endif
if (res != 0)
throw wibble::exception::System(res, "creating pthread mutex");
}
Mutex( const Mutex & m )
{
int res = 0;
#ifdef POSIX
pthread_mutexattr_t attr;
pthread_mutexattr_init( &attr );
res = pthread_mutex_init(&mutex, &attr);
#endif
#ifdef _WIN32
mutex = CreateMutex(NULL, FALSE, NULL);
singlylocking = false;
if(mutex == NULL)
res = (int)GetLastError();
#endif
if (res != 0)
throw wibble::exception::System(res, "creating pthread mutex");
}
~Mutex()
{
int res = 0;
#ifdef POSIX
res = pthread_mutex_destroy(&mutex);
#endif
#ifdef _WIN32
if(!CloseHandle(mutex))
res = (int)GetLastError();
#endif
if (res != 0)
throw wibble::exception::System(res, "destroying pthread mutex");
}
bool trylock()
{
int res = 0;
#ifdef POSIX
res = pthread_mutex_trylock(&mutex);
if ( res == EBUSY )
return false;
if ( res == 0 )
return true;
#endif
#ifdef _WIN32
DWORD dwWaitResult = !singlylocking ? WaitForSingleObject(mutex, 0) : WAIT_TIMEOUT;
if(dwWaitResult == WAIT_OBJECT_0)
return true;
if(dwWaitResult == WAIT_TIMEOUT)
return false;
res = (int)GetLastError();
#endif
throw wibble::exception::System(res, "(try)locking pthread mutex");
}
/// Lock the mutex
/// Normally it's better to use MutexLock
void lock()
{
int res = 0;
#ifdef POSIX
res = pthread_mutex_lock(&mutex);
#endif
#ifdef _WIN32
while(singlylocking)
Sleep(1);
if(WaitForSingleObject(mutex, INFINITE) != WAIT_OBJECT_0)
res = (int)GetLastError();
#endif
if (res != 0)
throw wibble::exception::System(res, "locking pthread mutex");
}
/// Unlock the mutex
/// Normally it's better to use MutexLock
void unlock()
{
int res = 0;
#ifdef POSIX
res = pthread_mutex_unlock(&mutex);
#endif
#ifdef _WIN32
if(!ReleaseMutex(mutex))
res = (int)GetLastError();
#endif
if (res != 0)
throw wibble::exception::System(res, "unlocking pthread mutex");
}
/// Reinitialize the mutex
void reinit()
{
#ifdef POSIX
if (int res = pthread_mutex_init(&mutex, 0))
throw wibble::exception::System(res, "reinitialising pthread mutex");
#endif
}
friend class Condition;
};
/**
* Acquire a mutex lock, RAII-style
*/
template< typename Mutex >
class MutexLockT
{
private:
// Disallow copy
MutexLockT(const MutexLockT&);
MutexLockT& operator=(const MutexLockT&);
public:
Mutex& mutex;
bool locked;
bool yield;
MutexLockT(Mutex& m) : mutex(m), locked( false ), yield( false ) {
mutex.lock();
locked = true;
}
~MutexLockT() {
if ( locked ) {
mutex.unlock();
checkYield();
}
}
void drop() {
mutex.unlock();
locked = false;
checkYield();
}
void reclaim() { mutex.lock(); locked = true; }
void setYield( bool y ) {
yield = y;
}
void checkYield() {
if ( yield )
#ifdef POSIX
sched_yield();
#elif _WIN32
Sleep(0);
#else
;
#endif
}
friend class Condition;
};
typedef MutexLockT< Mutex > MutexLock;
/*
* pthread condition wrapper.
*
* It works in association with a MutexLock.
*
* WARNING: the class allows copying and assignment; see Mutex: similar caveats
* apply. Do not copy or assign a Condition that may be in use.
*/
class Condition
{
protected:
#ifdef POSIX
pthread_cond_t cond;
#endif
#ifdef _WIN32
int waiters_count_; // number of waiting threads
CRITICAL_SECTION waiters_count_lock_;
HANDLE sema_; // semaphore used to queue up threads waiting for the condition
HANDLE waiters_done_;
// An auto-reset event used by the broadcast/signal thread to wait
// for all the waiting thread(s) to wake up and be released from the
// semaphore.
bool was_broadcast_;
// Keeps track of whether we were broadcasting or signaling. This
// allows us to optimize the code if we're just signaling.
#endif
public:
Condition()
{
int res = 0;
#ifdef POSIX
res = pthread_cond_init(&cond, 0);
#endif
#ifdef _WIN32
waiters_count_ = 0;
was_broadcast_ = false;
sema_ = CreateSemaphore(NULL, 0, 0x7fffffff, NULL);
InitializeCriticalSection(&waiters_count_lock_);
waiters_done_ = CreateEvent(NULL, FALSE, FALSE, NULL);
if(sema_ == NULL || waiters_done_ == NULL)
res = (int)GetLastError();
#endif
if (res != 0)
throw wibble::exception::System(res, "creating pthread condition");
}
Condition( const Condition & con )
{
int res = 0;
#ifdef POSIX
res = pthread_cond_init(&cond, 0);
#endif
#ifdef _WIN32
waiters_count_ = 0;
was_broadcast_ = false;
sema_ = CreateSemaphore(NULL, 0, 0x7fffffff, NULL);
InitializeCriticalSection(&waiters_count_lock_);
waiters_done_ = CreateEvent(NULL, FALSE, FALSE, NULL);
if(sema_ == NULL || waiters_done_ == NULL)
res = (int)GetLastError();
#endif
if (res != 0)
throw wibble::exception::System(res, "creating pthread condition");
}
~Condition()
{
int res = 0;
#ifdef POSIX
res = pthread_cond_destroy(&cond);
#endif
#ifdef _WIN32
DeleteCriticalSection(&waiters_count_lock_);
if(!CloseHandle(sema_) || !CloseHandle(waiters_done_))
res = (int)GetLastError();
#endif
if (res != 0)
throw wibble::exception::System(res, "destroying pthread condition");
}
/// Wake up one process waiting on the condition
void signal()
{
int res = 0;
#ifdef POSIX
res = pthread_cond_signal(&cond);
#endif
#ifdef _WIN32
EnterCriticalSection(&waiters_count_lock_);
bool have_waiters = waiters_count_ > 0;
LeaveCriticalSection(&waiters_count_lock_);
// if there aren't any waiters, then this is a no-op
if(have_waiters && !ReleaseSemaphore(sema_, 1, 0))
res = (int)GetLastError();
#endif
if (res != 0)
throw wibble::exception::System(res, "signaling on a pthread condition");
}
/// Wake up all processes waiting on the condition
void broadcast()
{
int res = 0;
#ifdef POSIX
res = pthread_cond_broadcast(&cond);
#endif
#ifdef _WIN32
for(bool once = true; once; once = false)
{
EnterCriticalSection(&waiters_count_lock_);
bool have_waiters = false;
if(waiters_count_ > 0) {
was_broadcast_ = true;
have_waiters = true;
}
if(have_waiters) {
if(!ReleaseSemaphore(sema_, waiters_count_, 0)) {
res = (int)GetLastError();
break;
}
LeaveCriticalSection(&waiters_count_lock_);
if(WaitForSingleObject(waiters_done_, INFINITE) != WAIT_OBJECT_0) {
res = (int)GetLastError();
break;
}
was_broadcast_ = false;
}
else
LeaveCriticalSection(&waiters_count_lock_);
}
#endif
if (res != 0)
throw wibble::exception::System(res, "broadcasting on a pthread condition");
}
/**
* Wait on the condition, locking with l. l is unlocked before waiting and
* locked again before returning.
*/
void wait(MutexLock& l)
{
int res = 0;
#ifdef POSIX
res = pthread_cond_wait(&cond, &l.mutex.mutex);
#endif
#ifdef _WIN32
for(bool once = true; once; once = false)
{
EnterCriticalSection (&waiters_count_lock_);
waiters_count_++;
LeaveCriticalSection (&waiters_count_lock_);
if(SignalObjectAndWait(l.mutex.mutex, sema_, INFINITE, FALSE) != WAIT_OBJECT_0) {
res = (int)GetLastError();
break;
}
EnterCriticalSection (&waiters_count_lock_);
waiters_count_--;
bool last_waiter = was_broadcast_ && waiters_count_ == 0;
LeaveCriticalSection (&waiters_count_lock_);
if (last_waiter) {
if(SignalObjectAndWait (waiters_done_, l.mutex.mutex, INFINITE, FALSE) != WAIT_OBJECT_0)
{
res = (int)GetLastError();
break;
}
}
else {
if(WaitForSingleObject (l.mutex.mutex, INFINITE) != WAIT_OBJECT_0)
{
res = (int)GetLastError();
break;
}
}
}
#endif
if (res != 0)
throw wibble::exception::System(res, "waiting on a pthread condition");
}
void wait(Mutex& l)
{
int res = 0;
#ifdef POSIX
res = pthread_cond_wait(&cond, &l.mutex);
#endif
#ifdef _WIN32
for(bool once = true; once; once = false)
{
if(WaitForSingleObject(l.mutex, 0) == WAIT_OBJECT_0) {
l.singlylocking = true;
while(ReleaseMutex(l.mutex)) ;
if ((res = ((int)GetLastError() != 288))) //288 -> MUTEX_NOT_OWNED
break;
}
if(WaitForSingleObject(l.mutex, INFINITE) != WAIT_OBJECT_0) {
res = (int)GetLastError();
break;
}
l.singlylocking = false;
EnterCriticalSection (&waiters_count_lock_);
waiters_count_++;
LeaveCriticalSection (&waiters_count_lock_);
if(SignalObjectAndWait(l.mutex, sema_, INFINITE, FALSE) != WAIT_OBJECT_0) {
res = (int)GetLastError();
break;
}
EnterCriticalSection (&waiters_count_lock_);
waiters_count_--;
bool last_waiter = was_broadcast_ && waiters_count_ == 0;
LeaveCriticalSection (&waiters_count_lock_);
if(last_waiter) {
if(SignalObjectAndWait (waiters_done_, l.mutex, INFINITE, FALSE) != WAIT_OBJECT_0) {
res = (int)GetLastError();
break;
}
}
else {
if(WaitForSingleObject(l.mutex, INFINITE) != WAIT_OBJECT_0) {
res = (int)GetLastError();
break;
}
}
}
#endif
if (res != 0)
throw wibble::exception::System(res, "waiting on a pthread condition");
}
/**
* Wait on the condition, locking with l. l is unlocked before waiting and
* locked again before returning. If the time abstime is reached before
* the condition is signaled, then l is locked and the function returns
* false.
*
* @returns
* true if the wait succeeded, or false if the timeout was reached before
* the condition is signaled.
*/
bool wait(MutexLock& l, const struct timespec& abstime);
};
}
}
// vim:set ts=4 sw=4:
#endif
|