Louis Dionne | eb8650a | 2021-11-17 21:25:01 | [diff] [blame^] | 1 | //===----------------------------------------------------------------------===// |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 2 | // |
Chandler Carruth | 57b08b0 | 2019-01-19 10:56:40 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Jonathan Roelofs | b3fcc67 | 2014-09-05 19:45:05 | [diff] [blame] | 9 | #include "__config" |
| 10 | |
| 11 | #ifndef _LIBCPP_HAS_NO_THREADS |
| 12 | |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 13 | #include "future" |
| 14 | #include "string" |
| 15 | |
| 16 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 17 | |
| 18 | class _LIBCPP_HIDDEN __future_error_category |
| 19 | : public __do_message |
| 20 | { |
| 21 | public: |
Louis Dionne | 5601305 | 2021-03-01 17:09:45 | [diff] [blame] | 22 | virtual const char* name() const noexcept; |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 23 | virtual string message(int ev) const; |
| 24 | }; |
| 25 | |
| 26 | const char* |
Louis Dionne | 5601305 | 2021-03-01 17:09:45 | [diff] [blame] | 27 | __future_error_category::name() const noexcept |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 28 | { |
| 29 | return "future"; |
| 30 | } |
| 31 | |
Logan Chien | b0d5be5 | 2013-12-14 06:45:09 | [diff] [blame] | 32 | #if defined(__clang__) |
Howard Hinnant | 3b2d7ee | 2013-09-14 18:20:10 | [diff] [blame] | 33 | #pragma clang diagnostic push |
| 34 | #pragma clang diagnostic ignored "-Wswitch" |
Logan Chien | b0d5be5 | 2013-12-14 06:45:09 | [diff] [blame] | 35 | #elif defined(__GNUC__) || defined(__GNUG__) |
| 36 | #pragma GCC diagnostic push |
| 37 | #pragma GCC diagnostic ignored "-Wswitch" |
| 38 | #endif |
Howard Hinnant | 3b2d7ee | 2013-09-14 18:20:10 | [diff] [blame] | 39 | |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 40 | string |
| 41 | __future_error_category::message(int ev) const |
| 42 | { |
Howard Hinnant | be745c8 | 2012-02-02 20:31:36 | [diff] [blame] | 43 | switch (static_cast<future_errc>(ev)) |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 44 | { |
Howard Hinnant | 3b2d7ee | 2013-09-14 18:20:10 | [diff] [blame] | 45 | case future_errc(0): // For backwards compatibility with C++11 (LWG 2056) |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 46 | case future_errc::broken_promise: |
| 47 | return string("The associated promise has been destructed prior " |
| 48 | "to the associated state becoming ready."); |
| 49 | case future_errc::future_already_retrieved: |
| 50 | return string("The future has already been retrieved from " |
| 51 | "the promise or packaged_task."); |
| 52 | case future_errc::promise_already_satisfied: |
| 53 | return string("The state of the promise has already been set."); |
| 54 | case future_errc::no_state: |
| 55 | return string("Operation not permitted on an object without " |
| 56 | "an associated state."); |
| 57 | } |
| 58 | return string("unspecified future_errc value\n"); |
| 59 | } |
| 60 | |
Logan Chien | b0d5be5 | 2013-12-14 06:45:09 | [diff] [blame] | 61 | #if defined(__clang__) |
Howard Hinnant | 3b2d7ee | 2013-09-14 18:20:10 | [diff] [blame] | 62 | #pragma clang diagnostic pop |
Logan Chien | b0d5be5 | 2013-12-14 06:45:09 | [diff] [blame] | 63 | #elif defined(__GNUC__) || defined(__GNUG__) |
| 64 | #pragma GCC diagnostic pop |
| 65 | #endif |
Howard Hinnant | 3b2d7ee | 2013-09-14 18:20:10 | [diff] [blame] | 66 | |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 67 | const error_category& |
Louis Dionne | 5601305 | 2021-03-01 17:09:45 | [diff] [blame] | 68 | future_category() noexcept |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 69 | { |
| 70 | static __future_error_category __f; |
| 71 | return __f; |
| 72 | } |
| 73 | |
| 74 | future_error::future_error(error_code __ec) |
| 75 | : logic_error(__ec.message()), |
| 76 | __ec_(__ec) |
| 77 | { |
| 78 | } |
| 79 | |
Louis Dionne | 5601305 | 2021-03-01 17:09:45 | [diff] [blame] | 80 | future_error::~future_error() noexcept |
Howard Hinnant | 3aa229f | 2011-07-08 00:04:40 | [diff] [blame] | 81 | { |
| 82 | } |
| 83 | |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 84 | void |
Louis Dionne | 5601305 | 2021-03-01 17:09:45 | [diff] [blame] | 85 | __assoc_sub_state::__on_zero_shared() noexcept |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 86 | { |
| 87 | delete this; |
| 88 | } |
| 89 | |
| 90 | void |
| 91 | __assoc_sub_state::set_value() |
| 92 | { |
| 93 | unique_lock<mutex> __lk(__mut_); |
| 94 | if (__has_value()) |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 95 | __throw_future_error(future_errc::promise_already_satisfied); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 96 | __state_ |= __constructed | ready; |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 97 | __cv_.notify_all(); |
| 98 | } |
| 99 | |
| 100 | void |
| 101 | __assoc_sub_state::set_value_at_thread_exit() |
| 102 | { |
| 103 | unique_lock<mutex> __lk(__mut_); |
| 104 | if (__has_value()) |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 105 | __throw_future_error(future_errc::promise_already_satisfied); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 106 | __state_ |= __constructed; |
Howard Hinnant | 10e4a48 | 2010-10-14 19:18:04 | [diff] [blame] | 107 | __thread_local_data()->__make_ready_at_thread_exit(this); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | void |
| 111 | __assoc_sub_state::set_exception(exception_ptr __p) |
| 112 | { |
| 113 | unique_lock<mutex> __lk(__mut_); |
| 114 | if (__has_value()) |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 115 | __throw_future_error(future_errc::promise_already_satisfied); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 116 | __exception_ = __p; |
| 117 | __state_ |= ready; |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 118 | __cv_.notify_all(); |
| 119 | } |
| 120 | |
| 121 | void |
| 122 | __assoc_sub_state::set_exception_at_thread_exit(exception_ptr __p) |
| 123 | { |
| 124 | unique_lock<mutex> __lk(__mut_); |
| 125 | if (__has_value()) |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 126 | __throw_future_error(future_errc::promise_already_satisfied); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 127 | __exception_ = __p; |
Howard Hinnant | 10e4a48 | 2010-10-14 19:18:04 | [diff] [blame] | 128 | __thread_local_data()->__make_ready_at_thread_exit(this); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | void |
| 132 | __assoc_sub_state::__make_ready() |
| 133 | { |
| 134 | unique_lock<mutex> __lk(__mut_); |
| 135 | __state_ |= ready; |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 136 | __cv_.notify_all(); |
| 137 | } |
| 138 | |
| 139 | void |
| 140 | __assoc_sub_state::copy() |
| 141 | { |
| 142 | unique_lock<mutex> __lk(__mut_); |
Howard Hinnant | 27f000e | 2010-08-30 18:46:21 | [diff] [blame] | 143 | __sub_wait(__lk); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 144 | if (__exception_ != nullptr) |
| 145 | rethrow_exception(__exception_); |
| 146 | } |
| 147 | |
| 148 | void |
Howard Hinnant | 27f000e | 2010-08-30 18:46:21 | [diff] [blame] | 149 | __assoc_sub_state::wait() |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 150 | { |
| 151 | unique_lock<mutex> __lk(__mut_); |
Howard Hinnant | 27f000e | 2010-08-30 18:46:21 | [diff] [blame] | 152 | __sub_wait(__lk); |
| 153 | } |
| 154 | |
| 155 | void |
| 156 | __assoc_sub_state::__sub_wait(unique_lock<mutex>& __lk) |
| 157 | { |
| 158 | if (!__is_ready()) |
| 159 | { |
Howard Hinnant | c206366 | 2011-12-01 20:21:04 | [diff] [blame] | 160 | if (__state_ & static_cast<unsigned>(deferred)) |
Howard Hinnant | 27f000e | 2010-08-30 18:46:21 | [diff] [blame] | 161 | { |
Howard Hinnant | c206366 | 2011-12-01 20:21:04 | [diff] [blame] | 162 | __state_ &= ~static_cast<unsigned>(deferred); |
Howard Hinnant | 27f000e | 2010-08-30 18:46:21 | [diff] [blame] | 163 | __lk.unlock(); |
| 164 | __execute(); |
| 165 | } |
| 166 | else |
| 167 | while (!__is_ready()) |
| 168 | __cv_.wait(__lk); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | void |
| 173 | __assoc_sub_state::__execute() |
| 174 | { |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 175 | __throw_future_error(future_errc::no_state); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | future<void>::future(__assoc_sub_state* __state) |
| 179 | : __state_(__state) |
| 180 | { |
Louis Dionne | 616ef18 | 2018-08-24 14:00:59 | [diff] [blame] | 181 | __state_->__attach_future(); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | future<void>::~future() |
| 185 | { |
| 186 | if (__state_) |
| 187 | __state_->__release_shared(); |
| 188 | } |
| 189 | |
| 190 | void |
| 191 | future<void>::get() |
| 192 | { |
Howard Hinnant | 27f000e | 2010-08-30 18:46:21 | [diff] [blame] | 193 | unique_ptr<__shared_count, __release_shared_count> __(__state_); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 194 | __assoc_sub_state* __s = __state_; |
| 195 | __state_ = nullptr; |
Howard Hinnant | 27f000e | 2010-08-30 18:46:21 | [diff] [blame] | 196 | __s->copy(); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | promise<void>::promise() |
| 200 | : __state_(new __assoc_sub_state) |
| 201 | { |
| 202 | } |
| 203 | |
| 204 | promise<void>::~promise() |
| 205 | { |
| 206 | if (__state_) |
| 207 | { |
Asiri Rathnayake | f520c14 | 2015-11-10 11:41:22 | [diff] [blame] | 208 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 209 | if (!__state_->__has_value() && __state_->use_count() > 1) |
| 210 | __state_->set_exception(make_exception_ptr( |
| 211 | future_error(make_error_code(future_errc::broken_promise)) |
| 212 | )); |
Asiri Rathnayake | f520c14 | 2015-11-10 11:41:22 | [diff] [blame] | 213 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 214 | __state_->__release_shared(); |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | future<void> |
| 219 | promise<void>::get_future() |
| 220 | { |
| 221 | if (__state_ == nullptr) |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 222 | __throw_future_error(future_errc::no_state); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 223 | return future<void>(__state_); |
| 224 | } |
| 225 | |
| 226 | void |
| 227 | promise<void>::set_value() |
| 228 | { |
| 229 | if (__state_ == nullptr) |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 230 | __throw_future_error(future_errc::no_state); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 231 | __state_->set_value(); |
| 232 | } |
| 233 | |
| 234 | void |
| 235 | promise<void>::set_exception(exception_ptr __p) |
| 236 | { |
| 237 | if (__state_ == nullptr) |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 238 | __throw_future_error(future_errc::no_state); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 239 | __state_->set_exception(__p); |
| 240 | } |
| 241 | |
| 242 | void |
| 243 | promise<void>::set_value_at_thread_exit() |
| 244 | { |
| 245 | if (__state_ == nullptr) |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 246 | __throw_future_error(future_errc::no_state); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 247 | __state_->set_value_at_thread_exit(); |
| 248 | } |
| 249 | |
| 250 | void |
| 251 | promise<void>::set_exception_at_thread_exit(exception_ptr __p) |
| 252 | { |
| 253 | if (__state_ == nullptr) |
Marshall Clow | 934864b | 2018-07-30 23:33:48 | [diff] [blame] | 254 | __throw_future_error(future_errc::no_state); |
Howard Hinnant | 167fd10 | 2010-08-27 20:10:19 | [diff] [blame] | 255 | __state_->set_exception_at_thread_exit(__p); |
| 256 | } |
| 257 | |
Howard Hinnant | ead8550 | 2010-09-03 18:39:25 | [diff] [blame] | 258 | shared_future<void>::~shared_future() |
| 259 | { |
| 260 | if (__state_) |
| 261 | __state_->__release_shared(); |
| 262 | } |
| 263 | |
| 264 | shared_future<void>& |
| 265 | shared_future<void>::operator=(const shared_future& __rhs) |
| 266 | { |
| 267 | if (__rhs.__state_) |
| 268 | __rhs.__state_->__add_shared(); |
| 269 | if (__state_) |
| 270 | __state_->__release_shared(); |
| 271 | __state_ = __rhs.__state_; |
| 272 | return *this; |
| 273 | } |
| 274 | |
Howard Hinnant | dae3481 | 2010-08-25 17:32:05 | [diff] [blame] | 275 | _LIBCPP_END_NAMESPACE_STD |
Jonathan Roelofs | b3fcc67 | 2014-09-05 19:45:05 | [diff] [blame] | 276 | |
| 277 | #endif // !_LIBCPP_HAS_NO_THREADS |