2018-07-25 00:35:11 +00:00
|
|
|
#ifndef LLARP_THREADING_HPP
|
|
|
|
#define LLARP_THREADING_HPP
|
2019-03-03 15:01:05 +00:00
|
|
|
|
|
|
|
#include <absl/synchronization/barrier.h>
|
|
|
|
#include <absl/synchronization/mutex.h>
|
2019-03-03 20:51:47 +00:00
|
|
|
#include <absl/time/time.h>
|
2018-08-12 17:22:29 +00:00
|
|
|
|
2019-07-17 09:23:46 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <process.h>
|
|
|
|
using pid_t = int;
|
|
|
|
#else
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2018-08-12 17:22:29 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace util
|
|
|
|
{
|
|
|
|
/// a mutex that does nothing
|
2019-03-03 20:51:47 +00:00
|
|
|
struct LOCKABLE NullMutex
|
2018-08-12 17:22:29 +00:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
/// a lock that does nothing
|
2019-03-03 20:51:47 +00:00
|
|
|
struct SCOPED_LOCKABLE NullLock
|
2018-08-12 17:22:29 +00:00
|
|
|
{
|
2019-04-19 18:24:33 +00:00
|
|
|
NullLock(ABSL_ATTRIBUTE_UNUSED const NullMutex* mtx)
|
2019-03-03 20:51:47 +00:00
|
|
|
EXCLUSIVE_LOCK_FUNCTION(mtx)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~NullLock() UNLOCK_FUNCTION()
|
2018-08-12 17:22:29 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
using Mutex = absl::Mutex;
|
|
|
|
using Lock = absl::MutexLock;
|
|
|
|
using ReleasableLock = absl::ReleasableMutexLock;
|
|
|
|
using Condition = absl::CondVar;
|
2018-08-12 17:22:29 +00:00
|
|
|
|
2018-11-17 21:07:04 +00:00
|
|
|
class Semaphore
|
|
|
|
{
|
|
|
|
private:
|
2019-03-03 20:51:47 +00:00
|
|
|
Mutex m_mutex; // protects m_count
|
|
|
|
size_t m_count GUARDED_BY(m_mutex);
|
|
|
|
|
|
|
|
bool
|
|
|
|
ready() const SHARED_LOCKS_REQUIRED(m_mutex)
|
|
|
|
{
|
|
|
|
return m_count > 0;
|
|
|
|
}
|
2018-11-17 21:07:04 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
Semaphore(size_t count) : m_count(count)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-03-03 20:51:47 +00:00
|
|
|
notify() LOCKS_EXCLUDED(m_mutex)
|
2018-11-17 21:07:04 +00:00
|
|
|
{
|
2019-03-03 15:01:05 +00:00
|
|
|
Lock lock(&m_mutex);
|
2018-11-17 21:07:04 +00:00
|
|
|
m_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-03-03 20:51:47 +00:00
|
|
|
wait() LOCKS_EXCLUDED(m_mutex)
|
2018-11-17 21:07:04 +00:00
|
|
|
{
|
2019-03-03 15:01:05 +00:00
|
|
|
Lock lock(&m_mutex);
|
2019-03-03 20:51:47 +00:00
|
|
|
m_mutex.Await(absl::Condition(this, &Semaphore::ready));
|
2018-11-17 21:07:04 +00:00
|
|
|
|
|
|
|
m_count--;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-03-03 20:51:47 +00:00
|
|
|
waitFor(absl::Duration timeout) LOCKS_EXCLUDED(m_mutex)
|
2018-11-17 21:07:04 +00:00
|
|
|
{
|
2019-03-03 15:01:05 +00:00
|
|
|
Lock lock(&m_mutex);
|
2018-11-17 21:07:04 +00:00
|
|
|
|
2019-03-03 20:51:47 +00:00
|
|
|
if(!m_mutex.AwaitWithTimeout(absl::Condition(this, &Semaphore::ready),
|
|
|
|
timeout))
|
2018-11-17 21:07:04 +00:00
|
|
|
{
|
2019-03-03 20:51:47 +00:00
|
|
|
return false;
|
2018-11-17 21:07:04 +00:00
|
|
|
}
|
|
|
|
|
2019-03-03 15:01:05 +00:00
|
|
|
m_count--;
|
|
|
|
return true;
|
2018-11-17 21:07:04 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-03-03 15:01:05 +00:00
|
|
|
using Barrier = absl::Barrier;
|
|
|
|
|
2019-07-09 00:06:22 +00:00
|
|
|
void
|
|
|
|
SetThreadName(const std::string& name);
|
|
|
|
|
2019-07-17 09:23:46 +00:00
|
|
|
inline pid_t
|
|
|
|
GetPid()
|
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
return _getpid();
|
|
|
|
#else
|
|
|
|
return ::getpid();
|
2019-07-17 19:35:49 +00:00
|
|
|
#endif
|
2019-07-17 09:23:46 +00:00
|
|
|
}
|
2018-08-12 17:22:29 +00:00
|
|
|
} // namespace util
|
|
|
|
} // namespace llarp
|
|
|
|
|
2018-08-16 14:34:15 +00:00
|
|
|
#endif
|