lokinet/llarp/util/logic.hpp

58 lines
896 B
C++
Raw Normal View History

2018-11-19 23:57:28 +00:00
#ifndef LLARP_LOGIC_HPP
#define LLARP_LOGIC_HPP
#include <util/mem.h>
#include <util/threadpool.h>
#include <util/timer.hpp>
2018-04-30 18:18:18 +00:00
2018-12-10 14:14:55 +00:00
namespace llarp
2018-07-09 04:26:27 +00:00
{
2018-12-10 14:14:55 +00:00
class Logic
{
public:
2018-12-10 14:14:55 +00:00
struct llarp_threadpool* thread;
struct llarp_timer_context* timer;
2018-04-30 18:18:18 +00:00
2018-12-10 14:14:55 +00:00
Logic()
: thread(llarp_init_same_process_threadpool())
, timer(llarp_init_timer())
{
}
2018-04-30 18:18:18 +00:00
2018-12-10 14:14:55 +00:00
Logic(struct llarp_threadpool* tp) : thread(tp), timer(llarp_init_timer())
{
}
2018-06-06 12:46:26 +00:00
2018-12-10 14:14:55 +00:00
/// single threaded tick
void
tick(llarp_time_t now);
2018-06-06 12:46:26 +00:00
2018-12-10 14:14:55 +00:00
/// isolated tick
void
tick_async(llarp_time_t now);
2018-08-09 19:02:17 +00:00
2018-12-10 14:14:55 +00:00
void
stop_timer();
2018-04-30 18:18:18 +00:00
2018-12-10 14:14:55 +00:00
void
stop();
2018-04-30 18:18:18 +00:00
2018-12-10 14:14:55 +00:00
void
mainloop();
2018-08-09 19:02:17 +00:00
2018-12-10 14:14:55 +00:00
void
queue_job(struct llarp_thread_job job);
2018-04-30 18:18:18 +00:00
2018-12-10 14:14:55 +00:00
uint32_t
2019-01-03 21:54:26 +00:00
call_later(const llarp_timeout_job& job);
2018-12-10 14:14:55 +00:00
void
cancel_call(uint32_t id);
2018-12-10 14:14:55 +00:00
void
remove_call(uint32_t id);
};
} // namespace llarp
2018-04-30 18:18:18 +00:00
#endif