lokinet/llarp/util/threadpool.h

101 lines
2.1 KiB
C
Raw Normal View History

2018-01-27 01:18:10 +00:00
#ifndef LLARP_THREADPOOL_H
#define LLARP_THREADPOOL_H
#include <util/threading.hpp>
#include <util/threadpool.hpp>
#include <util/queue.hpp>
#include <absl/base/thread_annotations.h>
#include <memory>
#include <queue>
struct llarp_threadpool
{
std::unique_ptr< llarp::thread::ThreadPool > impl;
std::unique_ptr< llarp::thread::Queue< std::function< void(void) > > > jobs;
const pid_t callingPID;
llarp_threadpool(int workers, const char *name)
2019-06-18 04:28:44 +00:00
: impl(std::make_unique< llarp::thread::ThreadPool >(workers,
workers * 128))
, jobs(nullptr)
, callingPID(0)
{
(void)name;
}
llarp_threadpool()
: jobs(new llarp::thread::Queue< std::function< void(void) > >(128))
, callingPID(::getpid())
{
jobs->enable();
}
size_t
size() const
{
if(jobs)
return jobs->size();
return 0;
}
2019-05-15 15:54:26 +00:00
bool
QueueFunc(std::function< void(void) > f)
{
if(impl)
2019-05-15 15:54:26 +00:00
return impl->tryAddJob(f);
else
return jobs->tryPushBack(f) == llarp::thread::QueueReturn::Success;
}
};
2018-01-27 01:18:10 +00:00
struct llarp_threadpool *
llarp_init_threadpool(int workers, const char *name);
2018-06-06 12:46:26 +00:00
/// for single process mode
struct llarp_threadpool *
llarp_init_same_process_threadpool();
void
llarp_free_threadpool(struct llarp_threadpool **tp);
2018-01-27 01:18:10 +00:00
2018-02-01 13:21:00 +00:00
typedef void (*llarp_thread_work_func)(void *);
2018-01-31 19:59:26 +00:00
2018-01-29 14:27:24 +00:00
/** job to be done in worker thread */
struct llarp_thread_job
{
2018-01-29 14:27:24 +00:00
/** user data to pass to work function */
void *user;
/** called in threadpool worker thread */
2018-01-31 19:59:26 +00:00
llarp_thread_work_func work;
2018-07-16 04:55:46 +00:00
#ifdef __cplusplus
2018-06-06 12:46:26 +00:00
llarp_thread_job(void *u, llarp_thread_work_func w) : user(u), work(w)
{
}
llarp_thread_job() : user(nullptr), work(nullptr)
{
}
2018-07-16 04:55:46 +00:00
#endif
2018-01-29 14:27:24 +00:00
};
2018-01-27 01:18:10 +00:00
2018-06-06 12:46:26 +00:00
/// for single process mode
void
llarp_threadpool_tick(struct llarp_threadpool *tp);
void
llarp_threadpool_queue_job(struct llarp_threadpool *tp,
struct llarp_thread_job j);
2018-11-19 16:40:49 +00:00
void
llarp_threadpool_start(struct llarp_threadpool *tp);
2018-01-29 14:27:24 +00:00
void
llarp_threadpool_stop(struct llarp_threadpool *tp);
void
llarp_threadpool_join(struct llarp_threadpool *tp);
2018-04-30 16:14:20 +00:00
void
llarp_threadpool_wait(struct llarp_threadpool *tp);
2018-01-27 01:18:10 +00:00
#endif