2012-05-11 17:00:03 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2012-05-11 17:00:03 +02:00
|
|
|
#ifndef BITCOIN_SYNC_H
|
|
|
|
#define BITCOIN_SYNC_H
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "threadsafety.h"
|
|
|
|
|
|
|
|
#include <boost/thread/condition_variable.hpp>
|
|
|
|
#include <boost/thread/locks.hpp>
|
2012-05-13 17:55:23 +02:00
|
|
|
#include <boost/thread/mutex.hpp>
|
|
|
|
#include <boost/thread/recursive_mutex.hpp>
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2013-06-24 18:10:15 +02:00
|
|
|
|
|
|
|
////////////////////////////////////////////////
|
|
|
|
// //
|
2015-08-09 01:17:27 +02:00
|
|
|
// THE SIMPLE DEFINITION, EXCLUDING DEBUG CODE //
|
2013-06-24 18:10:15 +02:00
|
|
|
// //
|
|
|
|
////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*
|
|
|
|
CCriticalSection mutex;
|
|
|
|
boost::recursive_mutex mutex;
|
|
|
|
|
|
|
|
LOCK(mutex);
|
|
|
|
boost::unique_lock<boost::recursive_mutex> criticalblock(mutex);
|
|
|
|
|
|
|
|
LOCK2(mutex1, mutex2);
|
|
|
|
boost::unique_lock<boost::recursive_mutex> criticalblock1(mutex1);
|
|
|
|
boost::unique_lock<boost::recursive_mutex> criticalblock2(mutex2);
|
|
|
|
|
|
|
|
TRY_LOCK(mutex, name);
|
|
|
|
boost::unique_lock<boost::recursive_mutex> name(mutex, boost::try_to_lock_t);
|
|
|
|
|
|
|
|
ENTER_CRITICAL_SECTION(mutex); // no RAII
|
|
|
|
mutex.lock();
|
|
|
|
|
|
|
|
LEAVE_CRITICAL_SECTION(mutex); // no RAII
|
|
|
|
mutex.unlock();
|
|
|
|
*/
|
|
|
|
|
|
|
|
///////////////////////////////
|
|
|
|
// //
|
|
|
|
// THE ACTUAL IMPLEMENTATION //
|
|
|
|
// //
|
|
|
|
///////////////////////////////
|
|
|
|
|
2015-03-13 08:14:50 +01:00
|
|
|
/**
|
|
|
|
* Template mixin that adds -Wthread-safety locking
|
|
|
|
* annotations to a subset of the mutex API.
|
|
|
|
*/
|
2012-11-11 03:50:26 +01:00
|
|
|
template <typename PARENT>
|
|
|
|
class LOCKABLE AnnotatedMixin : public PARENT
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void lock() EXCLUSIVE_LOCK_FUNCTION()
|
|
|
|
{
|
2014-09-19 19:21:46 +02:00
|
|
|
PARENT::lock();
|
2012-11-11 03:50:26 +01:00
|
|
|
}
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2012-11-11 03:50:26 +01:00
|
|
|
void unlock() UNLOCK_FUNCTION()
|
|
|
|
{
|
2014-09-19 19:21:46 +02:00
|
|
|
PARENT::unlock();
|
2012-11-11 03:50:26 +01:00
|
|
|
}
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2012-11-11 03:50:26 +01:00
|
|
|
bool try_lock() EXCLUSIVE_TRYLOCK_FUNCTION(true)
|
|
|
|
{
|
2014-09-19 19:21:46 +02:00
|
|
|
return PARENT::try_lock();
|
2012-11-11 03:50:26 +01:00
|
|
|
}
|
|
|
|
};
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2015-03-13 08:14:50 +01:00
|
|
|
/**
|
|
|
|
* Wrapped boost mutex: supports recursive locking, but no waiting
|
|
|
|
* TODO: We should move away from using the recursive lock by default.
|
|
|
|
*/
|
2012-11-11 03:50:26 +01:00
|
|
|
typedef AnnotatedMixin<boost::recursive_mutex> CCriticalSection;
|
2012-05-11 17:00:03 +02:00
|
|
|
|
|
|
|
/** Wrapped boost mutex: supports waiting but not recursive locking */
|
2012-11-11 03:50:26 +01:00
|
|
|
typedef AnnotatedMixin<boost::mutex> CWaitableCriticalSection;
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2012-05-13 06:43:24 +02:00
|
|
|
/** Just a typedef for boost::condition_variable, can be wrapped later if desired */
|
|
|
|
typedef boost::condition_variable CConditionVariable;
|
|
|
|
|
2012-05-11 17:00:03 +02:00
|
|
|
#ifdef DEBUG_LOCKORDER
|
|
|
|
void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false);
|
|
|
|
void LeaveCritical();
|
2013-11-29 08:25:30 +01:00
|
|
|
std::string LocksHeld();
|
2014-09-19 19:21:46 +02:00
|
|
|
void AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs);
|
2012-05-11 17:00:03 +02:00
|
|
|
#else
|
2015-03-13 08:14:50 +01:00
|
|
|
void static inline EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false) {}
|
2012-05-11 17:00:03 +02:00
|
|
|
void static inline LeaveCritical() {}
|
2014-09-19 19:21:46 +02:00
|
|
|
void static inline AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs) {}
|
2012-05-11 17:00:03 +02:00
|
|
|
#endif
|
2013-12-19 09:09:51 +01:00
|
|
|
#define AssertLockHeld(cs) AssertLockHeldInternal(#cs, __FILE__, __LINE__, &cs)
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2012-06-05 16:12:32 +02:00
|
|
|
#ifdef DEBUG_LOCKCONTENTION
|
|
|
|
void PrintLockContention(const char* pszName, const char* pszFile, int nLine);
|
|
|
|
#endif
|
|
|
|
|
2012-09-25 12:16:37 +02:00
|
|
|
/** Wrapper around boost::unique_lock<Mutex> */
|
2014-09-19 19:21:46 +02:00
|
|
|
template <typename Mutex>
|
2015-06-16 09:46:36 +02:00
|
|
|
class SCOPED_LOCKABLE CMutexLock
|
2012-05-11 17:00:03 +02:00
|
|
|
{
|
|
|
|
private:
|
2012-05-13 17:55:23 +02:00
|
|
|
boost::unique_lock<Mutex> lock;
|
2012-05-11 17:00:03 +02:00
|
|
|
|
|
|
|
void Enter(const char* pszName, const char* pszFile, int nLine)
|
|
|
|
{
|
2012-11-11 07:11:13 +01:00
|
|
|
EnterCritical(pszName, pszFile, nLine, (void*)(lock.mutex()));
|
2012-05-11 17:00:03 +02:00
|
|
|
#ifdef DEBUG_LOCKCONTENTION
|
2014-09-19 19:21:46 +02:00
|
|
|
if (!lock.try_lock()) {
|
2012-11-11 07:11:13 +01:00
|
|
|
PrintLockContention(pszName, pszFile, nLine);
|
2012-05-11 17:00:03 +02:00
|
|
|
#endif
|
2014-09-19 19:21:46 +02:00
|
|
|
lock.lock();
|
2012-05-11 17:00:03 +02:00
|
|
|
#ifdef DEBUG_LOCKCONTENTION
|
|
|
|
}
|
2012-11-11 07:11:13 +01:00
|
|
|
#endif
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TryEnter(const char* pszName, const char* pszFile, int nLine)
|
|
|
|
{
|
2012-11-11 07:11:13 +01:00
|
|
|
EnterCritical(pszName, pszFile, nLine, (void*)(lock.mutex()), true);
|
|
|
|
lock.try_lock();
|
2012-05-13 17:55:23 +02:00
|
|
|
if (!lock.owns_lock())
|
2012-11-11 07:11:13 +01:00
|
|
|
LeaveCritical();
|
2012-05-13 17:55:23 +02:00
|
|
|
return lock.owns_lock();
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
2012-11-11 07:11:13 +01:00
|
|
|
public:
|
2015-06-16 09:46:36 +02:00
|
|
|
CMutexLock(Mutex& mutexIn, const char* pszName, const char* pszFile, int nLine, bool fTry = false) EXCLUSIVE_LOCK_FUNCTION(mutexIn) : lock(mutexIn, boost::defer_lock)
|
2012-05-11 17:00:03 +02:00
|
|
|
{
|
|
|
|
if (fTry)
|
|
|
|
TryEnter(pszName, pszFile, nLine);
|
|
|
|
else
|
|
|
|
Enter(pszName, pszFile, nLine);
|
|
|
|
}
|
|
|
|
|
2015-06-16 09:46:36 +02:00
|
|
|
CMutexLock(Mutex* pmutexIn, const char* pszName, const char* pszFile, int nLine, bool fTry = false) EXCLUSIVE_LOCK_FUNCTION(pmutexIn)
|
2014-10-19 10:46:17 +02:00
|
|
|
{
|
|
|
|
if (!pmutexIn) return;
|
|
|
|
|
|
|
|
lock = boost::unique_lock<Mutex>(*pmutexIn, boost::defer_lock);
|
|
|
|
if (fTry)
|
|
|
|
TryEnter(pszName, pszFile, nLine);
|
|
|
|
else
|
|
|
|
Enter(pszName, pszFile, nLine);
|
|
|
|
}
|
|
|
|
|
2015-06-16 09:46:36 +02:00
|
|
|
~CMutexLock() UNLOCK_FUNCTION()
|
2012-05-11 17:00:03 +02:00
|
|
|
{
|
2012-05-13 17:55:23 +02:00
|
|
|
if (lock.owns_lock())
|
2012-05-11 17:00:03 +02:00
|
|
|
LeaveCritical();
|
|
|
|
}
|
|
|
|
|
|
|
|
operator bool()
|
|
|
|
{
|
2012-05-13 17:55:23 +02:00
|
|
|
return lock.owns_lock();
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef CMutexLock<CCriticalSection> CCriticalBlock;
|
|
|
|
|
|
|
|
#define LOCK(cs) CCriticalBlock criticalblock(cs, #cs, __FILE__, __LINE__)
|
2014-09-19 19:21:46 +02:00
|
|
|
#define LOCK2(cs1, cs2) CCriticalBlock criticalblock1(cs1, #cs1, __FILE__, __LINE__), criticalblock2(cs2, #cs2, __FILE__, __LINE__)
|
|
|
|
#define TRY_LOCK(cs, name) CCriticalBlock name(cs, #cs, __FILE__, __LINE__, true)
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
#define ENTER_CRITICAL_SECTION(cs) \
|
|
|
|
{ \
|
2012-05-11 17:00:03 +02:00
|
|
|
EnterCritical(#cs, __FILE__, __LINE__, (void*)(&cs)); \
|
2014-09-19 19:21:46 +02:00
|
|
|
(cs).lock(); \
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define LEAVE_CRITICAL_SECTION(cs) \
|
2014-09-19 19:21:46 +02:00
|
|
|
{ \
|
|
|
|
(cs).unlock(); \
|
|
|
|
LeaveCritical(); \
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class CSemaphore
|
|
|
|
{
|
|
|
|
private:
|
2012-05-13 17:55:23 +02:00
|
|
|
boost::condition_variable condition;
|
|
|
|
boost::mutex mutex;
|
|
|
|
int value;
|
2012-05-11 17:00:03 +02:00
|
|
|
|
|
|
|
public:
|
2012-05-13 17:55:23 +02:00
|
|
|
CSemaphore(int init) : value(init) {}
|
2012-05-11 17:00:03 +02:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
void wait()
|
|
|
|
{
|
2012-05-13 17:55:23 +02:00
|
|
|
boost::unique_lock<boost::mutex> lock(mutex);
|
|
|
|
while (value < 1) {
|
|
|
|
condition.wait(lock);
|
|
|
|
}
|
|
|
|
value--;
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
bool try_wait()
|
|
|
|
{
|
2012-05-13 17:55:23 +02:00
|
|
|
boost::unique_lock<boost::mutex> lock(mutex);
|
|
|
|
if (value < 1)
|
|
|
|
return false;
|
|
|
|
value--;
|
|
|
|
return true;
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
void post()
|
|
|
|
{
|
2012-05-13 17:55:23 +02:00
|
|
|
{
|
|
|
|
boost::unique_lock<boost::mutex> lock(mutex);
|
|
|
|
value++;
|
|
|
|
}
|
|
|
|
condition.notify_one();
|
2012-05-11 17:00:03 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** RAII-style semaphore lock */
|
|
|
|
class CSemaphoreGrant
|
|
|
|
{
|
|
|
|
private:
|
2014-09-19 19:21:46 +02:00
|
|
|
CSemaphore* sem;
|
2012-05-11 17:00:03 +02:00
|
|
|
bool fHaveGrant;
|
|
|
|
|
|
|
|
public:
|
2014-09-19 19:21:46 +02:00
|
|
|
void Acquire()
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
if (fHaveGrant)
|
|
|
|
return;
|
|
|
|
sem->wait();
|
|
|
|
fHaveGrant = true;
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
void Release()
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
if (!fHaveGrant)
|
|
|
|
return;
|
|
|
|
sem->post();
|
|
|
|
fHaveGrant = false;
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
bool TryAcquire()
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
if (!fHaveGrant && sem->try_wait())
|
|
|
|
fHaveGrant = true;
|
|
|
|
return fHaveGrant;
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
void MoveTo(CSemaphoreGrant& grant)
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
grant.Release();
|
|
|
|
grant.sem = sem;
|
|
|
|
grant.fHaveGrant = fHaveGrant;
|
|
|
|
sem = NULL;
|
|
|
|
fHaveGrant = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CSemaphoreGrant() : sem(NULL), fHaveGrant(false) {}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
CSemaphoreGrant(CSemaphore& sema, bool fTry = false) : sem(&sema), fHaveGrant(false)
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
if (fTry)
|
|
|
|
TryAcquire();
|
|
|
|
else
|
|
|
|
Acquire();
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
~CSemaphoreGrant()
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
Release();
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
operator bool()
|
|
|
|
{
|
2012-05-11 17:00:03 +02:00
|
|
|
return fHaveGrant;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-08-28 22:21:03 +02:00
|
|
|
#endif // BITCOIN_SYNC_H
|