2018-06-26 01:30:36 +00:00
|
|
|
#ifndef LLARP_CODEL_QUEUE_HPP
|
|
|
|
#define LLARP_CODEL_QUEUE_HPP
|
2018-12-12 02:52:51 +00:00
|
|
|
|
2019-09-01 12:10:49 +00:00
|
|
|
#include <util/logging/logger.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
#include <util/mem.hpp>
|
2019-09-01 13:26:16 +00:00
|
|
|
#include <util/thread/threading.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
#include <util/time.hpp>
|
2018-07-09 04:26:27 +00:00
|
|
|
|
2018-07-30 04:38:14 +00:00
|
|
|
#include <algorithm>
|
2018-12-12 01:47:29 +00:00
|
|
|
#include <array>
|
2018-06-26 01:30:36 +00:00
|
|
|
#include <cmath>
|
|
|
|
#include <functional>
|
2018-06-27 13:14:07 +00:00
|
|
|
#include <string>
|
2019-07-30 23:42:13 +00:00
|
|
|
#include <utility>
|
2018-06-26 01:30:36 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace util
|
|
|
|
{
|
2018-11-15 13:13:19 +00:00
|
|
|
struct GetNowSyscall
|
|
|
|
{
|
|
|
|
llarp_time_t
|
|
|
|
operator()() const
|
|
|
|
{
|
2018-11-20 12:44:18 +00:00
|
|
|
return llarp::time_now_ms();
|
2018-11-15 13:13:19 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-07-20 04:50:28 +00:00
|
|
|
template < typename T, typename GetTime, typename PutTime, typename Compare,
|
2018-11-15 13:13:19 +00:00
|
|
|
typename GetNow = GetNowSyscall, typename Mutex_t = util::Mutex,
|
2020-02-24 19:40:45 +00:00
|
|
|
typename Lock_t = std::lock_guard< Mutex_t >,
|
|
|
|
size_t MaxSize = 1024 >
|
2018-06-26 01:30:36 +00:00
|
|
|
struct CoDelQueue
|
|
|
|
{
|
2019-07-30 23:42:13 +00:00
|
|
|
CoDelQueue(std::string name, PutTime put, GetNow now)
|
|
|
|
: m_QueueIdx(0)
|
|
|
|
, m_name(std::move(name))
|
|
|
|
, _putTime(std::move(put))
|
|
|
|
, _getNow(std::move(now))
|
2018-06-27 13:14:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-07-02 19:24:22 +00:00
|
|
|
size_t
|
De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
exclusive and shared locks.
- util::Lock is still present as a std::lock_guard<util::Mutex>.
- the locking annotations are preserved, but updated to the latest
supported by clang rather than using abseil's older/deprecated ones.
- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
locks anymore (WTF abseil).
- ReleasableLock is gone. Instead there are now some llarp::util helper
methods to obtain unique and/or shared locks:
- `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
unlockable object (std::unique_lock<T>, with T inferred from
`mutex`).
- `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
"reader") lock of the mutex.
- `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
used to atomically lock multiple mutexes at once (returning a
tuple of the locks).
This are templated on the mutex which makes them a bit more flexible
than using a concrete type: they can be used for any type of lockable
mutex, not only util::Mutex. (Some of the code here uses them for
getting locks around a std::mutex). Until C++17, using the RAII types
is painfully verbose:
```C++
// pre-C++17 - needing to figure out the mutex type here is annoying:
std::unique_lock<util::Mutex> lock(mutex);
// pre-C++17 and even more verbose (but at least the type isn't needed):
std::unique_lock<decltype(mutex)> lock(mutex);
// our compromise:
auto lock = util::unique_lock(mutex);
// C++17:
std::unique_lock lock(mutex);
```
All of these functions will also warn (under gcc or clang) if you
discard the return value. You can also do fancy things like
`auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
lock take over an already-locked mutex).
- metrics code is gone, which also removes a big pile of code that was
only used by metrics:
- llarp::util::Scheduler
- llarp::thread::TimerQueue
- llarp::util::Stopwatch
2020-02-21 17:21:11 +00:00
|
|
|
Size() EXCLUDES(m_QueueMutex)
|
2018-07-02 19:24:22 +00:00
|
|
|
{
|
|
|
|
Lock_t lock(m_QueueMutex);
|
2018-08-31 18:33:08 +00:00
|
|
|
return m_QueueIdx;
|
2018-07-02 19:24:22 +00:00
|
|
|
}
|
|
|
|
|
2018-08-20 19:12:12 +00:00
|
|
|
template < typename... Args >
|
|
|
|
bool
|
2018-08-31 14:41:04 +00:00
|
|
|
EmplaceIf(std::function< bool(T&) > pred, Args&&... args)
|
De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
exclusive and shared locks.
- util::Lock is still present as a std::lock_guard<util::Mutex>.
- the locking annotations are preserved, but updated to the latest
supported by clang rather than using abseil's older/deprecated ones.
- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
locks anymore (WTF abseil).
- ReleasableLock is gone. Instead there are now some llarp::util helper
methods to obtain unique and/or shared locks:
- `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
unlockable object (std::unique_lock<T>, with T inferred from
`mutex`).
- `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
"reader") lock of the mutex.
- `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
used to atomically lock multiple mutexes at once (returning a
tuple of the locks).
This are templated on the mutex which makes them a bit more flexible
than using a concrete type: they can be used for any type of lockable
mutex, not only util::Mutex. (Some of the code here uses them for
getting locks around a std::mutex). Until C++17, using the RAII types
is painfully verbose:
```C++
// pre-C++17 - needing to figure out the mutex type here is annoying:
std::unique_lock<util::Mutex> lock(mutex);
// pre-C++17 and even more verbose (but at least the type isn't needed):
std::unique_lock<decltype(mutex)> lock(mutex);
// our compromise:
auto lock = util::unique_lock(mutex);
// C++17:
std::unique_lock lock(mutex);
```
All of these functions will also warn (under gcc or clang) if you
discard the return value. You can also do fancy things like
`auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
lock take over an already-locked mutex).
- metrics code is gone, which also removes a big pile of code that was
only used by metrics:
- llarp::util::Scheduler
- llarp::thread::TimerQueue
- llarp::util::Stopwatch
2020-02-21 17:21:11 +00:00
|
|
|
EXCLUDES(m_QueueMutex)
|
2018-08-20 19:12:12 +00:00
|
|
|
{
|
De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
exclusive and shared locks.
- util::Lock is still present as a std::lock_guard<util::Mutex>.
- the locking annotations are preserved, but updated to the latest
supported by clang rather than using abseil's older/deprecated ones.
- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
locks anymore (WTF abseil).
- ReleasableLock is gone. Instead there are now some llarp::util helper
methods to obtain unique and/or shared locks:
- `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
unlockable object (std::unique_lock<T>, with T inferred from
`mutex`).
- `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
"reader") lock of the mutex.
- `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
used to atomically lock multiple mutexes at once (returning a
tuple of the locks).
This are templated on the mutex which makes them a bit more flexible
than using a concrete type: they can be used for any type of lockable
mutex, not only util::Mutex. (Some of the code here uses them for
getting locks around a std::mutex). Until C++17, using the RAII types
is painfully verbose:
```C++
// pre-C++17 - needing to figure out the mutex type here is annoying:
std::unique_lock<util::Mutex> lock(mutex);
// pre-C++17 and even more verbose (but at least the type isn't needed):
std::unique_lock<decltype(mutex)> lock(mutex);
// our compromise:
auto lock = util::unique_lock(mutex);
// C++17:
std::unique_lock lock(mutex);
```
All of these functions will also warn (under gcc or clang) if you
discard the return value. You can also do fancy things like
`auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
lock take over an already-locked mutex).
- metrics code is gone, which also removes a big pile of code that was
only used by metrics:
- llarp::util::Scheduler
- llarp::thread::TimerQueue
- llarp::util::Stopwatch
2020-02-21 17:21:11 +00:00
|
|
|
Lock_t lock(m_QueueMutex);
|
2018-08-31 18:33:08 +00:00
|
|
|
if(m_QueueIdx == MaxSize)
|
2018-08-20 19:12:12 +00:00
|
|
|
return false;
|
2018-08-31 18:33:08 +00:00
|
|
|
T* t = &m_Queue[m_QueueIdx];
|
|
|
|
new(t) T(std::forward< Args >(args)...);
|
|
|
|
if(!pred(*t))
|
2018-08-20 19:12:12 +00:00
|
|
|
{
|
2018-08-31 18:33:08 +00:00
|
|
|
t->~T();
|
|
|
|
return false;
|
2018-08-20 19:12:12 +00:00
|
|
|
}
|
2018-08-31 18:33:08 +00:00
|
|
|
|
2018-10-29 16:48:36 +00:00
|
|
|
_putTime(m_Queue[m_QueueIdx]);
|
2020-02-24 19:40:45 +00:00
|
|
|
if(firstPut == 0s)
|
2018-10-29 16:48:36 +00:00
|
|
|
firstPut = _getTime(m_Queue[m_QueueIdx]);
|
2018-08-31 18:33:08 +00:00
|
|
|
++m_QueueIdx;
|
|
|
|
|
2018-08-20 19:12:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template < typename... Args >
|
|
|
|
void
|
De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
exclusive and shared locks.
- util::Lock is still present as a std::lock_guard<util::Mutex>.
- the locking annotations are preserved, but updated to the latest
supported by clang rather than using abseil's older/deprecated ones.
- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
locks anymore (WTF abseil).
- ReleasableLock is gone. Instead there are now some llarp::util helper
methods to obtain unique and/or shared locks:
- `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
unlockable object (std::unique_lock<T>, with T inferred from
`mutex`).
- `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
"reader") lock of the mutex.
- `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
used to atomically lock multiple mutexes at once (returning a
tuple of the locks).
This are templated on the mutex which makes them a bit more flexible
than using a concrete type: they can be used for any type of lockable
mutex, not only util::Mutex. (Some of the code here uses them for
getting locks around a std::mutex). Until C++17, using the RAII types
is painfully verbose:
```C++
// pre-C++17 - needing to figure out the mutex type here is annoying:
std::unique_lock<util::Mutex> lock(mutex);
// pre-C++17 and even more verbose (but at least the type isn't needed):
std::unique_lock<decltype(mutex)> lock(mutex);
// our compromise:
auto lock = util::unique_lock(mutex);
// C++17:
std::unique_lock lock(mutex);
```
All of these functions will also warn (under gcc or clang) if you
discard the return value. You can also do fancy things like
`auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
lock take over an already-locked mutex).
- metrics code is gone, which also removes a big pile of code that was
only used by metrics:
- llarp::util::Scheduler
- llarp::thread::TimerQueue
- llarp::util::Stopwatch
2020-02-21 17:21:11 +00:00
|
|
|
Emplace(Args&&... args) EXCLUDES(m_QueueMutex)
|
2018-08-20 19:12:12 +00:00
|
|
|
{
|
De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
exclusive and shared locks.
- util::Lock is still present as a std::lock_guard<util::Mutex>.
- the locking annotations are preserved, but updated to the latest
supported by clang rather than using abseil's older/deprecated ones.
- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
locks anymore (WTF abseil).
- ReleasableLock is gone. Instead there are now some llarp::util helper
methods to obtain unique and/or shared locks:
- `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
unlockable object (std::unique_lock<T>, with T inferred from
`mutex`).
- `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
"reader") lock of the mutex.
- `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
used to atomically lock multiple mutexes at once (returning a
tuple of the locks).
This are templated on the mutex which makes them a bit more flexible
than using a concrete type: they can be used for any type of lockable
mutex, not only util::Mutex. (Some of the code here uses them for
getting locks around a std::mutex). Until C++17, using the RAII types
is painfully verbose:
```C++
// pre-C++17 - needing to figure out the mutex type here is annoying:
std::unique_lock<util::Mutex> lock(mutex);
// pre-C++17 and even more verbose (but at least the type isn't needed):
std::unique_lock<decltype(mutex)> lock(mutex);
// our compromise:
auto lock = util::unique_lock(mutex);
// C++17:
std::unique_lock lock(mutex);
```
All of these functions will also warn (under gcc or clang) if you
discard the return value. You can also do fancy things like
`auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
lock take over an already-locked mutex).
- metrics code is gone, which also removes a big pile of code that was
only used by metrics:
- llarp::util::Scheduler
- llarp::thread::TimerQueue
- llarp::util::Stopwatch
2020-02-21 17:21:11 +00:00
|
|
|
Lock_t lock(m_QueueMutex);
|
2018-09-07 17:41:49 +00:00
|
|
|
if(m_QueueIdx == MaxSize)
|
|
|
|
return;
|
2018-08-31 18:33:08 +00:00
|
|
|
T* t = &m_Queue[m_QueueIdx];
|
|
|
|
new(t) T(std::forward< Args >(args)...);
|
2018-10-29 16:48:36 +00:00
|
|
|
_putTime(m_Queue[m_QueueIdx]);
|
2020-02-24 19:40:45 +00:00
|
|
|
if(firstPut == 0s)
|
2018-10-29 16:48:36 +00:00
|
|
|
firstPut = _getTime(m_Queue[m_QueueIdx]);
|
2018-08-31 18:33:08 +00:00
|
|
|
++m_QueueIdx;
|
2018-06-26 01:30:36 +00:00
|
|
|
}
|
2018-08-31 14:41:04 +00:00
|
|
|
|
2018-08-21 18:17:16 +00:00
|
|
|
template < typename Visit >
|
|
|
|
void
|
2018-09-07 17:41:49 +00:00
|
|
|
Process(Visit v)
|
|
|
|
{
|
|
|
|
return Process(v, [](T&) -> bool { return false; });
|
|
|
|
}
|
|
|
|
|
|
|
|
template < typename Visit, typename Filter >
|
|
|
|
void
|
De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
exclusive and shared locks.
- util::Lock is still present as a std::lock_guard<util::Mutex>.
- the locking annotations are preserved, but updated to the latest
supported by clang rather than using abseil's older/deprecated ones.
- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
locks anymore (WTF abseil).
- ReleasableLock is gone. Instead there are now some llarp::util helper
methods to obtain unique and/or shared locks:
- `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
unlockable object (std::unique_lock<T>, with T inferred from
`mutex`).
- `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
"reader") lock of the mutex.
- `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
used to atomically lock multiple mutexes at once (returning a
tuple of the locks).
This are templated on the mutex which makes them a bit more flexible
than using a concrete type: they can be used for any type of lockable
mutex, not only util::Mutex. (Some of the code here uses them for
getting locks around a std::mutex). Until C++17, using the RAII types
is painfully verbose:
```C++
// pre-C++17 - needing to figure out the mutex type here is annoying:
std::unique_lock<util::Mutex> lock(mutex);
// pre-C++17 and even more verbose (but at least the type isn't needed):
std::unique_lock<decltype(mutex)> lock(mutex);
// our compromise:
auto lock = util::unique_lock(mutex);
// C++17:
std::unique_lock lock(mutex);
```
All of these functions will also warn (under gcc or clang) if you
discard the return value. You can also do fancy things like
`auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
lock take over an already-locked mutex).
- metrics code is gone, which also removes a big pile of code that was
only used by metrics:
- llarp::util::Scheduler
- llarp::thread::TimerQueue
- llarp::util::Stopwatch
2020-02-21 17:21:11 +00:00
|
|
|
Process(Visit visitor, Filter f) EXCLUDES(m_QueueMutex)
|
2018-06-26 01:30:36 +00:00
|
|
|
{
|
2018-11-15 13:13:19 +00:00
|
|
|
llarp_time_t lowest = std::numeric_limits< llarp_time_t >::max();
|
|
|
|
if(_getNow() < nextTickAt)
|
|
|
|
return;
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("CoDelQueue::Process - start at ", start);
|
De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
exclusive and shared locks.
- util::Lock is still present as a std::lock_guard<util::Mutex>.
- the locking annotations are preserved, but updated to the latest
supported by clang rather than using abseil's older/deprecated ones.
- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
locks anymore (WTF abseil).
- ReleasableLock is gone. Instead there are now some llarp::util helper
methods to obtain unique and/or shared locks:
- `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
unlockable object (std::unique_lock<T>, with T inferred from
`mutex`).
- `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
"reader") lock of the mutex.
- `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
used to atomically lock multiple mutexes at once (returning a
tuple of the locks).
This are templated on the mutex which makes them a bit more flexible
than using a concrete type: they can be used for any type of lockable
mutex, not only util::Mutex. (Some of the code here uses them for
getting locks around a std::mutex). Until C++17, using the RAII types
is painfully verbose:
```C++
// pre-C++17 - needing to figure out the mutex type here is annoying:
std::unique_lock<util::Mutex> lock(mutex);
// pre-C++17 and even more verbose (but at least the type isn't needed):
std::unique_lock<decltype(mutex)> lock(mutex);
// our compromise:
auto lock = util::unique_lock(mutex);
// C++17:
std::unique_lock lock(mutex);
```
All of these functions will also warn (under gcc or clang) if you
discard the return value. You can also do fancy things like
`auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
lock take over an already-locked mutex).
- metrics code is gone, which also removes a big pile of code that was
only used by metrics:
- llarp::util::Scheduler
- llarp::thread::TimerQueue
- llarp::util::Stopwatch
2020-02-21 17:21:11 +00:00
|
|
|
Lock_t lock(m_QueueMutex);
|
2018-06-27 13:14:07 +00:00
|
|
|
auto start = firstPut;
|
2018-11-15 13:13:19 +00:00
|
|
|
|
2018-08-31 18:33:08 +00:00
|
|
|
if(m_QueueIdx == 1)
|
|
|
|
{
|
|
|
|
visitor(m_Queue[0]);
|
2018-08-31 19:48:54 +00:00
|
|
|
T* t = &m_Queue[0];
|
|
|
|
t->~T();
|
2018-08-31 18:33:08 +00:00
|
|
|
m_QueueIdx = 0;
|
2020-02-24 19:40:45 +00:00
|
|
|
firstPut = 0s;
|
2018-08-31 18:33:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
size_t idx = 0;
|
|
|
|
while(m_QueueIdx)
|
2018-06-26 01:30:36 +00:00
|
|
|
{
|
2018-08-31 18:33:08 +00:00
|
|
|
llarp::LogDebug(m_name, " - queue has ", m_QueueIdx);
|
|
|
|
T* item = &m_Queue[idx++];
|
2018-09-07 17:41:49 +00:00
|
|
|
if(f(*item))
|
|
|
|
break;
|
2018-08-31 18:33:08 +00:00
|
|
|
--m_QueueIdx;
|
2020-02-24 19:40:45 +00:00
|
|
|
const llarp_time_t dlt = start - _getTime(*item);
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("CoDelQueue::Process - dlt ", dlt);
|
2018-06-29 12:15:15 +00:00
|
|
|
lowest = std::min(dlt, lowest);
|
2018-11-17 18:40:13 +00:00
|
|
|
if(m_QueueIdx == 0)
|
2018-06-26 01:30:36 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("CoDelQueue::Process - single item: lowest ",
|
|
|
|
// lowest, " dropMs: ", dropMs);
|
2018-06-26 01:30:36 +00:00
|
|
|
if(lowest > dropMs)
|
|
|
|
{
|
2018-08-31 18:33:08 +00:00
|
|
|
item->~T();
|
2020-02-24 19:40:45 +00:00
|
|
|
nextTickInterval +=
|
|
|
|
initialIntervalMs / uint64_t(std::sqrt(++dropNum));
|
|
|
|
firstPut = 0s;
|
2018-11-15 13:13:19 +00:00
|
|
|
nextTickAt = start + nextTickInterval;
|
2018-08-29 20:40:26 +00:00
|
|
|
return;
|
2018-06-26 01:30:36 +00:00
|
|
|
}
|
2019-07-06 17:03:40 +00:00
|
|
|
|
|
|
|
nextTickInterval = initialIntervalMs;
|
|
|
|
dropNum = 0;
|
2018-06-26 01:30:36 +00:00
|
|
|
}
|
2018-08-31 18:33:08 +00:00
|
|
|
visitor(*item);
|
|
|
|
item->~T();
|
2018-06-26 01:30:36 +00:00
|
|
|
}
|
2020-02-24 19:40:45 +00:00
|
|
|
firstPut = 0s;
|
2018-11-15 13:13:19 +00:00
|
|
|
nextTickAt = start + nextTickInterval;
|
2018-06-26 01:30:36 +00:00
|
|
|
}
|
|
|
|
|
2020-02-24 19:40:45 +00:00
|
|
|
const llarp_time_t initialIntervalMs = 5ms;
|
|
|
|
const llarp_time_t dropMs = 100ms;
|
|
|
|
llarp_time_t firstPut = 0s;
|
|
|
|
size_t dropNum = 0;
|
|
|
|
llarp_time_t nextTickInterval = initialIntervalMs;
|
|
|
|
llarp_time_t nextTickAt = 0s;
|
2018-07-02 19:24:22 +00:00
|
|
|
Mutex_t m_QueueMutex;
|
2019-03-03 20:51:47 +00:00
|
|
|
size_t m_QueueIdx GUARDED_BY(m_QueueMutex);
|
|
|
|
std::array< T, MaxSize > m_Queue GUARDED_BY(m_QueueMutex);
|
2018-06-27 13:14:07 +00:00
|
|
|
std::string m_name;
|
2018-10-29 16:48:36 +00:00
|
|
|
GetTime _getTime;
|
|
|
|
PutTime _putTime;
|
2018-11-15 13:13:19 +00:00
|
|
|
GetNow _getNow;
|
2018-08-31 18:33:08 +00:00
|
|
|
}; // namespace util
|
|
|
|
} // namespace util
|
2018-06-26 01:30:36 +00:00
|
|
|
} // namespace llarp
|
|
|
|
|
2018-06-27 10:59:23 +00:00
|
|
|
#endif
|