/* * Copyright 2015-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include #include namespace folly { /// This namespace is for utility functions that would usually be static /// members of Future, except they don't make sense there because they don't /// depend on the template type (rather, on the type of their arguments in /// some cases). This is the least-bad naming scheme we could think of. Some /// of the functions herein have really-likely-to-collide names, like "map" /// and "sleep". namespace futures { /// Returns a Future that will complete after the specified duration. The /// Duration typedef of a `std::chrono` duration type indicates the /// resolution you can expect to be meaningful (milliseconds at the time of /// writing). Normally you wouldn't need to specify a Timekeeper, we will /// use the global futures timekeeper (we run a thread whose job it is to /// keep time for futures timeouts) but we provide the option for power /// users. /// /// The Timekeeper thread will be lazily created the first time it is /// needed. If your program never uses any timeouts or other time-based /// Futures you will pay no Timekeeper thread overhead. Future sleep(Duration, Timekeeper* = nullptr); /** * Set func as the callback for each input Future and return a vector of * Futures containing the results in the input order. */ template < class It, class F, class ItT = typename std::iterator_traits::value_type, class Result = typename decltype( std::declval().then(std::declval()))::value_type> std::vector> map(It first, It last, F func); /** * Set func as the callback for each input Future and return a vector of * Futures containing the results in the input order and completing on * exec. */ template < class It, class F, class ItT = typename std::iterator_traits::value_type, class Result = typename decltype(std::move(std::declval()) .via(std::declval()) .then(std::declval()))::value_type> std::vector> map(Executor& exec, It first, It last, F func); // Sugar for the most common case template auto map(Collection&& c, F&& func) -> decltype(map(c.begin(), c.end(), func)) { return map(c.begin(), c.end(), std::forward(func)); } // Sugar for the most common case template auto map(Executor& exec, Collection&& c, F&& func) -> decltype(map(exec, c.begin(), c.end(), func)) { return map(exec, c.begin(), c.end(), std::forward(func)); } } // namespace futures /** Make a completed SemiFuture by moving in a value. e.g. string foo = "foo"; auto f = makeSemiFuture(std::move(foo)); or auto f = makeSemiFuture("foo"); */ template SemiFuture::type> makeSemiFuture(T&& t); /** Make a completed void SemiFuture. */ SemiFuture makeSemiFuture(); /** Make a SemiFuture by executing a function. If the function returns a value of type T, makeSemiFutureWith returns a completed SemiFuture, capturing the value returned by the function. If the function returns a SemiFuture already, makeSemiFutureWith returns just that. Either way, if the function throws, a failed Future is returned that captures the exception. */ // makeSemiFutureWith(SemiFuture()) -> SemiFuture template typename std::enable_if< isFutureOrSemiFuture>::value, SemiFuture::value_type>>::type makeSemiFutureWith(F&& func); // makeSemiFutureWith(T()) -> SemiFuture // makeSemiFutureWith(void()) -> SemiFuture template typename std::enable_if< !(isFutureOrSemiFuture>::value), SemiFuture>::type>>::type makeSemiFutureWith(F&& func); /// Make a failed Future from an exception_ptr. /// Because the Future's type cannot be inferred you have to specify it, e.g. /// /// auto f = makeSemiFuture(std::current_exception()); template [[deprecated("use makeSemiFuture(exception_wrapper)")]] SemiFuture makeSemiFuture(std::exception_ptr const& e); /// Make a failed SemiFuture from an exception_wrapper. template SemiFuture makeSemiFuture(exception_wrapper ew); /** Make a SemiFuture from an exception type E that can be passed to std::make_exception_ptr(). */ template typename std:: enable_if::value, SemiFuture>::type makeSemiFuture(E const& e); /** Make a Future out of a Try */ template SemiFuture makeSemiFuture(Try t); /** Make a completed Future by moving in a value. e.g. string foo = "foo"; auto f = makeFuture(std::move(foo)); or auto f = makeFuture("foo"); NOTE: This function is deprecated. Please use makeSemiFuture and pass the appropriate executor to .via on the returned SemiFuture to get a valid Future where necessary. */ template Future::type> makeFuture(T&& t); /** Make a completed void Future. NOTE: This function is deprecated. Please use makeSemiFuture and pass the appropriate executor to .via on the returned SemiFuture to get a valid Future where necessary. */ Future makeFuture(); /** Make a Future by executing a function. If the function returns a value of type T, makeFutureWith returns a completed Future, capturing the value returned by the function. If the function returns a Future already, makeFutureWith returns just that. Either way, if the function throws, a failed Future is returned that captures the exception. Calling makeFutureWith(func) is equivalent to calling makeFuture().then(func). NOTE: This function is deprecated. Please use makeSemiFutureWith and pass the appropriate executor to .via on the returned SemiFuture to get a valid Future where necessary. */ // makeFutureWith(Future()) -> Future template typename std:: enable_if>::value, invoke_result_t>::type makeFutureWith(F&& func); // makeFutureWith(T()) -> Future // makeFutureWith(void()) -> Future template typename std::enable_if< !(isFuture>::value), Future>::type>>::type makeFutureWith(F&& func); /// Make a failed Future from an exception_ptr. /// Because the Future's type cannot be inferred you have to specify it, e.g. /// /// auto f = makeFuture(std::current_exception()); template [[deprecated("use makeSemiFuture(exception_wrapper)")]] Future makeFuture( std::exception_ptr const& e); /// Make a failed Future from an exception_wrapper. /// NOTE: This function is deprecated. Please use makeSemiFuture and pass the /// appropriate executor to .via on the returned SemiFuture to get a /// valid Future where necessary. template Future makeFuture(exception_wrapper ew); /** Make a Future from an exception type E that can be passed to std::make_exception_ptr(). NOTE: This function is deprecated. Please use makeSemiFuture and pass the appropriate executor to .via on the returned SemiFuture to get a valid Future where necessary. */ template typename std::enable_if::value, Future>:: type makeFuture(E const& e); /** Make a Future out of a Try NOTE: This function is deprecated. Please use makeSemiFuture and pass the appropriate executor to .via on the returned SemiFuture to get a valid Future where necessary. */ template Future makeFuture(Try t); /* * Return a new Future that will call back on the given Executor. * This is just syntactic sugar for makeFuture().via(executor) * * @param executor the Executor to call back on * @param priority optionally, the priority to add with. Defaults to 0 which * represents medium priority. * * @returns a void Future that will call back on the given executor */ inline Future via( Executor* executor, int8_t priority = Executor::MID_PRI); inline Future via( Executor::KeepAlive<> executor, int8_t priority = Executor::MID_PRI); /// Execute a function via the given executor and return a future. /// This is semantically equivalent to via(executor).then(func), but /// easier to read and slightly more efficient. template auto via(Executor*, Func&& func) -> Future< typename isFutureOrSemiFuture()())>::Inner>; template auto via(Executor::KeepAlive<>, Func&& func) -> Future< typename isFutureOrSemiFuture()())>::Inner>; /** When all the input Futures complete, the returned Future will complete. Errors do not cause early termination; this Future will always succeed after all its Futures have finished (whether successfully or with an error). The Futures are moved in, so your copies are invalid. If you need to chain further from these Futures, use the variant with an output iterator. This function is thread-safe for Futures running on different threads. But if you are doing anything non-trivial after, you will probably want to follow with `via(executor)` because it will complete in whichever thread the last Future completes in. The return type for Future input is a Future>> */ template SemiFuture::value_type::value_type>>> collectAllSemiFuture(InputIterator first, InputIterator last); /// Sugar for the most common case template auto collectAllSemiFuture(Collection&& c) -> decltype(collectAllSemiFuture(c.begin(), c.end())) { return collectAllSemiFuture(c.begin(), c.end()); } template Future::value_type::value_type>>> collectAll(InputIterator first, InputIterator last); template auto collectAll(Collection&& c) -> decltype(collectAll(c.begin(), c.end())) { return collectAll(c.begin(), c.end()); } /// This version takes a varying number of Futures instead of an iterator. /// The return type for (Future, Future, ...) input /// is a Future, Try, ...>>. /// The Futures are moved in, so your copies are invalid. template SemiFuture::value_type>...>> collectAllSemiFuture(Fs&&... fs); template Future::value_type>...>> collectAll( Fs&&... fs); /// Like collectAll, but will short circuit on the first exception. Thus, the /// type of the returned Future is std::vector instead of /// std::vector> template Future::value_type::value_type>> collect(InputIterator first, InputIterator last); /// Sugar for the most common case template auto collect(Collection&& c) -> decltype(collect(c.begin(), c.end())) { return collect(c.begin(), c.end()); } /// Like collectAll, but will short circuit on the first exception. Thus, the /// type of the returned Future is std::tuple instead of /// std::tuple, Try, ...> template Future::value_type...>> collect( Fs&&... fs); /** The result is a pair of the index of the first Future to complete and the Try. If multiple Futures complete at the same time (or are already complete when passed in), the "winner" is chosen non-deterministically. This function is thread-safe for Futures running on different threads. */ template Future::value_type::value_type>>> collectAny(InputIterator first, InputIterator last); /// Sugar for the most common case template auto collectAny(Collection&& c) -> decltype(collectAny(c.begin(), c.end())) { return collectAny(c.begin(), c.end()); } /** Similar to collectAny, collectAnyWithoutException return the first Future to * complete without exceptions. If none of the future complete without * excpetions, the last exception will be returned as a result. */ template Future::value_type::value_type>> collectAnyWithoutException(InputIterator first, InputIterator last); /// Sugar for the most common case template auto collectAnyWithoutException(Collection&& c) -> decltype(collectAnyWithoutException(c.begin(), c.end())) { return collectAnyWithoutException(c.begin(), c.end()); } /** when n Futures have completed, the Future completes with a vector of the index and Try of those n Futures (the indices refer to the original order, but the result vector will be in an arbitrary order) Not thread safe. */ template SemiFuture::value_type::value_type>>>> collectN(InputIterator first, InputIterator last, size_t n); /// Sugar for the most common case template auto collectN(Collection&& c, size_t n) -> decltype(collectN(c.begin(), c.end(), n)) { return collectN(c.begin(), c.end(), n); } /** window creates up to n Futures using the values in the collection, and then another Future for each Future that completes this is basically a sliding window of Futures of size n func must return a Future for each value in input */ template < class Collection, class F, class ItT = typename std::iterator_traits< typename Collection::iterator>::value_type, class Result = typename invoke_result_t::value_type> std::vector> window(Collection input, F func, size_t n); template < class Collection, class F, class ItT = typename std::iterator_traits< typename Collection::iterator>::value_type, class Result = typename invoke_result_t::value_type> std::vector> window(Executor* executor, Collection input, F func, size_t n); template < class Collection, class F, class ItT = typename std::iterator_traits< typename Collection::iterator>::value_type, class Result = typename invoke_result_t::value_type> std::vector> window(Executor::KeepAlive<> executor, Collection input, F func, size_t n); template using MaybeTryArg = typename std:: conditional&&>::value, Try, ItT>::type; /** repeatedly calls func on every result, e.g. reduce(reduce(reduce(T initial, result of first), result of second), ...) The type of the final result is a Future of the type of the initial value. Func can either return a T, or a Future func is called in order of the input, see unorderedReduce if that is not a requirement */ template Future reduce(It first, It last, T&& initial, F&& func); /// Sugar for the most common case template auto reduce(Collection&& c, T&& initial, F&& func) -> decltype(reduce( c.begin(), c.end(), std::forward(initial), std::forward(func))) { return reduce( c.begin(), c.end(), std::forward(initial), std::forward(func)); } /** like reduce, but calls func on finished futures as they complete does NOT keep the order of the input */ template Future unorderedReduce(It first, It last, T initial, F func); /// Sugar for the most common case template auto unorderedReduce(Collection&& c, T&& initial, F&& func) -> decltype(unorderedReduce( c.begin(), c.end(), std::forward(initial), std::forward(func))) { return unorderedReduce( c.begin(), c.end(), std::forward(initial), std::forward(func)); } } // namespace folly