| 1 | |
| 2 | // Copyright Oliver Kowalke 2016. |
| 3 | // Distributed under the Boost Software License, Version 1.0. |
| 4 | // (See accompanying file LICENSE_1_0.txt or copy at |
| 5 | // http://www.boost.org/LICENSE_1_0.txt) |
| 6 | |
| 7 | #ifndef BOOST_COROUTINES2_DETAIL_PULL_CONTROL_BLOCK_IPP |
| 8 | #define BOOST_COROUTINES2_DETAIL_PULL_CONTROL_BLOCK_IPP |
| 9 | |
| 10 | #include <algorithm> |
| 11 | #include <exception> |
| 12 | #include <memory> |
| 13 | #include <tuple> |
| 14 | |
| 15 | #include <boost/assert.hpp> |
| 16 | #include <boost/config.hpp> |
| 17 | #include <boost/context/detail/config.hpp> |
| 18 | |
| 19 | #include <boost/context/fiber.hpp> |
| 20 | |
| 21 | #include <boost/coroutine2/detail/config.hpp> |
| 22 | #include <boost/coroutine2/detail/wrap.hpp> |
| 23 | |
| 24 | #ifdef BOOST_HAS_ABI_HEADERS |
| 25 | # include BOOST_ABI_PREFIX |
| 26 | #endif |
| 27 | |
| 28 | namespace boost { |
| 29 | namespace coroutines2 { |
| 30 | namespace detail { |
| 31 | |
| 32 | // pull_coroutine< T > |
| 33 | |
| 34 | template< typename T > |
| 35 | void |
| 36 | pull_coroutine< T >::control_block::destroy( control_block * cb) noexcept { |
| 37 | boost::context::fiber c = std::move( cb->c); |
| 38 | // destroy control structure |
| 39 | cb->~control_block(); |
| 40 | // destroy coroutine's stack |
| 41 | cb->state |= state_t::destroy; |
| 42 | } |
| 43 | |
| 44 | template< typename T > |
| 45 | template< typename StackAllocator, typename Fn > |
| 46 | pull_coroutine< T >::control_block::control_block( context::preallocated palloc, StackAllocator && salloc, |
| 47 | Fn && fn) : |
| 48 | #if defined(BOOST_NO_CXX14_GENERIC_LAMBDAS) |
| 49 | c{ std::allocator_arg, palloc, std::forward< StackAllocator >( salloc), |
| 50 | wrap( [this](typename std::decay< Fn >::type & fn_,boost::context::fiber && c) mutable { |
| 51 | // create synthesized push_coroutine< T > |
| 52 | typename push_coroutine< T >::control_block synthesized_cb{ this, c }; |
| 53 | push_coroutine< T > synthesized{ & synthesized_cb }; |
| 54 | other = & synthesized_cb; |
| 55 | if ( state_t::none == ( state & state_t::destroy) ) { |
| 56 | try { |
| 57 | auto fn = std::move( fn_); |
| 58 | // call coroutine-fn with synthesized push_coroutine as argument |
| 59 | fn( synthesized); |
| 60 | } catch ( boost::context::detail::forced_unwind const&) { |
| 61 | throw; |
| 62 | #if defined( BOOST_CONTEXT_HAS_CXXABI_H ) |
| 63 | } catch ( abi::__forced_unwind const&) { |
| 64 | throw; |
| 65 | #endif |
| 66 | } catch (...) { |
| 67 | // store other exceptions in exception-pointer |
| 68 | except = std::current_exception(); |
| 69 | } |
| 70 | } |
| 71 | // set termination flags |
| 72 | state |= state_t::complete; |
| 73 | // jump back |
| 74 | return std::move( other->c).resume(); |
| 75 | }, |
| 76 | std::forward< Fn >( fn) ) }, |
| 77 | #else |
| 78 | c{ std::allocator_arg, palloc, std::forward< StackAllocator >( salloc), |
| 79 | [this,fn_=std::forward< Fn >( fn)](boost::context::fiber && c) mutable { |
| 80 | // create synthesized push_coroutine< T > |
| 81 | typename push_coroutine< T >::control_block synthesized_cb{ this, c }; |
| 82 | push_coroutine< T > synthesized{ & synthesized_cb }; |
| 83 | other = & synthesized_cb; |
| 84 | if ( state_t::none == ( state & state_t::destroy) ) { |
| 85 | try { |
| 86 | auto fn = std::move( fn_); |
| 87 | // call coroutine-fn with synthesized push_coroutine as argument |
| 88 | fn( synthesized); |
| 89 | } catch ( boost::context::detail::forced_unwind const&) { |
| 90 | throw; |
| 91 | #if defined( BOOST_CONTEXT_HAS_CXXABI_H ) |
| 92 | } catch ( abi::__forced_unwind const&) { |
| 93 | throw; |
| 94 | #endif |
| 95 | } catch (...) { |
| 96 | // store other exceptions in exception-pointer |
| 97 | except = std::current_exception(); |
| 98 | } |
| 99 | } |
| 100 | // set termination flags |
| 101 | state |= state_t::complete; |
| 102 | // jump back |
| 103 | return std::move( other->c).resume(); |
| 104 | } }, |
| 105 | #endif |
| 106 | other{ nullptr }, |
| 107 | state{ state_t::unwind }, |
| 108 | except{}, |
| 109 | bvalid{ false }, |
| 110 | storage{} { |
| 111 | c = std::move( c).resume(); |
| 112 | if ( except) { |
| 113 | std::rethrow_exception( except); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | template< typename T > |
| 118 | pull_coroutine< T >::control_block::control_block( typename push_coroutine< T >::control_block * cb, |
| 119 | boost::context::fiber & c_) noexcept : |
| 120 | c{ std::move( c_) }, |
| 121 | other{ cb }, |
| 122 | state{ state_t::none }, |
| 123 | except{}, |
| 124 | bvalid{ false }, |
| 125 | storage{} { |
| 126 | } |
| 127 | |
| 128 | template< typename T > |
| 129 | pull_coroutine< T >::control_block::~control_block() { |
| 130 | // destroy data if set |
| 131 | if ( bvalid) { |
| 132 | reinterpret_cast< T * >( std::addressof( storage) )->~T(); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | template< typename T > |
| 137 | void |
| 138 | pull_coroutine< T >::control_block::deallocate() noexcept { |
| 139 | if ( state_t::none != ( state & state_t::unwind) ) { |
| 140 | destroy( cb: this); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | template< typename T > |
| 145 | void |
| 146 | pull_coroutine< T >::control_block::resume() { |
| 147 | c = std::move( c).resume(); |
| 148 | if ( except) { |
| 149 | std::rethrow_exception( except); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | template< typename T > |
| 154 | void |
| 155 | pull_coroutine< T >::control_block::set( T const& t) { |
| 156 | // destroy data if set |
| 157 | if ( bvalid) { |
| 158 | reinterpret_cast< T * >( std::addressof( storage) )->~T(); |
| 159 | } |
| 160 | ::new ( static_cast< void * >( std::addressof( storage) ) ) T( t); |
| 161 | bvalid = true; |
| 162 | } |
| 163 | |
| 164 | template< typename T > |
| 165 | void |
| 166 | pull_coroutine< T >::control_block::set( T && t) { |
| 167 | // destroy data if set |
| 168 | if ( bvalid) { |
| 169 | reinterpret_cast< T * >( std::addressof( storage) )->~T(); |
| 170 | } |
| 171 | ::new ( static_cast< void * >( std::addressof( storage) ) ) T( std::move( t) ); |
| 172 | bvalid = true; |
| 173 | } |
| 174 | |
| 175 | template< typename T > |
| 176 | T & |
| 177 | pull_coroutine< T >::control_block::get() noexcept { |
| 178 | return * reinterpret_cast< T * >( std::addressof( storage) ); |
| 179 | } |
| 180 | |
| 181 | template< typename T > |
| 182 | bool |
| 183 | pull_coroutine< T >::control_block::valid() const noexcept { |
| 184 | return nullptr != other && state_t::none == ( state & state_t::complete) && bvalid; |
| 185 | } |
| 186 | |
| 187 | |
| 188 | // pull_coroutine< T & > |
| 189 | |
| 190 | template< typename T > |
| 191 | void |
| 192 | pull_coroutine< T & >::control_block::destroy( control_block * cb) noexcept { |
| 193 | boost::context::fiber c = std::move( cb->c); |
| 194 | // destroy control structure |
| 195 | cb->~control_block(); |
| 196 | // destroy coroutine's stack |
| 197 | cb->state |= state_t::destroy; |
| 198 | } |
| 199 | |
| 200 | template< typename T > |
| 201 | template< typename StackAllocator, typename Fn > |
| 202 | pull_coroutine< T & >::control_block::control_block( context::preallocated palloc, StackAllocator && salloc, |
| 203 | Fn && fn) : |
| 204 | #if defined(BOOST_NO_CXX14_GENERIC_LAMBDAS) |
| 205 | c{ std::allocator_arg, palloc, std::forward< StackAllocator >( salloc), |
| 206 | wrap( [this](typename std::decay< Fn >::type & fn_,boost::context::fiber && c) mutable { |
| 207 | // create synthesized push_coroutine< T & > |
| 208 | typename push_coroutine< T & >::control_block synthesized_cb{ this, c }; |
| 209 | push_coroutine< T & > synthesized{ & synthesized_cb }; |
| 210 | other = & synthesized_cb; |
| 211 | if ( state_t::none == ( state & state_t::destroy) ) { |
| 212 | try { |
| 213 | auto fn = std::move( fn_); |
| 214 | // call coroutine-fn with synthesized push_coroutine as argument |
| 215 | fn( synthesized); |
| 216 | } catch ( boost::context::detail::forced_unwind const&) { |
| 217 | throw; |
| 218 | #if defined( BOOST_CONTEXT_HAS_CXXABI_H ) |
| 219 | } catch ( abi::__forced_unwind const&) { |
| 220 | throw; |
| 221 | #endif |
| 222 | } catch (...) { |
| 223 | // store other exceptions in exception-pointer |
| 224 | except = std::current_exception(); |
| 225 | } |
| 226 | } |
| 227 | // set termination flags |
| 228 | state |= state_t::complete; |
| 229 | // jump back |
| 230 | return std::move( other->c).resume(); |
| 231 | }, |
| 232 | std::forward< Fn >( fn) ) }, |
| 233 | #else |
| 234 | c{ std::allocator_arg, palloc, std::forward< StackAllocator >( salloc), |
| 235 | [this,fn_=std::forward< Fn >( fn)](boost::context::fiber && c) mutable { |
| 236 | // create synthesized push_coroutine< T & > |
| 237 | typename push_coroutine< T & >::control_block synthesized_cb{ this, c }; |
| 238 | push_coroutine< T & > synthesized{ & synthesized_cb }; |
| 239 | other = & synthesized_cb; |
| 240 | if ( state_t::none == ( state & state_t::destroy) ) { |
| 241 | try { |
| 242 | auto fn = std::move( fn_); |
| 243 | // call coroutine-fn with synthesized push_coroutine as argument |
| 244 | fn( synthesized); |
| 245 | } catch ( boost::context::detail::forced_unwind const&) { |
| 246 | throw; |
| 247 | #if defined( BOOST_CONTEXT_HAS_CXXABI_H ) |
| 248 | } catch ( abi::__forced_unwind const&) { |
| 249 | throw; |
| 250 | #endif |
| 251 | } catch (...) { |
| 252 | // store other exceptions in exception-pointer |
| 253 | except = std::current_exception(); |
| 254 | } |
| 255 | } |
| 256 | // set termination flags |
| 257 | state |= state_t::complete; |
| 258 | // jump back |
| 259 | return std::move( other->c).resume(); |
| 260 | } }, |
| 261 | #endif |
| 262 | other{ nullptr }, |
| 263 | state{ state_t::unwind }, |
| 264 | except{}, |
| 265 | bvalid{ false }, |
| 266 | storage{} { |
| 267 | c = std::move( c).resume(); |
| 268 | if ( except) { |
| 269 | std::rethrow_exception( except); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | template< typename T > |
| 274 | pull_coroutine< T & >::control_block::control_block( typename push_coroutine< T & >::control_block * cb, |
| 275 | boost::context::fiber & c_) noexcept : |
| 276 | c{ std::move( c_) }, |
| 277 | other{ cb }, |
| 278 | state{ state_t::none }, |
| 279 | except{}, |
| 280 | bvalid{ false }, |
| 281 | storage{} { |
| 282 | } |
| 283 | |
| 284 | template< typename T > |
| 285 | void |
| 286 | pull_coroutine< T & >::control_block::deallocate() noexcept { |
| 287 | if ( state_t::none != ( state & state_t::unwind) ) { |
| 288 | destroy( cb: this); |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | template< typename T > |
| 293 | void |
| 294 | pull_coroutine< T & >::control_block::resume() { |
| 295 | c = std::move( c).resume(); |
| 296 | if ( except) { |
| 297 | std::rethrow_exception( except); |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | template< typename T > |
| 302 | void |
| 303 | pull_coroutine< T & >::control_block::set( T & t) { |
| 304 | ::new ( static_cast< void * >( std::addressof( storage) ) ) holder{ t }; |
| 305 | bvalid = true; |
| 306 | } |
| 307 | |
| 308 | template< typename T > |
| 309 | T & |
| 310 | pull_coroutine< T & >::control_block::get() noexcept { |
| 311 | return reinterpret_cast< holder * >( std::addressof( storage) )->t; |
| 312 | } |
| 313 | |
| 314 | template< typename T > |
| 315 | bool |
| 316 | pull_coroutine< T & >::control_block::valid() const noexcept { |
| 317 | return nullptr != other && state_t::none == ( state & state_t::complete) && bvalid; |
| 318 | } |
| 319 | |
| 320 | |
| 321 | // pull_coroutine< void > |
| 322 | |
| 323 | inline |
| 324 | void |
| 325 | pull_coroutine< void >::control_block::destroy( control_block * cb) noexcept { |
| 326 | boost::context::fiber c = std::move( cb->c); |
| 327 | // destroy control structure |
| 328 | cb->~control_block(); |
| 329 | // destroy coroutine's stack |
| 330 | cb->state |= state_t::destroy; |
| 331 | } |
| 332 | |
| 333 | template< typename StackAllocator, typename Fn > |
| 334 | pull_coroutine< void >::control_block::control_block( context::preallocated palloc, StackAllocator && salloc, |
| 335 | Fn && fn) : |
| 336 | #if defined(BOOST_NO_CXX14_GENERIC_LAMBDAS) |
| 337 | c{ std::allocator_arg, palloc, std::forward< StackAllocator >( salloc), |
| 338 | wrap( [this](typename std::decay< Fn >::type & fn_,boost::context::fiber && c) mutable { |
| 339 | // create synthesized push_coroutine< void > |
| 340 | typename push_coroutine< void >::control_block synthesized_cb{ this, c }; |
| 341 | push_coroutine< void > synthesized{ & synthesized_cb }; |
| 342 | other = & synthesized_cb; |
| 343 | if ( state_t::none == ( state & state_t::destroy) ) { |
| 344 | try { |
| 345 | auto fn = std::move( fn_); |
| 346 | // call coroutine-fn with synthesized push_coroutine as argument |
| 347 | fn( synthesized); |
| 348 | } catch ( boost::context::detail::forced_unwind const&) { |
| 349 | throw; |
| 350 | #if defined( BOOST_CONTEXT_HAS_CXXABI_H ) |
| 351 | } catch ( abi::__forced_unwind const&) { |
| 352 | throw; |
| 353 | #endif |
| 354 | } catch (...) { |
| 355 | // store other exceptions in exception-pointer |
| 356 | except = std::current_exception(); |
| 357 | } |
| 358 | } |
| 359 | // set termination flags |
| 360 | state |= state_t::complete; |
| 361 | // jump back |
| 362 | return std::move( other->c).resume(); |
| 363 | }, |
| 364 | std::forward< Fn >( fn) ) }, |
| 365 | #else |
| 366 | c{ std::allocator_arg, palloc, std::forward< StackAllocator >( salloc), |
| 367 | [this,fn_=std::forward< Fn >( fn)]( boost::context::fiber && c) mutable { |
| 368 | // create synthesized push_coroutine< void > |
| 369 | typename push_coroutine< void >::control_block synthesized_cb{ this, c }; |
| 370 | push_coroutine< void > synthesized{ & synthesized_cb }; |
| 371 | other = & synthesized_cb; |
| 372 | if ( state_t::none == ( state & state_t::destroy) ) { |
| 373 | try { |
| 374 | auto fn = std::move( fn_); |
| 375 | // call coroutine-fn with synthesized push_coroutine as argument |
| 376 | fn( synthesized); |
| 377 | } catch ( boost::context::detail::forced_unwind const&) { |
| 378 | throw; |
| 379 | #if defined( BOOST_CONTEXT_HAS_CXXABI_H ) |
| 380 | } catch ( abi::__forced_unwind const&) { |
| 381 | throw; |
| 382 | #endif |
| 383 | } catch (...) { |
| 384 | // store other exceptions in exception-pointer |
| 385 | except = std::current_exception(); |
| 386 | } |
| 387 | } |
| 388 | // set termination flags |
| 389 | state |= state_t::complete; |
| 390 | // jump back to ctx |
| 391 | return std::move( other->c).resume(); |
| 392 | } }, |
| 393 | #endif |
| 394 | other{ nullptr }, |
| 395 | state{ state_t::unwind }, |
| 396 | except{} { |
| 397 | c = std::move( c).resume(); |
| 398 | if ( except) { |
| 399 | std::rethrow_exception( except); |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | inline |
| 404 | pull_coroutine< void >::control_block::control_block( push_coroutine< void >::control_block * cb, |
| 405 | boost::context::fiber & c_) noexcept : |
| 406 | c{ std::move( c_) }, |
| 407 | other{ cb }, |
| 408 | state{ state_t::none }, |
| 409 | except{} { |
| 410 | } |
| 411 | |
| 412 | inline |
| 413 | void |
| 414 | pull_coroutine< void >::control_block::deallocate() noexcept { |
| 415 | if ( state_t::none != ( state & state_t::unwind) ) { |
| 416 | destroy( cb: this); |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | inline |
| 421 | void |
| 422 | pull_coroutine< void >::control_block::resume() { |
| 423 | c = std::move( c).resume(); |
| 424 | if ( except) { |
| 425 | std::rethrow_exception( except); |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | inline |
| 430 | bool |
| 431 | pull_coroutine< void >::control_block::valid() const noexcept { |
| 432 | return nullptr != other && state_t::none == ( state & state_t::complete); |
| 433 | } |
| 434 | |
| 435 | }}} |
| 436 | |
| 437 | #ifdef BOOST_HAS_ABI_HEADERS |
| 438 | # include BOOST_ABI_SUFFIX |
| 439 | #endif |
| 440 | |
| 441 | #endif // BOOST_COROUTINES2_DETAIL_PULL_CONTROL_BLOCK_IPP |
| 442 | |