38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
#include "FuseThread.h"
|
|
#include <csignal>
|
|
#include <cpp-utils/assert/assert.h>
|
|
#include "fspp/fuse/Fuse.h"
|
|
|
|
using boost::thread;
|
|
using boost::chrono::seconds;
|
|
using std::string;
|
|
|
|
using fspp::fuse::Fuse;
|
|
|
|
FuseThread::FuseThread(Fuse *fuse)
|
|
:_fuse(fuse), _child() {
|
|
}
|
|
|
|
void FuseThread::start(int argc, char *argv[]) {
|
|
_child = thread([this, argc, argv] () {
|
|
_fuse->run(argc, argv);
|
|
});
|
|
//Wait until it is running (busy waiting is simple and doesn't hurt much here)
|
|
while(!_fuse->running()) {}
|
|
#ifdef __APPLE__
|
|
// On Mac OS X, _fuse->running() returns true too early, because osxfuse calls init() when it's not ready yet. Give it a bit time.
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(200));
|
|
#endif
|
|
}
|
|
|
|
void FuseThread::stop() {
|
|
pthread_kill(_child.native_handle(), SIGINT);
|
|
bool thread_stopped = _child.try_join_for(seconds(5));
|
|
ASSERT(thread_stopped, "FuseThread could not be stopped");
|
|
//Wait until it is properly shutdown (busy waiting is simple and doesn't hurt much here)
|
|
while (_fuse->running()) {}
|
|
}
|