libcryfs/src/cpp-utils/thread/LoopThread.h

32 lines
1.0 KiB
C
Raw Normal View History

#pragma once
2015-11-07 09:00:25 +01:00
#ifndef MESSMER_CPPUTILS_THREAD_LOOPTHREAD_H
#define MESSMER_CPPUTILS_THREAD_LOOPTHREAD_H
2015-11-07 09:00:25 +01:00
#include "ThreadSystem.h"
#include <boost/optional.hpp>
namespace cpputils {
//TODO Test
2015-10-29 15:51:05 +01:00
//TODO Test that fork() doesn't destroy anything (e.g. no deadlock on stop() because thread is not running anymore)
2015-10-28 15:00:24 +01:00
// Has to be final, because otherwise there could be a race condition where LoopThreadForkHandler calls a LoopThread
// where the child class destructor already ran.
class LoopThread final {
public:
// The loopIteration callback returns true, if more iterations should be run, and false, if the thread should be terminated.
LoopThread(std::function<bool()> loopIteration, std::string threadName);
2015-10-28 15:00:24 +01:00
~LoopThread();
void start();
void stop();
private:
std::function<bool()> _loopIteration;
2015-11-07 09:00:25 +01:00
boost::optional<ThreadSystem::Handle> _runningHandle;
std::string _threadName;
2017-09-19 21:16:47 +02:00
DISALLOW_COPY_AND_ASSIGN(LoopThread);
};
}
#endif