Promise::setValue() for Unit
[folly.git] / folly / futures / Promise.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/Deprecated.h>
20 #include <folly/futures/Try.h>
21 #include <functional>
22
23 namespace folly {
24
25 // forward declaration
26 template <class T> class Future;
27
28 template <class T>
29 class Promise {
30 public:
31   Promise();
32   ~Promise();
33
34   // not copyable
35   Promise(Promise const&) = delete;
36   Promise& operator=(Promise const&) = delete;
37
38   // movable
39   Promise(Promise<T>&&) noexcept;
40   Promise& operator=(Promise<T>&&) noexcept;
41
42   /** Return a Future tied to the shared core state. This can be called only
43     once, thereafter Future already retrieved exception will be raised. */
44   Future<T> getFuture();
45
46   /** Fulfill the Promise with an exception_wrapper */
47   void setException(exception_wrapper ew);
48
49   /** Fulfill the Promise with an exception_ptr, e.g.
50     try {
51       ...
52     } catch (...) {
53       p.setException(std::current_exception());
54     }
55     */
56   void setException(std::exception_ptr const&) DEPRECATED;
57
58   /** Fulfill the Promise with an exception type E, which can be passed to
59     std::make_exception_ptr(). Useful for originating exceptions. If you
60     caught an exception the exception_wrapper form is more appropriate.
61     */
62   template <class E>
63   typename std::enable_if<std::is_base_of<std::exception, E>::value>::type
64   setException(E const&);
65
66   /// Set an interrupt handler to handle interrupts. See the documentation for
67   /// Future::raise(). Your handler can do whatever it wants, but if you
68   /// bother to set one then you probably will want to fulfill the promise with
69   /// an exception (or special value) indicating how the interrupt was
70   /// handled.
71   void setInterruptHandler(std::function<void(exception_wrapper const&)>);
72
73   /// Fulfill this Promise<void>
74   template <class B = T>
75   typename std::enable_if<std::is_void<B>::value, void>::type
76   setValue() {
77     setTry(Try<T>());
78   }
79
80   /// Sugar to fulfill this Promise<Unit>
81   template <class B = T>
82   typename std::enable_if<std::is_same<Unit, B>::value, void>::type
83   setValue() {
84     setTry(Try<T>(T()));
85   }
86
87   /** Set the value (use perfect forwarding for both move and copy) */
88   template <class M>
89   void setValue(M&& value);
90
91   void setTry(Try<T> t);
92
93   /** Fulfill this Promise with the result of a function that takes no
94     arguments and returns something implicitly convertible to T.
95     Captures exceptions. e.g.
96
97     p.setWith([] { do something that may throw; return a T; });
98   */
99   template <class F>
100   void setWith(F&& func);
101
102 private:
103   typedef typename Future<T>::corePtr corePtr;
104
105   // Whether the Future has been retrieved (a one-time operation).
106   bool retrieved_;
107
108   // shared core state object
109   corePtr core_;
110
111   void throwIfFulfilled();
112   void throwIfRetrieved();
113   void detach();
114 };
115
116 }
117
118 #include <folly/futures/Future.h>
119 #include <folly/futures/Promise-inl.h>