urbackup_backend/ThreadPool.h
2016-01-28 15:34:06 +01:00

71 lines
1.5 KiB
C++

#include "Interface/Mutex.h"
#include "Interface/Condition.h"
#include "Interface/Thread.h"
#include <deque>
#include "Interface/ThreadPool.h"
class IThread;
class CThreadPool;
class CPoolThread : public IThread
{
public:
CPoolThread(CThreadPool *pMgr);
void operator()(void);
void shutdown(void);
private:
volatile bool dexit;
CThreadPool* mgr;
};
class CThreadPool : public IThreadPool
{
public:
CThreadPool();
~CThreadPool();
THREADPOOL_TICKET execute(IThread *runnable, const std::string& name = std::string());
void executeWait(IThread *runnable, const std::string& name = std::string());
bool isRunning(THREADPOOL_TICKET ticket);
bool waitFor(std::vector<THREADPOOL_TICKET> tickets, int timems=-1);
bool waitFor(THREADPOOL_TICKET ticket, int timems=-1);
void Remove(CPoolThread *pt);
void Shutdown(void);
private:
IThread * getRunnable(THREADPOOL_TICKET *todel, bool del, bool& stop, std::string& name);
bool isRunningInt(THREADPOOL_TICKET ticket);
unsigned int nThreads;
unsigned int nRunning;
std::vector<CPoolThread*> threads;
struct SNewTask
{
SNewTask(IThread* runnable, THREADPOOL_TICKET ticket, std::string name)
: runnable(runnable), ticket(ticket), name(name)
{}
IThread* runnable;
THREADPOOL_TICKET ticket;
std::string name;
};
std::deque<SNewTask> toexecute;
IMutex* mutex;
ICondition* cond;
std::map<THREADPOOL_TICKET, ICondition*> running;
THREADPOOL_TICKET currticket;
volatile bool dexit;
friend class CPoolThread;
};