Promise::isFulfilled()
[folly.git] / folly / futures / Promise-inl.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 <atomic>
20 #include <thread>
21
22 #include <folly/futures/FutureException.h>
23 #include <folly/futures/detail/Core.h>
24
25 namespace folly {
26
27 template <class T>
28 Promise<T>::Promise() : retrieved_(false), core_(new detail::Core<T>())
29 {}
30
31 template <class T>
32 Promise<T>::Promise(Promise<T>&& other) noexcept
33     : retrieved_(other.retrieved_), core_(other.core_) {
34   other.core_ = nullptr;
35   other.retrieved_ = false;
36 }
37
38 template <class T>
39 Promise<T>& Promise<T>::operator=(Promise<T>&& other) noexcept {
40   std::swap(core_, other.core_);
41   std::swap(retrieved_, other.retrieved_);
42   return *this;
43 }
44
45 template <class T>
46 void Promise<T>::throwIfFulfilled() {
47   if (!core_)
48     throw NoState();
49   if (core_->ready())
50     throw PromiseAlreadySatisfied();
51 }
52
53 template <class T>
54 void Promise<T>::throwIfRetrieved() {
55   if (retrieved_)
56     throw FutureAlreadyRetrieved();
57 }
58
59 template <class T>
60 Promise<T>::~Promise() {
61   detach();
62 }
63
64 template <class T>
65 void Promise<T>::detach() {
66   if (core_) {
67     if (!retrieved_)
68       core_->detachFuture();
69     core_->detachPromise();
70     core_ = nullptr;
71   }
72 }
73
74 template <class T>
75 Future<T> Promise<T>::getFuture() {
76   throwIfRetrieved();
77   retrieved_ = true;
78   return Future<T>(core_);
79 }
80
81 template <class T>
82 template <class E>
83 typename std::enable_if<std::is_base_of<std::exception, E>::value>::type
84 Promise<T>::setException(E const& e) {
85   setException(make_exception_wrapper<E>(e));
86 }
87
88 template <class T>
89 void Promise<T>::setException(std::exception_ptr const& ep) {
90   try {
91     std::rethrow_exception(ep);
92   } catch (const std::exception& e) {
93     setException(exception_wrapper(std::current_exception(), e));
94   } catch (...) {
95     setException(exception_wrapper(std::current_exception()));
96   }
97 }
98
99 template <class T>
100 void Promise<T>::setException(exception_wrapper ew) {
101   throwIfFulfilled();
102   core_->setResult(Try<T>(std::move(ew)));
103 }
104
105 template <class T>
106 void Promise<T>::setInterruptHandler(
107   std::function<void(exception_wrapper const&)> fn) {
108   core_->setInterruptHandler(std::move(fn));
109 }
110
111 template <class T>
112 void Promise<T>::setTry(Try<T>&& t) {
113   throwIfFulfilled();
114   core_->setResult(std::move(t));
115 }
116
117 template <class T>
118 template <class M>
119 void Promise<T>::setValue(M&& v) {
120   static_assert(!std::is_same<T, void>::value,
121                 "Use setValue() instead");
122
123   setTry(Try<T>(std::forward<M>(v)));
124 }
125
126 template <class T>
127 template <class F>
128 void Promise<T>::setWith(F&& func) {
129   throwIfFulfilled();
130   setTry(makeTryWith(std::forward<F>(func)));
131 }
132
133 template <class T>
134 bool Promise<T>::isFulfilled() {
135   if (core_) {
136     return core_->hasResult();
137   }
138   return true;
139 }
140
141 }