// ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 * // * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved * // ************************************************************************** #ifndef BOOST_THREAD_WRAP_H_78963234 #define BOOST_THREAD_WRAP_H_78963234 //temporary solution until C++11 thread becomes fully available (considering std::thread's non-interruptibility and std::async craziness, this may be NEVER) #include //workaround this pathetic boost thread warning mess #ifdef __GNUC__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wswitch-enum" #pragma GCC diagnostic ignored "-Wstrict-aliasing" #pragma GCC diagnostic ignored "-Wredundant-decls" #pragma GCC diagnostic ignored "-Wshadow" #ifndef __clang__ //clang defines __GNUC__, but doesn't support this warning #pragma GCC diagnostic ignored "-Wunused-local-typedefs" #endif #endif #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable : 4702 4913) //unreachable code; user defined binary operator ',' exists but no overload could convert all operands, default built-in binary operator ',' used #endif #include #ifdef __GNUC__ #pragma GCC diagnostic pop #endif #ifdef _MSC_VER #pragma warning(pop) #endif namespace zen { /* std::async replacement without crappy semantics: 1. guaranteed to run asynchronous 2. does not follow C++11 [futures.async], Paragraph 5, where std::future waits for thread in destructor Example: Zstring dirpath = ... auto ft = zen::async([=](){ return zen::dirExists(dirpath); }); if (ft.timed_wait(boost::posix_time::milliseconds(200)) && ft.get()) //dir exising */ template auto async(Function fun) -> boost::unique_future; //wait for all with a time limit: return true if *all* results are available! template bool wait_for_all_timed(InputIterator first, InputIterator last, const Duration& wait_duration); //wait until first job is successful or all failed template class GetFirstResult { public: GetFirstResult(); template void addJob(Fun f); //f must return a std::unique_ptr containing a value if successful template bool timedWait(const Duration& duration) const; //true: "get()" is ready, false: time elapsed //return first value or none if all jobs failed; blocks until result is ready! std::unique_ptr get() const; //may be called only once! private: class AsyncResult; std::shared_ptr asyncResult; size_t jobsTotal_; }; //###################### implementation ###################### #ifndef BOOST_HAS_THREADS #error just some paranoia check... #endif template inline auto async(Function fun) -> boost::unique_future { typedef decltype(fun()) ResultType; #if defined BOOST_THREAD_PROVIDES_SIGNATURE_PACKAGED_TASK //mirror "boost/thread/future.hpp", hopefully they know what they're doing boost::packaged_task pt(std::move(fun)); //packaged task seems to even require r-value reference: https://sourceforge.net/p/freefilesync/bugs/234/ #else boost::packaged_task pt(std::move(fun)); #endif auto fut = pt.get_future(); boost::thread(std::move(pt)).detach(); //we have to explicitly detach since C++11: [thread.thread.destr] ~thread() calls std::terminate() if joinable()!!! return std::move(fut); //compiler error without "move", why needed??? } template inline bool wait_for_all_timed(InputIterator first, InputIterator last, const Duration& wait_duration) { const boost::system_time endTime = boost::get_system_time() + wait_duration; for (; first != last; ++first) if (!first->timed_wait_until(endTime)) return false; //time elapsed return true; } template class GetFirstResult::AsyncResult { public: AsyncResult() : #ifndef NDEBUG returnedResult(false), #endif jobsFinished(0) {} //context: worker threads void reportFinished(std::unique_ptr&& result) { { boost::lock_guard dummy(lockResult); ++jobsFinished; if (!result_) result_ = std::move(result); } conditionJobDone.notify_all(); //instead of notify_one(); workaround bug: https://svn.boost.org/trac/boost/ticket/7796 //condition handling, see: http://www.boost.org/doc/libs/1_43_0/doc/html/thread/synchronization.html#thread.synchronization.condvar_ref } //context: main thread template bool waitForResult(size_t jobsTotal, const Duration& duration) { boost::unique_lock dummy(lockResult); return conditionJobDone.timed_wait(dummy, duration, [&] { return this->jobDone(jobsTotal); }); //use timed_wait predicate if exitting before condition is reached: http://www.boost.org/doc/libs/1_49_0/doc/html/thread/synchronization.html#thread.synchronization.condvar_ref.condition_variable.timed_wait_rel } std::unique_ptr getResult(size_t jobsTotal) { boost::unique_lock dummy(lockResult); while (!jobDone(jobsTotal)) conditionJobDone.timed_wait(dummy, boost::posix_time::milliseconds(50)); //interruption point! #ifndef NDEBUG assert(!returnedResult); returnedResult = true; #endif return std::move(result_); } private: bool jobDone(size_t jobsTotal) const { return result_ || (jobsFinished >= jobsTotal); } //call while locked! #ifndef NDEBUG bool returnedResult; #endif boost::mutex lockResult; size_t jobsFinished; // std::unique_ptr result_; //our condition is: "have result" or "jobsFinished == jobsTotal" boost::condition_variable conditionJobDone; }; template inline GetFirstResult::GetFirstResult() : asyncResult(std::make_shared()), jobsTotal_(0) {} template template inline void GetFirstResult::addJob(Fun f) //f must return a std::unique_ptr containing a value on success { auto asyncResult2 = asyncResult; //capture member variable, not "this"! boost::thread t([asyncResult2, f] { asyncResult2->reportFinished(f()); }); ++jobsTotal_; t.detach(); //we have to be explicit since C++11: [thread.thread.destr] ~thread() calls std::terminate() if joinable()!!! } template template inline bool GetFirstResult::timedWait(const Duration& duration) const { return asyncResult->waitForResult(jobsTotal_, duration); } template inline std::unique_ptr GetFirstResult::get() const { return asyncResult->getResult(jobsTotal_); } } #endif //BOOST_THREAD_WRAP_H_78963234