camenduru's picture
thanks to openpose ❤
7fc5a59
#ifndef OPENPOSE_THREAD_WORKER_HPP
#define OPENPOSE_THREAD_WORKER_HPP
#include <openpose/core/common.hpp>
namespace op
{
template<typename TDatums>
class Worker
{
public:
Worker();
virtual ~Worker();
void initializationOnThreadNoException();
bool checkAndWork(TDatums& tDatums);
inline bool isRunning() const
{
return mIsRunning;
}
inline void stop()
{
mIsRunning = false;
}
// Virtual in case some function needs special stopping (e.g., buffers might not stop immediately and need a
// few iterations)
inline virtual void tryStop()
{
stop();
}
protected:
virtual void initializationOnThread() = 0;
virtual void work(TDatums& tDatums) = 0;
private:
bool mIsRunning;
DELETE_COPY(Worker);
};
}
// Implementation
namespace op
{
template<typename TDatums>
Worker<TDatums>::Worker() :
mIsRunning{true}
{
}
template<typename TDatums>
Worker<TDatums>::~Worker()
{
}
template<typename TDatums>
void Worker<TDatums>::initializationOnThreadNoException()
{
try
{
this->initializationOnThread();
}
catch (const std::exception& e)
{
this->stop();
errorWorker(e.what(), __LINE__, __FUNCTION__, __FILE__);
}
}
template<typename TDatums>
bool Worker<TDatums>::checkAndWork(TDatums& tDatums)
{
try
{
if (mIsRunning)
work(tDatums);
return mIsRunning;
}
catch (const std::exception& e)
{
this->stop();
errorWorker(e.what(), __LINE__, __FUNCTION__, __FILE__);
return false;
}
}
COMPILE_TEMPLATE_DATUM(Worker);
}
#endif // OPENPOSE_THREAD_WORKER_HPP