libcryfs/random/LoopThread.cpp
2015-10-17 03:08:56 +02:00

38 lines
895 B
C++

#include "LoopThread.h"
#include "../logging/logging.h"
using namespace cpputils::logging;
namespace cpputils {
LoopThread::LoopThread(): _thread() {}
LoopThread::~LoopThread() {
stop();
}
void LoopThread::start() {
_thread = boost::thread(std::bind(&LoopThread::main, this));
}
void LoopThread::stop() {
_thread.interrupt();
_thread.join();
}
void LoopThread::main() {
try {
while(true) {
loopIteration();
}
} catch (const boost::thread_interrupted &e) {
//Do nothing, exit thread.
} catch (const std::exception &e) {
//TODO Think about logging
LOG(ERROR) << "LoopThread crashed: " << e.what();
} catch (...) {
//TODO Think about logging
LOG(ERROR) << "LoopThread crashed";
}
}
}