mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
133 lines
3.2 KiB
C++
133 lines
3.2 KiB
C++
#ifndef LLARP_CODEL_QUEUE_HPP
|
|
#define LLARP_CODEL_QUEUE_HPP
|
|
#ifdef _MSC_VER
|
|
#define NOMINMAX
|
|
#endif
|
|
#include <llarp/time.h>
|
|
#include <llarp/logger.hpp>
|
|
#include <llarp/threading.hpp>
|
|
|
|
#include <algorithm>
|
|
#include <cmath>
|
|
#include <functional>
|
|
|
|
#include <queue>
|
|
#include <string>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace util
|
|
{
|
|
struct DummyMutex
|
|
{
|
|
};
|
|
|
|
struct DummyLock
|
|
{
|
|
DummyLock(const DummyMutex& mtx){};
|
|
|
|
~DummyLock()
|
|
{
|
|
}
|
|
};
|
|
template < typename T, typename GetTime >
|
|
struct CoDelCompareTime
|
|
{
|
|
bool
|
|
operator()(const T& left, const T& right) const
|
|
{
|
|
return GetTime()(left) < GetTime()(right);
|
|
}
|
|
};
|
|
|
|
template < typename T >
|
|
struct CoDelComparePriority
|
|
{
|
|
bool
|
|
operator()(const T& left, const T& right) const
|
|
{
|
|
return left < right;
|
|
}
|
|
};
|
|
|
|
template < typename T, typename GetTime, typename PutTime, typename Compare,
|
|
typename Mutex_t = util::Mutex, typename Lock_t = util::Lock,
|
|
llarp_time_t dropMs = 5, llarp_time_t initialIntervalMs = 100 >
|
|
struct CoDelQueue
|
|
{
|
|
CoDelQueue(const std::string& name) : m_name(name)
|
|
{
|
|
}
|
|
|
|
size_t
|
|
Size()
|
|
{
|
|
Lock_t lock(m_QueueMutex);
|
|
return m_Queue.size();
|
|
}
|
|
|
|
void
|
|
Put(T i)
|
|
{
|
|
Lock_t lock(m_QueueMutex);
|
|
// llarp::LogInfo("CoDelQueue::Put - adding item, queue now has ",
|
|
// m_Queue.size(), " items at ", getTime(*item));
|
|
PutTime()(i);
|
|
m_Queue.push(i);
|
|
if(firstPut == 0)
|
|
firstPut = GetTime()(i);
|
|
}
|
|
|
|
template < typename Queue_t >
|
|
void
|
|
Process(Queue_t& result)
|
|
{
|
|
llarp_time_t lowest = 0xFFFFFFFFFFFFFFFFUL;
|
|
// auto start = llarp_time_now_ms();
|
|
// llarp::LogInfo("CoDelQueue::Process - start at ", start);
|
|
Lock_t lock(m_QueueMutex);
|
|
auto start = firstPut;
|
|
while(m_Queue.size())
|
|
{
|
|
// llarp::LogInfo("CoDelQueue::Process - queue has ", m_Queue.size());
|
|
const auto& item = m_Queue.top();
|
|
auto dlt = start - GetTime()(item);
|
|
// llarp::LogInfo("CoDelQueue::Process - dlt ", dlt);
|
|
lowest = std::min(dlt, lowest);
|
|
if(m_Queue.size() == 1)
|
|
{
|
|
// llarp::LogInfo("CoDelQueue::Process - single item: lowest ",
|
|
// lowest, " dropMs: ", dropMs);
|
|
if(lowest > dropMs)
|
|
{
|
|
// drop
|
|
nextTickInterval += initialIntervalMs / std::sqrt(++dropNum);
|
|
delete item;
|
|
m_Queue.pop();
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
nextTickInterval = initialIntervalMs;
|
|
dropNum = 0;
|
|
}
|
|
}
|
|
// llarp::LogInfo("CoDelQueue::Process - passing");
|
|
result.push(item);
|
|
m_Queue.pop();
|
|
}
|
|
firstPut = 0;
|
|
}
|
|
|
|
llarp_time_t firstPut = 0;
|
|
size_t dropNum = 0;
|
|
llarp_time_t nextTickInterval = initialIntervalMs;
|
|
Mutex_t m_QueueMutex;
|
|
std::priority_queue< T, std::vector< T >, Compare > m_Queue;
|
|
std::string m_name;
|
|
};
|
|
} // namespace util
|
|
} // namespace llarp
|
|
|
|
#endif
|