1d5670cde2efa5f4bc27f4712de08bb159102edb
[folly.git] / folly / futures / SharedPromise.h
1 /*
2  * Copyright 2015 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/futures/Promise.h>
20
21 namespace folly {
22
23 /*
24  * SharedPromise provides the same interface as Promise, but you can extract
25  * multiple Futures from it, i.e. you can call getFuture() as many times as
26  * you'd like. When the SharedPromise is fulfilled, all of the Futures will be
27  * called back. Calls to getFuture() after the SharedPromise is fulfilled return
28  * a completed Future. If you find yourself constructing collections of Promises
29  * and fulfilling them simultaneously with the same value, consider this
30  * utility instead. Likewise, if you find yourself in need of setting multiple
31  * callbacks on the same Future (which is indefinitely unsupported), consider
32  * refactoring to use SharedPromise to "split" the Future.
33  */
34 template <class T>
35 class SharedPromise {
36 public:
37   SharedPromise() = default;
38   ~SharedPromise() = default;
39
40   // not copyable
41   SharedPromise(SharedPromise const&) = delete;
42   SharedPromise& operator=(SharedPromise const&) = delete;
43
44   // movable
45   SharedPromise(SharedPromise<T>&&) noexcept;
46   SharedPromise& operator=(SharedPromise<T>&&) noexcept;
47
48   /**
49    * Return a Future tied to the shared core state. Unlike Promise::getFuture,
50    * this can be called an unlimited number of times per SharedPromise.
51    */
52   Future<T> getFuture();
53
54   /** Return the number of Futures associated with this SharedPromise */
55   size_t size();
56
57   /** Fulfill the SharedPromise with an exception_wrapper */
58   void setException(exception_wrapper ew);
59
60   /** Fulfill the SharedPromise with an exception_ptr, e.g.
61     try {
62       ...
63     } catch (...) {
64       p.setException(std::current_exception());
65     }
66     */
67   void setException(std::exception_ptr const&) DEPRECATED;
68
69   /** Fulfill the SharedPromise with an exception type E, which can be passed to
70     std::make_exception_ptr(). Useful for originating exceptions. If you
71     caught an exception the exception_wrapper form is more appropriate.
72     */
73   template <class E>
74   typename std::enable_if<std::is_base_of<std::exception, E>::value>::type
75   setException(E const&);
76
77   /// Set an interrupt handler to handle interrupts. See the documentation for
78   /// Future::raise(). Your handler can do whatever it wants, but if you
79   /// bother to set one then you probably will want to fulfill the SharedPromise with
80   /// an exception (or special value) indicating how the interrupt was
81   /// handled.
82   void setInterruptHandler(std::function<void(exception_wrapper const&)>);
83
84   /// Sugar to fulfill this SharedPromise<Unit>
85   template <class B = T>
86   typename std::enable_if<std::is_same<Unit, B>::value, void>::type
87   setValue() {
88     setTry(Try<T>(T()));
89   }
90
91   /** Set the value (use perfect forwarding for both move and copy) */
92   template <class M>
93   void setValue(M&& value);
94
95   void setTry(Try<T>&& t);
96
97   /** Fulfill this SharedPromise with the result of a function that takes no
98     arguments and returns something implicitly convertible to T.
99     Captures exceptions. e.g.
100
101     p.setWith([] { do something that may throw; return a T; });
102   */
103   template <class F>
104   void setWith(F&& func);
105
106 private:
107   std::mutex mutex_;
108   size_t size_{0};
109   bool hasValue_{false};
110   Try<T> try_;
111   std::vector<Promise<T>> promises_;
112 };
113
114 }
115
116 #include <folly/futures/Future.h>
117 #include <folly/futures/SharedPromise-inl.h>