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_Mutex_POSIX_INCLUDED
00040 #define Foundation_Mutex_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 MutexImpl
00053 {
00054 protected:
00055 MutexImpl();
00056 MutexImpl(bool fast);
00057 ~MutexImpl();
00058 void lockImpl();
00059 bool tryLockImpl();
00060 bool tryLockImpl(long milliseconds);
00061 void unlockImpl();
00062
00063 private:
00064 pthread_mutex_t _mutex;
00065 };
00066
00067
00068 class Foundation_API FastMutexImpl: public MutexImpl
00069 {
00070 protected:
00071 FastMutexImpl();
00072 ~FastMutexImpl();
00073 };
00074
00075
00076
00077
00078
00079 inline void MutexImpl::lockImpl()
00080 {
00081 if (pthread_mutex_lock(&_mutex))
00082 throw SystemException("cannot lock mutex");
00083 }
00084
00085
00086 inline bool MutexImpl::tryLockImpl()
00087 {
00088 int rc = pthread_mutex_trylock(&_mutex);
00089 if (rc == 0)
00090 return true;
00091 else if (rc == EBUSY)
00092 return false;
00093 else
00094 throw SystemException("cannot lock mutex");
00095
00096 }
00097
00098
00099 inline void MutexImpl::unlockImpl()
00100 {
00101 if (pthread_mutex_unlock(&_mutex))
00102 throw SystemException("cannot unlock mutex");
00103 }
00104
00105
00106 }
00107
00108
00109 #endif // Foundation_Mutex_POSIX_INCLUDED