44987eaf02f82f24be51f40d41d266c74cc716be
[folly.git] / folly / futures / SharedPromise.h
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 #include <folly/Portability.h>
20 #include <folly/futures/Promise.h>
21
22 namespace folly {
23
24 /*
25  * SharedPromise provides the same interface as Promise, but you can extract
26  * multiple Futures from it, i.e. you can call getFuture() as many times as
27  * you'd like. When the SharedPromise is fulfilled, all of the Futures will be
28  * called back. Calls to getFuture() after the SharedPromise is fulfilled return
29  * a completed Future. If you find yourself constructing collections of Promises
30  * and fulfilling them simultaneously with the same value, consider this
31  * utility instead. Likewise, if you find yourself in need of setting multiple
32  * callbacks on the same Future (which is indefinitely unsupported), consider
33  * refactoring to use SharedPromise to "split" the Future.
34  */
35 template <class T>
36 class SharedPromise {
37  public:
38   SharedPromise() = default;
39   ~SharedPromise() = default;
40
41   // not copyable
42   SharedPromise(SharedPromise const&) = delete;
43   SharedPromise& operator=(SharedPromise const&) = delete;
44
45   // movable
46   SharedPromise(SharedPromise<T>&&) noexcept;
47   SharedPromise& operator=(SharedPromise<T>&&) noexcept;
48
49   /**
50    * Return a Future tied to the shared core state. Unlike Promise::getFuture,
51    * this can be called an unlimited number of times per SharedPromise.
52    */
53   Future<T> getFuture();
54
55   /** Return the number of Futures associated with this SharedPromise */
56   size_t size();
57
58   /** Fulfill the SharedPromise with an exception_wrapper */
59   void setException(exception_wrapper ew);
60
61   /** Fulfill the SharedPromise with an exception_ptr, e.g.
62     try {
63       ...
64     } catch (...) {
65       p.setException(std::current_exception());
66     }
67     */
68   FOLLY_DEPRECATED("use setException(exception_wrapper)")
69   void setException(std::exception_ptr const&);
70
71   /** Fulfill the SharedPromise with an exception type E, which can be passed to
72     std::make_exception_ptr(). Useful for originating exceptions. If you
73     caught an exception the exception_wrapper form is more appropriate.
74     */
75   template <class E>
76   typename std::enable_if<std::is_base_of<std::exception, E>::value>::type
77   setException(E const&);
78
79   /// Set an interrupt handler to handle interrupts. See the documentation for
80   /// Future::raise(). Your handler can do whatever it wants, but if you
81   /// bother to set one then you probably will want to fulfill the SharedPromise with
82   /// an exception (or special value) indicating how the interrupt was
83   /// handled.
84   void setInterruptHandler(std::function<void(exception_wrapper const&)>);
85
86   /// Sugar to fulfill this SharedPromise<Unit>
87   template <class B = T>
88   typename std::enable_if<std::is_same<Unit, B>::value, void>::type
89   setValue() {
90     setTry(Try<T>(T()));
91   }
92
93   /** Set the value (use perfect forwarding for both move and copy) */
94   template <class M>
95   void setValue(M&& value);
96
97   void setTry(Try<T>&& t);
98
99   /** Fulfill this SharedPromise with the result of a function that takes no
100     arguments and returns something implicitly convertible to T.
101     Captures exceptions. e.g.
102
103     p.setWith([] { do something that may throw; return a T; });
104   */
105   template <class F>
106   void setWith(F&& func);
107
108   bool isFulfilled();
109
110  private:
111   std::mutex mutex_;
112   size_t size_{0};
113   bool hasValue_{false};
114   Try<T> try_;
115   std::vector<Promise<T>> promises_;
116   std::function<void(exception_wrapper const&)> interruptHandler_;
117 };
118
119 }
120
121 #include <folly/futures/Future.h>
122 #include <folly/futures/SharedPromise-inl.h>