2019-09-01 12:10:49 +00:00
|
|
|
#include <util/logging/logger.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
#include <util/time.hpp>
|
2019-09-01 13:26:16 +00:00
|
|
|
#include <util/thread/threadpool.h>
|
|
|
|
#include <util/thread/thread_pool.hpp>
|
2018-06-06 12:46:26 +00:00
|
|
|
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <cstring>
|
2018-08-08 17:43:46 +00:00
|
|
|
#include <functional>
|
2018-06-06 12:46:26 +00:00
|
|
|
#include <queue>
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
struct llarp_threadpool *
|
|
|
|
llarp_init_threadpool(int workers, const char *name)
|
|
|
|
{
|
2018-09-07 20:48:52 +00:00
|
|
|
if(workers <= 0)
|
|
|
|
workers = 1;
|
2018-11-19 11:56:40 +00:00
|
|
|
return new llarp_threadpool(workers, name);
|
2018-01-29 14:27:24 +00:00
|
|
|
}
|
2018-01-29 14:19:00 +00:00
|
|
|
|
2018-06-06 12:46:26 +00:00
|
|
|
struct llarp_threadpool *
|
|
|
|
llarp_init_same_process_threadpool()
|
|
|
|
{
|
|
|
|
return new llarp_threadpool();
|
|
|
|
}
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
llarp_threadpool_join(struct llarp_threadpool *pool)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("threadpool join");
|
2018-06-06 12:46:26 +00:00
|
|
|
if(pool->impl)
|
2018-11-19 11:56:40 +00:00
|
|
|
pool->impl->drain();
|
2018-05-22 15:54:19 +00:00
|
|
|
}
|
2018-01-29 14:19:00 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
2018-11-19 11:56:40 +00:00
|
|
|
llarp_threadpool_start(struct llarp_threadpool *pool)
|
|
|
|
{
|
|
|
|
if(pool->impl)
|
|
|
|
pool->impl->start();
|
2018-02-01 13:21:00 +00:00
|
|
|
}
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
llarp_threadpool_stop(struct llarp_threadpool *pool)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("threadpool stop");
|
2018-06-06 12:46:26 +00:00
|
|
|
if(pool->impl)
|
2018-11-19 11:56:40 +00:00
|
|
|
pool->impl->stop();
|
2019-05-22 17:18:19 +00:00
|
|
|
if(pool->jobs)
|
|
|
|
pool->jobs->disable();
|
2018-05-22 15:54:19 +00:00
|
|
|
}
|
2018-04-30 14:57:13 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
llarp_threadpool_wait(struct llarp_threadpool *pool)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("threadpool wait");
|
2018-06-06 12:46:26 +00:00
|
|
|
if(pool->impl)
|
2018-04-30 14:57:13 +00:00
|
|
|
{
|
2018-11-19 11:56:40 +00:00
|
|
|
pool->impl->drain();
|
2018-04-30 14:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
llarp_threadpool_queue_job(struct llarp_threadpool *pool,
|
|
|
|
struct llarp_thread_job job)
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
|
|
|
return llarp_threadpool_queue_job(pool, (std::bind(job.work, job.user)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
llarp_threadpool_queue_job(struct llarp_threadpool *pool,
|
|
|
|
std::function< void() > func)
|
2018-05-22 15:54:19 +00:00
|
|
|
{
|
2018-06-06 12:46:26 +00:00
|
|
|
if(pool->impl)
|
2019-05-15 15:54:26 +00:00
|
|
|
{
|
2019-06-04 18:31:17 +00:00
|
|
|
while(!pool->impl->tryAddJob(func))
|
2019-05-15 15:54:26 +00:00
|
|
|
{
|
2019-05-15 22:03:24 +00:00
|
|
|
std::this_thread::sleep_for(std::chrono::microseconds(1000));
|
2019-05-15 15:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-30 18:48:43 +00:00
|
|
|
else
|
2018-08-02 21:26:14 +00:00
|
|
|
{
|
2018-08-30 18:48:43 +00:00
|
|
|
// single threaded mode
|
2019-06-04 18:31:17 +00:00
|
|
|
while(pool->jobs->tryPushBack(func) != llarp::thread::QueueReturn::Success)
|
2019-05-22 17:18:19 +00:00
|
|
|
{
|
|
|
|
if(!pool->jobs->enabled())
|
|
|
|
return;
|
|
|
|
if(::getpid() == pool->callingPID)
|
|
|
|
llarp_threadpool_tick(pool);
|
|
|
|
else
|
|
|
|
std::this_thread::sleep_for(std::chrono::microseconds(1000));
|
|
|
|
}
|
2018-08-02 21:26:14 +00:00
|
|
|
}
|
2018-06-06 12:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
llarp_threadpool_tick(struct llarp_threadpool *pool)
|
|
|
|
{
|
2019-03-03 20:51:47 +00:00
|
|
|
while(pool->size())
|
2018-06-06 12:46:26 +00:00
|
|
|
{
|
2019-05-22 17:18:19 +00:00
|
|
|
auto job = pool->jobs->tryPopFront();
|
2018-12-27 19:10:38 +00:00
|
|
|
if(job)
|
2019-03-03 20:51:47 +00:00
|
|
|
{
|
2019-05-22 17:18:19 +00:00
|
|
|
(*job)();
|
2019-03-03 20:51:47 +00:00
|
|
|
}
|
2018-06-06 12:46:26 +00:00
|
|
|
}
|
2018-01-31 19:59:26 +00:00
|
|
|
}
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
llarp_free_threadpool(struct llarp_threadpool **pool)
|
|
|
|
{
|
2018-05-27 16:45:04 +00:00
|
|
|
if(*pool)
|
|
|
|
{
|
|
|
|
delete *pool;
|
|
|
|
}
|
2018-01-29 14:27:24 +00:00
|
|
|
*pool = nullptr;
|
|
|
|
}
|