RWTTryWriteLockGuard<Resource> RWTLockGuardBase<Resource>
#include <rw/sync/RWTTryWriteLockGuard.h>
RWTTryWriteLockGuard<Resource> is a guard class that tries to acquire write access on its resource upon creation and, if successful, releases it upon destruction. Guard objects work in conjunction with block statements in such a way as to establish an appropriate state upon creation, maintain that state for the duration of the block, and restore the original state upon destruction. For example, a guard may acquire write access on a mutex upon creation and release it when destructed. The class used as the actual template parameter for Resource must be one that provides tryAcquireWrite and release methods (such as some synchronization classes provided by the library).
#include <rw/sync/RWReadersWriterLock.h> #include <rw/sync/RWTTryWriteLockGuard.h> RWReadersWriterLock rwlock; RWBoolean foo() { // ... { // try to acquire write access on a readers-writer lock: RWTTryWriteLockGuard<RWReadersWriterLock> lock(rwlock); // See if the lock was acquired: if (!lock.isAcquired()) { return FALSE; // Can't get lock, give up and // return error } // ... critical section // lock will be released in RWTTryWriteLockGuard destructor // before leaving scope, especially important if // an exception might be thrown! } // ... return TRUE; }
typedef Resource ResourceType;
RWTTryWriteLockGuard(Resource& resource);
Constructs an instance with the given resource and attempts to acquire write access on that resource. Uses the inherited isAcquired() member function to see if the acquisition was successful.
RWBoolean tryAcquire(void);
Tries again to acquire write access on the resource. Uses this function instead of manipulating the resource directly so that the guard will automatically release it.
RWTTryWriteLockGuard(const RWTTryWriteLockGuard<Resource>& second);
Copy constructor is protected to disallow copy construction.
RWTTryWriteLockGuard<Resource>& operator=(const RWTTryWriteLockGuard<Resource>& second);
Assignment operator is protected to disallow assignment.
RWTWriteLockGuard<Resource>, RWTWriteUnlockGuard<Resource>
©Copyright 2000, Rogue Wave Software, Inc.
Contact Rogue Wave about documentation or support issues.