c++-gtk-utils
|
A wrapper class for pthread read-write locks. More...
#include <c++-gtk-utils/rw_lock.h>
Classes | |
class | ReaderLock |
A scoped locking class for exception safe RWLock read locking. More... | |
class | ReaderTrackLock |
A scoped locking class for exception safe RWLock read locking which tracks the status of its read-write lock. More... | |
class | WriterLock |
A scoped locking class for exception safe RWLock write locking. More... | |
class | WriterTrackLock |
A scoped locking class for exception safe RWLock write locking which tracks the status of its read-write lock.. More... | |
Public Member Functions | |
int | reader_lock () |
int | reader_trylock () |
int | writer_lock () |
int | writer_trylock () |
int | unlock () |
RWLock () | |
~RWLock () | |
A wrapper class for pthread read-write locks.
This class can be used interchangeably with threads started with GThread and by this library, as both glib and this library use pthreads underneath on POSIX and other unix-like OSes. RWLock objects can be constructed statically as well as dynamically and there is no need to call g_thread_init() before they are constructed, even if glib < 2.32 is used. (If created as a static object in global scope, it will not be possible to catch Thread::RWLockError thrown by its constructor, but if a static global read-write lock throws there is nothing that could be done anyway except abort, and it would show that the pthreads installation is seriously defective.)
Read-write locks are similar to mutexes except that they allow more than one thread to hold the lock for reading at once. This can offer advantages over a mutex where a particular shared object is thread safe for lock-free reading by multiple threads simultaneously, is frequently read by different threads and is not often modified. However, the implementation of a read-write lock is more complex than that of a mutex, and unless the particular pthread read-write lock scheduling implementation favours already-blocking writers over later readers whenever a read-write lock object is unlocked, writer starvation can occur. Unless all the reads are of significant duration, might cause (if protected by a mutex) significant contention between each other and greatly exceed the number of times the write lock is held, then it is usually better to use an ordinary mutex.
|
inline |
Initialises the pthread read-write lock. It is not a cancellation point.
Cgu::Thread::RWLockError | Throws this exception if initialisation of the read-write lock fails. (It is often not worth checking for this, as it means either memory is exhausted or pthread has run out of other resources to create new read-write locks.) |
Since 1.2.1
|
inline |
Destroys the pthread read-write lock. It is not a cancellation point. It does not throw.
Since 1.2.1
|
inline |
Locks the read-write lock for reading. Blocks if already locked for writing until it becomes free. More than one thread may simultaneously hold a read lock, and a thread may lock for reading recursively provided that each call to this method is matched by a call to unlock(). It is not a cancellation point. It does not throw. It is thread safe.
Since 1.2.1
|
inline |
Tries to lock the read-write lock for reading, but returns immediately with value EBUSY if it is already locked for writing. More than one thread may simultaneously hold a read lock, and a thread may lock for reading recursively provided that each successful call to this method is matched by a call to unlock(). It is not a cancellation point. It does not throw. It is thread safe.
Since 1.2.1
|
inline |
Unlocks a read-write lock previously locked for reading or writing by the calling thread. If the calling thread has locked the read-write lock for writing, it relinquishes ownership. If it has previously locked the read-write lock for reading, it releases that particular lock, but the read-write lock may remain locked for reading if it has been locked for reading recursively or other threads hold a read lock and the particular implementation does not provide writer priority. It is not a cancellation point. It does not throw.
Since 1.2.1
|
inline |
Locks the read-write lock for writing and acquires ownership. Blocks if already locked for reading or writing until it becomes free. It is not a cancellation point. It does not throw. It is thread safe.
Since 1.2.1
|
inline |
Tries to lock the read-write lock for writing and acquire ownership, but returns immediately with value EBUSY if it is already locked for reading or writing. It is not a cancellation point. It does not throw. It is thread safe.
Since 1.2.1