1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/util/timer.hpp

62 lines
1.5 KiB
C++
Raw Normal View History

2018-11-19 23:45:37 +01:00
#ifndef LLARP_TIMER_HPP
#define LLARP_TIMER_HPP
#include <util/common.hpp>
#include <util/threadpool.h>
#include <util/time.hpp>
2018-04-30 20:18:18 +02:00
#include <functional>
2018-05-16 17:30:05 +02:00
/** called with userptr, original timeout, left */
using llarp_timer_handler_func =
std::function< void(void *, uint64_t, uint64_t) >;
2018-04-30 20:18:18 +02:00
struct llarp_timeout_job
{
2018-04-30 20:18:34 +02:00
uint64_t timeout;
void *user;
llarp_timer_handler_func handler;
};
2018-04-30 20:18:18 +02:00
2018-04-30 20:18:34 +02:00
struct llarp_timer_context;
2018-04-30 20:18:18 +02:00
struct llarp_timer_context *
llarp_init_timer();
2018-04-30 20:18:18 +02:00
uint32_t
llarp_timer_call_later(struct llarp_timer_context *t,
struct llarp_timeout_job job);
2018-04-30 20:18:34 +02:00
void
llarp_timer_cancel_job(struct llarp_timer_context *t, uint32_t id);
void
llarp_timer_remove_job(struct llarp_timer_context *t, uint32_t id);
2018-04-30 20:18:34 +02:00
// cancel all
void
llarp_timer_stop(struct llarp_timer_context *t);
2018-04-30 20:18:34 +02:00
2018-10-29 17:48:36 +01:00
/// set timer's timestamp, if now is 0 use the current time from system clock,
/// llarp_time_t now
void
llarp_timer_set_time(struct llarp_timer_context *t, llarp_time_t now);
2018-04-30 20:18:34 +02:00
// blocking run timer and send events to thread pool
void
llarp_timer_run(struct llarp_timer_context *t, struct llarp_threadpool *pool);
2018-04-30 20:18:34 +02:00
2018-06-06 14:46:26 +02:00
/// single threaded run timer, tick all timers
void
2018-08-09 21:02:17 +02:00
llarp_timer_tick_all(struct llarp_timer_context *t);
/// tick all timers into a threadpool asynchronously
void
llarp_timer_tick_all_async(struct llarp_timer_context *t,
2018-10-29 17:48:36 +01:00
struct llarp_threadpool *pool, llarp_time_t now);
2018-06-06 14:46:26 +02:00
void
llarp_free_timer(struct llarp_timer_context **t);
2018-04-30 20:18:18 +02:00
#endif