You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/timer.cpp

276 lines
5.1 KiB
C++

#include <llarp/time.h>
#include <llarp/timer.h>
#include <atomic>
#include <condition_variable>
#include <list>
#include <queue>
#include <unordered_map>
#include "logger.hpp"
namespace llarp
{
struct timer
{
void* user;
uint64_t called_at;
uint64_t started;
uint64_t timeout;
llarp_timer_handler_func func;
bool done;
bool canceled;
timer(uint64_t ms = 0, void* _user = nullptr,
llarp_timer_handler_func _func = nullptr)
: user(_user)
, called_at(0)
, started(llarp_time_now_ms())
, timeout(ms)
, func(_func)
, done(false)
, canceled(false)
{
}
~timer()
{
}
void
exec();
static void
call(void* user)
{
static_cast< timer* >(user)->exec();
}
bool
operator<(const timer& other) const
{
return (started + timeout) < (other.started + other.timeout);
}
};
}; // namespace llarp
struct llarp_timer_context
{
std::mutex timersMutex;
std::unordered_map< uint32_t, llarp::timer* > timers;
std::mutex tickerMutex;
std::condition_variable* ticker = nullptr;
std::chrono::milliseconds nextTickLen = std::chrono::milliseconds(100);
uint32_t ids = 0;
bool _run = true;
~llarp_timer_context()
{
if(ticker)
delete ticker;
}
bool
run()
{
return _run;
}
void
stop()
{
_run = false;
}
void
cancel(uint32_t id)
{
std::unique_lock< std::mutex > lock(timersMutex);
auto itr = timers.find(id);
if(itr == timers.end())
return;
itr->second->canceled = true;
}
void
remove(uint32_t id)
{
std::unique_lock< std::mutex > lock(timersMutex);
auto itr = timers.find(id);
if(itr == timers.end())
return;
itr->second->func = nullptr;
itr->second->canceled = true;
}
uint32_t
call_later(void* user, llarp_timer_handler_func func, uint64_t timeout_ms)
{
std::unique_lock< std::mutex > lock(timersMutex);
uint32_t id = ++ids;
timers[id] = new llarp::timer(timeout_ms, user, func);
return id;
}
void
cancel_all()
{
std::list< uint32_t > ids;
{
std::unique_lock< std::mutex > lock(timersMutex);
for(auto& item : timers)
{
ids.push_back(item.first);
}
}
for(auto id : ids)
{
cancel(id);
}
}
};
struct llarp_timer_context*
llarp_init_timer()
{
return new llarp_timer_context;
}
uint32_t
llarp_timer_call_later(struct llarp_timer_context* t,
struct llarp_timeout_job job)
{
return t->call_later(job.user, job.handler, job.timeout);
}
void
llarp_free_timer(struct llarp_timer_context** t)
{
if(*t)
delete *t;
*t = nullptr;
}
void
llarp_timer_remove_job(struct llarp_timer_context* t, uint32_t id)
{
t->remove(id);
}
void
llarp_timer_stop(struct llarp_timer_context* t)
{
// destroy all timers
// don't call callbacks on timers
t->timers.clear();
t->stop();
if(t->ticker)
t->ticker->notify_all();
}
void
llarp_timer_cancel_job(struct llarp_timer_context* t, uint32_t id)
{
t->cancel(id);
}
typedef std::priority_queue< llarp::timer* > timers_t;
static void
call_timers(void* user)
{
timers_t* t = static_cast< timers_t* >(user);
while(t->size())
{
t->top()->exec();
t->pop();
}
delete t;
}
void
llarp_timer_tick_all(struct llarp_timer_context* t,
struct llarp_threadpool* pool)
{
if(!t->run())
return;
auto now = llarp_time_now_ms();
auto itr = t->timers.begin();
timers_t* calling = new timers_t();
while(itr != t->timers.end())
{
if(now - itr->second->started >= itr->second->timeout
|| itr->second->canceled)
{
if(itr->second->func && itr->second->called_at == 0)
{
// timer hit
itr->second->called_at = now;
calling->push(itr->second);
++itr;
}
else if(itr->second->done)
{
// remove timer
llarp::timer* timer = itr->second;
itr = t->timers.erase(itr);
delete timer;
}
else
++itr;
}
else // timer not hit yet
++itr;
}
if(calling->size())
llarp_threadpool_queue_job(pool, {calling, &call_timers});
else
delete calling;
}
void
llarp_timer_run(struct llarp_timer_context* t, struct llarp_threadpool* pool)
{
t->ticker = new std::condition_variable;
while(t->run())
{
// wait for timer mutex
if(t->ticker)
{
std::unique_lock< std::mutex > lock(t->tickerMutex);
t->ticker->wait_for(lock, t->nextTickLen);
}
if(t->run())
{
std::unique_lock< std::mutex > lock(t->timersMutex);
// we woke up
llarp_timer_tick_all(t, pool);
}
}
}
namespace llarp
{
void
timer::exec()
{
if(func)
{
auto diff = called_at - started;
// zero out function pointer before call to prevent multiple calls being
// queued if call takes longer than 1 timer tick
auto call = func;
func = nullptr;
if(diff >= timeout)
call(user, timeout, 0);
else
call(user, timeout, diff);
}
done = true;
}
} // namespace llarp