Variadic Futures
stream_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_STREAM_FUTURE_INCLUDED_H
16 #define AOM_VARIADIC_STREAM_FUTURE_INCLUDED_H
17 
20 
21 #include "var_future/config.h"
22 
23 #include "var_future/future.h"
24 
25 #include "var_future/impl/stream/stream_storage_decl.h"
26 
27 #include <memory>
28 
29 namespace aom {
30 
31 template <typename Alloc, typename... Ts>
33 
40 template <typename Alloc, typename... Ts>
42  public:
44  using storage_type = detail::Stream_storage<Alloc, Ts...>;
45  using fullfill_type = typename storage_type::fullfill_type;
46 
51  Basic_stream_future() = default;
52 
58 
65 
75  template <typename CbT>
76  [[nodiscard]] Basic_future<Alloc, void> for_each(CbT&& cb);
77 
89  template <typename QueueT, typename CbT>
90  [[nodiscard]] Basic_future<Alloc, void> for_each(QueueT& queue, CbT&& cb);
91 
92  private:
93  template <typename SubAlloc, typename... Us>
94  friend class Basic_stream_promise;
95 
96  explicit Basic_stream_future(detail::Storage_ptr<storage_type> s);
97  detail::Storage_ptr<storage_type> storage_;
98 };
99 
105 template <typename... Ts>
107 
114 template <typename Alloc, typename... Ts>
115 class Basic_stream_promise {
116  public:
117  using future_type = Basic_stream_future<Alloc, Ts...>;
118  using storage_type = typename future_type::storage_type;
119  using fullfill_type = typename storage_type::fullfill_type;
120  using fail_type = std::exception_ptr;
121 
127 
133 
140 
146 
153  future_type get_future(const Alloc& alloc = Alloc());
154 
160  template <typename... Us>
161  void push(Us&&...);
162 
167  void complete();
168 
173  void set_exception(fail_type);
174 
181  operator bool() const;
182 
183  private:
184  detail::Storage_ptr<storage_type> storage_;
185 
188 };
189 
195 template <typename... Ts>
197 } // namespace aom
198 
199 #include "var_future/impl/stream/stream_future.h"
200 #include "var_future/impl/stream/stream_promise.h"
201 #include "var_future/impl/stream/stream_storage_impl.h"
202 
203 #endif
Definition: stream_future.h:32
Basic_stream_promise & operator=(Basic_stream_promise &&)=default
Basic_stream_promise()
Construct a new Basic_stream_promise object.
Basic_stream_future()=default
Default construction.
Represents a stream of values that will be eventually available.
Definition: stream_future.h:41
detail::Stream_storage< Alloc, Ts... > storage_type
The underlying storage type.
Definition: stream_future.h:44
Basic_stream_future & operator=(Basic_stream_future &&)=default
Move assignment.
void complete()
Closes the stream.
Basic_future< Alloc, void > for_each(CbT &&cb)
Invokes a callback on each value in the stream wherever they are produced.
void set_exception(fail_type)
Notify failure of the stream.
future_type get_future(const Alloc &alloc=Alloc())
Get the future object.
void push(Us &&...)
Add a datapoint to the stream.
~Basic_stream_promise()
Destroy the Basic_stream_promise object.
Values that will be eventually available.
Definition: future.h:48