Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef Foundation_RWLock_POSIX_INCLUDED
00040 #define Foundation_RWLock_POSIX_INCLUDED
00041
00042
00043 #include "Poco/Foundation.h"
00044 #include "Poco/Exception.h"
00045 #include <pthread.h>
00046 #include <errno.h>
00047
00048
00049 namespace Poco {
00050
00051
00052 class Foundation_API RWLockImpl
00053 {
00054 protected:
00055 RWLockImpl();
00056 ~RWLockImpl();
00057 void readLockImpl();
00058 bool tryReadLockImpl();
00059 void writeLockImpl();
00060 bool tryWriteLockImpl();
00061 void unlockImpl();
00062
00063 private:
00064 pthread_rwlock_t _rwl;
00065 };
00066
00067
00068
00069
00070
00071 inline void RWLockImpl::readLockImpl()
00072 {
00073 if (pthread_rwlock_rdlock(&_rwl))
00074 throw SystemException("cannot lock reader/writer lock");
00075 }
00076
00077
00078 inline bool RWLockImpl::tryReadLockImpl()
00079 {
00080 int rc = pthread_rwlock_tryrdlock(&_rwl);
00081 if (rc == 0)
00082 return true;
00083 else if (rc == EBUSY)
00084 return false;
00085 else
00086 throw SystemException("cannot lock reader/writer lock");
00087
00088 }
00089
00090
00091 inline void RWLockImpl::writeLockImpl()
00092 {
00093 if (pthread_rwlock_wrlock(&_rwl))
00094 throw SystemException("cannot lock reader/writer lock");
00095 }
00096
00097
00098 inline bool RWLockImpl::tryWriteLockImpl()
00099 {
00100 int rc = pthread_rwlock_trywrlock(&_rwl);
00101 if (rc == 0)
00102 return true;
00103 else if (rc == EBUSY)
00104 return false;
00105 else
00106 throw SystemException("cannot lock reader/writer lock");
00107
00108 }
00109
00110
00111 inline void RWLockImpl::unlockImpl()
00112 {
00113 if (pthread_rwlock_unlock(&_rwl))
00114 throw SystemException("cannot unlock mutex");
00115 }
00116
00117
00118 }
00119
00120
00121 #endif // Foundation_RWLock_POSIX_INCLUDED