2018-03-14 18:12:34 +11:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-03-14 18:12:34 +11:00
|
|
|
*
|
|
|
|
* Copyright 2018 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "semaphore.hpp"
|
|
|
|
|
|
|
|
#include "../cast.hpp"
|
2018-05-12 14:28:23 +10:00
|
|
|
#include "../posix/except.hpp"
|
2018-03-14 18:12:34 +11:00
|
|
|
|
|
|
|
#include <cerrno>
|
|
|
|
#include <linux/futex.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
#include <limits>
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
using cruft::thread::semaphore;
|
2018-03-14 18:12:34 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
static long
|
|
|
|
sys_futex (void *addr1, int op, int val1, struct timespec *timeout, void *addr2, int val3)
|
|
|
|
{
|
|
|
|
return syscall (SYS_futex, addr1, op | FUTEX_PRIVATE_FLAG, val1, timeout, addr2, val3);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
semaphore::semaphore ():
|
|
|
|
semaphore (1)
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
semaphore::semaphore (int initial):
|
|
|
|
m_value (initial)
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
int
|
2018-03-22 13:37:28 +11:00
|
|
|
semaphore::acquire (int count)
|
2018-03-14 18:12:34 +11:00
|
|
|
{
|
2018-03-22 13:37:28 +11:00
|
|
|
CHECK_GE (count, 0);
|
|
|
|
|
2018-03-14 18:12:34 +11:00
|
|
|
do {
|
|
|
|
int now = m_value;
|
|
|
|
|
|
|
|
// if our value is positive then attempt to decrement it and return,
|
|
|
|
// else retry because someone interfered with us.
|
2018-03-22 13:37:28 +11:00
|
|
|
if (now - count >= 0) {
|
|
|
|
if (m_value.compare_exchange_weak (now, now - count))
|
|
|
|
return now - count;
|
2018-03-14 18:12:34 +11:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// the count doesn't appear to allow us to acquire. sleep until
|
|
|
|
// there's been a modification and retry.
|
|
|
|
if (-1 == sys_futex (&m_value, FUTEX_WAIT, now, nullptr, nullptr, 0)) {
|
|
|
|
switch (errno) {
|
2018-03-22 13:37:28 +11:00
|
|
|
case EAGAIN: break;
|
|
|
|
case EINTR: break;
|
|
|
|
default:
|
|
|
|
posix::error::throw_code ();
|
2018-03-14 18:12:34 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-22 13:37:28 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
semaphore::acquire (void)
|
|
|
|
{
|
|
|
|
return acquire (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-14 18:12:34 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
int
|
2018-03-22 13:39:16 +11:00
|
|
|
semaphore::release (int count)
|
2018-03-14 18:12:34 +11:00
|
|
|
{
|
2018-03-22 13:39:16 +11:00
|
|
|
auto res = m_value += count;
|
|
|
|
if (sys_futex (&m_value, FUTEX_WAKE, count, nullptr, nullptr, 0) < 0)
|
2018-03-14 18:12:34 +11:00
|
|
|
posix::error::throw_code ();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-22 13:39:16 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
semaphore::release (void)
|
|
|
|
{
|
|
|
|
return release (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-14 18:12:34 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
int
|
|
|
|
semaphore::value (void) const
|
|
|
|
{
|
|
|
|
return m_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
semaphore::operator++ (void)
|
|
|
|
{
|
|
|
|
return release ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
semaphore::operator-- (void)
|
|
|
|
{
|
|
|
|
// we don't need to wake anyone because this will only serve to delay
|
|
|
|
// their wakeup.
|
|
|
|
return --m_value;
|
|
|
|
}
|