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

82 lines
1.5 KiB
C++
Raw Normal View History

2018-04-30 20:18:18 +02:00
#include <llarp/logic.h>
#include <llarp/mem.h>
2018-05-28 22:51:15 +02:00
#include "logger.hpp"
2018-04-30 20:18:18 +02:00
struct llarp_logic
{
2018-04-30 20:18:34 +02:00
struct llarp_threadpool* thread;
struct llarp_timer_context* timer;
2018-04-30 20:18:18 +02:00
};
extern "C" {
struct llarp_logic*
llarp_init_logic()
{
llarp_logic* logic = new llarp_logic;
if(logic)
{
2018-05-20 20:56:34 +02:00
logic->thread = llarp_init_threadpool(1, "llarp-logic");
logic->timer = llarp_init_timer();
2018-04-30 20:18:18 +02:00
}
return logic;
};
void
llarp_free_logic(struct llarp_logic** logic)
{
if(*logic)
{
2018-05-28 22:51:15 +02:00
// llarp_free_timer(&(*logic)->timer);
delete *logic;
2018-04-30 20:18:18 +02:00
}
2018-05-28 22:51:15 +02:00
*logic = nullptr;
2018-04-30 20:18:18 +02:00
}
void
llarp_logic_stop(struct llarp_logic* logic)
{
llarp::Debug("logic thread stop");
2018-05-28 22:51:15 +02:00
if(logic->thread)
{
llarp_threadpool_stop(logic->thread);
llarp_threadpool_join(logic->thread);
}
llarp_free_threadpool(&logic->thread);
llarp::Debug("logic timer stop");
2018-05-28 22:51:15 +02:00
if(logic->timer)
llarp_timer_stop(logic->timer);
2018-04-30 20:18:18 +02:00
}
void
llarp_logic_mainloop(struct llarp_logic* logic)
{
2018-04-30 20:18:18 +02:00
llarp_timer_run(logic->timer, logic->thread);
}
2018-05-17 22:00:58 +02:00
void
llarp_logic_queue_job(struct llarp_logic* logic, struct llarp_thread_job job)
2018-05-18 22:08:57 +02:00
{
llarp_threadpool_queue_job(logic->thread, job);
}
uint32_t
llarp_logic_call_later(struct llarp_logic* logic, struct llarp_timeout_job job)
2018-05-17 22:00:58 +02:00
{
return llarp_timer_call_later(logic->timer, job);
}
void
llarp_logic_cancel_call(struct llarp_logic* logic, uint32_t id)
2018-05-17 22:00:58 +02:00
{
llarp_timer_cancel_job(logic->timer, id);
}
void
llarp_logic_remove_call(struct llarp_logic* logic, uint32_t id)
{
llarp_timer_remove_job(logic->timer, id);
2018-05-17 22:00:58 +02:00
}
}