X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/167580ed173f1267354e8e1962a77149e760dcc2..3d35f119d529a283de2a39bca8d8034e6086aefc:/include/simgrid/kernel/future.hpp diff --git a/include/simgrid/kernel/future.hpp b/include/simgrid/kernel/future.hpp index 9b6a5fc88b..374d0ee650 100644 --- a/include/simgrid/kernel/future.hpp +++ b/include/simgrid/kernel/future.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016. The SimGrid Team. +/* Copyright (c) 2016-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,17 +7,18 @@ #ifndef SIMGRID_KERNEL_FUTURE_HPP #define SIMGRID_KERNEL_FUTURE_HPP -#include - -#include -#include - #include #include #include #include #include +#include + +#include +#include +#include + namespace simgrid { namespace kernel { @@ -35,6 +36,11 @@ enum class FutureStatus { done, }; +template +struct is_future : std::false_type {}; +template +struct is_future> : std::true_type {}; + /** Bases stuff for all @ref simgrid::kernel::FutureState */ class FutureStateBase { public: @@ -42,6 +48,8 @@ public: FutureStateBase(FutureStateBase const&) = delete; FutureStateBase& operator=(FutureStateBase const&) = delete; + XBT_PUBLIC void schedule(simgrid::xbt::Task&& job); + void set_exception(std::exception_ptr exception) { xbt_assert(exception_ == nullptr); @@ -51,9 +59,9 @@ public: this->set_ready(); } - void set_continuation(simgrid::xbt::Task continuation) + void set_continuation(simgrid::xbt::Task&& continuation) { - xbt_assert(!continuation_); + xbt_assert(not continuation_); switch (status_) { case FutureStatus::done: // This is not supposed to happen if continuation is set @@ -63,7 +71,7 @@ public: case FutureStatus::ready: // The future is ready, execute the continuation directly. // We might execute it from the event loop instead: - continuation(); + schedule(std::move(continuation)); break; case FutureStatus::not_ready: // The future is not ready so we mast keep the continuation for @@ -98,7 +106,7 @@ protected: // We need to do this becase the current implementation of the // continuation has a shared_ptr to the FutureState. auto continuation = std::move(continuation_); - continuation(); + this->schedule(std::move(continuation)); } } @@ -113,6 +121,7 @@ protected: status_ = FutureStatus::done; if (exception_) { std::exception_ptr exception = std::move(exception_); + exception_ = nullptr; std::rethrow_exception(std::move(exception)); } } @@ -128,7 +137,7 @@ private: * You are not expected to use them directly but to create them * implicitely through a @ref simgrid::kernel::Promise. * Alternatively kernel operations could inherit or contain FutureState - * if they are managed with @ref std::shared_ptr. + * if they are managed with std::shared_ptr. **/ template class FutureState : public FutureStateBase { @@ -148,7 +157,7 @@ public: xbt_assert(this->value_); auto result = std::move(this->value_.get()); this->value_ = boost::optional(); - return std::move(result); + return result; } private: @@ -172,7 +181,7 @@ public: xbt_assert(this->value_); T* result = value_; value_ = nullptr; - return *value_; + return *result; } private: @@ -195,6 +204,32 @@ public: } }; +template void bind_promise(Promise&& promise, Future future) +{ + class PromiseBinder { + public: + explicit PromiseBinder(Promise&& promise) : promise_(std::move(promise)) {} + void operator()(Future future) { simgrid::xbt::set_promise(promise_, future); } + + private: + Promise promise_; + }; + future.then_(PromiseBinder(std::move(promise))); +} + +template Future unwrap_future(Future> future); + +template +XBT_ATTRIB_DEPRECATED_v323("Please use bind_promise") void bindPromise(Promise promise, Future future) +{ + bind_promise(promise, future); +} +template +XBT_ATTRIB_DEPRECATED_v323("Please use unwrap_future") Future unwrapFuture(Future> future) +{ + unwrap_future(future); +} + /** Result of some (probably) asynchronous operation in the SimGrid kernel * * @ref simgrid::simix::Future and @ref simgrid::simix::Future provide an @@ -234,7 +269,7 @@ public: * ); * * - * This is based on C++1z @ref std::future but with some differences: + * This is based on C++1z std::future but with some differences: * * * there is no thread synchronization (atomic, mutex, condition variable, * etc.) because everything happens in the SimGrid event loop; @@ -255,7 +290,8 @@ template class Future { public: Future() = default; - Future(std::shared_ptr> state): state_(std::move(state)) {} + explicit Future(std::shared_ptr> state) : state_(std::move(state)) {} + ~Future() = default; // Move type: Future(Future&) = delete; @@ -289,35 +325,83 @@ public: return state_ != nullptr && state_->is_ready(); } + /** Attach a continuation to this future + * + * This is like .then() but avoid the creation of a new future. + */ + template + void then_(F continuation) + { + if (state_ == nullptr) + throw std::future_error(std::future_errc::no_state); + // Give shared-ownership to the continuation: + auto state = std::move(state_); + state->set_continuation(simgrid::xbt::make_task(std::move(continuation), state)); + } + + /** Attach a continuation to this future + * + * This version never does future unwrapping. + */ + template auto then_no_unwrap(F continuation) -> Future + { + typedef decltype(continuation(std::move(*this))) R; + if (state_ == nullptr) + throw std::future_error(std::future_errc::no_state); + auto state = std::move(state_); + // Create a new future... + Promise promise; + Future future = promise.get_future(); + // ...and when the current future is ready... + state->set_continuation(simgrid::xbt::make_task( + [](Promise promise, std::shared_ptr> state, F continuation) { + // ...set the new future value by running the continuation. + Future future(std::move(state)); + simgrid::xbt::fulfill_promise(promise, [&continuation, &future] { return continuation(std::move(future)); }); + }, + std::move(promise), state, std::move(continuation))); + return future; + } + + template + XBT_ATTRIB_DEPRECATED_v323("Please use then_no_unwrap") auto thenNoUnwrap(F continuation) + -> Future + { + then_no_unwrap(continuation); + } + /** Attach a continuation to this future * * The future must be valid in order to make this call. * The continuation is executed when the future becomes ready. * The future becomes invalid after this call. * - * We don't support future chaining for now (`.then().then()`). - * * @param continuation This function is called with a ready future * the future is ready * @exception std::future_error no state is associated with the future */ + template + auto then(F continuation) -> typename std::enable_if::value, + Future>::type + { + return this->then_no_unwrap(std::move(continuation)); + } + + /** Attach a continuation to this future (future chaining) */ template - void then(F continuation) + auto then(F continuation) + -> typename std::enable_if< + is_future::value, + decltype(continuation(std::move(*this))) + >::type { - if (state_ == nullptr) - throw std::future_error(std::future_errc::no_state); - // Give shared-ownership to the continuation: - auto state = std::move(state_); - state->set_continuation(simgrid::xbt::makeTask( - std::move(continuation), state)); + return unwrap_future(this->then_no_unwrap(std::move(continuation))); } /** Get the value from the future - * - * This is expected to be called * * The future must be valid and ready in order to make this call. - * @ref std::future blocks when the future is not ready but we are + * std::future blocks when the future is not ready but we are * completely single-threaded so blocking would be a deadlock. * After the call, the future becomes invalid. * @@ -337,19 +421,27 @@ private: std::shared_ptr> state_; }; -/** Producer side of a @simgrid::kernel::Future +template Future unwrap_future(Future> future) +{ + Promise promise; + Future result = promise.get_future(); + bind_promise(std::move(promise), std::move(future)); + return result; +} + +/** Producer side of a @ref simgrid::kernel::Future * * A @ref Promise is connected to some `Future` and can be used to * set its result. * - * Similar to @ref std::promise + * Similar to std::promise * * * // Create a promise and a future: * auto promise = std::make_shared>(); * auto future = promise->get_future(); * - * SIMIX_timer_set(date, [promise] { + * simgrid::simix::Timer::set(date, [promise] { * try { * int value = compute_the_value(); * if (value < 0) @@ -373,13 +465,13 @@ template class Promise { public: Promise() : state_(std::make_shared>()) {} - Promise(std::shared_ptr> state) : state_(std::move(state)) {} + explicit Promise(std::shared_ptr> state) : state_(std::move(state)) {} // Move type - Promise(Promise&) = delete; - Promise& operator=(Promise&) = delete; + Promise(Promise const&) = delete; + Promise& operator=(Promise const&) = delete; Promise(Promise&& that) : - state_(std::move(that.state_)), future_get_(that.future_set) + state_(std::move(that.state_)), future_get_(that.future_get_) { that.future_get_ = false; } @@ -428,7 +520,7 @@ template<> class Promise { public: Promise() : state_(std::make_shared>()) {} - Promise(std::shared_ptr> state) : state_(std::move(state)) {} + explicit Promise(std::shared_ptr> state) : state_(std::move(state)) {} ~Promise() { if (state_ && state_->get_status() == FutureStatus::not_ready) @@ -437,8 +529,8 @@ public: } // Move type - Promise(Promise&) = delete; - Promise& operator=(Promise&) = delete; + Promise(Promise const&) = delete; + Promise& operator=(Promise const&) = delete; Promise(Promise&& that) : state_(std::move(that.state_)), future_get_(that.future_get_) {