Variadic Futures
future.h
Go to the documentation of this file.
1 // Copyright 2019 Age of Minds inc.
2 
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef AOM_VARIADIC_FUTURE_INCLUDED_H
16 #define AOM_VARIADIC_FUTURE_INCLUDED_H
17 
20 
21 #include "var_future/config.h"
22 #include "var_future/impl/storage_decl.h"
23 
24 #include <memory>
25 #include <string>
26 
27 namespace aom {
28 
29 template <typename Alloc, typename... Ts>
31 
47 template <typename Alloc, typename... Ts>
48 class Basic_future {
49  static_assert(sizeof...(Ts) >= 1, "you probably meant Future<void>");
50 
51  public:
52  using promise_type = Basic_promise<Alloc, Ts...>;
53 
55  using storage_type = detail::Future_storage<Alloc, Ts...>;
56 
58  using allocator_type = Alloc;
59 
61  using value_type = detail::future_value_type_t<Ts...>;
62  using fullfill_type = detail::fullfill_type_t<Ts...>;
63  using finish_type = detail::finish_type_t<Ts...>;
64 
70  Basic_future() = default;
71 
79  Basic_future(Basic_future&& rhs) = default;
80 
89  Basic_future& operator=(Basic_future&& rhs) = default;
90 
102  template <typename CbT>
103  [[nodiscard]] auto then(CbT&& callback);
104 
118  template <typename QueueT, typename CbT>
119  [[nodiscard]] auto then(QueueT& queue, CbT&& callback);
120 
132  template <typename CbT>
133  [[nodiscard]] auto then_expect(CbT&& callback);
134 
148  template <typename QueueT, typename CbT>
149  [[nodiscard]] auto then_expect(QueueT& queue, CbT&& callback);
150 
160  template <typename CbT>
161  void finally(CbT&& callback);
162 
174  template <typename QueueT, typename CbT>
175  void finally(QueueT& queue, CbT&& callback);
176 
186  value_type get();
187 
193  auto std_future();
194 
203 
207  explicit Basic_future(detail::Storage_ptr<storage_type> s);
208 
209  private:
210  detail::Storage_ptr<storage_type> storage_;
211 };
212 
213 template <typename... Ts>
215 
221 struct Unfullfilled_promise : public std::logic_error {
222  Unfullfilled_promise() : std::logic_error("Unfullfilled_promise") {}
223 };
224 
230 template <typename Alloc, typename... Ts>
231 class Basic_promise {
232  static_assert(sizeof...(Ts) >= 1, "you probably meant Promise<void>");
233 
234  public:
235  using future_type = Basic_future<Alloc, Ts...>;
236  using storage_type = typename future_type::storage_type;
237 
238  using value_type = detail::future_value_type_t<Ts...>;
239 
240  using fullfill_type = detail::fullfill_type_t<Ts...>;
241  using finish_type = detail::finish_type_t<Ts...>;
242  using fail_type = detail::fail_type_t<Ts...>;
243 
244  Basic_promise(const Alloc& alloc = Alloc());
245  Basic_promise(Basic_promise&&) = default;
246  Basic_promise& operator=(Basic_promise&&) = default;
247  ~Basic_promise();
248 
255  future_type get_future();
256 
263  template <typename... Us>
264  void set_value(Us&&... values);
265 
272  template <typename... Us>
273  void finish(Us&&... expecteds);
274 
280  void set_exception(fail_type error);
281 
288  operator bool() const;
289 
290  private:
291  bool future_created_ = false;
292  bool value_assigned_ = false;
293 
294  detail::Storage_ptr<storage_type> storage_;
295 
296  Basic_promise(const Basic_promise&) = delete;
297  Basic_promise& operator=(const Basic_promise&) = delete;
298 };
299 
300 template <typename... Ts>
301 using Promise = Basic_promise<std::allocator<void>, Ts...>;
310 template <typename... FutTs>
311 auto join(FutTs&&... futures);
312 
313 // Convenience function that creates a promise for the result of the cb, pushes
314 // cb in q, and returns a future to that promise.
315 
326 template <typename QueueT, typename CbT>
327 auto async(QueueT& q, CbT&& callback);
328 
337 template <typename Alloc, typename... Ts>
338 Basic_future<Alloc, Ts...> flatten(Basic_future<Alloc, std::tuple<Ts...>>& rhs);
339 
347 template <typename... Ts>
348 auto segmented(Ts&&... args);
349 
355 inline std::string varfut_lib_version_string();
356 } // namespace aom
357 
358 #include "var_future/impl/async.h"
359 #include "var_future/impl/future.h"
360 #include "var_future/impl/join.h"
361 #include "var_future/impl/promise.h"
362 #include "var_future/impl/storage_impl.h"
363 
364 #endif
void set_exception(fail_type error)
Fails the promise.
Alloc allocator_type
Allocator.
Definition: future.h:58
Basic_future & operator=(Basic_future &&rhs)=default
Move assignment.
Basic_future()=default
Construct an uninitialized Future.
Error assigned to a future who's promise is destroyed before being finished.
Definition: future.h:221
detail::future_value_type_t< Ts... > value_type
Ts...
Definition: future.h:61
future_type get_future()
Get the future object.
allocator_type & allocator()
Get the allocator associated with this future.
value_type get()
Blocks until the future is finished, and then either return the value, or throw the error.
auto then(CbT &&callback)
Creates a future that is finished by the invocation of cb when this is fullfilled.
Landing for a value that finishes a Future.
Definition: future.h:30
auto std_future()
Obtain a std::future bound to this future.
auto then_expect(CbT &&callback)
Creates a future that is finished by the invocation of cb when this is finished.
void set_value(Us &&... values)
Fullfills the promise.
detail::Future_storage< Alloc, Ts... > storage_type
The underlying storage type.
Definition: future.h:55
void finish(Us &&... expecteds)
Finishes the promise.
Values that will be eventually available.
Definition: future.h:48